diff -u linux-xilinx-zynqmp-5.15.0/Documentation/admin-guide/sysctl/net.rst linux-xilinx-zynqmp-5.15.0/Documentation/admin-guide/sysctl/net.rst --- linux-xilinx-zynqmp-5.15.0/Documentation/admin-guide/sysctl/net.rst +++ linux-xilinx-zynqmp-5.15.0/Documentation/admin-guide/sysctl/net.rst @@ -31,18 +31,18 @@ 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 -u linux-xilinx-zynqmp-5.15.0/Documentation/arm64/silicon-errata.rst linux-xilinx-zynqmp-5.15.0/Documentation/arm64/silicon-errata.rst --- linux-xilinx-zynqmp-5.15.0/Documentation/arm64/silicon-errata.rst +++ linux-xilinx-zynqmp-5.15.0/Documentation/arm64/silicon-errata.rst @@ -200,0 +201,7 @@ ++----------------+-----------------+-----------------+-----------------------------+ +| Microsoft | Azure Cobalt 100| #2139208 | ARM64_ERRATUM_2139208 | ++----------------+-----------------+-----------------+-----------------------------+ +| Microsoft | Azure Cobalt 100| #2067961 | ARM64_ERRATUM_2067961 | ++----------------+-----------------+-----------------+-----------------------------+ +| Microsoft | Azure Cobalt 100| #2253138 | ARM64_ERRATUM_2253138 | ++----------------+-----------------+-----------------+-----------------------------+ diff -u linux-xilinx-zynqmp-5.15.0/Documentation/filesystems/directory-locking.rst linux-xilinx-zynqmp-5.15.0/Documentation/filesystems/directory-locking.rst --- linux-xilinx-zynqmp-5.15.0/Documentation/filesystems/directory-locking.rst +++ linux-xilinx-zynqmp-5.15.0/Documentation/filesystems/directory-locking.rst @@ -22,13 +22,16 @@ 3) object removal. Locking rules: caller locks parent, finds victim, locks victim and calls the method. Locks are exclusive. -4) rename() that is _not_ cross-directory. Locking rules: caller locks the -parent and finds source and target. We lock both (provided they exist). If we -need to lock two inodes of different type (dir vs non-dir), we lock directory -first. If we need to lock two inodes of the same type, lock them in inode -pointer order. Then call the method. All locks are exclusive. -NB: we might get away with locking the source (and target in exchange -case) shared. +4) rename() that is _not_ cross-directory. Locking rules: caller locks +the parent and finds source and target. Then we decide which of the +source and target need to be locked. Source needs to be locked if it's a +non-directory; target - if it's a non-directory or about to be removed. +Take the locks that need to be taken, in inode pointer order if need +to take both (that can happen only when both source and target are +non-directories - the source because it wouldn't be locked otherwise +and the target because mixing directory and non-directory is allowed +only with RENAME_EXCHANGE, and that won't be removing the target). +After the locks had been taken, call the method. All locks are exclusive. 5) link creation. Locking rules: @@ -44,20 +47,17 @@ * lock the filesystem * lock parents in "ancestors first" order. If one is not ancestor of - the other, lock them in inode pointer order. + the other, lock the parent of source first. * find source and target. * if old parent is equal to or is a descendent of target fail with -ENOTEMPTY * if new parent is equal to or is a descendent of source fail with -ELOOP - * Lock both the source and the target provided they exist. If we - need to lock two inodes of different type (dir vs non-dir), we lock - the directory first. If we need to lock two inodes of the same type, - lock them in inode pointer order. + * Lock subdirectories involved (source before target). + * Lock non-directories involved, in inode pointer order. * call the method. -All ->i_rwsem are taken exclusive. Again, we might get away with locking -the source (and target in exchange case) shared. +All ->i_rwsem are taken exclusive. The rules above obviously guarantee that all directories that are going to be read, modified or removed by method will be locked by caller. @@ -67,6 +67,7 @@ Proof: +[XXX: will be updated once we are done massaging the lock_rename()] First of all, at any moment we have a linear ordering of the objects - A < B iff (A is an ancestor of B) or (B is not an ancestor of A and ptr(A) < ptr(B)). diff -u linux-xilinx-zynqmp-5.15.0/MAINTAINERS linux-xilinx-zynqmp-5.15.0/MAINTAINERS --- linux-xilinx-zynqmp-5.15.0/MAINTAINERS +++ linux-xilinx-zynqmp-5.15.0/MAINTAINERS @@ -897,6 +897,14 @@ F: drivers/infiniband/hw/efa/ F: include/uapi/rdma/efa-abi.h +AMD AXI W1 DRIVER +M: Kris Chaplin +R: Thomas Delev +R: Michal Simek +S: Maintained +F: Documentation/devicetree/bindings/w1/amd,axi-1wire-host.yaml +F: drivers/w1/masters/amd_axi_w1.c + AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER M: Tom Lendacky M: John Allen diff -u linux-xilinx-zynqmp-5.15.0/Makefile linux-xilinx-zynqmp-5.15.0/Makefile --- linux-xilinx-zynqmp-5.15.0/Makefile +++ linux-xilinx-zynqmp-5.15.0/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 VERSION = 5 PATCHLEVEL = 15 -SUBLEVEL = 136 +SUBLEVEL = 149 EXTRAVERSION = NAME = Trick or Treat diff -u linux-xilinx-zynqmp-5.15.0/arch/Kconfig linux-xilinx-zynqmp-5.15.0/arch/Kconfig --- linux-xilinx-zynqmp-5.15.0/arch/Kconfig +++ linux-xilinx-zynqmp-5.15.0/arch/Kconfig @@ -605,6 +605,7 @@ bool "Clang Shadow Call Stack" depends on CC_IS_CLANG && ARCH_SUPPORTS_SHADOW_CALL_STACK depends on DYNAMIC_FTRACE_WITH_REGS || !FUNCTION_GRAPH_TRACER + depends on MMU help This option enables Clang's Shadow Call Stack, which uses a shadow stack to protect function return addresses from being diff -u linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/am33xx.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/am33xx.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/am33xx.dtsi +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/am33xx.dtsi @@ -349,6 +349,7 @@ , , ; + ti,sysc-delay-us = <2>; clocks = <&l3s_clkctrl AM3_L3S_USB_OTG_HS_CLKCTRL 0>; clock-names = "fck"; #address-cells = <1>; diff -u linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/dra7.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/dra7.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/dra7.dtsi +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/dra7.dtsi @@ -144,7 +144,7 @@ l3-noc@44000000 { compatible = "ti,dra7-l3-noc"; - reg = <0x44000000 0x1000>, + reg = <0x44000000 0x1000000>, <0x45000000 0x1000>; interrupts-extended = <&crossbar_mpu GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>, <&wakeupgen GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>; diff -u linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/exynos4210-i9100.dts linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/exynos4210-i9100.dts --- linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/exynos4210-i9100.dts +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/exynos4210-i9100.dts @@ -520,6 +520,14 @@ regulator-name = "VT_CAM_1.8V"; regulator-min-microvolt = <1800000>; regulator-max-microvolt = <1800000>; + + /* + * Force-enable this regulator; otherwise the + * kernel hangs very early in the boot process + * for about 12 seconds, without apparent + * reason. + */ + regulator-always-on; }; vcclcd_reg: LDO13 { diff -u linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx23.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx23.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx23.dtsi +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx23.dtsi @@ -414,7 +414,7 @@ status = "disabled"; }; - dma_apbx: dma-apbx@80024000 { + dma_apbx: dma-controller@80024000 { compatible = "fsl,imx23-dma-apbx"; reg = <0x80024000 0x2000>; interrupts = <7 5 9 26 diff -u linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx25.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx25.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx25.dtsi +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx25.dtsi @@ -543,7 +543,7 @@ }; iim: efuse@53ff0000 { - compatible = "fsl,imx25-iim", "fsl,imx27-iim"; + compatible = "fsl,imx25-iim"; reg = <0x53ff0000 0x4000>; interrupts = <19>; clocks = <&clks 99>; diff -u linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx28.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx28.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx28.dtsi +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx28.dtsi @@ -992,7 +992,7 @@ status = "disabled"; }; - dma_apbx: dma-apbx@80024000 { + dma_apbx: dma-controller@80024000 { compatible = "fsl,imx28-dma-apbx"; reg = <0x80024000 0x2000>; interrupts = <78 79 66 0 diff -u linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx7s.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx7s.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx7s.dtsi +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx7s.dtsi @@ -174,7 +174,11 @@ clock-names = "apb_pclk"; ca_funnel_in_ports: in-ports { - port { + #address-cells = <1>; + #size-cells = <0>; + + port@0 { + reg = <0>; ca_funnel_in_port0: endpoint { remote-endpoint = <&etm0_out_port>; }; @@ -438,7 +442,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 +451,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 +461,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 +471,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>, @@ -798,7 +802,7 @@ }; lcdif: lcdif@30730000 { - compatible = "fsl,imx7d-lcdif", "fsl,imx28-lcdif"; + compatible = "fsl,imx7d-lcdif", "fsl,imx6sx-lcdif"; reg = <0x30730000 0x10000>; interrupts = ; clocks = <&clks IMX7D_LCDIF_PIXEL_ROOT_CLK>, @@ -1260,7 +1264,7 @@ gpmi: nand-controller@33002000{ compatible = "fsl,imx7d-gpmi-nand"; #address-cells = <1>; - #size-cells = <1>; + #size-cells = <0>; reg = <0x33002000 0x2000>, <0x33004000 0x4000>; reg-names = "gpmi-nand", "bch"; interrupts = ; diff -u linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/motorola-mapphone-common.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/motorola-mapphone-common.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/motorola-mapphone-common.dtsi +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/motorola-mapphone-common.dtsi @@ -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 -u linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/qcom-apq8064.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/qcom-apq8064.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/qcom-apq8064.dtsi +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/qcom-apq8064.dtsi @@ -760,7 +760,7 @@ xoadc: xoadc@197 { compatible = "qcom,pm8921-adc"; - reg = <197>; + reg = <0x197>; interrupts-extended = <&pmicintc 78 IRQ_TYPE_EDGE_RISING>; #address-cells = <2>; #size-cells = <0>; diff -u linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/qcom-mdm9615.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/qcom-mdm9615.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/qcom-mdm9615.dtsi +++ linux-xilinx-zynqmp-5.15.0/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 -u linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/qcom-sdx55.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/qcom-sdx55.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/qcom-sdx55.dtsi +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/qcom-sdx55.dtsi @@ -420,10 +420,10 @@ <&gcc GCC_USB30_MASTER_CLK>; assigned-clock-rates = <19200000>, <200000000>; - interrupts = , - , - , - ; + interrupts-extended = <&intc GIC_SPI 131 IRQ_TYPE_LEVEL_HIGH>, + <&pdc 51 IRQ_TYPE_LEVEL_HIGH>, + <&pdc 11 IRQ_TYPE_EDGE_BOTH>, + <&pdc 10 IRQ_TYPE_EDGE_BOTH>; interrupt-names = "hs_phy_irq", "ss_phy_irq", "dm_hs_phy_irq", "dp_hs_phy_irq"; @@ -447,7 +447,7 @@ compatible = "qcom,sdx55-pdc", "qcom,pdc"; reg = <0x0b210000 0x30000>; qcom,pdc-ranges = <0 179 52>; - #interrupt-cells = <3>; + #interrupt-cells = <2>; interrupt-parent = <&intc>; interrupt-controller; }; @@ -457,7 +457,7 @@ reg = <0x0c264000 0x1000>; }; - spmi_bus: qcom,spmi@c440000 { + spmi_bus: spmi@c440000 { compatible = "qcom,spmi-pmic-arb"; reg = <0x0c440000 0x0000d00>, <0x0c600000 0x2000000>, diff -u linux-xilinx-zynqmp-5.15.0/arch/arm/mach-imx/mmdc.c linux-xilinx-zynqmp-5.15.0/arch/arm/mach-imx/mmdc.c --- linux-xilinx-zynqmp-5.15.0/arch/arm/mach-imx/mmdc.c +++ linux-xilinx-zynqmp-5.15.0/arch/arm/mach-imx/mmdc.c @@ -502,6 +502,10 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/arch/arm64/Kconfig linux-xilinx-zynqmp-5.15.0/arch/arm64/Kconfig --- linux-xilinx-zynqmp-5.15.0/arch/arm64/Kconfig +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/Kconfig @@ -1153,6 +1153,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/freescale/fsl-ls208xa.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/freescale/fsl-ls208xa.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/freescale/fsl-ls208xa.dtsi +++ linux-xilinx-zynqmp-5.15.0/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 -u linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/freescale/imx8mm.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/freescale/imx8mm.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/freescale/imx8mm.dtsi +++ linux-xilinx-zynqmp-5.15.0/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 -u linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/freescale/imx8mn.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/freescale/imx8mn.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/freescale/imx8mn.dtsi +++ linux-xilinx-zynqmp-5.15.0/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 -u linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/freescale/imx8mp.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/freescale/imx8mp.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/freescale/imx8mp.dtsi +++ linux-xilinx-zynqmp-5.15.0/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 -u linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/freescale/imx8mq.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/freescale/imx8mq.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/freescale/imx8mq.dtsi +++ linux-xilinx-zynqmp-5.15.0/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 -u linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/marvell/armada-3720-turris-mox.dts linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/marvell/armada-3720-turris-mox.dts --- linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/marvell/armada-3720-turris-mox.dts +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/marvell/armada-3720-turris-mox.dts @@ -130,7 +130,7 @@ compatible = "microchip,mcp7940x"; reg = <0x6f>; interrupt-parent = <&gpiosb>; - interrupts = <5 0>; /* GPIO2_5 */ + interrupts = <5 IRQ_TYPE_EDGE_FALLING>; /* GPIO2_5 */ }; }; diff -u linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dts linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dts --- linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dts +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dts @@ -69,7 +69,7 @@ }; }; - memory { + memory@40000000 { reg = <0 0x40000000 0 0x40000000>; }; diff -u linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/mediatek/mt8183-kukui.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/mediatek/mt8183-kukui.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/mediatek/mt8183-kukui.dtsi +++ linux-xilinx-zynqmp-5.15.0/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 -u linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/mediatek/mt8183.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/mediatek/mt8183.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/mediatek/mt8183.dtsi +++ linux-xilinx-zynqmp-5.15.0/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>; @@ -1497,2 +1376,123 @@ }; + + 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 -u linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/apq8016-sbc.dts linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/apq8016-sbc.dts --- linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/apq8016-sbc.dts +++ linux-xilinx-zynqmp-5.15.0/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>; diff -u linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/ipq6018.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/ipq6018.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/ipq6018.dtsi +++ linux-xilinx-zynqmp-5.15.0/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 -u linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/msm8916.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/msm8916.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/msm8916.dtsi +++ linux-xilinx-zynqmp-5.15.0/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 -u linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/msm8992-xiaomi-libra.dts linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/msm8992-xiaomi-libra.dts --- linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/msm8992-xiaomi-libra.dts +++ linux-xilinx-zynqmp-5.15.0/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 -u linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/msm8996.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/msm8996.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/msm8996.dtsi +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/msm8996.dtsi @@ -394,6 +394,19 @@ reg = <0x0 0x80000000 0x0 0x0>; }; + etm { + compatible = "qcom,coresight-remote-etm"; + + out-ports { + port { + modem_etm_out_funnel_in2: endpoint { + remote-endpoint = + <&funnel_in2_in_modem_etm>; + }; + }; + }; + }; + psci { compatible = "arm,psci-1.0"; method = "smc"; @@ -2203,6 +2216,14 @@ clocks = <&rpmcc RPM_QDSS_CLK>, <&rpmcc RPM_QDSS_A_CLK>; clock-names = "apb_pclk", "atclk"; + in-ports { + port { + funnel_in2_in_modem_etm: endpoint { + remote-endpoint = + <&modem_etm_out_funnel_in2>; + }; + }; + }; out-ports { port { diff -u linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/msm8998.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/msm8998.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/msm8998.dtsi +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/msm8998.dtsi @@ -1863,9 +1863,11 @@ cpu = <&CPU4>; - port{ - etm4_out: endpoint { - remote-endpoint = <&apss_funnel_in4>; + out-ports { + port{ + etm4_out: endpoint { + remote-endpoint = <&apss_funnel_in4>; + }; }; }; }; @@ -1880,9 +1882,11 @@ cpu = <&CPU5>; - port{ - etm5_out: endpoint { - remote-endpoint = <&apss_funnel_in5>; + out-ports { + port{ + etm5_out: endpoint { + remote-endpoint = <&apss_funnel_in5>; + }; }; }; }; @@ -1897,9 +1901,11 @@ cpu = <&CPU6>; - port{ - etm6_out: endpoint { - remote-endpoint = <&apss_funnel_in6>; + out-ports { + port{ + etm6_out: endpoint { + remote-endpoint = <&apss_funnel_in6>; + }; }; }; }; @@ -1914,9 +1920,11 @@ cpu = <&CPU7>; - port{ - etm7_out: endpoint { - remote-endpoint = <&apss_funnel_in7>; + out-ports { + port{ + etm7_out: endpoint { + remote-endpoint = <&apss_funnel_in7>; + }; }; }; }; diff -u linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/qrb5165-rb5.dts linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/qrb5165-rb5.dts --- linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/qrb5165-rb5.dts +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/qrb5165-rb5.dts @@ -58,8 +58,8 @@ user4 { label = "green:user4"; gpios = <&pm8150_gpios 10 GPIO_ACTIVE_HIGH>; - linux,default-trigger = "panic-indicator"; default-state = "off"; + panic-indicator; }; wlan { diff -u linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/sc7180.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/sc7180.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/sc7180.dtsi +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/sc7180.dtsi @@ -2774,8 +2774,8 @@ interrupts-extended = <&intc GIC_SPI 131 IRQ_TYPE_LEVEL_HIGH>, <&pdc 6 IRQ_TYPE_LEVEL_HIGH>, - <&pdc 8 IRQ_TYPE_LEVEL_HIGH>, - <&pdc 9 IRQ_TYPE_LEVEL_HIGH>; + <&pdc 8 IRQ_TYPE_EDGE_BOTH>, + <&pdc 9 IRQ_TYPE_EDGE_BOTH>; interrupt-names = "hs_phy_irq", "ss_phy_irq", "dm_hs_phy_irq", "dp_hs_phy_irq"; @@ -3366,7 +3366,7 @@ compatible = "qcom,apss-wdt-sc7180", "qcom,kpss-wdt"; reg = <0 0x17c10000 0 0x1000>; clocks = <&sleep_clk>; - interrupts = ; + interrupts = ; }; timer@17c20000{ diff -u linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/sc7280.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/sc7280.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/sc7280.dtsi +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/sc7280.dtsi @@ -485,6 +485,7 @@ bus-width = <8>; supports-cqe; + dma-coherent; qcom,dll-config = <0x0007642c>; qcom,ddr-config = <0x80040868>; @@ -1174,6 +1175,7 @@ operating-points-v2 = <&sdhc2_opp_table>; bus-width = <4>; + dma-coherent; qcom,dll-config = <0x0007642c>; @@ -1290,8 +1292,8 @@ assigned-clock-rates = <19200000>, <200000000>; interrupts-extended = <&intc GIC_SPI 240 IRQ_TYPE_LEVEL_HIGH>, - <&pdc 13 IRQ_TYPE_EDGE_RISING>, - <&pdc 12 IRQ_TYPE_EDGE_RISING>; + <&pdc 12 IRQ_TYPE_EDGE_BOTH>, + <&pdc 13 IRQ_TYPE_EDGE_BOTH>; interrupt-names = "hs_phy_irq", "dm_hs_phy_irq", "dp_hs_phy_irq"; @@ -1711,7 +1713,7 @@ compatible = "qcom,apss-wdt-sc7280", "qcom,kpss-wdt"; reg = <0 0x17c10000 0 0x1000>; clocks = <&sleep_clk>; - interrupts = ; + interrupts = ; }; timer@17c20000 { @@ -1851,6 +1853,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 -u linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/sdm845-db845c.dts linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/sdm845-db845c.dts --- linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/sdm845-db845c.dts +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/sdm845-db845c.dts @@ -55,8 +55,8 @@ user4 { label = "green:user4"; gpios = <&pm8998_gpio 13 GPIO_ACTIVE_HIGH>; - linux,default-trigger = "panic-indicator"; default-state = "off"; + panic-indicator; }; wlan { diff -u linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/sdm845.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/sdm845.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/sdm845.dtsi +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/sdm845.dtsi @@ -3767,10 +3767,10 @@ <&gcc GCC_USB30_PRIM_MASTER_CLK>; assigned-clock-rates = <19200000>, <150000000>; - interrupts = , - , - , - ; + interrupts-extended = <&intc GIC_SPI 131 IRQ_TYPE_LEVEL_HIGH>, + <&intc GIC_SPI 486 IRQ_TYPE_LEVEL_HIGH>, + <&pdc_intc 8 IRQ_TYPE_EDGE_BOTH>, + <&pdc_intc 9 IRQ_TYPE_EDGE_BOTH>; interrupt-names = "hs_phy_irq", "ss_phy_irq", "dm_hs_phy_irq", "dp_hs_phy_irq"; @@ -3815,10 +3815,10 @@ <&gcc GCC_USB30_SEC_MASTER_CLK>; assigned-clock-rates = <19200000>, <150000000>; - interrupts = , - , - , - ; + interrupts-extended = <&intc GIC_SPI 136 IRQ_TYPE_LEVEL_HIGH>, + <&intc GIC_SPI 487 IRQ_TYPE_LEVEL_HIGH>, + <&pdc_intc 10 IRQ_TYPE_EDGE_BOTH>, + <&pdc_intc 11 IRQ_TYPE_EDGE_BOTH>; interrupt-names = "hs_phy_irq", "ss_phy_irq", "dm_hs_phy_irq", "dp_hs_phy_irq"; @@ -4725,7 +4725,7 @@ compatible = "qcom,apss-wdt-sdm845", "qcom,kpss-wdt"; reg = <0 0x17980000 0 0x1000>; clocks = <&sleep_clk>; - interrupts = ; + interrupts = ; }; apss_shared: mailbox@17990000 { diff -u linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/sm8150.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/sm8150.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/sm8150.dtsi +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/sm8150.dtsi @@ -3094,8 +3094,8 @@ interrupts = , , - , - ; + , + ; interrupt-names = "hs_phy_irq", "ss_phy_irq", "dm_hs_phy_irq", "dp_hs_phy_irq"; @@ -3139,8 +3139,8 @@ interrupts = , , - , - ; + , + ; interrupt-names = "hs_phy_irq", "ss_phy_irq", "dm_hs_phy_irq", "dp_hs_phy_irq"; @@ -3359,7 +3359,7 @@ compatible = "qcom,apss-wdt-sm8150", "qcom,kpss-wdt"; reg = <0 0x17c10000 0 0x1000>; clocks = <&sleep_clk>; - interrupts = ; + interrupts = ; }; timer@17c20000 { diff -u linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/sm8250.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/sm8250.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/sm8250.dtsi +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/sm8250.dtsi @@ -3947,7 +3947,7 @@ compatible = "qcom,apss-wdt-sm8250", "qcom,kpss-wdt"; reg = <0 0x17c10000 0 0x1000>; clocks = <&sleep_clk>; - interrupts = ; + interrupts = ; }; timer@17c20000 { diff -u linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/rockchip/rk3399.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/rockchip/rk3399.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/rockchip/rk3399.dtsi +++ linux-xilinx-zynqmp-5.15.0/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 -u linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/ti/k3-am65-main.dtsi linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/ti/k3-am65-main.dtsi --- linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/ti/k3-am65-main.dtsi +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/ti/k3-am65-main.dtsi @@ -855,7 +855,7 @@ assigned-clocks = <&k3_clks 67 2>; assigned-clock-parents = <&k3_clks 67 5>; - interrupts = ; + interrupts = ; dma-coherent; diff -u linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/xilinx/zynqmp-sck-kd-g-revA.dts linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/xilinx/zynqmp-sck-kd-g-revA.dts --- linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/xilinx/zynqmp-sck-kd-g-revA.dts +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/xilinx/zynqmp-sck-kd-g-revA.dts @@ -32,6 +32,18 @@ #clock-cells = <0>; clock-frequency = <26000000>; }; + + clk_25_0: clock4 { /* u92/u91 - GEM2 */ + compatible = "fixed-clock"; + #clock-cells = <0>; + clock-frequency = <25000000>; + }; + + clk_25_1: clock5 { /* u92/u91 - GEM3 */ + compatible = "fixed-clock"; + #clock-cells = <0>; + clock-frequency = <25000000>; + }; }; &can0 { diff -u linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/xilinx/zynqmp-sck-kr-g-revA.dts linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/xilinx/zynqmp-sck-kr-g-revA.dts --- linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/xilinx/zynqmp-sck-kr-g-revA.dts +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/xilinx/zynqmp-sck-kr-g-revA.dts @@ -25,37 +25,43 @@ io-channels = <&u14 0>, <&u14 1>, <&u14 2>; }; - si5332_0: si5332_0 { /* u17 - GEM0/1 */ + clk_27: clock0 { /* u86 - DP */ + compatible = "fixed-clock"; + #clock-cells = <0>; + clock-frequency = <27000000>; + }; + + clk_125: si5332_0 { /* u17 - GEM0/1 */ compatible = "fixed-clock"; #clock-cells = <0>; clock-frequency = <125000000>; }; - si5332_1: si5332_1 { /* u17 - DP */ + clk_74: si5332_5 { /* u17 - SLVC-EC */ compatible = "fixed-clock"; #clock-cells = <0>; - clock-frequency = <27000000>; + clock-frequency = <74250000>; }; - si5332_2: si5332_2 { /* u17 - USB */ + clk_26: si5332_2 { /* u17 - USB */ compatible = "fixed-clock"; #clock-cells = <0>; clock-frequency = <26000000>; }; - si5332_3: si5332_3 { /* u17 - SFP+ */ + clk_156: si5332_3 { /* u17 - SFP+ */ compatible = "fixed-clock"; #clock-cells = <0>; clock-frequency = <156250000>; }; - si5332_4: si5332_4 { /* u17 - GEM2 */ + clk_25_0: si5332_1 { /* u17 - GEM2 */ compatible = "fixed-clock"; #clock-cells = <0>; clock-frequency = <25000000>; }; - si5332_5: si5332_5 { /* u17 - GEM3 */ + clk_25_1: si5332_4 { /* u17 - GEM3 */ compatible = "fixed-clock"; #clock-cells = <0>; clock-frequency = <25000000>; @@ -115,7 +121,7 @@ &psgtr { status = "okay"; /* gem0/1, dp, usb */ - clocks = <&si5332_0>, <&si5332_1>, <&si5332_2>; + clocks = <&clk_125>, <&clk_27>, <&clk_26>; clock-names = "ref0", "ref1", "ref2"; }; diff -u linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/xilinx/zynqmp-sck-kr-g-revB.dts linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/xilinx/zynqmp-sck-kr-g-revB.dts --- linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/xilinx/zynqmp-sck-kr-g-revB.dts +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/xilinx/zynqmp-sck-kr-g-revB.dts @@ -60,6 +60,12 @@ #clock-cells = <0>; clock-frequency = <25000000>; }; + + clk_74: clock6 { /* u88 - SLVC-EC */ + compatible = "fixed-clock"; + #clock-cells = <0>; + clock-frequency = <74250000>; + }; }; &i2c1 { /* I2C_SCK C26/C27 - MIO from SOM */ diff -u linux-xilinx-zynqmp-5.15.0/arch/arm64/include/asm/cputype.h linux-xilinx-zynqmp-5.15.0/arch/arm64/include/asm/cputype.h --- linux-xilinx-zynqmp-5.15.0/arch/arm64/include/asm/cputype.h +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/include/asm/cputype.h @@ -61,6 +61,7 @@ #define ARM_CPU_IMP_HISI 0x48 #define ARM_CPU_IMP_APPLE 0x61 #define ARM_CPU_IMP_AMPERE 0xC0 +#define ARM_CPU_IMP_MICROSOFT 0x6D #define ARM_CPU_PART_AEM_V8 0xD0F #define ARM_CPU_PART_FOUNDATION 0xD00 @@ -116,6 +117,8 @@ #define AMPERE_CPU_PART_AMPERE1 0xAC3 +#define MICROSOFT_CPU_PART_AZURE_COBALT_100 0xD49 /* Based on r0p0 of ARM Neoverse N2 */ + #define MIDR_CORTEX_A53 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_A53) #define MIDR_CORTEX_A57 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_A57) #define MIDR_CORTEX_A72 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_A72) @@ -157,6 +160,7 @@ #define MIDR_APPLE_M1_ICESTORM MIDR_CPU_MODEL(ARM_CPU_IMP_APPLE, APPLE_CPU_PART_M1_ICESTORM) #define MIDR_APPLE_M1_FIRESTORM MIDR_CPU_MODEL(ARM_CPU_IMP_APPLE, APPLE_CPU_PART_M1_FIRESTORM) #define MIDR_AMPERE1 MIDR_CPU_MODEL(ARM_CPU_IMP_AMPERE, AMPERE_CPU_PART_AMPERE1) +#define MIDR_MICROSOFT_AZURE_COBALT_100 MIDR_CPU_MODEL(ARM_CPU_IMP_MICROSOFT, MICROSOFT_CPU_PART_AZURE_COBALT_100) /* Fujitsu Erratum 010001 affects A64FX 1.0 and 1.1, (v0r0 and v1r0) */ #define MIDR_FUJITSU_ERRATUM_010001 MIDR_FUJITSU_A64FX diff -u linux-xilinx-zynqmp-5.15.0/arch/arm64/include/asm/pgtable.h linux-xilinx-zynqmp-5.15.0/arch/arm64/include/asm/pgtable.h --- linux-xilinx-zynqmp-5.15.0/arch/arm64/include/asm/pgtable.h +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/include/asm/pgtable.h @@ -766,6 +766,12 @@ if (pte_hw_dirty(pte)) pte = pte_mkdirty(pte); pte_val(pte) = (pte_val(pte) & ~mask) | (pgprot_val(newprot) & mask); + /* + * If we end up clearing hw dirtiness for a sw-dirty PTE, set hardware + * dirtiness again. + */ + if (pte_sw_dirty(pte)) + pte = pte_mkdirty(pte); return pte; } diff -u linux-xilinx-zynqmp-5.15.0/arch/arm64/kernel/cpu_errata.c linux-xilinx-zynqmp-5.15.0/arch/arm64/kernel/cpu_errata.c --- linux-xilinx-zynqmp-5.15.0/arch/arm64/kernel/cpu_errata.c +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/kernel/cpu_errata.c @@ -367,6 +367,7 @@ static const struct midr_range trbe_overwrite_fill_mode_cpus[] = { #ifdef CONFIG_ARM64_ERRATUM_2139208 MIDR_ALL_VERSIONS(MIDR_NEOVERSE_N2), + MIDR_ALL_VERSIONS(MIDR_MICROSOFT_AZURE_COBALT_100), #endif #ifdef CONFIG_ARM64_ERRATUM_2119858 MIDR_ALL_VERSIONS(MIDR_CORTEX_A710), @@ -379,6 +380,7 @@ static const struct midr_range tsb_flush_fail_cpus[] = { #ifdef CONFIG_ARM64_ERRATUM_2067961 MIDR_ALL_VERSIONS(MIDR_NEOVERSE_N2), + MIDR_ALL_VERSIONS(MIDR_MICROSOFT_AZURE_COBALT_100), #endif #ifdef CONFIG_ARM64_ERRATUM_2054223 MIDR_ALL_VERSIONS(MIDR_CORTEX_A710), @@ -391,6 +393,7 @@ static struct midr_range trbe_write_out_of_range_cpus[] = { #ifdef CONFIG_ARM64_ERRATUM_2253138 MIDR_ALL_VERSIONS(MIDR_NEOVERSE_N2), + MIDR_ALL_VERSIONS(MIDR_MICROSOFT_AZURE_COBALT_100), #endif #ifdef CONFIG_ARM64_ERRATUM_2224489 MIDR_ALL_VERSIONS(MIDR_CORTEX_A710), diff -u linux-xilinx-zynqmp-5.15.0/arch/arm64/kernel/irq.c linux-xilinx-zynqmp-5.15.0/arch/arm64/kernel/irq.c --- linux-xilinx-zynqmp-5.15.0/arch/arm64/kernel/irq.c +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/kernel/irq.c @@ -19,6 +19,7 @@ #include #include #include +#include #include #include #include @@ -44,17 +45,17 @@ for_each_possible_cpu(cpu) per_cpu(irq_shadow_call_stack_ptr, cpu) = - scs_alloc(cpu_to_node(cpu)); + scs_alloc(early_cpu_to_node(cpu)); } #ifdef CONFIG_VMAP_STACK -static void init_irq_stacks(void) +static void __init init_irq_stacks(void) { int cpu; unsigned long *p; for_each_possible_cpu(cpu) { - p = arch_alloc_vmap_stack(IRQ_STACK_SIZE, cpu_to_node(cpu)); + p = arch_alloc_vmap_stack(IRQ_STACK_SIZE, early_cpu_to_node(cpu)); per_cpu(irq_stack_ptr, cpu) = p; } } diff -u linux-xilinx-zynqmp-5.15.0/arch/arm64/kvm/arm.c linux-xilinx-zynqmp-5.15.0/arch/arm64/kvm/arm.c --- linux-xilinx-zynqmp-5.15.0/arch/arm64/kvm/arm.c +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/kvm/arm.c @@ -348,7 +348,7 @@ kvm_mmu_free_memory_cache(&vcpu->arch.mmu_page_cache); kvm_timer_vcpu_terminate(vcpu); kvm_pmu_vcpu_destroy(vcpu); - + kvm_vgic_vcpu_destroy(vcpu); kvm_arm_vcpu_destroy(vcpu); } diff -u linux-xilinx-zynqmp-5.15.0/arch/arm64/kvm/mmu.c linux-xilinx-zynqmp-5.15.0/arch/arm64/kvm/mmu.c --- linux-xilinx-zynqmp-5.15.0/arch/arm64/kvm/mmu.c +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/kvm/mmu.c @@ -31,6 +31,13 @@ static unsigned long io_map_base; +static phys_addr_t stage2_range_addr_end(phys_addr_t addr, phys_addr_t end) +{ + phys_addr_t size = kvm_granule_size(KVM_PGTABLE_MIN_BLOCK_LEVEL); + phys_addr_t boundary = ALIGN_DOWN(addr + size, size); + + return (boundary - 1 < end - 1) ? boundary : end; +} /* * Release kvm_mmu_lock periodically if the memory region is large. Otherwise, @@ -52,7 +59,7 @@ if (!pgt) return -EINVAL; - next = stage2_pgd_addr_end(kvm, addr, end); + next = stage2_range_addr_end(addr, end); ret = fn(pgt, addr, next - addr); if (ret) break; diff -u linux-xilinx-zynqmp-5.15.0/arch/arm64/kvm/vgic/vgic-its.c linux-xilinx-zynqmp-5.15.0/arch/arm64/kvm/vgic/vgic-its.c --- linux-xilinx-zynqmp-5.15.0/arch/arm64/kvm/vgic/vgic-its.c +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/kvm/vgic/vgic-its.c @@ -584,7 +584,11 @@ unsigned long flags; raw_spin_lock_irqsave(&dist->lpi_list_lock, flags); + irq = __vgic_its_check_cache(dist, db, devid, eventid); + if (irq) + vgic_get_irq_kref(irq); + raw_spin_unlock_irqrestore(&dist->lpi_list_lock, flags); return irq; @@ -763,6 +767,7 @@ raw_spin_lock_irqsave(&irq->irq_lock, flags); irq->pending_latch = true; vgic_queue_irq_unlock(kvm, irq, flags); + vgic_put_irq(kvm, irq); return 0; } diff -u linux-xilinx-zynqmp-5.15.0/arch/arm64/kvm/vgic/vgic.h linux-xilinx-zynqmp-5.15.0/arch/arm64/kvm/vgic/vgic.h --- linux-xilinx-zynqmp-5.15.0/arch/arm64/kvm/vgic/vgic.h +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/kvm/vgic/vgic.h @@ -223,6 +223,7 @@ int vgic_v3_save_pending_tables(struct kvm *kvm); int vgic_v3_set_redist_base(struct kvm *kvm, u32 index, u64 addr, u32 count); int vgic_register_redist_iodev(struct kvm_vcpu *vcpu); +void vgic_unregister_redist_iodev(struct kvm_vcpu *vcpu); bool vgic_v3_check_base(struct kvm *kvm); void vgic_v3_load(struct kvm_vcpu *vcpu); diff -u linux-xilinx-zynqmp-5.15.0/arch/ia64/mm/contig.c linux-xilinx-zynqmp-5.15.0/arch/ia64/mm/contig.c --- linux-xilinx-zynqmp-5.15.0/arch/ia64/mm/contig.c +++ linux-xilinx-zynqmp-5.15.0/arch/ia64/mm/contig.c @@ -153,7 +153,7 @@ efi_memmap_walk(find_max_min_low_pfn, NULL); max_pfn = max_low_pfn; - memblock_add_node(0, PFN_PHYS(max_low_pfn), 0); + memblock_add_node(0, PFN_PHYS(max_low_pfn), 0, MEMBLOCK_NONE); find_initrd(); diff -u linux-xilinx-zynqmp-5.15.0/arch/mips/Kconfig linux-xilinx-zynqmp-5.15.0/arch/mips/Kconfig --- linux-xilinx-zynqmp-5.15.0/arch/mips/Kconfig +++ linux-xilinx-zynqmp-5.15.0/arch/mips/Kconfig @@ -480,6 +480,7 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/arch/mips/alchemy/devboards/db1200.c linux-xilinx-zynqmp-5.15.0/arch/mips/alchemy/devboards/db1200.c --- linux-xilinx-zynqmp-5.15.0/arch/mips/alchemy/devboards/db1200.c +++ linux-xilinx-zynqmp-5.15.0/arch/mips/alchemy/devboards/db1200.c @@ -847,7 +847,7 @@ i2c_register_board_info(0, db1200_i2c_devs, ARRAY_SIZE(db1200_i2c_devs)); spi_register_board_info(db1200_spi_devs, - ARRAY_SIZE(db1200_i2c_devs)); + ARRAY_SIZE(db1200_spi_devs)); /* SWITCHES: S6.8 I2C/SPI selector (OFF=I2C ON=SPI) * S6.7 AC97/I2S selector (OFF=AC97 ON=I2S) diff -u linux-xilinx-zynqmp-5.15.0/arch/mips/kernel/setup.c linux-xilinx-zynqmp-5.15.0/arch/mips/kernel/setup.c --- linux-xilinx-zynqmp-5.15.0/arch/mips/kernel/setup.c +++ linux-xilinx-zynqmp-5.15.0/arch/mips/kernel/setup.c @@ -324,11 +324,11 @@ panic("Incorrect memory mapping !!!"); if (max_pfn > PFN_DOWN(HIGHMEM_START)) { + max_low_pfn = PFN_DOWN(HIGHMEM_START); #ifdef CONFIG_HIGHMEM - highstart_pfn = PFN_DOWN(HIGHMEM_START); + highstart_pfn = max_low_pfn; highend_pfn = max_pfn; #else - max_low_pfn = PFN_DOWN(HIGHMEM_START); max_pfn = max_low_pfn; #endif } diff -u linux-xilinx-zynqmp-5.15.0/arch/parisc/kernel/entry.S linux-xilinx-zynqmp-5.15.0/arch/parisc/kernel/entry.S --- linux-xilinx-zynqmp-5.15.0/arch/parisc/kernel/entry.S +++ linux-xilinx-zynqmp-5.15.0/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 -u linux-xilinx-zynqmp-5.15.0/arch/parisc/kernel/firmware.c linux-xilinx-zynqmp-5.15.0/arch/parisc/kernel/firmware.c --- linux-xilinx-zynqmp-5.15.0/arch/parisc/kernel/firmware.c +++ linux-xilinx-zynqmp-5.15.0/arch/parisc/kernel/firmware.c @@ -123,10 +123,10 @@ #ifdef CONFIG_64BIT if(unlikely(parisc_narrow_firmware)) { if((address & 0xff000000) == 0xf0000000) - return 0xf0f0f0f000000000UL | (u32)address; + return (0xfffffff0UL << 32) | (u32)address; if((address & 0xf0000000) == 0xf0000000) - return 0xffffffff00000000UL | (u32)address; + return (0xffffffffUL << 32) | (u32)address; } #endif return address; diff -u linux-xilinx-zynqmp-5.15.0/arch/parisc/kernel/head.S linux-xilinx-zynqmp-5.15.0/arch/parisc/kernel/head.S --- linux-xilinx-zynqmp-5.15.0/arch/parisc/kernel/head.S +++ linux-xilinx-zynqmp-5.15.0/arch/parisc/kernel/head.S @@ -69,9 +69,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/arch/powerpc/Makefile linux-xilinx-zynqmp-5.15.0/arch/powerpc/Makefile --- linux-xilinx-zynqmp-5.15.0/arch/powerpc/Makefile +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/Makefile @@ -44,18 +44,13 @@ machine-$(CONFIG_CPU_LITTLE_ENDIAN) += le UTS_MACHINE := $(subst $(space),,$(machine-y)) -# XXX This needs to be before we override LD below -ifdef CONFIG_PPC32 -KBUILD_LDFLAGS_MODULE += arch/powerpc/lib/crtsavres.o -else -ifeq ($(call ld-ifversion, -ge, 22500, y),y) +ifeq ($(CONFIG_PPC64)$(CONFIG_LD_IS_BFD),yy) # Have the linker provide sfpr if possible. # There is a corresponding test in arch/powerpc/lib/Makefile KBUILD_LDFLAGS_MODULE += --save-restore-funcs else KBUILD_LDFLAGS_MODULE += arch/powerpc/lib/crtsavres.o endif -endif ifdef CONFIG_CPU_LITTLE_ENDIAN KBUILD_CFLAGS += -mlittle-endian @@ -434,16 +429,7 @@ endif # CONFIG_SMP PHONY += checkbin -# Check toolchain versions: -# - gcc-4.6 is the minimum kernel-wide version so nothing required. checkbin: - @if test "x${CONFIG_CPU_LITTLE_ENDIAN}" = "xy" \ - && $(LD) --version | head -1 | grep ' 2\.24$$' >/dev/null ; then \ - echo -n '*** binutils 2.24 miscompiles weak symbols ' ; \ - echo 'in some circumstances.' ; \ - echo -n '*** Please use a different binutils version.' ; \ - false ; \ - fi @if test "x${CONFIG_FTRACE_MCOUNT_USE_RECORDMCOUNT}" = "xy" -a \ "x${CONFIG_LD_IS_BFD}" = "xy" -a \ "${CONFIG_LD_VERSION}" = "23700" ; then \ diff -u linux-xilinx-zynqmp-5.15.0/arch/powerpc/boot/crt0.S linux-xilinx-zynqmp-5.15.0/arch/powerpc/boot/crt0.S --- linux-xilinx-zynqmp-5.15.0/arch/powerpc/boot/crt0.S +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/boot/crt0.S @@ -28,7 +28,7 @@ p_bss_start: .8byte __bss_start p_end: .8byte _end -p_toc: .8byte __toc_start + 0x8000 - p_base +p_toc: .8byte .TOC. - p_base p_dyn: .8byte __dynamic_start - p_base p_rela: .8byte __rela_dyn_start - p_base p_prom: .8byte 0 diff -u linux-xilinx-zynqmp-5.15.0/arch/powerpc/include/asm/book3s/32/mmu-hash.h linux-xilinx-zynqmp-5.15.0/arch/powerpc/include/asm/book3s/32/mmu-hash.h --- linux-xilinx-zynqmp-5.15.0/arch/powerpc/include/asm/book3s/32/mmu-hash.h +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/include/asm/book3s/32/mmu-hash.h @@ -64,7 +64,82 @@ #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 -u linux-xilinx-zynqmp-5.15.0/arch/powerpc/include/asm/interrupt.h linux-xilinx-zynqmp-5.15.0/arch/powerpc/include/asm/interrupt.h --- linux-xilinx-zynqmp-5.15.0/arch/powerpc/include/asm/interrupt.h +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/include/asm/interrupt.h @@ -139,12 +139,10 @@ 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 -u linux-xilinx-zynqmp-5.15.0/arch/powerpc/include/asm/sections.h linux-xilinx-zynqmp-5.15.0/arch/powerpc/include/asm/sections.h --- linux-xilinx-zynqmp-5.15.0/arch/powerpc/include/asm/sections.h +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/include/asm/sections.h @@ -26,16 +26,16 @@ extern char end_virt_trampolines[]; #endif +/* + * This assumes the kernel is never compiled -mcmodel=small or + * the total .toc is always less than 64k. + */ static inline unsigned long kernel_toc_addr(void) { - /* Defined by the linker, see vmlinux.lds.S */ - extern unsigned long __toc_start; + unsigned long toc_ptr; - /* - * The TOC register (r2) points 32kB into the TOC, so that 64kB of - * the TOC can be addressed using a single machine instruction. - */ - return (unsigned long)(&__toc_start) + 0x8000UL; + asm volatile("mr %0, 2" : "=r" (toc_ptr)); + return toc_ptr; } static inline int overlaps_interrupt_vector_text(unsigned long start, diff -u linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/entry_32.S linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/entry_32.S --- linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/entry_32.S +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/entry_32.S @@ -73,6 +73,34 @@ _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 @@ 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 @@ 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 @@ 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 @@ beq .Lkernel_interrupt_return bl interrupt_exit_user_prepare cmpwi r3,0 + kuep_unlock bne- .Lrestore_nvgprs .Lfast_user_interrupt_return: diff -u linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/head_32.h linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/head_32.h --- linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/head_32.h +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/head_32.h @@ -135,6 +135,12 @@ 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 -u linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/interrupt.c linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/interrupt.c --- linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/interrupt.c +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/interrupt.c @@ -83,8 +83,6 @@ { syscall_fn f; - kuep_lock(); - regs->orig_gpr3 = r3; if (IS_ENABLED(CONFIG_PPC_IRQ_SOFT_MASK_DEBUG)) @@ -408,7 +406,6 @@ /* Restore user access locks last */ kuap_user_restore(regs); - kuep_unlock(); return ret; } diff -u linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/interrupt_64.S linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/interrupt_64.S --- linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/interrupt_64.S +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/interrupt_64.S @@ -62,7 +62,8 @@ mr r10,r1 ld r1,PACAKSAVE(r13) std r10,0(r1) - std r11,_NIP(r1) + std r11,_LINK(r1) + std r11,_NIP(r1) /* Saved LR is also the next instruction */ std r12,_MSR(r1) std r0,GPR0(r1) std r10,GPR1(r1) @@ -85,7 +86,6 @@ std r9,GPR13(r1) SAVE_NVGPRS(r1) std r11,_XER(r1) - std r11,_LINK(r1) std r11,_CTR(r1) li r11,\trapnr diff -u linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/setup-common.c linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/setup-common.c --- linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/setup-common.c +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/setup-common.c @@ -899,6 +899,8 @@ /* 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 -u linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/trace/ftrace_64_mprofile.S linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/trace/ftrace_64_mprofile.S --- linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/trace/ftrace_64_mprofile.S +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/trace/ftrace_64_mprofile.S @@ -36,6 +36,9 @@ /* Save the original return address in A's stack frame */ std r0,LRSAVE(r1) + /* Create a minimal stack frame for representing B */ + stdu r1, -STACK_FRAME_MIN_SIZE(r1) + /* Create our stack frame + pt_regs */ stdu r1,-SWITCH_FRAME_SIZE(r1) @@ -51,7 +54,7 @@ SAVE_GPRS(12, 31, r1) /* Save previous stack pointer (r1) */ - addi r8, r1, SWITCH_FRAME_SIZE + addi r8, r1, SWITCH_FRAME_SIZE+STACK_FRAME_MIN_SIZE std r8, GPR1(r1) /* Load special regs for save below */ @@ -64,6 +67,8 @@ mflr r7 /* Save it as pt_regs->nip */ std r7, _NIP(r1) + /* Also save it in B's stackframe header for proper unwind */ + std r7, LRSAVE+SWITCH_FRAME_SIZE(r1) /* Save the read LR in pt_regs->link */ std r0, _LINK(r1) @@ -118,7 +123,7 @@ ld r2, 24(r1) /* Pop our stack frame */ - addi r1, r1, SWITCH_FRAME_SIZE + addi r1, r1, SWITCH_FRAME_SIZE+STACK_FRAME_MIN_SIZE #ifdef CONFIG_LIVEPATCH /* Based on the cmpd above, if the NIP was altered handle livepatch */ @@ -142,7 +147,7 @@ mflr r3 mtctr r3 REST_GPR(3, r1) - addi r1, r1, SWITCH_FRAME_SIZE + addi r1, r1, SWITCH_FRAME_SIZE+STACK_FRAME_MIN_SIZE mtlr r0 bctr @@ -150,6 +155,9 @@ /* Save the original return address in A's stack frame */ std r0, LRSAVE(r1) + /* Create a minimal stack frame for representing B */ + stdu r1, -STACK_FRAME_MIN_SIZE(r1) + /* Create our stack frame + pt_regs */ stdu r1, -SWITCH_FRAME_SIZE(r1) @@ -163,6 +171,7 @@ /* Get the _mcount() call site out of LR */ mflr r7 std r7, _NIP(r1) + std r7, LRSAVE+SWITCH_FRAME_SIZE(r1) /* Save callee's TOC in the ABI compliant location */ std r2, 24(r1) @@ -197,7 +206,7 @@ ld r2, 24(r1) /* Pop our stack frame */ - addi r1, r1, SWITCH_FRAME_SIZE + addi r1, r1, SWITCH_FRAME_SIZE+STACK_FRAME_MIN_SIZE /* Reload original LR */ ld r0, LRSAVE(r1) diff -u linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/traps.c linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/traps.c --- linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/traps.c +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/traps.c @@ -1148,6 +1148,7 @@ __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 @@ return ret; } +#endif static void parse_fpe(struct pt_regs *regs) { @@ -1421,10 +1423,12 @@ return -EINVAL; } +#ifdef CONFIG_GENERIC_BUG int is_valid_bugaddr(unsigned long addr) { return is_kernel_addr(addr); } +#endif #ifdef CONFIG_MATH_EMULATION static int emulate_math(struct pt_regs *regs) diff -u linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/vmlinux.lds.S linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/vmlinux.lds.S --- linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/vmlinux.lds.S +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/vmlinux.lds.S @@ -148,6 +148,12 @@ SOFT_MASK_TABLE(8) RESTART_TABLE(8) + .opd : AT(ADDR(.opd) - LOAD_OFFSET) { + __start_opd = .; + KEEP(*(.opd)) + __end_opd = .; + } + . = ALIGN(8); __stf_entry_barrier_fixup : AT(ADDR(__stf_entry_barrier_fixup) - LOAD_OFFSET) { __start___stf_entry_barrier_fixup = .; @@ -346,21 +352,13 @@ *(.branch_lt) } - .opd : AT(ADDR(.opd) - LOAD_OFFSET) { - __start_opd = .; - KEEP(*(.opd)) - __end_opd = .; - } - - . = ALIGN(256); - .got : AT(ADDR(.got) - LOAD_OFFSET) { - __toc_start = .; + .got : AT(ADDR(.got) - LOAD_OFFSET) ALIGN(256) { + *(.got) #ifndef CONFIG_RELOCATABLE __prom_init_toc_start = .; - arch/powerpc/kernel/prom_init.o*(.toc .got) + arch/powerpc/kernel/prom_init.o*(.toc) __prom_init_toc_end = .; #endif - *(.got) *(.toc) } #endif diff -u linux-xilinx-zynqmp-5.15.0/arch/powerpc/lib/Makefile linux-xilinx-zynqmp-5.15.0/arch/powerpc/lib/Makefile --- linux-xilinx-zynqmp-5.15.0/arch/powerpc/lib/Makefile +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/lib/Makefile @@ -37,8 +37,8 @@ # 64-bit linker creates .sfpr on demand for final link (vmlinux), # so it is only needed for modules, and only for older linkers which # do not support --save-restore-funcs -ifeq ($(call ld-ifversion, -lt, 22500, y),y) -extra-$(CONFIG_PPC64) += crtsavres.o +ifndef CONFIG_LD_IS_BFD +always-$(CONFIG_PPC64) += crtsavres.o endif obj-$(CONFIG_PPC_BOOK3S_64) += copyuser_power7.o copypage_power7.o \ diff -u linux-xilinx-zynqmp-5.15.0/arch/powerpc/lib/sstep.c linux-xilinx-zynqmp-5.15.0/arch/powerpc/lib/sstep.c --- linux-xilinx-zynqmp-5.15.0/arch/powerpc/lib/sstep.c +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/lib/sstep.c @@ -530,6 +530,8 @@ } u; nb = GETSIZE(op->type); + if (nb > sizeof(u)) + return -EINVAL; if (!address_ok(regs, ea, nb)) return -EFAULT; rn = op->reg; @@ -580,6 +582,8 @@ } u; nb = GETSIZE(op->type); + if (nb > sizeof(u)) + return -EINVAL; if (!address_ok(regs, ea, nb)) return -EFAULT; rn = op->reg; @@ -624,6 +628,9 @@ u8 b[sizeof(__vector128)]; } u = {}; + if (size > sizeof(u)) + return -EINVAL; + if (!address_ok(regs, ea & ~0xfUL, 16)) return -EFAULT; /* align to multiple of size */ @@ -651,6 +658,9 @@ u8 b[sizeof(__vector128)]; } u; + if (size > sizeof(u)) + return -EINVAL; + if (!address_ok(regs, ea & ~0xfUL, 16)) return -EFAULT; /* align to multiple of size */ diff -u linux-xilinx-zynqmp-5.15.0/arch/powerpc/mm/kasan/kasan_init_32.c linux-xilinx-zynqmp-5.15.0/arch/powerpc/mm/kasan/kasan_init_32.c --- linux-xilinx-zynqmp-5.15.0/arch/powerpc/mm/kasan/kasan_init_32.c +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/mm/kasan/kasan_init_32.c @@ -64,6 +64,7 @@ if (ret) return ret; + k_start = k_start & PAGE_MASK; block = memblock_alloc(k_end - k_start, PAGE_SIZE); if (!block) return -ENOMEM; diff -u linux-xilinx-zynqmp-5.15.0/arch/powerpc/mm/mem.c linux-xilinx-zynqmp-5.15.0/arch/powerpc/mm/mem.c --- linux-xilinx-zynqmp-5.15.0/arch/powerpc/mm/mem.c +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/mm/mem.c @@ -288,7 +288,6 @@ #endif high_memory = (void *) __va(max_low_pfn * PAGE_SIZE); - set_max_mapnr(max_pfn); kasan_late_init(); diff -u linux-xilinx-zynqmp-5.15.0/arch/powerpc/perf/core-book3s.c linux-xilinx-zynqmp-5.15.0/arch/powerpc/perf/core-book3s.c --- linux-xilinx-zynqmp-5.15.0/arch/powerpc/perf/core-book3s.c +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/perf/core-book3s.c @@ -1342,8 +1342,7 @@ /* * 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 @@ * instruction sampling or BHRB. */ if (val != mmcra) { - mtspr(SPRN_MMCRA, mmcra); + mtspr(SPRN_MMCRA, val); mb(); isync(); } diff -u linux-xilinx-zynqmp-5.15.0/arch/powerpc/perf/imc-pmu.c linux-xilinx-zynqmp-5.15.0/arch/powerpc/perf/imc-pmu.c --- linux-xilinx-zynqmp-5.15.0/arch/powerpc/perf/imc-pmu.c +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/perf/imc-pmu.c @@ -50,7 +50,7 @@ * 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, }; @@ -292,6 +292,8 @@ attr_group->attrs = attrs; do { ev_val_str = kasprintf(GFP_KERNEL, "event=0x%x", pmu->events[i].value); + if (!ev_val_str) + continue; dev_str = device_str_attr_create(pmu->events[i].name, ev_val_str); if (!dev_str) continue; @@ -299,6 +301,8 @@ attrs[j++] = dev_str; if (pmu->events[i].scale) { ev_scale_str = kasprintf(GFP_KERNEL, "%s.scale", pmu->events[i].name); + if (!ev_scale_str) + continue; dev_str = device_str_attr_create(ev_scale_str, pmu->events[i].scale); if (!dev_str) continue; @@ -308,6 +312,8 @@ if (pmu->events[i].unit) { ev_unit_str = kasprintf(GFP_KERNEL, "%s.unit", pmu->events[i].name); + if (!ev_unit_str) + continue; dev_str = device_str_attr_create(ev_unit_str, pmu->events[i].unit); if (!dev_str) continue; diff -u linux-xilinx-zynqmp-5.15.0/arch/powerpc/platforms/powernv/opal-prd.c linux-xilinx-zynqmp-5.15.0/arch/powerpc/platforms/powernv/opal-prd.c --- linux-xilinx-zynqmp-5.15.0/arch/powerpc/platforms/powernv/opal-prd.c +++ linux-xilinx-zynqmp-5.15.0/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 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/arch/powerpc/platforms/pseries/iommu.c linux-xilinx-zynqmp-5.15.0/arch/powerpc/platforms/pseries/iommu.c --- linux-xilinx-zynqmp-5.15.0/arch/powerpc/platforms/pseries/iommu.c +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/platforms/pseries/iommu.c @@ -1241,7 +1241,6 @@ 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 @@ 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 @@ 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 @@ 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 @@ * 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 -u linux-xilinx-zynqmp-5.15.0/arch/powerpc/platforms/pseries/lpar.c linux-xilinx-zynqmp-5.15.0/arch/powerpc/platforms/pseries/lpar.c --- linux-xilinx-zynqmp-5.15.0/arch/powerpc/platforms/pseries/lpar.c +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/platforms/pseries/lpar.c @@ -524,8 +524,10 @@ 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); diff -u linux-xilinx-zynqmp-5.15.0/arch/riscv/include/asm/irq_work.h linux-xilinx-zynqmp-5.15.0/arch/riscv/include/asm/irq_work.h --- linux-xilinx-zynqmp-5.15.0/arch/riscv/include/asm/irq_work.h +++ linux-xilinx-zynqmp-5.15.0/arch/riscv/include/asm/irq_work.h @@ -8,3 +8,3 @@ } -extern void arch_irq_work_raise(void); + #endif /* _ASM_RISCV_IRQ_WORK_H */ diff -u linux-xilinx-zynqmp-5.15.0/arch/riscv/kernel/module.c linux-xilinx-zynqmp-5.15.0/arch/riscv/kernel/module.c --- linux-xilinx-zynqmp-5.15.0/arch/riscv/kernel/module.c +++ linux-xilinx-zynqmp-5.15.0/arch/riscv/kernel/module.c @@ -423,7 +423,8 @@ { return __vmalloc_node_range(size, 1, MODULES_VADDR, MODULES_END, GFP_KERNEL, - PAGE_KERNEL, 0, NUMA_NO_NODE, + PAGE_KERNEL, VM_FLUSH_RESET_PERMS, + NUMA_NO_NODE, __builtin_return_address(0)); } #endif diff -u linux-xilinx-zynqmp-5.15.0/arch/riscv/kernel/patch.c linux-xilinx-zynqmp-5.15.0/arch/riscv/kernel/patch.c --- linux-xilinx-zynqmp-5.15.0/arch/riscv/kernel/patch.c +++ linux-xilinx-zynqmp-5.15.0/arch/riscv/kernel/patch.c @@ -13,6 +13,7 @@ #include #include #include +#include struct patch_insn { void *addr; @@ -23,6 +24,14 @@ int riscv_patch_in_stop_machine = false; #ifdef CONFIG_MMU + +static inline bool is_kernel_exittext(uintptr_t addr) +{ + return system_state < SYSTEM_RUNNING && + addr >= (uintptr_t)__exittext_begin && + addr < (uintptr_t)__exittext_end; +} + /* * The fix_to_virt(, idx) needs a const value (not a dynamic variable of * reg-a0) or BUILD_BUG_ON failed with "idx >= __end_of_fixed_addresses". @@ -33,7 +42,7 @@ uintptr_t uintaddr = (uintptr_t) addr; struct page *page; - if (core_kernel_text(uintaddr)) + if (core_kernel_text(uintaddr) || is_kernel_exittext(uintaddr)) page = phys_to_page(__pa_symbol(addr)); else if (IS_ENABLED(CONFIG_STRICT_MODULE_RWX)) page = vmalloc_to_page(addr); diff -u linux-xilinx-zynqmp-5.15.0/arch/riscv/kernel/probes/simulate-insn.c linux-xilinx-zynqmp-5.15.0/arch/riscv/kernel/probes/simulate-insn.c --- linux-xilinx-zynqmp-5.15.0/arch/riscv/kernel/probes/simulate-insn.c +++ linux-xilinx-zynqmp-5.15.0/arch/riscv/kernel/probes/simulate-insn.c @@ -24,7 +24,7 @@ unsigned long val) { if (index == 0) - return false; + return true; else if (index <= 31) *((unsigned long *)regs + index) = val; else diff -u linux-xilinx-zynqmp-5.15.0/arch/s390/crypto/aes_s390.c linux-xilinx-zynqmp-5.15.0/arch/s390/crypto/aes_s390.c --- linux-xilinx-zynqmp-5.15.0/arch/s390/crypto/aes_s390.c +++ linux-xilinx-zynqmp-5.15.0/arch/s390/crypto/aes_s390.c @@ -601,7 +601,9 @@ * final block may be < AES_BLOCK_SIZE, copy only nbytes */ if (nbytes) { - cpacf_kmctr(sctx->fc, sctx->key, buf, walk.src.virt.addr, + memset(buf, 0, AES_BLOCK_SIZE); + memcpy(buf, walk.src.virt.addr, nbytes); + cpacf_kmctr(sctx->fc, sctx->key, buf, buf, AES_BLOCK_SIZE, walk.iv); memcpy(walk.dst.virt.addr, buf, nbytes); crypto_inc(walk.iv, AES_BLOCK_SIZE); diff -u linux-xilinx-zynqmp-5.15.0/arch/s390/crypto/paes_s390.c linux-xilinx-zynqmp-5.15.0/arch/s390/crypto/paes_s390.c --- linux-xilinx-zynqmp-5.15.0/arch/s390/crypto/paes_s390.c +++ linux-xilinx-zynqmp-5.15.0/arch/s390/crypto/paes_s390.c @@ -688,9 +688,11 @@ * final block may be < AES_BLOCK_SIZE, copy only nbytes */ if (nbytes) { + memset(buf, 0, AES_BLOCK_SIZE); + memcpy(buf, walk.src.virt.addr, nbytes); while (1) { if (cpacf_kmctr(ctx->fc, ¶m, buf, - walk.src.virt.addr, AES_BLOCK_SIZE, + buf, AES_BLOCK_SIZE, walk.iv) == AES_BLOCK_SIZE) break; if (__paes_convert_key(ctx)) diff -u linux-xilinx-zynqmp-5.15.0/arch/s390/include/asm/pci_io.h linux-xilinx-zynqmp-5.15.0/arch/s390/include/asm/pci_io.h --- linux-xilinx-zynqmp-5.15.0/arch/s390/include/asm/pci_io.h +++ linux-xilinx-zynqmp-5.15.0/arch/s390/include/asm/pci_io.h @@ -11,6 +11,8 @@ /* I/O size constraints */ #define ZPCI_MAX_READ_SIZE 8 #define ZPCI_MAX_WRITE_SIZE 128 +#define ZPCI_BOUNDARY_SIZE (1 << 12) +#define ZPCI_BOUNDARY_MASK (ZPCI_BOUNDARY_SIZE - 1) /* I/O Map */ #define ZPCI_IOMAP_SHIFT 48 @@ -125,16 +127,18 @@ int zpci_write_block(volatile void __iomem *dst, const void *src, unsigned long len); -static inline u8 zpci_get_max_write_size(u64 src, u64 dst, int len, int max) +static inline int zpci_get_max_io_size(u64 src, u64 dst, int len, int max) { - int count = len > max ? max : len, size = 1; + int offset = dst & ZPCI_BOUNDARY_MASK; + int size; - while (!(src & 0x1) && !(dst & 0x1) && ((size << 1) <= count)) { - dst = dst >> 1; - src = src >> 1; - size = size << 1; - } - return size; + size = min3(len, ZPCI_BOUNDARY_SIZE - offset, max); + if (IS_ALIGNED(src, 8) && IS_ALIGNED(dst, 8) && IS_ALIGNED(size, 8)) + return size; + + if (size >= 8) + return 8; + return rounddown_pow_of_two(size); } static inline int zpci_memcpy_fromio(void *dst, @@ -144,9 +148,9 @@ int size, rc = 0; while (n > 0) { - size = zpci_get_max_write_size((u64 __force) src, - (u64) dst, n, - ZPCI_MAX_READ_SIZE); + size = zpci_get_max_io_size((u64 __force) src, + (u64) dst, n, + ZPCI_MAX_READ_SIZE); rc = zpci_read_single(dst, src, size); if (rc) break; @@ -166,9 +170,9 @@ return -EINVAL; while (n > 0) { - size = zpci_get_max_write_size((u64 __force) dst, - (u64) src, n, - ZPCI_MAX_WRITE_SIZE); + size = zpci_get_max_io_size((u64 __force) dst, + (u64) src, n, + ZPCI_MAX_WRITE_SIZE); if (size > 8) /* main path */ rc = zpci_write_block(dst, src, size); else diff -u linux-xilinx-zynqmp-5.15.0/arch/s390/kernel/ptrace.c linux-xilinx-zynqmp-5.15.0/arch/s390/kernel/ptrace.c --- linux-xilinx-zynqmp-5.15.0/arch/s390/kernel/ptrace.c +++ linux-xilinx-zynqmp-5.15.0/arch/s390/kernel/ptrace.c @@ -392,6 +392,7 @@ /* * floating point control reg. is in the thread structure */ + save_fpu_regs(); if ((unsigned int) data != 0 || test_fp_ctl(data >> (BITS_PER_LONG - 32))) return -EINVAL; @@ -754,6 +755,7 @@ /* * floating point control reg. is in the thread structure */ + save_fpu_regs(); if (test_fp_ctl(tmp)) return -EINVAL; child->thread.fpu.fpc = data; @@ -917,9 +919,7 @@ int rc = 0; freg_t fprs[__NUM_FPRS]; - if (target == current) - save_fpu_regs(); - + save_fpu_regs(); if (MACHINE_HAS_VX) convert_vx_to_fp(fprs, target->thread.fpu.vxrs); else diff -u linux-xilinx-zynqmp-5.15.0/arch/s390/kernel/setup.c linux-xilinx-zynqmp-5.15.0/arch/s390/kernel/setup.c --- linux-xilinx-zynqmp-5.15.0/arch/s390/kernel/setup.c +++ linux-xilinx-zynqmp-5.15.0/arch/s390/kernel/setup.c @@ -597,7 +597,8 @@ * part of the System RAM resource. */ if (crashk_res.end) { - memblock_add_node(crashk_res.start, resource_size(&crashk_res), 0); + memblock_add_node(crashk_res.start, resource_size(&crashk_res), + 0, MEMBLOCK_NONE); memblock_reserve(crashk_res.start, resource_size(&crashk_res)); insert_resource(&iomem_resource, &crashk_res); } diff -u linux-xilinx-zynqmp-5.15.0/arch/s390/kvm/kvm-s390.c linux-xilinx-zynqmp-5.15.0/arch/s390/kvm/kvm-s390.c --- linux-xilinx-zynqmp-5.15.0/arch/s390/kvm/kvm-s390.c +++ linux-xilinx-zynqmp-5.15.0/arch/s390/kvm/kvm-s390.c @@ -3873,10 +3873,6 @@ vcpu_load(vcpu); - if (test_fp_ctl(fpu->fpc)) { - ret = -EINVAL; - goto out; - } vcpu->run->s.regs.fpc = fpu->fpc; if (MACHINE_HAS_VX) convert_fp_to_vx((__vector128 *) vcpu->run->s.regs.vrs, @@ -3884,7 +3880,6 @@ else memcpy(vcpu->run->s.regs.fprs, &fpu->fprs, sizeof(fpu->fprs)); -out: vcpu_put(vcpu); return ret; } diff -u linux-xilinx-zynqmp-5.15.0/arch/s390/mm/pgtable.c linux-xilinx-zynqmp-5.15.0/arch/s390/mm/pgtable.c --- linux-xilinx-zynqmp-5.15.0/arch/s390/mm/pgtable.c +++ linux-xilinx-zynqmp-5.15.0/arch/s390/mm/pgtable.c @@ -731,7 +731,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/arch/s390/pci/pci_mmio.c linux-xilinx-zynqmp-5.15.0/arch/s390/pci/pci_mmio.c --- linux-xilinx-zynqmp-5.15.0/arch/s390/pci/pci_mmio.c +++ linux-xilinx-zynqmp-5.15.0/arch/s390/pci/pci_mmio.c @@ -96,9 +96,9 @@ return -EINVAL; while (n > 0) { - size = zpci_get_max_write_size((u64 __force) dst, - (u64 __force) src, n, - ZPCI_MAX_WRITE_SIZE); + size = zpci_get_max_io_size((u64 __force) dst, + (u64 __force) src, n, + ZPCI_MAX_WRITE_SIZE); if (size > 8) /* main path */ rc = __pcistb_mio_inuser(dst, src, size, &status); else @@ -241,9 +241,9 @@ u8 status; while (n > 0) { - size = zpci_get_max_write_size((u64 __force) src, - (u64 __force) dst, n, - ZPCI_MAX_READ_SIZE); + size = zpci_get_max_io_size((u64 __force) src, + (u64 __force) dst, n, + ZPCI_MAX_READ_SIZE); rc = __pcilg_mio_inuser(dst, src, size, &status); if (rc) break; diff -u linux-xilinx-zynqmp-5.15.0/arch/sh/Kconfig.debug linux-xilinx-zynqmp-5.15.0/arch/sh/Kconfig.debug --- linux-xilinx-zynqmp-5.15.0/arch/sh/Kconfig.debug +++ linux-xilinx-zynqmp-5.15.0/arch/sh/Kconfig.debug @@ -22,6 +22,17 @@ 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 -u linux-xilinx-zynqmp-5.15.0/arch/um/kernel/process.c linux-xilinx-zynqmp-5.15.0/arch/um/kernel/process.c --- linux-xilinx-zynqmp-5.15.0/arch/um/kernel/process.c +++ linux-xilinx-zynqmp-5.15.0/arch/um/kernel/process.c @@ -218,7 +218,7 @@ raw_local_irq_enable(); } -int __cant_sleep(void) { +int __uml_cant_sleep(void) { return in_atomic() || irqs_disabled() || in_interrupt(); /* Is in_interrupt() really needed? */ } diff -u linux-xilinx-zynqmp-5.15.0/arch/um/os-Linux/util.c linux-xilinx-zynqmp-5.15.0/arch/um/os-Linux/util.c --- linux-xilinx-zynqmp-5.15.0/arch/um/os-Linux/util.c +++ linux-xilinx-zynqmp-5.15.0/arch/um/os-Linux/util.c @@ -174,22 +174,37 @@ " Turns off information messages during boot.\n\n"); +/* + * The os_info/os_warn functions will be called by helper threads. These + * have a very limited stack size and using the libc formatting functions + * may overflow the stack. + * So pull in the kernel vscnprintf and use that instead with a fixed + * on-stack buffer. + */ +int vscnprintf(char *buf, size_t size, const char *fmt, va_list args); + void os_info(const char *fmt, ...) { + char buf[256]; va_list list; + int len; if (quiet_info) return; va_start(list, fmt); - vfprintf(stderr, fmt, list); + len = vscnprintf(buf, sizeof(buf), fmt, list); + fwrite(buf, len, 1, stderr); va_end(list); } void os_warn(const char *fmt, ...) { + char buf[256]; va_list list; + int len; va_start(list, fmt); - vfprintf(stderr, fmt, list); + len = vscnprintf(buf, sizeof(buf), fmt, list); + fwrite(buf, len, 1, stderr); va_end(list); } diff -u linux-xilinx-zynqmp-5.15.0/arch/x86/boot/compressed/ident_map_64.c linux-xilinx-zynqmp-5.15.0/arch/x86/boot/compressed/ident_map_64.c --- linux-xilinx-zynqmp-5.15.0/arch/x86/boot/compressed/ident_map_64.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/boot/compressed/ident_map_64.c @@ -359,0 +360,5 @@ + +void do_boot_nmi_trap(struct pt_regs *regs, unsigned long error_code) +{ + /* Empty handler to ignore NMI during early boot */ +} diff -u linux-xilinx-zynqmp-5.15.0/arch/x86/events/intel/lbr.c linux-xilinx-zynqmp-5.15.0/arch/x86/events/intel/lbr.c --- linux-xilinx-zynqmp-5.15.0/arch/x86/events/intel/lbr.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/events/intel/lbr.c @@ -4,7 +4,6 @@ #include #include -#include #include "../perf_event.h" @@ -74,65 +73,6 @@ #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 * * Hardware branch filter for Arch LBR @@ -1168,219 +1108,6 @@ 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 -u linux-xilinx-zynqmp-5.15.0/arch/x86/events/intel/pt.c linux-xilinx-zynqmp-5.15.0/arch/x86/events/intel/pt.c --- linux-xilinx-zynqmp-5.15.0/arch/x86/events/intel/pt.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/events/intel/pt.c @@ -1360,20 +1360,10 @@ } #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 @@ /* 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 -u linux-xilinx-zynqmp-5.15.0/arch/x86/events/perf_event.h linux-xilinx-zynqmp-5.15.0/arch/x86/events/perf_event.h --- linux-xilinx-zynqmp-5.15.0/arch/x86/events/perf_event.h +++ linux-xilinx-zynqmp-5.15.0/arch/x86/events/perf_event.h @@ -1182,6 +1182,68 @@ 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 -u linux-xilinx-zynqmp-5.15.0/arch/x86/include/asm/fpu/api.h linux-xilinx-zynqmp-5.15.0/arch/x86/include/asm/fpu/api.h --- linux-xilinx-zynqmp-5.15.0/arch/x86/include/asm/fpu/api.h +++ linux-xilinx-zynqmp-5.15.0/arch/x86/include/asm/fpu/api.h @@ -145,7 +145,8 @@ extern void fpu_free_guest_fpstate(struct fpu_guest *gfpu); extern int fpu_swap_kvm_fpstate(struct fpu_guest *gfpu, bool enter_guest); -extern void fpu_copy_guest_fpstate_to_uabi(struct fpu_guest *gfpu, void *buf, unsigned int size, u32 pkru); +extern void fpu_copy_guest_fpstate_to_uabi(struct fpu_guest *gfpu, void *buf, + unsigned int size, u64 xfeatures, u32 pkru); extern int fpu_copy_uabi_to_guest_fpstate(struct fpu_guest *gfpu, const void *buf, u64 xcr0, u32 *vpkru); static inline void fpstate_set_confidential(struct fpu_guest *gfpu) diff -u linux-xilinx-zynqmp-5.15.0/arch/x86/include/asm/msr-index.h linux-xilinx-zynqmp-5.15.0/arch/x86/include/asm/msr-index.h --- linux-xilinx-zynqmp-5.15.0/arch/x86/include/asm/msr-index.h +++ linux-xilinx-zynqmp-5.15.0/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 diff -u linux-xilinx-zynqmp-5.15.0/arch/x86/include/asm/syscall_wrapper.h linux-xilinx-zynqmp-5.15.0/arch/x86/include/asm/syscall_wrapper.h --- linux-xilinx-zynqmp-5.15.0/arch/x86/include/asm/syscall_wrapper.h +++ linux-xilinx-zynqmp-5.15.0/arch/x86/include/asm/syscall_wrapper.h @@ -58,12 +58,29 @@ ,,regs->di,,regs->si,,regs->dx \ ,,regs->r10,,regs->r8,,regs->r9) \ + +/* SYSCALL_PT_ARGS is Adapted from s390x */ +#define SYSCALL_PT_ARG6(m, t1, t2, t3, t4, t5, t6) \ + SYSCALL_PT_ARG5(m, t1, t2, t3, t4, t5), m(t6, (regs->bp)) +#define SYSCALL_PT_ARG5(m, t1, t2, t3, t4, t5) \ + SYSCALL_PT_ARG4(m, t1, t2, t3, t4), m(t5, (regs->di)) +#define SYSCALL_PT_ARG4(m, t1, t2, t3, t4) \ + SYSCALL_PT_ARG3(m, t1, t2, t3), m(t4, (regs->si)) +#define SYSCALL_PT_ARG3(m, t1, t2, t3) \ + SYSCALL_PT_ARG2(m, t1, t2), m(t3, (regs->dx)) +#define SYSCALL_PT_ARG2(m, t1, t2) \ + SYSCALL_PT_ARG1(m, t1), m(t2, (regs->cx)) +#define SYSCALL_PT_ARG1(m, t1) m(t1, (regs->bx)) +#define SYSCALL_PT_ARGS(x, ...) SYSCALL_PT_ARG##x(__VA_ARGS__) + +#define __SC_COMPAT_CAST(t, a) \ + (__typeof(__builtin_choose_expr(__TYPE_IS_L(t), 0, 0U))) \ + (unsigned int)a + /* Mapping of registers to parameters for syscalls on i386 */ #define SC_IA32_REGS_TO_ARGS(x, ...) \ - __MAP(x,__SC_ARGS \ - ,,(unsigned int)regs->bx,,(unsigned int)regs->cx \ - ,,(unsigned int)regs->dx,,(unsigned int)regs->si \ - ,,(unsigned int)regs->di,,(unsigned int)regs->bp) + SYSCALL_PT_ARGS(x, __SC_COMPAT_CAST, \ + __MAP(x, __SC_TYPE, __VA_ARGS__)) \ #define __SYS_STUB0(abi, name) \ long __##abi##_##name(const struct pt_regs *regs); \ diff -u linux-xilinx-zynqmp-5.15.0/arch/x86/include/asm/uaccess.h linux-xilinx-zynqmp-5.15.0/arch/x86/include/asm/uaccess.h --- linux-xilinx-zynqmp-5.15.0/arch/x86/include/asm/uaccess.h +++ linux-xilinx-zynqmp-5.15.0/arch/x86/include/asm/uaccess.h @@ -543,7 +543,7 @@ #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 -u linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/acpi/boot.c linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/acpi/boot.c --- linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/acpi/boot.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/acpi/boot.c @@ -139,6 +139,9 @@ 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); diff -u linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/alternative.c linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/alternative.c --- linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/alternative.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/alternative.c @@ -963,8 +963,8 @@ } else { local_irq_save(flags); memcpy(addr, opcode, len); - local_irq_restore(flags); sync_core(); + local_irq_restore(flags); /* * Could also do a CLFLUSH here to speed up CPU recovery; but diff -u linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/cpu/amd.c linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/cpu/amd.c --- linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/cpu/amd.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/cpu/amd.c @@ -1286,6 +1286,9 @@ void amd_check_microcode(void) { + if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD) + return; + on_each_cpu(zenbleed_check_cpu, NULL, 1); } diff -u linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/cpu/bugs.c linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/cpu/bugs.c --- linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/cpu/bugs.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/cpu/bugs.c @@ -2477,7 +2477,7 @@ 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; } diff -u linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/cpu/hygon.c linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/cpu/hygon.c --- linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/cpu/hygon.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/cpu/hygon.c @@ -86,8 +86,12 @@ 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 -u linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/cpu/mce/core.c linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/cpu/mce/core.c --- linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/cpu/mce/core.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/cpu/mce/core.c @@ -44,6 +44,7 @@ #include #include #include +#include #include #include @@ -274,6 +275,7 @@ struct llist_node *pending; struct mce_evt_llist *l; int apei_err = 0; + struct page *p; /* * Allow instrumentation around external facilities usage. Not that it @@ -329,6 +331,20 @@ if (!fake_panic) { if (panic_timeout == 0) panic_timeout = mca_cfg.panic_timeout; + + /* + * Kdump skips the poisoned page in order to avoid + * touching the error bits again. Poison the page even + * if the error is fatal and the machine is about to + * panic. + */ + if (kexec_crash_loaded()) { + if (final && (final->status & MCI_STATUS_ADDRV)) { + p = pfn_to_online_page(final->addr >> PAGE_SHIFT); + if (p) + SetPageHWPoison(p); + } + } panic(msg); } else pr_emerg(HW_ERR "Fake kernel panic: %s\n", msg); diff -u linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/fpu/core.c linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/fpu/core.c --- linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/fpu/core.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/fpu/core.c @@ -262,14 +262,15 @@ EXPORT_SYMBOL_GPL(fpu_swap_kvm_fpstate); void fpu_copy_guest_fpstate_to_uabi(struct fpu_guest *gfpu, void *buf, - unsigned int size, u32 pkru) + unsigned int size, u64 xfeatures, u32 pkru) { struct fpstate *kstate = gfpu->fpstate; union fpregs_state *ustate = buf; struct membuf mb = { .p = buf, .left = size }; if (cpu_feature_enabled(X86_FEATURE_XSAVE)) { - __copy_xstate_to_uabi_buf(mb, kstate, pkru, XSTATE_COPY_XSAVE); + __copy_xstate_to_uabi_buf(mb, kstate, xfeatures, pkru, + XSTATE_COPY_XSAVE); } else { memcpy(&ustate->fxsave, &kstate->regs.fxsave, sizeof(ustate->fxsave)); diff -u linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/fpu/xstate.c linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/fpu/xstate.c --- linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/fpu/xstate.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/fpu/xstate.c @@ -1127,6 +1127,7 @@ * __copy_xstate_to_uabi_buf - Copy kernel saved xstate to a UABI buffer * @to: membuf descriptor * @fpstate: The fpstate buffer from which to copy + * @xfeatures: The mask of xfeatures to save (XSAVE mode only) * @pkru_val: The PKRU value to store in the PKRU component * @copy_mode: The requested copy mode * @@ -1137,7 +1138,8 @@ * It supports partial copy but @to.pos always starts from zero. */ void __copy_xstate_to_uabi_buf(struct membuf to, struct fpstate *fpstate, - u32 pkru_val, enum xstate_copy_mode copy_mode) + u64 xfeatures, u32 pkru_val, + enum xstate_copy_mode copy_mode) { const unsigned int off_mxcsr = offsetof(struct fxregs_state, mxcsr); struct xregs_state *xinit = &init_fpstate.regs.xsave; @@ -1161,7 +1163,7 @@ break; case XSTATE_COPY_XSAVE: - header.xfeatures &= fpstate->user_xfeatures; + header.xfeatures &= fpstate->user_xfeatures & xfeatures; break; } @@ -1256,6 +1258,7 @@ enum xstate_copy_mode copy_mode) { __copy_xstate_to_uabi_buf(to, tsk->thread.fpu.fpstate, + tsk->thread.fpu.fpstate->user_xfeatures, tsk->thread.pkru, copy_mode); } diff -u linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/fpu/xstate.h linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/fpu/xstate.h --- linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/fpu/xstate.h +++ linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/fpu/xstate.h @@ -33,7 +33,8 @@ struct membuf; extern void __copy_xstate_to_uabi_buf(struct membuf to, struct fpstate *fpstate, - u32 pkru_val, enum xstate_copy_mode copy_mode); + u64 xfeatures, u32 pkru_val, + enum xstate_copy_mode copy_mode); extern void copy_xstate_to_uabi_buf(struct membuf to, struct task_struct *tsk, enum xstate_copy_mode mode); extern int copy_uabi_from_kernel_to_xstate(struct fpstate *fpstate, const void *kbuf); diff -u linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/head64.c linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/head64.c --- linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/head64.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/head64.c @@ -79,7 +79,7 @@ * 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, }; diff -u linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/i8259.c linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/i8259.c --- linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/i8259.c +++ linux-xilinx-zynqmp-5.15.0/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 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); @@ -434,2 +452,6 @@ - device_initcall(i8259A_init_ops); + +void __init legacy_pic_pcat_compat(void) +{ + pcat_compat = true; +} diff -u linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/kprobes/core.c linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/kprobes/core.c --- linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/kprobes/core.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/kprobes/core.c @@ -563,7 +563,8 @@ { unsigned long offs = addrmode_regoffs[p->ainsn.indirect.reg]; - int3_emulate_call(regs, regs_get_register(regs, offs)); + int3_emulate_push(regs, regs->ip - INT3_INSN_SIZE + p->ainsn.size); + int3_emulate_jmp(regs, regs_get_register(regs, offs)); } NOKPROBE_SYMBOL(kprobe_emulate_call_indirect); diff -u linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/setup.c linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/setup.c --- linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/setup.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/setup.c @@ -67,11 +67,6 @@ #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 -u linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/tsc.c linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/tsc.c --- linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/tsc.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/tsc.c @@ -1217,7 +1217,7 @@ if (boot_cpu_has(X86_FEATURE_CONSTANT_TSC) && boot_cpu_has(X86_FEATURE_NONSTOP_TSC) && boot_cpu_has(X86_FEATURE_TSC_ADJUST) && - nr_online_nodes <= 2) + nr_online_nodes <= 4) tsc_disable_clocksource_watchdog(); } diff -u linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/vmlinux.lds.S linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/vmlinux.lds.S --- linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/vmlinux.lds.S +++ linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/vmlinux.lds.S @@ -414,7 +414,7 @@ .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 -u linux-xilinx-zynqmp-5.15.0/arch/x86/kvm/emulate.c linux-xilinx-zynqmp-5.15.0/arch/x86/kvm/emulate.c --- linux-xilinx-zynqmp-5.15.0/arch/x86/kvm/emulate.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/kvm/emulate.c @@ -687,7 +687,7 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/arch/x86/kvm/hyperv.c linux-xilinx-zynqmp-5.15.0/arch/x86/kvm/hyperv.c --- linux-xilinx-zynqmp-5.15.0/arch/x86/kvm/hyperv.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/kvm/hyperv.c @@ -701,10 +701,12 @@ 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 -u linux-xilinx-zynqmp-5.15.0/arch/x86/kvm/lapic.c linux-xilinx-zynqmp-5.15.0/arch/x86/kvm/lapic.c --- linux-xilinx-zynqmp-5.15.0/arch/x86/kvm/lapic.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/kvm/lapic.c @@ -2411,13 +2411,17 @@ { 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 -u linux-xilinx-zynqmp-5.15.0/arch/x86/kvm/svm/svm.c linux-xilinx-zynqmp-5.15.0/arch/x86/kvm/svm/svm.c --- linux-xilinx-zynqmp-5.15.0/arch/x86/kvm/svm/svm.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/kvm/svm/svm.c @@ -1749,15 +1749,17 @@ 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 -u linux-xilinx-zynqmp-5.15.0/arch/x86/kvm/x86.c linux-xilinx-zynqmp-5.15.0/arch/x86/kvm/x86.c --- linux-xilinx-zynqmp-5.15.0/arch/x86/kvm/x86.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/kvm/x86.c @@ -1745,7 +1745,7 @@ * 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 @@ 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 @@ 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 @@ -4860,16 +4862,37 @@ return 0; } -static void kvm_vcpu_ioctl_x86_get_xsave(struct kvm_vcpu *vcpu, - struct kvm_xsave *guest_xsave) + +static void kvm_vcpu_ioctl_x86_get_xsave2(struct kvm_vcpu *vcpu, + u8 *state, unsigned int size) { + /* + * Only copy state for features that are enabled for the guest. The + * state itself isn't problematic, but setting bits in the header for + * features that are supported in *this* host but not exposed to the + * guest can result in KVM_SET_XSAVE failing when live migrating to a + * compatible host without the features that are NOT exposed to the + * guest. + * + * FP+SSE can always be saved/restored via KVM_{G,S}ET_XSAVE, even if + * XSAVE/XCRO are not exposed to the guest, and even if XSAVE isn't + * supported by the host. + */ + u64 supported_xcr0 = vcpu->arch.guest_supported_xcr0 | + XFEATURE_MASK_FPSSE; + if (fpstate_is_confidential(&vcpu->arch.guest_fpu)) return; - fpu_copy_guest_fpstate_to_uabi(&vcpu->arch.guest_fpu, - guest_xsave->region, - sizeof(guest_xsave->region), - vcpu->arch.pkru); + fpu_copy_guest_fpstate_to_uabi(&vcpu->arch.guest_fpu, state, size, + supported_xcr0, vcpu->arch.pkru); +} + +static void kvm_vcpu_ioctl_x86_get_xsave(struct kvm_vcpu *vcpu, + struct kvm_xsave *guest_xsave) +{ + return kvm_vcpu_ioctl_x86_get_xsave2(vcpu, (void *)guest_xsave->region, + sizeof(guest_xsave->region)); } static int kvm_vcpu_ioctl_x86_set_xsave(struct kvm_vcpu *vcpu, diff -u linux-xilinx-zynqmp-5.15.0/arch/x86/kvm/x86.h linux-xilinx-zynqmp-5.15.0/arch/x86/kvm/x86.h --- linux-xilinx-zynqmp-5.15.0/arch/x86/kvm/x86.h +++ linux-xilinx-zynqmp-5.15.0/arch/x86/kvm/x86.h @@ -211,14 +211,9 @@ 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 -u linux-xilinx-zynqmp-5.15.0/arch/x86/mm/numa.c linux-xilinx-zynqmp-5.15.0/arch/x86/mm/numa.c --- linux-xilinx-zynqmp-5.15.0/arch/x86/mm/numa.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/mm/numa.c @@ -601,13 +601,6 @@ 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 -u linux-xilinx-zynqmp-5.15.0/arch/x86/net/bpf_jit_comp.c linux-xilinx-zynqmp-5.15.0/arch/x86/net/bpf_jit_comp.c --- linux-xilinx-zynqmp-5.15.0/arch/x86/net/bpf_jit_comp.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/net/bpf_jit_comp.c @@ -2405,0 +2406,46 @@ + +void bpf_arch_poke_desc_update(struct bpf_jit_poke_descriptor *poke, + struct bpf_prog *new, struct bpf_prog *old) +{ + u8 *old_addr, *new_addr, *old_bypass_addr; + int ret; + + old_bypass_addr = old ? NULL : poke->bypass_addr; + old_addr = old ? (u8 *)old->bpf_func + poke->adj_off : NULL; + new_addr = new ? (u8 *)new->bpf_func + poke->adj_off : NULL; + + /* + * On program loading or teardown, the program's kallsym entry + * might not be in place, so we use __bpf_arch_text_poke to skip + * the kallsyms check. + */ + if (new) { + ret = __bpf_arch_text_poke(poke->tailcall_target, + BPF_MOD_JUMP, + old_addr, new_addr, true); + BUG_ON(ret < 0); + if (!old) { + ret = __bpf_arch_text_poke(poke->tailcall_bypass, + BPF_MOD_JUMP, + poke->bypass_addr, + NULL, true); + BUG_ON(ret < 0); + } + } else { + ret = __bpf_arch_text_poke(poke->tailcall_bypass, + BPF_MOD_JUMP, + old_bypass_addr, + poke->bypass_addr, true); + BUG_ON(ret < 0); + /* let other CPUs finish the execution of program + * so that it will not possible to expose them + * to invalid nop, stack unwind, nop state + */ + if (!ret) + synchronize_rcu(); + ret = __bpf_arch_text_poke(poke->tailcall_target, + BPF_MOD_JUMP, + old_addr, NULL, true); + BUG_ON(ret < 0); + } +} diff -u linux-xilinx-zynqmp-5.15.0/block/bio.c linux-xilinx-zynqmp-5.15.0/block/bio.c --- linux-xilinx-zynqmp-5.15.0/block/bio.c +++ linux-xilinx-zynqmp-5.15.0/block/bio.c @@ -809,7 +809,7 @@ if ((addr1 | mask) != (addr2 | mask)) return false; - if (bv->bv_len + len > queue_max_segment_size(q)) + if (len > queue_max_segment_size(q) - bv->bv_len) return false; return __bio_try_merge_page(bio, page, len, offset, same_page); } @@ -1026,7 +1026,7 @@ return; bio_for_each_segment_all(bvec, bio, iter_all) { - if (mark_dirty && !PageCompound(bvec->bv_page)) + if (mark_dirty) set_page_dirty_lock(bvec->bv_page); put_page(bvec->bv_page); } @@ -1345,8 +1345,7 @@ struct bvec_iter_all iter_all; bio_for_each_segment_all(bvec, bio, iter_all) { - if (!PageCompound(bvec->bv_page)) - set_page_dirty_lock(bvec->bv_page); + set_page_dirty_lock(bvec->bv_page); } } @@ -1394,7 +1393,7 @@ struct bvec_iter_all iter_all; bio_for_each_segment_all(bvec, bio, iter_all) { - if (!PageDirty(bvec->bv_page) && !PageCompound(bvec->bv_page)) + if (!PageDirty(bvec->bv_page)) goto defer; } diff -u linux-xilinx-zynqmp-5.15.0/block/blk-cgroup.c linux-xilinx-zynqmp-5.15.0/block/blk-cgroup.c --- linux-xilinx-zynqmp-5.15.0/block/blk-cgroup.c +++ linux-xilinx-zynqmp-5.15.0/block/blk-cgroup.c @@ -425,6 +425,7 @@ { struct blkcg_gq *blkg, *n; int count = BLKG_DESTROY_BATCH_SIZE; + int i; restart: spin_lock_irq(&q->queue_lock); @@ -447,6 +448,18 @@ } } + /* + * Mark policy deactivated since policy offline has been done, and + * the free is scheduled, so future blkcg_deactivate_policy() can + * be bypassed + */ + for (i = 0; i < BLKCG_MAX_POLS; i++) { + struct blkcg_policy *pol = blkcg_policy[i]; + + if (pol) + __clear_bit(pol->plid, q->blkcg_pols); + } + q->root_blkg = NULL; spin_unlock_irq(&q->queue_lock); } diff -u linux-xilinx-zynqmp-5.15.0/block/blk-core.c linux-xilinx-zynqmp-5.15.0/block/blk-core.c --- linux-xilinx-zynqmp-5.15.0/block/blk-core.c +++ linux-xilinx-zynqmp-5.15.0/block/blk-core.c @@ -693,18 +693,15 @@ #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) @@ -810,8 +807,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/block/blk-iocost.c linux-xilinx-zynqmp-5.15.0/block/blk-iocost.c --- linux-xilinx-zynqmp-5.15.0/block/blk-iocost.c +++ linux-xilinx-zynqmp-5.15.0/block/blk-iocost.c @@ -1342,6 +1342,13 @@ lockdep_assert_held(&iocg->waitq.lock); + /* + * If the delay is set by another CPU, we may be in the past. No need to + * change anything if so. This avoids decay calculation underflow. + */ + if (time_before64(now->now, iocg->delay_at)) + return false; + /* calculate the current delay in effect - 1/2 every second */ tdelta = now->now - iocg->delay_at; if (iocg->delay) diff -u linux-xilinx-zynqmp-5.15.0/block/blk-mq.c linux-xilinx-zynqmp-5.15.0/block/blk-mq.c --- linux-xilinx-zynqmp-5.15.0/block/blk-mq.c +++ linux-xilinx-zynqmp-5.15.0/block/blk-mq.c @@ -1177,6 +1177,22 @@ __add_wait_queue(wq, wait); /* + * Add one explicit barrier since blk_mq_get_driver_tag() may + * not imply barrier in case of failure. + * + * Order adding us to wait queue and allocating driver tag. + * + * The pair is the one implied in sbitmap_queue_wake_up() which + * orders clearing sbitmap tag bits and waitqueue_active() in + * __sbitmap_queue_wake_up(), since waitqueue_active() is lockless + * + * Otherwise, re-order of adding wait queue and getting driver tag + * may cause __sbitmap_queue_wake_up() to wake up nothing because + * the waitqueue_active() may not observe us in wait queue. + */ + smp_mb(); + + /* * It's possible that a tag was freed in the window between the * allocation failure and adding the hardware queue to the wait * queue. diff -u linux-xilinx-zynqmp-5.15.0/block/blk-settings.c linux-xilinx-zynqmp-5.15.0/block/blk-settings.c --- linux-xilinx-zynqmp-5.15.0/block/blk-settings.c +++ linux-xilinx-zynqmp-5.15.0/block/blk-settings.c @@ -136,7 +136,7 @@ limits->max_hw_sectors = max_hw_sectors; max_sectors = min_not_zero(max_hw_sectors, limits->max_dev_sectors); - max_sectors = min_t(unsigned int, max_sectors, BLK_DEF_MAX_SECTORS); + max_sectors = min(max_sectors, BLK_DEF_MAX_SECTORS); max_sectors = round_down(max_sectors, limits->logical_block_size >> SECTOR_SHIFT); limits->max_sectors = max_sectors; diff -u linux-xilinx-zynqmp-5.15.0/block/blk-throttle.c linux-xilinx-zynqmp-5.15.0/block/blk-throttle.c --- linux-xilinx-zynqmp-5.15.0/block/blk-throttle.c +++ linux-xilinx-zynqmp-5.15.0/block/blk-throttle.c @@ -1415,6 +1415,7 @@ tg_bps_limit(tg, READ), tg_bps_limit(tg, WRITE), tg_iops_limit(tg, READ), tg_iops_limit(tg, WRITE)); + rcu_read_lock(); /* * Update has_rules[] flags for the updated tg's subtree. A tg is * considered to have rules if either the tg itself or any of its @@ -1442,6 +1443,7 @@ this_tg->latency_target = max(this_tg->latency_target, parent_tg->latency_target); } + rcu_read_unlock(); /* * We're already holding queue_lock and know @tg is valid. Let's diff -u linux-xilinx-zynqmp-5.15.0/block/fops.c linux-xilinx-zynqmp-5.15.0/block/fops.c --- linux-xilinx-zynqmp-5.15.0/block/fops.c +++ linux-xilinx-zynqmp-5.15.0/block/fops.c @@ -599,22 +599,33 @@ filemap_invalidate_lock(inode->i_mapping); - /* Invalidate the page cache, including dirty pages. */ - error = truncate_bdev_range(bdev, file->f_mode, start, end); - if (error) - goto fail; - + /* + * Invalidate the page cache, including dirty pages, for valid + * de-allocate mode calls to fallocate(). + */ switch (mode) { case FALLOC_FL_ZERO_RANGE: case FALLOC_FL_ZERO_RANGE | FALLOC_FL_KEEP_SIZE: + error = truncate_bdev_range(bdev, file->f_mode, start, end); + if (error) + goto fail; + error = blkdev_issue_zeroout(bdev, start >> 9, len >> 9, GFP_KERNEL, BLKDEV_ZERO_NOUNMAP); break; case FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE: + error = truncate_bdev_range(bdev, file->f_mode, start, end); + if (error) + goto fail; + error = blkdev_issue_zeroout(bdev, start >> 9, len >> 9, GFP_KERNEL, BLKDEV_ZERO_NOFALLBACK); break; case FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE | FALLOC_FL_NO_HIDE_STALE: + error = truncate_bdev_range(bdev, file->f_mode, start, end); + if (error) + goto fail; + error = blkdev_issue_discard(bdev, start >> 9, len >> 9, GFP_KERNEL, 0); break; diff -u linux-xilinx-zynqmp-5.15.0/block/genhd.c linux-xilinx-zynqmp-5.15.0/block/genhd.c --- linux-xilinx-zynqmp-5.15.0/block/genhd.c +++ linux-xilinx-zynqmp-5.15.0/block/genhd.c @@ -421,7 +421,9 @@ DISK_MAX_PARTS); disk->minors = DISK_MAX_PARTS; } - if (disk->first_minor + disk->minors > MINORMASK + 1) + if (disk->first_minor > MINORMASK || + disk->minors > MINORMASK + 1 || + disk->first_minor + disk->minors > MINORMASK + 1) return -EINVAL; } else { if (WARN_ON(disk->minors)) @@ -538,6 +540,7 @@ out_del_block_link: if (!sysfs_deprecated) sysfs_remove_link(block_depr, dev_name(ddev)); + pm_runtime_set_memalloc_noio(ddev, false); out_device_del: device_del(ddev); out_free_ext_minor: diff -u linux-xilinx-zynqmp-5.15.0/block/ioctl.c linux-xilinx-zynqmp-5.15.0/block/ioctl.c --- linux-xilinx-zynqmp-5.15.0/block/ioctl.c +++ linux-xilinx-zynqmp-5.15.0/block/ioctl.c @@ -18,10 +18,8 @@ { struct gendisk *disk = bdev->bd_disk; struct blkpg_partition p; - long long start, length; + sector_t start, length; - if (disk->flags & GENHD_FL_NO_PART) - return -EINVAL; if (!capable(CAP_SYS_ADMIN)) return -EACCES; if (copy_from_user(&p, upart, sizeof(struct blkpg_partition))) @@ -35,14 +33,17 @@ if (op == BLKPG_DEL_PARTITION) return bdev_del_partition(disk, p.pno); + if (p.start < 0 || p.length <= 0 || p.start + p.length < 0) + return -EINVAL; + /* Check that the partition is aligned to the block size */ + if (!IS_ALIGNED(p.start | p.length, bdev_logical_block_size(bdev))) + return -EINVAL; + start = p.start >> SECTOR_SHIFT; length = p.length >> SECTOR_SHIFT; switch (op) { case BLKPG_ADD_PARTITION: - /* check if partition is aligned to blocksize */ - if (p.start & (bdev_logical_block_size(bdev) - 1)) - return -EINVAL; return bdev_add_partition(disk, p.pno, start, length); case BLKPG_RESIZE_PARTITION: return bdev_resize_partition(disk, p.pno, start, length); diff -u linux-xilinx-zynqmp-5.15.0/block/partitions/core.c linux-xilinx-zynqmp-5.15.0/block/partitions/core.c --- linux-xilinx-zynqmp-5.15.0/block/partitions/core.c +++ linux-xilinx-zynqmp-5.15.0/block/partitions/core.c @@ -463,6 +463,11 @@ goto out; } + if (disk->flags & GENHD_FL_NO_PART) { + ret = -EINVAL; + goto out; + } + if (partition_overlaps(disk, start, length, -1)) { ret = -EBUSY; goto out; diff -u linux-xilinx-zynqmp-5.15.0/crypto/algapi.c linux-xilinx-zynqmp-5.15.0/crypto/algapi.c --- linux-xilinx-zynqmp-5.15.0/crypto/algapi.c +++ linux-xilinx-zynqmp-5.15.0/crypto/algapi.c @@ -258,6 +258,7 @@ } if (!strcmp(q->cra_driver_name, alg->cra_name) || + !strcmp(q->cra_driver_name, alg->cra_driver_name) || !strcmp(q->cra_name, alg->cra_driver_name)) goto err; } diff -u linux-xilinx-zynqmp-5.15.0/crypto/pcrypt.c linux-xilinx-zynqmp-5.15.0/crypto/pcrypt.c --- linux-xilinx-zynqmp-5.15.0/crypto/pcrypt.c +++ linux-xilinx-zynqmp-5.15.0/crypto/pcrypt.c @@ -117,6 +117,8 @@ 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 @@ err = padata_do_parallel(ictx->psdec, padata, &ctx->cb_cpu); if (!err) return -EINPROGRESS; + if (err == -EBUSY) + return -EAGAIN; return err; } reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/abiname +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/abiname @@ -1 +0,0 @@ -93 reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/amd64/generic +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/amd64/generic @@ -1,26330 +0,0 @@ -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 -CXL EXPORT_SYMBOL_GPL 0x62823173 to_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x63416416 to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x685ba9df devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6ff60e1e cxl_add_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7dc637f4 cxl_probe_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8df96378 devm_cxl_add_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9293c8db devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xbd10f7db cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc23d7a17 __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc56247e7 is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xcdae2fb1 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xceef5a2f to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xde2e2217 cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe339ecd2 cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfb876849 cxl_driver_unregister 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 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 -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 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 -EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type -EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister -EXPORT_SYMBOL drivers/acpi/video 0x7cc484a5 acpi_video_handles_brightness_key_presses -EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register -EXPORT_SYMBOL drivers/acpi/video 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/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 0x1a7fc64b paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0x28fc09f0 pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0x2d24645c paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x67da188e pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x802b64ff pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x803ea640 pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0xafe14c85 pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xb019c75d pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -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/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 -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 0x34101451 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 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 0x8e849a18 ipmi_add_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xbe33323d ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -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 0xf5e97a70 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/nvram 0x3ef38dc9 arch_nvram_ops -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x3a48b1b4 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x3ae87a5f st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x91ca1f42 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc487bb61 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x30ba3585 xillybus_find_inode -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x4931b9c7 xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xe78d251e xillybus_cleanup_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x26166f9d xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x5eb714c9 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x80975619 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x0c4afb35 atmel_i2c_enqueue -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x7714db88 atmel_i2c_probe -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc3af916a atmel_i2c_send_receive -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfaab573f atmel_i2c_init_ecdh_cmd -EXPORT_SYMBOL drivers/crypto/ccp/ccp 0x47d3c97f psp_check_tee_status -EXPORT_SYMBOL drivers/crypto/ccp/ccp 0xaa04056c psp_tee_process_cmd -EXPORT_SYMBOL drivers/firewire/firewire-core 0x07414d9d fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x13303445 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x178314ff fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3af76684 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5ca45e20 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5f224e18 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6164ea40 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x69a27a5a fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6eae8013 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0x763dc9de fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7f5e18ad fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x87393729 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x91d1c102 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa0bf04ac fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb545f865 fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb88cae6f fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbeeb1ede fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbf801f9f fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc3e33234 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcb4c0853 fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd7186342 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd9ece498 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xda13b866 fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xec7be7f5 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xee7b707a fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf4d7a6f1 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/fpga/dfl 0x1475b04b __dfl_driver_register -EXPORT_SYMBOL drivers/fpga/dfl 0xc135d0a0 dfl_driver_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x001a3809 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00738a74 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0318c093 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0426e2dc drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04876180 drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x052a9f1a drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0539f02c drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05fef9c3 drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0629d2dc drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x063ecb86 drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07b1c201 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x087a96b1 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae2b46e drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b06ed43 drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b75078b drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bf0fa4f drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c469a45 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7fbe52 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0de61fd2 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ee1241f drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10f89ff0 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x111d4379 drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1133314d drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1164c8b7 drm_client_modeset_commit_locked -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 0x1394726f drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1428f169 drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14bcc952 drm_client_modeset_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14eb848e drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x152a08f8 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1594afa7 drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15b5ccf7 drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1686dcc6 drmm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16a4a6b6 drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x171ef174 drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17277945 drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17ad97de drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x191010bb drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1972a7ca drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ac180d7 devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1afe076c drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b727128 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c894a07 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cdc799d drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ddaff8a drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e3efc51 drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e5b53de drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f6e995a drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fec9840 drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20100da5 drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2184a12e drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d541eb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x228f1053 drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23325bcb drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x235e3705 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23ab0d69 drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f654d8 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 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 0x259d0a30 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2762cffc drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28831875 drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2886abe2 drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29e5f6f8 drm_writeback_signal_completion -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 0x2b8dff2f drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bc6c8cd drm_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c5f4928 drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c8e810e drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7ae9e7 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ea83809 drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f189993 drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f74b7b3 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x306689a3 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x309c1d03 drm_bridge_chain_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30d7c88f drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x313cf91d drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x323b7c99 drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32894cab drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32b1c7ed drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32d149fd drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33c363d7 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33c66a58 drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33d084ae drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3455e036 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x354ba744 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35610795 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35c5e095 drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x366d5fc5 __drmm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37231523 drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x373f472d drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ced33e drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37d6a5f1 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x381bd7cb drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x393091b1 drm_panel_of_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3961a5cf drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3985e34c drm_hdmi_avi_infoframe_colorspace -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a095bf3 drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a342ca8 __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a4fb232 drm_gem_get_pages -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 0x3b8946d7 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bdd3bb8 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3be57885 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c0c707b drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdee4a7 drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d8f1853 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e50b109 drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fa441bf drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x401c9550 drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42b8ba21 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x431dd449 drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4381a370 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43873171 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x438d325d drm_plane_create_zpos_immutable_property -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 0x44c3d6fd drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x459db57e drm_vblank_work_schedule -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45d5a18a drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x460a523f drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x462f6e4a drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47b602f3 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x482f9a86 drm_connector_set_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x484e9a5e drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49e19f38 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a208903 drm_gem_dmabuf_export -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 0x4ad39d3f drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b03e0e0 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b6a948e drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bb96dfa drm_gem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c4273d2 drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cad078e drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cea6349 drmm_kfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d341a47 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d61defa drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dc0d4ab drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dc4ef05 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dd4c056 drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fd43388 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5070d2ea __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x513c2d65 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52dd70ce drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53014db5 drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5542443b drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5707bfc1 drm_gem_shmem_madvise -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 0x57f3d016 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57f83e25 drm_add_override_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57fad2d9 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5823e5da drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x585b5251 drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x588eac31 drm_connector_attach_dp_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x594698a9 drm_connector_attach_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5983c97d drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59e4a016 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a9edf87 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b4cea3f drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c05cd47 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c330474 drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd8b3cb drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cfb190e drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ee028e9 drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f91fdca drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x611df9ec drm_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62e8de48 drm_atomic_bridge_chain_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x641b443a drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65fc1ca0 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66628f00 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6692daf6 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67b0c550 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69293c2b drm_crtc_commit_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69fcfbb8 drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b335bd8 drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bb8102f drm_gem_cma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bf73300 drm_crtc_vblank_helper_get_vblank_timestamp_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c8183db drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c92c231 drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dc58c6d drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dccff52 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e29e793 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f4ac940 drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70de562d drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x725a4ba9 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7444c64e drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74b25532 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x751d3156 drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76474cc6 drm_gem_cma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76dc1ff8 drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x771ea1e6 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77bf6bff drm_hdmi_avi_infoframe_bars -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77eef7c0 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x790ad73a drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a21af33 drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a779cd5 drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a8f3cf8 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ad29c59 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b0b6333 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b9329ef drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d34be94 drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d4e1286 drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7db502fd drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e5dfbdd drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7eb63bda __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81386be8 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x816764f8 drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81794cb2 drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x824d6286 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84211de2 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x842dd90c drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85605226 drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86095da7 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x870b6198 drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x872f348f drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87a3ccaf drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87dfa216 drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87eca309 drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8849fba0 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x893f1909 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a3b3d69 drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b5b2e4c drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c547965 drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d3374ee drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8da3a935 drm_dev_has_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8db47c2b drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ddbd967 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f6f5d43 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ffd20a2 drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x908e620a drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x921c3cf0 drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92ee8a9d drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x934782da drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93669390 drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x943c9d91 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x953feb4c drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9769b859 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97748ce6 drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98bf6bc5 drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98ff4b8b drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x995acbab drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99c0cdc7 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9aaea995 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9abafef8 drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b3ddd0a drm_poll -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 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d1b12b2 drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d8487a1 __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ebba417 drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ecfae5c drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ff38a3f drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0a4769d drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa145c4f3 drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1cca986 drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa27f9452 drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38de370 __drmm_add_action_or_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa456757a drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4842d45 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4b7d5e6 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5f505cc drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6cebe6a drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa728a636 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8f72a5a drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa96f75b7 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa07fb21 drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa190415 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaacc4298 drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab3c2c73 drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab941e1e drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xabacc879 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad0de932 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad9df7af drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae82db3a drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaece8ef8 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf708206 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xafb913f0 drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xafc97693 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb05fbb8b drm_modeset_acquire_fini -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 0xb1b9a737 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb292688d drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2a67635 drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2de4749 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb391801a drm_client_buffer_vunmap -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 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb66468b3 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb66d825b drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6b525ad drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6ef6d74 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7a10762 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7d6a1a6 drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7e09a65 drm_crtc_vblank_helper_get_vblank_timestamp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7ffb3b4 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb81900a2 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb83d666b drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb20d97a drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbfbaf7f drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcafdb47 drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcc51fbf drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd5ea6e4 drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdb8dd0b drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe8e5a3e drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf5267dd drm_connector_attach_hdr_output_metadata_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf54f443 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf94c3c4 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc079f09d drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0c67bad drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1204819 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc17e834d drm_gem_fence_array_add_implicit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc240f082 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc392f311 drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc43e8bc7 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5a275e6 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc601f2ea drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6323239 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc660177d drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc67f4d6f drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc704dea5 __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7910e38 drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7bb76e0 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7d04fc5 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7ee4f80 drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7fd4a43 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc84ab768 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8a16584 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc92936d9 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc95b3896 drm_atomic_set_fence_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca531c6d drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca7349bf drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb34b758 drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb82f64c drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd66b7c7 drm_plane_get_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd6cfe87 drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdbf20f8 drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcddf590e drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce590054 drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcea54d19 drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd00fb346 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd01668c9 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0b84c6e drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd14b5d1d drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2c2d2e9 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2f69b19 drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3527115 drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4581d20 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd56c1aab drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5a9898e drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5de7c45 drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd76602f2 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd805bee2 drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd943023e drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9dc6587 drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda48450c drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcb18195 drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd671fc8 drm_detect_hdmi_monitor -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 0xe0746539 drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2c41882 drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3897c15 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3a1f399 drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe581a93e drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5ec7c02 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe62438b0 drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6ec3526 drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6f2d1e9 drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7ca701c drm_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe84e1c94 __drm_atomic_helper_set_config -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 0xe8b0f37f drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea63ac6f drm_gem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeab8ccde drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb62a6e2 drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0xebbbcec5 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed4e67f2 drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef26fad7 drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeffb82a3 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf00d37e3 drm_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf059adff drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf07c0f25 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0b47124 drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0b6c33a drm_prime_sg_to_page_array -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 0xf2710b3b drm_atomic_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2aede1f drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2b94b08 drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf36b90cb drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf387c057 drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3f1aa9b drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf523aec6 drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf52f33ee drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5e1b8a2 drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf77399c5 drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9ded081 drm_atomic_get_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa82e79c drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfba37b48 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc756d09 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd76754e drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd7b6ae2 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfec50455 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff826ee8 drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00bdd4e2 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0164d9f8 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0192c6ec drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0221a59e drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x028da25b drm_dp_read_sink_count_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02cc97b9 drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x031f7781 __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03c3ddb7 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x045dc9c0 drm_dp_lttpr_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05255f46 drm_dp_pcon_convert_rgb_to_ycbcr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x065bc01a drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06f5e106 drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08077da1 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08fd53ca drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ad7ac5b drm_gem_fb_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bac199d drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c61cc2c drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c7f9376 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d861f7f drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f1592a3 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f9598b5 drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10edccef drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x118bee17 drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11c99cbf drm_dp_pcon_hdmi_frl_link_error_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12f1e24b drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13baa342 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1479053f drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x156a9857 drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15f826c1 drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16b6da47 drm_dp_pcon_pps_default -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 0x17d1a155 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a821bee drm_fb_helper_alloc_fbi -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 0x1b8dae5b drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b97079b __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d6420cf drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e84f8aa drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f6f37cb drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fb30b7b drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20992415 drm_dp_read_sink_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x217fbb84 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21902419 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2304d1e4 __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23961837 drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2399b2bd drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2968d00a drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ccc21f5 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e16ceac drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e1e8c41 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f16b254 drm_dp_read_dpcd_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 0x306904dc __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30af2c2b drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x315ccc71 drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31a6ad68 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32255172 drm_edp_backlight_set_level -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3235a767 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32c0e185 drm_gem_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33230513 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x334695b6 drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33dc8232 drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33f5122c drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x345402a0 drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3561e2ec drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36586a14 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x378b45dd drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x383995da drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a01e390 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ae02fae drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b3aee7f drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3db66737 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e1b5907 drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f29cf33 drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f5b710f drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x409c16a7 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4171d743 drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x433e6a0b drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44834f85 drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x448c63c7 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44a64548 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44aac388 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x457334c2 drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47ad0ae4 drm_gem_simple_kms_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x498f154b drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b7b66db drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c09a330 drm_dp_send_query_stream_enc_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d932966 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fdf8a5b __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52e33c7c drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5308db26 drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537b8893 drm_fb_blit_rect_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53b72ce5 drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53fbef1a drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x547dff1b drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54a7c8a4 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54fe5bc2 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5661e4e6 drm_dp_pcon_pps_override_param -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56a663e9 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5787396d drm_edp_backlight_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x591d03a3 drm_dp_pcon_frl_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a45f2ae drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d557430 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5de1924d drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f709f30 drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fa2e758 drm_dp_get_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fcfda9c drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60056629 __drmm_simple_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x605b3edc drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x606006f6 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61cfe4d7 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62366470 drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62ccc774 drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x633cb7b0 drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6388fd75 __drm_atomic_helper_connector_destroy_state -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 0x65069825 drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65313077 drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68699a7c drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68d8dce7 drm_dp_downstream_is_tmds -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a500fb0 drm_dp_mst_atomic_check -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 0x6bf19268 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c96e778 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6dcce3e7 drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e248275 drm_dp_vsc_sdp_log -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e6da548 drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x702a99e8 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x706cb693 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x721d7047 drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x725b0a8a drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72d74e03 drm_edp_backlight_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x731e60b1 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x733542f0 drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x738a4f13 drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73b3ff22 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75b68108 drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76d5c488 drm_kms_helper_hotplug_event -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 0x7761a9f9 drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x794f97d7 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae669d0 drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b6affeb __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bdc5176 drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c3dcada drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c96a49a __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ebbc628 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f1fcbd0 drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x804e8ec4 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80512f6e drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x809db833 drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80daee19 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8158b374 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8169f327 drm_dp_dual_mode_max_tmds_clock -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 0x84dc95bf drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x855681ad drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85882d5c drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85cad2ad drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86dc7eb4 __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88bf2b8d drm_dp_update_payload_part1 -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 0x8ca2d9e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d35df1a __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e1c522b drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e449b05 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ef1fbd2 drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f266c8b drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f6c17f6 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9068bbc4 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9202348c drm_panel_dp_aux_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92979e68 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92e9038e drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93151741 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94447b49 drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95b4b1e5 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96602ff9 drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97ee3c70 drm_gem_simple_kms_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x991ed571 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b800404 drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fd590b6 drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0db8953 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2a64ae5 drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3ca3110 drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3f968c9 drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa40feea0 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa435053b drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5022c8f drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa57038a2 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa67867a6 drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6bcf486 drm_dp_read_downstream_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6c41be2 drm_dp_pcon_pps_override_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6c62b76 drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa78312e7 drm_dp_atomic_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7d82f29 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa843606e drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8663178 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa90a8779 drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac20a24f drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac3a04fd drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb031c3ff __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0323923 drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb17e0b35 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb35edb04 drm_gem_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3f1792a drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb536893b drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb72708bb drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb81b5c91 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb82fd776 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8404a5d drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8418000 drm_dp_set_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba3a477a drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc1f79a9 drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf0b328e drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc045b0f3 drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0cb1ac9 drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc23e8c4f drm_dp_set_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -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 0xc8f077e4 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc986fdfc drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcba1920d drm_dp_mst_atomic_enable_dsc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc7d70d9 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd182c56 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfdfb62b drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0248b2b drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1ae1372 drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2dc9395 drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3df4166 drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd57201ea drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd639875c drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd656f67c drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8374a58 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd871ef96 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9e655da drm_dp_remote_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdaad0ccf drm_dp_downstream_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb9a90cf drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbb72ee5 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc0bc752 drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc7c54aa drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcd10bdb __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde094340 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf0e5d1d drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1bc146d devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe212f2ab drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe25f8162 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe360b97a drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe49abaef drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6430c3e drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe792d2b9 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8c2742b drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebe3b981 devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecd8c21f drm_dp_pcon_frl_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed863e25 drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee3de450 drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee422db4 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeea4ae0e drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefbcf901 drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf05808ba drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf08a0b55 __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2b7f7f7 drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2da0936 drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf31dd802 drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf379b6bb __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5b898b2 drm_gem_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf63172ad drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf66801e1 drm_dp_mst_dump_topology -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 0xf6c72363 drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf722963e drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf89d152d drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd8477d2 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfebc7baf drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffd619e3 drm_atomic_helper_bridge_propagate_bus_fmt -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x087022e0 mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x13d3aa55 mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1f0881b8 mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x43205e01 mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x582223e7 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x61d405c6 mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6613b37d mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6ad114e4 mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7b2bb7a3 mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc235bfe0 mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc25481e9 mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc2e62d47 mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcd339eb3 mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xce28a4de mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdbe25861 mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe867a437 mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf8a41c8e mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x027d5dcb drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x6a7961fa drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x888e905f drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x9517d393 drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xc34f9dc2 drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1828a312 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x26eefb08 drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3a8e50e5 drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3f0fa749 drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x555a2a00 drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x62847d5b drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x64301d43 drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x686f0761 drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x867fc7f6 drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x879639fd drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8df634a4 drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8f08ba5b drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb0b4d6d2 drm_gem_vram_plane_helper_prepare_fb -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 0x0a7b2b8f drm_sched_entity_set_priority -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 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 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 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 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 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 -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1b057d36 ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1d4ec212 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1fd34d28 ttm_agp_is_bound -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2df601d6 ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3457026e ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3637f61c ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x36b2dbd0 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3d9d6f01 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4369e24a ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x48cbd87a ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x48f5664e ttm_range_man_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x49bbf868 ttm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4b88bb3c ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f88b7e7 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x52a1b339 ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5d99ecc6 ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61f98621 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6536031b ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x683f7685 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6beae88a ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6f6ff40d ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x71486603 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80618567 ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x850ca8fc ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8a76cca5 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b43f970 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x93f5faf3 ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9443430f ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9545d0f7 ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x97eb077d ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9b143114 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9b67dc44 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9cd31e15 ttm_global_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9e819166 ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9fa7b0c3 ttm_agp_destroy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa04fa41f ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa088f247 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa871598d ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaa42a42e ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb2f6f9c8 ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc1f71e2b ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc7254f85 ttm_range_man_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc8df2cba ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0664c6f ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd169ccb8 ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda22dd47 ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdb98f095 ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdbba02ad ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde6f6f0f ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1d9919c ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe5c28453 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe73016a6 ttm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeace80fa ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xec810fd3 ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc3008f ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x2c558ab3 ttm_mem_glob -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x446c961c ttm_base_object_noref_lookup -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x6052860c ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x8db77efb ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0xe2e13f50 ttm_mem_global_alloc -EXPORT_SYMBOL drivers/hid/hid 0x3433859c hid_bus_type -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x01c6dbb8 ishtp_set_client_data -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x025efe52 ishtp_cl_allocate -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0686e28b ishtp_cl_tx_empty -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0fef39ac ishtp_cl_send -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1b723ae4 ishtp_reset_handler -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1e0a1ba2 ishtp_cl_get_tx_free_buffer_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1fd6d035 ishtp_fw_cl_by_uuid -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2d3cc356 ishtp_send_resume -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x30840854 ishtp_cl_rx_get_rb -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x35049729 ishtp_cl_driver_register -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x39993446 ishtp_get_client_data -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x3a9484c9 ishtp_start -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x412ad595 ishtp_cl_link -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x489a502c ishtp_cl_free -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5048e649 ishtp_get_drvdata -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5ed734c5 ish_hw_reset -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5f9b0501 ishtp_get_fw_client_id -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x622f2d13 ishtp_set_connection_state -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x6d21f081 ishtp_cl_flush_queues -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x6d792a98 ishtp_put_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x71a4875c ishtp_fw_cl_get_client -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x77f25277 ishtp_register_event_cb -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7f82a798 ishtp_set_drvdata -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x85a55b41 ishtp_reset_compl_handler -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8fdab2c1 ishtp_trace_callback -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9186c8ed ishtp_dev_to_cl_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9e9c9ce5 ishtp_cl_io_rb_recycle -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa91cfe25 ishtp_set_rx_ring_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb5333426 ishtp_get_ishtp_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xbb1f05aa ishtp_bus_remove_all_clients -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xbc4a9969 ishtp_cl_unlink -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xbc677489 ishtp_cl_disconnect -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xbfd33d90 ishtp_get_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc30e45b9 ishtp_cl_set_fw_client_id -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc4380073 ishtp_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xcbd7fd56 ishtp_set_tx_ring_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xcfba5823 ishtp_send_suspend -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xdd231cef ishtp_recv -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xde2acc29 ishtp_get_pci_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf0202817 ishtp_cl_driver_unregister -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf3ede46f ishtp_cl_get_tx_free_rings -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xfbb9d88a ishtp_cl_connect -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xfc347d5a ishtp_device_init -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x39a072dc vmbus_recvpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x9933effe vmbus_sendpacket -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x96ec3b26 sch56xx_read_virtual_reg12 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x977bc58c sch56xx_watchdog_register -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xaa17a737 sch56xx_write_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xc1bad00d i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xcd0213e5 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xfc802eda i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xf23ee1e7 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xf5d76f35 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x01c6483f amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x1f3b7c25 bma400_probe -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x26292d37 bma400_regmap_config -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xb306be0e bma400_remove -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x29bfc9f0 kxsd9_common_probe -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xb5c2b7a5 kxsd9_dev_pm_ops -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xb636c844 kxsd9_common_remove -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x09fa19d1 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0aa04c33 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3672f69d mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x39304cca mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4d4920ce mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4de1b341 mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5bc0395f mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5c8368f5 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x74eb3e96 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x90835e84 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x921dcb68 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x94dab3f9 mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x96f0903a mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9b579bcb mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9c83b65a mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9f5112ab mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x06a8d93e st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x55d43d96 st_accel_get_settings -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xc2033f78 st_accel_common_remove -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x12402a0a qcom_vadc_scale -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x47f699dd qcom_adc5_decimation_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x4e64cdb9 qcom_adc5_hw_settle_time_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x53546ecd qcom_adc5_avg_samples_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xc61e7a34 qcom_adc5_prescaling_from_dt -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xbf11a949 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xcf5c8ecf iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x4f64e5b9 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xdd7302e5 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x1d40804d bme680_regmap_config -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x7fff0d02 scd30_probe -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xd080945b scd30_resume -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xd86c6518 scd30_suspend -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4c42ed15 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5d987c6c ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6ea8c479 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x72b873d6 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x87fc3ce1 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x95cf2fdf ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe010e000 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xecd17d05 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf79d9c73 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x248716e0 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x88097440 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x8d5dcd4f ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x91502b99 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xfd096c93 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x076645ef ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xc0ef3096 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xc8e2a224 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0ced5b8c st_sensors_get_settings_index -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0ea5edd7 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2503f994 st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2733a8e7 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3752c842 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7b47cb29 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9415ef2c st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x98d365a2 st_sensors_dev_name_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa25f74ba st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa7727401 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc237a5f6 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xccf460fe st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcda067e5 st_sensors_verify_id -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd4f277ba st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd8b7b9b3 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xefecc1d4 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf437b0c4 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfcc033ab st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x2d9a3381 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x42242483 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x8f5e16e1 mpu3050_common_remove -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xadce1a89 mpu3050_common_probe -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xcd5a5b81 mpu3050_dev_pm_ops -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x14ce3b19 st_gyro_get_settings -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x2b5a014f st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x4822d16f st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x7deeff30 hts221_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0xc69e0ee1 hts221_pm_ops -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x3ed3d88e bmi160_regmap_config -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xf4c56abe fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x2ca18a42 st_lsm6dsx_pm_ops -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xbb5c4e1c st_lsm6dsx_probe -EXPORT_SYMBOL drivers/iio/industrialio 0x039ce22f iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0x06165d94 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x0bb1f510 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x0e22bcb6 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x2a2f5ec1 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x2cdd7125 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x2fbe0a55 __iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0x394ba255 iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x4671fff7 __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0x5eed0252 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x60f2a40c iio_device_set_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x9ac18f33 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x9e7c7b9a iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0xa5c1f03f iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0xa9051645 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xa9c6ae93 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0xba0b35d3 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0xbb25646d iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0xc3223da5 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xcf959bea iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0xdafc09df iio_get_time_res -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe986d8a5 iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0xfa9af8db iio_device_get_clock -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x8394f2d3 iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x7ecdd3e3 iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x9e9771b0 iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xe598a7b2 iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xe78d782d iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x5e3392a2 iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x7deee7d3 iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc238dc53 iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xe324e0f4 iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x1426416d iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xc741712e iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x813ec5d9 st_uvis25_probe -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xfc981490 st_uvis25_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x0ab2f521 bmc150_magn_regmap_config -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x0fcb383d bmc150_magn_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x6007beaa bmc150_magn_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x9b1e51e0 bmc150_magn_remove -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x0b35e007 hmc5843_common_resume -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x55b52cb4 hmc5843_common_suspend -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x801fc872 hmc5843_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x8886cbb5 hmc5843_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x17b5ca46 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x69b70e38 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x853af0b8 st_magn_get_settings -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x075fa986 bmp280_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x66c10deb bmp280_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x76267aac bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xedd974e4 bmp180_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x349cef68 ms5611_probe -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 0x0bd207a4 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x25727956 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x310c4afe ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x672e39c3 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6743116e ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6e8cbbf0 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6efbeeed ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x70b94cd8 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7ea54038 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x963df5e2 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa88692b9 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc7eb73cc ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd50380aa ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd57067af ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfb2e1e79 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02ddf763 ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04bcc733 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04c702c8 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07629ec2 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08b6f240 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a4d45dd rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b8e99dc ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e568a0d rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f549b00 ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x120be2b6 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x135b9f29 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14164e81 rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14ad0a41 rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15b341a8 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16f6791c rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17cce85e ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x189ca768 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19894354 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bbd1233 ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bccd4e9 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1cac9194 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1cd3ae8f rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e26a3a9 ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ecfea2f ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1edee8fe ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2022ed7e rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20818a59 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2090f8be rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21728ae3 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x218ac298 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2660fe30 rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x273940cb ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2804a1b0 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2873bb76 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2876e10b ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2974bcfd ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2aa8f13e rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d95d785 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ec12bc9 ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f4b33ea ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fcc2059 rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fddf21d ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305c4e56 ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33b62a37 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37efd1c8 ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38767f7a ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39e81e29 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a5a4fae ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3abf970a ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b00025c ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bd3d807 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d2c9152 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ef3f2b9 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x419728dd ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x424db2e9 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x433eed4f ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43551d04 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43862e4f ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x439ce33c ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44e80600 ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x451f6972 rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x456bc3a8 ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45b08487 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x462c7152 rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x471492de ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b3c3bc4 ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ca9b5df ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e4f2e38 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f903c7d rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x507f7609 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52c412d0 ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54b7f2fc ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x598dcc2a rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5af34c09 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5be76517 rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d434e22 rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e15d703 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f1bdd32 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6005ad47 rdma_alloc_netdev -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 0x63263ab3 rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63386ef7 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x652287f4 rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67350301 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x673b947b ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x689cad90 rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a1dd2fa rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ad07f72 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6bc83577 rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d2eb738 rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ffcacb3 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x704aa3ab ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74a6079b rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x751567d9 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77b6a206 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77fa640e ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7907a529 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7908e4e2 rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b085482 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bc8283f rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c88041a rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c97b3c7 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7dd18ba1 ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ea876c0 ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fed54f0 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82f0f736 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83372d4d ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84b37650 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85384793 ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85617487 ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x868724e2 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x897df3c9 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ccd6ad3 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e165076 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90453d52 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e29313 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91f72e14 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x950f12df ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97ee44b9 rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c3d39e8 rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e296d5a ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1678b2a ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1fe1e6e ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2d94886 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4c93311 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4d2c6d6 rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa841384a rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9354931 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa251f28 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa96419e rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae5a9fbc ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb02b2242 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb07fc31f rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb159a25c rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3336cca ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb53308ff rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb54959e2 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5f5654c _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb68a030e ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7af071c ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd2e18d2 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe187bdd rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbfb6f14a ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc136718f ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1cb96b3 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc31b2dec rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3e4c8f0 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6f62df7 rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc775440a ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc83500d7 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8703fed ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9d34efb ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb08a361 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb5d217d ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc3414df ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce447b00 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbfb0b8 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd087028d rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd09fb9a7 ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1940776 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2b4dbe7 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd44842cf ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd53c6d83 rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5e15028 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6ee3012 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9004504 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbadd4b8 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc1df295 rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdcd14416 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdcebf1c7 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd370a22 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdedeb9d5 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2b3a360 rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe32c4d43 ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4a268c9 ib_unregister_device_and_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 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebf8a55a ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec4e084a rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed91386b rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee0c5b6f rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeffc05f3 ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf52600da ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6540477 ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6f40dfa ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf898dc65 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9b2c926 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa877af3 __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff8d7d03 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffa35e8e rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0ad96b01 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0f6953e1 flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x10896f70 ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1c7c8248 uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1cde821c ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x26661466 _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x33214c19 ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x57c6b0c5 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x59db42b1 uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7433c142 _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x762560b4 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7f20ba4c ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x853c284b uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x90039b9b ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9476cbb0 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa0bbce41 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa3686ff1 uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaa183ed1 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaacca7ac ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaad8ed41 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb04a9996 uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb51116df ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb6379a9a ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbdd79057 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc5893cb6 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc9752b45 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc9e38b53 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xda9e1f3e ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdd09687a ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe8528465 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xed094dfe uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xefa58e3d ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf0dce9b2 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfbb75773 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfd2c11df ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfed0ccb2 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3ca77ff5 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x617f19fe iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6e4486e3 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6ee8ee96 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7a56add2 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x909d17e5 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbadd7f4c iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc9489b38 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0296690f rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0bb5a4b8 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0e3d9c80 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1765ac78 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2e9dd469 rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2ffdffbd rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x330f8f72 rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x419525b1 rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x43a5b783 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x572ae556 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5e90a25b rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x63b9a218 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x684bf3d8 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6d743cac rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f90f6d0 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x723f6e94 rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8a6166d0 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8b8bedb5 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x91812c92 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa1859b0e rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa40a69ce rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa92b1759 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa969692e rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb365d62c rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb5bea4d9 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc31cb2ab rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcf728d18 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd3f85c77 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd8f44a2d rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdb966e64 __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe0245176 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe68d8ce9 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xec94b722 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf8868d08 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x00d20a34 rvt_lkey_ok -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x082a06fa rvt_qp_iter_next -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0efc3a16 rvt_alloc_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1558d23d rvt_check_ah -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x17fb5c71 rvt_error_qp -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1d8614f6 rvt_comm_est -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x30949b59 rvt_init_port -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x3ccc2afd rvt_qp_iter -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x3cd16dc8 rvt_qp_iter_init -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x3ea8b2fa rvt_del_timers_sync -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x47aa1778 rvt_rc_error -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x49e6e957 rvt_add_rnr_timer -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6dd50b43 rvt_dealloc_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6edb8026 rvt_compute_aeth -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7070c70b rvt_invalidate_rkey -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7689475a rvt_send_complete -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x778e86fa rvt_rkey_ok -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8059554f rvt_restart_sge -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x858289f9 rvt_stop_rc_timers -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9973fb7a rvt_copy_sge -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9a55db48 rvt_cq_enter -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb0c98a60 rvt_add_retry_timer_ext -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb25d227e rvt_get_credit -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb3916401 rvt_get_rwqe -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb7ee98b2 rvt_rc_rnr_retry -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xcd218b80 rvt_unregister_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xcfc4645d rvt_fast_reg_mr -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xdf4211b3 rvt_register_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe037c94d rvt_ruc_loopback -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9cf3e43 rvt_rnr_tbl_to_usec -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf2680f79 rvt_mcast_find -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x50860b88 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x8ba717c3 rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xac00bdaa rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb23e5a61 rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xbb45a636 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xc1f33819 rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xc67ae19d rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x01100078 rtrs_rdma_dev_pd_deinit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x0f022ce8 rtrs_ib_dev_put -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x1ac11018 rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 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 0x8aea7403 rtrs_rdma_dev_pd_init -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x04aa5e4c rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x3fee9d56 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x4871be4b rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x5a625e35 rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x5a9ab312 rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x75e5ed50 rtrs_srv_set_sess_priv -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 -EXPORT_SYMBOL drivers/input/gameport/gameport 0x3a17e454 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x4d1bd678 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x970a41cb __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xa8ffe7f8 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xbf3e8618 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0xcde87530 gameport_close -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x724ebd1d iforce_send_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x91b87aad iforce_init_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xb8c1dfce iforce_process_packet -EXPORT_SYMBOL drivers/input/matrix-keymap 0xd53e70ed matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x45114cc2 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xb97f2c81 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xee3cb8c0 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x075ac93b cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x938cad02 rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x145a3e96 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x2dd47d46 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x64f35673 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x6dab2a0a sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x9200a607 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xda69c18e ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xf829acfa ad7879_pm_ops -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x095e73ef amd_iommu_unbind_pasid -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x3cf6e425 amd_iommu_set_invalidate_ctx_cb -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x59c4f7e5 amd_iommu_bind_pasid -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x87a5a404 amd_iommu_init_device -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x89ef643d amd_iommu_set_invalid_ppr_cb -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x9bf33ad4 amd_iommu_free_device -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1aa11063 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9fafeb5b detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbe0a097b capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcf510cd9 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe846db84 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x27c58fd5 isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x4644eea5 isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x5b835a58 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0xef4ee223 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 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/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1a29fc0a create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 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 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 0x9c928457 mISDN_FsmNew -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 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_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x1c30af79 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 0x56ba4e0d ti_lmu_common_get_brt_res -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness -EXPORT_SYMBOL drivers/md/dm-log 0x501a8cb6 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0x980b5a50 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0xa087f6af dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0xa45ab23b dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x2b630ddf dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x9fc65986 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xc8774625 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0xd91a6290 dm_exception_store_create -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/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 -EXPORT_SYMBOL drivers/media/common/cx2341x 0x5093fd31 cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xb2b9efb7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xbe7a5679 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xdacb7b8c cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cypress_firmware 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/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 -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 0x47e3055f vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x676709e3 vb2_verify_memory_type -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-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 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1b187a6f dvb_remove_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2cfed106 dvb_frontend_reinitialise -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 0x5f2b1d95 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6181aec0 dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x75faf365 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7e87ac00 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fcbc379 dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x83d1946d dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8af7df7b dvb_dmxdev_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 0xa1a2a3fe dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa2211832 dvb_device_get -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa9d93469 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xabcce348 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbdf81126 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcd7a5d95 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdd5a44e0 dvb_register_frontend -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 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/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 -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x892725bc au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9674a200 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb51336cc au8522_i2c_gate_ctrl -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/cx24113 0xa0a9b2d9 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x0fccc106 cx24123_get_tuner_i2c_adapter -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/dib0090 0x147a5270 dib0090_set_switch -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 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x656f39c4 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7158f1b2 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x819d1678 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8bcee528 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xaea90923 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb8f79202 dib0090_get_current_gain -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/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 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 0xc5253f0a dib7000m_pid_filter_ctrl -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 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x517f07de dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5599ab34 dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x60cefb3d dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x76dd2683 dib9000_get_component_bus_interface -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 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 -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x760605b7 dibx000_reset_i2c_master -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/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/lgs8gl5 0x310cd561 lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x5f4c46a0 lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xacd25b63 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xeffc54e8 s5h1420_get_tuner_i2c_adapter -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/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/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 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xac6f6854 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x17c575b3 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x4b42bbcb bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7750911d 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 0x201a7407 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5c6a9c1a rdc_reset_state -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 0xf5ea29c5 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfe990bf2 dst_pio_disable -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 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/cx23885/altera-ci 0x1ab311dc altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x25b0dc9b cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6174efad cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x73330c2d cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7c3d5ff9 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x831e6ec6 cx25821_sram_channel_dump_audio -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/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 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/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 -EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x3d23cb5a ipu_bus_unregister_driver -EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x4282c347 ipu_mmu_hw_init -EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x5a5ca689 ipu_mmu_hw_cleanup -EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0xabbe314f ipu_bus_register_driver -EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0xc7231f03 ipu_ver -EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0xd580970d ipu_buttress_auth_done -EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0xfac5c9a7 ipu_buttress_start_tsc_sync -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0183e169 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x265db5d5 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x293477b1 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2f62f950 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x49363ea4 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4ace3f8b ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x552a8b26 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5c5550e4 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5fc33292 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x72b8ae1c ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8f6ec224 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9c137336 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa9415c46 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xab1a68c2 ivtv_set_irq_mask -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 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x756cf981 saa7134_ts_unregister -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/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 -EXPORT_SYMBOL drivers/media/radio/tea575x 0x6dd366f6 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x82f5bb91 snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0xd76f102d snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xdae1d1de snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl -EXPORT_SYMBOL drivers/media/rc/rc-core 0x5439c7a9 ir_raw_handler_register -EXPORT_SYMBOL drivers/media/rc/rc-core 0x6add9d0d ir_raw_handler_unregister -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/fc0013 0x0d64c08a fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xcf4909dc fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x1d8c032d xc2028_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/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-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 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 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/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 -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x04b16cdd go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x28fff018 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2bcc9fe7 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x31d53ea3 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x552dac0e go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7c4615cd go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9b39b34e go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb54a6ef4 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1cf5a57c gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5a42aebb gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x79075dac gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8508546d gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd3d4c3d3 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd4f0188c gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd6597a88 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xee8887a6 gspca_resume -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x1d0ec896 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x40633940 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x77bb5255 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x5dd7287b ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x761029b1 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x05d00092 v4l2_async_subdev_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x2ea6f5df v4l2_async_notifier_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x39c5e50e v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x580e88e2 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x79ff2fb0 v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xa84799d1 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x22db1afd v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x52bde68b v4l2_m2m_buf_done_and_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9a99ffd7 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf379b73b v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0144a11c v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x01a2d3bc v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x04ed3bc8 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x05372045 __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x06806e59 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x08dd16e6 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0d59b4b2 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1d81f6f9 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x20aa0ab5 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x21eeecac v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x25e05dc4 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x26fa9659 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x295931d5 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d823a03 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2f3ff23a v4l2_ctrl_activate -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 0x39dc1486 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3ab43687 v4l2_ctrl_log_status -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 0x3d7f1dc8 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3f763b3f v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x435b9da2 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x44a2b7f5 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x44dc8ae8 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x46e16526 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b5fba73 __v4l2_ctrl_s_ctrl_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4d012f9e v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5332b683 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x53e0b82f __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x569f5063 __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5bc753bd v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6ed15256 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7196af88 v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x83ee544f video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9dd45fc7 v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa7a60e92 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb58f9fe7 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb5b1695e v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb6d3b4db v4l2_ctrl_new_fwnode_properties -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb93abd50 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbbfcb207 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc6c43494 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd2ab30f3 v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd85527b3 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb714c58 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc7e0128 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe321220f __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe3d79eeb v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe7c3bea7 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8d42dec v4l2_ctrl_new_std_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8e5dc0f v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xea141acb v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee33c8c8 video_device_alloc -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 0xfd14437d video_ioctl2 -EXPORT_SYMBOL drivers/memstick/core/memstick 0x07cd987f memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x3cc7ea77 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5e69c63c memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x82b736be memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x9e9e139a memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0xacc1cfd3 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb9dd0740 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xba578d38 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xbe01681d memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc9ba1749 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xe43f9380 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf3ce247b memstick_resume_host -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x010492a5 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x03f5e709 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x06bb7a9e mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x137d9ca0 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1d8b3f7a mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x20171457 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x202e459a mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2e93cc56 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x374c553e mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x40a3169a mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x43ac4bf5 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x464ac204 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6ef79aed mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x82567306 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x83c2863d mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8cefe428 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x949a86b4 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaffdee65 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb286b1e0 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb3735bf1 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb8345144 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbbddab21 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xca36b01e mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd84c8471 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe3931ef8 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe4103e77 mpt_halt_firmware -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 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 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 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 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 0xfc1c95ae mptscsih_io_done -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/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 -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2e299f67 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x40cbd38f mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x52e198c8 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9d232326 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb44f9ad1 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xbac6f646 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc3b42d37 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xccae8f0b mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdec2854c mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe6b09449 mc13xxx_irq_free -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 0x1c7f1460 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x206bf6e0 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0x5afcf76d wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xc59ef540 wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xf526738f wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0xf7a44ed9 wm8994_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x23302fb9 ad_dpot_remove -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 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 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 -EXPORT_SYMBOL drivers/misc/tifm_core 0x569c57d6 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x5b1b4b54 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x75e76536 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x87d12700 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x8a02edb7 tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xab48f05b tifm_free_adapter -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/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 -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x45432c34 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x48cd3e3d cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x539e1f87 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6dfdef44 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xda04c795 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xda54743e cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x58338d60 do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xaa559194 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xac7b7d70 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xf61304ef map_destroy -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x25712926 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x805ce490 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xfef2bb24 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x5b3bff50 mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/mtd 0xa0277fee mtd_concat_create -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0721f358 nand_ecc_finish_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x09b9409b nand_ecc_sw_bch_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x1fc61311 nand_ecc_sw_hamming_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x20d69cef nand_ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x24307280 nand_ecc_get_on_die_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x29b348f5 nand_ecc_sw_bch_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2bc0f368 nand_ecc_sw_hamming_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3f0e6ae9 nand_ecc_prepare_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x5333efbe nand_ecc_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6d40c741 of_get_nand_ecc_user_config -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x73e8a051 nand_ecc_sw_bch_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x82dd7c23 nand_ecc_sw_hamming_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x8a639f0f nand_ecc_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9fe7e3b8 nand_ecc_is_strong_enough -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xab14e54f nand_ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd1f1cbcf nand_ecc_get_sw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xef503650 nand_ecc_sw_bch_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf56bbcd8 nand_ecc_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xa4f82be0 onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xcc88ca6b flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x64974c18 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xe192ada1 denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x00d60f4d nand_create_bbt -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x02699f65 rawnand_sw_bch_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1cbedcf0 nand_monolithic_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x250d3adb rawnand_sw_bch_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x2767a62e nand_get_set_features_notsupp -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3a9ccb70 nand_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4f677052 nand_read_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5ac22a47 rawnand_sw_hamming_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x65183919 rawnand_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x732fca2a nand_scan_with_ids -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x754eb264 nand_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8a3ff296 nand_monolithic_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc0fa78a4 nand_write_oob_std -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 0x04dd618b arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1bb1f1b2 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2c795b41 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x322501d5 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x68fbe324 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7721fec0 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8472081a arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x88c523fc free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9eb8b1fd arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa2cf115f arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc2ce1d4d 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 0x120d4924 b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x13e7f7c3 b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1520a013 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x15c22339 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2130bea9 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2e8331de b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2eb234a0 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3219fc32 b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x35bf3944 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3b32671a b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4c0c3b9c b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4d2bcf4f b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5da5d13b b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x641b3e1b b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6617c5b9 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6b80d43b b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7c7e8fb0 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8751d7ce b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x89e990ef b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8a0fd074 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8dfc2d38 b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x962630ed b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x96a2321f b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x995d71e5 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9f40acf1 b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9f78fd9e b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa6fa5b30 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xac9f55c4 b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbe9e20d9 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcc0f532d b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcc83a1b4 b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd5d932a4 b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdb6c9f03 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdc87d82b b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdd7c398b b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdf393f6e b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xef72b458 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xefd15e82 b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf5eaf732 b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf62fcfbc b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfb23fe50 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x24dfd3b0 b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x3ca60e76 b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x4941dcd9 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x60b33e0f b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x71390cb3 b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x917e9bab b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x542d1868 lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x92acb729 lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xd10c666d lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x64086583 ksz8_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x48b90cd2 ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x9a061f52 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xb1f57d39 ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xc904d1d9 ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x03e68a3b vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x2558c34d vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xc3b0ffde vsc73xx_probe -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x110ecba4 xrs700x_switch_register -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x18300bf8 xrs700x_switch_remove -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x4d97dc82 xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x6027f307 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/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 0x1c65ee3f bnxt_ulp_probe -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xe54c4f2b 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 -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x34eeb48a bgx_set_dmac_cam_filter -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x46cdf933 bgx_config_timestamping -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x539ca253 bgx_get_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x60cd1f2f bgx_lmac_get_pfc -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6ca2152d bgx_lmac_set_pfc -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x716fd7f0 bgx_reset_xcast_mode -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x72b238e4 bgx_get_rx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xbe654297 bgx_get_tx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xd8ed0bcc bgx_set_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state -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 0x05df5a98 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x13f6304e t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x33d17b1e cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3845bf35 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x440bf2b0 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5b6982b9 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6641933f cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x66efa256 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7aefff25 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x96e9cb29 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9c6f1766 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe60b1349 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe82775e5 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf5055df0 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf57a2584 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfe111b99 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x01c0356c cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x03055e58 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0d8f8176 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x19629b95 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1a914db2 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1eb90338 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x201a961b cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x32c7b801 cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x343e0dce cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4bd738b9 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4befeab1 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x590621b4 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5c830907 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x61d80b07 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x61d8f8df cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x61e029e7 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x63daca1f cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x65e0c2bf cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x688e17b4 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6ba39520 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6c696bbb cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6e75dba6 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x791670be t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7a0aafdb cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x808cec07 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x87550c1a cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8c916b85 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8ecf2b4e cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x95407ec8 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9c01e104 cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa162e65d cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaa338520 cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaa7226b1 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb9bd5711 cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbe52c4b4 cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc3e387e9 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc8544ae9 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc8d51281 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd420cdec cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd82258bc cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdedcc2b4 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdf6a4f88 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe0404d4d cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe74057c9 cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf5a208b7 cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf737bcc7 cxgb4_l2t_get -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 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 0xac389366 cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb8e0ade4 cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc7310212 cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xd6818260 cxgb_find_route -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/emulex/benet/be2net 0x1472c7e2 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 0xa22fbbab be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x552f3ef6 iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xec97ad9b 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/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 0x004d2eea mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x032abbf1 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0382ba61 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05ead09b __SCK__tp_func_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0723c0eb mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08bd9eb7 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08f54f16 __SCK__tp_func_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x090db38f mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b57d3e2 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ea53b24 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f07a48a mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1151da94 mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11b233dd __SCK__tp_func_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16e3a871 mlx5_modify_header_dealloc -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 0x1ce9d91f mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e2e4ce6 mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f2d498d mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2463e1a0 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x249c981f mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24e1c2d3 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2784705b mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2924aca8 mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b164b17 mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b9e5ca1 __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x303985f9 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30a1b496 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x313472b2 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32148a8e mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32f2a866 mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3523add9 mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38335e3c mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c28e259 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d80d559 mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41361de7 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x429d4938 mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x433e3070 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43ca81df mlx5_cmd_init_async_ctx -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 0x4a711d33 __tracepoint_mlx5_fs_del_fg -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 0x52cc75b4 mlx5_rl_add_rate -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 0x56723f09 __tracepoint_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x599fccc8 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59bfc15d mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59d113ae mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b32ec3b mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b47fda0 mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b8c1a28 mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c63c1e3 __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e650989 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5eb042ee mlx5_put_uars_page -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 0x6578b871 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b2b7ad5 mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cf647ba mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d390d71 mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6da345a6 mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f8d74e1 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x705d724f __SCK__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76118275 mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76686415 __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x768cc749 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76efa552 __traceiter_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77792e0b mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x789fa52a mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78bf2248 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b408887 __SCK__tp_func_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c58f962 __tracepoint_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 0x81f30036 mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x828aeb62 __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bec7d6a 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 0x9289a2c1 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x946a7ff0 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9632650a mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9650aba1 mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96fa0256 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98e35e42 __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x993fa691 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9aa2f826 mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9af4c5a9 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b1028cc mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bc5e6b7 mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c11685f __SCK__tp_func_mlx5_fs_del_fte -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 0x9d9ff3ac mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9dac9939 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e4596d2 __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9edd9cbb mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f5b1d2a mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3524964 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5cad510 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa735048f mlx5_create_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa85b938b mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9845a6a mlx5_debug_qp_add -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 0xad88c663 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae1f2996 mlx5_core_destroy_tir -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 0xb28dbbe8 mlx5_destroy_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb348907d mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4e976bb __SCT__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5338b3b mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb661d8f2 mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6643ba2 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8a6841e __SCK__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba3236fa mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba5c2f4f __traceiter_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd2744a0 __SCK__tp_func_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf2478e1 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc101afd5 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2f51f4b mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3bf3ee0 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc441b64d mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4dcf371 mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4e4b532 mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5987927 __tracepoint_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6cb05d6 mlx5_get_fdb_sub_ns -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 0xcc365231 mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccb09f91 mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcee9cbfd mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd07115b3 mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd357a076 mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd361e0f5 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd38b794b mlx5_fc_create -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 0xd949c58c __SCK__tp_func_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd96e7080 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb4c79b4 mlx5_fpga_get_sbu_caps -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 0xdbeecd2a mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde2a901f mlx5_get_flow_namespace -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 0xe30fb2a8 __SCT__tp_func_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe365aaf0 __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3a034bf __tracepoint_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5278cd1 mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8776a5c mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe98b4dab mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb7c97be mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec4733ad mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec545d98 mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed34db39 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xede39510 mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee4025a8 mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeee995e8 mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf10dc166 mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3154942 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf498a292 mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf725582a mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb7113c2 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbf3cfe5 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xed96fe10 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 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 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 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 0x565b1f35 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a099407 mlxsw_afa_block_append_qos_dscp -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 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 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 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 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 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 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 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 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 0x015f186e ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0545a16b ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x16bf2618 ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1c599018 ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1e78fc0b ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x230f5d00 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2315270e ocelot_get_ts_info -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 0x2d160718 ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2f09a7c9 ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x36ffe427 ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3b482930 ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3fdd9ba2 ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x416f94f7 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x452e13bf ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46e39669 ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x480ab637 ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x48858fd9 ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50c8e9be ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54ce7bad ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x57c3f87f ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5d24b5d1 ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5d7ab78f ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x625d4b06 ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x65147424 ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6887a4f1 ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6d7870b5 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x74c8c193 ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f16f367 ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x833f7303 ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x86134ab1 ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x862a134b ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x86a4cc95 ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x871ea22f ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x896a6fea ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a85c6a8 ocelot_vcap_block_find_filter_by_id -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8aa74f1f ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8b94b271 ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8cdd5bd8 ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8daf5755 ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9a1e6ef5 ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9a4f7f10 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d97c0fa ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9eeab831 ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9f85401e ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb22a77ef ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb8afd6e6 ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb9dcc1e1 ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba5d8fa5 ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbb8fc038 ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbfe05371 ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc1dbcab6 ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc3bd77fd ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xca07bea8 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xce312132 ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcf49ee36 ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd9a8cc5d ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe2583086 ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe61a9455 ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe7a24a4d ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe83c4afe ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe8af2e0e ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe926c7ae ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe963c49d ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf10df2df ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf46b91d1 ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf5081355 ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf5423363 ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfcf8d5c7 ocelot_apply_bridge_fwd_mask -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f3d591f qed_get_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x7f11bcfb 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 0xa07d4031 qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa2e4465e 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/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 0x0134ded5 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x06e91123 mdiobb_read -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/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/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x3f950d02 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x07807cf7 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x54a61974 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x8e2a1ab6 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0xa4d410bc team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xb60756d2 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xccf6f359 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xd7fb911f team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xd952632b team_modeop_port_change_dev_addr -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/wireless/ath/ath 0x06edf1e0 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2b6d3192 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3bffc348 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x505240be ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x64a47092 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7803e5c3 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x908ad252 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaa7d303f ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbdc4bfc1 ath_hw_keysetmac -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc89a2726 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd012a248 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdb0e1877 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe31715c7 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf98605d5 ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x02e8299a ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x090f5bba ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0d724bdb ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1449e1a7 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x18597a4c ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1b76d8a3 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1c2a1ad9 ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1cfffd6a ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1d1b78c1 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2269d872 ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x22faaff7 ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2c339247 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x33b8223e ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x439a0143 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x43d2b8d7 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4b925105 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4d9cb1d2 ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x53d96692 ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x54a118b2 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x54a5a33c ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x55bb033f ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x58cc65b6 ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5cd63adc ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5db8c029 ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x65730fd0 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x680e44bc ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6d1ddd10 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6f09714a ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x71e2ec24 ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x73d3705c ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7f47e29f ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x84558c5f ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x86ce5073 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x86ddbbf1 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x87e39a02 ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8e3e6c98 ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x91ebb2ee ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9b58292f ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xab5abc4d ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb2adb7f9 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb6e3a782 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb818d889 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc2a2f09a ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc47f16b3 ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc77158ba __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc8cef054 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcf1df188 ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd8ca238d ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeb77c27e __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xec38d537 ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xee71ae06 ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf0d67976 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf3a07107 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf954e378 ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfc19731c ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfc51c485 ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfddb7027 ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x03498cf3 ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0a9b45fe ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0b3120c6 ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0b63d1de ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0fc8c92b ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1325522c ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x15d97c5f ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x17800161 ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x36b67c7c ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x396c9ccf ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x39e4e408 ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x419a2a3e ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4fdbb236 ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x55becb55 ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x93576494 ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x93fa2d3e ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xad7ccf66 ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc9e05d07 ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd15905d2 ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd73dbace ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe13bc920 ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xec820ede ath11k_qmi_deinit_service -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 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 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 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe966f128 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x08f0fc17 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x140e60c2 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x15413d56 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x32bcf4c2 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x37905b66 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3c39b686 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x46957beb ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4b976afa ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x508c5f6a ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x568386eb ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x616e7cfa ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x687ffbb2 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6900a094 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6989328e ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6d258531 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x778569d9 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8b64e2d6 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8fca506f ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9376c0d4 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9ecd9d4a ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb67a85c1 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xce4415bc ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf684e1f4 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0084d11f ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03ec9bc6 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06ea9d58 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08361009 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09a00e96 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0becf057 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e44851b ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e45eedc ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f863fa6 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10a6c2f9 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11ea42e9 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15874719 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x188bc4ab ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b0bb8bf ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1bce99c5 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ca420cd ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d6eb9e8 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e35747e ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e66c1cb ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f0c8a95 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f2a9721 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23cbea3d ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x289d424c ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a188c0f ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x302f335b ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32100efa ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3296ba30 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35a75378 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x369592da ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3808dfdd ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3beb427c ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x417cf7ec ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x442fb5b9 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x486a2d07 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4876ba8c ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49cba188 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b9cbb33 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4cd19320 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4efc4cd1 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5195a91e ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5247a997 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54e77fa7 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55d9ac5c ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x591207a6 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ad5b3b6 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e612d0f ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x606b9588 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x621a4430 ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6245decb ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x651ff8d3 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68794296 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6921730c ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b7607e6 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71f18841 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78a9fbe5 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c1f8506 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e61a1a8 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81fbc902 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82bc3644 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8476983c ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86692419 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86babc56 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b0ce470 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8cc2930b ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e333b9d ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e704167 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8fa4979e ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x908daff1 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9291002e ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96bc7323 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98f3147d ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99f9bb46 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e038897 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9fe0e49e ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3d4bd2f ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa08a8b1 ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac13f14c ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xacc94c1a ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae54278c ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1c759c3 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb40d7755 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb83974d8 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbcdf45ce ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc887ca22 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8e8aa67 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcec9fcea ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2bb3ae1 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3340cff ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd384aca1 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd59d991d ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd746bc0e ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc6000e7 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd13ba99 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xddae21d5 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xddfb57ac ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde50d9bd ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf7f2c50 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1378094 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1a9f4ee ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7ade780 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9b776ec ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebe51fdf ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0d29298 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf900f772 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfbae8a8b ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd1f136a ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd85652e ath9k_hw_btcoex_bt_stomp -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/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 0xa17c0ccf brcmu_dotrev_str -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 0x032363bc il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x076e076c il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x08ca4ce5 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b9b3efb il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0e7fc440 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0fa54aaf il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1061bc6d il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x17f59809 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19f7b126 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1db0635f il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1e1fa991 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ebae5ba il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2247edc0 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x22f79238 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x26e55a69 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x270724ee il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x28d55442 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b959a9b il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2e587f5d il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2e840a34 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2f2bca89 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30ae8dcb _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3e73b37d il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3ed9d4b2 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x405ad9f9 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42fa496c il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x49dc59ff il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4b7dfbc8 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5256bb98 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52a36cdd il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x53479b03 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5dc2746d il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x604e1d97 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x614fc378 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6360b523 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x638676b5 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64ae19dc il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x65dcc5dc il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x666ea700 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x67f12fa9 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a0f6ca8 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a8858dc il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b33a5d2 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6f5be14c il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c11697e il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c386739 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f942ccd il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87341eff il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89cafc8e il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8c150fb1 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ef2461d il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x916e6a1d il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x95c858f3 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9669d453 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9909c487 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c1f43b4 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cef4d0f il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9e6fb091 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa0c3675d il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa13f8d6f il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa1837168 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa528da75 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa6ea4774 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa789a14a il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9385228 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xacc5db4e il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xadfea48b il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xafa3d910 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb1fc93e4 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb44807e3 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb6a583b5 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xba1efecc il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbac0d346 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb0630df il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbc09107e il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbd04b919 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc10e7efb il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc788d3b7 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc883b3e3 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc8f0ef8c il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb5944e3 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xccc6be0d il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd2a04708 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3d55382 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd67fba23 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd8fb9409 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdbc6392b il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe1641739 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe249af15 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe50b601e il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf1f8ff11 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf34781e3 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf35689bf il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf63346f1 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf8590f0a il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfc0d06d6 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfc4ac73d il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xff212408 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x08e4fae2 __SCK__tp_func_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2a0091b9 __traceiter_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2cc4bb17 __traceiter_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2f6a5ccb __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x38688d65 __SCT__tp_func_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3a2a40a5 __SCT__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8049db27 __traceiter_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9e5fefc8 __SCK__tp_func_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9f6886d8 __SCK__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb8e620f1 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbafad75a __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd81e2f28 __SCT__tp_func_iwlwifi_dev_ucode_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/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 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 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/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 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x4ef635f5 mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xa5eef085 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x006a4152 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x065d8400 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x07a9db73 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0d7def20 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x100ec458 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x104a1600 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x14526ee6 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x18bbfc0a rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1b029c2d _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x26c54534 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2b14da22 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2b490dd2 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2c3449dd rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x304a3d23 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x34e41592 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x354e01c5 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x362b5dbd rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x36f31a3a rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3785b219 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x44003bcf _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6d2b2714 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8161c223 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x83e8f6c6 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x848b8a44 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x86ba19ef _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8878c360 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8a7e9800 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8d1f87bf rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8dbf6e6b _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x91638c35 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x935caf59 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x99c41680 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa714efd4 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa7481257 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaaf9ced6 _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xac16bbb5 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbdbb66f8 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd054bbba rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdf3c3af3 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf90c5623 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xffc0ccb2 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x36df3627 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x9ee08cae rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xaaa0dfad rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xe9296e7e rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x398bd4dc rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x5c9e4121 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8930a701 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x99e82f23 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0581e73d rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b325740 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1d81471d rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x20f87e29 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e6f9c6c rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e615760 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x452d4505 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x458c69d8 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5efa3162 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79b7affa rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7b4e3d42 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90b2aa89 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x95e4ee9a rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9bcbac2e rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9fe47f13 rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa59e2c09 efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaa7e2dc3 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaff3b714 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5415361 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb777b366 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbdf4ae37 rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbeb3d0cd rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcb837e9a rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd186a0cf efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd9305bed rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdad3fb43 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf3d8cef1 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf71e9d9d rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf778b746 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xffa826e0 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x2c1eae77 rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xb1ded9fa rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xc7fed4c5 rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x283cbffb rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0205fce4 rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0dcffea1 rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1089e2d0 rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x17bcfd21 rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1864781a rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x19898da4 rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x19fd8791 rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1a72377d rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1b4dee62 rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2c2ebb60 rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2fa55a7e rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x305d0418 rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3b1ac33f rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3e2e132c rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x42001fd0 rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4ca359a9 check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4e4b8779 rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x512b4571 rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x528e7705 rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x566782f5 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5de03847 rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x606836e0 rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x686f5a9d rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6c02dd47 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6e55f921 rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6fa95b43 rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x701a8934 rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x74f8c592 rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x767d19a6 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7b717918 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8505600e rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x89eb8d5e rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x98b4b746 rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9ddb9fe6 rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa071e1e5 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa0c2085b rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaa5096dd rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xabdaebec rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb61ca111 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbcc22193 rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbf5f8cee rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc017fc2b rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc6fe51a5 rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xce34f229 rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd5e43656 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd5f536a0 rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe1f7d178 rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe31d7c90 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe64852cc rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe72ed41f rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe95084ca rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeda031e3 rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xefa79db9 rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf5905fa3 rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf8a00058 rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfa0cfe45 rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfd741ea0 rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x14ad46b2 rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x36f95988 rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x92e54e66 rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xe88a5797 rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0791f00f rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0b6d8559 rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x13907b0c rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x347c25aa rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x43ec8a33 rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x44cf4ca6 rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x55b78277 rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5801986b rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x63fc5df1 rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8137f388 rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x85327ded rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8965833c __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9240e821 rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x992b96ef rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9eacf3a0 rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb2a0dea4 rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb3877962 rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd040d67c 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 0xe7324b46 rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xed7b7cb0 rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf0d44c59 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x83f9f620 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x39cf4b08 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x55cd391a wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xb0e16212 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf355ea89 wl12xx_is_dummy_packet -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 -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/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 -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x247509e2 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x61f8b17c s3fwrn5_phy_power_ctrl -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 -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x58dcc38a ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6ba696c1 ndlc_recv -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/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 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 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 -EXPORT_SYMBOL drivers/ntb/ntb 0x14d03b89 ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0x234b03f3 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x58387d9c ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x5acdf89d ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x5c4a9a43 ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0x5ceb8146 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x61d92222 ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x7298dd1f ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x77c166bd ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x9242f3d2 ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0xaa888bb2 ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0xb2895a9f ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xb3fc55c1 ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0xc6fb0a42 ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0xc9afbf91 ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0xddc6b596 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0xde33ab14 ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xf2243eb4 ntb_db_event -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x75f962b8 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x95376e2b nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/parport/parport 0x088d3698 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x16d6d0f5 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x1727a281 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x17f68752 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x1a07c10e parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x202227bd parport_release -EXPORT_SYMBOL drivers/parport/parport 0x213f5404 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x30299b0a parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x3fb940f2 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x4446816d parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x48d653d3 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x59719f96 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x5e33e4ed parport_read -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x5fd8307f parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x69c72f40 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x71add44e parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x73cfa941 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x7724c7a4 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x806c8387 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x85fadbd2 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x90e315c1 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x91082277 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x93623625 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x9dfeb23d parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0xa8fad37c parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xbc29f697 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xc809d3d8 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xd3c3c681 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xef79bcb5 parport_get_port -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 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 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 0xd934edcb pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdf0e6bc5 pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe9368995 pcmcia_dev_present -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 -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa9bc5373 pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xacef7298 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb92dcc85 pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbcffe991 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcbe7ebf1 pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xce33315e pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf48fb910 pcmcia_register_socket -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 0xf25aacf5 cros_ec_irq_thread -EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xaa1c36de cros_ec_lpc_io_bytes_mec -EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xc4ebc6b3 cros_ec_lpc_mec_init -EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xf5c87c59 cros_ec_lpc_mec_destroy -EXPORT_SYMBOL drivers/platform/x86/dell/dcdbas 0xa75079d6 dcdbas_smi_request -EXPORT_SYMBOL drivers/platform/x86/intel/intel_punit_ipc 0x3a0b563a intel_punit_ipc_simple_command -EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0xd857cac7 sony_pic_camera_command -EXPORT_SYMBOL drivers/platform/x86/wmi 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 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 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 0x3d9cece0 NCR_700_intr -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 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 0x07b6fb50 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x66979364 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x69a63bae fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7bbb8095 fcoe_ctlr_recv_flogi -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 0x96469968 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x99f67218 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe3e75010 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf180f938 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf9344908 fcoe_ctlr_link_down -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 0x13eeff69 fc_seq_set_resp -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 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 0x7f3407a7 fc_seq_start_next -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 0xe1be4f19 sas_remove_children -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 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 0xd2c5bd59 srp_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe809b38e srp_reconnect_rport -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 0x01989da9 qmi_handle_init -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 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/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 -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1e748e63 sdw_nread -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x38de64ed sdw_clear_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x55de9923 sdw_nwrite -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5bb07d16 sdw_update -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6ea22096 sdw_bus_exit_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7d7d540d sdw_bus_master_delete -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8326103c sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x85244c3f sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8bac7cee sdw_read -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8ea25389 sdw_read_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x92f7a50b sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x93c434fe sdw_bread_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x96a22820 sdw_bus_master_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x973c1e04 sdw_stream_add_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa56b228a sdw_extract_slave_id -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa9a2fff8 sdw_write -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xaea361e3 sdw_bwrite_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb1eaf215 sdw_slave_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbc5da63a sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc2b763d5 sdw_write_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd5b62097 sdw_bus_prep_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdd562d83 sdw_compare_devid -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xed1e0817 sdw_stream_remove_master -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 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 -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2df61d67 sdw_cdns_pdi_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x45952a8f sdw_cdns_alloc_pdi -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x52004828 cdns_xfer_msg -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x71cca708 sdw_cdns_probe -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8c46a37d sdw_cdns_is_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xab6f4340 cdns_reset_page_addr -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb39fe5db cdns_xfer_msg_defer -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 -EXPORT_SYMBOL drivers/ssb/ssb 0x16c17eb8 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x17bac81d ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x21e39660 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x332e718c ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x5da47e3d ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x8bb536c9 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0xab6a1a25 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xacbcdd96 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0xb4382050 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xb799f7d0 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0xb87f9ae3 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0xbf44750a ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xc9561cba ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xe106079e ssb_bus_powerup -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 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 0x5b567772 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x73c5c559 fbtft_write_spi_emulate_9 -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 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/iio/addac/adt7316 0x371fe805 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xbb93eeff ade7854_probe -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 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 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/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 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 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 0x1287bc4c iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x133cf3d8 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x14044a62 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x14861b00 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x16db63c6 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x19b42c7d iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c063bb0 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x202e75c5 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x24aa7dd1 iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3179e6fd iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3227f525 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x35a932d1 iscsit_build_reject -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 0x44171caf iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x45cd6fc4 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x48c11662 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4f4285b7 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x54a6ef2e iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x57d99243 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5f0f5a2c iscsit_process_nop_out -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 0x7c5dfba2 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x865382a6 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x98581f0d iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x98c0f693 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9a0b406d iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9ac3245d iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xafc81795 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbee9a4ce iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbfcf24f8 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc0930f52 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc171b6a0 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc665782e iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcefddb29 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd0bb26e8 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd10244e5 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xda54e574 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe8402e00 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf6b0caad iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf83a98dc iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfbb60a2b iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfceae95d iscsit_handle_snack -EXPORT_SYMBOL drivers/target/target_core_mod 0x035915f5 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x0521b7cf core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x073c29e9 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x09fb8a33 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x1457468f target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x230b0f3b target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x23d10e59 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x27859bde core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x2b5cfa48 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x344c39df transport_init_session -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 0x409991bc target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x42b94113 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x46183f2d target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x470991be transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x4c515473 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x4ccc11bf spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x4d253120 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x4f22ea98 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x52f18037 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x57eb57a0 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x582df744 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x5e12638c transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x5efa9531 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x6111e1e0 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x66058dfd target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x66166184 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x66c0002c sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x73e51130 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x7479e855 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x7674c92d transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a466991 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x7b2f65b5 transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x7c0f35b5 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x7f26a3f9 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x898fccef sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x8d460112 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x90f27298 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x91430b99 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x91ea5355 target_undepend_item -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 0xa64d60d2 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xa9365241 target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xb75077ac target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xb8f8f367 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xb9547896 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xbc6fa7bc target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xbda18aa5 target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc540893b target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xc7085a9f core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xc9e66848 target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xca3c0f78 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xcd28e567 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xce37d38b core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xd24e950f transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xd4a203be sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xd6a8ae7d target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xd9963185 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xdd81ddec target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xe05d84f3 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xe5444486 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xe5dfead8 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xe61a900f transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xee5e0a2f sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xf1045ec9 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xf122e327 target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xf2059007 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf4517d5b target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0xf84dd7d4 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xf8e1715d transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xfd0be36e spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xff3d5b28 transport_free_session -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/gadget/libcomposite 0x262428d5 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xb4589d32 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 -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6018975d usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x73d12eb4 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7f899cc5 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x85cd6ee4 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x89ffeb18 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc8f7c98e usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xca33b237 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xed75ec89 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x057f9cc6 usb_serial_resume -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x28df20e8 usb_serial_suspend -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x05804e6e mdev_register_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x68a1a182 mtype_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x86f0a4c9 mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xb1ed151a mdev_unregister_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xb814b5fe mdev_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xddfcdf74 mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf524330e mtype_get_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf6c18159 mdev_register_driver -EXPORT_SYMBOL drivers/vhost/vhost 0x0a628442 vhost_chr_write_iter -EXPORT_SYMBOL drivers/vhost/vhost 0x1cba98f2 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/backlight/lcd 0x1249df27 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x5b9cbcf9 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x65b4b4ef lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xf8954405 lcd_device_register -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x18237cfe svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x20139dfa svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x2e8ffd6a svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7666cd79 svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc4a093e3 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xea3adea1 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xeb83de74 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x212bc90b sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x21d2247b sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xfb4b3229 sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x31650a81 cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xd9a459ad mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x4845440a matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x757c87ec g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xbb99710f matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x253ccd82 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x677c6dbd matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xa35092fb DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xd38ed7fc DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xbfbc4fb9 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xebff8d57 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x0a3c91eb matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xab56f131 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xacad1034 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xcf956ccb matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xfc26bb44 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xfeaf737f matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x0910df40 matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x6b436f8f matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xbcf391cd matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc5f1e573 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xdf79cfe7 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x220e987f vbg_put_gdev -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x260590c0 vbg_err -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x569b312f vbg_info -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x68f1cf1a vbg_err_ratelimited -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x70cdcbfd vbg_warn -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x847f5fae vbg_hgcm_connect -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x92554ec0 vbg_get_gdev -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x9c072aa8 vbg_status_code_to_errno -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xd48a8374 vbg_hgcm_disconnect -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xe3ea7d9c vbg_hgcm_call -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x2b692b71 virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x3059e056 virtio_dma_buf_attach -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xed723241 is_virtio_dma_buf -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xfd13c824 virtio_dma_buf_export -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 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/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 0x07b1768d __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x0f97de43 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x145b0a7a __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x2e5cf3f0 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x3234f766 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x324b8389 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x34fc1f5e __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x46874d8f __fscache_begin_read_operation -EXPORT_SYMBOL fs/fscache/fscache 0x497d5fd5 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x535b3445 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x54772b92 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x588ee69d __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x5cba83a5 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x5e19c61b fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0x649caeba __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x6530848e fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x66186c01 __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0x6acefa42 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x6e62bd75 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x82639a57 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0x98c24bf4 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x9f6a857e __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xa039648a fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0xad42baf1 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0xad4f407a fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0xadb61b93 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0xb0cb3020 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0xba061474 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0xbd295de2 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0xbe197c41 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0xc7cd61c7 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0xc8a5c6c8 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0xca610f36 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xcc546c76 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0xcdde2e1c __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xd813edba __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xe1acae2a fscache_init_cache -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 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 -EXPORT_SYMBOL fs/quota/quota_tree 0x0cdf9eee qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x1785583c qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0x6f04f249 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x7c42e161 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xff777c4f qtree_release_dquot -EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t -EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table -EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table -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 0x6120d7d2 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get -EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create -EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set -EXPORT_SYMBOL lib/lru_cache 0xec9cb317 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 0x295a7dfb lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x2a90fcd2 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0x75d8e501 lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xb41235b7 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xd2573e5d lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xf4034dfa lowpan_unregister_netdev -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 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 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 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 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 0x9f4d4778 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x9fbd9b29 v9fs_get_default_trans -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 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 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 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 0x378a533a alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x5dcff7fa atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xc22042ba atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xcff78074 aarp_send_ddp -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 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 0xf49bc67a atm_pcr_goal -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 0x80f0c41e ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xa3f3e96a ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0xb5e2882a ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xc8758db8 ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0xd38df767 ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xde1f8788 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0xf7616994 ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0xfd1fe7b6 ax25_ip_xmit -EXPORT_SYMBOL net/bluetooth/bluetooth 0x064b9baa bt_procfs_cleanup -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 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 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 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 0xd7613212 bt_err_ratelimited -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 0x3ab882ee ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5b6ac954 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5beca1d5 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x991a151a ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc4e2b0cb ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xce3af9f2 ebt_unregister_table -EXPORT_SYMBOL net/caif/caif 0x1096f1e8 cfcnfg_add_phy_layer -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 0x9e3e305d cfpkt_set_prio -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/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x053fa80e osd_req_op_cls_init -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 0x10d930d1 ceph_msg_data_add_bvecs -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 0x1378aba3 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x165ce2a8 ceph_check_fsid -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 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 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 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 0x3cc61114 ceph_con_close -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 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 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x4b6085ea osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x4e5a3d10 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 0x517902af ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x5324702c __ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x536cf84a __ceph_open_session -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 0x5aeeee62 ceph_oid_aprintf -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 0x62dcb53e ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6bd500f4 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x6cfed5c8 ceph_con_open -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 0x7d13a3b0 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x7ea99eb4 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x814fe117 ceph_client_addr -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 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x878012ef ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x8bd7c261 ceph_msg_get -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 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 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 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 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 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xaefb24c2 ceph_monc_wait_osdmap -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 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xbb332cf0 ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy -EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xc1050207 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc8efbad9 ceph_monc_got_map -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 0xcedfe6ea ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0xcfb0c47a ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0xd0b8dbb3 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd6bbb721 ceph_osdc_get_request -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 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 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 0xe4a384ee ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xeca5e4f9 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 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 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 0xf15c457b ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0xf254297e ceph_addr_is_blank -EXPORT_SYMBOL net/ceph/libceph 0xf2ba094a ceph_osdc_watch -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 0xfc3e9278 ceph_msg_new -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x8ded86a8 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xa950822f dccp_req_err -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/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x20f319be __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0x296966a8 __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0x0ecd2add gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x0881533c ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7b9975f6 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x936b6427 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xcd3dc73f ip_tunnel_encap_del_ops -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 0x1eebbed0 ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x856acc08 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x8923e072 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf6f26a87 ipt_do_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x74f66f2e xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0x7f2a4dd3 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x635c1fbc udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2c40419b ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x499265de ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4ce125b5 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5ebabd68 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6ca237f1 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x962f3366 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb151d50a ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf414ad2c ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xfeac4f85 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x82cff8b3 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x9bc87506 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x9c425ff4 ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xcbd8bb01 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/tunnel6 0x82f039e7 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0xff6d756d xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xa47a4e9a xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xaf3c5713 xfrm6_tunnel_spi_lookup -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/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 0x017e4ae0 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x027cbe68 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x09456535 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x0b9babd9 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x0d78bfa3 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x1392c3d5 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x13b39b54 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x1666d48a ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0x1710cf67 ieee80211_next_txq -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 0x1d6e8b4c ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x1db76d91 ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x2254516d ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0x25f40450 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x27edc8f0 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x29d77885 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x2c7d31f4 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x3497d2e9 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x370e2bfd ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x3719ad2c ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x3fec6668 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x408aaa1c ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x40ee643a ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x429667f1 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x4568516b ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x46b61e19 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x46f5c41d ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x4acc6c59 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x4adb1322 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x4e82150c ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0x4f987046 ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0x5d8e0a07 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x5ddcae31 ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x60597284 ieee80211_return_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x610f47cc ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x61980a16 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x681f3c7e ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x6dcfc2bd ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x70256a14 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x706eb395 ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x71e1a89d ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x72e2829c __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x73279757 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x74d405ed ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x7857232c ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x78e5a824 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x7a8ca541 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x7d05a20b ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x7e608039 ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x7ecb98c0 ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0x7eee484c ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x82297f28 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x828dfa7d ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x83c475a7 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x83eb7b98 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x87b4779e ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0x8a05ea5b ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x8f7cfa62 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x9092e821 ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0x9681c42e ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x96c66c66 ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0x97c4a89b ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x9e3f9c33 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0xa2524289 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xa4bbeddf ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xa6e6bba6 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0xa9d98e08 ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0xb72e2505 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xba8d5c04 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xbe9bd6e0 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0xbf6dd60f ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xc0b6cc52 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xc2e795a5 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0xc41ab09a ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0xc5b46786 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0xc62b4adc ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xc8cd7ca1 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xc9b82bf3 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xcd6f380a ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xcdfc7e1e ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xcf6c1df2 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xd515f681 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xd688f106 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0xd7bff6a0 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xd8c04bd6 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0xdb5c1e49 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xe1a7eb37 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0xe6b8ab74 ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xe85ddff9 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xe91f3967 ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xedaadca5 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xf55880d3 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xf7a26142 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xf8ef327f __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xf904dbd9 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xf9d42bfa ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0xfc38a9ca ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0xfc66557d ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xfddec600 ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xfee418ac ieee80211_pspoll_get -EXPORT_SYMBOL net/mac802154/mac802154 0x0269152b ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x4cfa56e9 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x602e9bae ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x781ad227 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x83d14c51 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x9c9cafe7 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xc0ef0f04 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xe3841ad3 ieee802154_unregister_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x019b9b26 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0620778a ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0cdd8881 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x34157a06 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3714bfd4 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5a810de8 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5dcdf72c register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x617dccbe unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x684a4ed2 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x73500e3b ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x89a35934 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x94451ca5 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc1e8b1e8 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xee2c042d register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfe179c61 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x1d1d5ea2 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 0x06541dfe nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x5cd78e3f nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0xa187c2e6 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xfb8239ca __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 0x257afa97 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x28a70250 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x2a3253c6 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x2aeb7bb3 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x35425154 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks -EXPORT_SYMBOL net/netfilter/x_tables 0x425d432d xt_find_table -EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name -EXPORT_SYMBOL net/netfilter/x_tables 0x499da766 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -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 0xafd21691 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xc22d2b08 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0xc99e7da5 xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x018e3cbd nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x02f56f72 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x29d61b00 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0x2e65b274 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x30f0cf31 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x35fcae94 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x3e62951c nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x3fb785f5 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x4982a709 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x7aa5a37a nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x7c80ecd5 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x7c81f517 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x7fd92dfe nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x8440da3f nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x88b72e63 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x93ec73e0 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0xb590510b nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xb89b8689 nfc_hci_disconnect_all_gates -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 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/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 0x07407fc3 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x0783a288 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x14e0c574 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x19298da9 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1ed07378 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x390bad47 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x48452399 rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0x501d16a4 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6a56f690 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6e6caaa4 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6ed2ac74 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6f54746a rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x86642457 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0x894d66a7 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x951c3042 rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9a7d3a0e rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9c909abe rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb0d5276c rxrpc_kernel_check_life -EXPORT_SYMBOL net/sctp/sctp 0x15df55fc sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x243b8e76 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x870a2618 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xa33dd7e8 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x46c583de xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0x77338c80 get_srcport -EXPORT_SYMBOL net/sunrpc/sunrpc 0xd93b084d xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xfcce8ea0 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 0xa6be6174 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 0x11017293 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x115e732d regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -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 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 0x2310adee ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x249933ff cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0x273bec6f wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x27992670 cfg80211_classify8021d -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 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 0x3d8e5894 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3df6d98f cfg80211_ready_on_channel -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 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 0x5502f2a2 ieee80211_get_num_supported_channels -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 0x5f389847 cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates -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 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 0x7786af23 ieee80211_get_channel_khz -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 0x7ae9ddc4 cfg80211_crit_proto_stopped -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 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 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 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 0xa0550f24 ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0xa0a9b84f cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xa2176362 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0xa95f2c85 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xba4689bd wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xbc72dd01 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0xbe1b4f99 get_wiphy_regdom -EXPORT_SYMBOL net/wireless/cfg80211 0xc11049dd cfg80211_ft_event -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 0xc5dcacef ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xc899c63a cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0xcb885daf cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0xcbe9271a cfg80211_inform_bss_data -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 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd6da9705 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0xd7de02d3 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xda6ab3bc cfg80211_iftype_allowed -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 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 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 0xef265f27 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf248e148 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xf3ce643d cfg80211_check_combinations -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 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 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 -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1c039566 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x76feca20 snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 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 0xf80b9670 snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf912f0c8 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x734e4fba snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 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 0x516e0492 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x0938c49f snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0x0eec6241 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program -EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1f954fd8 _snd_ctl_add_follower -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x28431850 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x2a6e9584 snd_card_register -EXPORT_SYMBOL sound/core/snd 0x32e63519 snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x40e26811 snd_card_free -EXPORT_SYMBOL sound/core/snd 0x444f314e snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0x47e98c51 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x5331e1f7 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x5c11e709 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0x605144d4 snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0x61c8aad0 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x6598c51b snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x686f84c9 snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x698aae7d 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 0x7553fdd7 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x789685c5 snd_info_register -EXPORT_SYMBOL sound/core/snd 0x7de9e4bc snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x7fedf26b snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0x80eda0bf snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x823d2912 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x87047479 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x8fdbe0a8 snd_card_new -EXPORT_SYMBOL sound/core/snd 0x943732df snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x95742667 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa05ad23e snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0xa064cebe snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0xa43a6a92 snd_ctl_notify_one -EXPORT_SYMBOL sound/core/snd 0xa7255217 snd_device_free -EXPORT_SYMBOL sound/core/snd 0xa9763d64 snd_device_register -EXPORT_SYMBOL sound/core/snd 0xabeeacd5 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0xace8735b snd_jack_report -EXPORT_SYMBOL sound/core/snd 0xb0736083 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb5d63d47 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0xc16f7fdc snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0xc29e74db snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0xc65c034c snd_device_new -EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0xccdc9b48 snd_component_add -EXPORT_SYMBOL sound/core/snd 0xd42382a4 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0xd789c78f snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0xe4994521 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0xe81ffa99 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0xedc45dfd snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0xee0d8c66 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0xf0ce0134 snd_power_wait -EXPORT_SYMBOL sound/core/snd 0xf3012bdc snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0xf815a626 snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-compress 0x7786e822 snd_compr_malloc_pages -EXPORT_SYMBOL sound/core/snd-compress 0xe3d16a4c snd_compr_free_pages -EXPORT_SYMBOL sound/core/snd-hwdep 0xc211c41c snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x00722737 __snd_pcm_lib_xfer -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 0x0566c961 snd_pcm_create_iec958_consumer -EXPORT_SYMBOL sound/core/snd-pcm 0x05b6db0b snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x08f77a15 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL sound/core/snd-pcm 0x166156b5 snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x29a5ccac snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0x2bd97396 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x2cd85d70 snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3d024167 snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0x431a1e07 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x43706501 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0x4c20a6d5 snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x4ccc8b25 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x540ca4cb snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x5d5af8a4 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x60359db0 snd_pcm_hw_constraint_ranges -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 0x6a5b7cd7 snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x70bee292 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x723bdc3a snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x72a438f8 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x753b8292 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x75f05f84 snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x7613e63e snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x784aceab snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0x7bdeef39 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x81262995 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0x82b876ac snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x8dc35211 snd_sgbuf_get_page -EXPORT_SYMBOL sound/core/snd-pcm 0x8e2a0b70 snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x8f358f1f snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x942fc1d4 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x9444bf04 snd_dma_buffer_mmap -EXPORT_SYMBOL sound/core/snd-pcm 0x98a7b67f snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xa2821e80 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xa5a2146d snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xabce0fc4 snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xad8de251 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0xb4f2aaea snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0xb8a4b4b3 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xb99cab9a snd_pcm_set_managed_buffer_all -EXPORT_SYMBOL sound/core/snd-pcm 0xbd72dd55 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0xbe41bec5 snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0xbefdadf4 snd_pcm_set_managed_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xc3151b3c snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0xd85b7df5 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0xddd986ee snd_pcm_period_elapsed_under_stream_lock -EXPORT_SYMBOL sound/core/snd-pcm 0xe2f76e4b snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xf8c104cb snd_sgbuf_get_addr -EXPORT_SYMBOL sound/core/snd-pcm 0xfa98cb12 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x03d4dc2b snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0825fd60 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x162d31c9 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1c3e459f snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2a7afabb __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x390728b4 snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x44836119 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4690a61e snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4a3e0854 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5448eff8 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x70cf4413 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x757caf8a snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7790ae27 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x8043c8a4 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x81563682 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x95d15e12 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0xda9b9bc7 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xdc9cf02a __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe91288aa snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf5a0cf95 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/snd-seq-device 0x51883617 snd_seq_device_new -EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/snd-timer 0x0defa69b snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0x10b5860a snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x160035ea snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0x35f45d29 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0x550a5d5f snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x7ab3fcc6 snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x8d64d609 snd_timer_instance_new -EXPORT_SYMBOL sound/core/snd-timer 0xa6df3185 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0xa6e2b58d snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0xb1f9fa28 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0xc592f407 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0xcc36ef52 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0xd3e89d6e snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0xe2c9e5d3 snd_timer_instance_free -EXPORT_SYMBOL sound/core/snd-timer 0xeced7b53 snd_timer_interrupt -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x9dc7f12f snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x06a1f16d snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x191dd426 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x27cb8884 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x294558ea snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x65da9070 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7d4fae9a snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x85a0ddc8 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa2c72d02 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc13ddffc snd_opl3_new -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x235c7ec7 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2d852b8e snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x32971d48 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x60d1f602 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x953c9309 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9a85f30b snd_vx_suspend -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 0x1a48caa3 iso_packets_buffer_init -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 0x4cbfda19 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -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 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 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 -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfd267035 cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfd868808 fcp_bus_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x06cde353 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x0f805594 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1ff28c29 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x328befd3 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4c8a1d70 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5f480d9e snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x73b60fe3 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x94d39ca7 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc0d5408f snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xdffd6622 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x31078e92 snd_ak4117_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x71a70fd4 snd_ak4117_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x899eb0d4 snd_ak4117_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xbcc40761 snd_ak4117_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xd96ed509 snd_ak4117_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xea2a4a6f snd_ak4117_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x3ae655cf snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x5e2e2a5a snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xe2537aef snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xe5e8fe90 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x4d9a8363 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xc16650c1 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x03e0bbe8 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x09d75a2b snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5f25fd8e snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x8bdbcaa1 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x8dbe0b71 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe9591bec snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-i2c 0x7bfc086e snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x7d438c6e snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0xbb100bba snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xcae837db snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xd9e56e34 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xfb8f4558 snd_i2c_sendbytes -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x04472e29 snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0700e713 snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0f2d4212 snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x365ae57d snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x62791539 snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x90d64a4d snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x999025fe snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb7d92232 snd_sbdsp_reset -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc844d66b snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe458d20b snd_sbdsp_command -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x08ad1296 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0a5db7f5 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x163c94e1 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2615d01b snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2f242746 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x41a04856 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x57060023 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5a8836cd snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x626329e3 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x675bdc01 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x67710531 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x84cd2224 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x93176b6c snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc6c20664 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd7756a86 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xed8aef9a snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfd2925aa snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0xbde59727 hpi_send_recv -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0dc9b177 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1cd07b44 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x200987b2 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x25c90100 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x71521f02 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x73ccf113 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa7d1d778 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa868aeeb snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd6baae7d snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x6719e150 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xc1c83557 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xf6252816 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1a0dcb7c oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x285f3fa4 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x413f24ef oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4a456639 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5af27d88 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6c5cd62e oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x792581f9 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x804ba3a7 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x815b3e29 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8303a965 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x876784e7 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x93521ff0 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9c97079b oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb03c1970 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbfe938a1 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcec5ac6b oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd2355e35 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdfffd7a7 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf444d9c2 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfe70a80e oxygen_write16_masked -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x444667c3 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x5cde7d7d snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x6af9a5ef snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbebf230b snd_trident_write_voice_regs -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-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 -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x3b8ded38 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xc63b1829 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x19fd4845 aic32x4_regmap_config -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 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 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 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/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 0x22b10ed8 snd_sof_device_shutdown -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 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 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 0x60d17dbb snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6e2c6dc3 sof_io_read -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 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 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 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 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 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/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x835c5458 register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0x967d189a register_sound_special -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xae2b7fae register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xd37bf570 sound_class -EXPORT_SYMBOL sound/soundcore 0xfdc13fb6 register_sound_dsp -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x190f6e15 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x2bc37816 snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x6fcbfa0e snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x783f14d1 snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x91fb7303 snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb44e62ae snd_emux_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x0eda33fa snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x2a48197f snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x6517719f __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x914f3491 snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x9223e14b snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x9adc8c44 __snd_util_memblk_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xc59655e4 snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0xd28dc0da __snd_util_mem_alloc -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -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 0x00148653 vsnprintf -EXPORT_SYMBOL vmlinux 0x00155fbe __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x0032e3e3 bio_add_page -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 0x00a8209d is_nd_pfn -EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00d90498 phy_stop -EXPORT_SYMBOL vmlinux 0x00fe7f09 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -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 0x01421378 udp_set_csum -EXPORT_SYMBOL vmlinux 0x0145ca79 pci_release_regions -EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on -EXPORT_SYMBOL vmlinux 0x015af7f4 system_state -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 0x018301cd make_kgid -EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete -EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x019091b0 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x019a16ba netlink_capable -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 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01e97374 fb_show_logo -EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo -EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x023d1b90 wrmsr_on_cpu -EXPORT_SYMBOL vmlinux 0x0240bbba devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x026ad226 trace_event_printf -EXPORT_SYMBOL vmlinux 0x0272fc45 unregister_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x028a9d8d tty_unthrottle -EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x02bd25d7 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x02c1ed80 seq_puts -EXPORT_SYMBOL vmlinux 0x02c656b6 acpi_enable_all_runtime_gpes -EXPORT_SYMBOL vmlinux 0x02ddb4f8 qdisc_put -EXPORT_SYMBOL vmlinux 0x02e419ad neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x0301efd5 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x03399f4a ip6_output -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 0x0374a06a neigh_ifdown -EXPORT_SYMBOL vmlinux 0x0377be5a netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x037c6a21 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x037d4723 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x039bbc77 key_move -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 0x03e3623f clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x0426a909 dev_get_phys_port_id -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 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 0x04a44da4 readahead_expand -EXPORT_SYMBOL vmlinux 0x04ac84b8 param_set_ulong -EXPORT_SYMBOL vmlinux 0x04c1fd41 ipv4_dst_check -EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset -EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi -EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x04e0173e fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04ec5942 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x04eeab8b nf_log_unset -EXPORT_SYMBOL vmlinux 0x04f7ab17 devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x050cd909 dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0x051c3d9b skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x052cda19 rproc_get_by_child -EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x054ef2c1 generic_file_mmap -EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 -EXPORT_SYMBOL vmlinux 0x056403a8 skb_checksum -EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x05b51d79 fs_param_is_path -EXPORT_SYMBOL vmlinux 0x05dd5c56 jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0x05e638bf deactivate_super -EXPORT_SYMBOL vmlinux 0x05f3efdd cdev_set_parent -EXPORT_SYMBOL vmlinux 0x06052f8d __memmove -EXPORT_SYMBOL vmlinux 0x060a3093 inet_frag_kill -EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0x060d82db netdev_notice -EXPORT_SYMBOL vmlinux 0x06134d31 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x06224b78 agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x0646eac6 cdev_add -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 0x0696829a dst_alloc -EXPORT_SYMBOL vmlinux 0x0699de2e bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 -EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x06bf8ac5 get_agp_version -EXPORT_SYMBOL vmlinux 0x06c86082 dma_sync_wait -EXPORT_SYMBOL vmlinux 0x06dcc218 inet_recvmsg -EXPORT_SYMBOL vmlinux 0x07038e9e seq_release_private -EXPORT_SYMBOL vmlinux 0x0706edf9 vga_switcheroo_lock_ddc -EXPORT_SYMBOL vmlinux 0x070a0c29 inet_accept -EXPORT_SYMBOL vmlinux 0x0713288a __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x071cf939 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x071ddef8 set_pages_array_wc -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x0737dfa2 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x0742f656 devm_of_iomap -EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase -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 0x07748724 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x077dd12f input_close_device -EXPORT_SYMBOL vmlinux 0x07872d60 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x078b1e38 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x078ef9d2 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x079ec602 phy_validate_pause -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -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 0x07d50f42 mdiobus_free -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 0x0800473f __cond_resched -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 0x08118637 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x081bf477 tc_setup_flow_action -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 0x086777e4 vfio_unregister_notifier -EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x08a3576e unlock_page -EXPORT_SYMBOL vmlinux 0x08a703f8 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x08d2239e ll_rw_block -EXPORT_SYMBOL vmlinux 0x08f330dc csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x0902cd04 xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x0922ff94 alloc_fcdev -EXPORT_SYMBOL vmlinux 0x092354bf ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x09236407 input_register_device -EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x0953e0cf flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0x09574ad9 put_devmap_managed_page -EXPORT_SYMBOL vmlinux 0x0965545e mmc_of_parse_clk_phase -EXPORT_SYMBOL vmlinux 0x096780d8 pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0x096a4727 acpi_bus_register_driver -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 0x09854c87 fb_is_primary_device -EXPORT_SYMBOL vmlinux 0x0985b72f input_set_keycode -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x0997381c __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x099f717b mmc_wait_for_req_done -EXPORT_SYMBOL vmlinux 0x09af3976 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x09b8a7ee unlock_rename -EXPORT_SYMBOL vmlinux 0x09c29df1 pnp_get_resource -EXPORT_SYMBOL vmlinux 0x09c9cd9e genphy_resume -EXPORT_SYMBOL vmlinux 0x09cd4a62 tcp_getsockopt -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 0x09e234d0 sock_no_accept -EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0a0569ec neigh_parms_release -EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key -EXPORT_SYMBOL vmlinux 0x0a248d2c copy_string_kernel -EXPORT_SYMBOL vmlinux 0x0a34c949 sock_kmalloc -EXPORT_SYMBOL vmlinux 0x0a508ca9 generic_ro_fops -EXPORT_SYMBOL vmlinux 0x0a557aa9 eth_gro_complete -EXPORT_SYMBOL vmlinux 0x0a5c32be call_fib_notifiers -EXPORT_SYMBOL vmlinux 0x0a65d625 fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x0a68165d seq_printf -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a77acab napi_gro_flush -EXPORT_SYMBOL vmlinux 0x0a865b32 rproc_alloc -EXPORT_SYMBOL vmlinux 0x0a86a32b netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0x0a894f55 seq_read_iter -EXPORT_SYMBOL vmlinux 0x0a8b3dc8 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x0a8c1504 mmc_can_erase -EXPORT_SYMBOL vmlinux 0x0a9ba04f srso_untrain_ret -EXPORT_SYMBOL vmlinux 0x0a9d5da7 skb_copy_header -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aa630d1 netif_skb_features -EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0ac9894d d_instantiate -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -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 0x0b1d07d3 reuseport_migrate_sock -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 0x0b2c52be ping_prot -EXPORT_SYMBOL vmlinux 0x0b327dc8 __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0x0b637410 cr4_update_irqsoff -EXPORT_SYMBOL vmlinux 0x0b6a9bc7 tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b97090c ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x0b9af17a dma_resv_init -EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0ba8b76d ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x0bbfa78c set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bc58ce8 ip6tun_encaps -EXPORT_SYMBOL vmlinux 0x0bd60d92 inet6_getname -EXPORT_SYMBOL vmlinux 0x0bd80042 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x0bdd3748 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x0bf820c4 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user -EXPORT_SYMBOL vmlinux 0x0c019487 neigh_xmit -EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame -EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c2df957 md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x0c31a207 scsi_remove_device -EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0x0c4329a2 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x0c49e3e7 dma_map_resource -EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c812a95 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x0c876f8d unregister_quota_format -EXPORT_SYMBOL vmlinux 0x0cafbcb7 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false -EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x0cd7c158 flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason -EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d172b6a __vfs_removexattr -EXPORT_SYMBOL vmlinux 0x0d19d7a5 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x0d3c560e proc_symlink -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d67f52b end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x0d6a1e18 register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x0d7064a0 xp_dma_sync_for_cpu_slow -EXPORT_SYMBOL vmlinux 0x0d95c675 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x0d9df306 get_tree_nodev -EXPORT_SYMBOL vmlinux 0x0db00f19 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x0db545e1 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x0dde0de7 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x0de0bd34 d_add_ci -EXPORT_SYMBOL vmlinux 0x0dedf585 find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0x0df08627 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0x0e151746 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e1a09ac netdev_info -EXPORT_SYMBOL vmlinux 0x0e23b37f alloc_cpumask_var_node -EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned -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 0x0ec2c4da generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ec70531 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x0ed2b462 mmc_can_trim -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 0x0f0692cc fb_set_suspend -EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu -EXPORT_SYMBOL vmlinux 0x0f2451ba kernel_bind -EXPORT_SYMBOL vmlinux 0x0f31bebe phy_attach_direct -EXPORT_SYMBOL vmlinux 0x0f3690fc km_policy_expired -EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x0f491e47 tcp_splice_read -EXPORT_SYMBOL vmlinux 0x0f6897c7 proc_mkdir -EXPORT_SYMBOL vmlinux 0x0f73b573 udp_poll -EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f883e51 tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0x0fa32a7d pci_clear_master -EXPORT_SYMBOL vmlinux 0x0fa7a301 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fb4a5ad writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x0fb98e67 mmc_wait_for_cmd -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 0x102a1dab security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x1032782e filemap_invalidate_lock_two -EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x103ec3f1 dev_printk_emit -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 0x10908ff5 param_get_short -EXPORT_SYMBOL vmlinux 0x10a26b91 __nlmsg_put -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 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x10e91ef9 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x11056919 __frontswap_test -EXPORT_SYMBOL vmlinux 0x11077475 seq_write -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x1132f620 dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0x114e911f __napi_schedule -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x117e1742 ___pskb_trim -EXPORT_SYMBOL vmlinux 0x117e2f65 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x118c8360 fqdir_init -EXPORT_SYMBOL vmlinux 0x119481fe vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x1197bf4f param_ops_ulong -EXPORT_SYMBOL vmlinux 0x11a1a156 bdev_dax_pgoff -EXPORT_SYMBOL vmlinux 0x11ab6fc5 default_llseek -EXPORT_SYMBOL vmlinux 0x11b76cfd serio_unregister_port -EXPORT_SYMBOL vmlinux 0x11d172a9 agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0x11d266be rproc_report_crash -EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg -EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic -EXPORT_SYMBOL vmlinux 0x11eb121f cdev_del -EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x12160631 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x1225221f xp_free -EXPORT_SYMBOL vmlinux 0x12296ade __quota_error -EXPORT_SYMBOL vmlinux 0x1241865e xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0x12473328 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x124ca10c mark_page_accessed -EXPORT_SYMBOL vmlinux 0x12a1b8e2 sg_miter_stop -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 0x12bb8b87 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data -EXPORT_SYMBOL vmlinux 0x130fa96b netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark -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 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x1350b7eb input_unregister_handler -EXPORT_SYMBOL vmlinux 0x1361fb47 md_handle_request -EXPORT_SYMBOL vmlinux 0x136cc48a copy_page_from_iter_atomic -EXPORT_SYMBOL vmlinux 0x136eec6b mmc_can_discard -EXPORT_SYMBOL vmlinux 0x1372ca61 agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0x1379e53c simple_recursive_removal -EXPORT_SYMBOL vmlinux 0x1389619c __max_die_per_package -EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13b0431f inet_frags_init -EXPORT_SYMBOL vmlinux 0x13b951a4 gro_cells_receive -EXPORT_SYMBOL vmlinux 0x13c49cc2 _copy_from_user -EXPORT_SYMBOL vmlinux 0x13cb5497 d_set_d_op -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13d68bc9 vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x13ff0e0f mpage_readahead -EXPORT_SYMBOL vmlinux 0x1402fd2f netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x141064f7 input_free_device -EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x14127a47 ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x141635ea phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x1430a0b3 vlan_vids_del_by_dev -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 0x1486ded2 dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x149120ac __f_setown -EXPORT_SYMBOL vmlinux 0x149b4fba serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x14a2a34c unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14ced76e nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x14da1b84 reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0x14e3f9c4 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0x14e8599a sock_gettstamp -EXPORT_SYMBOL vmlinux 0x1506ae19 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x150cb41a twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x151ac16d __mod_lruvec_page_state -EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible -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 0x153494dd netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x154259d7 xfrm_state_free -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x154e09c2 max8925_reg_read -EXPORT_SYMBOL vmlinux 0x15531eca xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x156384d0 phy_get_pause -EXPORT_SYMBOL vmlinux 0x1566fb82 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x157c85b0 nvdimm_check_and_set_ro -EXPORT_SYMBOL vmlinux 0x15a428b9 elv_rb_find -EXPORT_SYMBOL vmlinux 0x15a66331 kobject_set_name -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 0x15c85de3 mempool_init -EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init -EXPORT_SYMBOL vmlinux 0x15fed844 sock_init_data_uid -EXPORT_SYMBOL vmlinux 0x161931d4 phy_print_status -EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi -EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x16301b34 wrmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x163036a2 sk_mc_loop -EXPORT_SYMBOL vmlinux 0x16307b61 md_flush_request -EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize -EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x164239ed delete_from_page_cache -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 -EXPORT_SYMBOL vmlinux 0x1667b444 input_setup_polling -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 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x16abd047 mr_table_dump -EXPORT_SYMBOL vmlinux 0x16b22391 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table -EXPORT_SYMBOL vmlinux 0x16d4c5ef mini_qdisc_pair_init -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 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x17142e9b setup_new_exec -EXPORT_SYMBOL vmlinux 0x1720d89c jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x1729e51f neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x173086f9 param_get_bool -EXPORT_SYMBOL vmlinux 0x173ace20 inode_permission -EXPORT_SYMBOL vmlinux 0x1755c073 wait_on_page_bit -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 0x17b56044 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x17be68ca acpi_clear_event -EXPORT_SYMBOL vmlinux 0x17d41fc8 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x17f27379 sk_stop_timer -EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x17f813a9 __SCT__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0x1815ced9 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x1837fef5 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x183e447e netdev_reset_tc -EXPORT_SYMBOL vmlinux 0x184fb4ea devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x1854465f current_time -EXPORT_SYMBOL vmlinux 0x1875519f nd_integrity_init -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 0x18d76429 sk_alloc -EXPORT_SYMBOL vmlinux 0x18d832e2 config_item_get -EXPORT_SYMBOL vmlinux 0x18e14df4 iterate_fd -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x192ea14f __SCT__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x1936dc3c dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x193fa9a7 lookup_positive_unlocked -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 0x196413a7 dst_dev_put -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 0x198f6bbf inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x19937b3a jbd2_fc_release_bufs -EXPORT_SYMBOL vmlinux 0x199ecd60 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a57d7b __dev_set_mtu -EXPORT_SYMBOL vmlinux 0x19ac6353 blk_execute_rq -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19c373b8 noop_qdisc -EXPORT_SYMBOL vmlinux 0x19c9752e kill_fasync -EXPORT_SYMBOL vmlinux 0x19cd86fd iov_iter_advance -EXPORT_SYMBOL vmlinux 0x19d200ec __SCT__tp_func_kmalloc_node -EXPORT_SYMBOL vmlinux 0x19d842f0 xfrm_init_state -EXPORT_SYMBOL vmlinux 0x19d97011 eth_header -EXPORT_SYMBOL vmlinux 0x19de0bc7 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x19df99b9 acpi_finish_gpe -EXPORT_SYMBOL vmlinux 0x19e42a4f vm_mmap -EXPORT_SYMBOL vmlinux 0x19e716ab icmp_ndo_send -EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a4a4efa scsi_device_resume -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 0x1aa9fba0 vfio_dma_rw -EXPORT_SYMBOL vmlinux 0x1ab32348 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x1ab69838 super_setup_bdi -EXPORT_SYMBOL vmlinux 0x1ab80e67 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1af3bada md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b03fa79 pcie_print_link_status -EXPORT_SYMBOL vmlinux 0x1b1ebed5 may_umount -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 0x1b5079c1 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x1b575309 agp_enable -EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b6a508e rtnl_link_get_net -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 0x1ba59527 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc -EXPORT_SYMBOL vmlinux 0x1bbcdcf1 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x1bc26cda input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x1bcb7cb0 __mmap_lock_do_trace_acquire_returned -EXPORT_SYMBOL vmlinux 0x1bd153fd tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent -EXPORT_SYMBOL vmlinux 0x1bf11a70 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x1bf39f7f __invalidate_device -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 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c6a10a1 sync_filesystem -EXPORT_SYMBOL vmlinux 0x1c807f3b fddi_type_trans -EXPORT_SYMBOL vmlinux 0x1c9a67d5 __mdiobus_write -EXPORT_SYMBOL vmlinux 0x1ca527fa ioread64be_hi_lo -EXPORT_SYMBOL vmlinux 0x1ca9a2e8 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x1caef440 skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0x1cb0d08b tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x1cb8008b mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0x1cd4b04d xfrm_alloc_spi -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 0x1d170071 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x1d19f77b physical_mask -EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit -EXPORT_SYMBOL vmlinux 0x1d295c88 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each -EXPORT_SYMBOL vmlinux 0x1d60b198 seq_dentry -EXPORT_SYMBOL vmlinux 0x1d62bf09 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x1d6d6685 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x1d72ec2d dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x1d74467a find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0x1d76b699 skb_trim -EXPORT_SYMBOL vmlinux 0x1d83cfb0 dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0x1d97a535 twl6030_mmc_card_detect -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 0x1de4ccb2 get_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x1e030622 unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x1e094b3e pnp_possible_config -EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data -EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1e2e1604 devm_backlight_device_register -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 0x1e6f1b87 dma_set_mask -EXPORT_SYMBOL vmlinux 0x1e709587 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x1e7fb1ff skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0x1e9d18a0 mdio_bus_type -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1eabf210 tty_name -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 0x1ec8c109 vfs_mknod -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 0x1eeeb626 backlight_force_update -EXPORT_SYMBOL vmlinux 0x1f0eb64d phy_attached_info -EXPORT_SYMBOL vmlinux 0x1f199d24 copy_user_generic_string -EXPORT_SYMBOL vmlinux 0x1f22d1e8 tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0x1f26ffd7 pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0x1f3cf8cf init_pseudo -EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0x1f888497 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x1faa3a36 flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fc0cc7c intel_gtt_insert_sg_entries -EXPORT_SYMBOL vmlinux 0x1fc5582a fs_bio_set -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -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 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x201394e4 dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0x202513b7 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x2033d8cd flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0x20366b3b reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0x20422abf phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable -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 0x2068825f __check_sticky -EXPORT_SYMBOL vmlinux 0x207487f0 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x20806cc3 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x20884af5 dev_addr_init -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20ae31bf dev_get_by_name -EXPORT_SYMBOL vmlinux 0x20b4be85 pskb_extract -EXPORT_SYMBOL vmlinux 0x20b7ad66 configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x20ba4f3e rdmsr_on_cpu -EXPORT_SYMBOL vmlinux 0x20bcbe4f blake2s_compress -EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20dff6b4 do_SAK -EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize -EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context -EXPORT_SYMBOL vmlinux 0x210cdac4 pci_request_regions -EXPORT_SYMBOL vmlinux 0x210cfa60 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x211130c1 alloc_cpumask_var -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 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 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x21916574 input_unregister_device -EXPORT_SYMBOL vmlinux 0x21a01ddb __sock_i_ino -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 0x21c9d6c9 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x21d3a269 sk_net_capable -EXPORT_SYMBOL vmlinux 0x21d42ce9 nla_append -EXPORT_SYMBOL vmlinux 0x21d466e0 netdev_change_features -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 0x220eefe5 inode_dio_wait -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 0x224c06fb mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x224f69d5 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0x225f03aa redraw_screen -EXPORT_SYMBOL vmlinux 0x2264eeac netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x2268e8e4 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x2285bdb2 vme_irq_handler -EXPORT_SYMBOL vmlinux 0x229484cd netdev_stats_to_stats64 -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 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 0x23295fe0 __register_chrdev -EXPORT_SYMBOL vmlinux 0x232db23d vfs_get_link -EXPORT_SYMBOL vmlinux 0x232fe9c5 dump_skip_to -EXPORT_SYMBOL vmlinux 0x2349b82b __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x23659feb scsi_target_resume -EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x237b7908 lock_rename -EXPORT_SYMBOL vmlinux 0x237f213f mdiobus_write -EXPORT_SYMBOL vmlinux 0x2383fb6a acpi_dev_get_first_match_dev -EXPORT_SYMBOL vmlinux 0x2388ab10 register_quota_format -EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x238e0b1e prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0x238e9048 serio_bus -EXPORT_SYMBOL vmlinux 0x23a4fc9a jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x23a52694 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x23ac689f __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x23dc1eef mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0x23e6cdca generic_permission -EXPORT_SYMBOL vmlinux 0x23eb1559 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x23f7cf39 netpoll_poll_enable -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 0x242c8e5b neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x24375cae genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x244600f2 jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245a22c0 kern_path -EXPORT_SYMBOL vmlinux 0x2467bd57 security_sb_remount -EXPORT_SYMBOL vmlinux 0x246bcb9f phy_read_paged -EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x2485a85f __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0x24a8fc23 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x24b80243 sock_no_getname -EXPORT_SYMBOL vmlinux 0x24c0b3ff ip_fraglist_init -EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24ef6c41 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x25048984 pneigh_lookup -EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x25158a10 wake_up_process -EXPORT_SYMBOL vmlinux 0x2552a249 scmd_printk -EXPORT_SYMBOL vmlinux 0x2559e685 skb_free_datagram -EXPORT_SYMBOL vmlinux 0x256c4fbf udp_seq_next -EXPORT_SYMBOL vmlinux 0x256c78d9 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0x25792d10 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x258d02e0 ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion -EXPORT_SYMBOL vmlinux 0x25979ca2 param_ops_bint -EXPORT_SYMBOL vmlinux 0x2599c221 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x259e29ed set_pages_array_wb -EXPORT_SYMBOL vmlinux 0x25a4d382 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x25a4d7bb dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0x25a6a5c1 netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0x25c7fb88 devm_clk_release_clkdev -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 0x25f70522 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x25fc1e65 devm_memunmap -EXPORT_SYMBOL vmlinux 0x2604fd39 key_invalidate -EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x260aa62b is_bad_inode -EXPORT_SYMBOL vmlinux 0x260ba081 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x260e5078 mdiobus_read -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 0x264d5635 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x2655ff9b nd_device_register -EXPORT_SYMBOL vmlinux 0x26565fdf __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0x26569a9f phy_read_mmd -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 0x269890f9 mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0x2699047b skb_copy -EXPORT_SYMBOL vmlinux 0x26cc73c3 complete_and_exit -EXPORT_SYMBOL vmlinux 0x26d3f4b2 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e93aa4 sock_pfree -EXPORT_SYMBOL vmlinux 0x26f1e654 phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be -EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x2712f88d dquot_disable -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 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274c8e50 fwnode_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x2766675e md_bitmap_end_sync -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 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27bff66b __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0x27c468da ipmi_platform_add -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 0x27f6f7e3 __icmp_send -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -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 0x284faa6b __x86_indirect_thunk_r11 -EXPORT_SYMBOL vmlinux 0x286c1d6f set_posix_acl -EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x28a8891d xfrm_state_add -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 0x29039ce0 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x2905cb8c dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0x290c9ef8 inc_nlink -EXPORT_SYMBOL vmlinux 0x29158ab0 skb_pull -EXPORT_SYMBOL vmlinux 0x291e3cee agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0x291ee747 csum_and_copy_to_user -EXPORT_SYMBOL vmlinux 0x29332499 __x86_indirect_thunk_rsi -EXPORT_SYMBOL vmlinux 0x29356c72 page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0x294318ee tcp_sync_mss -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 0x2999eb62 seq_file_path -EXPORT_SYMBOL vmlinux 0x299b6025 sync_file_create -EXPORT_SYMBOL vmlinux 0x29ad8e33 x86_hyper_type -EXPORT_SYMBOL vmlinux 0x29afe613 netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0x29c09fc3 blk_cleanup_disk -EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29e6fbee skb_eth_push -EXPORT_SYMBOL vmlinux 0x29e716c3 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x29ed2e43 tcf_em_register -EXPORT_SYMBOL vmlinux 0x2a03faa7 mipi_dsi_picture_parameter_set -EXPORT_SYMBOL vmlinux 0x2a0b6888 inet_stream_connect -EXPORT_SYMBOL vmlinux 0x2a107f88 pci_read_vpd -EXPORT_SYMBOL vmlinux 0x2a141345 sock_from_file -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a53376d mipi_dsi_dcs_get_display_brightness_large -EXPORT_SYMBOL vmlinux 0x2a632e34 skb_unlink -EXPORT_SYMBOL vmlinux 0x2a6fa0d0 __SCT__tp_func_module_get -EXPORT_SYMBOL vmlinux 0x2a71a0a7 pagevec_lookup_range -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 0x2aa3e012 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array -EXPORT_SYMBOL vmlinux 0x2aaf179a __bforget -EXPORT_SYMBOL vmlinux 0x2ab34daa devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0x2ab52579 mmc_is_req_done -EXPORT_SYMBOL vmlinux 0x2aca1b6d register_mii_timestamper -EXPORT_SYMBOL vmlinux 0x2ad092d1 tcp_seq_start -EXPORT_SYMBOL vmlinux 0x2ad4ca5d scsi_scan_target -EXPORT_SYMBOL vmlinux 0x2add0284 ip_frag_init -EXPORT_SYMBOL vmlinux 0x2b022912 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x2b19c8be sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0x2b2d4717 inet_shutdown -EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2b5e9afe path_put -EXPORT_SYMBOL vmlinux 0x2b6f0962 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0x2b740a1d md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x2b80fa3c cros_ec_check_result -EXPORT_SYMBOL vmlinux 0x2b8bd993 vme_irq_free -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 0x2bb4b03d ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock -EXPORT_SYMBOL vmlinux 0x2bba33f0 pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x2bc91259 tcf_exts_change -EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset -EXPORT_SYMBOL vmlinux 0x2be6e510 input_set_capability -EXPORT_SYMBOL vmlinux 0x2bf13503 mmc_of_parse -EXPORT_SYMBOL vmlinux 0x2bfc3862 __SetPageMovable -EXPORT_SYMBOL vmlinux 0x2c03ab81 mpage_readpage -EXPORT_SYMBOL vmlinux 0x2c05066f inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c319631 filp_close -EXPORT_SYMBOL vmlinux 0x2c527b4d page_pool_put_page -EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x2c710478 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool -EXPORT_SYMBOL vmlinux 0x2c7f33a6 __find_get_block -EXPORT_SYMBOL vmlinux 0x2c95e9fc nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0x2c994234 blk_queue_split -EXPORT_SYMBOL vmlinux 0x2c9f1e80 __netif_napi_del -EXPORT_SYMBOL vmlinux 0x2ca2c90b iget_locked -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 0x2cdf87a1 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x2cf0f2cc config_item_init_type_name -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0x2d196d18 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x2d1aa406 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x2d22c951 qdisc_warn_nonwc -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 0x2d71d65a vga_switcheroo_unlock_ddc -EXPORT_SYMBOL vmlinux 0x2d741972 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x2d79bc0b jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x2d8445b1 agp_backend_acquire -EXPORT_SYMBOL vmlinux 0x2d9100d8 module_put -EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year -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 0x2dc3ce88 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x2dc545d8 pfifo_fast_ops -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 0x2de125c0 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2de492f0 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x2de60ad0 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x2de76cec mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write -EXPORT_SYMBOL vmlinux 0x2df2e560 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x2dfbd46d fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x2e02e0a4 dqput -EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status -EXPORT_SYMBOL vmlinux 0x2e0f9455 xsk_get_pool_from_qid -EXPORT_SYMBOL vmlinux 0x2e1068ff inet6_offloads -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 0x2e2afea5 xfrm6_rcv_encap -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 0x2e5887a9 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x2e5e6ab0 md_done_sync -EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2e60ee17 dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0x2e74f591 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x2e7a64b3 tty_vhangup -EXPORT_SYMBOL vmlinux 0x2e874005 mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0x2ea52d3e dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0x2eaf7cf1 dev_uc_flush -EXPORT_SYMBOL vmlinux 0x2ebad994 ndo_dflt_fdb_del -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 0x2f0f7de4 unregister_shrinker -EXPORT_SYMBOL vmlinux 0x2f12130d xfrm_input_register_afinfo -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 0x2f47a84c ip_defrag -EXPORT_SYMBOL vmlinux 0x2f682f5b __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x2f6bb0b9 __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x2f727f97 dev_mc_flush -EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2fa4d3c1 ip6_dst_check -EXPORT_SYMBOL vmlinux 0x2fb3c8dc xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x2fb6a8f4 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x2fc40184 inet6_release -EXPORT_SYMBOL vmlinux 0x2fda22b8 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x2fde4a93 blk_get_request -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2ff221d6 tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0x30006a1a i2c_clients_command -EXPORT_SYMBOL vmlinux 0x30027d34 setattr_copy -EXPORT_SYMBOL vmlinux 0x301304c2 __get_user_nocheck_8 -EXPORT_SYMBOL vmlinux 0x301bc87c mount_bdev -EXPORT_SYMBOL vmlinux 0x302469f9 pci_find_bus -EXPORT_SYMBOL vmlinux 0x30309580 inet_select_addr -EXPORT_SYMBOL vmlinux 0x30350ff4 ip_local_deliver -EXPORT_SYMBOL vmlinux 0x304877dc ipv4_specific -EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp -EXPORT_SYMBOL vmlinux 0x3055e948 netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0x305a916c __x86_indirect_thunk_rdi -EXPORT_SYMBOL vmlinux 0x30959537 tty_unregister_device -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30a97d7a __seq_open_private -EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30c532dd thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x30c77ed7 proc_create_single_data -EXPORT_SYMBOL vmlinux 0x30dc321c account_page_redirty -EXPORT_SYMBOL vmlinux 0x30e18f8e mmc_retune_unpause -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 0x31199c46 clk_add_alias -EXPORT_SYMBOL vmlinux 0x31213766 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x3144bb81 xfrm_find_acq_byseq -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 0x3169726a i2c_smbus_xfer -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 0x31eb7f9c key_alloc -EXPORT_SYMBOL vmlinux 0x31fd8bdc __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x31fed652 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x31ff4b73 skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0x320c7a93 inet_getname -EXPORT_SYMBOL vmlinux 0x32104b77 amd_iommu_domain_clear_gcr3 -EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock -EXPORT_SYMBOL vmlinux 0x321ce8f2 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x32255aba genphy_suspend -EXPORT_SYMBOL vmlinux 0x322b233a bdevname -EXPORT_SYMBOL vmlinux 0x323271c2 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x323a5164 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x3259fd7b tcf_qevent_handle -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 0x3285d151 sk_common_release -EXPORT_SYMBOL vmlinux 0x328afc55 pipe_unlock -EXPORT_SYMBOL vmlinux 0x329fbe84 netdev_features_change -EXPORT_SYMBOL vmlinux 0x32b43ae5 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32e2409c scm_fp_dup -EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x32f171d7 flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0x32fc3e6c cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x330d925d arp_send -EXPORT_SYMBOL vmlinux 0x3324ef3b acpi_set_firmware_waking_vector -EXPORT_SYMBOL vmlinux 0x332a329e tso_count_descs -EXPORT_SYMBOL vmlinux 0x333091e8 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down -EXPORT_SYMBOL vmlinux 0x3338f60b param_ops_ushort -EXPORT_SYMBOL vmlinux 0x33595356 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x338aa87d dev_remove_offload -EXPORT_SYMBOL vmlinux 0x33968d3d dst_release_immediate -EXPORT_SYMBOL vmlinux 0x339b729d bioset_exit -EXPORT_SYMBOL vmlinux 0x33a21a09 pv_ops -EXPORT_SYMBOL vmlinux 0x33a66628 blk_rq_init -EXPORT_SYMBOL vmlinux 0x33ae36ba __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x33b3320b dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page -EXPORT_SYMBOL vmlinux 0x33c7f451 xen_free_unpopulated_pages -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 0x34211dfb seq_open_private -EXPORT_SYMBOL vmlinux 0x342223e9 fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0x34227f14 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x342b9805 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x343aa3d0 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x343bf451 is_acpi_device_node -EXPORT_SYMBOL vmlinux 0x3441445f msrs_free -EXPORT_SYMBOL vmlinux 0x346128b6 dev_close -EXPORT_SYMBOL vmlinux 0x346c8cdb __breadahead_gfp -EXPORT_SYMBOL vmlinux 0x346e309e mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x348464bb __dev_direct_xmit -EXPORT_SYMBOL vmlinux 0x3488ea90 _dev_notice -EXPORT_SYMBOL vmlinux 0x3489859f acpi_enter_sleep_state_s4bios -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd -EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34d95e51 md_finish_reshape -EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34f89363 acpi_terminate_debugger -EXPORT_SYMBOL vmlinux 0x34fbfec8 devm_ioport_unmap -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 0x351e51ba dev_add_pack -EXPORT_SYMBOL vmlinux 0x35286e82 key_link -EXPORT_SYMBOL vmlinux 0x3537faa2 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x354b4a1e acpi_ut_trace -EXPORT_SYMBOL vmlinux 0x3550bc1d tty_devnum -EXPORT_SYMBOL vmlinux 0x35589358 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x356aa83b file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x35851b1f md_cluster_ops -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35ab7781 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x35b030f1 tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0x35bcb477 unix_destruct_scm -EXPORT_SYMBOL vmlinux 0x35c5cdef vme_lm_request -EXPORT_SYMBOL vmlinux 0x35ea0209 pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0x360538f0 param_ops_string -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x360bc2eb tcf_exts_terse_dump -EXPORT_SYMBOL vmlinux 0x36184352 phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0x361b9662 xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0x361c9182 inet6_bind -EXPORT_SYMBOL vmlinux 0x361ffa30 discard_new_inode -EXPORT_SYMBOL vmlinux 0x3627dab8 vfs_fadvise -EXPORT_SYMBOL vmlinux 0x36391038 clear_inode -EXPORT_SYMBOL vmlinux 0x363db82d generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x36457c21 genl_unregister_family -EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable -EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked -EXPORT_SYMBOL vmlinux 0x36538462 tcf_qevent_dump -EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x367e68a1 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x36870989 __tracepoint_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x36941d19 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable -EXPORT_SYMBOL vmlinux 0x36bca937 mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x36c37cae i2c_register_driver -EXPORT_SYMBOL vmlinux 0x36c50262 netif_rx -EXPORT_SYMBOL vmlinux 0x36ce56a4 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x36de9fad dm_table_get_md -EXPORT_SYMBOL vmlinux 0x36e01e0d netlink_set_err -EXPORT_SYMBOL vmlinux 0x36f51131 dump_emit -EXPORT_SYMBOL vmlinux 0x36f99856 always_delete_dentry -EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue -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 0x3770db71 inet_rtx_syn_ack -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 0x37a4b298 get_tz_trend -EXPORT_SYMBOL vmlinux 0x37a5ce73 xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0x37b221a6 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -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 0x38058a5f napi_gro_frags -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x384c6a96 tcp_release_cb -EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x3866e475 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x3885eb58 security_sb_mnt_opts_compat -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 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 0x38cf24ce i2c_add_adapter -EXPORT_SYMBOL vmlinux 0x38d53fae neigh_seq_start -EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit -EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq -EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages -EXPORT_SYMBOL vmlinux 0x391639d5 write_dirty_buffer -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 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x396ff248 kthread_associate_blkcg -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 0x39b4dc8f scsi_ioctl -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39dfdfaf dcache_dir_open -EXPORT_SYMBOL vmlinux 0x39e3c030 do_trace_read_msr -EXPORT_SYMBOL vmlinux 0x39eb4fd3 give_up_console -EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify -EXPORT_SYMBOL vmlinux 0x3a099605 __get_user_nocheck_4 -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 0x3a38bd97 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x3a42d72d pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x3a4ee8ec put_fs_context -EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a519e36 framebuffer_alloc -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 0x3a969007 skb_tunnel_check_pmtu -EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3abb0b07 cros_ec_get_next_event -EXPORT_SYMBOL vmlinux 0x3abc6a1d pci_claim_resource -EXPORT_SYMBOL vmlinux 0x3ac078f0 inode_insert5 -EXPORT_SYMBOL vmlinux 0x3aca0190 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x3acf2ee6 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x3ad08eb1 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x3ad3509c __netif_schedule -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 0x3ae21e63 netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0x3b029f48 acpi_install_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x3b162fb7 phy_free_interrupt -EXPORT_SYMBOL vmlinux 0x3b1d1e50 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x3b20e9a1 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b51fea2 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x3b550e3f put_watch_queue -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint -EXPORT_SYMBOL vmlinux 0x3b7fd79f hmm_range_fault -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 0x3bcbd653 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3bf03e80 udp_seq_ops -EXPORT_SYMBOL vmlinux 0x3bf7bb48 cookie_timestamp_decode -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 0x3c2aee9b ip_route_input_noref -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 0x3c491004 netif_device_detach -EXPORT_SYMBOL vmlinux 0x3c58bfb8 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x3c5a8563 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x3c6de49e inode_set_flags -EXPORT_SYMBOL vmlinux 0x3c7cd8af mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x3c91db0a mdio_device_register -EXPORT_SYMBOL vmlinux 0x3c978810 phy_init_hw -EXPORT_SYMBOL vmlinux 0x3ca69678 netdev_update_features -EXPORT_SYMBOL vmlinux 0x3cc65d33 md_unregister_thread -EXPORT_SYMBOL vmlinux 0x3cd2098b dev_get_stats -EXPORT_SYMBOL vmlinux 0x3cd3624a mipi_dsi_dcs_set_display_brightness_large -EXPORT_SYMBOL vmlinux 0x3cdd7d87 inet_csk_reqsk_queue_drop -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 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 0x3d210724 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x3d258838 pci_disable_device -EXPORT_SYMBOL vmlinux 0x3d32d48c scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x3d3d18d3 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x3d4e9e77 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -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 0x3df7fa24 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3dfe880d ip_sock_set_tos -EXPORT_SYMBOL vmlinux 0x3e02723c inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x3e11788d unix_get_socket -EXPORT_SYMBOL vmlinux 0x3e38bbc1 vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e3cd7c1 nf_reinject -EXPORT_SYMBOL vmlinux 0x3e5e75ec default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x3e60e94a setattr_should_drop_suidgid -EXPORT_SYMBOL vmlinux 0x3e7ce358 phy_request_interrupt -EXPORT_SYMBOL vmlinux 0x3e802744 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x3e9c1746 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x3e9df033 scm_detach_fds -EXPORT_SYMBOL vmlinux 0x3ecedc32 sock_alloc_send_pskb -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 0x3f0eabd2 xxh64_update -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 0x3f59d1b7 agp_put_bridge -EXPORT_SYMBOL vmlinux 0x3f5ef3f7 seq_escape -EXPORT_SYMBOL vmlinux 0x3f5ff00f xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x3f752aed jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x3f7907eb ps2_drain -EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3faed54b dev_open -EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fcd7ac6 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x3fcdb9f6 noop_fsync -EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fe2569a ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3fe8173f config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x3feb2ed9 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x3ffe96df dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x4000c0ec ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x4011b7a5 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x401383a5 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x402137ef write_inode_now -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 0x40a1d616 __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x40a7df86 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40aaf14c netdev_name_node_alt_destroy -EXPORT_SYMBOL vmlinux 0x40acba29 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x40b34725 da903x_query_status -EXPORT_SYMBOL vmlinux 0x40b890f3 eth_get_headlen -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -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 0x410aae1b jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x4119c93a notify_change -EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x4135804c dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x413bb28d ip_check_defrag -EXPORT_SYMBOL vmlinux 0x413e1612 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x413f8ec8 param_set_charp -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x417754d3 dmam_pool_create -EXPORT_SYMBOL vmlinux 0x417fc8ac watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0x418511fe bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x419c29c2 build_skb_around -EXPORT_SYMBOL vmlinux 0x41ad1f4e input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x41b26484 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x41cb9529 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x41d7b6d2 load_nls_default -EXPORT_SYMBOL vmlinux 0x41d80a83 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x41df6dea dma_sync_single_for_cpu -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 0x42012c87 prepare_to_swait_exclusive -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 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 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 0x4290a6b4 sock_diag_put_filterinfo -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 0x42dc216a tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x42df718a xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate -EXPORT_SYMBOL vmlinux 0x432d75b6 md_register_thread -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 0x4342b0fd tcf_block_get -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 0x4369cef2 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x43714d70 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x4371c42a bd_abort_claiming -EXPORT_SYMBOL vmlinux 0x43752824 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x4376c555 component_match_add_typed -EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x4384d01c kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x438abc08 tty_kref_put -EXPORT_SYMBOL vmlinux 0x43a546aa seg6_push_hmac -EXPORT_SYMBOL vmlinux 0x43a8736c generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0x43bb847b end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x43bbc87d max8998_write_reg -EXPORT_SYMBOL vmlinux 0x43c4cf9d pci_reenable_device -EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43da86e2 __tracepoint_read_msr -EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember -EXPORT_SYMBOL vmlinux 0x4414ae6b tcf_classify -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 0x4474e89e vfs_readlink -EXPORT_SYMBOL vmlinux 0x44902cff acpi_enable_event -EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp -EXPORT_SYMBOL vmlinux 0x449ba7b6 mptcp_subflow_reqsk_alloc -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 0x44b2c3a7 tso_build_data -EXPORT_SYMBOL vmlinux 0x44b630c7 cdrom_open -EXPORT_SYMBOL vmlinux 0x44c11742 ptp_clock_event -EXPORT_SYMBOL vmlinux 0x44e4584f unregister_tcf_proto_ops -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 0x4523d78b pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -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 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x457b816e vm_insert_pages -EXPORT_SYMBOL vmlinux 0x45835732 __do_once_slow_done -EXPORT_SYMBOL vmlinux 0x45a2728c pci_irq_vector -EXPORT_SYMBOL vmlinux 0x45a7cdeb pci_read_config_byte -EXPORT_SYMBOL vmlinux 0x45aea603 blkdev_put -EXPORT_SYMBOL vmlinux 0x45c9175b vfs_link -EXPORT_SYMBOL vmlinux 0x45d246da node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x45e2e0bb __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x45e8d7b5 native_write_cr0 -EXPORT_SYMBOL vmlinux 0x45eace36 ppp_input -EXPORT_SYMBOL vmlinux 0x45fc19d2 retbleed_untrain_ret -EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x461793b1 register_netdev -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 0x4633c267 handle_edge_irq -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 0x467f0fe9 tcf_exts_dump_stats -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 0x46ade577 user_path_create -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 0x46cfc6d4 skb_store_bits -EXPORT_SYMBOL vmlinux 0x46e15147 __traceiter_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x46fb40f8 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table -EXPORT_SYMBOL vmlinux 0x47246d43 __SCK__tp_func_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x47612647 acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0x4763ea00 mdio_device_free -EXPORT_SYMBOL vmlinux 0x4769d193 lookup_one_positive_unlocked -EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x4783d5fe tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0x478c41c6 netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0x47951829 devfreq_update_interval -EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x4796e59c __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x47ae05db seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one -EXPORT_SYMBOL vmlinux 0x47c5b92d skb_prepare_seq_read -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 0x47e525c7 inetdev_by_index -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 0x481814c4 mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open -EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -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 0x484f6edf ktime_get_coarse_real_ts64 -EXPORT_SYMBOL vmlinux 0x48560e2d dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -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 0x4884eb01 param_get_hexint -EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim -EXPORT_SYMBOL vmlinux 0x48a81d7e vfio_group_pin_pages -EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48b016f6 xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x48c5dd72 config_group_find_item -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 0x48f80945 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x490bd82e setup_arg_pages -EXPORT_SYMBOL vmlinux 0x492c8c4b sock_rfree -EXPORT_SYMBOL vmlinux 0x49341203 inet6_protos -EXPORT_SYMBOL vmlinux 0x49353b42 eth_validate_addr -EXPORT_SYMBOL vmlinux 0x49410467 xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0x494d6fb9 devm_pci_remap_cfg_resource -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 0x496b1a97 cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x497f25e7 phy_do_ioctl -EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize -EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x499f2f9d skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x49ad0ff6 input_open_device -EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49c59b87 iget5_locked -EXPORT_SYMBOL vmlinux 0x49c8e888 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x49d4973a security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x49ded1c5 udplite_prot -EXPORT_SYMBOL vmlinux 0x49e75e4d phy_init_eee -EXPORT_SYMBOL vmlinux 0x49f4e1a0 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x4a1508d2 tcp_add_backlog -EXPORT_SYMBOL vmlinux 0x4a165127 kobject_put -EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 -EXPORT_SYMBOL vmlinux 0x4a61af82 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x4a709288 inet_listen -EXPORT_SYMBOL vmlinux 0x4a8bddba tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4aae0b83 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x4abb7d10 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x4abd71fd mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x4add1636 tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift -EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 -EXPORT_SYMBOL vmlinux 0x4af94b38 skb_vlan_pop -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 0x4b15e0f9 nd_pfn_probe -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 0x4b6df007 acpi_evaluate_reg -EXPORT_SYMBOL vmlinux 0x4b7a8e77 km_query -EXPORT_SYMBOL vmlinux 0x4b852b77 task_work_add -EXPORT_SYMBOL vmlinux 0x4b8fcc60 fb_pan_display -EXPORT_SYMBOL vmlinux 0x4ba34a05 flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0x4baf1cf1 mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0x4bb15aa9 tcf_register_action -EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node -EXPORT_SYMBOL vmlinux 0x4bd91acb dev_load -EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4c01c94e __napi_alloc_skb -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 0x4c20db8b mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0x4c236f6f __x86_indirect_thunk_r15 -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 0x4c6dd7f9 agp_bridge -EXPORT_SYMBOL vmlinux 0x4c75b7c6 unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x4c8e52d1 reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base -EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x4cbdb0c6 dev_lstats_read -EXPORT_SYMBOL vmlinux 0x4cc73bcb udp_seq_start -EXPORT_SYMBOL vmlinux 0x4cd028ca acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0x4cd5bc5e rdmsr_safe_regs -EXPORT_SYMBOL vmlinux 0x4ce332d3 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x4ceae601 get_cpu_entry_area -EXPORT_SYMBOL vmlinux 0x4cfdb9c2 sock_wfree -EXPORT_SYMBOL vmlinux 0x4d0598d9 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x4d185b39 vlan_vid_del -EXPORT_SYMBOL vmlinux 0x4d19a96c inet_register_protosw -EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -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 0x4d683e26 tcp_mss_to_mtu -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 0x4d924f20 memremap -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4da7c11d dev_change_proto_down_generic -EXPORT_SYMBOL vmlinux 0x4dc7e2df __ClearPageMovable -EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence -EXPORT_SYMBOL vmlinux 0x4dccb074 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x4dce85b7 security_inode_setsecctx -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 0x4df2ea84 gen_estimator_read -EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock -EXPORT_SYMBOL vmlinux 0x4e08daaf km_state_expired -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 0x4e36cdc4 __ubsan_handle_divrem_overflow -EXPORT_SYMBOL vmlinux 0x4e3b5e88 phy_start_cable_test_tdr -EXPORT_SYMBOL vmlinux 0x4e45f0fe mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x4e486d07 mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x4e4c3dad phy_connect -EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x4e517eb9 cdev_alloc -EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller -EXPORT_SYMBOL vmlinux 0x4e620977 d_rehash -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e7d8f64 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset -EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0x4ebb19ac __destroy_inode -EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ec85d8c dst_destroy -EXPORT_SYMBOL vmlinux 0x4f00afd3 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x4f0378c3 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x4f0ebca4 inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f229d5c page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources -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 0x4f87c184 mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0x4f9524ba nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0x4fa9c45b padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x4fa9ef81 xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0x4fad9a71 compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x4fc7ca8e kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x4fe05470 inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0x4fe3c4fb key_revoke -EXPORT_SYMBOL vmlinux 0x4feefdd2 d_genocide -EXPORT_SYMBOL vmlinux 0x4ffc1cf8 jbd2_fc_end_commit_fallback -EXPORT_SYMBOL vmlinux 0x5006d9f8 console_stop -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x50191f31 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x501bf357 netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0x5021bd81 _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex -EXPORT_SYMBOL vmlinux 0x50319c7f sock_create_kern -EXPORT_SYMBOL vmlinux 0x503496d9 pci_map_biosrom -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 0x5089f45f ip_send_check -EXPORT_SYMBOL vmlinux 0x50932ac7 __devm_mdiobus_register -EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu -EXPORT_SYMBOL vmlinux 0x509af62e inet6_add_protocol -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 0x50bdfaa4 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50c2f7c8 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin -EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf -EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del -EXPORT_SYMBOL vmlinux 0x50f2a615 skb_push -EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr -EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x5104058d skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x5107701c __do_once_done -EXPORT_SYMBOL vmlinux 0x511682ac twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x511ab1ae dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x513894b2 put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0x514ff9bf phy_suspend -EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex -EXPORT_SYMBOL vmlinux 0x515fdfc9 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x51689424 security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0x51720906 ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0x517323f4 arp_create -EXPORT_SYMBOL vmlinux 0x5175fbed open_exec -EXPORT_SYMBOL vmlinux 0x5180ef47 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x51a07ae9 submit_bio_noacct -EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0x51a97f8c udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x51b69769 mmput_async -EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -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 0x520726de inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x521cf15c rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0x52215cf6 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x52321d8e gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x525367b7 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x52684863 ptp_find_pin_unlocked -EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52a372f4 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x52aab146 napi_schedule_prep -EXPORT_SYMBOL vmlinux 0x52c1281a netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -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 0x52e61d7e ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt -EXPORT_SYMBOL vmlinux 0x52f781e8 vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0x52fe9403 phy_attach -EXPORT_SYMBOL vmlinux 0x5301a1b7 inet6_unregister_protosw -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 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 0x5395981b vme_bus_num -EXPORT_SYMBOL vmlinux 0x53b489c3 skb_split -EXPORT_SYMBOL vmlinux 0x53b954a2 up_read -EXPORT_SYMBOL vmlinux 0x53e50ffa first_ec -EXPORT_SYMBOL vmlinux 0x53ec734d nvmem_get_mac_address -EXPORT_SYMBOL vmlinux 0x53eef04c phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x53f55f2d amd_iommu_flush_page -EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock -EXPORT_SYMBOL vmlinux 0x54175c5f acpi_read_bit_register -EXPORT_SYMBOL vmlinux 0x54207553 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x5429d69c rproc_of_parse_firmware -EXPORT_SYMBOL vmlinux 0x54336b1d netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x545f7920 phy_device_remove -EXPORT_SYMBOL vmlinux 0x546c5f25 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x5478022f __fs_parse -EXPORT_SYMBOL vmlinux 0x547e3344 acpi_disable -EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value -EXPORT_SYMBOL vmlinux 0x54b22bb1 __SCT__tp_func_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x54b44be5 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x54ce84cb __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x54d65058 fget -EXPORT_SYMBOL vmlinux 0x54de75d2 pci_select_bars -EXPORT_SYMBOL vmlinux 0x54e109db sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x54e2277e kmem_cache_free -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags -EXPORT_SYMBOL vmlinux 0x54f05dc3 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x54f8baf0 generic_set_encrypted_ci_d_ops -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 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 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x559bf800 pci_read_config_dword -EXPORT_SYMBOL vmlinux 0x55c25570 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x55c27332 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x55cec583 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x55d7b407 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55eaceea udp_flush_pending_frames -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 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 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x569edfc9 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56f20aab set_pages_wb -EXPORT_SYMBOL vmlinux 0x56faee58 pci_bus_type -EXPORT_SYMBOL vmlinux 0x570f402c sock_set_priority -EXPORT_SYMBOL vmlinux 0x5715169c skb_copy_and_csum_bits -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 0x5788d828 netpoll_send_skb -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 0x57a91c97 neigh_lookup -EXPORT_SYMBOL vmlinux 0x57b7392f ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x57b7d117 devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write -EXPORT_SYMBOL vmlinux 0x57be0e07 skb_queue_purge -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 0x580707f9 sock_common_getsockopt -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 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x58435d60 netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0x5849c654 dev_deactivate -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 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 0x58c030fd __lock_page -EXPORT_SYMBOL vmlinux 0x58c59ae8 __blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58f06e01 page_get_link -EXPORT_SYMBOL vmlinux 0x590a9842 ppp_channel_index -EXPORT_SYMBOL vmlinux 0x590df2ab eth_header_cache_update -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 0x59592ad0 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x59729693 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x59816c5f locks_delete_block -EXPORT_SYMBOL vmlinux 0x5985dd9b dquot_commit -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 0x59f44c69 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x5a026476 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x5a05dc32 pin_user_pages -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 0x5a40e461 inet6_del_offload -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 0x5a657647 __sock_create -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 0x5a9696fd neigh_table_init -EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x5ab14eb2 misc_register -EXPORT_SYMBOL vmlinux 0x5ab55c59 path_get -EXPORT_SYMBOL vmlinux 0x5ac430f0 wireless_spy_update -EXPORT_SYMBOL vmlinux 0x5adfb1c4 sock_no_ioctl -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 0x5b0fa095 inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0x5b1b33ea udp6_csum_init -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 0x5b3d4851 mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store -EXPORT_SYMBOL vmlinux 0x5b41291d fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0x5b43ef2e jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0x5b55c4d2 __sk_receive_skb -EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b593c64 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x5b600745 netif_rx_ni -EXPORT_SYMBOL vmlinux 0x5b641283 arch_phys_wc_add -EXPORT_SYMBOL vmlinux 0x5b77d38e __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x5b8239ca __x86_return_thunk -EXPORT_SYMBOL vmlinux 0x5b846f52 sock_release -EXPORT_SYMBOL vmlinux 0x5b9269bb find_vma -EXPORT_SYMBOL vmlinux 0x5bad96b7 iommu_get_msi_cookie -EXPORT_SYMBOL vmlinux 0x5bd29f0c set_trace_device -EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create -EXPORT_SYMBOL vmlinux 0x5be158a5 pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0x5be57660 netdev_warn -EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5c03b699 dev_activate -EXPORT_SYMBOL vmlinux 0x5c0b99e1 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x5c188171 security_path_mknod -EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x5c2f1c8f xfrm_state_update -EXPORT_SYMBOL vmlinux 0x5c3ac0d7 touch_buffer -EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c3f9b61 napi_disable -EXPORT_SYMBOL vmlinux 0x5c4a892b __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x5c4c8d4b d_obtain_root -EXPORT_SYMBOL vmlinux 0x5c52af54 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x5c5c029f nf_hook_slow_list -EXPORT_SYMBOL vmlinux 0x5c637d83 devm_release_resource -EXPORT_SYMBOL vmlinux 0x5c845583 param_set_bint -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 0x5ca3afd9 ipmr_rule_default -EXPORT_SYMBOL vmlinux 0x5cb12805 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x5cbb831d tcf_idr_create -EXPORT_SYMBOL vmlinux 0x5cc91959 fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0x5cf2fbd5 wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cf5daf7 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0x5d22a64d xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0x5d2dc740 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x5d3bae9c textsearch_prepare -EXPORT_SYMBOL vmlinux 0x5d413c95 done_path_create -EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d5134a3 thread_group_exited -EXPORT_SYMBOL vmlinux 0x5d51cb3c kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x5d5443ae poll_freewait -EXPORT_SYMBOL vmlinux 0x5d5574dd _dev_printk -EXPORT_SYMBOL vmlinux 0x5d6328e3 acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0x5d7050f7 send_sig_mceerr -EXPORT_SYMBOL vmlinux 0x5d75fc24 tcf_qevent_destroy -EXPORT_SYMBOL vmlinux 0x5deb7920 tcp_time_wait -EXPORT_SYMBOL vmlinux 0x5df3b4bc tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict -EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e12d591 inode_get_bytes -EXPORT_SYMBOL vmlinux 0x5e15e965 backlight_device_set_brightness -EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue -EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e703651 sk_capable -EXPORT_SYMBOL vmlinux 0x5e72b26e simple_transaction_set -EXPORT_SYMBOL vmlinux 0x5e7c765d dquot_get_state -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 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5eb9a1de inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x5ec7cd97 sock_edemux -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed5ba86 file_path -EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk -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 0x5f138c2c generic_update_time -EXPORT_SYMBOL vmlinux 0x5f18d9cd vfio_pin_pages -EXPORT_SYMBOL vmlinux 0x5f1ba32a pci_find_capability -EXPORT_SYMBOL vmlinux 0x5f246e29 dev_mc_del_global -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 0x5f5441c8 __ubsan_handle_alignment_assumption -EXPORT_SYMBOL vmlinux 0x5f56663b rdmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x5f58890f ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package -EXPORT_SYMBOL vmlinux 0x5f98bdb6 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0x5f99383a ioread64_hi_lo -EXPORT_SYMBOL vmlinux 0x5f9f0519 vme_slot_num -EXPORT_SYMBOL vmlinux 0x5fa34a2f inet_dgram_connect -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 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 0x601f665f dm_io_client_create -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 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 0x6093ff7d ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x60bd478a try_module_get -EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -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 0x612802cf __dquot_free_space -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get -EXPORT_SYMBOL vmlinux 0x614faf15 fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0x6152b210 blk_sync_queue -EXPORT_SYMBOL vmlinux 0x6154bd75 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x6157135a vif_device_init -EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge -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 0x618d2d54 rt_dst_alloc -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 0x61b981c6 cont_write_begin -EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final -EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61f5ac4c inet_del_offload -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x621d20d7 neigh_resolve_output -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 0x6231fc70 lookup_one_unlocked -EXPORT_SYMBOL vmlinux 0x624b211b pcie_set_mps -EXPORT_SYMBOL vmlinux 0x6252d189 netlink_rcv_skb -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 0x6281286e netdev_crit -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 0x62af7dc8 simple_dir_operations -EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable -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 0x632f16dc netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x6339eaf6 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x633bae4a bio_uninit -EXPORT_SYMBOL vmlinux 0x634c6124 write_cache_pages -EXPORT_SYMBOL vmlinux 0x636257f7 get_ibs_caps -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 0x63b675d1 registered_fb -EXPORT_SYMBOL vmlinux 0x63b6c01d pci_set_mwi -EXPORT_SYMBOL vmlinux 0x63bf5392 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x63c1a3b7 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63dc742f clk_hw_get_clk -EXPORT_SYMBOL vmlinux 0x63e14849 iov_iter_get_pages_alloc -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 0x64194146 migrate_page_copy -EXPORT_SYMBOL vmlinux 0x642d6a26 fd_install -EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout -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 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64c1cf1d dev_mc_add -EXPORT_SYMBOL vmlinux 0x64d1e6e8 tty_port_close -EXPORT_SYMBOL vmlinux 0x64de641a tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0x64ece443 alloc_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x64ef59bd netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x65061183 phy_resume -EXPORT_SYMBOL vmlinux 0x6508b2e7 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -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 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x65464c16 clkdev_drop -EXPORT_SYMBOL vmlinux 0x65487097 __x86_indirect_thunk_rax -EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem -EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf -EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x658de8d1 __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x658ff81f xattr_supported_namespace -EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -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 0x65cf8831 ZSTD_decompress_usingDict -EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning -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 0x6600bd56 ip_frag_next -EXPORT_SYMBOL vmlinux 0x66155ec9 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0x661e99d5 iommu_dma_get_resv_regions -EXPORT_SYMBOL vmlinux 0x66222f36 jbd2_journal_grab_journal_head -EXPORT_SYMBOL vmlinux 0x6626afca down -EXPORT_SYMBOL vmlinux 0x662b3bad sk_reset_timer -EXPORT_SYMBOL vmlinux 0x663182c9 acpi_get_gpe_status -EXPORT_SYMBOL vmlinux 0x664016f2 pcim_pin_device -EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x666c3130 sock_sendmsg -EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x668b19a1 down_read -EXPORT_SYMBOL vmlinux 0x668c545d mmc_free_host -EXPORT_SYMBOL vmlinux 0x669f6155 __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0x66ae5e11 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup -EXPORT_SYMBOL vmlinux 0x66cca4f9 __x86_indirect_thunk_rcx -EXPORT_SYMBOL vmlinux 0x66de6ad6 pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0x66eaea54 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x670ecece __x86_indirect_thunk_rbx -EXPORT_SYMBOL vmlinux 0x6710dab5 follow_up -EXPORT_SYMBOL vmlinux 0x671810f3 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid -EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 -EXPORT_SYMBOL vmlinux 0x67377135 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x6747e2b0 unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x676635cf pci_release_region -EXPORT_SYMBOL vmlinux 0x67696735 complete_request_key -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 0x67a1d27a xsk_tx_peek_release_desc_batch -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read -EXPORT_SYMBOL vmlinux 0x67cb3dc3 input_release_device -EXPORT_SYMBOL vmlinux 0x67dd1c04 skb_dump -EXPORT_SYMBOL vmlinux 0x67e368a6 __nla_reserve -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 0x6863ecba inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x68a7e614 get_task_cred -EXPORT_SYMBOL vmlinux 0x68a869f3 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x68c4b824 cpumask_any_but -EXPORT_SYMBOL vmlinux 0x68d4dd4f devm_clk_put -EXPORT_SYMBOL vmlinux 0x68e586a6 alloc_pages_vma -EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s -EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0x6911e45d dev_set_mtu -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 0x6941e045 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x694cc2e7 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x69557b24 __netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x69585523 __ksize -EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x697731ae pcie_get_mps -EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad -EXPORT_SYMBOL vmlinux 0x69808e95 devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 -EXPORT_SYMBOL vmlinux 0x699d22b2 d_add -EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy -EXPORT_SYMBOL vmlinux 0x69ae8dbc ipv6_dev_find -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 0x69de1b71 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -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 0x6a362f0f dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0x6a3e060d mount_subtree -EXPORT_SYMBOL vmlinux 0x6a401a24 ip6_mtu -EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table -EXPORT_SYMBOL vmlinux 0x6a537a6c netif_tx_wake_queue -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 0x6a736e66 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x6a79393e sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x6a878de1 bio_advance -EXPORT_SYMBOL vmlinux 0x6a8a7a19 csum_and_copy_from_iter -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 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 0x6b0f6ab3 __mdiobus_read -EXPORT_SYMBOL vmlinux 0x6b10bee1 _copy_to_user -EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b78b9b9 ip_getsockopt -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 0x6ba52cd5 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x6bbd1533 d_mark_dontcache -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc8bdf5 kernel_accept -EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible -EXPORT_SYMBOL vmlinux 0x6bd7017f skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method -EXPORT_SYMBOL vmlinux 0x6bfcd491 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x6c1442fa inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0x6c17e447 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x6c1f8022 dquot_claim_space_nodirty -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 0x6c2f18ce mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0x6c3c1b9b simple_pin_fs -EXPORT_SYMBOL vmlinux 0x6c3f9608 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x6c404748 dentry_open -EXPORT_SYMBOL vmlinux 0x6c576e40 nexthop_res_grp_activity_update -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 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 0x6c9cf611 sock_set_reuseport -EXPORT_SYMBOL vmlinux 0x6caadade md_error -EXPORT_SYMBOL vmlinux 0x6cad397b tcp_create_openreq_child -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 0x6cf5a469 dma_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x6d1b58a7 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x6d231cf0 tcf_action_dump_1 -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 0x6d361b17 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x6d3f9fda dma_supported -EXPORT_SYMBOL vmlinux 0x6d544437 iput -EXPORT_SYMBOL vmlinux 0x6d549091 migrate_vma_pages -EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x6d6a3ab9 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d8fe0c6 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x6d95fde1 pid_task -EXPORT_SYMBOL vmlinux 0x6d975455 tcp_sock_set_user_timeout -EXPORT_SYMBOL vmlinux 0x6d9eb03b sync_blockdev -EXPORT_SYMBOL vmlinux 0x6dbb1fd3 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x6dbe3f7b sk_error_report -EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null -EXPORT_SYMBOL vmlinux 0x6dd04a1d gro_cells_init -EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header -EXPORT_SYMBOL vmlinux 0x6dec1a94 con_is_visible -EXPORT_SYMBOL vmlinux 0x6dee0768 tty_port_hangup -EXPORT_SYMBOL vmlinux 0x6df149e5 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df762d2 nf_log_trace -EXPORT_SYMBOL vmlinux 0x6dfa03c8 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x6e136e44 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x6e38ea2e pnp_device_attach -EXPORT_SYMBOL vmlinux 0x6e43d13d rproc_free -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 0x6e6476e7 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0x6e6b9a82 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e7ba8a1 page_mapping -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea30f56 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x6ea7575d acpi_dispatch_gpe -EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6eca88ab vlan_for_each -EXPORT_SYMBOL vmlinux 0x6ee4c535 amd_iommu_domain_set_gcr3 -EXPORT_SYMBOL vmlinux 0x6eec4dac dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0x6efdcc8b generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x6f169f70 genphy_handle_interrupt_no_ack -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 0x6f67ebb3 __traceiter_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func -EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats -EXPORT_SYMBOL vmlinux 0x6f93c006 __inet_hash -EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work -EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fde85d5 dev_add_offload -EXPORT_SYMBOL vmlinux 0x6fe97595 tcp_peek_len -EXPORT_SYMBOL vmlinux 0x6ffb26aa tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x6ffb51ab rtnl_notify -EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x7008bd27 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x700d86a1 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x7018a005 mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0x701ba7bb pin_user_pages_remote -EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier -EXPORT_SYMBOL vmlinux 0x70271a63 sock_bindtoindex -EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x7038376c __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0x7040fff9 rtc_lock -EXPORT_SYMBOL vmlinux 0x705023b4 pnp_release_card_device -EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x707cc1eb rproc_coredump_set_elf_info -EXPORT_SYMBOL vmlinux 0x7081bc31 dma_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x70aa6c73 filp_open -EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x70b87905 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x70d8a270 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x70e2900c alloc_pages -EXPORT_SYMBOL vmlinux 0x71059069 inet_release -EXPORT_SYMBOL vmlinux 0x710b7a06 register_qdisc -EXPORT_SYMBOL vmlinux 0x7113cbd3 phy_device_register -EXPORT_SYMBOL vmlinux 0x711b7fe5 configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x7164bb3a kthread_create_on_cpu -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 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71a72b73 __pagevec_release -EXPORT_SYMBOL vmlinux 0x71c7acd1 param_set_hexint -EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x71e18ff1 register_cdrom -EXPORT_SYMBOL vmlinux 0x71f69a8e md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x720cd8e5 block_write_full_page -EXPORT_SYMBOL vmlinux 0x72160101 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x721df1ce unregister_nexthop_notifier -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 0x7238959c padata_do_serial -EXPORT_SYMBOL vmlinux 0x7239071d stop_tty -EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x7259bbe2 netdev_printk -EXPORT_SYMBOL vmlinux 0x7265748f vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x7272bd12 locks_free_lock -EXPORT_SYMBOL vmlinux 0x727f7095 no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72d79d83 pgdir_shift -EXPORT_SYMBOL vmlinux 0x72e598f0 proto_register -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x73058f06 vme_irq_generate -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x7319063c tty_port_destroy -EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal -EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x7359b289 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay -EXPORT_SYMBOL vmlinux 0x735c83f5 kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x7360f172 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0x736f5b91 nonseekable_open -EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x739e976e __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x73a4822e scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73b87972 tcp_connect -EXPORT_SYMBOL vmlinux 0x73bc5522 kobject_add -EXPORT_SYMBOL vmlinux 0x73bda042 km_new_mapping -EXPORT_SYMBOL vmlinux 0x73c36f9e bioset_init -EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable -EXPORT_SYMBOL vmlinux 0x73e1701c from_kprojid -EXPORT_SYMBOL vmlinux 0x73e7646b inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi -EXPORT_SYMBOL vmlinux 0x740a75ac pcibios_resource_to_bus -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 0x74285935 inet_offloads -EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 -EXPORT_SYMBOL vmlinux 0x74400ffb update_region -EXPORT_SYMBOL vmlinux 0x744ead22 __ip_dev_find -EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x7456b792 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x7457710b mmc_can_gpio_ro -EXPORT_SYMBOL vmlinux 0x74729f0c xfrm_policy_walk -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 0x74aecd39 netdev_name_node_alt_create -EXPORT_SYMBOL vmlinux 0x74b8b317 iunique -EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss -EXPORT_SYMBOL vmlinux 0x74bd8d6d scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x74bea6d2 __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c815b9 vme_register_bridge -EXPORT_SYMBOL vmlinux 0x74cbfb0c unlock_page_memcg -EXPORT_SYMBOL vmlinux 0x74e59e0b flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x75066bab inode_update_time -EXPORT_SYMBOL vmlinux 0x7508132f blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x7528faab reuseport_alloc -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 0x754d539c strlen -EXPORT_SYMBOL vmlinux 0x75551955 vfs_getattr -EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic -EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x758d776a __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x75943e25 i8253_lock -EXPORT_SYMBOL vmlinux 0x75af713e unregister_binfmt -EXPORT_SYMBOL vmlinux 0x75b31455 nf_log_set -EXPORT_SYMBOL vmlinux 0x75bc04e1 km_report -EXPORT_SYMBOL vmlinux 0x75bda1ae pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75c43fb9 devm_ioport_map -EXPORT_SYMBOL vmlinux 0x75c6cc5b pci_prepare_to_sleep -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 0x7618af39 hdmi_infoframe_check -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 0x766a0927 mempool_alloc_pages -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 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 0x76b39cc0 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x76bed5f9 ipv4_mtu -EXPORT_SYMBOL vmlinux 0x76c30af9 unregister_nls -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76daff0f sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x76eced09 seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0x76ef60e0 flow_rule_match_ipv6_addrs -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 0x76fd5db2 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0x770289cd passthru_features_check -EXPORT_SYMBOL vmlinux 0x770adc93 touchscreen_parse_properties -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 0x776ca93a __clzdi2 -EXPORT_SYMBOL vmlinux 0x777a47ff override_creds -EXPORT_SYMBOL vmlinux 0x777d53f7 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x7793d916 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77be46b2 config_item_put -EXPORT_SYMBOL vmlinux 0x77c863a8 tty_unlock -EXPORT_SYMBOL vmlinux 0x77d36751 input_match_device_id -EXPORT_SYMBOL vmlinux 0x77d7a444 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -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 0x781c07c4 rproc_detach -EXPORT_SYMBOL vmlinux 0x7834defd vfio_group_unpin_pages -EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x78535b57 napi_build_skb -EXPORT_SYMBOL vmlinux 0x785d964e bdev_read_only -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x7889868f devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x7889b9c6 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x7899ec54 dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -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 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 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 0x791b5f54 tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0x792c0b70 logfc -EXPORT_SYMBOL vmlinux 0x795a5bdb kthread_bind -EXPORT_SYMBOL vmlinux 0x7970619a devfreq_update_status -EXPORT_SYMBOL vmlinux 0x79709fca d_instantiate_new -EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin -EXPORT_SYMBOL vmlinux 0x79754099 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x797d8d3f frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x797dafb0 kernel_write -EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x7987d75a skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0x798ad097 __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x798f46a0 vga_switcheroo_get_client_state -EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79c529f3 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x79c7414f eth_gro_receive -EXPORT_SYMBOL vmlinux 0x79cdb8a1 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x79df9633 ioremap_encrypted -EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug -EXPORT_SYMBOL vmlinux 0x79f3d6b0 secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute -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 0x7a53a06d flow_indr_dev_exists -EXPORT_SYMBOL vmlinux 0x7a710f29 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x7a88da87 iosf_mbi_write -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a9b5ca5 of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa3321c xfrm_state_walk_done -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 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7ae8cad7 neigh_update -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 0x7b0aeebd tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x7b17f378 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x7b30073e mmc_start_request -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 0x7b524afd key_validate -EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b5d29b5 pci_match_id -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 0x7b8bfdd1 cdrom_release -EXPORT_SYMBOL vmlinux 0x7b8cf03a __neigh_event_send -EXPORT_SYMBOL vmlinux 0x7ba1553e __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x7baa9ae1 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write -EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bd2ac2e xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0x7bd5d247 tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0x7bd86fa3 I_BDEV -EXPORT_SYMBOL vmlinux 0x7bdfd4e0 migrate_page -EXPORT_SYMBOL vmlinux 0x7bf6bbdf phy_get_c45_ids -EXPORT_SYMBOL vmlinux 0x7c1093d1 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c25e621 blk_mq_init_queue -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 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c478289 vga_switcheroo_client_probe_defer -EXPORT_SYMBOL vmlinux 0x7c4e7cdc fs_lookup_param -EXPORT_SYMBOL vmlinux 0x7c6959c3 __scm_destroy -EXPORT_SYMBOL vmlinux 0x7c8674c6 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -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 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 0x7ce908ff skb_put -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 0x7cfa337b is_nd_dax -EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -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 0x7d3055d1 mount_single -EXPORT_SYMBOL vmlinux 0x7d3b627b __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x7d3ea0c5 sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d51328d del_gendisk -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 0x7d7a1d8d tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0x7d900905 tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0x7dad6917 alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7db475aa xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x7dca5f20 cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert -EXPORT_SYMBOL vmlinux 0x7dd294af tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe -EXPORT_SYMBOL vmlinux 0x7dd7b4bc __module_get -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 0x7dfaa577 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x7e220220 __skb_get_hash -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 0x7e457276 sg_miter_next -EXPORT_SYMBOL vmlinux 0x7e491e4c pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x7e4d00fc devm_request_resource -EXPORT_SYMBOL vmlinux 0x7e51731c tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x7e599e88 km_policy_notify -EXPORT_SYMBOL vmlinux 0x7e64828a pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x7e7bcf26 acpi_map_cpu -EXPORT_SYMBOL vmlinux 0x7e8145df input_set_poll_interval -EXPORT_SYMBOL vmlinux 0x7e8c70ae kthread_create_worker -EXPORT_SYMBOL vmlinux 0x7e92606b blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0x7ea32741 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x7ebc835d rtnl_set_sk_err -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 0x7f14ac73 config_group_init -EXPORT_SYMBOL vmlinux 0x7f177490 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f52071a net_dim -EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table -EXPORT_SYMBOL vmlinux 0x7f668135 dquot_release -EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7fa2831c mdiobus_register_device -EXPORT_SYMBOL vmlinux 0x7fbe602c nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x7fcc02f9 mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0x7fde38c7 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe66a2b phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0x7ffd4068 mmc_retune_pause -EXPORT_SYMBOL vmlinux 0x800313dd xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x800af0c9 nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0x8012210c kern_unmount_array -EXPORT_SYMBOL vmlinux 0x801e8735 single_open -EXPORT_SYMBOL vmlinux 0x801ed23a skb_clone -EXPORT_SYMBOL vmlinux 0x80370177 __dec_node_page_state -EXPORT_SYMBOL vmlinux 0x80380aa9 icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x804af87c wrmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x805a2135 qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0x806dbf5d pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0x808131e7 flow_indr_dev_unregister -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 0x80a45e42 kernel_listen -EXPORT_SYMBOL vmlinux 0x80a51076 reuseport_has_conns_set -EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x80a7c730 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x80ac0823 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x80afcc8e __brelse -EXPORT_SYMBOL vmlinux 0x80b43a16 __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0x80bd8420 pci_irq_get_affinity -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 0x80d9d700 page_symlink -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 0x80f4c533 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x80f8cf05 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x81071cd2 dev_set_threaded -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 0x8128041d __devm_release_region -EXPORT_SYMBOL vmlinux 0x81363124 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x814705ab blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0x814b55f3 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x815a5555 __lock_sock_fast -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page -EXPORT_SYMBOL vmlinux 0x816347c6 agp_device_command -EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0x8185baa8 __alloc_pages -EXPORT_SYMBOL vmlinux 0x81979bbc unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq -EXPORT_SYMBOL vmlinux 0x81b318a7 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x81b3863c ipv6_chk_addr_and_flags -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 0x81eb35be splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x8200e119 vm_map_ram -EXPORT_SYMBOL vmlinux 0x8215e89c devm_register_netdev -EXPORT_SYMBOL vmlinux 0x821c1d87 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x823c19ea iosf_mbi_unregister_pmic_bus_access_notifier_unlocked -EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec -EXPORT_SYMBOL vmlinux 0x8272851f thaw_super -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82932fbb build_skb -EXPORT_SYMBOL vmlinux 0x82984c59 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x82a2408f cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0x82b84a2b netlink_unicast -EXPORT_SYMBOL vmlinux 0x82b8a27f pipe_lock -EXPORT_SYMBOL vmlinux 0x82ba801e ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82cc0400 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x82e7b9d1 page_pool_alloc_frag -EXPORT_SYMBOL vmlinux 0x82e9f82f serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync -EXPORT_SYMBOL vmlinux 0x830b8ebf __SCK__tp_func_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x8314ba9d eth_mac_addr -EXPORT_SYMBOL vmlinux 0x83253110 param_ops_bool -EXPORT_SYMBOL vmlinux 0x83453077 tcp_filter -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 0x835f20dd sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x838dd702 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x839670ab dm_put_device -EXPORT_SYMBOL vmlinux 0x83c75474 skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0x83cfd274 __SCK__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x83f37eb4 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x83f574c1 vga_switcheroo_register_handler -EXPORT_SYMBOL vmlinux 0x83f9083e xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x83fe8d5a dma_resv_fini -EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free -EXPORT_SYMBOL vmlinux 0x840cd5de follow_down -EXPORT_SYMBOL vmlinux 0x841357d6 udp6_seq_ops -EXPORT_SYMBOL vmlinux 0x8413b028 fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0x84280f61 tty_do_resize -EXPORT_SYMBOL vmlinux 0x842c8e9d ioread16 -EXPORT_SYMBOL vmlinux 0x8453a02d nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x8453dc2d kill_pgrp -EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0x8461152c netif_napi_add -EXPORT_SYMBOL vmlinux 0x84627c3b __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x8472327e tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy -EXPORT_SYMBOL vmlinux 0x848a72fd rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 -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 0x84c889c4 set_anon_super -EXPORT_SYMBOL vmlinux 0x84d8db29 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x84ead7b7 __skb_recv_udp -EXPORT_SYMBOL vmlinux 0x851375ea phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x8522d6bc strncpy_from_user -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 0x8565084c blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x856a1cff register_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x856ca32b get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x85ad48ba __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85bb1084 unregister_mii_timestamper -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 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f8e3bc dev_remove_pack -EXPORT_SYMBOL vmlinux 0x85fd3cd5 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x860287a1 seq_path -EXPORT_SYMBOL vmlinux 0x8618b7d5 devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x864da8a1 max8998_update_reg -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 0x86c1ebed eth_header_cache -EXPORT_SYMBOL vmlinux 0x86c7272b iosf_mbi_read -EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant -EXPORT_SYMBOL vmlinux 0x86ece613 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x86f27420 iosf_mbi_block_punit_i2c_access -EXPORT_SYMBOL vmlinux 0x86f69ee6 xfrm6_rcv_tnl -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 0x8716ab25 jbd2_journal_finish_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x874158a5 generic_file_fsync -EXPORT_SYMBOL vmlinux 0x87572576 balance_dirty_pages_ratelimited -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 0x8790daac __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x8792f605 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x8798cc46 nexthop_bucket_set_hw_flags -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 0x87d70881 amd_iommu_domain_direct_map -EXPORT_SYMBOL vmlinux 0x87db19e3 get_thermal_instance -EXPORT_SYMBOL vmlinux 0x87e6671b vga_client_register -EXPORT_SYMBOL vmlinux 0x87f198c0 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x87f22c0a pci_remove_bus -EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit -EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x882c5395 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x882f733f tcp_poll -EXPORT_SYMBOL vmlinux 0x8857d3ac sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x885bb07b __breadahead -EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x888d92b0 flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x88a5bfa7 file_ns_capable -EXPORT_SYMBOL vmlinux 0x88aa82f8 pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x88cff69f md_set_array_sectors -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 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 0x893ec609 padata_do_parallel -EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x8944949a cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x8944cded inet_sendmsg -EXPORT_SYMBOL vmlinux 0x8946aece phy_attached_info_irq -EXPORT_SYMBOL vmlinux 0x894e4304 clk_bulk_get -EXPORT_SYMBOL vmlinux 0x8962c793 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x89638baf fs_param_is_enum -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 0x89b6777c mr_fill_mroute -EXPORT_SYMBOL vmlinux 0x89d007f0 amd_iommu_complete_ppr -EXPORT_SYMBOL vmlinux 0x89d25272 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x89ee11d4 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x89f872b0 __skb_ext_del -EXPORT_SYMBOL vmlinux 0x89fec3fd sock_create -EXPORT_SYMBOL vmlinux 0x8a0020c5 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x8a0faa67 iov_iter_npages -EXPORT_SYMBOL vmlinux 0x8a1b0686 mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0x8a23e3a5 kthread_stop -EXPORT_SYMBOL vmlinux 0x8a25315a t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x8a2b8d1d __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x8a35b432 sme_me_mask -EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a4a2dd8 phy_loopback -EXPORT_SYMBOL vmlinux 0x8a528285 pci_pme_active -EXPORT_SYMBOL vmlinux 0x8a5e7840 netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0x8a66a344 kern_path_create -EXPORT_SYMBOL vmlinux 0x8a6c7139 acpi_mask_gpe -EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a8b8ddf security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x8a95aabe sock_no_linger -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aa46017 udp_read_sock -EXPORT_SYMBOL vmlinux 0x8ab34802 tcp_seq_next -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 0x8ae8aa3d adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -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 0x8b24f627 submit_bio_wait -EXPORT_SYMBOL vmlinux 0x8b2fc98c unregister_console -EXPORT_SYMBOL vmlinux 0x8b46f3be vfs_rename -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 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b67f08f crypto_sha256_finup -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 0x8b9ea582 ZSTD_copyDCtx -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 0x8bf2ab15 dquot_transfer -EXPORT_SYMBOL vmlinux 0x8c076e73 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x8c0c97a9 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x8c124f80 dst_init -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 0x8c683fcd posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x8c6e84eb devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x8c70e8c2 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x8c735474 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x8c7c4427 input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0x8c806d91 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x8c8266d7 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c9a68b6 __mdiobus_register -EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error -EXPORT_SYMBOL vmlinux 0x8caebe48 __udp_disconnect -EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid -EXPORT_SYMBOL vmlinux 0x8cb6446e neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x8cb738c8 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x8cbec3be skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8cda4ab8 bio_kmalloc -EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8cef5d6a __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x8d00375e elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0x8d0d1792 sock_no_listen -EXPORT_SYMBOL vmlinux 0x8d0f9409 kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0x8d2ee065 napi_enable -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d57b12e unpin_user_page -EXPORT_SYMBOL vmlinux 0x8d60652c __SCT__tp_func_mmap_lock_released -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 0x8d81cb20 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling -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 0x8df9dd10 guid_null -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 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 0x8e435dea bh_submit_read -EXPORT_SYMBOL vmlinux 0x8e460029 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x8e59ffa1 nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0x8e5daf41 tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0x8e663d0f zalloc_cpumask_var_node -EXPORT_SYMBOL vmlinux 0x8e733724 ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0x8e7e4b0c file_remove_privs -EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -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 0x8eaf2a5f vga_switcheroo_unregister_handler -EXPORT_SYMBOL vmlinux 0x8ed8c9d5 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x8ef4a068 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -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 0x8f3e0e1f xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x8f549727 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x8f60af3a in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x8f6b47da ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x8f7886eb skb_queue_head -EXPORT_SYMBOL vmlinux 0x8f7d0f84 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x8f80bf11 acpi_install_gpe_raw_handler -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 0x8f9dc71d inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find -EXPORT_SYMBOL vmlinux 0x8fafa5e0 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x8fcb3779 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x8fd4064c mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x8fdb0752 abort_creds -EXPORT_SYMBOL vmlinux 0x8fecf3ea phy_advertise_supported -EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit -EXPORT_SYMBOL vmlinux 0x8ffba8a0 sock_no_sendpage -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 0x90166cbe skb_tx_error -EXPORT_SYMBOL vmlinux 0x9018e07d rproc_elf_find_loaded_rsc_table -EXPORT_SYMBOL vmlinux 0x901b8305 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x902821b0 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x9028469b alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get -EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy -EXPORT_SYMBOL vmlinux 0x9039ccb7 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x904354ef pci_iounmap -EXPORT_SYMBOL vmlinux 0x90492404 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x9049e720 try_to_release_page -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 0x906218c2 dquot_free_inode -EXPORT_SYMBOL vmlinux 0x907ea00e set_security_override -EXPORT_SYMBOL vmlinux 0x909001d0 rfkill_alloc -EXPORT_SYMBOL vmlinux 0x909aeee1 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x90b630c0 __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x90bf7965 request_key_rcu -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 0x90fbf566 dev_get_flags -EXPORT_SYMBOL vmlinux 0x9108e4e6 skb_seq_read -EXPORT_SYMBOL vmlinux 0x910be6ce mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0x9111afc2 kern_unmount -EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc -EXPORT_SYMBOL vmlinux 0x912eeba8 __scm_send -EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb -EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x9176145b acpi_install_global_event_handler -EXPORT_SYMBOL vmlinux 0x9186fc0e ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x91963dc0 pldmfw_op_pci_match_record -EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 -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 0x91b2142b vfs_tmpfile -EXPORT_SYMBOL vmlinux 0x91be92b6 udp_pre_connect -EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91c0bf02 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x91c4cbbf key_unlink -EXPORT_SYMBOL vmlinux 0x91ce8d57 io_uring_get_socket -EXPORT_SYMBOL vmlinux 0x91d05151 skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0x91ea71d9 pci_enable_wake -EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x91fc81ba sock_init_data -EXPORT_SYMBOL vmlinux 0x920901c4 current_in_userns -EXPORT_SYMBOL vmlinux 0x921e5dac dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x9237e9a0 watchdog_register_governor -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x923b7156 tcp_disconnect -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 0x9270df5b vm_map_pages -EXPORT_SYMBOL vmlinux 0x9274e0d7 ip_do_fragment -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 0x92a51e56 acpi_debug_print_raw -EXPORT_SYMBOL vmlinux 0x92a8cd40 md_reload_sb -EXPORT_SYMBOL vmlinux 0x92b95501 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table -EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq -EXPORT_SYMBOL vmlinux 0x92e1dd1e xp_dma_map -EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout -EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92f068f7 param_set_ullong -EXPORT_SYMBOL vmlinux 0x92f23554 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x92f466ba security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x92fe78e7 do_splice_direct -EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9303b5ef udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x9322f5d7 i8042_install_filter -EXPORT_SYMBOL vmlinux 0x933f4d4f udp_sendmsg -EXPORT_SYMBOL vmlinux 0x934b6f80 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x93518bbe setattr_prepare -EXPORT_SYMBOL vmlinux 0x93538397 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x93553e85 freeze_bdev -EXPORT_SYMBOL vmlinux 0x935db005 mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x937dbcda is_subdir -EXPORT_SYMBOL vmlinux 0x93832e1f pnp_stop_dev -EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93a8b92d nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93c3e1ae ip_ct_attach -EXPORT_SYMBOL vmlinux 0x93d1ac76 pci_map_rom -EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all -EXPORT_SYMBOL vmlinux 0x93e079e8 inet_frags_fini -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 0x94049537 bmap -EXPORT_SYMBOL vmlinux 0x941b7fa7 agp_collect_device_status -EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x943143f9 tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0x943b78c3 __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages -EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -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 0x94e50ad4 call_fib_notifier -EXPORT_SYMBOL vmlinux 0x94eaa7d7 netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x952e02b7 iov_iter_pipe -EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc -EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x955d3fd3 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x957a003d xp_alloc -EXPORT_SYMBOL vmlinux 0x958bfb47 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x959e5668 tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table -EXPORT_SYMBOL vmlinux 0x95b070f2 __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x95bafb58 eth_header_parse -EXPORT_SYMBOL vmlinux 0x95cf12e1 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x95e39339 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x96050dc8 __next_node_in -EXPORT_SYMBOL vmlinux 0x9614efd4 page_pool_update_nid -EXPORT_SYMBOL vmlinux 0x96155092 filemap_check_errors -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 0x962c4977 clkdev_add -EXPORT_SYMBOL vmlinux 0x9631116f phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x96381336 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x964cebff scsi_add_device -EXPORT_SYMBOL vmlinux 0x9657be0e set_user_nice -EXPORT_SYMBOL vmlinux 0x96683b50 rtnl_nla_parse_ifinfomsg -EXPORT_SYMBOL vmlinux 0x9676a9e1 _dev_crit -EXPORT_SYMBOL vmlinux 0x967b17d2 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x96848186 scnprintf -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 0x96c54699 udp_disconnect -EXPORT_SYMBOL vmlinux 0x96c81d48 mmc_calc_max_discard -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 0x96e5d30f gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x96eab78b iosf_mbi_modify -EXPORT_SYMBOL vmlinux 0x96ee455d sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x970c00fc vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x9721a882 dev_change_flags -EXPORT_SYMBOL vmlinux 0x972d67ec audit_log -EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x97546e49 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x976047c0 blkdev_compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x97651e6c vmemmap_base -EXPORT_SYMBOL vmlinux 0x9770fb43 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x978d853a nf_ct_attach -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 0x97e2789a commit_creds -EXPORT_SYMBOL vmlinux 0x97fe0be3 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x9805bcca blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x981959bd cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x98382735 xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0x985371e8 fb_find_mode -EXPORT_SYMBOL vmlinux 0x987d1ffa bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0x988475c2 __i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x989fa09a scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98d25ba2 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x98d612ed tty_port_put -EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98ef8c60 mfd_add_devices -EXPORT_SYMBOL vmlinux 0x98f60b50 xfrm_stateonly_find -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 0x992ca060 ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x992ea095 dcb_getapp -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x99564549 sock_register -EXPORT_SYMBOL vmlinux 0x995d89a3 update_devfreq -EXPORT_SYMBOL vmlinux 0x9973ebd0 mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x9984716b scsicam_bios_param -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 0x99bdbb24 udp_gro_receive -EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -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 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 0x9a0ad686 dev_set_alias -EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x9a1af7c2 tcp_sendmsg -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 0x9a3c6127 netif_carrier_on -EXPORT_SYMBOL vmlinux 0x9a509afc devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a6d511d ps2_handle_response -EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x9a774b00 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x9a87b70f lru_cache_add -EXPORT_SYMBOL vmlinux 0x9a8f86d6 phy_trigger_machine -EXPORT_SYMBOL vmlinux 0x9a9b1de0 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ab43c9b mmc_release_host -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 0x9b061510 ipv6_sock_mc_drop -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 0x9b2ec52f backlight_device_register -EXPORT_SYMBOL vmlinux 0x9b3254f5 bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b35699f netif_carrier_off -EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b4d8e5a dev_change_carrier -EXPORT_SYMBOL vmlinux 0x9b5e6d29 iterate_dir -EXPORT_SYMBOL vmlinux 0x9b65a7ef skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x9b74865f blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x9b9eb858 unload_nls -EXPORT_SYMBOL vmlinux 0x9ba9eda7 pnp_device_detach -EXPORT_SYMBOL vmlinux 0x9bb4e317 ioread32be -EXPORT_SYMBOL vmlinux 0x9bc74795 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x9bc78e7a dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x9bcffbc0 unpin_user_page_range_dirty_lock -EXPORT_SYMBOL vmlinux 0x9bd79a2c pnp_activate_dev -EXPORT_SYMBOL vmlinux 0x9be87b1d d_obtain_alias -EXPORT_SYMBOL vmlinux 0x9bf2f8b6 qdisc_reset -EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node -EXPORT_SYMBOL vmlinux 0x9c307fab dev_get_mac_address -EXPORT_SYMBOL vmlinux 0x9c458a6a acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0x9c65b78a csum_partial_copy_nocheck -EXPORT_SYMBOL vmlinux 0x9c7489fd mark_info_dirty -EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9c88be5b sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0x9c8e5dd9 rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0x9c949c54 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x9ca1c7a7 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9caf2dde ip_setsockopt -EXPORT_SYMBOL vmlinux 0x9cb986f2 vmalloc_base -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 0x9ceeea6c make_kprojid -EXPORT_SYMBOL vmlinux 0x9d099a39 acpi_remove_gpe_handler -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d109ec4 path_is_under -EXPORT_SYMBOL vmlinux 0x9d218f00 phy_error -EXPORT_SYMBOL vmlinux 0x9d261356 tcp_prot -EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d34ec27 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x9d3529ad ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0x9d432cbc d_find_any_alias -EXPORT_SYMBOL vmlinux 0x9d5f547a mfd_remove_devices_late -EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x9d671411 register_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x9d6b2769 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x9d70541a native_save_fl -EXPORT_SYMBOL vmlinux 0x9d7d8811 kfree_skb_reason -EXPORT_SYMBOL vmlinux 0x9d8bfada netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context -EXPORT_SYMBOL vmlinux 0x9d98acd9 __SCK__tp_func_kmalloc_node -EXPORT_SYMBOL vmlinux 0x9dbca380 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x9dd5caf9 ppp_dev_name -EXPORT_SYMBOL vmlinux 0x9de4b222 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x9de543a6 __neigh_create -EXPORT_SYMBOL vmlinux 0x9deadca8 inet_csk_accept -EXPORT_SYMBOL vmlinux 0x9e0b67c1 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e0cc27a __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 -EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0x9e2a9924 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x9e387bd9 mdio_device_remove -EXPORT_SYMBOL vmlinux 0x9e488aeb sock_no_connect -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -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 0x9e9eab95 devcgroup_check_permission -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup -EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ec801d3 xfrm_unregister_km -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 0x9ef0eee7 __SCT__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x9ef49c0b skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0x9f24d1e3 netdev_rx_csum_fault -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 0x9f6781b7 follow_down_one -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 0x9faede75 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x9fafea1d inet_put_port -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 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa00f9c9c sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xa0159382 ip_options_compile -EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0xa02010f5 netif_device_attach -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 0xa032cdde rproc_add_subdev -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 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 0xa08e331c mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa09daea0 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0ba5b59 fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0xa0d6f3ba xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0dae638 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa104adb4 iov_iter_xarray -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa1282839 pci_disable_msix -EXPORT_SYMBOL vmlinux 0xa12e55cd inet_add_offload -EXPORT_SYMBOL vmlinux 0xa13e780a gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xa17aa6e3 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xa18145c3 get_tree_single -EXPORT_SYMBOL vmlinux 0xa19cd332 pci_pme_capable -EXPORT_SYMBOL vmlinux 0xa1ab4018 tcp_close -EXPORT_SYMBOL vmlinux 0xa1b8f8c1 qdisc_hash_del -EXPORT_SYMBOL vmlinux 0xa1bedd72 amd_iommu_pc_get_max_counters -EXPORT_SYMBOL vmlinux 0xa1c63a3f nd_pfn_validate -EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa211c114 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0xa22a96f7 current_task -EXPORT_SYMBOL vmlinux 0xa23137ea xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0xa23231f3 fqdir_exit -EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0xa232bfd9 udp_skb_destructor -EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort -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 0xa2655940 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0xa26b0264 pci_biosrom_size -EXPORT_SYMBOL vmlinux 0xa26d95e5 f_setown -EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa29414aa iget_failed -EXPORT_SYMBOL vmlinux 0xa2a01109 netif_rx_any_context -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 0xa2ce9d22 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0xa2d6a8fe kfree_skb_list -EXPORT_SYMBOL vmlinux 0xa2de2eab tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xa31767c7 ip_output -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 0xa37d50d8 bdi_alloc -EXPORT_SYMBOL vmlinux 0xa388c84b generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0xa38f21b9 amd_iommu_update_ga -EXPORT_SYMBOL vmlinux 0xa3964e98 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xa3b6c0d8 kobject_del -EXPORT_SYMBOL vmlinux 0xa3b71840 tty_write_room -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 0xa3e4f871 acpi_initialize_debugger -EXPORT_SYMBOL vmlinux 0xa3e9ec4b nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits -EXPORT_SYMBOL vmlinux 0xa3fdc6c8 n_tty_ioctl_helper -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 0xa43532e6 inet_add_protocol -EXPORT_SYMBOL vmlinux 0xa45ef93a jbd2__journal_start -EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction -EXPORT_SYMBOL vmlinux 0xa4818e0a blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xa498e92b __dev_get_by_name -EXPORT_SYMBOL vmlinux 0xa4ac4c3b register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4c48a97 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0xa4c6afdf kset_unregister -EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -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 0xa515e5f3 pci_bus_read_dev_vendor_id -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 0xa5688161 devfreq_update_target -EXPORT_SYMBOL vmlinux 0xa5844aba param_get_int -EXPORT_SYMBOL vmlinux 0xa586b2f7 tcf_block_put -EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock -EXPORT_SYMBOL vmlinux 0xa599bae8 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0xa5d25c36 pci_get_device -EXPORT_SYMBOL vmlinux 0xa5e55057 rdmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0xa5efa651 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xa61bd8b5 udp_seq_stop -EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa6213121 icmp6_send -EXPORT_SYMBOL vmlinux 0xa625559a __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xa6257a2f complete -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 0xa65a29a4 devm_request_threaded_irq -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 0xa6a2a0c4 iommu_get_dma_cookie -EXPORT_SYMBOL vmlinux 0xa6a7e6ee mdio_find_bus -EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi -EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector -EXPORT_SYMBOL vmlinux 0xa71d2e2c ioread16be -EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order -EXPORT_SYMBOL vmlinux 0xa72cfb7d ioremap_wt -EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa751b1a4 dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0xa7654ec0 __frontswap_load -EXPORT_SYMBOL vmlinux 0xa76e034e sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xa77a5a79 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa78a0a37 dev_change_proto_down -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 0xa7b0e37b napi_consume_skb -EXPORT_SYMBOL vmlinux 0xa7c23904 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0xa7c2f6f8 eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0xa7c99478 fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy -EXPORT_SYMBOL vmlinux 0xa7dd2c71 get_acl -EXPORT_SYMBOL vmlinux 0xa7e6564a __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa7f6dbd5 jbd2_journal_start_commit -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 0xa8181adf proc_dointvec -EXPORT_SYMBOL vmlinux 0xa81d3524 remove_proc_entry -EXPORT_SYMBOL vmlinux 0xa81debc1 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0xa8305a50 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xa836ba02 wrmsr_safe_regs -EXPORT_SYMBOL vmlinux 0xa839b997 netdev_err -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 0xa85d40ba pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa87fd7c0 vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0xa8873132 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0xa88cff32 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xa89549dd dev_get_by_name_rcu -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 0xa8aca20a sock_set_reuseaddr -EXPORT_SYMBOL vmlinux 0xa8c81468 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8da4e21 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present -EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -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 0xa93150c4 vfs_mkobj -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 0xa9644071 __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa969fddc xfrm_lookup -EXPORT_SYMBOL vmlinux 0xa97591ae loop_register_transfer -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa9785b49 cpu_core_map -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 0xa9df13a1 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction -EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf -EXPORT_SYMBOL vmlinux 0xaa1752fe pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa2088f4 fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0xaa248552 bio_clone_fast -EXPORT_SYMBOL vmlinux 0xaa2fcee9 rtc_add_group -EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception -EXPORT_SYMBOL vmlinux 0xaa44a707 cpumask_next -EXPORT_SYMBOL vmlinux 0xaa464f89 kernel_read -EXPORT_SYMBOL vmlinux 0xaa518a60 tc_setup_cb_replace -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 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 0xaab3f4fb twl6040_power -EXPORT_SYMBOL vmlinux 0xaacaf004 vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaad766c6 reuseport_add_sock -EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function -EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab01a772 do_clone_file_range -EXPORT_SYMBOL vmlinux 0xab23eaa6 dev_get_by_index -EXPORT_SYMBOL vmlinux 0xab2506a0 mmc_add_host -EXPORT_SYMBOL vmlinux 0xab2b2d90 rproc_boot -EXPORT_SYMBOL vmlinux 0xab35cec8 phy_get_internal_delay -EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init -EXPORT_SYMBOL vmlinux 0xab39deeb phy_write_paged -EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab40847f __bread_gfp -EXPORT_SYMBOL vmlinux 0xab5bfff6 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xab5fe01f skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off -EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc -EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init -EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin -EXPORT_SYMBOL vmlinux 0xab7096f9 set_bh_page -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xabd5a27d scsi_alloc_sgtables -EXPORT_SYMBOL vmlinux 0xabeb9438 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xabebfe69 kmem_cache_create -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 0xac0d2850 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0xac17802c netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac1c26b1 start_tty -EXPORT_SYMBOL vmlinux 0xac1c4313 kmalloc_caches -EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac34ea22 rproc_coredump_using_sections -EXPORT_SYMBOL vmlinux 0xac3bcd39 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac717bdb clk_get -EXPORT_SYMBOL vmlinux 0xac7ab837 _dev_err -EXPORT_SYMBOL vmlinux 0xac8cbb1a mmc_request_done -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 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 0xad0b276a pnp_start_dev -EXPORT_SYMBOL vmlinux 0xad0ec080 pci_dev_put -EXPORT_SYMBOL vmlinux 0xad1036a2 amd_iommu_activate_guest_mode -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 0xad4f2193 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0xad50a483 neigh_connected_output -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 0xad93ed3a security_inode_init_security -EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue -EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align -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 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL vmlinux 0xadc59a8e set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize -EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xadd35f4f __skb_pad -EXPORT_SYMBOL vmlinux 0xaddb6a59 import_single_range -EXPORT_SYMBOL vmlinux 0xaddd3b61 napi_get_frags -EXPORT_SYMBOL vmlinux 0xadde9ac9 mr_dump -EXPORT_SYMBOL vmlinux 0xade0841d pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xade20a9a __dev_get_by_index -EXPORT_SYMBOL vmlinux 0xadf02de1 vme_bus_type -EXPORT_SYMBOL vmlinux 0xadf0aaf1 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae14d781 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae36c97f clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0xae46c3f1 netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0xae5ce128 reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0xae682762 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xae8f34b4 __kfree_skb -EXPORT_SYMBOL vmlinux 0xae93d971 tcp_seq_stop -EXPORT_SYMBOL vmlinux 0xae9efc26 netpoll_setup -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 0xaeda2add genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0xaef7849c can_nice -EXPORT_SYMBOL vmlinux 0xaf0d4cea __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xaf354bbe cpu_tss_rw -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf4ea203 tcp_conn_request -EXPORT_SYMBOL vmlinux 0xaf5addbe mr_table_alloc -EXPORT_SYMBOL vmlinux 0xaf62d492 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0xaf720154 filemap_map_pages -EXPORT_SYMBOL vmlinux 0xafa0d05f key_task_permission -EXPORT_SYMBOL vmlinux 0xafa32685 acpi_register_debugger -EXPORT_SYMBOL vmlinux 0xafa38d6b sock_wmalloc -EXPORT_SYMBOL vmlinux 0xafad531e tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave -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 0xafd5ff2c amd_iommu_v2_supported -EXPORT_SYMBOL vmlinux 0xafd744c6 __x86_indirect_thunk_rbp -EXPORT_SYMBOL vmlinux 0xafd9a293 sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0xafe6a8ce __page_symlink -EXPORT_SYMBOL vmlinux 0xaffaabf1 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0xb00978c9 param_ops_hexint -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 0xb058ca07 dim_calc_stats -EXPORT_SYMBOL vmlinux 0xb05ab3da regset_get -EXPORT_SYMBOL vmlinux 0xb05b30ea generic_file_splice_read -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb06a469c dev_driver_string -EXPORT_SYMBOL vmlinux 0xb0868655 tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0xb093f0b7 kernel_sendpage -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0ad64ff md_write_end -EXPORT_SYMBOL vmlinux 0xb0b55742 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0xb0b96b0a simple_setattr -EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return -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 0xb106e2a8 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0xb119394a nf_log_register -EXPORT_SYMBOL vmlinux 0xb119abb7 tty_hangup -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 0xb138ebb5 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 -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 0xb19a5453 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug -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 0xb219d56c wbinvd_on_cpu -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 0xb24170cb vfs_statfs -EXPORT_SYMBOL vmlinux 0xb24af53b pci_set_master -EXPORT_SYMBOL vmlinux 0xb2601486 __SCT__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xb264167c alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xb289c901 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0xb294cef7 tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0xb29de606 poll_initwait -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 0xb2da8d7e blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0xb2dfdf3c kset_register -EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 -EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove -EXPORT_SYMBOL vmlinux 0xb2f9b305 vfs_create -EXPORT_SYMBOL vmlinux 0xb2fabf63 efi -EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 -EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken -EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb31454a9 inet_csk_reset_keepalive_timer -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 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb374ae9d inode_init_once -EXPORT_SYMBOL vmlinux 0xb3863a67 acpi_set_gpe_wake_mask -EXPORT_SYMBOL vmlinux 0xb3a26873 mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic -EXPORT_SYMBOL vmlinux 0xb3af1564 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0xb3cce7c9 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0xb3cf1919 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3d899a5 __ip_options_compile -EXPORT_SYMBOL vmlinux 0xb3e886fe get_user_pages -EXPORT_SYMBOL vmlinux 0xb3ece44a sock_alloc -EXPORT_SYMBOL vmlinux 0xb3f2cee0 __task_pid_nr_ns -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 0xb4081b65 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb42995ff kernel_getsockname -EXPORT_SYMBOL vmlinux 0xb4343171 d_alloc -EXPORT_SYMBOL vmlinux 0xb43ef9f8 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present -EXPORT_SYMBOL vmlinux 0xb468bceb nd_btt_probe -EXPORT_SYMBOL vmlinux 0xb47cca30 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0xb4809d55 agp_alloc_page_array -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 0xb4e4d6a9 proc_create -EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb51087fc finish_no_open -EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range -EXPORT_SYMBOL vmlinux 0xb536522b inet6_ioctl -EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xb54a3053 seq_bprintf -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -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 0xb5ab892d uv_undefined -EXPORT_SYMBOL vmlinux 0xb5adcb40 simple_getattr -EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5c5a56b skb_find_text -EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5fc1791 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0xb600c895 mmc_detect_change -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 0xb63797de xsk_tx_completed -EXPORT_SYMBOL vmlinux 0xb653c397 tcp_init_sock -EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xb65607d9 finish_swait -EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor -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 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 0xb6b8ff89 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0xb6c003e6 generic_write_checks -EXPORT_SYMBOL vmlinux 0xb6c2008e sk_wait_data -EXPORT_SYMBOL vmlinux 0xb6cd5c4c kobject_init -EXPORT_SYMBOL vmlinux 0xb6deaae8 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0xb6dfec24 skb_headers_offset_update -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 0xb70f49d6 sock_no_bind -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 0xb7593ddc iosf_mbi_unregister_pmic_bus_access_notifier -EXPORT_SYMBOL vmlinux 0xb75cbcb3 xen_alloc_unpopulated_pages -EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash -EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb79228e8 dev_trans_start -EXPORT_SYMBOL vmlinux 0xb79230bd set_anon_super_fc -EXPORT_SYMBOL vmlinux 0xb7a08611 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xb7afd0a4 __register_binfmt -EXPORT_SYMBOL vmlinux 0xb7b692da seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0xb7bfc6d6 dquot_destroy -EXPORT_SYMBOL vmlinux 0xb7c0f443 sort -EXPORT_SYMBOL vmlinux 0xb7c69f48 rproc_shutdown -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7e28066 register_netdevice -EXPORT_SYMBOL vmlinux 0xb7efbf6f tty_unregister_driver -EXPORT_SYMBOL vmlinux 0xb7f32545 inet_addr_type -EXPORT_SYMBOL vmlinux 0xb8060bb4 sock_recvmsg -EXPORT_SYMBOL vmlinux 0xb80ef701 tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0xb811129b generic_setlease -EXPORT_SYMBOL vmlinux 0xb82dcaf7 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue -EXPORT_SYMBOL vmlinux 0xb851c2ea sock_i_ino -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 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 0xb8948902 __alloc_disk_node -EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb89f6ed1 arp_tbl -EXPORT_SYMBOL vmlinux 0xb8adb9b9 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xb8bee412 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xb8c49012 mdiobus_alloc_size -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 0xb8dc9700 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 -EXPORT_SYMBOL vmlinux 0xb8eb4ce5 nf_hook_slow -EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory -EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb9379031 inet_stream_ops -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 0xb97f7045 acpi_install_gpe_handler -EXPORT_SYMBOL vmlinux 0xb9864172 param_set_byte -EXPORT_SYMBOL vmlinux 0xb996b87f bio_split -EXPORT_SYMBOL vmlinux 0xb99a7c5c dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0xb9a6e016 dst_release -EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xb9b94c11 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xb9e276cf wrmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0xb9e7429c memcpy_toio -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat -EXPORT_SYMBOL vmlinux 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 0xba3891d6 max8925_reg_write -EXPORT_SYMBOL vmlinux 0xba3b280a kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len -EXPORT_SYMBOL vmlinux 0xba5af6f7 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0xba5c222f neigh_destroy -EXPORT_SYMBOL vmlinux 0xba740b89 phy_aneg_done -EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xbaa704fb dquot_alloc -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 0xbb13595e smp_call_function_many -EXPORT_SYMBOL vmlinux 0xbb1bac24 acpi_unregister_debugger -EXPORT_SYMBOL vmlinux 0xbb1cb90b mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0xbb236867 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb3b024f lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb5b7394 d_drop -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 0xbb9e3075 agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock -EXPORT_SYMBOL vmlinux 0xbba1bcd4 i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0xbbbc8e26 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0xbbcb81b4 seq_open -EXPORT_SYMBOL vmlinux 0xbbcdb883 vga_con -EXPORT_SYMBOL vmlinux 0xbbd65ffa skb_clone_sk -EXPORT_SYMBOL vmlinux 0xbbdb1216 __nd_driver_register -EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order -EXPORT_SYMBOL vmlinux 0xbbf9b306 acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0xbc0b22e9 param_array_ops -EXPORT_SYMBOL vmlinux 0xbc1ae13e inet_frag_find -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 0xbc6404fa mmc_get_card -EXPORT_SYMBOL vmlinux 0xbc96ebb6 nf_log_packet -EXPORT_SYMBOL vmlinux 0xbca32f90 __alloc_skb -EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcadb667 d_alloc_anon -EXPORT_SYMBOL vmlinux 0xbcd6f671 vga_get -EXPORT_SYMBOL vmlinux 0xbcf2cd66 user_path_at_empty -EXPORT_SYMBOL vmlinux 0xbd0d39d5 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0xbd11a891 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0xbd1c4e56 bioset_init_from_src -EXPORT_SYMBOL vmlinux 0xbd25d62c tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xbd393ca3 ioread64be_lo_hi -EXPORT_SYMBOL vmlinux 0xbd460fcf udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -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 0xbd730a30 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xbd7a19f3 lease_get_mtime -EXPORT_SYMBOL vmlinux 0xbd7f682b unregister_cdrom -EXPORT_SYMBOL vmlinux 0xbdb6223d peernet2id -EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ -EXPORT_SYMBOL vmlinux 0xbe0110e7 acpi_set_gpe -EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock -EXPORT_SYMBOL vmlinux 0xbe2439c3 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0xbe375d45 vfs_mkdir -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 0xbe5187cb inet_addr_type_table -EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -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 0xbe915dcd proto_unregister -EXPORT_SYMBOL vmlinux 0xbe9f7dd0 pci_iomap_range -EXPORT_SYMBOL vmlinux 0xbec97084 configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0xbed2c685 tcp_mmap -EXPORT_SYMBOL vmlinux 0xbed66b99 nd_device_notify -EXPORT_SYMBOL vmlinux 0xbee80a85 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0xbefe34cd sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0xbf064e91 dm_io -EXPORT_SYMBOL vmlinux 0xbf3193ec acpi_unregister_ioapic -EXPORT_SYMBOL vmlinux 0xbf43b433 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0xbf4de723 inet_ioctl -EXPORT_SYMBOL vmlinux 0xbf512dcb proc_set_size -EXPORT_SYMBOL vmlinux 0xbf525b90 seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf67801e md_update_sb -EXPORT_SYMBOL vmlinux 0xbf6999fe fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0xbf6f6d11 dev_mc_sync -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfa27db8 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xbfa3eafe set_page_dirty -EXPORT_SYMBOL vmlinux 0xbfb6947e dev_queue_xmit -EXPORT_SYMBOL vmlinux 0xbfbc8931 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0xbfc01fa4 mmc_command_done -EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfcd6331 pci_dev_get -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbfff19e5 seq_vprintf -EXPORT_SYMBOL vmlinux 0xbfff42c2 reuseport_select_sock -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 0xc0364007 fault_in_writeable -EXPORT_SYMBOL vmlinux 0xc03a8cbf lock_page_memcg -EXPORT_SYMBOL vmlinux 0xc03ba958 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0xc03f4b10 tcp_check_req -EXPORT_SYMBOL vmlinux 0xc0505ff7 genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0xc05648c7 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -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 0xc0baed58 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress -EXPORT_SYMBOL vmlinux 0xc0c8007c xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0xc0ec2803 ip_sock_set_recverr -EXPORT_SYMBOL vmlinux 0xc0f92b84 bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup -EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor -EXPORT_SYMBOL vmlinux 0xc111ae64 intel_gtt_get -EXPORT_SYMBOL vmlinux 0xc1365323 acpi_enable_all_wakeup_gpes -EXPORT_SYMBOL vmlinux 0xc13b8014 i2c_smbus_write_word_data -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 0xc1754b39 generic_write_end -EXPORT_SYMBOL vmlinux 0xc17e7d17 __scsi_execute -EXPORT_SYMBOL vmlinux 0xc18cf1b3 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0xc1a0ae3d inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0xc1af0d84 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0xc1b4d1d7 xfrm_replay_seqhi -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 0xc1f851b8 param_ops_charp -EXPORT_SYMBOL vmlinux 0xc2227e23 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xc242110a tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc24ab696 zero_fill_bio -EXPORT_SYMBOL vmlinux 0xc24bd3cc xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0xc2504c12 flow_block_cb_free -EXPORT_SYMBOL vmlinux 0xc25c3d83 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc278c965 cpu_all_bits -EXPORT_SYMBOL vmlinux 0xc281eddd devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xc2b2c2ae udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xc2b5f031 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0xc2c4a60c phy_modify_paged -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2e67936 vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0xc2f4b09e nobh_writepage -EXPORT_SYMBOL vmlinux 0xc2fa4f58 param_get_charp -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 0xc31261f3 inet_sendpage -EXPORT_SYMBOL vmlinux 0xc314cbee genphy_loopback -EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr -EXPORT_SYMBOL vmlinux 0xc32a0379 skb_coalesce_rx_frag -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 0xc356ee41 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xc35db1b8 vlan_dev_vlan_id -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 0xc3abafc4 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0xc3b7c425 genphy_c37_config_aneg -EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xc3c08436 param_set_long -EXPORT_SYMBOL vmlinux 0xc3da0a58 sk_stream_error -EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock -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 0xc42dc033 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0xc44dc91f netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0xc460f02c file_modified -EXPORT_SYMBOL vmlinux 0xc46ba346 input_set_abs_params -EXPORT_SYMBOL vmlinux 0xc476ccd9 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc478cc41 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xc48b62e7 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0xc48bf8c2 __d_drop -EXPORT_SYMBOL vmlinux 0xc49b43f5 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0xc4a64df0 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xc4cdc804 from_kuid -EXPORT_SYMBOL vmlinux 0xc4df56b4 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0xc4e95bef pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0xc4f2f439 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0xc4f420b7 __i2c_transfer -EXPORT_SYMBOL vmlinux 0xc4fe7e3a skb_dequeue -EXPORT_SYMBOL vmlinux 0xc5024eba sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0xc507b30c register_filesystem -EXPORT_SYMBOL vmlinux 0xc510d497 tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0xc51f1ba8 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0xc52ded41 secpath_set -EXPORT_SYMBOL vmlinux 0xc550b9ff tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0xc558530d profile_pc -EXPORT_SYMBOL vmlinux 0xc56242ae kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xc56571b2 ip_generic_getfrag -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 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5c44322 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0xc5d38ffe keyring_clear -EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -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 0xc62036c7 rt_dst_clone -EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc64b9af9 sock_create_lite -EXPORT_SYMBOL vmlinux 0xc64c0e76 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0xc6569dd1 scsi_host_get -EXPORT_SYMBOL vmlinux 0xc65770f4 vlan_ioctl_set -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 0xc66a8a11 sock_set_mark -EXPORT_SYMBOL vmlinux 0xc6910aa0 do_trace_rdpmc -EXPORT_SYMBOL vmlinux 0xc6a8a688 ww_mutex_lock -EXPORT_SYMBOL vmlinux 0xc6aa5dd2 ata_print_version -EXPORT_SYMBOL vmlinux 0xc6bbcee9 unix_detach_fds -EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware -EXPORT_SYMBOL vmlinux 0xc6d09d08 udp_gro_complete -EXPORT_SYMBOL vmlinux 0xc6ed6dbc __d_lookup_done -EXPORT_SYMBOL vmlinux 0xc6edb74f inet_csk_reqsk_queue_drop_and_put -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 0xc708f1fe ec_write -EXPORT_SYMBOL vmlinux 0xc713b215 dcb_setapp -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc747a752 __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xc76ba13a sk_stop_timer_sync -EXPORT_SYMBOL vmlinux 0xc7713b3e get_fs_type -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 0xc7d094b5 dm_read_arg_group -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 0xc80ab559 swake_up_one -EXPORT_SYMBOL vmlinux 0xc828527e pskb_expand_head -EXPORT_SYMBOL vmlinux 0xc82c6e84 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0xc82fc563 empty_aops -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -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 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b2d2d1 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc -EXPORT_SYMBOL vmlinux 0xc9216a82 recalibrate_cpu_khz -EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0xc9560775 fuse_mount_destroy -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 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9ab1a5c netpoll_cleanup -EXPORT_SYMBOL vmlinux 0xc9b33111 cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0xc9b34292 mpage_writepages -EXPORT_SYMBOL vmlinux 0xc9bfdad6 from_kuid_munged -EXPORT_SYMBOL vmlinux 0xc9df0003 rproc_resource_cleanup -EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9f34c1d acpi_acquire_global_lock -EXPORT_SYMBOL vmlinux 0xca0ce8be netdev_sk_get_lowest_dev -EXPORT_SYMBOL vmlinux 0xca148e77 xfrm_policy_destroy -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 0xca7147da udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store -EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception -EXPORT_SYMBOL vmlinux 0xcadba0e4 get_vm_area -EXPORT_SYMBOL vmlinux 0xcaf07395 __traceiter_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcafa8247 kernel_getpeername -EXPORT_SYMBOL vmlinux 0xcaff2142 vme_irq_request -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb2f2b52 boot_cpu_data -EXPORT_SYMBOL vmlinux 0xcb37f789 consume_skb -EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb3f09a9 dev_loopback_xmit -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 0xcb9d7ee3 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0xcba6fac7 __put_page -EXPORT_SYMBOL vmlinux 0xcbc3d320 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame -EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbe53c46 convert_art_to_tsc -EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev -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 0xcc37f30b mdiobus_scan -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 0xcc57205b mode_strip_sgid -EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc672b21 migrate_vma_setup -EXPORT_SYMBOL vmlinux 0xcc757a68 md_write_start -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 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 0xcd037705 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0xcd079b59 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0xcd23fc7e skb_queue_tail -EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd320683 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception -EXPORT_SYMBOL vmlinux 0xcdb2ec74 pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdcb8e48 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0xcdd9f33d tcp_child_process -EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcdef4a75 finalize_exec -EXPORT_SYMBOL vmlinux 0xcdf42b27 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0xcdf5e993 dev_mc_del -EXPORT_SYMBOL vmlinux 0xcdfd00a4 param_get_string -EXPORT_SYMBOL vmlinux 0xce12bcbf pci_scan_bus -EXPORT_SYMBOL vmlinux 0xce17e526 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0xce26484b phy_device_free -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 0xce52cb38 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0xce59f62d put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce650be5 ip_mc_join_group -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 0xce8564cb ip_tunnel_header_ops -EXPORT_SYMBOL vmlinux 0xce90a610 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0xcea19df1 dev_vprintk_emit -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 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 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 0xcf1341e0 agp_create_memory -EXPORT_SYMBOL vmlinux 0xcf18969e nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xcf270ce6 xfrm_input -EXPORT_SYMBOL vmlinux 0xcf2a6966 up -EXPORT_SYMBOL vmlinux 0xcf3c49fa phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xcf6d9d6d netif_set_real_num_queues -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 0xcfbcd755 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0xcfbf6153 __serio_register_driver -EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xcfccc6dd ihold -EXPORT_SYMBOL vmlinux 0xcfd80990 mdio_driver_register -EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned -EXPORT_SYMBOL vmlinux 0xcfe6dd3d mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0xcffea275 netdev_state_change -EXPORT_SYMBOL vmlinux 0xd00fba2c security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0xd010babf i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0xd0197bd3 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0xd02a0377 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0xd02a9abb netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd05298d0 vme_register_driver -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 0xd06dd66d netlink_net_capable -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 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 0xd0c0b771 from_kgid -EXPORT_SYMBOL vmlinux 0xd0c5d607 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0xd0d8b545 xfrm_policy_flush -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 0xd1020359 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0xd10a0a5f kthread_create_on_node -EXPORT_SYMBOL vmlinux 0xd114e823 dev_set_group -EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd14ae1b1 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xd164ec9c devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0xd17375e5 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xd1769161 kobject_get -EXPORT_SYMBOL vmlinux 0xd17ab6a1 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0xd17bc93b dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd1883305 nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -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 0xd1ca7433 ip6_dst_alloc -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 0xd1e79cb6 iptun_encaps -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 0xd21c5139 iowrite64_lo_hi -EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0xd22ae529 bio_devname -EXPORT_SYMBOL vmlinux 0xd23025ea mmc_cqe_start_req -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 0xd260cc76 dev_getfirstbyhwtype -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 0xd2cec4d0 netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0xd2d7a581 __register_nls -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 0xd2fc3895 ether_setup -EXPORT_SYMBOL vmlinux 0xd305e9b7 genphy_read_lpa -EXPORT_SYMBOL vmlinux 0xd325b059 devm_alloc_etherdev_mqs -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 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 -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 0xd3811b8e path_is_mountpoint -EXPORT_SYMBOL vmlinux 0xd38cd261 __default_kernel_pte_mask -EXPORT_SYMBOL vmlinux 0xd391c25b __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xd3b04763 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xd3badfa3 tcp_mtu_to_mss -EXPORT_SYMBOL vmlinux 0xd3e2cac0 flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0xd3e47f23 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xd3e767b2 fwnode_irq_get -EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd41e507c mmc_put_card -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 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd488bcd4 vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0xd499e464 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table -EXPORT_SYMBOL vmlinux 0xd4e212f8 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0xd4fa2b69 textsearch_destroy -EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -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 0xd5209b45 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd52bc33b __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xd5357a52 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xd53b0cd5 sock_kfree_s -EXPORT_SYMBOL vmlinux 0xd5522e05 xp_can_alloc -EXPORT_SYMBOL vmlinux 0xd56f417d request_firmware -EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise -EXPORT_SYMBOL vmlinux 0xd58fd49d jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0xd5ad8bdd pcim_iomap -EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5be3600 ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0xd5c96813 seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0xd5cc538a rt_mutex_base_init -EXPORT_SYMBOL vmlinux 0xd5d5e776 xfrm_trans_queue_net -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 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd610eaeb pcibios_bus_to_resource -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 0xd6519b3b xfrm_register_km -EXPORT_SYMBOL vmlinux 0xd6589e02 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0xd65aa205 scsi_dma_map -EXPORT_SYMBOL vmlinux 0xd6632235 tcp_shutdown -EXPORT_SYMBOL vmlinux 0xd66af842 tc_setup_cb_call -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 0xd6928da2 pci_iomap -EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace -EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz -EXPORT_SYMBOL vmlinux 0xd6b9a5f4 ip6_frag_next -EXPORT_SYMBOL vmlinux 0xd6b9eee4 phy_config_aneg -EXPORT_SYMBOL vmlinux 0xd6d565de __skb_checksum -EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6f35a05 hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xd6fca2da napi_complete_done -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 0xd7206ac6 rproc_elf_sanity_check -EXPORT_SYMBOL vmlinux 0xd73430f0 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd73e921a param_set_short -EXPORT_SYMBOL vmlinux 0xd73ebe3f fifo_set_limit -EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc -EXPORT_SYMBOL vmlinux 0xd7750280 mipi_dsi_compression_mode -EXPORT_SYMBOL vmlinux 0xd789e7ad device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0xd7915272 tcf_qevent_init -EXPORT_SYMBOL vmlinux 0xd7ae91fc ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xd7b141dd audit_log_start -EXPORT_SYMBOL vmlinux 0xd7b83d0f locks_remove_posix -EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7d7a73c dev_get_iflink -EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7f65501 tcp_parse_options -EXPORT_SYMBOL vmlinux 0xd8218a9e ip6_frag_init -EXPORT_SYMBOL vmlinux 0xd82bec2b skb_ext_add -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 0xd85d950f ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xd878e153 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0xd885f95f sk_dst_check -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -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 0xd8c4fe75 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0xd8c97eae pci_assign_resource -EXPORT_SYMBOL vmlinux 0xd8cef6e1 clear_user -EXPORT_SYMBOL vmlinux 0xd8d1b604 dump_align -EXPORT_SYMBOL vmlinux 0xd8d7b086 km_state_notify -EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xd8e1e688 tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0xd8fa1b92 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xd90cd7e6 cdev_init -EXPORT_SYMBOL vmlinux 0xd91571cd __blk_alloc_disk -EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd92d380e dma_unmap_resource -EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0xd933f209 __SCT__tp_func_rdpmc -EXPORT_SYMBOL vmlinux 0xd93535ba __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy -EXPORT_SYMBOL vmlinux 0xd94be0eb __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xd951cc7f serio_interrupt -EXPORT_SYMBOL vmlinux 0xd957c44d vfs_llseek -EXPORT_SYMBOL vmlinux 0xd9602096 __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xd96fcfcb mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -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 0xd9d9da07 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0xd9e87aa1 xsk_tx_release -EXPORT_SYMBOL vmlinux 0xd9f1a44f __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xd9fed64f sched_autogroup_create_attach -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 0xda46f488 mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0xda57f1b5 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda7c649c zap_page_range -EXPORT_SYMBOL vmlinux 0xda803d6f dquot_scan_active -EXPORT_SYMBOL vmlinux 0xda854864 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xda942992 read_cache_page -EXPORT_SYMBOL vmlinux 0xdabc927f sk_ns_capable -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 0xdae7b40f phy_device_create -EXPORT_SYMBOL vmlinux 0xdaf02c7e ppp_input_error -EXPORT_SYMBOL vmlinux 0xdaf5fc38 noop_llseek -EXPORT_SYMBOL vmlinux 0xdb0b80d9 kernel_connect -EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg -EXPORT_SYMBOL vmlinux 0xdb21022e __traceiter_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0xdb299f3d __ip_select_ident -EXPORT_SYMBOL vmlinux 0xdb2f0a9f devm_rproc_add -EXPORT_SYMBOL vmlinux 0xdb4d55d4 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb6cdf26 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb843c2d tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xdb8acb90 remap_pfn_range -EXPORT_SYMBOL vmlinux 0xdb95e185 intel_scu_ipc_dev_command_with_size -EXPORT_SYMBOL vmlinux 0xdbade793 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0xdbc1ea6a rproc_elf_load_segments -EXPORT_SYMBOL vmlinux 0xdbc3bbbc xfrm_state_lookup -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 0xdbf55669 dst_discard_out -EXPORT_SYMBOL vmlinux 0xdbfa3743 ps2_begin_command -EXPORT_SYMBOL vmlinux 0xdc0315bb qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc1679e6 fs_context_for_mount -EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv -EXPORT_SYMBOL vmlinux 0xdc4be329 dcache_dir_close -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc56ec52 udp_prot -EXPORT_SYMBOL vmlinux 0xdc5736d5 acpi_register_ioapic -EXPORT_SYMBOL vmlinux 0xdc587601 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0xdc88326f mroute6_is_socket -EXPORT_SYMBOL vmlinux 0xdc8f65b5 submit_bio -EXPORT_SYMBOL vmlinux 0xdc972d1c d_alloc_name -EXPORT_SYMBOL vmlinux 0xdc989905 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xdcb9303f devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress -EXPORT_SYMBOL vmlinux 0xdce310c0 set_pages_array_uc -EXPORT_SYMBOL vmlinux 0xdce53443 simple_unlink -EXPORT_SYMBOL vmlinux 0xdcfeceb7 tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0xdcfeff1a kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0xdd0d1552 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdd1ac5f7 dev_disable_lro -EXPORT_SYMBOL vmlinux 0xdd1f1a1b __cleancache_get_page -EXPORT_SYMBOL vmlinux 0xdd20f07e napi_gro_receive -EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd3bb095 node_data -EXPORT_SYMBOL vmlinux 0xdd3efe2a key_put -EXPORT_SYMBOL vmlinux 0xdd47b8cc blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -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 0xdd983892 tcp_read_sock -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 0xddafdd31 vm_node_stat -EXPORT_SYMBOL vmlinux 0xddb1f385 simple_statfs -EXPORT_SYMBOL vmlinux 0xddcbe1f3 acpi_ut_value_exit -EXPORT_SYMBOL vmlinux 0xdded3c54 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done -EXPORT_SYMBOL vmlinux 0xddf9503d param_set_ushort -EXPORT_SYMBOL vmlinux 0xddfa0b50 __mod_node_page_state -EXPORT_SYMBOL vmlinux 0xde0fdeff proc_set_user -EXPORT_SYMBOL vmlinux 0xde1512ae release_sock -EXPORT_SYMBOL vmlinux 0xde1ebc42 sget -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 0xde39d1ea block_invalidatepage -EXPORT_SYMBOL vmlinux 0xde4155ab vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0xde4eeab5 __register_nmi_handler -EXPORT_SYMBOL vmlinux 0xde66ce7d mmc_card_alternative_gpt_sector -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 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xdeb84357 blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0xdebac924 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0xdecffe22 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdef227a6 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0xdef25e0a remove_watch_from_object -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 0xdf33ca32 mmc_sw_reset -EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after -EXPORT_SYMBOL vmlinux 0xdf53d678 skb_eth_pop -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf622147 sock_set_keepalive -EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xdf713313 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0xdf76034e phy_disconnect -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 0xdf8f2174 sockfd_lookup -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 0xdf9db712 d_set_fallthru -EXPORT_SYMBOL vmlinux 0xdf9e0361 netpoll_print_options -EXPORT_SYMBOL vmlinux 0xdfa5b551 __phy_resume -EXPORT_SYMBOL vmlinux 0xdfb6e7fd d_find_alias -EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfd261f5 __post_watch_notification -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 0xe0112fc4 __x86_indirect_thunk_r9 -EXPORT_SYMBOL vmlinux 0xe012d3a6 vme_init_bridge -EXPORT_SYMBOL vmlinux 0xe025dea6 vlan_dev_real_dev -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 0xe03de04c scsi_partsize -EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe04ae857 netdev_pick_tx -EXPORT_SYMBOL vmlinux 0xe04b28c0 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xe054f62e mfd_cell_disable -EXPORT_SYMBOL vmlinux 0xe064ee20 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0xe06677fa skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0xe07dffa4 sk_free -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 0xe083d86a jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xe08d9eed tcp_req_err -EXPORT_SYMBOL vmlinux 0xe091c977 list_sort -EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold -EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco -EXPORT_SYMBOL vmlinux 0xe0cc04df dquot_operations -EXPORT_SYMBOL vmlinux 0xe0cd9c7d dev_change_proto_down_reason -EXPORT_SYMBOL vmlinux 0xe0d46b09 intel_gmch_probe -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe113da28 fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict -EXPORT_SYMBOL vmlinux 0xe11ceaf3 sock_cmsg_send -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 0xe195b0de tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0xe1a3a513 __phy_write_mmd -EXPORT_SYMBOL vmlinux 0xe1ac160d __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xe1bee700 __traceiter_read_msr -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 0xe1de6cdf tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0xe2076255 cfb_fillrect -EXPORT_SYMBOL vmlinux 0xe213ecc0 param_get_uint -EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe21fe288 file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0xe224cec3 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0xe22c67c5 pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0xe240f6e9 proc_create_data -EXPORT_SYMBOL vmlinux 0xe24200b4 dev_alloc_name -EXPORT_SYMBOL vmlinux 0xe24228a5 flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0xe24fcf3d legacy_pic -EXPORT_SYMBOL vmlinux 0xe250ab95 keyring_search -EXPORT_SYMBOL vmlinux 0xe250f50c __block_write_begin -EXPORT_SYMBOL vmlinux 0xe264d15c init_net -EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe27b3742 devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0xe2847af1 filemap_flush -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 0xe2c20445 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2e28fc0 __traceiter_write_msr -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 0xe2fe8f25 cfb_copyarea -EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -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 0xe374e858 datagram_poll -EXPORT_SYMBOL vmlinux 0xe391d545 nd_btt_version -EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe39e1f52 alloc_buffer_head -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 0xe3d857ea __cpu_active_mask -EXPORT_SYMBOL vmlinux 0xe3d9531b __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xe3e6ec20 tso_start -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 0xe419bc99 iowrite32be -EXPORT_SYMBOL vmlinux 0xe43ffcdf tcf_idr_release -EXPORT_SYMBOL vmlinux 0xe454b358 generic_delete_inode -EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xe46874a7 refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0xe482687a neigh_for_each -EXPORT_SYMBOL vmlinux 0xe4837998 elevator_alloc -EXPORT_SYMBOL vmlinux 0xe495de09 sock_bind_add -EXPORT_SYMBOL vmlinux 0xe4b39f06 lookup_one -EXPORT_SYMBOL vmlinux 0xe4b963c1 xsk_tx_peek_desc -EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe4d80bf4 acpi_enable -EXPORT_SYMBOL vmlinux 0xe4dafbbf begin_new_exec -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe5271ae4 register_framebuffer -EXPORT_SYMBOL vmlinux 0xe52be3e6 has_capability -EXPORT_SYMBOL vmlinux 0xe52c693b ps2_sliced_command -EXPORT_SYMBOL vmlinux 0xe5368fc1 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe565796d inet_del_protocol -EXPORT_SYMBOL vmlinux 0xe56d5f04 neigh_carrier_down -EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe581c0ed path_has_submounts -EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe593ce0f fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xe596395d netlink_ack -EXPORT_SYMBOL vmlinux 0xe59e13c0 cfb_imageblit -EXPORT_SYMBOL vmlinux 0xe5bc1599 softnet_data -EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5d76162 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0xe5f0e907 touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0xe5fa7584 iov_iter_bvec -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 0xe636908b skb_append -EXPORT_SYMBOL vmlinux 0xe66713e9 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xe675a54b inet_sk_set_state -EXPORT_SYMBOL vmlinux 0xe676b830 xfrm_sad_getinfo -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 0xe697f9bd sync_inode_metadata -EXPORT_SYMBOL vmlinux 0xe699b4e5 inode_needs_sync -EXPORT_SYMBOL vmlinux 0xe69d7947 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0xe6aa3fda fs_context_for_submount -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 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock -EXPORT_SYMBOL vmlinux 0xe6fbc6e8 agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0xe707adac __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xe70877d4 acpi_remove_sci_handler -EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range -EXPORT_SYMBOL vmlinux 0xe72b306a unregister_netdev -EXPORT_SYMBOL vmlinux 0xe730b9f9 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe740fbad _dev_info -EXPORT_SYMBOL vmlinux 0xe747c7fb __devm_request_region -EXPORT_SYMBOL vmlinux 0xe74acc12 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0xe7669197 dma_sync_sg_for_cpu -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 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 0xe7a02573 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xe7a48bd9 vc_resize -EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0xe7ac6d15 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xe7b6649d block_write_end -EXPORT_SYMBOL vmlinux 0xe7bbafb9 security_path_unlink -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 0xe7fc0137 cleancache_register_ops -EXPORT_SYMBOL vmlinux 0xe805dce3 pci_get_slot -EXPORT_SYMBOL vmlinux 0xe80cee86 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0xe80d0e12 devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0xe80fad4d __inode_add_bytes -EXPORT_SYMBOL vmlinux 0xe8199f57 genlmsg_put -EXPORT_SYMBOL vmlinux 0xe819b479 blk_integrity_register -EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xe84ad946 netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0xe8568e92 d_make_root -EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table -EXPORT_SYMBOL vmlinux 0xe874ff93 input_flush_device -EXPORT_SYMBOL vmlinux 0xe88e3bcd pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0xe891bbd6 clear_nlink -EXPORT_SYMBOL vmlinux 0xe8a0ebc1 dquot_drop -EXPORT_SYMBOL vmlinux 0xe8b63c18 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0xe8b98295 put_ipc_ns -EXPORT_SYMBOL vmlinux 0xe8bc3243 vfs_unlink -EXPORT_SYMBOL vmlinux 0xe8e882ec __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0xe8ea0459 __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0xe8eacc7c tcf_idr_create_from_flags -EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0xe8fc400a agp_unbind_memory -EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe9360aa4 rtnl_unicast -EXPORT_SYMBOL vmlinux 0xe94b1635 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0xe94bd2e1 kill_pid -EXPORT_SYMBOL vmlinux 0xe94dbc02 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe9571427 con_is_bound -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 0xe9a5e67f intel_graphics_stolen_res -EXPORT_SYMBOL vmlinux 0xe9aaf799 vm_event_states -EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark -EXPORT_SYMBOL vmlinux 0xe9b9a6b8 configfs_unregister_group -EXPORT_SYMBOL vmlinux 0xe9ce65ef inet_unregister_protosw -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 0xea3c8e4e scsilun_to_int -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 0xea778fab sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict -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 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 0xeb66b69a fib_notifier_ops_unregister -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 0xebb6883e blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0xebbb5688 inode_init_owner -EXPORT_SYMBOL vmlinux 0xebc0b75f qdisc_hash_add -EXPORT_SYMBOL vmlinux 0xebd2a844 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0xebe2b34c rt6_lookup -EXPORT_SYMBOL vmlinux 0xebe2b446 rproc_da_to_va -EXPORT_SYMBOL vmlinux 0xebeb20ea __nla_put -EXPORT_SYMBOL vmlinux 0xebec9343 phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0xebf1c6e8 devm_iounmap -EXPORT_SYMBOL vmlinux 0xebf7b4d7 sock_efree -EXPORT_SYMBOL vmlinux 0xec076265 netdev_adjacent_change_prepare -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 0xec2e1c8f proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0xec483685 skb_expand_head -EXPORT_SYMBOL vmlinux 0xec492c12 phy_start_cable_test -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec67ef8e jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0xec741700 shmem_aops -EXPORT_SYMBOL vmlinux 0xec7e94cb page_mapped -EXPORT_SYMBOL vmlinux 0xeca7be0a input_set_timestamp -EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy -EXPORT_SYMBOL vmlinux 0xecb7c35b devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xecb80258 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xecd27eb3 __put_user_ns -EXPORT_SYMBOL vmlinux 0xecdcabd2 copy_user_generic_unrolled -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -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 0xed12f5fb tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xed1eeb25 tty_port_close_end -EXPORT_SYMBOL vmlinux 0xed238617 __put_cred -EXPORT_SYMBOL vmlinux 0xed262522 may_setattr -EXPORT_SYMBOL vmlinux 0xed2dc0da __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0xed34ebbc acpi_any_gpe_status_set -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 0xed654a06 tcp_v4_md5_hash_skb -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 0xed842a03 rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0xed8cada5 eth_type_trans -EXPORT_SYMBOL vmlinux 0xed96cffb scsi_device_put -EXPORT_SYMBOL vmlinux 0xed9bd49c unpin_user_pages -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedd3e1a4 dput -EXPORT_SYMBOL vmlinux 0xede11ad7 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0xedf26243 mmc_erase -EXPORT_SYMBOL vmlinux 0xedf7815d vfs_symlink -EXPORT_SYMBOL vmlinux 0xee0206b2 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee40331e end_page_writeback -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 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 0xee8dce64 sock_i_uid -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee9749e4 md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeec9a1b4 dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0xeed72f2d amd_iommu_flush_tlb -EXPORT_SYMBOL vmlinux 0xef091ce7 inet_bind -EXPORT_SYMBOL vmlinux 0xef0fa58f tcf_idr_cleanup -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 0xef697d16 misc_deregister -EXPORT_SYMBOL vmlinux 0xef9a41fa __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override -EXPORT_SYMBOL vmlinux 0xefa34e00 md_integrity_register -EXPORT_SYMBOL vmlinux 0xefa9ff54 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0xefaeca87 proc_remove -EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefb80ad6 config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0xefbf7807 ip6_xmit -EXPORT_SYMBOL vmlinux 0xefce670c PageMovable -EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning -EXPORT_SYMBOL vmlinux 0xefe11c85 qdisc_put_unlocked -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 0xf02aa937 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xf036341f _dev_warn -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 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0a71b1b revert_creds -EXPORT_SYMBOL vmlinux 0xf0b60d44 pci_write_config_word -EXPORT_SYMBOL vmlinux 0xf0b709af phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0xf0db9dcd register_key_type -EXPORT_SYMBOL vmlinux 0xf0dc485e tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0xf0e5623a t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0xf0fb8091 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf130e7ce tty_port_close_start -EXPORT_SYMBOL vmlinux 0xf149647a nf_log_unregister -EXPORT_SYMBOL vmlinux 0xf1551088 input_get_timestamp -EXPORT_SYMBOL vmlinux 0xf178e94f i2c_put_adapter -EXPORT_SYMBOL vmlinux 0xf1803dc0 fuse_dequeue_forget -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 0xf1992b35 serio_rescan -EXPORT_SYMBOL vmlinux 0xf1a4a3a6 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xf1a60665 tcp_v4_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 0xf210d707 rio_query_mport -EXPORT_SYMBOL vmlinux 0xf22f9489 irq_domain_set_info -EXPORT_SYMBOL vmlinux 0xf23dc4ab arch_debugfs_dir -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf24b3da8 shrink_dcache_parent -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 0xf28ef903 kernel_recvmsg -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 0xf2a41749 genphy_read_abilities -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 0xf2ea80e0 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free -EXPORT_SYMBOL vmlinux 0xf2f7f504 uart_match_port -EXPORT_SYMBOL vmlinux 0xf2f838ce netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0xf2fc12e4 __free_pages -EXPORT_SYMBOL vmlinux 0xf303b206 tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0xf30965ac iosf_mbi_register_pmic_bus_access_notifier -EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf32e2cb0 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xf3354092 page_readlink -EXPORT_SYMBOL vmlinux 0xf33a4360 xfrm4_udp_encap_rcv -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf349411c fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0xf3509228 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf3544ba1 put_cmsg -EXPORT_SYMBOL vmlinux 0xf35a07e0 disk_start_io_acct -EXPORT_SYMBOL vmlinux 0xf35a4561 devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xf373d2ec xfrm_if_register_cb -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 0xf3a57892 release_dentry_name_snapshot -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 0xf3bf5cd1 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xf3cac259 phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0xf3d4c651 kthread_blkcg -EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3f1f40d skb_realloc_headroom -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 0xf400865c netif_receive_skb -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 0xf43d2caa acpi_remove_interface -EXPORT_SYMBOL vmlinux 0xf440da8c neigh_direct_output -EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf4744a0f netdev_alert -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 0xf4759dd2 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0xf48e03cf xfrm_user_policy -EXPORT_SYMBOL vmlinux 0xf48eddfa simple_write_begin -EXPORT_SYMBOL vmlinux 0xf495fec7 fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0xf49f1691 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xf4a565fd wrmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4bd6ac2 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4c80505 arp_xmit -EXPORT_SYMBOL vmlinux 0xf4d0d727 seq_hex_dump -EXPORT_SYMBOL vmlinux 0xf4d36594 nobh_write_begin -EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f2b6e1 fget_raw -EXPORT_SYMBOL vmlinux 0xf512772e skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0xf51ba369 acpi_dev_hid_uid_match -EXPORT_SYMBOL vmlinux 0xf530ac80 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf56a6a72 configfs_depend_item -EXPORT_SYMBOL vmlinux 0xf574d012 genphy_read_status -EXPORT_SYMBOL vmlinux 0xf57ed3ba tcp_md5_hash_skb_data -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 0xf5c9f706 ppp_register_net_channel -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 0xf6153eb6 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0xf61c4d3e serio_close -EXPORT_SYMBOL vmlinux 0xf61ca883 pagecache_write_end -EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf655faf6 write_one_page -EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf66c04d9 lookup_one_len -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 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf69c0ad0 fs_param_is_fd -EXPORT_SYMBOL vmlinux 0xf69e1a85 agp_copy_info -EXPORT_SYMBOL vmlinux 0xf6a8ca89 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0xf6b4ad75 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0xf6d2a13f pps_lookup_dev -EXPORT_SYMBOL vmlinux 0xf6d33a69 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xf6d3db5e dquot_initialize -EXPORT_SYMBOL vmlinux 0xf6d6b70b close_fd_get_file -EXPORT_SYMBOL vmlinux 0xf6e4326b xfrm_state_walk -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 0xf7173d12 i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0xf71fabb5 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0xf721ba28 md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf73b26c8 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0xf757085e netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0xf757d730 param_ops_uint -EXPORT_SYMBOL vmlinux 0xf7721833 serio_reconnect -EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xf78580f0 vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0xf790401b __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0xf796e2ad sget_fc -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 0xf7ef9a79 iosf_mbi_punit_release -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 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf848bfa2 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -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 0xf87a0206 devfreq_add_governor -EXPORT_SYMBOL vmlinux 0xf87b219a udp_ioctl -EXPORT_SYMBOL vmlinux 0xf87ebe91 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf88adc01 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0xf8b40dd3 scsi_remove_target -EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound -EXPORT_SYMBOL vmlinux 0xf8ceccc6 nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 -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 0xf9298db7 devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0xf936307c neigh_event_ns -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 0xf9451807 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0xf94a54fe i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len -EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf982d82f sock_no_mmap -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xf9d7100a netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0xf9dbe28a generic_file_llseek -EXPORT_SYMBOL vmlinux 0xf9e12148 vfs_get_fsid -EXPORT_SYMBOL vmlinux 0xf9fd2771 dma_free_attrs -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 0xfa1d1b9f __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node -EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec -EXPORT_SYMBOL vmlinux 0xfa2eeaa7 brioctl_set -EXPORT_SYMBOL vmlinux 0xfa35312b d_invalidate -EXPORT_SYMBOL vmlinux 0xfa52b56e vfs_ioctl -EXPORT_SYMBOL vmlinux 0xfa56efa3 get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa754047 phy_attached_print -EXPORT_SYMBOL vmlinux 0xfa7bb25f vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xfa80c4d8 ps2_end_command -EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfa8c0160 d_splice_alias -EXPORT_SYMBOL vmlinux 0xfa8c1bf5 tcp_ioctl -EXPORT_SYMBOL vmlinux 0xfa8fdc6d timestamp_truncate -EXPORT_SYMBOL vmlinux 0xfa99ff47 amd_iommu_device_info -EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfab06f89 elv_rb_add -EXPORT_SYMBOL vmlinux 0xfabc14e7 inet_protos -EXPORT_SYMBOL vmlinux 0xfabda731 d_alloc_parallel -EXPORT_SYMBOL vmlinux 0xfac19588 __clear_user -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacd8c28 nla_put -EXPORT_SYMBOL vmlinux 0xfadf32d0 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xfaf312d1 vme_master_mmap -EXPORT_SYMBOL vmlinux 0xfaf55fc3 param_get_ushort -EXPORT_SYMBOL vmlinux 0xfaf7f8f2 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0xfb1ad9b3 netdev_has_upper_dev_all_rcu -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 0xfb4ce158 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0xfb578fc5 memset -EXPORT_SYMBOL vmlinux 0xfb6202a3 jbd2_fc_get_buf -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -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 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbe3f05e free_netdev -EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0xfbfa39bc netlink_broadcast -EXPORT_SYMBOL vmlinux 0xfc0a1bfd wait_on_page_private_2 -EXPORT_SYMBOL vmlinux 0xfc268268 bio_reset -EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit -EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3d53cb __put_user_nocheck_1 -EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read -EXPORT_SYMBOL vmlinux 0xfc446e5a forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0xfc681e98 fasync_helper -EXPORT_SYMBOL vmlinux 0xfc8dbb4d scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xfcad596c i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0xfcb49325 fput -EXPORT_SYMBOL vmlinux 0xfcccd769 sock_wake_async -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 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 0xfcfa048c vfs_get_super -EXPORT_SYMBOL vmlinux 0xfcff6fbf read_cache_pages -EXPORT_SYMBOL vmlinux 0xfd062a06 sock_alloc_file -EXPORT_SYMBOL vmlinux 0xfd08adeb dquot_file_open -EXPORT_SYMBOL vmlinux 0xfd1a29eb buffer_migrate_page -EXPORT_SYMBOL vmlinux 0xfd4ba06c to_ndd -EXPORT_SYMBOL vmlinux 0xfd5185f2 input_allocate_device -EXPORT_SYMBOL vmlinux 0xfd5883eb skb_checksum_help -EXPORT_SYMBOL vmlinux 0xfd663f64 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0xfd73a8e7 zpool_register_driver -EXPORT_SYMBOL vmlinux 0xfd93ee35 ioremap_wc -EXPORT_SYMBOL vmlinux 0xfd9d01b2 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0xfda5d9a3 vga_switcheroo_register_client -EXPORT_SYMBOL vmlinux 0xfda851dc ndo_dflt_fdb_dump -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 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 0xfddae8e6 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0xfdec077d __inode_sub_bytes -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 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe052363 ioread64_lo_hi -EXPORT_SYMBOL vmlinux 0xfe05ca6b genphy_check_and_restart_aneg -EXPORT_SYMBOL vmlinux 0xfe0e9ed1 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update -EXPORT_SYMBOL vmlinux 0xfe27bf53 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe5e9512 skb_copy_expand -EXPORT_SYMBOL vmlinux 0xfe69957c agp_allocate_memory -EXPORT_SYMBOL vmlinux 0xfe6b1621 get_cached_acl -EXPORT_SYMBOL vmlinux 0xfe8c0218 uart_unregister_driver -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 0xfe9fcba1 pci_write_config_dword -EXPORT_SYMBOL vmlinux 0xfea0019c simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info -EXPORT_SYMBOL vmlinux 0xfebd5340 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0xfec8c449 skb_vlan_push -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfeea58f2 srso_alias_untrain_ret -EXPORT_SYMBOL vmlinux 0xfeeb8b25 netdev_lower_state_changed -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 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff384a22 inet_proto_csum_replace4 -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 0xff87cd18 lockref_get_not_dead -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 0xffae3f55 set_bdi_congested -EXPORT_SYMBOL vmlinux 0xffaeb22e _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0xffb272dd mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xffb486a3 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free -EXPORT_SYMBOL vmlinux 0xffbf85e7 netdev_emerg -EXPORT_SYMBOL vmlinux 0xffc30c3a acpi_processor_power_init_bm_check -EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffcd7f49 iosf_mbi_punit_acquire -EXPORT_SYMBOL vmlinux 0xffcf602f genphy_read_status_fixed -EXPORT_SYMBOL vmlinux 0xffd7e915 vga_put -EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0xfff5b680 input_event -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 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 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 0x05add8a3 kvm_fast_pio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06cdc8d1 kvm_configure_mmu -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 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 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 0x0cff45f4 __SCT__tp_func_kvm_vmgexit_msr_protocol_exit -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 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 0x130fd155 supported_xss -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 0x15305045 kvm_cpu_has_injectable_intr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x159b8d5e host_efer -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 0x59e640c0 halt_poll_ns -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 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 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 0x60c73d0f kvm_get_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x616e6c95 __SCT__tp_func_kvm_exit -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 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 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 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 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 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 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 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 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 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 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 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 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 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 0x8cc07ada gfn_to_hva_memslot -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 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 0x944882ed kvm_has_bus_lock_exit -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 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 0x9f68faa3 __traceiter_kvm_avic_unaccelerated_access -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 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 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 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 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 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 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 0xc96d35f4 report_ignored_msrs -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 0xcfccd05e kvm_set_msi_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control -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 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 0xe06ca12e kvm_emulate_hypercall -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0e786a7 __SCT__tp_func_kvm_skinit -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 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 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 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 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 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 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 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 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 -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x4d117f66 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x5fb6e558 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x06b2a2aa async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x2397cd60 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x14ab6d5b __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x33d5a922 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xdcc08cbe async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xe05a9b95 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x022055c6 async_xor_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x09ca33eb async_xor_val_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x1772fc2c async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xbafd0a3f async_xor -EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xaa68d626 blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x3b2dce97 cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0xc995a802 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 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 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 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 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 0x794ba4c0 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 0x3db90ee2 twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x03b7f65b spk_var_show -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1365cbde spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1b947cf5 spk_var_store -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2114d09c spk_ttyio_release -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2ae5ee87 spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x466f5eb7 synth_putwc -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4f6b9e6d synth_add -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8155e7c1 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x84dad068 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8b293f53 synth_current -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8c82dfca synth_request_region -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8fe0db01 synth_putwc_s -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaadb0612 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb734cb9d speakup_event -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 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 0xd952a9fe spk_synth_get_index -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xdb3c3266 spk_ttyio_ops -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xdd45cb55 spk_do_catch_up_unicode -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe194d0ef synth_printf -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xea76b524 spk_ttyio_synth_probe -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xece885fd synth_remove -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xf18558b3 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xfcff48d0 spk_ttyio_synth_immediate -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4639bcda acpi_nfit_shutdown -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x499bbf57 nfit_get_smbios_id -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x5815ba75 acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x669531b3 acpi_nfit_ctl -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x96092688 __acpi_nfit_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xe9beb808 __acpi_nvdimm_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xefc4e0ad acpi_nfit_desc_init -EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0x67927a0d platform_profile_notify -EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xbfe36436 platform_profile_remove -EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xcac33cd4 platform_profile_register -EXPORT_SYMBOL_GPL drivers/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 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 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 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 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 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 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 -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-i3c 0x200ff2d8 __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x198546eb __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x9b008e04 __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x2de24989 __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x82c07f24 __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xa3e36ca2 __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xdddfcc01 __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x5fd4231e __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x982684f6 __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x5107415c __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xa633f89c __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x0dc7906e __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x91d03e18 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x972f55f2 __devm_regmap_init_spmi_base -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/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/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 -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x289186a8 mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2d0bf5d4 mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x32f2d6a2 mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3c78e516 mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4b559d89 mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x55a0f09e mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5ac01fcc mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x61495a88 mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x69ba6623 mhi_poll -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6f52b69a mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x71068cdb mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7eae0a4f mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x820f5a16 mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9f23b3a9 mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa4ce3789 mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa64b1e7e mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa6e8741c mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa830d9e5 mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xaa33395b mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xae2da161 mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb66bd04d mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbce29a0f mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xdda86715 mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xdea23aaa __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe4421708 mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe460235c mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe48e312d mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0015d0e4 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x04b1c756 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1d1b90f1 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x23c3e1d9 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2b13393d comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3711690e comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3cc8ef68 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3d006481 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x43768a19 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4458a8c6 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x475156d8 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4bb20457 comedi_timeout -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4ec208dd comedi_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x528a06b0 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x55cbf7cf comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x564c4dab comedi_event -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5a1cf6c6 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x64f9b96c comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6c157272 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x769878dd comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8abf6425 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x97ed2b70 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x982a8b78 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb61d6a9f comedi_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbc5f84d0 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc7fb2ff4 comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd25de2b0 comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd3484f44 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdd447086 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe186891d comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xef6ed93b comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf27a1d5d comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf831c3ba comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfa7d68db comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfaf1c4c0 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfff63f48 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x175733b8 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x888087b0 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xa82e77a0 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xb226fbff comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xb26c52a9 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xcba49216 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xd101ddf2 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xdd7865db comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x346660ee comedi_to_pcmcia_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x4746f63f comedi_pcmcia_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x69afaf4b comedi_pcmcia_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x7b63617c comedi_pcmcia_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xba83a64c comedi_pcmcia_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xf0223d75 comedi_pcmcia_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xfe7fb953 comedi_pcmcia_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x0a8b716c comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x33301455 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xa5a79fe9 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xdbac7921 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xf0b10701 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xfbcc207d comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xc66c4f1b addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x3d0b6f15 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x4936ec84 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xb75f3d23 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x041acc9d comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x0775c8a7 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x40375dfb comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x43b9c5a8 comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x52155795 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6a51807c comedi_8254_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6d962fb4 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x8115ed6c comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x8aed7b3e comedi_8254_load -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x8dffef6d comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x9d509c28 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xbd1ccdb2 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xfeac456b comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x11e1534d subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x4176ebc4 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xef70bb5f subdev_8255_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x4ce40cd4 comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x76e7b390 comedi_isadma_poll -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x91f4b63b comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xca784d4b comedi_isadma_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xea878430 comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x3a30d366 das08_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x091d94b2 mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1a12b6de mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2299872b mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x232bf14a mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3f736e29 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x45315a65 mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x550e1005 mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x551621b8 mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x5afc5737 mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8da60a31 mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8ec396f1 mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x91b75bb7 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9a3208ea mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc4851106 mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xcfe4d566 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe6970397 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x26443dd3 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xe4e4b650 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x78ec61dd labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x99452bc3 labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xca8fceed labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xcb1a13dd labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xffb1484d labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x85e75c94 ni_assign_device_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x073c3fa1 ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x33446c9a ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x473b690a ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5076d642 ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5f54aa59 ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6713c1c9 ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x67c3e491 ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6812b4fd ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x70e797ea ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7a12114f ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8fcd8bce ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa1a4b8e0 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa5f8c514 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc1367434 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe298dc78 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf38942bb ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x438d9d11 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x5d40fb5a ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xa9a059fe ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xb2001d73 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xceeed540 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xe7acde49 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x46cf97e8 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x582dadec comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x656085f7 comedi_close -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xb2f84614 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xc2f32b67 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xd3313686 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xef8a0840 comedi_open -EXPORT_SYMBOL_GPL drivers/counter/counter 0x00f34f45 devm_counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0x54f457eb counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0xd30c3f6d 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 0x843d6541 sev_guest_decommission -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x88449a4c sev_issue_cmd_external_user -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x8fac14a2 sev_guest_df_flush -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x91722dce sev_platform_status -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x96d6dcad ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xd02e197f sev_platform_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0206933b adf_cfg_dev_remove -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x039173be adf_dev_started -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x049749ff adf_devmgr_in_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x09d3831c adf_gen2_cfg_iov_thds -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x14543ff9 adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x14e7f65d adf_exit_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1b8e3bb9 adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2054ba88 adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x24b50d0b adf_flush_vf_wq -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x267a4ca5 adf_gen2_get_accel_cap -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2be4e269 adf_gen2_get_arb_info -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3e484fef qat_crypto_dev_config -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 0x41781a04 adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4d093b4b adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x51aeab46 adf_dev_start -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x53080cfe adf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x54098506 adf_disable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x566c8c52 adf_dev_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x591aa326 adf_dev_get -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5ddc16f6 adf_devmgr_rm_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6d9ea5c6 adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x74f2c164 adf_vf2pf_notify_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7cd73f20 adf_reset_sbr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x822348df adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8da066ba adf_enable_vf2pf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9c437bad adf_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9d818f12 adf_reset_flr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9f52167e adf_vf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa2ad83fe adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa55cdc7f adf_enable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa6b3370a adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa9373b9f adf_vf2pf_notify_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa97145ef adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb224c79c adf_gen2_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb38665ea adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb7ed14d8 adf_disable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbe865a49 adf_cfg_add_key_value_param -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbec2015a adf_gen4_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc501ac82 adf_gen4_init_hw_csr_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc573ae74 adf_dev_stop -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc7e2c290 adf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd64519f1 adf_gen2_init_hw_csr_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe43e38c4 adf_vf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe89e7fa3 adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf3c0d8a2 adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf909aeee adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfe87be84 adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/dax/device_dax 0xb1ba7462 dev_dax_probe -EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0x2ba07001 __dax_pmem_probe -EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0x2a036ae1 unregister_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x55c89ebd register_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x6225a20d dca_add_requester -EXPORT_SYMBOL_GPL drivers/dca/dca 0x74660901 free_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x80b851c7 dca_remove_requester -EXPORT_SYMBOL_GPL drivers/dca/dca 0xaa634427 dca_get_tag -EXPORT_SYMBOL_GPL drivers/dca/dca 0xac34ecec dca_register_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0xcece2843 dca3_get_tag -EXPORT_SYMBOL_GPL drivers/dca/dca 0xed98cfcd alloc_dca_provider -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x5ef503f7 dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x8fec9b44 dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x09d49da7 idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x47150d37 do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4f2b8d68 dw_dma_acpi_controller_free -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x53f88534 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x62c7a4ed do_dw_dma_disable -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/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 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 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 0x4597e5ea dfl_fpga_feature_devs_remove -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 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 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/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 -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x234a5113 devm_fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x33d0408d fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x58ef4ec5 of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7c009d67 fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7f61318c fpga_bridge_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x80b38b10 fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x9838b294 fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xaa2d90ec fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xbc15098b fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xce2dfcb8 fpga_bridge_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xfd1f56ef fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x446e42c6 fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5d4d6daa fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6b28f34f fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x82a7dbc9 fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8e86c05e of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x947c4887 fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9cd9838e fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xba4900e4 fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc67aadc7 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd1dfb6b8 devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xdffbb589 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe4807e47 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe9c4bd2f fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf7d8bb6e devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x17819901 fpga_region_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x3aac1f94 fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x47ee0007 fpga_region_class_find -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x49b83dcc devm_fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x61b7c634 fpga_region_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xd4209d73 fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xd52e0631 fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x36ced603 gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x39dde050 gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x4ae92f97 gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xbf9802c0 gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xe1ffb937 gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x902095c1 gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xbb1f1996 gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xcca0e28d gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xe014e790 gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xe04b338b gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x6759f1d8 bgpio_init -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xb5fec6ab __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xbcb57b2f __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x0cbc7abd analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x0fb03f9d analogix_dp_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x1c566a6a analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3bd3946d analogix_dp_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x63f5bbc4 analogix_dp_stop_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x88920270 analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xca201443 analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe8859739 analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x068364b9 drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x076ee001 drm_gem_cma_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0a80faa6 drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2917d056 drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x30eb4227 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x395ac424 drmm_kstrdup -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4864e2b9 drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4b55fff1 drm_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x607e3021 drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x63ea7d40 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6ed66c56 drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x76874ec0 drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x79b449ae drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7a0a47af drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7a690017 drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7ac18c0b drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7f283952 drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8383450d drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x88320dd0 drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x933aea77 drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9776a39a drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x98b99282 drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9d5bde97 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa65161ad drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb1630d6a drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcdbd5693 drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcf7d55e2 drm_gem_cma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd53507b2 drm_gem_shmem_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xeae58807 drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf9acbeda drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x00b1bf36 drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x052ad5e8 drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x135b0041 drm_bridge_connector_disable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x26631f76 drm_fb_cma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5705841a drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x675f1e5c drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6e31da8f drm_bridge_connector_enable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x78faf937 drm_fb_cma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x89a3a480 drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x94d82d1d drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xae98c1e0 drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xdae6398e drm_bridge_connector_init -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 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 -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x10d1b03e __SCT__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x12b01e9f gb_operation_put -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 -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3c5393fd gb_operation_result -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3f133cdb gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4583597f greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4a51d72e gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4c4f0a3d gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4da688f7 gb_operation_unidirectional_timeout -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 0x5f84a8b8 __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6158e534 gb_connection_disable_rx -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 -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x78fedb98 __SCT__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8003c217 gb_operation_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8879c1db __traceiter_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8f351f4c __SCK__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x922b68fe gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x94a6cfef gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x978b2417 gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x98f849a6 __SCK__tp_func_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa2e4b0ea gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa91897a9 gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaa26c877 gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xadd7926d __SCT__tp_func_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae877457 __SCT__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb1d83dc7 __tracepoint_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb7e98271 gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbfb52284 __SCT__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc6d2d4ff gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc93249d8 gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xca378c0e __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcac2debe gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcbad84f9 __SCK__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd87143ce __traceiter_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd99be2c4 __SCK__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe4c49603 __SCK__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe6b45fb6 __SCT__tp_func_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeaf85b94 gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf35903f8 __traceiter_gb_hd_release -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 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 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 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 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 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-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-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/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/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 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/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 -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x399de054 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x494ee506 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5250230a hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x585ce73f hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5b73521d hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x67d5fbc8 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x86614453 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x88f7823f hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9a1b11f8 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9ba33326 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9de3f453 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbe8c30e7 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe988e62f hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfddd7c92 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x01c95fe1 vmbus_free_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x07ed2a0e vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x120cf0c8 vmbus_connect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x19213865 vmbus_send_modifychannel -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1c21e4df vmbus_next_request_id -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x22a354de vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31e2e77f vmbus_free_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x321055cb vmbus_prep_negotiate_resp -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3705908c hv_pkt_iter_first -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x41faa8a6 vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x44d5d500 hv_pkt_iter_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x531f4b32 vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x55385090 hv_pkt_iter_first_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5c038cfa vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5d6385cd vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5fade994 __hv_pkt_iter_next -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x674e657e hv_ringbuffer_get_debuginfo -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6e07e22b __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x739bf361 vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x76396e71 vmbus_disconnect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7d9ec2e7 hv_ringbuffer_spinlock_busy -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7e9a95c7 vmbus_connection -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8a5a2720 vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa4695553 vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xaa4cc5b9 vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xaa93f560 vmbus_request_addr -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xab950671 vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb5776c08 vmbus_are_subchannels_present -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb59b667e vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbd844cc4 vmbus_alloc_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc0ff5f83 vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf0b63283 vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x4a96264d adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xc4b2c517 adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xed11de85 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x3b1dc48f 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/hwtracing/intel_th/intel_th 0x1e1d6d82 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x56d36c4d intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x608bca13 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x67207866 intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8d5ca873 intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa970f3e7 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd99707dc intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe0baf666 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe9a4c96e intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x0f23e918 intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x31fc861a intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x6565aa2a intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2606d984 stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x48a18b37 stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x90db0e54 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x958733f9 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9b700153 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc1ac9505 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc8516849 to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xca0d28cd stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe8647ccf stm_source_register_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x2e1e069a amd_mp2_register_cb -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x53abb4df amd_mp2_rw_timeout -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x658db0f8 amd_mp2_find_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x6a7aeaff amd_mp2_rw -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x78c161fc amd_mp2_bus_enable_set -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xabe2364d amd_mp2_process_event -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xcfe8e5e5 amd_mp2_unregister_cb -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0xd30267d4 nforce2_smbus -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x44b28bd5 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xa6e02217 i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xb2ca106d i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xfcbf83b7 i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x3361f21d i2c_register_spd -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xd504ef29 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x06602aa8 i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x06c72f85 i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0712c304 i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x14a31450 i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1a2ac186 i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1b2a952e i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1c27a920 i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x271ccdf9 i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3a5b4b57 dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3a94c890 i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3b1c3d2f i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3d2fedfa i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4b763bcb i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5031f25a i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5931966b i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5c02b68d i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x70600a82 i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8129fc91 i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9d9dae8e i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xabea97c9 i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbc6fa7aa i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbdc2cb61 i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd4d58c4a i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdf8d84f0 i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xea21c0ec i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x89aeda31 adxl372_readable_noinc_reg -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xe404f435 adxl372_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x50a214d3 bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x5b15f5ec bmc150_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xa36db5d8 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xd5bb49a1 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x064181be bmi088_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x3d88cab8 bmi088_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x66147998 bmi088_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x8169aae4 bmi088_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x34b45cde fxls8962af_i2c_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x3920b133 fxls8962af_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x966ac81b fxls8962af_spi_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xef16be67 fxls8962af_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x625252c6 mma7455_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x6498c65d mma7455_core_regmap -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x730a9e94 mma7455_core_remove -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x6ac8f78a ad7091r_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x95f1df04 ad7091r_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x3fe71582 ad7606_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xc3b6fc8f ad7606_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x343dccd3 ad_sd_reset -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3a628f47 ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x51a2fc16 ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5980f9e1 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5b610237 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x615b86cc ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb62d44d1 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbef2546c ad_sd_calibrate -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe31fc8a4 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe77c003b devm_ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x8dcbe0da iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xda9e5a02 iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xed5d2aae iio_channel_cb_get_iio_dev -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x011f27b0 iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x23fd07a1 iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x3e924a27 iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x426c87a7 iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7770e821 iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x77763216 iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa073ee94 iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa1723dc2 iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc715adab iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xda2c2245 iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xdd8eec74 iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe8364209 iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x61bdb756 devm_iio_dmaengine_buffer_setup -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xaf59396b devm_iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xfef4241e iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x5102ecd8 devm_iio_triggered_buffer_setup_ext -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 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 0x6774f071 cros_ec_sensors_pm_ops -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/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 -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xa7c02acc ad5686_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x3339e797 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x8208a4c1 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xd1aa4211 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x3a565532 fxas21002c_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xc18d91ed fxas21002c_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xf26ba183 fxas21002c_core_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x4c07165e bmi160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x77747b0a fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x6ec104d7 inv_icm42600_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xba7169b3 inv_icm42600_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xe58cc131 inv_icm42600_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x1ccbba6f inv_mpu_pmops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x7eadf2bd inv_mpu_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xb44765a1 st_lsm9ds0_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xd3bcb146 st_lsm9ds0_probe -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x00106dcf iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x01f58216 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x086b4301 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0dc69bb0 iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x10f351a2 __devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1d60886c iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x233ff175 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x25fe8d85 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x27a6179c iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2c8df615 iio_dealloc_pollfunc -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 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 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 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 -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9ef0cc44 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa1d23f30 devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa402f41a iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xacc94c33 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb225bb1d iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb26b609f iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb29eb99f iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb31bd455 iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbcc50c06 iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbcfeed54 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc266d593 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc731df5f iio_read_channel_processed_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcaae4bd0 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xce42df58 __devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcf9b30cc iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd411fd76 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd84ca894 iio_read_avail_channel_attribute -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 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 -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table -EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0x98358bcb mpl115_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x13f13e55 zpa2326_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x88e24c3f zpa2326_remove -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x8b275e2b zpa2326_isreg_readable -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 0x2e1f1f0d rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x37b1e2b5 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3b0ce352 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4e3c4dcf rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x54caaa3d rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5c4600f2 rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6893b96e rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x83c9005b rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb5c2c1c2 rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc12738d8 rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc9be1a0e rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf9df0175 rtrs_cq_qp_create -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 -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x8da83e2d adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0ea903b9 rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x11b2cde0 rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x40d7969f rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x423c5d33 rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5c821c3f rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7d33c18b rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x83ab9015 rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa290102f rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xac7fc819 rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc954e0e2 rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd75abf7a rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe2e83d47 rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xfb0a8af4 __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x7267fe57 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x77723af4 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xf0254397 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x04502814 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x0d7fbf41 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x9454ca37 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xba1db77a cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x50e54e97 tsc200x_remove -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/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 -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc38c2a0a ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd02cc259 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd378a79c ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd7814473 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe9834e9b ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf9add071 ipack_put_device -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x23c198c4 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x407cc2ab led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4ccc363b devm_led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x559d2395 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x5a23557a led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6b97c619 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb664883f led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd3742385 devm_led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x122a92ea led_mc_calc_color_components -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x30f51735 led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x433c4a80 devm_led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x62c29d9f devm_led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xbc36f52b led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 0xad6440b4 __traceiter_bcache_gc_copy -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 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 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 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 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 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 0xedf90bb3 __SCT__tp_func_bcache_read -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 0xf7a5edc7 __SCT__tp_func_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb767f16 __SCT__tp_func_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfce76b1e __SCT__tp_func_bcache_request_end -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 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2301c86b dm_cell_quiesce_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x33a6f8cc dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x40303523 dm_cell_put_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x45eef294 dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4cbfe7cf dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5564e06c dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x62580208 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 0x71c557d9 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8db26d7d dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9810cbd9 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb0714048 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd366071d dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdef4e387 dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf142aa72 dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xffd36b92 dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 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 0x8d1120a5 dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb04f56ab dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb2438d54 dm_bufio_release_move -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 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 0xdf5ed2ea dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bdae47 dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe50a40c1 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x4d008d72 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xaa3f3e1d 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 0x04052fe4 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x449f5500 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 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc019a2b7 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd348ae03 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xe4aa01f0 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xead422b4 dm_rh_bio_to_region -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 0x0b46ad31 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 0x13c3732f cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1e72caf1 cec_register_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x24e79ba0 cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3419dee3 cec_s_conn_info -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x34cb74cd cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3668305f cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x46a6a7f7 cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x49e6fe9e cec_notifier_conn_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x552f1de7 cec_received_msg_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x57235c42 cec_transmit_msg -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6e960f18 cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x788c953a cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8ba8efdd cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9a3a6256 cec_transmit_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa91b65ee cec_s_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xab3e3bde cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb771703b cec_unregister_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xba342c4d cec_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc80df819 cec_s_log_addrs -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe447e9b0 cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x004a360a saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x04e3b8d5 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2ced48b5 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3ee33917 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4cd9145a saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5a4236ad saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8ecb2bbf saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9ea4cdbe saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa4697ba5 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xeb742180 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3a1ee1a8 saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3fa9784c saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x54cd11ca saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xae8382bb saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb4169233 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xdd74fbd9 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xfefcd09f saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0000bb70 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0e63fdd8 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4889ff9f smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x53534929 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x738b502d sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x81f8a448 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8eb71a38 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9d438c99 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa6e9f940 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc0fc049a smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc725f4af sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc87886dd sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd2219ea6 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd2e838c0 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe98296c6 smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xedf3fd98 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf76f20f9 smscore_getbuffer -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 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 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 0x4ed3fb1b __SCT__tp_func_vb2_buf_done -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 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 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 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 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 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 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 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 -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x86ce8725 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x04e6cb42 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x06178b34 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0fa60d1c vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x14b058a3 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x165d89b8 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x179dd2d0 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2dafbd32 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x35389add vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3611734e vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3bd9cda1 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x48e8fb54 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x504a7f96 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5557bf71 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x64ef7438 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6650264c vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x685e2089 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6f3d1496 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x78e28bdc vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7b28eff1 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7cd8703e vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7e027535 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x85d9a422 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9db76665 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9eae019f vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa4f29828 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb28ad2fa vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc157bb60 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcb2f29ef vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcba92048 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd21dfcd0 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe2a6260a vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf08b4168 vb2_find_timestamp -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf4c3ae7b vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfacdd9db vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x3be494b4 vb2_vmalloc_memops -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 -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0cbc3fab max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1763ed01 max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1b5af3b7 max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3809c9d8 max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x38603400 max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x43b8229c max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5f25425d max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x732d273a max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb9f5ea15 max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd1ddc8b8 max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd2f75c03 max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe4d3f474 max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/i2c/power_ctrl_logic 0x61e30e03 power_ctrl_logic_set_power -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0509a612 media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x063b6ee2 media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x099feec5 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0ab18090 media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x10552313 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1c51a8f3 __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x20bf57e6 __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x212f23f4 media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x29684fc5 __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x305a0963 __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x32c7bd9e media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x413a44a3 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x41648b38 media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x44c43b26 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4add9e0a media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4b416a0a __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4bd35ea0 media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x544ce7d3 media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x590ada30 media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5b8c24e7 media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5ce4aff0 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5f8e4356 __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x64c27859 media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x65bc3abc media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6dff324d media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6e3a123a media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8922d131 media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x892817d5 __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8e3c51ef media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x96704a88 media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x98bd3dda media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa2616435 media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa43d7df5 media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa9120f5a media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaa8ff7b4 media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xada34183 media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xafa78407 media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb84e51eb media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcd6e5390 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcfd57542 media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd95f99c7 media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe40d7e42 media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe43bdb61 media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -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/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 0xc70f16ae 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 -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x247056c6 ipu_buttress_map_fw_image -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x2b42c6f7 ipu_cpd_pkg_dir_get_num_entries -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x4529889c ipu_cpd_free_pkg_dir -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x58745343 ipu_send_get_token -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x5d5d2189 ipu_recv_put_token -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x64aaeec2 ipu_cpd_pkg_dir_get_address -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x7842c730 ipu_cpd_pkg_dir_get_type -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x88f63623 ipu_trace_init -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x9f47869b ipu_buttress_add_psys_constraint -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xa996e10f ipu_fw_com_release -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xacd35ffb ipu_buttress_tsc_ticks_to_ns -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xad663d9a ipu_fw_com_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xae12089d ipu_cpd_create_pkg_dir -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xbbc26100 ipu_trace_stop -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xc43de6ba ipu_buttress_unmap_fw_image -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xc76903d5 ipu_fw_com_close -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xcfff394e ipu_fw_com_open -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xd82eb3df ipu_cpd_pkg_dir_get_size -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xe10e6751 ipu_fw_com_ready -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xe8a751f3 ipu_cpd_validate_cpd_file -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/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/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 -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xbeeb1b73 mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xddbd1605 mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xac5924c1 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xb65b6854 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x3980ffe1 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x54dff522 si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x5e6377c3 si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xa5647477 si470x_start -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xc19e4de2 si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0957e861 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1544801c rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1b2ad000 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2df5f454 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x40517d3d rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x440fb00e ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8a3ac0f9 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x96752db7 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa2fa8d84 devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa960ba1e ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaab0d73a ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbf1970f5 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc12536d1 ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc3391cc4 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd417ee2e rc_keyup -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 -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xaa9525f6 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x6ebe4c4e tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x485f4a81 tea5761_attach -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 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x19445b81 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1f164dc4 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x25dade03 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x26831520 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x31edf5cd cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x37c427fb cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x399913cd cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x536b227c cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x599fb9b0 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x682e54a2 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x68fcd8e4 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6eb80433 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8cd865b8 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc7c56118 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xce94021f cx231xx_capture_start -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/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 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x45b93cc6 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4d5459de em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x68a2c00d em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x76b43e70 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7f5cd33c em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8b436f4d em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa22e0e31 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa8acf148 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb2d6d4f6 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xca50f963 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd4ff4a4d em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe72bd59e em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xef577893 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfb9bdd00 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xff10e552 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x00ffbb52 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x69fd2dcf tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x712443d5 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x741553b0 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x1ac279a8 __v4l2_async_notifier_add_fwnode_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x2137b8ef __v4l2_async_notifier_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x2d2b346f __v4l2_async_notifier_add_i2c_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x447c92b4 __v4l2_async_notifier_add_fwnode_remote_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x798be05d v4l2_async_notifier_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr -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-flash-led-class 0x8eae0f97 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xc88dc26c v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xfd439a6b v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x07fa7724 v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x0f0b5481 v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x1937cae1 v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x1f0bf90c v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x211b6103 v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x93609b2d v4l2_async_register_subdev_sensor -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x95282921 v4l2_async_notifier_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x9e3a4be5 v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa4d55274 v4l2_fwnode_device_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb2b8e171 v4l2_fwnode_connector_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x07ae4b8b v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x09a892ef v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x21e82c96 v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x24447c30 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2b31c832 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2ba21f5a v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x327ae75f v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x369206c2 v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x415ee054 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x526cd3e9 v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5a8ff4b6 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x600b785f v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6d57534d v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6fdb456d v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7799bcd0 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7aa79b23 v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x86e59654 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8eba3bd9 v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x958994fe v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x96ce2153 v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x96ff227a v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9e2ff61b v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaa75fa54 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xab9902c8 v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xac025d0f v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb27cc250 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb37f4ca1 v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb6d6f451 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb9a01b89 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc13443f1 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc2f56397 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc447828c v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc5061798 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc8e67be2 v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcc31a15f v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcc74336d v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd038282c v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd8343bad v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xddc9914f v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe4d4162f v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe81ea9e0 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf48c442b v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf78e6754 v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf7e37097 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x12d56a39 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x36a81007 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x43956b90 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x47488860 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x554b8c2c videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5607a225 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x56ab4fe2 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x57ecc0a1 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5ec073d2 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x66724ff8 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6da9ceec videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x854df0b9 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8a49bd26 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x982128f3 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa2172b52 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa3016f59 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbaad1bb3 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbed4ad2f videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xccbc710e videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd6a92427 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdc418099 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xea20e384 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xee1310b4 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf71fa4b5 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x5774bfbe videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x7c49fc4b videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x862d91a6 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa487ee68 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x573daa66 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x65ef90c9 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xa0593250 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x043b26ac v4l2_subdev_link_validate_default -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 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 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 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 0x62dc2074 __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x663f04cc v4l2_src_change_event_subdev_subscribe -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 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 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 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 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbafac2b7 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8ba0b3c v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8dd867f __SCT__tp_func_vb2_v4l2_buf_queue -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 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 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd541e31a __SCT__tp_func_vb2_v4l2_dqbuf -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 -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x6595be17 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x91a9a21b pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0562a0ee arizona_request_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x07357739 cs47l24_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0a0c0fe6 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2d7cdad3 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3c8e0c27 wm5102_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x500ae025 arizona_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5f2da213 cs47l24_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x77dc05d9 wm8997_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fb6cd6b wm5102_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x82e59956 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x894a7b43 arizona_clk32k_disable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8f6cd42b 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 0xae95ad2e wm5110_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbf8da0af arizona_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc1dd581a wm5110_spi_regmap -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/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 -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x64425829 da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9b7e9511 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xca76af39 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe503f93a da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x0cbc3876 intel_lpss_suspend -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x0d6fb4e0 intel_lpss_prepare -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x4171b59a intel_lpss_probe -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x9aa66f45 intel_lpss_resume -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xeefb4072 intel_lpss_remove -EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x769edc5d intel_pmc_s0ix_counter_read -EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0xdc799144 intel_pmc_gcr_update -EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0xe085dd37 intel_pmc_gcr_read64 -EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x58e0bf2d kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8e4892d2 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb4477b35 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xce8fe1b0 kempld_release_mutex -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/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 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x100f8415 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x17340dfe lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x23eab404 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb871bec9 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xbea95054 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe1e13952 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf6c2d94c lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x01b01e2f lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x10cd5e77 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x599f7e4f lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x13b764d7 cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x13bab897 cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x16d6c3d8 madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1ed9c077 cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x239b8315 cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3f09cd83 cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x508279db cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x508fa59b cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6e265138 madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x87672422 cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x876af862 cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9411f257 madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9a41d317 cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9a4c0f57 cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa5df78e6 cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa833486f cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa83e942f cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb0e63fdf cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb0ebe39f cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc452392e cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc45fe56e cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd974ce1b cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd979125b cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xeb065563 cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xeb0b8923 cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf3d322d3 cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf3defe93 cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf571ec4e cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x0138607f mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x218dfc79 mc13xxx_variant_mc13892 -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/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/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/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 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x6edf03af alcor_write32be -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_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 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x21f1130a rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2747d20f rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7aa16950 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x912325f6 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa2255c42 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb17a7301 rtsx_usb_ep0_write_register -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/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 -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x4b711f77 oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x5909e701 oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x780d3f01 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x84eba96d oslec_free -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 0x005168fd enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x375ca8a6 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x598ce424 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x59a4bf37 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x834e78cf enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9d48b89f enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xce6639e4 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xff447849 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/ivsc/intel_vsc 0x11ec310c vsc_unregister_csi -EXPORT_SYMBOL_GPL drivers/misc/ivsc/intel_vsc 0x45138f90 vsc_register_csi -EXPORT_SYMBOL_GPL drivers/misc/ivsc/intel_vsc 0x5763033e vsc_acquire_camera_sensor -EXPORT_SYMBOL_GPL drivers/misc/ivsc/intel_vsc 0x6b97696c vsc_release_camera_sensor -EXPORT_SYMBOL_GPL drivers/misc/ivsc/intel_vsc 0x77b2fb7c vsc_unregister_ace -EXPORT_SYMBOL_GPL drivers/misc/ivsc/intel_vsc 0xfaaaa50d vsc_register_ace -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 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/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 -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x36a2bebc mei_hbm_pg_resume -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5529d1c1 mei_irq_read_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x55ce77aa mei_cldev_recv_vtag -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x58c8c88d mei_cldev_recv -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5ca469c6 __mei_cldev_driver_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5f9ed71d mei_cldev_driver_unregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x673ab42f mei_cldev_get_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x78bacded mei_write_is_idle -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7f4e77ba mei_deregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8afa77b9 mei_cldev_register_notif_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90a24af4 mei_fw_status2str -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x95823af7 mei_stop -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x990d9ba5 mei_start -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb2570e04 mei_cldev_enable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb595051b mei_cldev_disable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc5297a48 mei_cldev_set_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcb309e67 mei_cldev_register_rx_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcd8ac836 mei_cldev_enabled -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd008e93d mei_restart -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd12085a6 mei_cancel_work -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd3313b90 mei_cldev_recv_nonblock -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdef48e89 mei_reset -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdf01a314 mei_cldev_recv_nonblock_vtag -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe4179186 mei_cldev_send_vtag -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xea5e46de mei_cldev_send -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xeabfa9fc mei_device_init -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf9eb6031 mei_cldev_uuid -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfbe45f05 mei_irq_compl_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfe233b46 mei_irq_write_handler -EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0xff84e04e 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/ti-st/st_drv 0xb7499403 st_register -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xf594e8f7 st_unregister -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 -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 0x1ef7285c 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 0x86816bef vmci_qpair_peekv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xb572e830 vmci_doorbell_create -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xbcb85f62 vmci_doorbell_notify -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc04c7e84 vmci_qpair_get_consume_indexes -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc403cafe vmci_is_context_owner -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc7f8542b vmci_qpair_enquev -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xde3abc2e vmci_datagram_create_handle_priv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe0cc9c92 vmci_qpair_alloc -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe11895c1 vmci_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea143610 vmci_datagram_send -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea61eefe vmci_qpair_produce_buf_ready -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 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-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 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 -EXPORT_SYMBOL_GPL drivers/most/most_core 0x12d0cf69 most_put_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x24a485ba most_get_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x4cabe932 most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0x52364807 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x6dcd3d83 most_stop_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x877dbfbf most_start_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x988f5a48 most_register_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa5dba86b channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xaa043260 most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0xba013c9d most_deregister_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0xdca03292 most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xee91ef9b most_submit_mbo -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x5d4eb956 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x62679cbe cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x9f79b928 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x03a1459a cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x7df30e4a cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x8e0ac1cc cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xec3468cd cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x7dcd25ae cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xa0b49189 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf257dd88 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x28a7ac1e hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x7b918680 hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x010fd9d3 get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0189450d mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0638f015 mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x084d5eb9 mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1008234d mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x11197a23 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1947fbe4 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1e9d97b1 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2097d9cf mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x218c5437 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2ad72bb3 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x331c50e2 mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x35fa9d9e mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4312dfe4 mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4bc2ec94 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4d9b39e5 mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x52f80a3c mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x54c6b203 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5599a731 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x57bdcf03 mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x58c126d2 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x65bea866 mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x673e13bb mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x74536d91 mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x74b489da register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7567f50a mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7a9f8e6d __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7db9366f mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7e7a2d0a mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x80140b20 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8064c1f3 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8245f887 mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x84f6c782 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x89097f04 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x891abfb8 __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x89a60727 mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9742185e mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa0bfbb24 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa61fb7bb mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb16f8481 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbc70ba20 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbd770ca2 mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc728c3f2 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcce27392 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdf3b3e39 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe2c05c9d mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe4dd633c unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe6d1d91c mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe8832576 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeff5754c get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf323b2e4 __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfaba59f9 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xffbd8c62 mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x067171ee add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x5b062549 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x7a3bc4a8 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x9ec7b815 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa1e0a8dc mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1b1a7c40 nanddev_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1b5fefd0 nanddev_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x24a6b141 nanddev_ecc_engine_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x327bebac nanddev_bbt_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3c4d3c5f nand_ecc_tweak_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3d16b600 nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x405d4588 nanddev_markbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x725a6fe3 nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x81df66d7 nanddev_bbt_update -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9030703b nanddev_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9d419e29 nanddev_mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa5100287 nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa659d549 nand_ecc_init_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xacf3e53e nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xbb934e56 nanddev_isbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xbcb14c12 nanddev_ecc_engine_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xcfbe3631 nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd186313a nand_ecc_restore_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdc3089f1 nand_ecc_cleanup_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe03a17b0 nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf6bc9416 nanddev_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xff039f06 nand_get_large_page_hamming_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x56146d23 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x7aaefeed onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x5c7b71ed denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x054c4129 nand_write_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0b422019 nand_prog_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x16127484 nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x203a1c81 nand_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2611b96f nand_gpio_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2792eba8 nand_readid_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2a7ec144 nand_read_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2be61944 nand_read_page_hwecc_oob_first -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3592a728 nand_change_read_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x36673915 nand_select_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x371ac851 nand_erase_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5fc4b31c nand_read_oob_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x64edc44e nand_decode_ext_id -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6948fe14 nand_status_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7702f709 nand_deselect_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x78cd88f2 nand_ecc_choose_conf -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8bd1e4cb nand_prog_page_begin_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9f8a2494 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb8d27fd2 nand_soft_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd070acb2 nand_reset -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3c672b8 nand_subop_get_data_len -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3ffab4a nand_read_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd41ff2ac nand_subop_get_data_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe4e27e93 nand_prog_page_end_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xee15e477 nand_op_parser_exec_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf58ddf65 nand_reset_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x4ad6b8c0 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x3e46d569 spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x8df6fca9 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x09f9d09c ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x09fc87ab ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0b771338 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0cc74252 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0e0df9c4 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2385b074 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x53c194b8 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x857aa5ea ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa1e31fb3 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xba5e2d8d ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc870efd0 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc9a69f03 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe82e8318 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xea25c49e ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x090c93f7 devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x4dbbd6bf devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5684b5b5 mux_chip_free -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5873c819 mux_control_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x66bb5624 mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6b7a54e3 mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7ca4dad5 mux_control_try_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7f70c262 mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x95416c30 mux_control_get -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 0x6fbc4d08 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xca9f437a devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/bareudp 0xba7f21bb 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/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 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 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/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 0xed426aee lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1e051a89 ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x36b58cf7 ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3f7afd9c ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x47a4457e ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5ba459c7 ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x60f87916 ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x62f74304 ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x864a5712 ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x984a7390 ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa69662d1 ksz_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc92290d7 ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xebf08fec ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xec7ec2aa ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf201e502 ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1d8508d5 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4014411e rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4a913dac realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x56190300 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5d393b42 rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x61714d81 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x67a42cc3 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x98b0388d rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9d0c4154 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa2e98d07 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xae8e8c50 rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbec6c830 rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc9d9f6a3 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xdda38c8d rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xfcf85f61 rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x0244a23a i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x254c14f0 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x146d73e4 ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x8fc8bf1f ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xad15946f ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xb948f3c7 ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xbb411d2f ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03ef4364 mlx4_get_counter_stats -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 0x07db3747 mlx4_set_vf_rate -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 0x16eaa200 mlx4_set_vf_link_state -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 0x1f8a6409 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x223925b2 mlx4_set_vf_mac -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 0x3ddf35cb mlx4_get_active_ports -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 0x408091a5 mlx4_register_interface -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 0x45fdc796 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b1e531b mlx4_alloc_cmd_mailbox -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 0x571e55bb mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x587f329c mlx4_phys_to_slave_port -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 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 0x67d92671 mlx4_multicast_promisc_remove -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 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 0x88a2be3f mlx4_phys_to_slaves_pport_actv -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 0x8ce6a591 mlx4_vf_set_enable_smi_admin -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 0x919da1ac mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x931c998a mlx4_mw_free -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 0x9b63ad11 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b92d780 mlx4_get_slave_default_vlan -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 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 0xa92d3fee __mlx4_cmd -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 0xabcb2969 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad3694c9 mlx4_set_vf_vlan -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 0xafaa2197 mlx4_vf_get_enable_smi_admin -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 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 0xd9120763 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdeba3baf mlx4_vf_smi_enabled -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 0xf779aa10 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb09f8e8 mlx4_phys_to_slaves_pport -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 0x00983da9 mlx5_core_query_vport_counter -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 0x0ba19c55 mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b121835 mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1daeee12 mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20c86383 mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21442f0a mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x217ea78b mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x219b4fb0 mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2533c906 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2628d526 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x265c6307 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x266d98aa mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28aab1ad mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2baa46e0 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f973cfe mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33d1812d mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35140102 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c854af4 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e941183 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ff18166 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x479d4999 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49461d2c mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b205537 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bb480c3 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d0dd8db mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e5f4ab1 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f12579f mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f328353 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f428fea mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fb187d8 mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5236bf32 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58319e54 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x688b143a mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68bc34bf mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bf1fbbd mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71bf1546 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79aaebae mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85c7f385 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b404852 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d60462b mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90dfd796 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9582c1aa mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98375ae7 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9abe1dc6 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d36ab67 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e17d8a5 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e272e0d mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa355dad4 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5383e3a mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6b874bb mlx5_query_port_pfc -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 0xaa53840e mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab250d9c mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab4c086a mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb07a1ded mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1954dae mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5a46a8d mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb85ee9cf mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbecebb0 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc072eb37 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0d07ada mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc60413b2 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdfa6cb1 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb7ade1b mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbaa94ce mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbb1fe62 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbf43dc6 mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd9a63ac mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed184989 mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef545a21 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd82648d mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfeba0245 mlx5_eswitch_get_total_vports -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/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 0x2267482a ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x432e80f9 __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x577c33f4 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x613b829b ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x734c596d ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80a92dd9 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x869ec19a ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8fed48bd ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xacc56eb2 ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe1298dae __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe57d1208 ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xed4c1885 ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfbed675a __ocelot_read_ix -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/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 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 0xca186846 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x52549542 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xbd0784f0 ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc14211c5 ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xd81b8e92 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xda9c9dbe ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/macsec 0x66e80143 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x04b5f8a5 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x1b7a2db7 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb13bcc0c macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xdb394547 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/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 -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/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 0x15c73498 phylink_mii_c22_pcs_get_state -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 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 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 0x9ad6f36d phylink_decode_usxgmii_word -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xae81bf92 phylink_of_phy_connect -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc0a8f4be phylink_resume -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc3906c58 phylink_ethtool_ksettings_set -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 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 0xeed324c7 phylink_mii_c22_pcs_an_restart -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 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 0xd2f14327 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 0x2a7fbbc2 vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x4334bed1 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x4f309aab vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xbeef0311 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xa45b4b0d libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b7ae570 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3cce9e31 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c81ab42 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xce13ef7f il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe2c5750d _il_grab_nic_access -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/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 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 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 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 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 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 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 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 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 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 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 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 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 0x05dc495f p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0fae75d3 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1a66ef7d p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7106605e p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x93d6dbe8 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x9b693b1d p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xae73acef p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe38cee14 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf79fd159 p54_parse_firmware -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/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 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0237f772 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x03412dfb lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0dad8e51 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x213b7c58 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x35110536 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x3f366dd1 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x61389d95 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa9685e37 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 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/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 0x01667f71 mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x03727860 mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x053ac2d9 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x066b0a33 __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x068d7dbf mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x06eeab51 mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0a31b3dd mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0d6dcaf8 mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0fb8cbad mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x11b52438 mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17c540d2 mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1a58588a mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x22ae1a46 mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2518e912 mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2a17d1fb mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x38b329dc mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x39c8a7dc mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41ad3968 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x43d0537f mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x476d7cac mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x56c6f303 mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x58f59373 mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5b1fe21c mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5f35e64b mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x639d3722 __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x658d168f mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x66254572 mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6a6b20a4 mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6ba98d52 __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6beaf5cb mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6f5dbba3 mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6faafed9 mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x70a5924c mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x74c4fc4a ____mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x75e215c7 mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x77882454 mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x78dd59af mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7a2c3c8c mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7c674c06 mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x80379d98 mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x84f49823 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x88e790dd __SCK__tp_func_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8ecc6cc2 mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x92189a7e mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x953bf146 mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a5471af mt76_sar_capa -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9bc23df1 mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9d05c5b1 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9d736302 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa185a77a mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa9787acd __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa9bf06e8 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaa718712 mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xabc151cb mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xac410693 mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb05db70b mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb6855c5e mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb74d19fc __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb100261 __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb31a266 __SCT__tp_func_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbbc92111 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbee646d7 mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc3ae3500 mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc41f79ab mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc9c8d74b mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcb180b9b __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcc1d3759 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcdf393b7 mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcec0a2a7 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd02b7ec5 mt76_get_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd30bd32b mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xddc33d8f mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdec258b0 mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe082847f mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe308898a __tracepoint_dev_irq -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 0xe6c7a61b mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeb416e93 mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xed8bf3de mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xee5f0a75 mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf0a1c976 mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf6f1ed32 mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf98c05db mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfad6cd05 mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x00bd467a mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x034a404c mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x047d99b0 mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x07b685d3 mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0e5010c1 mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1082a54d mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x16878ab0 mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x168d3ba2 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x17d95125 mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1cf3ab95 mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x28f8ee48 mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x324ed025 mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3ab7e085 mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x48b3c028 mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4d103121 mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5934ff59 mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5a927693 mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6439da5f mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x65090055 mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6db47ea2 mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7b98d49a mt76_connac_mcu_set_rate_txpower -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 0x9aa001e8 mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa11f5059 mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa27d0a74 mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa6b0e20c mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb20fd5c7 mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb4245ec8 mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbb7b04af mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc8eea8ec mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc9d4db11 mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcbf5d6e1 mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd1e4a785 mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd4522031 mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xde9773ac mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdfc3ecdd mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe0ba5c09 mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe7291d17 mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xedcc0ffb mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf05c53ba mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf58464ca mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf5f4d197 mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf9f99f74 mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfa13c3f7 mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x8dc348fa mt76s_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x9034ead2 mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xedf8952d mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x1d3289ed mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x2a608079 mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x30becb59 mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x50799e5c mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x82d9169b mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x90cc088a mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa922767d mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xaf43d1f1 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb8ed00c0 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x018f43bc mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x02655d69 mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0a059df4 mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x136bb9a0 mt7615_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x150ca271 mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1688f341 mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x284e6d9e mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3a8d3b57 mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x408b81d1 mt7615_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x45e3aaab mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x49f02ed8 mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x51214672 mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5df808d1 mt7615_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x60a8582e mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x64da9dc4 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6b3b417c mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x74fb6aac mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x751ed036 __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7857a209 mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x89c4aec1 mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x89ed1ac5 mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa2f07afc mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa5de882f mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa9f83551 mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb78ee22f mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xba8db1c7 mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcaac6c71 mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe0adc0b1 mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xead81f0f mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x7d645135 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 0x88a357d5 mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x9a3d1599 mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xc581c3b3 mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xebdb7abd mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x66ae51c4 mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x9951f6f0 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x9ca7c33b mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc6436379 mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xdb6cef9a mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xfff88229 mt76x0_config -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 0x04d7153a mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0965e462 mt76x02_dfs_init_params -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 0x0eb1c619 mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x174f47d0 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1d68c6c6 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x202b182b mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x24d58729 mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2715070f mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x27c93a20 mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2fe42c10 mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3586a5b9 mt76x02_tx_set_txpwr_auto -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 0x374e1dec mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3ca71797 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3f0162ba mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x40d2d9d4 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x458aa352 mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x482ed1e3 mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x492393a4 mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x49b78e58 mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4af088b9 mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4df7bd32 mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x516bc7f4 mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5198009b mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x53cd0e95 mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x56c60b36 mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x582ffb80 mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5b6dc860 mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x62fe46fb mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x661e99e5 mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6ac21afb mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x78f6a37f mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x805888d7 mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x81f25c91 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x89f590ff mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8bbac532 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8f19ce78 mt76x02_phy_adjust_vga_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 0x984e55fc mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x985b585b mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x988937d5 mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9ad83c55 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa425941d mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa829fe64 mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa8bd2427 mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbbbb7cea mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbcdc9c96 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc1e52db2 mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc331e974 mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc5ea366f mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcdc0aa62 mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xce6f3419 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd1dc2afa mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xda52a6fe mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdd152eba mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdd79116a mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe09eec51 mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe2168e31 mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe5c841a2 mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xea41529e mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeabf8ee1 mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xed740893 mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf5a1b767 mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf760d0e4 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf7b25106 mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf7f9c80e mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfa430cfa mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfe17f535 mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x023bee48 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x22891ccb mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x26f8e7b0 mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x3e1cd807 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x48a6e877 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x62c87667 mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x73a2508c mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd8cb4c0e mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x018bbd7f mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1d314c02 mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2359a880 mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2af1e620 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x384e3f35 mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x491301f3 mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x53dfa7fe mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x56fc713a mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x618b1775 mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6b6ed8d2 mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7b13fe93 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8b12df15 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8be19337 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9bf5119e mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xad80aabb mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb9916cb7 mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd31da3ab mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd46e8b78 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf580ff64 mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x11817640 chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x2322bc86 wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x6252b8b3 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x67ffa35a host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x92ff859d wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x9a03a960 host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa3e06fab chip_allow_sleep -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/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 0x0806d6e8 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0d531c63 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x180a87eb rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x18cb89f1 rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2498b634 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2ae617db rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x352bc626 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x35dba342 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x38961afe rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3d9f9b0d rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3e4ab06d rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4ea1dc87 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4f812af4 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x510fc40a rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x54ded7fe rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6708c48c rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6ca89b51 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6eb2265f rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x75bcf357 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7f5b247e rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8521db94 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x98fbe611 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9a9c6d41 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa46c50d6 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb36701be rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb49fac31 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb66cb0cc rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbba7f088 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc055849c rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc49c936f rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc962fffc rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcdc30ac1 rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xda30d5d4 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdd072d8d rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe022ecad rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe2c12910 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe48e2a9c rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe5c9181d rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xefba5ed2 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf06f3ee0 rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf3a82dc5 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf6a7abfb rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfcd7ff74 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xffa3ad40 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x270eb8de rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x327cf169 rt2800mmio_get_txwi -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 0x4094f2b1 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4f59be27 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5551d3bb rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5581cee4 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x62824efb rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6bb58ca0 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8355fb25 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 0x998189e9 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xae50bfa8 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb5187a1c rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc90e8068 rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xce616f36 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xda1dbb20 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf83f5257 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x017a356e rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x055028ef rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0a971d0d rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0f38fc7a rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x131e313f rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1cae4841 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1f81feb7 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x233b5369 rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2870d751 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2afef382 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x348367b0 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3e80c8da rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x412aa242 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x420840aa rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4256ca0d rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x483d2f13 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4de81914 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x518c56d7 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x61275e44 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x68897e4b rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x75faf1dc rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x78683c3a rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x78d22afa rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7e74dbe5 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x86626fbe rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8ccfc14d rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8f96f8c7 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x913b86f0 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x95fe91a0 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x96f21629 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9bab952b rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9cb5de25 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9d69703c rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbc3d84a6 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbcb71263 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc64830b4 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcc43f1fc rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd1d12eee rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd8f18f1b rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd9047b63 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdd522b96 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe35d50b1 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe869d0f4 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf005cd2f rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf8894f03 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf9bb73fe rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xff4e6d04 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x01057157 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x1d39ee67 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x49daee6d rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x49ff5e7f rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xf9141663 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x5f07999a rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x61fb6f0b rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xd8d39a7b rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x138ec8fd rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x18f843c4 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1def100c rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x23896a80 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x299151b8 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x66f787ce rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6bd768af rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x74b9e846 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9461ae5b rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa1dfc1af rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa26d3fba rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xce52efb1 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe0cba1f7 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe34013bc rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe4714ae2 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfa1fd8c2 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x297d9bee rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2c234426 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x45c89234 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa9441426 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0615437d rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x079c6d99 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0ea94a83 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0fae0f77 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x113650ce rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x184d1d5b rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2229f470 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x34c6c3d5 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 0x4251af95 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x479a159f rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4ac341cc rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x55b96461 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5d968495 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x650c313a rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x690ad17e rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8a5b0147 rtl8723_dm_init_dynamic_bb_powersaving -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 0x8bed06bc rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x99ce0f74 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa205f395 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb2ac1d36 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbf3058b3 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc43a48fe rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcabcd42a rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcf9a6c56 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xeef0972c rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0bdf108b rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x17fb19e5 rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2441734c rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x25171910 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d32cdfc rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e2609d9 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x43c7b14a rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5253b7a7 rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x56f93e2f rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5b864531 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x642e64bf rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6d22995a rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6dacb3c4 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7439b07a rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x77208364 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x83cbe606 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x93bd48a6 rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x975ce8f3 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9efb9b51 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaa915dc9 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaf8482b5 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb70df2e4 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb91dc735 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb9fbff1b rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe35f5c15 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe368b5b9 rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5854ee 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 0x4ea8b417 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x6050016d rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x634f523a rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x9f3bbcb6 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x2165b50e cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xc21f70dd cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xe5665018 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xfa060ee1 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x359c5dc3 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xa38fd087 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xd181a375 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x038c7a69 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0617a071 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1d72db35 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x22c734cc wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3bf21e9c wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3d6024e2 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3e3867b2 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x407c6c2a wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x414ccaa2 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x496f106b wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4b717c87 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4c797d6e wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x52f52c70 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x566b379b wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x589b7696 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6a48425d wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77460b09 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77d9d677 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7cd1e3bf wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8454532e wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85b127be wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85c38fb1 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8ae0a4f0 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa443c079 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa60b27f2 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa6b7f4de wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xab6bafec wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xae65c2d0 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb08b416f wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbb1d3f61 wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbdcc1508 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbf892b22 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc29c8dd4 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc8d2a5e9 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcc9ea873 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xccfc6126 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcf55eb82 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xebcb7fff wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeedac829 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xef2d53a7 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf53f9a7f wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf82cbbb3 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xff906e5b wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x3d0dea14 wwan_unregister_ops -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x3d9bbf75 wwan_port_txon -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x4dff61e5 wwan_port_txoff -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 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/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 -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 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 -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7927c224 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8b521ef0 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x99bb487d st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa3433ab8 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb454ec18 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x6561f301 st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x999fd52c st95hf_spi_recv_response -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xdf153a7a st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x4436a1ab ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7590ac75 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xeffd6c9d ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x17466ad4 async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x5075a0f8 virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x02fc8d7f __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x179b85ed nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1ae541e1 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x24694c6b __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x25c32860 nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x276abd28 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2f8dbdb3 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x367cf8b1 nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3699f546 nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x36b7d266 nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x38bf4cbf nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3bf2393a __SCT__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4002aad3 nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x40a31767 nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x41594b01 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4352b8d5 __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5378ef96 nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x55f57238 nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x56b1e4b5 nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x58014899 nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5f7fd1e2 nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x67073993 nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6a6057c2 nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6b18a6ab nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7dac60cc nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x877d12ac nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8dd07d03 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x91e06f5b nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9820d3e1 nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9f15d618 nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaa92b9d2 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb62d575a nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xba24aac3 nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbd51a421 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc760a24d 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 0xca93aaf5 nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xce0775b0 nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcf22dbc5 nvme_init_ctrl_finish -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 0xe1158ba9 nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe850732a nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe8a59d6c nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfaf3d59a nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfd0f4d34 nvme_disable_ctrl -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 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x50898a36 nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x806a7c4d nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8b8fb8c6 nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8f99c041 nvmf_ip_options_match -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 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 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 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 -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 0xd9ea67ad nvmet_fc_register_targetport -EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0x1591b2c6 hyperv_read_cfg_blk -EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0x221394ae hyperv_reg_block_invalidate -EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0xe5f73406 hyperv_write_cfg_blk -EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0xfb921e00 hvpci_block_ops -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 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 0x544ce98d cros_ec_sensorhub_register_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x8070f694 cros_ec_sensorhub_unregister_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x6b1be500 cros_usbpd_unregister_notify -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x8bda2df3 cros_usbpd_register_notify -EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x112134ec wilco_ec_set_property -EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x24eef51f wilco_ec_get_byte_property -EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x75bf4d33 wilco_ec_get_property -EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x8b8ae425 wilco_ec_set_byte_property -EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x8f76c163 wilco_ec_mailbox -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 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 -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x899ccfa6 ssam_device_get_match_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8abe0316 ssam_request_write_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8af9e0c8 ssam_device_get_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x91b9025e ssam_request_sync_with_buffer -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9af56008 ssam_controller_device -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9b307ca0 ssh_packet_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9c54f138 __ssam_device_driver_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9f19c00c ssam_device_driver_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa4dca1d1 ssam_device_remove -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa9683db9 ssam_request_sync -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb9bc1e30 ssam_controller_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbd5dd563 ssam_notifier_register -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 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 0x57c46ceb asus_wmi_evaluate_method -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xdcb7977a asus_wmi_register_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x199c0db9 dell_smbios_register_device -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x1b0b3141 dell_laptop_register_notifier -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x45170471 dell_smbios_call -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x7bf08c7c dell_smbios_unregister_device -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x7fd2ce06 dell_smbios_find_token -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x939b2cc5 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 0x4f63c5af fw_attributes_class_get -EXPORT_SYMBOL_GPL drivers/platform/x86/firmware_attributes_class 0xe609be46 fw_attributes_class_put -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/intel_punit_ipc 0x8ee9455e intel_punit_ipc_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 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/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 0x9a5c38f2 isst_store_cmd -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0xa635c1c1 isst_if_get_pci_dev -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0xe18f42a5 isst_if_cdev_unregister -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0xf2d81c72 isst_if_cdev_register -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x1c7565c2 telemetry_read_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x35db93a6 telemetry_get_trace_verbosity -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x5847f501 telemetry_clear_pltdata -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 0x3f217ca7 wmidev_evaluate_method -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x6068bedf wmi_evaluate_method -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x6c271cea set_required_buffer_size -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x76ae31fd wmi_remove_notify_handler -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xaba842fe wmi_query_block -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xd7752b86 wmi_set_block -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xef571d8e wmidev_block_query -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xf18bdd75 wmi_install_notify_handler -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/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/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 0x0082b050 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x022413cc cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x08705508 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0cf1e32d cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0ebabd53 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x16eb3f5c cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1cb67bdf cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1cd5ec85 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2883bc38 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2bbfab96 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2d9b294f cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x46425363 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4b563d7a cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4e78eaa8 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x515c3cad cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x55255640 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x56df6178 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5a7d7238 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x684cb5c2 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6dac2c8b cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c06647c cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c81990f cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c920ef4 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x838d942b cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9ac45af5 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9be1442d cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9dd60f59 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e3a75b0 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaf919fb8 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb0ebd165 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb13c0234 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb1729dbb cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbc5bb019 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbd3a46f4 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbe763185 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc1101c60 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc2965f99 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcd054c2c cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xce8b1082 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd0697c2d cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd26f1395 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec60734f cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf77ba076 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfd0017d2 cxgbi_ep_disconnect -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 0x21686f26 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2b18cb69 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3c3fd389 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5359f1f8 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5633f1ff fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6cf775e9 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x92e13567 fcoe_ctlr_device_delete -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 0xd3208618 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd7a41ff9 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdd53edaa fcoe_libfc_config -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 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 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 -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/libfc/libfc 0x905b0a32 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0c97bb8f iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0dff4963 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e33fef9 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1029725b iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x18c0819d iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1a44e57c iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1b74e222 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1cd7a329 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1fb6f6ad iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x291ed1af iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x37ecc80c iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x49233c5f iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4fba6f40 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x50deaad0 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6188cb32 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x64913c09 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6500aabf iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x707737e2 iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7311e25d iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7416d545 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7c951f9b iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7e1dce8e iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8406ec66 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x86000b4f iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x875ffd60 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x918dfbdc iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa14a6621 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa36aeaa4 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaa8fcb5d iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac29acfc iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xae6e4635 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf7cdeb5 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3d9e4f0 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xba247461 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbd70810b iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc2608615 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc726e84d __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdb977089 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdc2e0d6b iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe0a9fd17 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe0bfac98 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe2242368 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe3ef2848 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe862a509 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xee778217 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf153f536 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf3896705 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfdd08741 iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x18bd8fbe iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1f17329b iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x231eab78 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x46bdd7bc iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x498a25d8 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x63f9091c iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6f57756c iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x763e0006 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa94f3e21 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xaf28085a iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbfa9f313 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc3d041ec iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd3380625 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdec13ac4 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe7d1065a iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe7dcd133 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf15bced4 iscsi_tcp_conn_setup -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 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 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 0x01f5ac20 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x058738f7 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x07123219 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0dce6c8d __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1520f863 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15dc8bab __SCT__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x17caa8d8 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1c71320b __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1cea06ee __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e791063 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2915d4e9 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d28ec26 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2ee1c182 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2fb6bcff iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3184b789 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x38fad24c iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x391782f4 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3943a5f4 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4cbbec69 iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52575134 __SCT__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54c8c3a6 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584b2611 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5dce5782 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x66942c96 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6d5052eb iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6ebc1239 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7b844628 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7f2b7eed iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x80514848 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x89141bc5 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8bbf4944 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8f8cd52d __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9468a7a4 __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x946c8820 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x94993d25 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9578d14e iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x99c64244 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9a3ce66f __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3ff4435 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7e6e8b4 __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8c4b5e1 __SCT__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xadafc33a __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xafae4db1 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xafe4d36a iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb8c6e3ea iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbcb6792f iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbd09f2bf iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbe1094e9 __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbfd36b6d iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc0c47e70 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc1fdc7dd iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc22d7444 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc63474ae __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc7e692db iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc816c753 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc8946253 __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcec1c631 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd246a219 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd94dec39 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 0xf0896873 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf102a912 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7e749fb __SCT__tp_func_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 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 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 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 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 0x15025d52 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x4b7454c0 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 0xff85cd6b ufshcd_get_pwr_dev_param -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 -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x18cd9c88 slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1be2827e slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1d142824 slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2049bdb2 slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2ee9c389 slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x483040b1 slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x53c6d0ca slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x740d4432 slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x75604a88 slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x77b543e2 slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x82a58540 slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8a016161 slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8d2e08ac slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9f1609af slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa22c59a0 slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa2f8dfaa slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xab6064fc of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbd92492f slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc023e18c slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdad89507 slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdd9fd9f3 slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe7bc6df2 slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xee25c3b5 slim_msg_response -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x1886eeb2 __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x57ceab46 sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xeac21122 sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x2b35a458 sdw_cdns_debugfs_init -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x1497cacd altera_spi_init_master -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3f0bd132 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x80034343 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xac8c4f2c spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc7c21e9c spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe5128d58 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe97f3e48 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x5f21730b dw_spi_dma_setup_generic -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x6243967e dw_spi_update_config -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x6a035738 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x8655f111 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xac01a69e dw_spi_check_status -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xb04a0a5e dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xcb02c66e dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf80e1d47 dw_spi_set_cs -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 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 -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x88db6d7b fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x8d066b5b fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x009e6165 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x08a63ab5 gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2de9f254 gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2efd76b3 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4ea330eb gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x52aa0774 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x68f87ced gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x737c2707 gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x774f9aea gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8680fa85 gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc085f0db gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe379a65f gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xea750ee4 gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x0df3eefc gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3b453167 gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3c537214 gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x668779ea gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7531beb9 gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7d62b27b gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc783fced gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd4353bbe gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xdd894475 gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xec68ec02 gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xed705cd9 gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf0708fb0 gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf828e348 gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x09bd7f9f gb_audio_manager_get_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x3f7b08c4 gb_audio_manager_put_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xbc7666d9 gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xe1b6db44 gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x0a24e897 gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x87b13839 gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x7b70b9b8 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0x21380c55 release_msr_list -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0x6591e788 load_msr_list -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0xbaae3925 apply_msr_data -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x24b66939 gmin_get_var_int -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x383c8da1 atomisp_register_i2c_module -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x5127d349 atomisp_get_platform_data -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x6e193b89 atomisp_gmin_find_subdev -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x9ecd64be camera_sensor_csi -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xac8fdaf4 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 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/staging/media/av7110/sp8870 0x4e133458 sp8870_attach -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x4d21bdcf target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x628d732f target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x773e8edf target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x96d83751 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 -EXPORT_SYMBOL_GPL drivers/tee/tee 0x17df329c tee_shm_pool_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x1d52f7c8 tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x1dc6f7c9 tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x249c02a3 teedev_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x2eb4f1a5 teedev_open -EXPORT_SYMBOL_GPL drivers/tee/tee 0x2fae21d9 tee_shm_pool_mgr_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x4ca58bf8 tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x5306a0ca tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x57596d5a tee_shm_pool_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0x575f9970 tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/tee/tee 0x64989f75 tee_client_invoke_func -EXPORT_SYMBOL_GPL drivers/tee/tee 0x6573a683 tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0x68f10ddd tee_device_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0x83806ecc tee_shm_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid -EXPORT_SYMBOL_GPL drivers/tee/tee 0x8a9ec51c tee_shm_va2pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x8ec89eb9 tee_client_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x91820ed0 tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x9d097668 tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa22d1280 tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa84a2ec2 tee_shm_pa2va -EXPORT_SYMBOL_GPL drivers/tee/tee 0xac06d01b tee_shm_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb4473bf9 tee_shm_alloc_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb46f6089 tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tee/tee 0xcb8567ad tee_client_open_session -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x46a906b9 int340x_thermal_zone_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xbb237be6 int340x_thermal_zone_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xe8a847b6 int340x_thermal_read_trips -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x05adc8b6 proc_thermal_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x87fca458 proc_thermal_mmio_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x880ecfe9 proc_thermal_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x9347c6e5 proc_thermal_mmio_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xd56ee72e proc_thermal_suspend -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xe2568c2b proc_thermal_resume -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x81ccd521 proc_thermal_mbox_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0xea110160 proc_thermal_mbox_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rapl 0x015a2547 proc_thermal_rapl_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rapl 0x098e82d4 proc_thermal_rapl_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x2992eefa proc_thermal_rfim_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x9eff2074 proc_thermal_rfim_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x8bc4f596 intel_soc_dts_iosf_init -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x9d547284 intel_soc_dts_iosf_add_read_only_critical_trip -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xa1c6509e intel_soc_dts_iosf_interrupt_handler -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xf21faa66 intel_soc_dts_iosf_exit -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0459f748 tb_xdomain_lane_bonding_enable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1ef69106 tb_xdomain_find_by_route -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2411d6e4 tb_service_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2614aaec tb_xdomain_request -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3c57a988 tb_xdomain_enable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3cdbf791 tb_xdomain_response -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4368278f tb_xdomain_lane_bonding_disable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4b3607b7 tb_unregister_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4d0e6a3f tb_ring_alloc_rx -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 0x5094509c tb_xdomain_disable_paths -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 0x667bce02 tb_xdomain_alloc_in_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 0x78a979d5 tb_xdomain_release_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x92453aee tb_xdomain_find_by_uuid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa6b19446 tb_register_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb36c52d8 tb_ring_start -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb671a697 tb_ring_poll_complete -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb727a412 tb_ring_free -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc66c0a25 tb_xdomain_alloc_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc75c7828 tb_ring_poll -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xca4e3cd1 tb_xdomain_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xccf358b1 tb_ring_alloc_tx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdec59fe5 tb_xdomain_release_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe8f40c05 tb_ring_stop -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 0xfc2d91b8 __tb_ring_enqueue -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 0x278bee77 cdns_suspend -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 0x3e2c8c09 cdns_set_active -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x623c3904 cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x72f5b33d cdns_drd_gadget_off -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9ac94193 cdns_set_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xbbad8dd7 cdns_resume -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 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/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 -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x85c41afe ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa5d45aec __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb9768c2e ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x11e05be0 u_audio_get_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x173554f4 g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x3628b08c u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7ca71f7e u_audio_get_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8b71eba4 u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc0aecd53 u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xddd7c04a u_audio_start_playback -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 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_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 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4a3df9d0 gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60ea48a0 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x8a26df0c gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc0a01527 gserial_set_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xf6283627 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c825859 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x80ef6242 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xb78954e6 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x099ebb98 fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2acc5d6b fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4c6b6e90 fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x51a5a288 fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x524435cb fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x53533bae fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x57124479 fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x665f4808 fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6ecc7265 fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6f868ad0 fsg_show_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x80a4f727 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x89ff9208 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9591505c fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa2433e16 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa6bf41ae fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab6c68ac fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns -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/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 -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x19c9a266 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1df34b37 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x21eeb073 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x22ef7abe usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2c1a7130 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3fc91f6f usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x492398bd usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4bce1a40 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x50fc47df usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x577598ec usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5946c74b usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x728b7e2d usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x74ff9f3b usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x86dcae71 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8f93c8c7 config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa079329d usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa0e4d21f usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa393b545 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa8404f9e usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaa1071fc unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb080b28f usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb775db55 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbcaaafff usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc034e150 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc13f74e3 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc49fb6fa usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd95f215f usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe65092eb config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe678aa32 usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf011f9d4 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf404a965 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x0ad73801 udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x2aaf46a6 udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x86a2ea41 udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9ac6533c free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xbc012f29 init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd2dd6abb udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xdc022f12 empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xdc485f43 udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xebfd943a gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x00ca3440 usb_gadget_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01b12bfb usb_ep_free_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0a8c3b4b usb_ep_set_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0acfe2e7 usb_ep_set_wedge -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0c26c0d2 usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0d90d784 usb_ep_fifo_flush -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1278987f usb_del_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x19243b77 usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1efa4ceb usb_add_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2e734794 usb_initialize_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3148b64f usb_gadget_set_remote_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x33012b9a usb_gadget_vbus_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49d9f030 usb_ep_fifo_status -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5019d0a3 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x506ab3a9 usb_ep_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5076fa7f usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x530d4667 usb_gadget_frame_number -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x59856c6b usb_gadget_vbus_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5fc294ef usb_ep_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x72b2f3a5 usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7356c1c3 usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x74d715e2 usb_gadget_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7a41b9f2 usb_ep_set_maxpacket_limit -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7be89624 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7e0e81ab usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x882077d5 usb_ep_dequeue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8d139c5e usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8d61c211 usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x91faaa70 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9318099f usb_gadget_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9eb52803 usb_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa5bdaa7d usb_gadget_check_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa9e74462 usb_ep_alloc_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaf201fa6 usb_ep_enable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb147a06c usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc7a93a95 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc7b8447b gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcbd3afc9 usb_gadget_map_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcd102ec7 usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe954bad5 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xead10af3 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfa643274 usb_gadget_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfbc0b820 usb_gadget_deactivate -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/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 -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2d1edfc4 musb_root_disconnect -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x3f29d57d musb_queue_resume_work -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af8c6dc musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xb834db74 musb_set_host -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xbe3f271c musb_get_mode -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 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 -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x05b9d68a usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x07ef7c12 usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0fa700a4 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x132c885f usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x240af94f usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2871f3c5 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2f875244 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6824350d usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8f59dfff usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x92a25f49 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa04235ba usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa6cb1682 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaa6c041b usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xac3744d5 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd43acfb0 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd5e4a600 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xda6a4fc9 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf859335f usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfa959518 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xff99d0fb usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x2fd1c62c dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xe77b925d dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xf37e203c tcpci_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x7230aee8 tcpm_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc37b9769 tcpm_cc_change -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xceb50012 tcpm_vbus_change -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0b55a96f typec_port_register_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0eb10d3a typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x11f21abe typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1d00842f typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2069c7ef typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2338e4b4 typec_get_negotiated_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2364d539 typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x280435a4 typec_link_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2859d460 typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2c5a9517 typec_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x30b5aa3e typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x34a7383d typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3dd68744 typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3f478c7b typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x46423e48 typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x47916e1e typec_switch_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x48295bee typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x49f37b20 typec_cable_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4c9d6969 typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x53cfbdf2 typec_partner_set_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5e25fe1e typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x629aeeb3 fwnode_typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x64ce2ab9 typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x651fc296 typec_set_pwr_role -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 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 -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x96ea91d1 typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9e57e4c7 typec_mux_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9fc916a8 __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa12e26d8 typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa343238b typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa7a14e3f typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa80c863e typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa9e25d1a typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb191b311 typec_get_fw_cap -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb456ef8f fwnode_typec_mux_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb7f74d22 typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb81b650d typec_partner_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbd77e8f9 typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbdae73d1 typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbefbf543 typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc63024dd typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc7f1c47c typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcae8865f typec_altmode_get_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcc98ac22 typec_cable_is_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xceb1e367 typec_unregister_port -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 -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xea2f4c39 typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeeb63887 typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfad9e656 typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x0059b8c4 ucsi_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x0ed83e18 ucsi_destroy -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x12a5de22 ucsi_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x32979787 ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x46927dfa ucsi_create -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 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 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/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 -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x190365a2 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x19b60fa3 vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1ccf3f28 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1dc22fb1 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x20072622 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x245ec9ef vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2cc2d42f vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3238e142 vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x32da4d79 vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x38a16842 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3e444283 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x40622b6e vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x47b2659f vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x48aaca04 vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x506cb9f9 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x55da03ac vhost_clear_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x57874090 vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x57e7faa8 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5a81aa71 vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x629076ea vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x660e7a51 vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6785e433 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x690b434b vhost_work_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x78a4204b vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7932bc29 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8019b436 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x80aae587 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x838eb8c0 vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x88ac92bd vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x894e3c4e vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8fb7ba4a vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9198ed11 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9996492c vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa8cc5f31 vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaf2370a5 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc2d0171d vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd36a14f7 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe8a7325d vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeae98ff4 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xff85838c vhost_dev_ioctl -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/backlight/ili9320 0x545c86fa ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x81e21d8d ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x846b92f2 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc411a78f ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd5c70280 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xee75fcf2 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xfd0e90f8 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xf58d66c8 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x1a02ac6a fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xd55ba0e5 fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x494b75ac sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x8571d9c3 sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys -EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x0e1cee08 viafb_dma_copy_out_sg -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x30cc9311 viafb_request_dma -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x31469540 viafb_pm_unregister -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 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 0xfd734a80 viafb_find_i2c_adapter -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x018e8d35 visorbus_write_channel -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x0e338292 visorchannel_signalempty -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x16a92dc9 visorbus_unregister_visor_driver -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x4de03230 visorchannel_signalinsert -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x56401853 visorchannel_signalremove -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x7c5a590d visorbus_enable_channel_interrupts -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xa1de3308 visorbus_disable_channel_interrupts -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xb7161d9e visorbus_register_visor_driver -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xc455c651 visorchannel_get_guid -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xd403fb2d visorbus_read_channel -EXPORT_SYMBOL_GPL drivers/w1/wire 0x0c86cb5b w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x231336bd w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x653021a0 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x824cc5e0 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x83b17acf w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9e5efbe8 w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0xdd5538eb w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xe7ee5ee1 w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xeb05360a w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0xfa032c63 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xfa68e89b w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x26fb85ab xen_front_pgdir_shbuf_get_dir_start -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x5620e8c6 xen_front_pgdir_shbuf_map -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xabdf5c37 xen_front_pgdir_shbuf_free -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xb9ece568 xen_front_pgdir_shbuf_unmap -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xd5bd1392 xen_front_pgdir_shbuf_alloc -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x21935057 xen_privcmd_fops -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x91055274 xen_privcmdbuf_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc8bec238 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 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 0x037b42bd nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x683d6c25 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8ff2bfcf nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb592b64d nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd1b626c9 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe2e3adfe lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xfcd12fe0 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0329df17 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05d6d727 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07f3961d nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0948a955 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x142975c4 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14f02e1f nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1800249c nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b466d73 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e1d39aa nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f2e22d5 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21560dac nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24a5d3a0 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x257b6f70 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x269cc3d8 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b00803a nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c6ad266 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d961e29 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e2b5df8 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ec7ea53 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f2e8c77 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fe5805b nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31d403bd nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33b75ddc nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34e1d8fc nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x365de7fb nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36dabb41 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37239e6d __SCT__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38dd8f59 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x397230af nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a61f72b nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c233a2b nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d21179f nfs_init_cinfo -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 0x40d24d52 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41423051 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x425fdc6c nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x426d6c6f nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4996389b __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4aac49f4 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ee9d7f8 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fdfa92f nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51ac3221 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51ca9cd3 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52145e6c nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54fbf18f __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55fcf14e nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57958c06 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a7550f7 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ab5c5ae unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bf9953e nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5cb7a93b nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f6e346e nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fbc5ab1 nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x624bde6f nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6288966a __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6338b655 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x654d5d92 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65a7cc0b nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x661f5af9 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68858207 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6911bd46 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6bcb3eca nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70a18739 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71f41e3f nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x761c95ac nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77224e56 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ab3a713 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e12fe58 __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fd69298 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82a6a26c nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x850e0179 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x850f641f nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85d7a548 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ce84eb7 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d778773 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ddb53f3 nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e19474e nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fc35bff nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9211be75 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92ae8230 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x937a2ca2 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93dc1ee2 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98a58089 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99dd37ae nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bfd0935 nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c772449 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d919c44 __SCT__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e78319e nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa10aaf9e nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa584d270 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa74d48b5 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa823c134 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8bc6b04 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaef2fae nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab29f095 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae3d609a nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb25e5889 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5cc0186 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb97a9ec9 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba5dc139 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcf1d2bc nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd67ef89 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf5e68a6 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0087c2e nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc08e71ce nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc15ed992 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2172189 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc223d128 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2369e53 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc257adcc nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc376e264 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc924d955 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca0c797f nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca842871 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcaaf21a7 nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdf58c1a nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce7c582e nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf16ba2d nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf7d1950 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd022bc08 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0f457ac nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5221393 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7417ebf nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd89f1c77 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddda9340 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf689aa1 __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf878360 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0d0b9b9 __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe139c856 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1880b22 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe21c8bdf nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2b1c75b nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe42ff8a1 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9172b88 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9c07d78 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeaadfb45 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebd1cd55 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebe87c76 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf13a295f nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4583a06 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf695f5c9 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa1397a8 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa9a2633 nfs_pgio_current_mirror -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 0xfeaf5f8b __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfeb42418 __SCT__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff3bf775 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff8286c7 nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xb0f88f4a nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0170eb35 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07c92a42 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0966be60 __SCK__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x099a75aa __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a3b1149 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0bc92b74 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e8f07ba pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10809409 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13408cee __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15994ebd nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x184236c1 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18e75751 __SCT__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1991f9a1 nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1dd1cabf __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x208d3c32 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21943081 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x219513a4 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2663519d __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x296ebdc2 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b056805 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b16e909 __SCT__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30980716 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3571bb54 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x374824c7 pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x391ca5eb __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39feca56 __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b824406 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e8739fc pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43064270 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x442cc37e __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44a15f4f pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4951ac3d pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4a3b6227 pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b2323a5 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4cf4ece4 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4df6d1ac __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51be7280 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x532d4cec nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x556827bb pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56a4d009 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x586f13a4 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b365577 __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c62544c __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c674ea5 pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5d25b4cf __SCK__tp_func_pnfs_mds_fallback_write_pagelist -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 0x65f80b6a nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66cf2f41 __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67a3e6cb nfs4_proc_getdeviceinfo -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 0x6e29e56f pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6fd48483 __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7365ef53 __tracepoint_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7495e756 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7599b8c4 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75eb8495 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77dac369 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b8b3a1c __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cfa1da0 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e42bd3f __SCT__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7efd0671 __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x853ff86f nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8877d5ac pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89f39a35 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8bdf0f14 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8be87dcb __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d5a6da0 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f667ab7 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8fd109af __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91d0c47e pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x930a94fd __SCT__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x941099ba pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94d098f1 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96c4643f __SCT__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x97fd384d pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ebaa5cc pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9e87f84 __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaadb59bf pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xabef05f4 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad97f5f9 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadc421aa __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadeca730 __SCT__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb165a913 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3d3aa04 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5ac5add __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb76ebb6d pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0af29b7 __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc15e13fe pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc28ad3d3 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3059b77 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc361c3c5 __SCT__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc6e87680 __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc71ade01 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8d5226d pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcae4d016 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb1908ed __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc21ce5c __SCT__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcef39dcc nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd12c6a0f pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd7b2a6e4 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd7dc0e57 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb9aca64 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdeb5edce __SCT__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe04e55cd pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe805f6b7 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea7dff4b __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb6c7227 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed701ad5 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf32fa2b7 __SCT__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4159665 __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf72b2769 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7576c47 __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf804e0e3 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf926ce16 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf950e8fd nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb0862e4 __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb6c4e58 pnfs_generic_search_commit_reqs -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/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 0x7546188a 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 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 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 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 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 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 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 0x1b0e9dfd ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x2a555681 ocfs2_stack_glue_register -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 0x79a0076d ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x8cb89563 ocfs2_kset -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 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 0x9a5a2755 unregister_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xc2b31ef6 register_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x244c85e5 register_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x881eff16 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 lib/842/842_compress 0xcf048a91 sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x0c303f52 bch_encode -EXPORT_SYMBOL_GPL lib/bch 0x0d3e3481 bch_free -EXPORT_SYMBOL_GPL lib/bch 0x1a267fa8 bch_init -EXPORT_SYMBOL_GPL lib/bch 0x860a2eab bch_decode -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 0x1079f64e notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x94fd73d8 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 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 0x5cea4108 lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xf9963b8a lowpan_header_decompress -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 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 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 0x2df3be39 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x31066c54 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x32d3d31a br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x36301adc br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x39dd52bc br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4c401fd0 br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x576e0b0c br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5bd78122 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5eb6b37b br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x61b18adf br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x67930131 br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0x707f31c7 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7f6f1755 br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xafbf7761 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb878614b nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc43de853 br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xca68f262 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xcca13b1f br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd3e7eff3 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd53da25b br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe1883fe5 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xea3b1df7 br_fdb_clear_offload -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 0x0c5d5641 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0c679038 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0f7aafb2 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1a402d51 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x28c7bb4e dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2c59a160 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2db73ef2 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3e04f339 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ca26388 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x52517c04 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x587dff79 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x71a361ab dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x722630de dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x747a36db dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7c344b7d dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7ff68881 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8445ddc6 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x846b6c5d 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 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x99b1d400 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa5cb0538 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbc9b4224 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc664be4c dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc7203b9f dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcae88473 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd0137ef1 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd78767d1 dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdc55e09c dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xed00ac6f dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf8625a65 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfa7225f0 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfdaef4d7 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfdfd6089 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0xff888e7b dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x28548548 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4948ceee dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5519d08c dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x86ec8a1a dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8c2056ae dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xefc9e220 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x054fe714 dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0d097f8c dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1a96c337 dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x36311ecb dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3cd25512 dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x44e4b6d2 dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4784a66a dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x52bc3aab dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x551e0355 dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5a7d41b5 dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6283f2bb dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x68008380 dsa_tag_8021q_bridge_tx_fwd_unoffload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7098884d dsa_tag_8021q_bridge_tx_fwd_offload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x719f40cb dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x820e091b dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x83970732 dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8d3e91d5 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x95328938 dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9626c87f dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9bf062e7 dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb03fc762 dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb2f8abbf dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xba683fed dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbdb7a0ee dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc3582a85 dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc5804f94 dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc6717f3a dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcf7f6973 dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd4942405 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe84d3b91 dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xee49177b dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf27dbebb dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf5b95786 dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6eb3042 dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan -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 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xe6f24528 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 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x124d9da2 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x125ae2c2 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xe39e5536 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/gre 0x634e3fdf gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x79e0fb39 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x011a544f inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x07ee20d6 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1fe8aba7 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5f74a745 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x66fcf126 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6de7cc1f inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc0f769c3 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc3018743 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe9b038c0 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xc5ca0906 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x30699565 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3320f4c9 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x358c3f63 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3c6d2832 ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5d96887c ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5e832a1c ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5ffe2014 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x811cb875 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8c896968 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaef2e914 ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaf633c5b ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xba23fb24 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbffb6e4f ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcb68f53b ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd3be3272 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe9e13bce ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfbc50513 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x41aba80c arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xa1d4d889 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x334d742b nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xf7dfb6c6 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xea115d77 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x14118878 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x476b93d1 nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x86d9fbd0 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9d6c6e1c nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xaad133c0 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd3a5466d nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd6fc76b1 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x55369090 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x7e370856 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x9a392a9e nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xfb86ecbb nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x189c74df nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x1d698a5f nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x279344ff tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9167abf1 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa5aebad5 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xea00e9c6 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xef8e9729 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x24dd9a70 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x31f27ada udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7fccf638 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x893d7b3c udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa5789627 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc5d842e5 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc842f23c udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xeacf1d7c setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xb9020cbd esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xd9624470 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xe0be3ae6 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x754ac5b9 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xbc0f3094 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd8458b22 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x0ab2434b udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xd1ebefac udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x09ebc4e3 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x27ec16e4 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x29103858 nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x95506943 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x81eba816 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1883d219 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x486d25f5 nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x52ca71d7 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6510aaa8 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbea92a88 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xce6971f8 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xebba1918 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xd25131f9 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x02759171 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x2fdf2795 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x8ea9660a nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x820b139a nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xc8fe513e nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0749f6d3 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0910b070 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0b6de045 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0c753995 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0e7449fa l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1a9ae0c9 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4fee2ee0 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x51bc5339 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x52286f68 l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x57243e19 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7611e71e l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x79e2dbb2 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x84db4732 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x85a8dbde l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x91b3a15d l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x94564f68 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa023272b l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa6cb2e52 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa957f0b5 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdfe7c4ff l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf52713f1 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xaac3485f l2tp_ioctl -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xdf49e76c l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x218cbc64 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x25f6746a ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3235138c ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4e66103a ieeee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x50bde26b ieee80211_color_change_finish -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 0x5d499de0 ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x60c09b77 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x716deb0e ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x74868f45 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7f23de31 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8e5d4339 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1247034 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4b2b77e ieee80211_key_replay -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa8376321 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb487af37 ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb70923b7 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb7ae7c75 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd59db8a2 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8701fd1 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdb62259b ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf2310a4b ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf30912f1 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x071770a0 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3a40cc4f mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x89980625 mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb435228a nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf970f5d8 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x00991386 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x15cef4f9 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x17ee2a89 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x20dbb01d 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 0x24a68a14 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x41b80fe5 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5ee86036 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x68346966 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x746412e3 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x749cdef4 ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x770b3d37 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 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 0xb33bd668 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb368f047 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc47158d1 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc590974e ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc6fd1d60 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe5ba31e2 ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xecad5f5e ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xee2c9cb3 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x13196589 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x14fbc0f7 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb24c328b ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xdffcf548 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x09821020 nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7b3b7e06 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9055bfb5 nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xdb0b05bb nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xdb4e5f06 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x005a8e12 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07b04faa nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x080cb197 nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0db53bc0 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1283a098 nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x178275ce nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2056c605 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21d5b2dd nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21e6b1c8 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x272f54e5 nf_ct_seq_adjust -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 0x2ae1cc7a nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2bb0c664 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d552baa nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38354d28 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x384ebae9 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a3a3591 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x409d40ce nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x43f6bbc9 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4433cf1f nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4556af1d nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4587deb2 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x471d1908 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4734455e nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x480e9699 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x492c8cb3 nf_ct_set_auto_assign_helper_warned -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c2ac4e1 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4cca4168 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x539d78de nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x582491bc nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5962eb68 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b0bb182 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ca9b887 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61840ffb nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x66264522 nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x667f4ed1 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x694b79c1 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6bc01e4a nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e62de17 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x749e3be7 nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74b4d82f nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f020817 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84e48221 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89cc1e43 nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ac23a81 nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8bf7e379 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8fc640a1 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c3f5dd8 nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f6869b1 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3332056 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa36937dd nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa983e4b7 nf_ct_tmpl_free -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 0xb0daa32b nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4267c58 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb469fe12 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba8fea64 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb12e6e6 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbbd32131 nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3528624 nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6b19c79 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc74ef70a __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc77700a4 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcae26b88 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccddd4de nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce470a53 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf3dcc83 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd00df2d0 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2916e5c nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd75c2440 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd7b2f8a5 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9ef5f6e nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb3e5e4d nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe39e3626 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe418a4d3 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe9a70313 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe9ae6d91 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb39e613 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef2b30e5 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf114218c nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1256b91 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfccbc9ba nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe4858a9 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x6c57f646 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x23abbc8e nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x523a5049 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0b0cead2 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5c7d5e55 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x68e4e316 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7044930e set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x87fde2ca get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9d25df90 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xabb3f0df set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xad495eab set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xea5fcd88 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf21243df set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xd2cb7e95 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7cbc37f5 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xa76539e1 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xb19f8de6 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xb3debed8 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x26227fbb ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2a6a34d7 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x32be4474 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x92f452cc ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa3aea52a ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc68b8f6b ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xede776c4 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xc1529bb9 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x0c422b83 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 0x020370e4 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0d24877c nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x148658e1 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x14fbc07c nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x17411e1d flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1ece90a1 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x53b08576 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x66c7c0e2 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6ce0e460 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9a78337b flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xaf4e8a45 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb3431065 nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb53abd75 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xcdaaa931 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xeb1ff84b nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xed75d04f flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf43b6b28 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x041c305a nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x043455ba nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x21129289 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x426a6edc nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7b7ccfdf nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7f1e5ed9 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x88e20132 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x92acbd23 nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa089db72 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa20e3463 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb20233b0 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb65ff126 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc52deb38 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 0xdb51b6c6 nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe13e8a1d nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfe6f6524 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1282ec08 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2e3f0956 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x34ab91eb ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x572d5360 synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5d9fff37 ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x794e7925 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe52a5325 nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe7bf963f synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xeca4e85b nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf32aa64a nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xfaa41d34 nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x05d11405 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0a56b61f nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x10728d40 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x17d35760 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x20f8a877 nft_unregister_chain_type -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 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 0x670f9adf nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6e1d1bcf nft_meta_set_init -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 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 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 0x97900a1c nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9ec08328 nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaac58dd4 nft_meta_set_eval -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 0xc23cd9bb nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcae9aa18 nft_meta_get_eval -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 0xcf612176 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd00bf76c nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd27075de nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdac50a69 nf_tables_deactivate_flowtable -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/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 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_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xc0be873a nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x6590581b nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x9d987235 nf_osf_match -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/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x4b99207e nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x5106aa0e nft_reject_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xeda5241e nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0c15d007 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0e64a145 xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0f4255a9 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2190d1d8 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x32118b02 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x445910ea xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x463268aa xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5aa518c8 xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7ca7c855 xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x967e4fcb xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9b54df4e xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9e0e4ab0 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa04c20a9 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaf4128b0 xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb11b401f xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbcb3c4f3 xt_table_unlock -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 0xc8044f7b xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc83ac7f1 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3dbad89 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe01c90e9 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeb376a0c xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xed626ca5 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf37c8413 xt_compat_target_to_user -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/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 0x070e0fb1 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6d3be48b __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbc985984 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc1a4144d ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc22e2107 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xdd3cf0dd ovs_netdev_link -EXPORT_SYMBOL_GPL net/psample/psample 0xba5f7b4f psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0xbb6e8d88 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0xc4a4e4c3 psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0xca0d4a0e psample_group_take -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/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x00d4af46 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x02caeb3e rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x056a12b6 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x057e0876 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0x0afa7c1f rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x136ded3b rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x20c5e653 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x22d14e3e rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x32783ec4 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x366f927d rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x37298c1a rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x414d32fe rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -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 0x5b5cdded 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 0x865526a5 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x902ec1de rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x90f67a6e rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x95f03c3d rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0x98257550 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x9c389987 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x9c75283c rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xa7a1f491 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xb1ee0280 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0xbc8a643d rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xc255a8ee rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xdbe30f10 rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xe6007e40 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0xef115012 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0xf41d33fd rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0xfe8117d0 rds_inc_put -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xa1d831cd pie_process_dequeue -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xb20eda3e 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 0x0ac08982 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0x42527400 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x6d023374 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0xbc8967cf sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/smc/smc 0x41b33c17 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x4b637866 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x6d324cfc smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x7402bba7 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0x7a9548b2 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0x9f68a75e smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0xb40b6c13 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xbf6bc904 smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xc540daa0 smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xd0e13d7a 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 0x689c7277 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x6ff41fd9 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x766775c5 svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc57dd5b7 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x006afa2b rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01e4b336 svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x030a6e64 xdr_expand_hole -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x047062ed svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x059509b4 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05fb5f7e rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06cbb42a svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x084d897d xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0921703e rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a0c6a4e svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bf646ee svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ca40b9d svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d921bc3 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f323ab7 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12f8a3ab rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13719bac xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14d0f307 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x154bee05 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x164d1801 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cc5ebca xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e5b6359 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e7523b4 svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f233b11 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2077acfa rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x246c696b rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25608f70 rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26e557b5 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2aaae4f7 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2abc2ac0 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2dd052be rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e08e473 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e0aa49f svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ec376ed svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x327372c8 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32898d0b svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33c6399c svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x344ff3c6 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x349a26d3 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x384452fb rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38cc65f4 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38f5275b xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x393cd456 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cab141c rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e987da9 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ea2d212 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3eddb4ff rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40a2dfd8 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40ae8542 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x411ca5d1 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41caa0b7 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x420abcef xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42e6b78c bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43a01e67 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x448d838b xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44ef3a8b rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x451f1391 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4725635d xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a3abd35 xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c99a460 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d733a20 svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e0fc63e xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e25ca17 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ec3a62d rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fbc56c2 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x525e3473 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53fe45e6 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54cacc23 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55734c4a svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55bed366 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5623c462 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56302870 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x593dd728 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a14521c svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a4d659d rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b2e3c16 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c1e6074 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c959567 sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ca61191 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cb766d3 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cdc4cdf xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dbf637a svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e0fd149 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fbbc713 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60ad1d76 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6372e9ca rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63b6aa4e __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63d94d2e cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x641318a2 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x648905e7 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x657ca188 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68419aa1 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69bda9e1 svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69c2d780 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c702b90 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e669eb0 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e93b62d svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f1ce6ec rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71c8e0cd svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72748031 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7321b247 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7341bab0 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74b2e881 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75d6bf8f auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7635b856 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76a1dbe0 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x779c1810 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78141f13 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x784f465e xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x793f7423 xdr_align_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a04bd83 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e25aa59 rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e8d5414 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f12d565 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fb95438 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fe6d71c xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x820514a5 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84083b99 xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86c8d407 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8859150f svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a5a04fe svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9178b154 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91901d83 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91ef0e7b rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9243d9b7 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92c5712b xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9336a0a2 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9558c26c rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95950bb2 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95dccd02 rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x965f79c7 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x986b2641 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98c81783 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99ad2b37 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a140468 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a6aa120 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c9db5f1 xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fc5a7eb svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa158ee0a put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2c8447c xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2f79c48 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa35f7388 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6ced048 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7e17bd8 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7e4ca95 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7efa9cf rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa1c2e4c gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa555abe rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab70f924 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab837e9a rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac3050de sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac4aded3 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac636f5f rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac7276d6 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad5c4fd1 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae85aa57 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafa71c3c rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafebe4df xprt_update_rtt -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 0xb66977b0 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb67b3657 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb97ef35b rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba82739a rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba997b15 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb1e0c79 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbdb4763 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe12bea6 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe28f88b xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbedcfd3d rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf13affd svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc05c8c4b svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0cbd108 xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3e7e628 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc493346a rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6580224 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc909c508 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc94534f4 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc9a6d3b xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccbcbe97 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd0a8c55 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdf8bb0a svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce2e52c0 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf1ef673 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd03ac058 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0fdc917 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d1d5b rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd150eacb svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd16891d4 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1fca937 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3339e1e xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3cce642 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd424cced xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5ae237e svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5c54060 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd64084b7 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6f55bd5 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7177479 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd782c328 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd90e56ca svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9dcd734 xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda2942bc rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbba1b43 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc149b40 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcded3ba rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd0952c3 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe05e0e8d rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0622f33 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe16429f5 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe391a136 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6daeded sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8d056f8 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8dfa8d7 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe91e6b51 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9d36714 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea0a41d2 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xead20237 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeae0df12 rpcauth_lookupcred -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 0xef7ce27e rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf10646d4 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1e2fe03 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf44e52bd rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5785741 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf579715f xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf594ce84 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5b798ff rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf62bc78b rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6f20d5a csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf720adf0 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa06141a rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa161d4c xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfba38e95 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc0aae93 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffc1bebb xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffe3f8db xdr_commit_encode -EXPORT_SYMBOL_GPL net/tls/tls 0x559a7ca7 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x70705722 tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x785d7ae5 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0xfee3b7ae 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 0x085463e5 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0b40c825 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x119bbaa2 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1ff39586 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x216ff218 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2e864eb2 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4a89df94 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4e1abb90 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5a7a293c virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5abcdc67 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5c63cea2 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x71487564 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x74c40734 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7ee7246e virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x88452806 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x91d7234d virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x926046a2 virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x96dcfc89 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9aeb5b76 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa006d034 virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa4af656a virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xabbfcca0 virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb3212423 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbaa8671f 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 0xbf7579a2 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc257120a virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd7bc2c6a virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdfbc7b2a virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe92a2ee4 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xebf30d10 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xee231617 virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf0d6220e virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf7d3bd8e virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfeae6a38 virtio_transport_notify_recv_init -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/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 0x284e07d8 vsock_bind_table -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 0x77c14317 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8aabafdc vsock_find_connected_socket -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 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 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 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/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 0x281e9220 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x5686450b ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7e456647 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xeb3df55a 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 -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 0x0b60eabf snd_card_free_on_error -EXPORT_SYMBOL_GPL sound/core/snd 0x24f39d7d snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x33f186cb snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x3587c7e4 snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0x3660bd16 snd_fasync_helper -EXPORT_SYMBOL_GPL sound/core/snd 0x3d8290c8 snd_ctl_register_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free -EXPORT_SYMBOL_GPL sound/core/snd 0x653bba91 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0x83e7d751 snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0x94507f96 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0xa348577a snd_card_rw_proc_new -EXPORT_SYMBOL_GPL sound/core/snd 0xafe4e9d2 snd_devm_request_dma -EXPORT_SYMBOL_GPL sound/core/snd 0xb49418cb snd_devm_card_new -EXPORT_SYMBOL_GPL sound/core/snd 0xb4f0cef7 snd_ctl_apply_vmaster_followers -EXPORT_SYMBOL_GPL sound/core/snd 0xc2ceb815 snd_ctl_disconnect_layer -EXPORT_SYMBOL_GPL sound/core/snd 0xc7a6a44a snd_card_ref -EXPORT_SYMBOL_GPL sound/core/snd 0xd26c81e8 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0xf053ab4f snd_device_get_state -EXPORT_SYMBOL_GPL sound/core/snd 0xf0a90b48 snd_power_ref_and_wait -EXPORT_SYMBOL_GPL sound/core/snd 0xf76a1107 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0xf8f2a4eb snd_kill_fasync -EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x17f42b53 snd_compr_stop_error -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xcb3118cf snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x221068f6 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x252bfa41 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x43d1a3ed snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5244f4ed snd_devm_alloc_pages -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x73c9f0e9 snd_pcm_fill_iec958_consumer -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7ccad592 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x99d498d8 _snd_pcm_stream_lock_irqsave_nested -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9d608976 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb4267e6f snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb55828b4 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc6ef1d84 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xdda34478 snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfabbeb54 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x05b9d021 snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x17b907c6 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3112c943 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x35f6086a snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x45eaf14c snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x66045cb6 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8768f714 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x91cac4b7 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb3ae0768 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xcfab52db snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd9b6d4f5 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdf529f44 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x18621b0c __snd_seq_driver_register -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 0x371b41a8 amdtp_am824_set_pcm_position -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 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 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 -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x15f0f100 snd_hdac_ext_stream_set_spib -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1c9d4f39 snd_hdac_ext_stream_spbcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2672af5f snd_hdac_ext_stream_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x26c879dd snd_hda_ext_driver_register -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2ee0b06c snd_hdac_ext_bus_link_power_down_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x34d9b9ea snd_hdac_ext_stream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x49624ac2 snd_hdac_ext_stream_init_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x54368546 snd_hdac_ext_bus_link_power_up -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x55662fcf snd_hdac_ext_bus_link_power_down -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x599d5e0d snd_hdac_ext_bus_get_ml_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5b1793b5 snd_hdac_stream_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5def7f8a snd_hdac_ext_bus_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x631f92b4 snd_hdac_ext_bus_get_link -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x66d41de7 snd_hdac_link_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x66e2b2b7 snd_hdac_ext_link_stream_clear -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x732f445a snd_hdac_ext_link_clear_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x73a3488d snd_hdac_ext_stream_drsm_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7d8de98d snd_hdac_ext_stream_decouple -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x87365485 snd_hdac_ext_bus_device_remove -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8d5c1fb6 snd_hdac_ext_bus_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8dafa8ae snd_hdac_ext_stream_decouple_locked -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8f221bb2 snd_hdac_ext_stream_get_spbmaxfifo -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x93c80029 snd_hdac_ext_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9559a285 snd_hdac_ext_stream_set_dpibr -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x95757bb5 snd_hdac_ext_bus_link_get -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9dbadc45 snd_hdac_ext_link_stream_reset -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9f6511bd snd_hdac_ext_stream_release -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa7b4a311 snd_hda_ext_driver_unregister -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb3d32ce8 snd_hdac_ext_link_stream_start -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb3d7b93a snd_hdac_ext_bus_ppcap_int_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbc3cdc8a snd_hdac_ext_bus_device_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbdb9c051 snd_hdac_ext_bus_link_power_up_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe0f4bf5f snd_hdac_ext_link_set_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe6f49744 snd_hdac_ext_stream_set_lpib -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf6f444a7 snd_hdac_ext_link_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0061c056 snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x013b9134 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x020e2d2d snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1018738b snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x16749433 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x235a8c89 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2436c3e7 snd_hdac_stop_streams -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x26e50799 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3067ca47 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x36d541ac snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b61863b snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x454003c0 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x522db9f4 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5563d70b snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x59b7747c snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5da04094 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e5974f4 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5fec86bb snd_hdac_i915_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x625b6cda snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x631558e4 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x65fb872c snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a013b2f snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6aef8ac6 snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b399801 snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b765c6e snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6e1a9921 snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71a7e4c6 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73a895a2 snd_hdac_stop_streams_and_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x760f58bd snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x775d4795 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x797edd31 snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83d64791 snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8a3e2fbe snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x909ff583 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x915e42f1 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x92f74953 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x93d353bd snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9488d3d0 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x980096cd snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a1b5a49 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa135368e snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa63406d6 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa6fa59f9 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xacf4c501 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad010e70 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb25530c8 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb5e11f11 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb92a9bfe snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbdb718dc snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf4eb645 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbfab274d snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc01ad26c snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc0dfc12e snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc2371400 snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc7e31a28 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc8216251 snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce185fee snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce59702f snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcf052fd7 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd0f4a26d snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd130aeb0 snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd5fde047 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd7869985 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd8fd982f snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd937721e snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd998f464 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd2f24e5 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf900b56 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe1a7ccd0 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe2833f7f snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe63170f5 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe6bd645e snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe73d046c snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8a47bc1 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe96f0198 snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec36a632 snd_hdac_i915_set_bclk -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee7559d9 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeedf0343 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0d126d5 snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf4bb93cd snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf584f123 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf6947815 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf6d17fb4 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf8d29015 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb8c47b0 snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfca4fdb7 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfda1fd97 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x1f3f971c snd_intel_acpi_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e859456 intel_nhlt_free -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x9e60aad3 intel_nhlt_init -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xcf090fb3 snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xe3b0c16c intel_nhlt_get_dmic_geo -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x45eee4ca snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x78470832 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7f764198 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8360836c snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbb47b8aa snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xfc7a073d snd_ak4113_external_rate -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 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 -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 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 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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b8317ad snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2cb47aeb snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31f632d5 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x321908af snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x332c25fd snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34798d57 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34e24e39 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x359abb7e snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 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 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 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 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 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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76fed3b7 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x792000d8 snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ad78232 snd_hda_override_conn_list -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 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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9edfa71a snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5174fab snd_hda_codec_device_new -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 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 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 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 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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1632d2d snd_hda_jack_add_kctl_mst -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 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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9617497 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd6f7a86 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfdef13a7 snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0e550523 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0fac9772 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x222d0138 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x26123c41 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x507b4a36 snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x51b2e59c snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x60cdfb1f snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x724ef97d snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x763b6f51 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x92a0ad4c snd_hda_gen_add_micmute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x98787226 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa3e4eef2 snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa79169c8 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc3ff4f64 snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcc14ec25 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd8e00483 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdad31de2 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdc443aa8 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf02cba53 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf6939345 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfdda90f4 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 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 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 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 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 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 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 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 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 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 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 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 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-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-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 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x5eafa1b0 cs35l41_test_key_lock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x992edf0c cs35l41_regmap_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x9fe634b3 cs35l41_set_channels -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb6af50c8 cs35l41_register_errata_patch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf9310d2c cs35l41_boost_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7cb39738 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x9bfe0882 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x2dd76877 cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x800818f6 cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xa470ab14 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xb7545c2d cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xbd2fa2c7 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x05ccf4df cs42xx8_probe -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 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-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-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 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-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 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x0a1ad993 pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xaa8e864e pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x22a875e8 pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x3f3d2dde pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x988564fa pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xb5f0c96d pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xde124b0c pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xefe3a075 pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x2e06d694 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x4e9d885e pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x54bf7b68 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x5bf6b4de pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xa7aa810f rl6347a_hw_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xade4bf4c rl6347a_hw_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt286 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-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-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-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 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 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 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-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-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 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-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 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 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 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-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/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 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 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 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 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 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/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 -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x709cd25f relocate_imr_addr_mrfld -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 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 0x2c4fd0d6 snd_soc_acpi_intel_tgl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x482cc324 snd_soc_acpi_intel_jsl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x4ff887c1 snd_soc_acpi_intel_cnl_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 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 0xc787c511 snd_soc_acpi_intel_tgl_sdw_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xe67811d5 snd_soc_acpi_intel_adl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 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 0x16e86983 sst_shim32_read -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 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 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x955d8329 sst_ipc_tx_message_wait -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 0x19f73aca skl_ipc_delete_pipeline -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 0x41a147e7 skl_ipc_create_pipeline -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 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 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 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 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 0xfab4685b skl_dsp_get_core -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 0x00ea2d3e snd_soc_component_initialize -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 0x066a73ab snd_soc_add_card_controls -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 0x0c0b62fe snd_soc_dai_set_tdm_slot -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 0x0d0d2b53 snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d3e84d0 snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ef7c9b5 snd_soc_dai_compr_get_params -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 0x12a85b1a snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12ae880d snd_soc_dapm_enable_pin -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 0x1410c88d snd_soc_add_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1469b217 snd_soc_component_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19fc7ca9 snd_soc_of_parse_audio_routing -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 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 0x24067112 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2468fbbe snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 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 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 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 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 0x3e34e7ab snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e472065 snd_soc_dai_active -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40d37d59 snd_soc_dai_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4116c8ca snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4290c760 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45122eaf snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4560d5be snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46ad43c8 snd_soc_cnew -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 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 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 0x4e573947 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5037a117 snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5242623f snd_soc_get_strobe -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 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 0x5be94b59 snd_soc_unregister_dai -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 0x5db9abfc snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ed94285 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f0c293b snd_soc_runtime_set_dai_fmt -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 0x63a10003 snd_soc_daifmt_parse_clock_provider_raw -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 0x6be96c0d snd_soc_of_put_dai_link_codecs -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 0x6df14584 snd_soc_add_dai_controls -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 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 0x7320e23b snd_soc_lookup_component -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 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 0x7bb0b426 snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7bc3afa7 snd_soc_component_compr_pointer -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 0x7dfbb448 snd_soc_component_read_field -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 0x7f6dd437 snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f95b40e snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fd4fafc snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x838be4ea dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85f95f95 snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86054932 snd_soc_dapm_stream_stop -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 0x8a314699 snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c354a22 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c3b35e9 snd_soc_of_parse_card_name -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 0x8ed2d878 snd_soc_dai_is_dummy -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 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 0x94717bd4 snd_soc_dapm_put_volsw -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 0x976ec3be snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b868944 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bfde704 snd_soc_daifmt_clock_provider_fliped -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 0xa1812887 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa32bb98b snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4e3c9be snd_soc_bytes_tlv_callback -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 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 0xac466e3c snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacaee7cf snd_soc_dai_action -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 0xaf4d39d2 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafa97264 snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafc05e43 snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0e8ffa2 snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3e1c38e snd_soc_add_component_controls -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 0xbb98826f soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbf3611d snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd33f3cc snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd44e590 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd50ff87 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd7987c5 snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfdf1ecb snd_soc_register_card -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 0xc55e044b snd_soc_bytes_info -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 0xd07395a0 snd_soc_rtdcom_lookup -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 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 0xd4f65a1e snd_soc_component_compr_open -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 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 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 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 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 0xef628763 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeff14988 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf25b081c snd_soc_component_write_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf32cb04d snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf641353e snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 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/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 -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2d2d0912 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2f3fab02 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9bc69772 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa115d28a line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xabc0e7ab line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb861dc04 line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc4525b98 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc489ba39 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcafa83c1 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe15d5060 line6_alloc_sysex_buffer -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 0x001b074f mce_is_correctable -EXPORT_SYMBOL_GPL vmlinux 0x00312a61 inet6_compat_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices -EXPORT_SYMBOL_GPL vmlinux 0x0036d81c clk_hw_round_rate -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 0x00965a96 devlink_register -EXPORT_SYMBOL_GPL vmlinux 0x009cc706 agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0x00a5a16c blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0x00a82a0c devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0x00b29685 __mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x00d363f6 __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval -EXPORT_SYMBOL_GPL vmlinux 0x00df83e5 crypto_enqueue_request_head -EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator -EXPORT_SYMBOL_GPL vmlinux 0x00e61599 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x00f3bc91 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x0112d341 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x011da754 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x01262814 ata_sff_drain_fifo -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 0x014b5ce3 iommu_sva_bind_device -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 0x018d96a4 __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x018f1b11 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x0196c879 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x01c12c32 cpu_bit_bitmap -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 0x01f4c485 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x020d9a9f __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x02176df3 __tracepoint_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x02216f72 ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0x0223ddb5 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x022e5bf1 vfio_device_put -EXPORT_SYMBOL_GPL vmlinux 0x02317a85 extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x023f1c07 crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x024109b8 __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x024b3283 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x024d54bc bio_clone_blkg_association -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 0x0272f91d bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x028afe80 fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x028cd97e pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x02abf3ee pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0x02f7518f pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0x02fdd177 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x03020e27 fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -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 0x0361e712 nfs42_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x03992fd8 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x03a64a40 ata_sff_irq_on -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 0x03e1ff5c gpiod_export_link -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 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x041a504a crypto_stats_skcipher_decrypt -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 0x043a647a dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x04420408 gpiod_set_array_value_cansleep -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 0x0487dddb tty_kclose -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 0x04bbcf2c bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04c606c5 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04eaeeb4 dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0x04f8c64d spi_res_release -EXPORT_SYMBOL_GPL vmlinux 0x050cbfd0 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x050f9335 led_trigger_remove -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 0x0543bd75 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x05550b18 acpi_dma_request_slave_chan_by_index -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 0x058f9366 apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x05aa7e48 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x05ba549b store_sampling_rate -EXPORT_SYMBOL_GPL vmlinux 0x05be8305 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x05c9ad38 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x05d3e8bc security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0x05ebcba3 fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0x05fca4e2 fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0x05ff2877 devm_pwm_get -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 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 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 0x06848964 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x068b38a5 devlink_params_register -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 0x06baf66a dev_pm_clear_wake_irq -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 0x06ead4df bpf_trace_run4 -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 0x07455ae1 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0x074ed321 raw_seq_next -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 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 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 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 0x082e3c63 devm_hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x082f0b24 tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0x083fbb70 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x08467490 nvdimm_in_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x0859ab91 md_run -EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x08813770 __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x08986acf dma_buf_dynamic_attach -EXPORT_SYMBOL_GPL vmlinux 0x089ba799 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x08b0fc51 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory -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 0x0901a50c do_splice_to -EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x09095291 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x09223e8e crypto_alloc_skcipher -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 0x094eba2e __tracepoint_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x09547430 rio_request_inb_mbox -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 0x0970d1b4 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x09761130 serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09d63265 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x09e41897 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x0a00af04 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x0a02101a cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0x0a0595e9 trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0x0a0c1ea6 pci_epc_map_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0x0a1a3694 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x0a502c98 dmar_platform_optin -EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap -EXPORT_SYMBOL_GPL vmlinux 0x0a6375d6 vmf_insert_pfn_pud_prot -EXPORT_SYMBOL_GPL vmlinux 0x0a651183 __traceiter_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0x0a86bb51 efivar_entry_iter -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 -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 0x0af40724 iommu_alloc_resv_region -EXPORT_SYMBOL_GPL vmlinux 0x0afe29ff __tracepoint_block_split -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 0x0b2db2d5 remove_resource -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 0x0b73e523 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x0b7aaa24 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x0b8a19e3 xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0x0b8b5198 nf_route -EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x0bbeaeba uv_bios_enum_ports -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 0x0be118f7 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0bfccddb tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x0c217bf2 page_cache_ra_unbounded -EXPORT_SYMBOL_GPL vmlinux 0x0c23a4a8 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x0c2bf2cf rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c33bfc5 pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0x0c359b8f sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x0c3ef026 xenbus_free_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x0c5aa6a4 skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range -EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0c8b01cf sk_msg_zerocopy_from_iter -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 0x0ccf6164 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x0ce044d6 rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x0ce19c21 nf_checksum -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 0x0d0c5b01 fork_usermode_driver -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 0x0d40de1f __vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x0d41c45a tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x0d4540e4 irq_domain_xlate_twocell -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 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 0x0d902141 __raw_v4_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0d9b22ce md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x0da818a3 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x0daea810 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x0db0667a find_vpid -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 0x0dde6877 ip_valid_fib_dump_req -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 0x0e35184b thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0e3c97ad xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0x0e3f0fe7 ip_build_and_send_pkt -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 0x0e77fba1 do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0x0e8ba848 devlink_rate_leaf_create -EXPORT_SYMBOL_GPL vmlinux 0x0e8bd204 blk_next_bio -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 0x0eac6f32 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x0eb24bdd __SCK__tp_func_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter -EXPORT_SYMBOL_GPL vmlinux 0x0ec2f50d dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x0ee5f1d0 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x0eea2f8c __SCK__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x0eeae3e8 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x0ef07070 debugfs_file_put -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 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 0x0f2c37f7 acpi_cppc_processor_probe -EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain -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 0x0f72ada1 acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f83204b tpm2_get_cc_attrs_tbl -EXPORT_SYMBOL_GPL vmlinux 0x0f9fc04e uv_get_archtype -EXPORT_SYMBOL_GPL vmlinux 0x0fb2f768 ehci_adjust_port_wakeup_flags -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 0x0ffca4e9 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x1017e86b xdp_do_redirect -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 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 0x1062922f pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x108026ec __irq_resolve_mapping -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 0x10d3f97f perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0x10d90598 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x10e05003 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x10e7c85d __traceiter_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x11032fb4 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x1110863b platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x111801fc class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x111b22dd gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0x11375e94 perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0x115f62e6 __SCK__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x116180b5 hv_current_partition_id -EXPORT_SYMBOL_GPL vmlinux 0x11740a6f pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x1180edb5 dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x11826424 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x1183991b phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x11930f0f tcp_get_syncookie_mss -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 0x11bd6135 uprobe_unregister -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 0x11e59432 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x12067905 iomap_writepages -EXPORT_SYMBOL_GPL vmlinux 0x120c4bb3 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x120ca62e ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x12189359 __SCT__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -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 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x126d9ccf device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x126e3d83 msg_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0x127c109b __SCT__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x127c3650 crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0x12899442 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x1296d6ab bpf_preload_ops -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 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 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 0x13297cf8 devm_of_led_get -EXPORT_SYMBOL_GPL vmlinux 0x132b5a4d adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -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 0x136ea9d0 skb_send_sock_locked -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 0x1393f228 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x1399c39b __traceiter_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x139bc18d __tracepoint_sched_update_nr_running_tp -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 0x13e1f26f led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -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 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 0x14284ec9 scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0x142b4fce fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x1446922c pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x14537cd2 get_device -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 0x147c8b18 nfs_ssc_unregister -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 0x14dfec14 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x14e37dbd sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0x14e8eb0f crypto_shash_tfm_digest -EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0x151bb55d fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -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 0x1571d174 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x158787cf bpf_prog_put -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 0x15cc30f1 cc_platform_has -EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -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 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 0x1662c922 __tracepoint_devlink_trap_report -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 -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 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 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 0x172962dc of_icc_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x172a1dd0 devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0x172c41f9 dmaengine_unmap_put -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 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 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 0x17d65709 __SCK__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x17d77386 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0x17e4f4fa devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x17e71110 dst_blackhole_update_pmtu -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 0x1827bb50 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x1832817b vp_modern_config_vector -EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x1857724c i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt -EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes -EXPORT_SYMBOL_GPL vmlinux 0x1867d0e4 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x186a2663 bpf_prog_create -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 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 0x18bde336 tpm_tis_core_init -EXPORT_SYMBOL_GPL vmlinux 0x18cf3a2d vchan_tx_desc_free -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 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 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 0x196614ce hw_breakpoint_restore -EXPORT_SYMBOL_GPL vmlinux 0x1975fa50 acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19a77131 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x19d0c4c0 netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x19dbd163 usb_hub_release_port -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 0x19edd064 blkg_rwstat_exit -EXPORT_SYMBOL_GPL vmlinux 0x19fdb898 sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x1a04908e __fl6_sock_lookup -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 0x1a21cb70 __mmc_poll_for_busy -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 0x1a4066ce __tracepoint_fib6_table_lookup -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 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a6c013c crypto_stats_kpp_generate_public_key -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 0x1a9754cf sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0x1a9791ee devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x1aaef840 sfp_bus_add_upstream -EXPORT_SYMBOL_GPL vmlinux 0x1ab2ea7c max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x1ab32238 crypto_shash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x1ab6fa36 security_path_symlink -EXPORT_SYMBOL_GPL vmlinux 0x1abf3b4b phy_speed_down -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 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1af9693c inet_csk_listen_stop -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 0x1b510539 devlink_param_register -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 0x1b65b420 crypto_stats_akcipher_encrypt -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 0x1b94b2f9 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x1ba237b0 default_cpu_present_to_apicid -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 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 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 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 -EXPORT_SYMBOL_GPL vmlinux 0x1c485bde vp_modern_set_queue_enable -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 0x1c661ced netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0x1c6b08c4 key_set_timeout -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 0x1c96355e watchdog_register_device -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 -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 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 0x1d4a79e7 misc_cg_uncharge -EXPORT_SYMBOL_GPL vmlinux 0x1d4dc290 sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0x1d6b32b4 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x1d6bf384 __xenmem_reservation_va_mapping_update -EXPORT_SYMBOL_GPL vmlinux 0x1d6edbde crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7e6f69 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x1d81fa2e md_rdev_clear -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 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 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 0x1e1c1a2f nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0x1e201b69 hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x1e3e3afa dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x1e486b42 xhci_get_ep_ctx -EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x1e56b2e0 __tracepoint_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x1e5a5f22 sn_partition_id -EXPORT_SYMBOL_GPL vmlinux 0x1e72fa5e vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e8d317f ethnl_cable_test_fault_length -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 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 0x1edc9ba9 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1edff725 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x1eeec8ba tpmm_chip_alloc -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 0x1f186007 xfrm_get_translator -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 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f5ece97 cond_wakeup_cpu0 -EXPORT_SYMBOL_GPL vmlinux 0x1f6aa7e1 regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x1f6bbb1d __SCK__tp_func_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x1f6bcd6c icc_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x1f7aaf89 __synth_event_gen_cmd_start -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 -EXPORT_SYMBOL_GPL vmlinux 0x1f861c5f usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x1f8900f8 pci_hp_del -EXPORT_SYMBOL_GPL vmlinux 0x1f966ea4 __traceiter_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x1f9ee705 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fb3a764 pci_walk_bus -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 0x1fd87d7b sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1ff2c5bf mptcp_token_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x20391b67 nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0x203e4bca inet6_csk_xmit -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 0x207ccf59 devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame -EXPORT_SYMBOL_GPL vmlinux 0x20899467 hv_stimer0_isr -EXPORT_SYMBOL_GPL vmlinux 0x208d1fff xenbus_dev_error -EXPORT_SYMBOL_GPL vmlinux 0x20956a9b __netif_set_xps_queue -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 0x20d91263 ima_inode_hash -EXPORT_SYMBOL_GPL vmlinux 0x20f33332 devm_namespace_enable -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 0x212c5a50 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x21478f36 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x216c3a88 exportfs_decode_fh_raw -EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio -EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x217f43fd vp_modern_queue_address -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -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 -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 0x2204a73b __SCK__tp_func_br_fdb_add -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 0x2227a291 tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0x22429577 alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0x224f51bf nvmem_device_cell_read -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 0x22aedd3d sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x22b11dd3 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0x22bf8b82 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x22d1b056 trace_event_buffer_reserve -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 0x22ec5205 cpu_latency_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x22f00a99 netdev_walk_all_lower_dev -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 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 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x2369e8f5 ethtool_set_ethtool_phy_ops -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 0x23931849 crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x23aa267e pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0x23b4e0d7 clear_page_rep -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 0x23fac878 devlink_net -EXPORT_SYMBOL_GPL vmlinux 0x23fcb2a7 devlink_trap_policers_unregister -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 0x240c7249 devlink_port_attrs_pci_sf_set -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 0x244201bb __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x245d9214 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x24647c08 skcipher_walk_async -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 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 0x24c70883 __traceiter_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24db4687 crypto_grab_skcipher -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 0x25030f56 __traceiter_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x2503f1fc of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0x2509133c ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x25156255 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x251f60ff trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem -EXPORT_SYMBOL_GPL vmlinux 0x253748c0 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x25647ede __traceiter_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x256f7f83 devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x25720c2b spi_res_add -EXPORT_SYMBOL_GPL vmlinux 0x257416c6 trace_event_raw_init -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 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 0x25e7cc4b xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr -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 0x260a5178 ip6_local_out -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 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 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 0x267538db xen_unregister_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2691d4b5 for_each_kernel_tracepoint -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 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 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 0x26f65eaa blk_ksm_is_superset -EXPORT_SYMBOL_GPL vmlinux 0x26fd13e7 smca_banks -EXPORT_SYMBOL_GPL vmlinux 0x270714e1 access_process_vm -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 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x2758bea9 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x275be19d devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2767b4f8 fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x27817885 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x27a41884 balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x27a68e0e fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0x27ac2985 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 0x27cb7fe1 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x27ccce3d device_store_ulong -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 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x280d8cb5 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x28119e8d __tracepoint_pelt_dl_tp -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 0x284bc984 iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0x28523437 phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0x285753ee device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0x285fd069 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x2864d1e9 pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0x286545d0 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -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 0x288dd01a validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x28a2a49c pm_generic_freeze -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 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 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 0x28f55b90 fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0x28fbfdb6 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x28fd1db2 cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0x290a7c16 devm_clk_bulk_get_optional -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 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 0x295ddbee tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x295df763 devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0x2964964f gnttab_page_cache_init -EXPORT_SYMBOL_GPL vmlinux 0x296ab2f4 iommu_map_atomic -EXPORT_SYMBOL_GPL vmlinux 0x298caa81 pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x29a06439 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x29a8d281 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x29b45f9f cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x29c093c2 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x29d21609 virtqueue_poll -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 0x29fd50b1 pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0x2a0040de xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0x2a07972c skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x2a0b4a6c sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x2a0f9ab3 dev_pm_opp_put_regulators -EXPORT_SYMBOL_GPL vmlinux 0x2a2aea17 clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2a30f96f inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x2a40d945 l3mdev_table_lookup_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2a47169b dev_get_tstats64 -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 0x2a85206d __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x2a89dc4f devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2a8af55a acpi_ec_add_query_handler -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 0x2ae13459 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x2ae72b30 shake_page -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 0x2b0fe000 gnttab_cancel_free_callback -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 0x2b29dc58 mptcp_pm_get_local_addr_max -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 0x2b4257b9 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b45b1d0 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x2b53c5fd acpi_dev_gpio_irq_get_by -EXPORT_SYMBOL_GPL vmlinux 0x2b545989 gpio_to_desc -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 0x2b6bcaa6 sched_set_normal -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 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 0x2b9c7c56 dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0x2b9ea526 tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x2bbddabe pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0x2bbfb31a dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x2bc1000c led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x2bcc3f76 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x2bd624e6 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x2bfa52ad pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x2bfc33e3 __pm_runtime_resume -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 0x2c599f70 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x2c5aeed3 devm_of_icc_get -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 0x2c682aa4 synth_event_gen_cmd_array_start -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 0x2c9fbc58 icmp_build_probe -EXPORT_SYMBOL_GPL vmlinux 0x2ca41024 ioasid_get -EXPORT_SYMBOL_GPL vmlinux 0x2caaa46b param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x2cc0da05 devm_nvmem_cell_get -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 0x2cfbb2b5 __SCT__tp_func_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x2d0219e9 strp_stop -EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -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 0x2d5f69b3 rcu_read_unlock_strict -EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x2d77a21e switchdev_handle_fdb_add_to_device -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 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 0x2dda19ae clk_gate_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x2dde6df8 mptcp_token_get_sock -EXPORT_SYMBOL_GPL vmlinux 0x2deb97c6 led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add -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 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 0x2e5ca337 ping_seq_next -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 0x2e9e1890 kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec8538c devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x2eccd61c security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x2eda4807 is_uv_hubbed -EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x2ee7c5d0 ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x2ef04e7b blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x2f0a85ac fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -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 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 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 0x2f97191b netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2fb2ff77 devm_acpi_dev_remove_driver_gpios -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 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 0x3022c387 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x3050aa8d vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0x305ffa13 pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x30638f25 __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x3068a930 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0x306f9729 bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0x3078f812 get_dev_pagemap -EXPORT_SYMBOL_GPL vmlinux 0x307f513e phy_put -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 0x30b17ebc gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x30b69cb1 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x30bcf1f6 xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x30bee2ba fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x30ca5900 usb_for_each_port -EXPORT_SYMBOL_GPL vmlinux 0x30ce629b gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x30cf804f slow_virt_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x30cfd390 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0x30e3b569 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x31001f7f icc_enable -EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk -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 0x314801cc lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0x31490f04 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x3152986b firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0x3165daa3 arbitrary_virt_to_machine -EXPORT_SYMBOL_GPL vmlinux 0x316ca382 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x31706316 __SCT__tp_func_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes -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 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 0x31c2b1f0 nfs_ssc_client_tbl -EXPORT_SYMBOL_GPL vmlinux 0x31c65185 tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31d60b4e crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x31d61590 regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x31d9000e da9052_adc_read_temp -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 0x31f8fd27 inet_csk_get_port -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 0x324334d0 tcp_sendpage_locked -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 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 0x32ab9abd ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x32bba985 pci_stop_and_remove_bus_device_locked -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 0x32cb9b37 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x32ddf22b mbox_client_txdone -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 0x32fdca34 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x3311b3b3 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x3325b85b smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x3348d035 int_active_memcg -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 0x3385dac4 fscrypt_mergeable_bio -EXPORT_SYMBOL_GPL vmlinux 0x3397398c __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x33a43efa ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x33afa472 inet6_lookup -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 0x340fa246 sysfs_group_change_owner -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 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 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 0x347d1eee acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0x3490be74 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x34b1d7a0 ping_close -EXPORT_SYMBOL_GPL vmlinux 0x34b6f2a3 device_match_any -EXPORT_SYMBOL_GPL vmlinux 0x34bd2ed2 dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0x34c23946 bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x34cf530d gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x34fa5286 kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x34fc6185 is_swiotlb_active -EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait -EXPORT_SYMBOL_GPL vmlinux 0x35110d7f sk_psock_init -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 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 0x353e486e regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x35445e0f sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next -EXPORT_SYMBOL_GPL vmlinux 0x3564b456 xfrm_put_translator -EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL vmlinux 0x356d09a1 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35b3fa28 devm_pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x35cfe11d devm_thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x35d0d694 devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem -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 -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 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 0x366945d5 lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0x36734a56 devm_pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -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 0x36c679b2 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x36cdc092 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x36d06dbf fwnode_count_parents -EXPORT_SYMBOL_GPL vmlinux 0x36d26c46 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x36e51190 __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x36e71c0b trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x36fe8250 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x37244b8a fwnode_get_name -EXPORT_SYMBOL_GPL vmlinux 0x372cfd6e gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x3734291d skb_zerocopy_iter_stream -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 -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 0x37749eb2 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state -EXPORT_SYMBOL_GPL vmlinux 0x3781dd09 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x3794ca00 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x37c508e4 perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0x37c684b0 fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0x37c98300 ata_wait_register -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 0x37f292c4 pmc_atom_write -EXPORT_SYMBOL_GPL vmlinux 0x37f4d904 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x38119201 regmap_get_device -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 0x385a3426 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x385a4b29 fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0x385db020 acpi_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0x386c715f debugfs_attr_write -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 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 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 0x38e9e9ed crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x38f2c331 genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x38f369cd iommu_uapi_sva_bind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x3901f397 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x390773af efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0x391e3652 pcie_reset_flr -EXPORT_SYMBOL_GPL vmlinux 0x3938d4fe wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x3952753f skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x395e556d extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x39621361 genphy_c45_loopback -EXPORT_SYMBOL_GPL vmlinux 0x396cf510 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x397b8267 extcon_set_property -EXPORT_SYMBOL_GPL vmlinux 0x398c36b5 crypto_alg_extsize -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 0x39c4bec9 vfs_read -EXPORT_SYMBOL_GPL vmlinux 0x39c70837 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x39c8e090 fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0x39ce6955 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x39ded14f __SCT__tp_func_unmap -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 0x3a0920bd bpf_trace_run9 -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 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 0x3a5062d5 devlink_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x3a57a726 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3a5a6427 xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0x3a65209b pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn -EXPORT_SYMBOL_GPL vmlinux 0x3a810eed sk_set_memalloc -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 -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -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 0x3b1f3f34 pci_iov_virtfn_devfn -EXPORT_SYMBOL_GPL vmlinux 0x3b2a5050 devlink_region_snapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0x3b3afb3f rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b4f0613 tracing_snapshot_cond_disable -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 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 0x3bb0ee81 efivar_entry_set_get_size -EXPORT_SYMBOL_GPL vmlinux 0x3bb15401 devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3bbc4392 fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x3bbf9412 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x3bd2cedf __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test -EXPORT_SYMBOL_GPL vmlinux 0x3bdcd4fb devlink_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3c0a3491 devlink_port_attrs_pci_vf_set -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 0x3c1e659d gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0x3c1f02a8 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x3c217c01 badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0x3c2eefba mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0x3c3658bc edac_mc_free -EXPORT_SYMBOL_GPL vmlinux 0x3c3801c6 irq_chip_set_vcpu_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x3c3a83e6 __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0x3c3dbe39 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x3c536628 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x3c54d2ba crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x3c59c213 device_property_read_u32_array -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 0x3c894c3b i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x3c9208ef crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x3c98135b addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0x3ca7fa0f led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0x3cc07be9 pv_info -EXPORT_SYMBOL_GPL vmlinux 0x3cc4b494 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x3ccd516c wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk -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 0x3ce7b6df iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x3cfb1c75 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x3cfcbaf9 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x3d07a287 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x3d099b2a kobject_uevent -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 0x3d388324 dpm_resume_end -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 0x3d63756c hsu_dma_do_irq -EXPORT_SYMBOL_GPL vmlinux 0x3d81ecd4 __unwind_start -EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x3d8f29cc srcutorture_get_gp_data -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 0x3dca2967 wm831x_regmap_config -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 0x3df1455b perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x3df3c564 dax_supported -EXPORT_SYMBOL_GPL vmlinux 0x3df82d00 mce_log -EXPORT_SYMBOL_GPL vmlinux 0x3dfe3e40 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x3e18a8d4 agp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x3e259f84 espintcp_push_skb -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 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 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 0x3e85ba86 pfn_to_online_page -EXPORT_SYMBOL_GPL vmlinux 0x3e894c65 __sync_filesystem -EXPORT_SYMBOL_GPL vmlinux 0x3e8ca1ca rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -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 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 0x3f0808c6 sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0x3f0bf483 crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0x3f1400f7 gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0x3f2550b7 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x3f38affd __devm_intel_scu_ipc_register -EXPORT_SYMBOL_GPL vmlinux 0x3f4647b3 iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f5a0390 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x3f64e874 devm_bitmap_zalloc -EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3f8959e8 crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put -EXPORT_SYMBOL_GPL vmlinux 0x3f8fd3f5 trace_array_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x3f953dd9 rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index -EXPORT_SYMBOL_GPL vmlinux 0x3fbcbd6a dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x3fbff199 __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x3fc7073a led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x3fd24359 crypto_register_templates -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 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 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 -EXPORT_SYMBOL_GPL vmlinux 0x408c39ab edac_pci_handle_npe -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 0x40d349b6 sbitmap_queue_resize -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 0x4126d3e7 usb_get_maximum_speed -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 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 0x41651e60 cookie_tcp_reqsk_alloc -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 0x418640e8 rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL vmlinux 0x418c57ff power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x41960c17 ndo_dflt_bridge_getlink -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 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 0x41bb04b7 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x41be2527 ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0x41c082ef bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x41cb0004 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x41d15cc0 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x41d2e32d dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x41e5adc2 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x41ec6903 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -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 0x421affc3 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x422e578a __SCT__tp_func_add_device_to_group -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 0x424c6501 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x424e3c8b gpiochip_free_own_desc -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 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 0x42ad3194 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x42b799a8 vp_modern_probe -EXPORT_SYMBOL_GPL vmlinux 0x42bdc467 vfs_test_lock -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 0x433a7de8 of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x434afa05 fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0x4357074b fpstate_clear_xstate_component -EXPORT_SYMBOL_GPL vmlinux 0x4369f9f1 of_pm_clk_add_clks -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 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 0x43874d5b ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x438acd29 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43dfd11a fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x43f5677f raw_unhash_sk -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 0x4401e6c2 mpi_cmpabs -EXPORT_SYMBOL_GPL vmlinux 0x440574c1 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu -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 0x4458a89e ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x44699ecc vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0x447ef89b dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -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 0x44c0bfa5 usb_pipe_type_check -EXPORT_SYMBOL_GPL vmlinux 0x44c2121e devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str -EXPORT_SYMBOL_GPL vmlinux 0x44db54d1 xen_remap_vma_range -EXPORT_SYMBOL_GPL vmlinux 0x44dc71d1 bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0x44dfd842 __auxiliary_device_add -EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats -EXPORT_SYMBOL_GPL vmlinux 0x44e1f3d5 ip6_sk_dst_lookup_flow -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 0x450a5ed6 nf_queue_nf_hook_drop -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 0x45488365 wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x458f49d8 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x4591cfda virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x45ad18ab amd_iommu_is_attach_deferred -EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page -EXPORT_SYMBOL_GPL vmlinux 0x45e2ab72 get_device_system_crosststamp -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 -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 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 0x466e074c clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0x46710b02 sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0x46738cce sdio_writew -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 0x46a4b118 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x46a6c9ef hv_get_tsc_page -EXPORT_SYMBOL_GPL vmlinux 0x46a8a3a5 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0x46b0b6b6 bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x46b0e3a1 tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x46dbdc35 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x46e69ebe edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x46f0561a crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x46fd59ad pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x46fe3f50 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x46fe9ab9 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x4715b76b rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x4736404a phy_set_speed -EXPORT_SYMBOL_GPL vmlinux 0x474578e4 xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0x475da5af __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -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 0x47a8264c acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47b5dbf1 fat_dir_empty -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 0x47efcdb8 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x47f4e6f2 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x47fb9c86 debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x480f9f35 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x481232f7 __traceiter_napi_poll -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 0x483b2ed9 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x485714c9 mbox_send_message -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 0x4885cb7b nf_ipv6_ops -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 0x48c2bb75 crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x48c91fe5 blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0x48d693ab hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x48d82cae __SCK__tp_func_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse -EXPORT_SYMBOL_GPL vmlinux 0x491bed01 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4928df65 devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x493134bf dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node -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 0x498015c1 fib_rules_dump -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 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 0x49cd25ed alloc_workqueue -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 0x4a073cbd devm_regmap_add_irq_chip_fwnode -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 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a4334d6 pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0x4a67ac5a blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x4a7b63fc dax_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x4a9cefd9 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x4ab1e870 fuse_dev_alloc -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 0x4b09a182 raw_seq_stop -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 0x4b3961c6 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x4b41839e pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask -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 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 0x4b843181 acpiphp_register_attention -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 0x4bc8727f xen_balloon_init -EXPORT_SYMBOL_GPL vmlinux 0x4bcb6eaf __tracepoint_suspend_resume -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 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 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 0x4c4cef20 devlink_port_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c56003a nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x4c6510e5 acpi_driver_match_device -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 0x4c82f745 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition -EXPORT_SYMBOL_GPL vmlinux 0x4c8bb9e0 icc_set_tag -EXPORT_SYMBOL_GPL vmlinux 0x4c9e6e73 fscrypt_d_revalidate -EXPORT_SYMBOL_GPL vmlinux 0x4ca38862 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cc38cbb fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x4ccefd15 devlink_dpipe_entry_ctx_append -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 0x4d058de2 __SCK__tp_func_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x4d0b752f alloc_iova -EXPORT_SYMBOL_GPL vmlinux 0x4d13a6ad ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x4d1c4f37 __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x4d202a74 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x4d313f1e i2c_acpi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x4d3547c6 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4d468f2b devm_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get -EXPORT_SYMBOL_GPL vmlinux 0x4d6f00eb kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0x4d721dc4 devlink_param_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d7315e2 find_asymmetric_key -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 0x4d99193d __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x4da1f4a7 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4dba9d97 __traceiter_br_fdb_update -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 0x4e10a881 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4e113edd i2c_dw_configure_master -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 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 0x4e3bf034 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x4e4aaea4 __SCK__tp_func_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier -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 0x4e8fbc9d do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x4ea30931 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4ebab24c sk_msg_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x4ebe8ec1 fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x4ec21ab6 iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4ed07420 vfio_pci_core_close_device -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 0x4f13ae54 ip6_route_output_flags_noref -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 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 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 0x4f8cc92b isa_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x4fa16a78 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0x4fa428e9 ip_local_out -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 0x4fb987bf acpi_device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x4fc3bcce attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x4fcd0c77 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4feb6b0a skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x4ffad35c input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x4ffcedf8 hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x4ffe1c35 spi_controller_suspend -EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x5038ee05 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x50411929 badblocks_init -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 -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 0x50830c2e iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x5084bbf4 fat_build_inode -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 0x50ae64db sk_set_peek_off -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 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 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x50fb39af inet_twsk_alloc -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 0x513c4e52 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x513db16e to_nd_desc -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 0x5160e029 sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0x51675e30 rio_free_net -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 0x51a34874 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51a36f3c ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x51c7111d blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x51ce034a skb_mpls_push -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 0x5200ad92 sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0x5205f5bb debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x522eda5b usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x523ba8cc usb_sg_cancel -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 0x52917576 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags -EXPORT_SYMBOL_GPL vmlinux 0x52b5c917 perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0x52c14638 ptp_parse_header -EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52dbd325 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x52e15313 __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x52e578ad usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x52ea150d __class_create -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 0x5321d3d6 sbitmap_get -EXPORT_SYMBOL_GPL vmlinux 0x5323e080 phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0x5329bd3a __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x53305d87 spi_take_timestamp_pre -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 0x536e408a page_cache_async_ra -EXPORT_SYMBOL_GPL vmlinux 0x536fa291 ata_pci_bmdma_clear_simplex -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 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 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 0x54166b57 tcp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -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 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 0x54651f9b rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x546e0938 __trace_array_puts -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 0x549cb923 sata_pmp_error_handler -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 0x54cc2187 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x54d02e2d netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x54d266f2 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x54def71e netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x54e02aaf fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x54e96294 inet6_sk_rebuild_header -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 0x55339365 flush_delayed_fput -EXPORT_SYMBOL_GPL vmlinux 0x5535001a dev_pm_opp_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x5536551b perf_event_addr_filters_sync -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 0x5555055d devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x5575f8c3 trace_array_destroy -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 0x55838cd7 lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0x5589e3c6 l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0x55b144f0 ip6_route_lookup -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 0x55e650e2 security_inode_permission -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -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 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x5628bdd6 __list_lru_init -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 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x5644fea6 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x56504bc7 vfio_init_group_dev -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 0x56948896 spec_ctrl_current -EXPORT_SYMBOL_GPL vmlinux 0x5697e768 devlink_param_unpublish -EXPORT_SYMBOL_GPL vmlinux 0x5699e3b4 synth_event_trace -EXPORT_SYMBOL_GPL vmlinux 0x56c19633 synth_event_create -EXPORT_SYMBOL_GPL vmlinux 0x56ea34ee nvdimm_cmd_mask -EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x56ff960a serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5716261b __SCK__tp_func_tcp_send_reset -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 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 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 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57a10d29 tps65912_device_exit -EXPORT_SYMBOL_GPL vmlinux 0x57ae422f call_switchdev_notifiers -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 0x57cbecc5 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x57d20089 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index -EXPORT_SYMBOL_GPL vmlinux 0x57e49d48 devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x57e987aa pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x57f375e3 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -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 0x5823f6c6 devlink_flash_update_timeout_notify -EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id -EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -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 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 0x5882b1f5 devlink_region_snapshot_id_put -EXPORT_SYMBOL_GPL vmlinux 0x58857161 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x58950fe6 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x589e3fcb cgroup_get_e_css -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 0x58f81933 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x590f5e9a pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x59120b82 scsi_host_block -EXPORT_SYMBOL_GPL vmlinux 0x59190e18 sched_trace_rq_cpu_capacity -EXPORT_SYMBOL_GPL vmlinux 0x591d13a7 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x593c4b72 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5946ca57 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x59618bf8 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x59694bec regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x5971682b sdev_evt_send -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 0x59c36f60 rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x59c492e0 nfnl_ct_hook -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 0x59ca862f ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x59e0f053 fpu_free_guest_fpstate -EXPORT_SYMBOL_GPL vmlinux 0x59ed3e55 usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm -EXPORT_SYMBOL_GPL vmlinux 0x5a09a73e ip6_dst_lookup_tunnel -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 0x5a27f387 extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x5a283230 devm_krealloc -EXPORT_SYMBOL_GPL vmlinux 0x5a297627 icc_std_aggregate -EXPORT_SYMBOL_GPL vmlinux 0x5a3bb229 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x5a3f19a1 __tcp_send_ack -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 0x5a9bfdad irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x5a9fdbc6 sock_diag_save_cookie -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 0x5ac2ad7d usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x5b0ea691 __fsnotify_inode_delete -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 0x5b3e243b driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5b49fa6d pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x5b5d41f3 xenbus_grant_ring -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 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 0x5be6005a devlink_reload_disable -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 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 0x5c3b6f04 dma_async_device_channel_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5c3fa204 sock_map_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5c58339f is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features -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 0x5cbb5e09 vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0x5cdbde1b __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x5ce98f58 synth_event_trace_end -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 0x5d10368a tcp_twsk_unique -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 0x5d2ca1e2 ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0x5d2fb58e cgroup_get_from_id -EXPORT_SYMBOL_GPL vmlinux 0x5d3d3726 vfio_register_group_dev -EXPORT_SYMBOL_GPL vmlinux 0x5d461801 nfs_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x5d679033 ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0x5d6de845 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x5d7bc572 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x5d821f00 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc -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 0x5dbcfa4f boot_cpu_physical_apicid -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 0x5df5d414 xfrm_audit_state_replay -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 0x5e2d715d gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x5e3f95ea rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0x5e4b49e7 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x5e4e74a4 bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e69585d tcp_sendmsg_locked -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 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 0x5ebfa676 dev_pm_opp_detach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x5ece7eec security_inode_mkdir -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 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f287835 iommu_sva_free_pasid -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 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f81bfac ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x5f8e47ea perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x5f903869 vp_modern_queue_vector -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 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 0x5fe36e70 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x5fe96df1 kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x5fe9885c crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0x5ff715fe scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x60069ee1 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x6014d9fc bus_rescan_devices -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 0x608075b1 sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x608fc5dd wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -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 0x60c86e2e pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x60ccf536 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x60df4189 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x60e2246f aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x60e90cff sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf -EXPORT_SYMBOL_GPL vmlinux 0x60fd0e7d pskb_put -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 0x612bfd89 errno_to_blk_status -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 0x615c6bce __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0x61645cf3 __pci_epf_register_driver -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 0x619d2eca acpi_gpio_get_irq_resource -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 0x61ca47d7 crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x61d40644 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x61e20df6 ipv4_update_pmtu -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 0x620541cb d_walk -EXPORT_SYMBOL_GPL vmlinux 0x6210199a device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0x62112036 __tracepoint_sched_util_est_se_tp -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 -EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule -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 0x626abb6b devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x628d895f __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x62912d05 __SCK__tp_func_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x629b5c92 device_add_software_node -EXPORT_SYMBOL_GPL vmlinux 0x62a40873 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x62afb2c1 __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -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 0x63014c1d devlink_port_type_clear -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 0x632ad5e6 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x6334b38b gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model -EXPORT_SYMBOL_GPL vmlinux 0x634efd99 dev_pm_opp_set_rate -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 0x63a72244 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x63b3fffb bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x63b5e4ea mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x63baec1c ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63c8cfe5 led_blink_set -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 0x641c18ee gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0x64301193 spi_setup -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 0x6461864b gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x6485452c sched_trace_cfs_rq_avg -EXPORT_SYMBOL_GPL vmlinux 0x648c0e25 device_match_name -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 -EXPORT_SYMBOL_GPL vmlinux 0x64986abb perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x649ed2a5 devfreq_event_reset_event -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 0x64b71173 reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0x64c2503c devm_regulator_bulk_register_supply_alias -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 0x64db8491 nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0x64dff651 iommu_device_unlink -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 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 0x64fc2492 switchdev_bridge_port_unoffload -EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x651341eb __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x6531e5a6 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x65461a93 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x654813ea nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0x655645a3 strp_init -EXPORT_SYMBOL_GPL vmlinux 0x655a0874 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x656748bb __SCK__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x65704d22 hv_stimer_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x65837555 platform_get_mem_or_io -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 0x65b23b66 __SCK__tp_func_napi_poll -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 0x65e6bb73 bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0x65fab729 transport_destroy_device -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 0x661f2093 devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0x661f2956 pm_genpd_remove -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 -EXPORT_SYMBOL_GPL vmlinux 0x663ce084 fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0x664aff29 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x666c2b6b dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x6674b294 edac_device_handle_ce_count -EXPORT_SYMBOL_GPL vmlinux 0x66755e51 intel_pmic_install_opregion_handler -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 0x669e7633 perf_event_period -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 0x66d22dd8 events_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66ee2f48 acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x67289a73 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x672c17f9 trace_event_reg -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 0x6759bd00 __SCT__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x676d8e29 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x6788ede4 find_get_pid -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 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67dcd76b uv_setup_irq -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 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 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x68384d7a devm_device_add_groups -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 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 0x68aac6a3 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x68ae8464 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x68fa43f0 tps65912_regmap_config -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 0x69185735 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x69332501 devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x693685d8 __SCK__tp_func_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x694a4307 led_classdev_notify_brightness_hw_changed -EXPORT_SYMBOL_GPL vmlinux 0x695f7c56 get_task_pid -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 0x6977a53c tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x6979a2c4 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -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 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 0x6a02c9b1 trace_array_set_clr_event -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 0x6a6440f7 net_ns_get_ownership -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 0x6ac7852f device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x6adc228b phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0x6ae20aa8 netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x6af0311c mptcp_pm_get_add_addr_signal_max -EXPORT_SYMBOL_GPL vmlinux 0x6af0bf43 usb_phy_set_event -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 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 0x6b440946 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0x6b598d13 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x6b5af554 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x6b68ba59 ata_sff_dma_pause -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 -EXPORT_SYMBOL_GPL vmlinux 0x6b8b914d debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x6b90d371 ipv6_proxy_select_ident -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 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 0x6bdcc598 devlink_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake -EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler -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 0x6c15f2d0 crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print -EXPORT_SYMBOL_GPL vmlinux 0x6c29dc86 led_classdev_unregister -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 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 0x6c88af12 __traceiter_sched_util_est_se_tp -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 0x6cb7811d pid_vnr -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 0x6cfb0d61 __tracepoint_non_standard_event -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 0x6d0ff055 dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x6d2588a1 fixup_user_fault -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 0x6d3e0a0a fsverity_ioctl_measure -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 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 0x6db41f3b crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dc4c627 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x6dc5ee87 vfio_pci_core_write -EXPORT_SYMBOL_GPL vmlinux 0x6dc962d7 spi_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x6dcd4967 crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6df967aa devm_memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x6e00fcfb modify_ftrace_direct -EXPORT_SYMBOL_GPL vmlinux 0x6e189e1b sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x6e2904a9 sysfs_create_link_nowarn -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 0x6e523cde __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x6e554c6f unwind_get_return_address -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 0x6eb824a9 iomap_readahead -EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ebf0a2e rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x6eca1a6c intel_pinctrl_probe_by_hid -EXPORT_SYMBOL_GPL vmlinux 0x6ed0fdcb sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0x6ed36d90 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x6ee264a2 proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0x6ee4c5e2 rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0x6ee89db0 acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -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 0x6f18ec2b __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0x6f21bdf5 spi_mem_driver_register_with_owner -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 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 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 0x6fabae87 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x6faf64d0 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6fc89fa8 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x6fcb2838 __alloc_pages_bulk -EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fd6472c cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x6feb8e6b xhci_drop_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -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 0x7010722d sysfs_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x701cbd76 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x701e4f4c rdev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x703e4b4e blk_ksm_init_passthrough -EXPORT_SYMBOL_GPL vmlinux 0x704a3d00 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x70506401 tcp_twsk_destructor -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 0x705de533 devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0x70600df9 __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x70b7c07a gnttab_grant_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70c589d1 security_path_link -EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70e06e33 pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x70eb0c20 pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0x70eb7a97 device_create -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed -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 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 0x7185d132 setfl -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 0x71a12085 bpf_trace_run5 -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 0x71b6cf94 dst_cache_reset_now -EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0x71ca1b0f acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x71d27694 spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0x71eada2d efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0x71f44952 blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x71f75219 proc_create_net_data -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 0x7253f69e extcon_get_property -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 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 0x7283161b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x729854dd generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x72ae8631 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x72afeaef thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x72b2ad0d crypto_stats_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x72b694fd unmap_mapping_pages -EXPORT_SYMBOL_GPL vmlinux 0x72c79dde ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups -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 0x72f79352 iommu_aux_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type -EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0x7339dbd7 xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0x733ec33e __SCT__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x7340db23 ip6_route_input_lookup -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 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 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 0x73a61aec sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0x73c1f749 vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -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 0x73e45f58 ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0x73ea3a6a ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x73ec118d fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x73f06f1d alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0x74082b44 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x7419e976 __irq_domain_add -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 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 0x74513223 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7470adf5 rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x747715e0 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x748c71dc devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x748ce28b nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0x7497e140 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x74af0f04 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x74af4dcf pci_msi_prepare -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 0x74d0d1b0 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x74d862ca securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74ed6880 blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0x74ff0554 crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0x75006195 crypto_enqueue_request -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 0x75394b27 net_selftest -EXPORT_SYMBOL_GPL vmlinux 0x754879bf ip_fib_metrics_init -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 0x7586ecfc xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x75af7b8b class_dev_iter_next -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 -EXPORT_SYMBOL_GPL vmlinux 0x75db45b0 sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x75e53cd6 usb_register_dev -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 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 0x7628336c crypto_stats_akcipher_verify -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 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 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 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 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 0x7700f871 dev_pm_opp_get_freq -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 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 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 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 0x7773bd3c tcp_abort -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 0x779b37e2 dev_pm_genpd_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b750bd posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x77dbc317 devlink_port_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put -EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x77ff9a3e led_put -EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table -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 0x783facc0 dst_cache_get_ip4 -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 0x788bfbad ring_buffer_empty -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 0x78c54b8a tcp_is_ulp_esp -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 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 0x793dcb8f devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x796794fb devm_hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x796c14b9 regulator_irq_helper -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 0x79abe062 bpf_trace_run10 -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 0x79daf4de __SCT__tp_func_tcp_send_reset -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 0x79f18937 strp_process -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 0x7a210860 crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0x7a2f3e6e device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0x7a318954 __bio_try_merge_page -EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table -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 0x7a58a719 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x7a5dd93c tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x7a655f68 acpi_processor_claim_cst_control -EXPORT_SYMBOL_GPL vmlinux 0x7a6b9271 rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7a6ddbea fwnode_get_named_child_node -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 0x7a81130e preempt_notifier_register -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 0x7ab391eb scsi_bus_type -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 0x7ac174cd sched_trace_rq_avg_irq -EXPORT_SYMBOL_GPL vmlinux 0x7ac1af4f ata_sff_prereset -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 0x7ad53c75 __SCK__tp_func_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x7ae01b13 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x7ae31efe tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x7ae42a15 tcp_rate_check_app_limited -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 0x7b178afe unlock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x7b1dac88 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x7b2effa4 kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x7b460c38 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi -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 0x7b643c26 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x7b68f0dc ethnl_cable_test_pulse -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 0x7b976693 xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -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 0x7bcb1abc fscrypt_prepare_new_inode -EXPORT_SYMBOL_GPL vmlinux 0x7be499cf pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x7bf8f036 icc_put -EXPORT_SYMBOL_GPL vmlinux 0x7c032473 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x7c20b6a0 load_direct_gdt -EXPORT_SYMBOL_GPL vmlinux 0x7c23e87a pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x7c4c0920 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator -EXPORT_SYMBOL_GPL vmlinux 0x7c626556 list_lru_destroy -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 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 0x7cb33664 user_update -EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor -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 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler -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 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 0x7d668349 __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x7d6f642f sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x7d81f898 wakeup_sources_walk_next -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 0x7da56c38 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x7db47a37 dw_pcie_ep_linkup -EXPORT_SYMBOL_GPL vmlinux 0x7db605e8 serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x7dbd7a5d msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0x7dc5e879 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x7dc965b6 tpm_chip_unregister -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 0x7e4e66e4 __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x7e4ebf40 dev_attr_ncq_prio_supported -EXPORT_SYMBOL_GPL vmlinux 0x7e5bb2b8 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e65f955 xfrm_register_translator -EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook -EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7e881ded ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0x7e9043b8 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x7e9bc863 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x7eae9126 __dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ec814de inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0x7ecbcd9f gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7edb9013 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x7ee75dba umd_cleanup_helper -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 0x7f257204 fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0x7f2f8a21 iommu_device_sysfs_add -EXPORT_SYMBOL_GPL vmlinux 0x7f37893d regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0x7f46b691 subsys_dev_iter_next -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 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f919b7a vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0x7f998921 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x7fa51fe8 driver_deferred_probe_check_state -EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x7fae74ca __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x7fafdec9 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0x7fb3316a blk_ksm_update_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x7fc3188c device_set_node -EXPORT_SYMBOL_GPL vmlinux 0x7fe1e3b4 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x7fe44359 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x7fed4729 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x80077fe5 fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0x80233305 __SCK__tp_func_devlink_trap_report -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 0x80424a4d sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0x8051efeb __vfs_setxattr_noperm -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 0x80870fb9 xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0x808a8088 handle_guest_split_lock -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80927da1 sched_setattr_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x80a03ece preempt_notifier_unregister -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 0x80e02fb2 skb_append_pagefrags -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 0x8130deb6 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x813cdf4a __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x814c6b76 phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x815c0e64 devlink_param_publish -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 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence -EXPORT_SYMBOL_GPL vmlinux 0x818eb8cd __traceiter_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x819211e3 usb_init_urb -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 0x81b03377 efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x81bc0d0d devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x81bcbad5 security_file_permission -EXPORT_SYMBOL_GPL vmlinux 0x81c018da devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x81c56bc5 nvmem_cell_read_u8 -EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export -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 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 0x824ef716 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x8253159b driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x8273ccdd shash_free_singlespawn_instance -EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog -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 0x82b80f38 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x82bb95d5 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x82befec2 pwm_put -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 0x82fae411 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x82ff4b95 clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x831c3ea1 crypto_type_has_alg -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 0x8328f13c skb_mpls_pop -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 0x833f19cb spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x8348086d nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0x835d5e4f rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x839da7eb iptunnel_xmit -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 0x83c6040d unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x83d98301 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0x83dad8ec rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x83e9e324 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x83f4df2a device_store_int -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 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x844a67f6 devlink_params_unpublish -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 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x84678725 __SCK__tp_func_xdp_exception -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 0x84ef27f5 synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x84efa2a2 trace_get_event_file -EXPORT_SYMBOL_GPL vmlinux 0x84fca964 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -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 0x8523ff65 regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x853721d1 blk_ksm_register -EXPORT_SYMBOL_GPL vmlinux 0x853b40f3 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8543d7b0 switchdev_handle_fdb_del_to_device -EXPORT_SYMBOL_GPL vmlinux 0x85468668 add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -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 0x85847c6c pci_pasid_features -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 0x859b60ab fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0x85ab9d73 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x85b15444 arch_set_max_freq_ratio -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 -EXPORT_SYMBOL_GPL vmlinux 0x8600a500 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0x860c9c2b sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x8612f940 udp4_hwcsum -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 0x8698b71a sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x86b427ce clkdev_create -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 0x86dda6ef rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0x86ed2bec ip_route_output_tunnel -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 0x8704d4a3 blk_ksm_intersect_modes -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 0x8735ed3d irq_set_affinity_notifier -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 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 0x87a01a32 dev_pm_opp_add -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 0x87fd32fc nvdimm_delete -EXPORT_SYMBOL_GPL vmlinux 0x8812d74b __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0x8820ce82 kill_device -EXPORT_SYMBOL_GPL vmlinux 0x882c4972 perf_event_refresh -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 0x8866d599 nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL vmlinux 0x888ee854 clean_record_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x88940128 akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x88968e96 skb_clone_tx_timestamp -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 0x88b4ae92 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88bce085 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x88c0e29f __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x88f4aca8 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0x8902cbc3 da903x_unregister_notifier -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 0x891981c0 __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames -EXPORT_SYMBOL_GPL vmlinux 0x891b00fd strp_data_ready -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 0x89687020 rio_unregister_driver -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 0x899d39e3 msg_zerocopy_alloc -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 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 0x89e88b14 devlink_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0x89ea8808 fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x89fae1f9 ethnl_cable_test_step -EXPORT_SYMBOL_GPL vmlinux 0x89fb3c04 crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0x89feebf8 xfrm_audit_state_replay_overflow -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 0x8a4b9c3b dev_pm_opp_get_required_pstate -EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -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 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 0x8acadd60 clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0x8acbdffd register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x8ad5ceb1 __uv_hub_info_list -EXPORT_SYMBOL_GPL vmlinux 0x8ae2da43 alloc_empty_file -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 0x8b326e99 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x8b47ea1d __SCT__tp_func_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0x8b5786cd set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x8b579df7 bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0x8b5ac8c4 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x8b6d70f8 devlink_free -EXPORT_SYMBOL_GPL vmlinux 0x8b6ebb04 rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x8b7624d3 bpf_verifier_log_write -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 0x8b93aa41 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x8b95e6a2 __SCT__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x8b972f0c inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x8bad9eec iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x8bbfbd4a devm_kfree -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 -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 0x8c10cd7b debugfs_lookup_and_remove -EXPORT_SYMBOL_GPL vmlinux 0x8c17e1cf xfrm_unregister_translator -EXPORT_SYMBOL_GPL vmlinux 0x8c1c7353 pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x8c21b1c5 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x8c24eab9 spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x8c2aa135 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x8c341c48 current_save_fsgs -EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x8c4abd4d __SCK__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x8c4fded2 sgx_virt_einit -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8ca9713e cgrp_dfl_root -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 0x8d003bcf balloon_aops -EXPORT_SYMBOL_GPL vmlinux 0x8d0ca1fd find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0x8d1c3913 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -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 0x8d46b7e6 fscrypt_set_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x8d61c04b regulator_set_voltage -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 0x8dd218b0 icc_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x8e02ce4b dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x8e032b94 bio_add_zone_append_page -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 0x8e5819b0 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x8e67ba4c phy_restart_aneg -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 0x8e92afc4 blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x8ea749c4 usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x8edefbab __xenmem_reservation_va_mapping_reset -EXPORT_SYMBOL_GPL vmlinux 0x8ee3cf38 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x8eed0fa2 sbitmap_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8eeea5f8 regulator_enable_regmap -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 0x8f0876da skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x8f0db088 device_move -EXPORT_SYMBOL_GPL vmlinux 0x8f188874 dma_resv_get_fences -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 0x8f432e07 devm_clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x8f58e63b dst_blackhole_mtu -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 0x8f8db4da devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0x8f8fe1eb syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x8f98079c __rio_local_read_config_8 -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 0x8fb8f353 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x8fb9414a ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x8fcb7551 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x8fd78c2f vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x8fee26b8 __SCK__tp_func_sched_util_est_cfs_tp -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 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 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 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 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 0x912b8076 bd_prepare_to_claim -EXPORT_SYMBOL_GPL vmlinux 0x912f60c6 iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x91312e13 tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0x9135310f md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x913e3fee acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0x914a0540 skcipher_walk_done -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 0x9194e18f xenbus_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x919be0aa uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x91ad2c4d blk_mq_free_request -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 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 0x91eb413c inet6_cleanup_sock -EXPORT_SYMBOL_GPL vmlinux 0x91f45ed7 sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x91fdbd43 fat_sync_inode -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 0x922086b5 crypto_register_alg -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 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 0x92539336 bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0x92802f63 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x9285ab8a devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x92a09ed4 edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0x92a92767 devm_pm_opp_set_clkname -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 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x93192c34 __traceiter_neigh_event_send_dead -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 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 0x935596a3 report_iommu_fault -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 0x93c7edeb usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough -EXPORT_SYMBOL_GPL vmlinux 0x93e702b2 spi_mem_poll_status -EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x9404ad1c spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x9408594b __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0x9410e220 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x94160518 __put_task_struct_rcu_cb -EXPORT_SYMBOL_GPL vmlinux 0x941a3d4f clk_hw_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x941cb8b8 blkcg_print_blkgs -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 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 0x94459e2e devlink_trap_policers_register -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 0x9477e8ea virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0x947b40c6 cpu_smt_possible -EXPORT_SYMBOL_GPL vmlinux 0x94808f57 i2c_acpi_find_adapter_by_handle -EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -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 0x952bbc53 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x952e567a phy_validate -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 0x9553a0f4 sk_msg_free_partial -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 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 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 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 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95cf644f trace_array_put -EXPORT_SYMBOL_GPL vmlinux 0x95d3f2c7 ip_icmp_error_rfc4884 -EXPORT_SYMBOL_GPL vmlinux 0x95d95a56 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x95da52d1 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x95fcfa4c devlink_alloc_ns -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 0x961c06ef udp_cmsg_send -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 0x96334273 __reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x96366fbf __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x96467352 devlink_port_params_register -EXPORT_SYMBOL_GPL vmlinux 0x96493bd1 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x964f8ba1 devm_device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x965b0bb4 crypto_comp_compress -EXPORT_SYMBOL_GPL vmlinux 0x9671fe06 genphy_c45_pma_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9688b217 gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin -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 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 0x96e9fae2 paste_selection -EXPORT_SYMBOL_GPL vmlinux 0x96eb537c dst_cache_get_ip6 -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 0x9719bcfd pmc_atom_read -EXPORT_SYMBOL_GPL vmlinux 0x971ba430 spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x97313c67 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x97316c41 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range -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 0x97b2e5c8 devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0x97b645a6 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x97c35dcc devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0x97ca220c virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0x97cb372c crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97e77e5d vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x98015af7 bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0x980b2bb7 ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0x98198769 iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0x982eded8 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x98310940 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98346759 clk_hw_register -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 0x985889e5 set_capacity_and_notify -EXPORT_SYMBOL_GPL vmlinux 0x9860acb0 regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x986385ab crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0x9863eb39 inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x987e53f5 pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0x988148a0 regulator_bulk_force_disable -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 0x9893634c inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs -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 -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 0x98f62e76 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -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 -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 0x99a9cfe2 ip6_input -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 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x9a0382cc nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a13b291 sdio_writel -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 0x9a3ea1e6 pci_epf_unregister_driver -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 0x9a5ecf0f genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x9a7cbd3e sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x9a8a7ae8 skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0x9a9ce86a spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x9aa65714 devlink_flash_update_status_notify -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 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 0x9ae2f10e apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x9ae7bc95 mbox_client_peek_data -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 0x9b0737f2 devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0x9b2d6d5c is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0x9b38a3a7 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x9b537a1a balloon_page_enqueue -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 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 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9ba55fdf devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x9bad141d hv_hypercall_pg -EXPORT_SYMBOL_GPL vmlinux 0x9bb11b9d input_device_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9bb2c2d1 clk_hw_get_name -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 0x9c26d193 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x9c306bbb component_add_typed -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 0x9c780f0c ping_init_sock -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 0x9c833f12 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x9c88695f __SCK__tp_func_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x9c947468 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x9ca480cc clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9cb0b1de blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x9cb9c68d __traceiter_devlink_trap_report -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 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9cf63001 switchdev_handle_port_obj_add -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 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 0x9d42436e uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x9d4894c8 x2apic_mode -EXPORT_SYMBOL_GPL vmlinux 0x9d59b0eb irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x9d6bfb14 dma_vmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x9d6c1f3a iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0x9db18015 pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x9dbad4da power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x9dc84db9 pci_hp_destroy -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 0x9e17c929 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x9e19ead3 devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x9e3454a0 devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e523753 tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0x9e5511a9 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x9e7b260f scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x9e80d790 iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0x9e93b890 fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0x9eb307bb node_to_amd_nb -EXPORT_SYMBOL_GPL vmlinux 0x9ebb224a tty_ldisc_deref -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 0x9ee80c05 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9ef0975c dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x9f15fb3f ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9f16814c firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0x9f1d546c ip6_redirect -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 0x9f354a07 __kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x9f48b52a linear_hugepage_index -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 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 0x9f91bdab sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x9f97c42a gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x9f9ef36d aead_geniv_alloc -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 0x9fb671b3 devm_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write -EXPORT_SYMBOL_GPL vmlinux 0x9fc57869 tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -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 0x9fff1133 virtio_device_freeze -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 0xa02160ac __SCK__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xa0235ef1 irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0xa03669c0 netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa03820d4 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0xa038d364 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xa03958b7 regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa064e780 udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0xa06e7f4a crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0xa07f4b22 battery_hook_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xa0868864 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xa090478a arch_has_restricted_virtio_memory_access -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 0xa0d81b76 __SCT__tp_func_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xa0ddc45d devlink_port_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0xa0e671d8 __SCT__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0xa0f27235 dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0xa0f6f28b regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0xa0f7f9e2 xdp_master_redirect -EXPORT_SYMBOL_GPL vmlinux 0xa102e7db blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa120a5f6 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0xa14cdaf3 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa15f90a1 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0xa1648776 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0xa164a7d4 switchdev_bridge_port_offload -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 0xa17d1412 strp_check_rcv -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 0xa1a8e898 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xa1a97623 start_poll_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xa1ae97ec tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xa1c444a5 __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1e753fd cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0xa201fc46 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xa20438ed serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0xa20913ed crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa21908ff serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0xa21ad514 dev_pm_domain_detach -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 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa2809366 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0xa284514d iommu_aux_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xa286e45f __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0xa29e75eb da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xa2b64e1a __fput_sync -EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start -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 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 0xa315bf0b sk_attach_filter -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 0xa327a1c9 sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa328d388 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xa33f3b52 __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0xa3442ff0 edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0xa353aff9 usb_role_switch_find_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xa366f49e devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0xa36c40a1 wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted -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 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 0xa3a698c6 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0xa3aff49f irqd_cfg -EXPORT_SYMBOL_GPL vmlinux 0xa3b8aa1e devfreq_get_devfreq_by_node -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3c54606 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0xa3d590f4 dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xa3e17bd3 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa3f4a9a2 __tracepoint_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0xa3f61f6f dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xa4005d27 dev_pm_opp_set_opp -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 0xa410e91b register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0xa42c97ce regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0xa43403c6 fwnode_get_nth_parent -EXPORT_SYMBOL_GPL vmlinux 0xa4379224 devm_nvmem_device_put -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 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 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa48fe0f3 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0xa498fe4d powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0xa49c3876 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0xa4b3f731 switchdev_handle_port_attr_set -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 0xa4d67a7f crypto_create_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0xa4dcda79 acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0xa4e2311d acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xa4eb5793 sbitmap_weight -EXPORT_SYMBOL_GPL vmlinux 0xa5149062 fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa53d3d52 do_unbind_con_driver -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 0xa56aabe4 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xa56f32c1 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0xa5902a2a device_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0xa596350f crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0xa59819cc dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0xa59c98e2 bpf_trace_run6 -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 0xa5ce8cb5 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0xa5cfdfb0 __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5e5de87 mmc_crypto_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5fd3160 ip6_datagram_release_cb -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 0xa63c2aa6 tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0xa65d339d add_disk_randomness -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 0xa6b4ed9a dma_vunmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xa6b642e1 bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0xa6b85a02 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xa6c8d861 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa6ce0e06 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0xa6d0130d platform_device_add -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 0xa6f09f89 debugfs_create_dir -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 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 0xa77c4eae pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0xa782199f __tracepoint_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xa7835493 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0xa7929979 shmem_zero_setup -EXPORT_SYMBOL_GPL vmlinux 0xa79b04b7 devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa7a5270e ata_ncq_sdev_attrs -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 0xa7dcccb7 clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0xa7e26fd5 acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xa7e37458 regulator_enable -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 0xa81506ee iomap_seek_hole -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 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa863759c pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xa86ba980 __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa87c2f00 set_primary_fwnode -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 0xa8ac8828 sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0xa8c6ca65 usb_add_phy_dev -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 0xa9126bff hpet_set_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa91b554f bpf_trace_run8 -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 0xa971e873 iommu_aux_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xa978c48e devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xa9854364 umc_normaddr_to_sysaddr -EXPORT_SYMBOL_GPL vmlinux 0xa988c09c __inet_twsk_schedule -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 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 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 0xa9ecdcdd ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0xaa0a3434 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0xaa0c68fe crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -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 0xaaa4fb86 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaaadd0e5 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xaab5d758 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xaab9492e sock_inuse_get -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 0xab080084 device_bind_driver -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 0xab488b28 gov_update_cpu_data -EXPORT_SYMBOL_GPL vmlinux 0xab5cc9ee regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xab6b3f16 udp6_lib_lookup -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 0xabbb1473 devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xabc1661d fpu_swap_kvm_fpstate -EXPORT_SYMBOL_GPL vmlinux 0xabc298d0 intel_scu_ipc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xabc486f4 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabd97d72 fib_rules_unregister -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 0xac076b13 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0xac2d6847 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xac393828 __SCK__tp_func_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xac421299 devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0xac47d901 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xac61f605 dma_map_sgtable -EXPORT_SYMBOL_GPL vmlinux 0xac6b39df security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xac72f9a0 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xac8b9b3d acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0xac9eddf6 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xaca8afc8 mmc_crypto_prepare_req -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 0xacce96b7 tcpv6_prot -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 0xad02e8bb blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0xad0459ba dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0xad0ea348 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xad1432b2 bpf_prog_inc_not_zero -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 0xad495444 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu -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 0xad7086ef devm_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0xad861bdc pci_iomap_wc_range -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 0xadb73533 pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xadb8bb70 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0xadd4c886 disk_force_media_change -EXPORT_SYMBOL_GPL vmlinux 0xaddf1ad0 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0xadf17c58 devm_phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0xadf247a4 phy_configure -EXPORT_SYMBOL_GPL vmlinux 0xadfcb059 nd_cmd_out_size -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 0xae53cad0 sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xaea83791 call_srcu -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 0xaedf9e8c __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xaee344b4 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xaee76b2e gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xaf05b2b9 pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0xaf187ad7 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xaf2b385b pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xaf353fc6 devlink_port_params_unregister -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 0xaf61d3bd cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0xaf623a0a xfrm_audit_state_add -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 0xaf852873 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xafa31ad7 devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0xafc3bc3d md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0xafce2f1d free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xafce9c28 xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0xafdbf4f0 kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -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 0xaffaf1d8 bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0xb009039e serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xb00e933d regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0xb015866b ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0xb01d09da wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0xb01f35b6 io_cgrp_subsys -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 0xb055209f lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0xb05d4358 crypto_unregister_rngs -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 0xb080a5ec __traceiter_fdb_delete -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 0xb0b221bf __traceiter_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -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 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 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 0xb1366231 device_phy_find_device -EXPORT_SYMBOL_GPL vmlinux 0xb137bd71 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xb13e2779 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xb14342e7 ncsi_stop_dev -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 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 0xb18429eb suspend_device_irqs -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 0xb1ac9daa icc_get_name -EXPORT_SYMBOL_GPL vmlinux 0xb1b12e64 pwmchip_add -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 0xb1ecae61 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0xb1efab25 __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xb1f4b70a dev_fill_forward_path -EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string -EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert -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 0xb230eb09 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb24aa5f2 __SCK__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xb24e4e1c md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0xb25cb174 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0xb25dd614 metadata_dst_alloc -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 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 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 0xb2b80738 skb_tstamp_tx -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 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 0xb3202cdb gnttab_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init -EXPORT_SYMBOL_GPL vmlinux 0xb337c16d fwnode_get_phy_node -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 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 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 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 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space -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 0xb4789d46 __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0xb47ef1b6 dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0xb4840414 debugfs_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0xb49e93a2 inet6_hash -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 -EXPORT_SYMBOL_GPL vmlinux 0xb4e01aff crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0xb4e90c8e crypto_hash_walk_done -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 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 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 0xb5491f82 devlink_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0xb55aa29d pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0xb5768ae9 md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0xb58b9f75 sysfs_remove_file_from_group -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 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 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 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 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 0xb6880ded skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb6929e73 yield_to -EXPORT_SYMBOL_GPL vmlinux 0xb6a8b430 rio_mport_read_config_32 -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 0xb6df4fc2 synth_event_trace_array -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6eabe37 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xb714162f skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0xb727d5e1 devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0xb72e969e usb_set_configuration -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 0xb761318b sev_active -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 0xb786481c nf_queue_entry_free -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 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 0xb80b0fed netif_carrier_event -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 0xb8273d0b __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0xb82e53b1 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0xb83120ca blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0xb836184b ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted -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 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 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 0xb8aa025a devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0xb8b2353e gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0xb8c50e62 __traceiter_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d638c7 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xb8e84a72 blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xb8ebb422 bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb909eae0 bpf_map_inc_with_uref -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 0xb96245a1 vfs_write -EXPORT_SYMBOL_GPL vmlinux 0xb962769b sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xb966aa70 fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -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 0xb98bd4cc __tracepoint_br_fdb_update -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 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 0xb9dd52f6 badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0xb9f603b2 devlink_params_publish -EXPORT_SYMBOL_GPL vmlinux 0xba01ec83 hv_stimer_global_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns -EXPORT_SYMBOL_GPL vmlinux 0xba064e92 xfrm_audit_state_notfound -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 0xba3e91e8 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xba4115e0 acpi_subsys_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xba43ca6d rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xba66abeb pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0xba6a82ed mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xba6adaf3 sched_trace_rq_nr_running -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 0xba8ab9b2 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0xbaa1b000 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0xbab4c100 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0xbab8c874 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbabdd6df sched_trace_rq_avg_dl -EXPORT_SYMBOL_GPL vmlinux 0xbac9f479 umd_unload_blob -EXPORT_SYMBOL_GPL vmlinux 0xbaeb87fd bpf_prog_sub -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 -EXPORT_SYMBOL_GPL vmlinux 0xbaf9d785 __tss_limit_invalid -EXPORT_SYMBOL_GPL vmlinux 0xbafd937f ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0xbb05cc91 cgroup_path_ns -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 0xbb15452a transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xbb1b6ed0 ethnl_cable_test_finished -EXPORT_SYMBOL_GPL vmlinux 0xbb1f9caa crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xbb387066 devlink_param_driverinit_value_get -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 0xbb5598ce get_llc_id -EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback -EXPORT_SYMBOL_GPL vmlinux 0xbb6a1cb5 __traceiter_pelt_cfs_tp -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 0xbb8e29f7 device_link_del -EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbb9eedf4 usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0xbba2b4f1 sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0xbbb78049 iomap_writepage -EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info -EXPORT_SYMBOL_GPL vmlinux 0xbbdae022 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0xbbfbd7b8 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0xbc07a8f5 usb_control_msg_recv -EXPORT_SYMBOL_GPL vmlinux 0xbc0dd33e crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0xbc166d1e da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc3778cb regmap_get_val_bytes -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 0xbc582485 check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0xbc586f65 xfrm_output -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 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 0xbca3395d vfio_virqfd_enable -EXPORT_SYMBOL_GPL vmlinux 0xbca8e0ff pci_pr3_present -EXPORT_SYMBOL_GPL vmlinux 0xbcb39a41 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts -EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbccb3d10 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -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 0xbd2b861b device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xbd2ebd73 badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0xbd36b186 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd4e2a50 thp_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0xbd67227f shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xbd6b61fc mptcp_pm_get_add_addr_accept_max -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 0xbd8a73cb rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xbd99e873 __SCT__tp_func_cpu_idle -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 0xbdcbc53e strp_done -EXPORT_SYMBOL_GPL vmlinux 0xbdd30cfe ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xbde00e8a sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0xbded134c devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xbded8ccb irq_domain_translate_onecell -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 0xbe5416f7 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain -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 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 0xbea5c9e8 spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbebba34d md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0xbec52f99 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0xbec6292e __SCK__tp_func_devlink_hwmsg -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 0xbf037c34 strp_unpause -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 0xbf2b8f2a put_pid -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 0xbf665a11 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0xbf76196d __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xbf813e0a ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xbfa4ba00 dma_buf_export -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 0xbfc2b128 synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0xbfc2f4c7 put_pid_ns -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 0xbfe921bd free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0xbfecf094 do_splice_from -EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0xbff8331e blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0xc00a2ea2 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xc00a8404 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0xc0107bd1 espintcp_queue_out -EXPORT_SYMBOL_GPL vmlinux 0xc0208fbe nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0xc0293e90 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0xc02a5580 housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0xc04004f9 dev_queue_xmit_nit -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 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL vmlinux 0xc09ecc73 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0xc0a75c70 css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0ac5a7f genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0xc0bcae38 d_exchange -EXPORT_SYMBOL_GPL vmlinux 0xc0c595e1 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0xc0cc0b94 rio_mport_write_config_8 -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 0xc1086e0c sysrq_toggle_support -EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc1173e68 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0xc11b5089 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0xc13646e2 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0xc13d8787 lwtstate_free -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 0xc17e9946 usb_show_dynids -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 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL vmlinux 0xc1dcc0d6 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xc2033d9f amd_get_highest_perf -EXPORT_SYMBOL_GPL vmlinux 0xc21675d6 device_match_fwnode -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 0xc24276fb addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0xc249612f gpiochip_irqchip_add_domain -EXPORT_SYMBOL_GPL vmlinux 0xc24db1fa mptcp_pm_get_subflows_max -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 0xc2713998 dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0xc27cbf7f noop_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0xc2856226 ata_common_sdev_attrs -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 0xc2993779 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc2a03546 iomap_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata -EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2b78dff ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2ca1f7f efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0xc2ce66c8 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable -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 0xc2fe8343 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0xc3180ae0 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xc32ab7ab attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc3315dd4 crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0xc3329c64 apic -EXPORT_SYMBOL_GPL vmlinux 0xc337353f iomap_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0xc339d2d1 perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc35c4b49 gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0xc35d358f ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc3a5e060 regulator_get_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc3bfb2b7 mdiobus_modify -EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -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 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 0xc44cefc2 split_page -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc45d0d13 injectm -EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc473587f blk_req_zone_write_trylock -EXPORT_SYMBOL_GPL vmlinux 0xc478b1d1 pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0xc47c66a4 __device_reset -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 0xc495a0dd tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xc4979b39 devm_hwmon_device_register_with_groups -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 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 0xc4eb291b regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -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 0xc51b1184 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0xc51fa363 powercap_register_control_type -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 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 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 0xc59c01e4 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xc5a59ba3 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5cc8303 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xc5d7b415 mmc_regulator_set_vqmmc -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 0xc63ba35b ip6_datagram_send_ctl -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 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc672a391 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xc6835fb1 battery_hook_register -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 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 0xc6c24c72 __traceiter_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xc6c611c9 fwnode_create_software_node -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 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 0xc714a009 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc731fd0e wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xc73934d9 dev_pm_domain_attach_by_name -EXPORT_SYMBOL_GPL vmlinux 0xc765f4db trace_array_printk -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 0xc7735bb1 inet_unhash -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 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 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 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 0xc800bb4c spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0xc803c00e regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xc80976a0 devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0xc82177ff ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc8333961 pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0xc8372e82 cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xc83da133 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc84cb79b kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xc8507eed register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xc8572831 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc85b8e3e regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc86a3c02 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xc86aa79a crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0xc86c11a6 ip6_route_output_flags -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 0xc8865976 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xc895acba pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xc8a9b48f power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xc8ba4b7d debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8e1a3b0 dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0xc8f588a9 devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0xc90c7d49 blk_queue_set_zoned -EXPORT_SYMBOL_GPL vmlinux 0xc9114430 ipv6_recv_error -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 0xc9284481 ping_rcv -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 0xc950d088 acpi_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc9632bad perf_event_release_kernel -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 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 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 0xca12cf8a __clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xca1f9f1b lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xca37661d devm_watchdog_register_device -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 0xca5bb2db phy_led_triggers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xca5fce7a dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0xca60ce05 sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0xca666cb7 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xca678ffa get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca81b62e fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xca888219 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0xca9d1b2e perf_event_sysfs_show -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 0xcae068c6 devlink_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcae7d321 tps6586x_get_version -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 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 0xcb2bac29 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb36d7ff iommu_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcb50886b lwtunnel_build_state -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 0xcb8a461c hv_stimer_legacy_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xcb96507f pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xcb970751 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xcba4395b skb_zerocopy_iter_dgram -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 0xcbfca4b0 xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0xcc134478 of_css -EXPORT_SYMBOL_GPL vmlinux 0xcc1891ac xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0xcc244636 relay_subbufs_consumed -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 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 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 -EXPORT_SYMBOL_GPL vmlinux 0xcca50c6c hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0xccbc50a5 __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0xccc39329 __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xccd9441e ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xccdeba78 wm8350_reg_read -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 0xcd344a8a bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory -EXPORT_SYMBOL_GPL vmlinux 0xcd5a7e05 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd81a945 switch_fpu_return -EXPORT_SYMBOL_GPL vmlinux 0xcd8c1ea0 udp_destruct_common -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 0xcdaceb43 dev_pm_opp_find_freq_ceil_by_volt -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdc4f72a devlink_reload_enable -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 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 0xce197c7c mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0xce1da0e1 sysfs_notify -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 0xce6d380e driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce82db03 kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xce8461a0 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xce90dd95 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0xce940da7 fsnotify_init_mark -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 0xcebc2d7f devfreq_cooling_em_register -EXPORT_SYMBOL_GPL vmlinux 0xced73b78 pin_get_name -EXPORT_SYMBOL_GPL vmlinux 0xcedbea64 intel_pinctrl_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0xceded4fd dst_blackhole_redirect -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 0xcef36eee sch_frag_xmit_hook -EXPORT_SYMBOL_GPL vmlinux 0xcf02ab71 __SCT__tp_func_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xcf0418ed __traceiter_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xcf0a38e5 gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcf14fc5b fixed_phy_register_with_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xcf21270d ksm_madvise -EXPORT_SYMBOL_GPL vmlinux 0xcf32f71e cpufreq_dbs_governor_exit -EXPORT_SYMBOL_GPL vmlinux 0xcf353e35 usb_role_switch_get -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 0xcf55b6be devlink_traps_register -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 0xcf6d8604 skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0xcf7e9950 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xcf9053fc pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0xcfaa986b xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0xcfb76e9e lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0xcfc04469 mbox_request_channel -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 0xcfd63fc6 of_led_get -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 0xd006e16a __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xd0177a65 acrn_setup_intr_handler -EXPORT_SYMBOL_GPL vmlinux 0xd02a6087 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -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 0xd09911a6 acpi_dev_get_irq_type -EXPORT_SYMBOL_GPL vmlinux 0xd09fb4a2 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0xd0a17f55 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xd0a1ca63 is_transparent_hugepage -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 0xd0c1231c __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xd0c6629e sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xd0c97e5d devm_phy_get -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 0xd0fd3b39 subsys_dev_iter_exit -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 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd166d494 tpm_calc_ordinal_duration -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 0xd1c7e6aa pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0xd1cac7bf unregister_ftrace_direct -EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1cc8d9d pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xd1def20c usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0xd1df8274 tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0xd1e21449 __netdev_watchdog_up -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 0xd20c66ab __SCT__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xd212d3cb raw_abort -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 0xd220b081 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xd2385b99 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0xd241a800 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource -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 0xd26b39af devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xd28258d9 crypto_stats_get -EXPORT_SYMBOL_GPL vmlinux 0xd289b76c memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0xd2a5b606 rtnl_get_net_ns_capable -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 0xd2b47fe2 sched_set_fifo -EXPORT_SYMBOL_GPL vmlinux 0xd2b88c06 do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0xd2d24c12 clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0xd2dad393 page_cache_sync_ra -EXPORT_SYMBOL_GPL vmlinux 0xd2eef730 devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0xd2fc6458 switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0xd2fe2ce4 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xd314ecec devlink_resource_occ_get_register -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 0xd338f3d7 xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xd340c837 dev_pm_qos_update_user_latency_tolerance -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 0xd3731d81 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xd373f58d perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xd38d42ce usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xd38ff3c3 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0xd399bdc0 skb_mpls_update_lse -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 0xd3b9891a receive_fd -EXPORT_SYMBOL_GPL vmlinux 0xd3bc0872 gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0xd3e9469a i2c_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd404c0e8 __traceiter_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xd418a846 __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xd42183a4 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count -EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd4404350 __SCT__tp_func_block_split -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 0xd463bf41 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0xd464e0b9 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs -EXPORT_SYMBOL_GPL vmlinux 0xd4997274 blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0xd4a22cbe vfio_pci_core_disable -EXPORT_SYMBOL_GPL vmlinux 0xd4b1c98a kthread_data -EXPORT_SYMBOL_GPL vmlinux 0xd4b3f346 call_switchdev_blocking_notifiers -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 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 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 0xd5301b2c linear_range_get_max_value -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 0xd57fbd31 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd58933ad devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd5ab5b23 usb_put_dev -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 -EXPORT_SYMBOL_GPL vmlinux 0xd5f41e7a da9052_adc_manual_read -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 0xd61125bf ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0xd6322e31 ip6_push_pending_frames -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 0xd68360ce skcipher_walk_aead_decrypt -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 0xd6ed6b6e sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xd6f205ae regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd7070470 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0xd71dde50 devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0xd71f3998 dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control -EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xd72ace90 gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0xd72e4859 nvdimm_provider_data -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 0xd7408228 serial8250_em485_stop_tx -EXPORT_SYMBOL_GPL vmlinux 0xd752f884 iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd7729290 validate_xmit_xfrm -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 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 0xd7b5dfee xas_split -EXPORT_SYMBOL_GPL vmlinux 0xd7b74503 tcp_leave_memory_pressure -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 0xd7e0efb5 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0xd7ecb0ea bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0xd814febb dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0xd81f7e27 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd853e281 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xd862872d sock_map_close -EXPORT_SYMBOL_GPL vmlinux 0xd862e821 devlink_traps_unregister -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 0xd88b3b45 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0xd88c972d icc_node_del -EXPORT_SYMBOL_GPL vmlinux 0xd895900f blkdev_ioctl -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 0xd8e174ce skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -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 0xd918e142 tcp_reno_ssthresh -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 -EXPORT_SYMBOL_GPL vmlinux 0xd925d50e pm_clk_remove_clk -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 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 0xd9acc774 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xd9b98b58 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xd9d1600f dummy_con -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 0xd9f2f621 __SCK__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister -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 0xda376bac devm_regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xda3ccdaa usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0xda6c1310 spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xda8369a7 __traceiter_extlog_mem_event -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 0xdacb9f03 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xdad1e6bb blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xdae276e5 i2c_dw_acpi_configure -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -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 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 0xdb534ac1 vfio_unregister_group_dev -EXPORT_SYMBOL_GPL vmlinux 0xdb550f23 seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0xdb62dc67 __SCT__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb7db255 sdio_readsb -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 0xdbbcf378 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0xdbc8fc4f regmap_write -EXPORT_SYMBOL_GPL vmlinux 0xdbcb73dc __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0xdbcea095 pci_scan_child_bus -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 0xdc14a211 xen_hvm_evtchn_do_upcall -EXPORT_SYMBOL_GPL vmlinux 0xdc23eb79 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0xdc2993ae skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xdc401c27 dw_pcie_upconfig_setup -EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc5b5afb regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0xdc603e4c task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc6846c3 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xdc719bcd ftrace_ops_set_global_filter -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 -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 0xdcbbabc1 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdcca7541 __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xdcd8e59c nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0xdce89d0f bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0xdcf8860b bio_alloc_kiocb -EXPORT_SYMBOL_GPL vmlinux 0xdcfaf880 __traceiter_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0xdcfd1785 serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0xdd023ffd regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd0c772c udp_tunnel_nic_ops -EXPORT_SYMBOL_GPL vmlinux 0xdd10d898 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xdd15c2b2 __pm_runtime_disable -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 0xdd48163c scsi_host_busy_iter -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 0xdda844c9 regulator_set_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddd58183 inet6_lookup_listener -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 0xddf02952 udp_abort -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 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 0xde2f16cc irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0xde3bd9af power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0xde5a03b0 acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0xde5e1e01 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xde6b3925 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde731583 nl_table -EXPORT_SYMBOL_GPL vmlinux 0xde795751 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xde7ad61f phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xde7cb2c6 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xde95d921 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xdec07c54 perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0xdec1cdc5 regulator_bulk_register_supply_alias -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 0xdef09d37 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0xdef18722 netlink_add_tap -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 0xdf5001c1 bind_interdomain_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xdf590c13 fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0xdf758e6e switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xdf7e826a inode_congested -EXPORT_SYMBOL_GPL vmlinux 0xdf81924d uv_bios_mq_watchlist_free -EXPORT_SYMBOL_GPL vmlinux 0xdfa03d4b nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0xdfa1d574 ping_get_port -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 0xdfd3478f add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xdfe6bd4f replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xdff0e8ee sched_trace_cfs_rq_cpu -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 0xe0313d71 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xe034150c usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xe038d40e fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0xe04c78db __SCT__tp_func_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe060dd64 lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0xe064be98 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xe0715c36 __traceiter_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xe078757e __SCK__tp_func_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe0a01b3c skb_segment_list -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 0xe0e1e2d0 crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0xe104cc5e vp_modern_set_status -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 0xe1286541 devm_regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xe15a8c71 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0xe15df065 usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0xe1601662 dev_pm_opp_sync_regulators -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 0xe17ae95a __traceiter_neigh_update -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 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx -EXPORT_SYMBOL_GPL vmlinux 0xe1c8bac1 devlink_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0xe1c99fbc acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xe1ce0665 ncsi_unregister_dev -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 0xe2270f3f pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe2523d3b pci_ats_supported -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 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 0xe2bfa8d1 gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0xe2cc24a8 dma_mmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe2d92bdd tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0xe2d99d08 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0xe3377168 cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0xe338c5ac inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0xe33af8db __traceiter_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0xe349567b virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0xe370e255 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xe38dcf3a fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0xe38eed56 clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0xe3910df5 anon_inode_getfd_secure -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 0xe3b21729 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xe3be9f94 trace_output_call -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 0xe3da6f85 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xe3e88acb __get_current_cr3_fast -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 0xe4269f48 kick_process -EXPORT_SYMBOL_GPL vmlinux 0xe4306f85 of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe4665f8e devlink_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe48611ac trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0xe490f6f5 iomap_finish_ioends -EXPORT_SYMBOL_GPL vmlinux 0xe495e3be bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe49dbc59 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xe4ab9cd1 __nf_ip6_route -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 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 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 0xe4f837d1 fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0xe4fb4669 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0xe5097fa9 pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0xe50a5067 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0xe51e7e6e dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0xe520d217 br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0xe52e1bf3 nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe53511ad irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0xe5482fd5 skb_consume_udp -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 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 0xe5bf5ed9 vfio_assign_device_set -EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xe5c10de3 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0xe5d8f355 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0xe5ee3ada synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0xe5fbc85a kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe6094c06 ping_err -EXPORT_SYMBOL_GPL vmlinux 0xe609caf6 elv_register -EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -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 0xe64ad8ea unregister_nmi_handler -EXPORT_SYMBOL_GPL vmlinux 0xe6515427 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0xe6754edf devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xe68cc189 sched_trace_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0xe69bda93 vfio_pci_core_read -EXPORT_SYMBOL_GPL vmlinux 0xe69d81eb fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xe6a257f1 divider_round_rate_parent -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 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 0xe70a7d82 crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xe70afe59 extcon_get_edev_name -EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe729e726 kthread_unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0xe72dcefa __traceiter_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xe7405c91 i2c_adapter_depth -EXPORT_SYMBOL_GPL vmlinux 0xe740b58a hv_vp_assist_page -EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe766ea03 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xe767607a clockevents_config_and_register -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 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get -EXPORT_SYMBOL_GPL vmlinux 0xe7aa4bdf acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe7cc25ee pinctrl_put -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 0xe7e50c6c xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0xe7eb643d fbcon_modechange_possible -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 0xe8213e9b __fib_lookup -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 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe86aee21 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xe872bcbe xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0xe87fa43e sysfs_remove_group -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 0xe8d83ffb pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xe8e235c8 arch_static_call_transform -EXPORT_SYMBOL_GPL vmlinux 0xe8f3020f blk_crypto_evict_key -EXPORT_SYMBOL_GPL vmlinux 0xe8f5b29a serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0xe90a189c __netpoll_cleanup -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 0xe92f3f6f mptcp_subflow_init_cookie_req -EXPORT_SYMBOL_GPL vmlinux 0xe931e842 __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0xe937c014 skb_to_sgvec_nomark -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 0xe9806f1a __traceiter_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xe994f913 regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0xe9a025e2 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xe9bffb88 sysfs_remove_link_from_group -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 0xe9fadf16 __SCT__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -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 0xea40a9dc acpi_spi_count_resources -EXPORT_SYMBOL_GPL vmlinux 0xea4fd3e3 xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0xea50063d regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xea545d52 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0xea552e79 crypto_stats_rng_generate -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 0xea8917f0 tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0xeaa4e71c sb800_prefetch -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 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 0xeb0acd8a dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xeb139f8f tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0xeb1eefb4 devm_regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0xeb378e1b i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0xeb3cab49 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0xeb94536f x86_platform -EXPORT_SYMBOL_GPL vmlinux 0xeb9db07a nf_queue -EXPORT_SYMBOL_GPL vmlinux 0xebb3e5ca pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xebb76908 md_stop -EXPORT_SYMBOL_GPL vmlinux 0xebb90b2c devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0xebbc996d ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep -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 0xebec7525 icc_nodes_remove -EXPORT_SYMBOL_GPL vmlinux 0xec085627 crypto_register_skcipher -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 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 0xec6e23b9 to_nd_region -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 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 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 0xed1f3e37 ip_route_output_key_hash -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 0xed3b9e9f bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0xed5821f3 fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0xed68fdfe dev_pm_genpd_resume -EXPORT_SYMBOL_GPL vmlinux 0xed6920aa lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xed90b922 gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0xeda1916c blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0xeda46891 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0xedb3d22d usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xedb98159 __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xedd030e9 trace_array_init_printk -EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xedd19104 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xedd7e98f dma_max_mapping_size -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 -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 0xee13e697 set_personality_ia32 -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 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key -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 0xee9127ab __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0xeea26ba6 mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0xeeab8650 smca_get_long_name -EXPORT_SYMBOL_GPL vmlinux 0xeeacf31d nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0xeeba8e49 ip6_sk_redirect -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 0xeed681ce devlink_dpipe_match_put -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 0xef0e6c5a nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0xef111eab __inet_lookup_listener -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 0xef34bf3e hrtimer_active -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 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 0xef795684 bpf_prog_select_runtime -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 0xefa38a2b dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xefc20b29 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xefd69c84 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xeffa09ba find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0xf01b0b4f wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xf02831a9 crypto_stats_akcipher_sign -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 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf06ede78 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0xf070b427 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf07e5800 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xf0850cc0 xenbus_dev_fatal -EXPORT_SYMBOL_GPL vmlinux 0xf08af74d bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf0a0c69d init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xf0a2464b platform_get_irq_byname_optional -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 0xf0d8ec76 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0xf11bce9f led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0xf13995cc simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0xf13cf905 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xf1549118 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xf1554ea7 skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0xf167197f crypto_unregister_algs -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 0xf1985365 device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xf1985d8b alloc_io_pgtable_ops -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 0xf1e1630f usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xf2133d3c device_create_file -EXPORT_SYMBOL_GPL vmlinux 0xf214de51 misc_cg_try_charge -EXPORT_SYMBOL_GPL vmlinux 0xf21b4e12 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf22ad56f fwnode_graph_get_remote_endpoint -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 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 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 0xf2e72bac xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf2e7f15f device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xf2ec90ef fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default -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 0xf3221a02 pingv6_ops -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 0xf34d84f2 inet6_sock_destruct -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 0xf39aee75 perf_msr_probe -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 0xf3bb252c __SCK__tp_func_pelt_se_tp -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 0xf404ce3e __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xf412c23a __devm_clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xf42e66ad intel_pinctrl_get_soc_data -EXPORT_SYMBOL_GPL vmlinux 0xf43d5bd0 __page_mapcount -EXPORT_SYMBOL_GPL vmlinux 0xf45296e7 i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0xf4581850 tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause -EXPORT_SYMBOL_GPL vmlinux 0xf4744a3a bio_start_io_acct -EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit -EXPORT_SYMBOL_GPL vmlinux 0xf47a485b sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0xf492b658 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xf4a0e90c x86_vector_domain -EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4bde951 __SCK__tp_func_pelt_cfs_tp -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 0xf520fcba rio_request_inb_pwrite -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 0xf548988d put_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -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 0xf56e6242 gpiochip_irq_unmap -EXPORT_SYMBOL_GPL vmlinux 0xf591c889 __traceiter_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xf5966658 pci_epc_init_notify -EXPORT_SYMBOL_GPL vmlinux 0xf59dc32c metadata_dst_free -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 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 0xf64aaa25 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf666fa48 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -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 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 0xf6ee4de1 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xf7079ceb rio_unregister_mport -EXPORT_SYMBOL_GPL vmlinux 0xf70e3b61 gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0xf716a5d6 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0xf71b3b81 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0xf7280ad1 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size -EXPORT_SYMBOL_GPL vmlinux 0xf7354d81 switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0xf73bb103 crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xf73c640a ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xf741f07e nf_ip_route -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 0xf74af737 sk_msg_clone -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 0xf75afeea __efivar_entry_get -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 0xf783d3ba tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0xf7866b4f bind_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init -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 -EXPORT_SYMBOL_GPL vmlinux 0xf7beebc2 phy_resolve_aneg_pause -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 0xf7e537df ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0xf7f2de3a synth_event_trace_start -EXPORT_SYMBOL_GPL vmlinux 0xf7fe347d ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0xf801090c __traceiter_fib6_table_lookup -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 0xf839fffd gpiochip_get_desc -EXPORT_SYMBOL_GPL vmlinux 0xf83bc770 virtqueue_get_avail_addr -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 0xf870f53f show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0xf873d4dc fpu_copy_uabi_to_guest_fpstate -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 0xf8b8e418 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0xf8d45f21 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3986 pat_pfn_immune_to_uc_mtrr -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 0xf9416a26 vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -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 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 -EXPORT_SYMBOL_GPL vmlinux 0xfa24a7dd register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xfa31743b hvc_remove -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 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 0xfa760101 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xfa7f90e0 acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xfa953250 __auxiliary_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xfaa5cec7 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfaaafaae devm_clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfaadefb2 __traceiter_pelt_dl_tp -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 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 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 0xfb622ced ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xfb6257c1 devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfb63815f tty_port_register_device_serdev -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 0xfb9910f5 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xfbadca29 lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbc4c004 extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0xfbda2c9a ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features -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 0xfc09652f bpf_trace_run7 -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 0xfc433c8c msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0xfc602628 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xfc6ead11 auxiliary_device_init -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 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 0xfd06c907 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0xfd16e34a tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0xfd2a0133 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0xfd45feeb pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0xfd46eb0b __tracepoint_block_bio_remap -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 0xfda1e5a1 dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0xfdaf9fb4 __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xfdafa886 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdbe824d nf_nat_hook -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 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 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 0xfe3e7ed7 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0xfe446b42 cgroup_attach_task_all -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 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 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 0xfe9eb075 devm_pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0xfea99de1 acpi_device_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xfeb8b528 rio_mport_write_config_32 -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 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 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff099ca4 md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert -EXPORT_SYMBOL_GPL vmlinux 0xff1e67b9 setup_APIC_eilvt -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff35699e acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -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 0xff69b647 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0xff6ec613 devlink_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0xff7d8df6 sk_msg_is_readable -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 0xfff1ed83 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0xfff3914e pci_epf_add_vepf -EXPORT_SYMBOL_GPL vmlinux 0xfff3a66c cpufreq_freq_transition_end -FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux -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 -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x3354f189 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x46edc2a0 __adis_initial_startup drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x8b6c60c7 devm_adis_probe_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xc96c9ac8 __adis_check_status drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xdb0bdad5 __adis_write_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xdc394539 __adis_update_bits_base drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xdf97f270 adis_update_scan_mode drivers/iio/imu/adis_lib -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 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 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 -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 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 0xf42c448e mcb_bus_put drivers/mcb/mcb -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xc0c482ac nvme_execute_passthru_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xc967d00d nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xd2c7cdc7 nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xeae3283e nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xec35a657 nvme_ctrl_from_file 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 -PMBUS EXPORT_SYMBOL_GPL 0x2cc99aa6 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x4993257a pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x53c19d84 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x5f886a99 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x6273cd3a pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x67d5200e pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x7f74bd61 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x8ebc53ef pmbus_set_update drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x90fe8c7b pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x915275a6 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x9169a3fd pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xb3c866fb pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xba54957e pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xbde14bff pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xd3273a68 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xde05831d pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core -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_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 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 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_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_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 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 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_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 -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 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 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 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 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 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 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 reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/amd64/generic.compiler +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/amd64/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/amd64/generic.modules +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/amd64/generic.modules @@ -1,6033 +0,0 @@ -104-quad-8 -3c509 -3c574_cs -3c589_cs -3c59x -3w-9xxx -3w-sas -3w-xxxx -53c700 -6lowpan -6pack -8021q -8139cp -8139too -8250_dw -8250_exar -8250_lpss -8250_men_mcb -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pg86x -88pm800 -88pm800-regulator -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -9pnet_xen -BusLogic -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -abituguru -abituguru3 -abp060mg -ac97_bus -acard-ahci -acecad -acenic -acer-wireless -acer-wmi -acerhdf -acp_audio_dma -acpi-als -acpi_configfs -acpi_extlog -acpi_ipmi -acpi_pad -acpi_power_meter -acpi_tad -acpi_thermal_rel -acpiphp_ibm -acquirewdt -acrn -act8865-regulator -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 -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad5110 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5272 -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5686-spi -ad5696-i2c -ad5755 -ad5758 -ad5761 -ad5764 -ad5766 -ad5770r -ad5791 -ad5820 -ad5933 -ad7091r-base -ad7091r5 -ad7124 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7192 -ad7266 -ad7280a -ad7291 -ad7292 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7606_par -ad7606_spi -ad7746 -ad7766 -ad7768-1 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad7949 -ad799x -ad8366 -ad8801 -ad9389b -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc-joystick -adc-keys -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adf4371 -adf7242 -adfs -adi -adiantum -adin -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16209 -adis16240 -adis16260 -adis16400 -adis16460 -adis16475 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1177 -adm1266 -adm1275 -adm8211 -adm9240 -adp1653 -adp5061 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adux1020 -adv7170 -adv7175 -adv7180 -adv7183 -adv7343 -adv7393 -adv7511-v4l2 -adv7604 -adv7842 -adv_pci1710 -adv_pci1720 -adv_pci1723 -adv_pci1724 -adv_pci1760 -adv_pci_dio -adv_swbutton -advansys -advantechwdt -adxl34x -adxl34x-i2c -adxl34x-spi -adxl372 -adxl372_i2c -adxl372_spi -adxrs290 -adxrs450 -aegis128 -aegis128-aesni -aes_ti -aesni-intel -af9013 -af9033 -af_alg -af_key -af_packet_diag -afe4403 -afe4404 -affs -ah4 -ah6 -aha152x_cs -aha1740 -ahci -ahci_platform -aht10 -aic79xx -aic7xxx -aic94xx -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airo -airo_cs -airspy -ak7375 -ak881x -ak8975 -al3010 -al3320a -alcor -alcor_pci -algif_aead -algif_hash -algif_rng -algif_skcipher -alienware-wmi -alim1535_wdt -alim7101_wdt -altera-ci -altera-cvp -altera-freeze-bridge -altera-msgdma -altera-pr-ip-core -altera-ps-spi -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am2315 -am53c974 -ambassador -amc6821 -amd -amd-pmc -amd-rng -amd-uncore -amd-xgbe -amd5536udc_pci -amd64_edac -amd76xrom -amd8111e -amd_freq_sensitivity -amd_sfh -amdgpu -amdtee -amilo-rfkill -amlogic-gxl-crypto -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams-iaq-core -ams369fg06 -analog -analogix-anx78xx -analogix_dp -ansi_cprng -aoe -apanel -apds9300 -apds9802als -apds990x -apds9960 -apple-gmux -apple-mfi-fastcharge -apple_bl -appledisplay -applesmc -applespi -appletalk -appletouch -applicom -aptina-pll -aqc111 -aquacomputer_d5next -aquantia -ar5523 -ar7part -ar9331 -arasan-nand-controller -arc-rawmode -arc-rimi -arc_ps2 -arc_uart -arcfb -arcmsr -arcnet -arcxcnn_bl -arizona -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arp_tables -arpt_mangle -arptable_filter -as102_fe -as370-hwmon -as3711-regulator -as3711_bl -as3935 -as5011 -as73211 -asb100 -asc7621 -ascot2e -ashmem_linux -asix -aspeed-pwm-tacho -aspeed-video -ast -asus-laptop -asus-nb-wmi -asus-wireless -asus-wmi -asus_atk0110 -asym_tpm -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -atbm8830 -atc260x-core -atc260x-i2c -atc260x-onkey -atc260x-poweroff -atc260x-regulator -aten -ath -ath10k_core -ath10k_pci -ath10k_sdio -ath10k_usb -ath11k -ath11k_ahb -ath11k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ath9k_pci_owl_loader -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atlantic -atlas-ezo-sensor -atlas-sensor -atlas_btns -atm -atmel -atmel-ecc -atmel-i2c -atmel-sha204a -atmel_cs -atmel_mxt_ts -atmel_pci -atmtcp -atomisp -atomisp-gc0310 -atomisp-gc2235 -atomisp-libmsrlisthelper -atomisp-lm3554 -atomisp-mt9m114 -atomisp-ov2680 -atomisp-ov2722 -atomisp-ov5693 -atomisp_gmin_platform -atp -atp870u -atusb -atxp1 -aty128fb -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -auo-pixcir-ts -auth_rpcgss -authenc -authencesn -autofs4 -avmfritz -ax25 -ax88179_178a -ax88796b -axi-fan-control -axnet_cs -axp20x -axp20x-i2c -axp20x-pek -axp20x-regulator -axp20x_ac_power -axp20x_adc -axp20x_battery -axp20x_usb_power -axp288_adc -axp288_charger -axp288_fuel_gauge -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -b53_common -b53_mdio -b53_mmap -b53_serdes -b53_spi -b53_srab -ba431-rng -bareudp -batman-adv -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-phy-lib -bcm-sf2 -bcm203x -bcm3510 -bcm54140 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm63xx_uart -bcm7xxx -bcm87xx -bcm_vk -bcma -bcma-hcd -bcmsysport -bd6107 -bd9571mwv -bd9571mwv-regulator -bd99954-charger -bdc -be2iscsi -be2net -befs -bel-pfe -belkin_sa -bfa -bfq -bfs -bfusb -bh1750 -bh1770glc -bh1780 -binder_linux -binfmt_misc -blake2b_generic -block2mtd -blocklayoutdriver -blowfish-x86_64 -blowfish_common -blowfish_generic -bluecard_cs -bluetooth -bluetooth_6lowpan -bma150 -bma220_spi -bma400_core -bma400_i2c -bma400_spi -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmc150_magn_i2c -bmc150_magn_spi -bme680_core -bme680_i2c -bme680_spi -bmg160_core -bmg160_i2c -bmg160_spi -bmi088-accel-core -bmi088-accel-spi -bmi160_core -bmi160_i2c -bmi160_spi -bmp280 -bmp280-i2c -bmp280-spi -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bnxt_re -bochs -bonding -bpa-rs600 -bpa10x -bpck -bpfilter -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq2515x_charger -bq256xx_charger -bq25890_charger -bq25980_charger -bq27xxx_battery -bq27xxx_battery_hdq -bq27xxx_battery_i2c -br2684 -br_netfilter -brcmfmac -brcmsmac -brcmutil -brd -bridge -broadcom -bsd_comp -bt3c_cs -bt819 -bt856 -bt866 -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btmtksdio -btmtkuart -btqca -btrfs -btrsi -btrtl -btsdio -bttv -btusb -bu21013_ts -bu21029_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c2port-duramar2150 -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -ca8210 -cachefiles -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_serial -caif_socket -caif_usb -caif_virtio -camellia-aesni-avx-x86_64 -camellia-aesni-avx2 -camellia-x86_64 -camellia_generic -can -can-bcm -can-dev -can-gw -can-isotp -can-j1939 -can-raw -capmode -capsule-loader -carl9170 -carminefb -cassini -cast5-avx-x86_64 -cast5_generic -cast6-avx-x86_64 -cast6_generic -cast_common -catc -cavium_ptp -cb710 -cb710-mmc -cb_das16_cs -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc10001_adc -cc2520 -cc770 -cc770_isa -cc770_platform -ccm -ccp -ccp-crypto -ccs -ccs-pll -ccs811 -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -cdns-csi2rx -cdns-csi2tx -cdns-pltfrm -cdns-usb-common -cdns3 -cdns3-pci-wrap -cdnsp-udc-pci -cec -ceph -cfag12864b -cfag12864bfb -cfb -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -ch -ch341 -ch7006 -ch7322 -ch9200 -ch_ipsec -ch_ktls -chacha-x86_64 -chacha20poly1305 -chacha_generic -chaoskey -charlcd -chcr -chipone_icn8505 -chipreg -chnl_net -chromeos_laptop -chromeos_pstore -chromeos_tbmc -ci_hdrc -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_usb2 -cicada -cifs -cifs_arc4 -cifs_md4 -cio-dac -cirrus -cirrusfb -ck804xrom -classmate-laptop -clip -clk-cdce706 -clk-cs2000-cp -clk-lmk04832 -clk-max9485 -clk-palmas -clk-pwm -clk-si5341 -clk-si5351 -clk-si544 -clk-twl6040 -clk-wm831x -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm36651 -cm4000_cs -cm4040_cs -cma3000_d0x -cma3000_d0x_i2c -cmac -cmdlinepart -cmtp -cnic -cobalt -cobra -coda -com20020 -com20020-pci -com20020_cs -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_example_test -comedi_isadma -comedi_parport -comedi_pci -comedi_pcmcia -comedi_test -comedi_usb -comm -compal-laptop -contec_pci_dio -cordic -core -coretemp -corsair-cpro -corsair-psu -cortina -counter -cp210x -cpcihp_generic -cpcihp_zt5550 -cpia2 -cpu5wdt -cpuid -cpuidle-haltpoll -cqhci -cr_bllcd -cramfs -crc-itu-t -crc32-pclmul -crc32_generic -crc4 -crc64 -crc7 -crc8 -crct10dif-pclmul -cros-ec-cec -cros-ec-sensorhub -cros_ec -cros_ec_accel_legacy -cros_ec_baro -cros_ec_chardev -cros_ec_debugfs -cros_ec_dev -cros_ec_i2c -cros_ec_ishtp -cros_ec_keyb -cros_ec_lid_angle -cros_ec_light_prox -cros_ec_lightbar -cros_ec_lpcs -cros_ec_mkbp_proximity -cros_ec_sensors -cros_ec_sensors_core -cros_ec_spi -cros_ec_sysfs -cros_ec_typec -cros_kbd_led_backlight -cros_peripheral_charger -cros_usbpd-charger -cros_usbpd_logger -cros_usbpd_notify -crvml -cryptd -crypto_engine -crypto_safexcel -crypto_simd -crypto_user -cryptoloop -cs3308 -cs5345 -cs53l32a -csiostor -ct82c710 -curve25519-generic -curve25519-x86_64 -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cw2015_battery -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxd2880 -cxd2880-spi -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cxgbit -cxl_acpi -cxl_core -cxl_pci -cxl_pmem -cy8ctma140 -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da280 -da311 -da7280 -da9030_battery -da9034-ts -da903x-regulator -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062_wdt -da9063_onkey -da9063_wdt -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_cs -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -dax_hmem -dax_pmem -dax_pmem_compat -dax_pmem_core -db9 -dc395x -dca -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dcdbas -ddbridge -ddbridge-dummy-fe -de2104x -de4x5 -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 -denali -denali_pci -des3_ede-x86_64 -des_generic -designware_i2s -device_dax -dfl -dfl-afu -dfl-emif -dfl-fme -dfl-fme-br -dfl-fme-mgr -dfl-fme-region -dfl-n3000-nios -dfl-pci -dht11 -diag -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dib9000 -dibx000_common -digi_acceleport -diskonchip -dl2k -dlhl60d -dlink-dir685-touchkeys -dlm -dln2 -dln2-adc -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 -dm1105 -dm9601 -dmard09 -dmard10 -dme1737 -dmfe -dmi-sysfs -dmm32at -dmx3191d -dnet -dp83640 -dp83822 -dp83848 -dp83867 -dp83869 -dp83tc811 -dps310 -dps920ab -dpt_i2o -dptf_pch_fivr -dptf_power -drbd -drivetemp -drm -drm_kms_helper -drm_mipi_dbi -drm_ttm_helper -drm_vram_helper -drm_xen_front -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1803 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds4424 -ds620 -dsa_core -dsbr100 -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dtl1_cs -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-dibusb-mc-common -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_dummy_fe -dvb_usb_v2 -dw-edma -dw-edma-pcie -dw-i3c-master -dw-xdata-pcie -dw9714 -dw9768 -dw9807-vcm -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_wdt -dwc-xlgmac -dwc2_pci -dwc3 -dwc3-haps -dwc3-pci -dwmac-generic -dwmac-intel -dwmac-loongson -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -e752x_edac -earth-pt1 -earth-pt3 -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 -ec100 -ec_bhf -ec_sys -ecc -ecdh_generic -ecdsa_generic -echainiv -echo -ecrdsa_generic -edac_mce_amd -edt-ft5x06 -ee1004 -eeepc-laptop -eeepc-wmi -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efa -efct -efi-pstore -efi_test -efibc -efs -egalax_ts_serial -ehci-fsl -ehset -einj -ektf2127 -elan_i2c -elo -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_ipt -em_meta -em_nbyte -em_text -em_u32 -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_pcmcia -ems_usb -emu10k1-gp -ena -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -ene_ir -eni -enic -epat -epia -epic100 -eql -erofs -esas2r -esb2rom -esd_usb2 -esp4 -esp4_offload -esp6 -esp6_offload -esp_scsi -essiv -et1011c -et131x -et8ek8 -etas_es58x -ethoc -eurotechwdt -evbug -exc3000 -exfat -extcon-adc-jack -extcon-axp288 -extcon-fsa9480 -extcon-gpio -extcon-intel-cht-wc -extcon-intel-int3496 -extcon-intel-mrfld -extcon-max14577 -extcon-max3355 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-ptn5150 -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -extcon-usbc-cros-ec -extcon-usbc-tusb320 -ezusb -f2fs -f71805f -f71808e_wdt -f71882fg -f75375s -f81232 -f81534 -f81601 -failover -fakelb -fam15h_power -fan53555 -farsync -faulty -fb_agm1264k-fl -fb_bd663474 -fb_ddc -fb_hx8340bn -fb_hx8347d -fb_hx8353d -fb_hx8357d -fb_ili9163 -fb_ili9320 -fb_ili9325 -fb_ili9340 -fb_ili9341 -fb_ili9481 -fb_ili9486 -fb_pcd8544 -fb_ra8875 -fb_s6d02a1 -fb_s6d1121 -fb_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 -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_cs -fdomain_pci -fdp -fdp_i2c -fealnx -ff-memless -fieldbus_dev -fintek-cir -firedtv -firestream -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -firmware_attributes_class -fit2 -fit3 -fixed -fjes -fl512 -floppy -fm10k -fm801-gp -fm_drv -fmvj18x_cs -fnic -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fou6 -fpga-bridge -fpga-mgr -fpga-region -freevxfs -friq -frpw -fscache -fschmd -fsia6b -fsl-mph-dr-of -fsl_linflexuart -fsl_lpuart -fsp-3y -ftdi-elan -ftdi_sio -ftl -ftrace-direct -ftrace-direct-modify -ftrace-direct-too -ftsteutates -fujitsu-laptop -fujitsu-tablet -fujitsu_ts -fusb302 -fxas21002c_core -fxas21002c_i2c -fxas21002c_spi -fxls8962af-core -fxls8962af-i2c -fxls8962af-spi -fxos8700_core -fxos8700_i2c -fxos8700_spi -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gb-audio-apbridgea -gb-audio-codec -gb-audio-gb -gb-audio-manager -gb-audio-module -gb-bootrom -gb-es2 -gb-firmware -gb-gbphy -gb-gpio -gb-hid -gb-i2c -gb-light -gb-log -gb-loopback -gb-power-supply -gb-pwm -gb-raw -gb-sdio -gb-spi -gb-spilib -gb-uart -gb-usb -gb-vibrator -gdmtty -gdmulte -gen_probe -generic -generic-adc-battery -genet -geneve -genwqe_card -gf2k -gfs2 -ghash-clmulni-intel -gigabyte-wmi -gl518sm -gl520sm -gl620a -gluebi -gm12u320 -gma500_gfx -gnss -gnss-mtk -gnss-serial -gnss-sirf -gnss-ubx -go7007 -go7007-loader -go7007-usb -goku_udc -goldfish_battery -goodix -gp2ap002 -gp2ap020a00f -gp8psk-fe -gpd-pocket-fan -gpio -gpio-104-dio-48e -gpio-104-idi-48 -gpio-104-idio-16 -gpio-aaeon -gpio-adp5520 -gpio-adp5588 -gpio-aggregator -gpio-amd-fch -gpio-amd8111 -gpio-amdpt -gpio-arizona -gpio-bd9571mwv -gpio-beeper -gpio-charger -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-exar -gpio-f7188x -gpio-generic -gpio-gpio-mm -gpio-ich -gpio-it87 -gpio-janz-ttl -gpio-kempld -gpio-ljca -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-pca953x -gpio-pca9570 -gpio-pcf857x -gpio-pci-idio-16 -gpio-pcie-idio-24 -gpio-pisosr -gpio-rdc321x -gpio-regulator -gpio-sch -gpio-sch311x -gpio-siox -gpio-tpic2810 -gpio-tps65086 -gpio-tps65912 -gpio-tqmx86 -gpio-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-vibra -gpio-viperboard -gpio-virtio -gpio-vx855 -gpio-wcove -gpio-winbond -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio-ws16c48 -gpio-xra1403 -gpio_backlight -gpio_decoder -gpio_keys -gpio_keys_polled -gpio_mouse -gpu-sched -gr_udc -grace -gre -greybus -grip -grip_mp -gru -gs1662 -gs_fpga -gs_usb -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtp -gud -guillemot -gunze -gve -habanalabs -hackrf -hamachi -hampshire -hangcheck-timer -hanwang -hci -hci_nokia -hci_uart -hci_vhci -hd3ss3220 -hd44780 -hd44780_common -hdaps -hdc100x -hdc2010 -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdma -hdma_mgmt -hdpvr -he -hecubafb -helene -hellcreek_sw -hexium_gemini -hexium_orion -hfcmulti -hfcpci -hfcsusb -hfi1 -hfs -hfsplus -hgafb -hi311x -hi556 -hi6210-i2s -hi8435 -hid -hid-a4tech -hid-accutouch -hid-alps -hid-apple -hid-appleir -hid-asus -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-bigbenff -hid-cherry -hid-chicony -hid-cmedia -hid-corsair -hid-cougar -hid-cp2112 -hid-creative-sb0540 -hid-cypress -hid-dr -hid-elan -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-ft260 -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-glorious -hid-google-hammer -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-hyperv -hid-icade -hid-ite -hid-jabra -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-led -hid-lenovo -hid-lg-g15 -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-macally -hid-magicmouse -hid-maltron -hid-mcp2221 -hid-mf -hid-microsoft -hid-monterey -hid-multitouch -hid-nti -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-playstation -hid-primax -hid-prodikeys -hid-redragon -hid-retrode -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-semitek -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-custom-intel-hinge -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-humidity -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-temperature -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steam -hid-steelseries -hid-sunplus -hid-thrustmaster -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-u2fzero -hid-uclogic -hid-udraw-ps3 -hid-viewsonic -hid-vivaldi -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hideep -hidp -hih6130 -hinic -hisi-spmi-controller -hm11b1 -hmc425a -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hopper -horizon -horus3a -hostap -hostap_cs -hostap_pci -hostap_plx -hp-wmi -hp03 -hp206c -hp_accel -hpfs -hpilo -hpsa -hptiop -hpwdt -hsi -hsi_char -hso -hsr -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei-wmi -huawei_cdc_ncm -hv_balloon -hv_netvsc -hv_sock -hv_storvsc -hv_utils -hv_vmbus -hwmon-aaeon -hwmon-vid -hwpoison-inject -hx711 -hx8357 -hx8357d -hycon-hy46xx -hyperbus-core -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-cht-wc -i2c-cp2615 -i2c-cros-ec-tunnel -i2c-designware-pci -i2c-diolan-u2c -i2c-dln2 -i2c-gpio -i2c-hid -i2c-hid-acpi -i2c-i801 -i2c-isch -i2c-ismt -i2c-kempld -i2c-ljca -i2c-matroxfb -i2c-mlxcpld -i2c-mux -i2c-mux-gpio -i2c-mux-ltc4306 -i2c-mux-mlxcpld -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-reg -i2c-nforce2 -i2c-nforce2-s4985 -i2c-nvidia-gpu -i2c-ocores -i2c-parport -i2c-pca-platform -i2c-piix4 -i2c-robotfuzz-osif -i2c-scmi -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tiny-usb -i2c-via -i2c-viapro -i2c-viperboard -i2c-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 -i740fb -i7core_edac -i82092 -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_srpt -ib_umad -ib_uverbs -ibm-cffps -ibm_rtl -ibmaem -ibmasm -ibmasr -ibmpex -ice -ichxrom -icp -icp10100 -icp_multi -icplus -ics932s401 -ideapad-laptop -ideapad_slidebar -idma64 -idmouse -idt77252 -idt_89hpesx -idt_gen2 -idt_gen3 -idtcps -idxd -idxd_bus -ie31200_edac -ie6xx_wdt -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -ifcvf -ife -ifi_canfd -iforce -iforce-serio -iforce-usb -igb -igbvf -igc -igen6_edac -igorplugusb -iguanair -ii_pci20kc -iio-trig-hrtimer -iio-trig-interrupt -iio-trig-loop -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili9225 -ili922x -ili9320 -ili9341 -ili9486 -ilitek_ts_i2c -img-ascii-lcd -img-i2s-in -img-i2s-out -img-parallel-out -img-spdif-in -img-spdif-out -imm -imon -imon_raw -ims-pcu -imx208 -imx214 -imx219 -imx258 -imx274 -imx290 -imx319 -imx355 -ina209 -ina2xx -ina2xx-adc -ina3221 -industrialio -industrialio-buffer-cb -industrialio-buffer-dma -industrialio-buffer-dmaengine -industrialio-configfs -industrialio-hw-consumer -industrialio-sw-device -industrialio-sw-trigger -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -inspur-ipsps -int3400_thermal -int3401_thermal -int3402_thermal -int3403_thermal -int3406_thermal -int340x_thermal_zone -int51x1 -intel-cstate -intel-hid -intel-ipu6 -intel-ipu6-isys -intel-ipu6-psys -intel-ish-ipc -intel-ishtp -intel-ishtp-hid -intel-ishtp-loader -intel-lpss -intel-lpss-acpi -intel-lpss-pci -intel-m10-bmc -intel-m10-bmc-hwmon -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-xway -intel_atomisp2_led -intel_bxt_pmic_thermal -intel_bxtwc_tmu -intel_cht_int33fe -intel_chtdc_ti_pwrbtn -intel_int0002_vgpio -intel_ips -intel_menlow -intel_mrfld_adc -intel_mrfld_pwrbtn -intel_oaktrail -intel_pch_thermal -intel_pmc_bxt -intel_pmc_mux -intel_pmt -intel_powerclamp -intel_punit_ipc -intel_qat -intel_quark_i2c_gpio -intel_rapl_common -intel_rapl_msr -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 -intel_th -intel_th_acpi -intel_th_gth -intel_th_msu -intel_th_msu_sink -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -intel_vsc -intelfb -interact -interrupt-cnt -inv-icm42600 -inv-icm42600-i2c -inv-icm42600-spi -inv-mpu6050 -inv-mpu6050-i2c -inv-mpu6050-spi -io_edgeport -io_ti -ioatdma -iommu_v2 -ionic -iosm -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_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_tunnel -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 -ipaq -ipcomp -ipcomp6 -iphase -ipheth -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -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-cio2 -ipu3-imgu -ipvlan -ipvtap -ipw -ipw2100 -ipw2200 -ipwireless -iqs269a -iqs5xx -iqs620at-temp -iqs621-als -iqs624-pos -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-usb -ir-xmp-decoder -ir35221 -ir36021 -ir38064 -ir_toy -irdma -irps5401 -irq-madera -isci -iscsi_boot_sysfs -iscsi_ibft -iscsi_target_mod -iscsi_tcp -isdnhdlc -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl29501 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl68137 -isl9305 -isofs -isp116x-hcd -isp1704_charger -isp1760 -isst_if_common -isst_if_mbox_msr -isst_if_mbox_pci -isst_if_mmio -it87 -it8712f_wdt -it87_wdt -it913x -itd1000 -ite-cir -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_cm -iw_cxgb4 -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -k10temp -k8temp -kafs -kalmia -kaweth -kb3886_bl -kbic -kbtab -kcm -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -kheaders -kl5kusb105 -kmem -kmx61 -kobil_sct -ks0108 -ks0127 -ks7010 -ks8842 -ks8851_common -ks8851_par -ks8851_spi -ksmbd -ksz8795 -ksz8795_spi -ksz884x -ksz8863_smi -ksz9477 -ksz9477_i2c -ksz9477_spi -ksz_common -ktd253-backlight -ktti -kvaser_pci -kvaser_pciefd -kvaser_usb -kvm -kvm-amd -kvm-intel -kvmgt -kxcjk-1013 -kxsd9 -kxsd9-i2c -kxsd9-spi -kxtj9 -kyber-iosched -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l440gx -l4f00242t03 -l64781 -lan743x -lan78xx -lan9303-core -lan9303_i2c -lan9303_mdio -lanai -lantiq -lantiq_gswip -lapb -lapbether -lattice-ecp3-config -lcd -lcd2s -ldusb -lec -led-class-flash -led-class-multicolor -leds-88pm860x -leds-aaeon -leds-adp5520 -leds-apu -leds-as3645a -leds-bd2802 -leds-blinkm -leds-clevo-mail -leds-da903x -leds-da9052 -leds-dac124s085 -leds-gpio -leds-lm3530 -leds-lm3532 -leds-lm3533 -leds-lm355x -leds-lm3601x -leds-lm36274 -leds-lm3642 -leds-lp3944 -leds-lp3952 -leds-lp50xx -leds-lp8788 -leds-lt3593 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-mlxcpld -leds-mlxreg -leds-mt6323 -leds-nic78bx -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-rt8515 -leds-sgm3140 -leds-ss4200 -leds-tca6507 -leds-ti-lmu-common -leds-tlc591xx -leds-tps6105x -leds-wm831x-status -leds-wm8350 -ledtrig-activity -ledtrig-audio -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-netdev -ledtrig-oneshot -ledtrig-pattern -ledtrig-timer -ledtrig-transient -ledtrig-tty -ledtrig-usbport -legousbtower -lg-laptop -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gl5 -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libahci -libahci_platform -libarc4 -libceph -libchacha -libchacha20poly1305 -libcomposite -libcrc32c -libcurve25519 -libcurve25519-generic -libcxgb -libcxgbi -libdes -libertas -libertas_cs -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libpoly1305 -libsas -libsm4 -lightning -lineage-pem -linear -liquidio -liquidio_vf -lis3lv02d -lis3lv02d_i2c -ljca -lkkbd -ll_temac -llc -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3560 -lm3630a_bl -lm3639_bl -lm363x-regulator -lm3646 -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lmc -lmp91000 -lms283gf05 -lms501kf03 -lnbh25 -lnbh29 -lnbp21 -lnbp22 -lockd -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp873x -lp8755 -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -lt3651-charger -ltc1660 -ltc2471 -ltc2485 -ltc2496 -ltc2497 -ltc2497-core -ltc2632 -ltc2941-battery-gauge -ltc2945 -ltc2947-core -ltc2947-i2c -ltc2947-spi -ltc2978 -ltc2983 -ltc2990 -ltc2992 -ltc3589 -ltc3676 -ltc3815 -ltc4151 -ltc4162-l-charger -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltpc -ltr501 -ltv350qv -lv0104cs -lv5207lp -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m2m-deinterlace -m52790 -m5mols -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -m_can_pci -m_can_platform -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -mac802154_hwsim -mac_hid -macb -macb_pci -machxo2-spi -machzwd -macmodes -macsec -macvlan -macvtap -madera -madera-i2c -madera-spi -mag3110 -magellan -mailbox-altera -mana -mantis -mantis_core -map_absent -map_funcs -map_ram -map_rom -marvell -marvell-88x2222 -marvell10g -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max11100 -max1111 -max1118 -max11801_ts -max1241 -max127 -max1363 -max14577-regulator -max14577_charger -max15301 -max1586 -max16064 -max16065 -max1619 -max16601 -max1668 -max17040_battery -max17042_battery -max1721x_battery -max197 -max20730 -max20751 -max2165 -max2175 -max30100 -max30102 -max3100 -max31722 -max31730 -max31785 -max31790 -max31856 -max3420_udc -max3421-hcd -max34440 -max44000 -max44009 -max517 -max5432 -max5481 -max5487 -max63xx_wdt -max6621 -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77693-haptic -max77693-regulator -max77693_charger -max77826-regulator -max8649 -max8660 -max8688 -max8893 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8997-regulator -max8997_charger -max8997_haptic -max8998 -max8998_charger -max9271 -max9611 -maxim_thermocouple -mb1232 -mb862xxfb -mb86a16 -mb86a20s -mc -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc3230 -mc44s803 -mcam-core -mcb -mcb-lpc -mcb-pci -mcba_usb -mce-inject -mceusb -mchp23k256 -mchp48l640 -mcp251x -mcp251xfd -mcp3021 -mcp320x -mcp3422 -mcp3911 -mcp4018 -mcp41010 -mcp4131 -mcp4531 -mcp4725 -mcp4922 -mcr20a -mcs5000_ts -mcs7830 -mcs_touchkey -mct_u232 -mctp -md-cluster -md4 -mdc800 -mdev -mdio -mdio-bcm-unimac -mdio-bitbang -mdio-cavium -mdio-gpio -mdio-i2c -mdio-mscc-miim -mdio-mvusb -mdio-thunder -me4000 -me_daq -mediatek-ge -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -mei -mei-me -mei-txe -mei-vsc -mei_ace -mei_ace_debug -mei_csi -mei_hdcp -mei_phy -mei_pse -mei_wdt -melfas_mip4 -memory-notifier-error-inject -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -menz69_wdt -meraki-mx100 -metro-usb -metronomefb -meye -mf6x4 -mfd-aaeon -mgag200 -mhi -mhi_net -mhi_pci_generic -mhi_wwan_ctrl -mhi_wwan_mbim -mi0283qt -michael_mic -micrel -microchip -microchip_t1 -microread -microread_i2c -microread_mei -microtek -mii -minix -mip6 -mipi-i3c-hci -mite -mk712 -mkiss -ml86v7667 -mlx-platform -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx5_vdpa -mlx90614 -mlx90632 -mlx_wdt -mlxfw -mlxreg-fan -mlxreg-hotplug -mlxreg-io -mlxsw_core -mlxsw_i2c -mlxsw_minimal -mlxsw_pci -mlxsw_spectrum -mma7455_core -mma7455_i2c -mma7455_spi -mma7660 -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_block -mmc_spi -mms114 -mn88443x -mn88472 -mn88473 -mos7720 -mos7840 -most_cdev -most_core -most_i2c -most_net -most_snd -most_usb -most_video -motorcomm -moxa -mp2629 -mp2629_adc -mp2629_charger -mp2888 -mp2975 -mp8859 -mpc624 -mpi3mr -mpl115 -mpl115_i2c -mpl115_spi -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpr121_touchkey -mpt3sas -mptbase -mptcp_diag -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mr75203 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -mscc -mscc_ocelot_switch_lib -mscc_seville -msdos -msg2638 -msi-laptop -msi-wmi -msi001 -msi2500 -msp3400 -mspro_block -msr -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt312 -mt352 -mt6311-regulator -mt6315-regulator -mt6323-regulator -mt6358-regulator -mt6359-regulator -mt6360-adc -mt6360-core -mt6360-regulator -mt6360_charger -mt6397 -mt6397-regulator -mt7530 -mt76 -mt76-connac-lib -mt76-sdio -mt76-usb -mt7601u -mt7603e -mt7615-common -mt7615e -mt7663-usb-sdio-common -mt7663s -mt7663u -mt76x0-common -mt76x02-lib -mt76x02-usb -mt76x0e -mt76x0u -mt76x2-common -mt76x2e -mt76x2u -mt7915e -mt7921e -mt9m001 -mt9m032 -mt9m111 -mt9p031 -mt9t001 -mt9t112 -mt9v011 -mt9v032 -mt9v111 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdpstore -mtdram -mtdswap -mtip32xx -mtk-pmic-keys -mtk-sd -mtouch -multipath -multiq3 -musb_hdrc -mux-adg792a -mux-adgs1408 -mux-core -mux-gpio -mv88e6060 -mv88e6xxx -mv_u3d_core -mv_udc -mvmdio -mvsas -mvumi -mwave -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxc6255 -mxic_nand -mxl-gpy -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxl5xx -mxl692 -mxm-wmi -mxser -mxuport -myrb -myri10ge -myrs -n411 -n5pf -n_gsm -n_hdlc -nand -nandcore -nandsim -national -natsemi -nau7802 -navman -nbd -nci -nci_spi -nci_uart -nct6683 -nct6775 -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -nd_virtio -ne2k-pci -neofb -net1080 -net2272 -net2280 -net_failover -netconsole -netdevsim -netfs -netjet -netlink_diag -netrom -nettel -netup-unidvb -netxen_nic -newtonkbd -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 -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfit -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 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -nhpoly1305 -nhpoly1305-avx2 -nhpoly1305-sse2 -ni903x_wdt -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_daq_700 -ni_daq_dio24 -ni_labpc -ni_labpc_common -ni_labpc_cs -ni_labpc_isadma -ni_labpc_pci -ni_mio_cs -ni_pcidio -ni_pcimio -ni_routes_test -ni_routing -ni_tio -ni_tiocmd -ni_usb6501 -nic7018_wdt -nicpf -nicstar -nicvf -nilfs2 -nitro_enclaves -niu -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 -nmclan_cs -noa1305 -noon010pc30 -nosy -notifier-error-inject -nouveau -nozomi -npcm750-pwm-fan -ns558 -ns83820 -nsh -ntb -ntb_hw_epf -ntb_hw_idt -ntb_hw_intel -ntb_hw_switchtec -ntb_netdev -ntb_perf -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -ntfs3 -null_blk -nuvoton-cir -nv_tco -nvidia-wmi-ec-backlight -nvidiafb -nvme -nvme-core -nvme-fabrics -nvme-fc -nvme-loop -nvme-rdma -nvme-tcp -nvmem-rave-sp-eeprom -nvmem-rmem -nvmem_qcom-spmi-sdam -nvmet -nvmet-fc -nvmet-rdma -nvmet-tcp -nvram -nxp-c45-tja11xx -nxp-nci -nxp-nci_i2c -nxp-tja11xx -nxt200x -nxt6000 -nzxt-kraken2 -objagg -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_mmc_spi -of_xilinx_wdt -ofb -omfs -omninet -on20 -on26 -onenand -opa_vnic -opencores-kbd -openvswitch -opt3001 -opticon -option -or51132 -or51211 -orangefs -orinoco -orinoco_cs -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -oti6858 -otm3225a -ov01a10 -ov01a1s -ov02a10 -ov02c10 -ov13858 -ov2640 -ov2659 -ov2680 -ov2685 -ov2740 -ov5647 -ov5648 -ov5670 -ov5675 -ov5695 -ov6650 -ov7251 -ov7640 -ov7670 -ov772x -ov7740 -ov8856 -ov8865 -ov9640 -ov9650 -ov9734 -overlay -oxu210hp-hcd -p4-clockmod -p54common -p54pci -p54spi -p54usb -p8022 -pa12203001 -padlock-aes -padlock-sha -palmas-pwrbutton -palmas-regulator -palmas_gpadc -panasonic-laptop -pandora_bl -panel -panel-raspberrypi-touchscreen -panel-widechips-ws2401 -paride -parkbd -parman -parport -parport_ax88796 -parport_cs -parport_pc -parport_serial -pata_acpi -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_oldpiix -pata_opti -pata_optidma -pata_pcmcia -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sl82c105 -pata_triflex -pata_via -pc300too -pc87360 -pc87413_wdt -pc87427 -pca9450-regulator -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcd -pcengines-apuv2 -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-epf-ntb -pci-hyperv -pci-hyperv-intf -pci-pf-stub -pci-stub -pci200syn -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmcia -pcmcia_core -pcmcia_rsrc -pcmciamtd -pcmda12 -pcmmio -pcmuio -pcnet32 -pcnet_cs -pcrypt -pcs-lynx -pcs_xpcs -pcspkr -pcwd_pci -pcwd_usb -pd -pd6729 -pda_power -pdc_adma -peak_pci -peak_pciefd -peak_pcmcia -peak_usb -peaq-wmi -pegasus -pegasus_notetaker -penmount -pf -pg -phantom -phonet -phram -phy-bcm-kona-usb2 -phy-can-transceiver -phy-cpcap-usb -phy-exynos-usb2 -phy-generic -phy-gpio-vbus-usb -phy-intel-lgm-emmc -phy-isp1301 -phy-lgm-usb -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-qcom-usb-hs -phy-qcom-usb-hsic -phy-tahvo -phy-tusb1210 -phylink -physmap -pi3usb30532 -pi433 -pim4328 -pinctrl-alderlake -pinctrl-broxton -pinctrl-cannonlake -pinctrl-cedarfork -pinctrl-da9062 -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 -ping -pistachio-internal-dac -pixcir_i2c_ts -pkcs7_test_key -pkcs8_key_parser -pktcdvd -pktgen -pl2303 -plat-ram -plat_nand -platform_lcd -platform_profile -plip -plusb -pluto2 -plx_dma -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm6764tr -pm80xx -pmbus -pmbus_core -pmc551 -pmcraid -pms7003 -pmt_class -pmt_crashlog -pmt_telemetry -pn532_uart -pn533 -pn533_i2c -pn533_usb -pn544 -pn544_i2c -pn544_mei -pn_pep -pnd2_edac -poly1305-x86_64 -poly1305_generic -port100 -power_ctrl_logic -powermate -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_parport -pptp -prestera -prestera_pci -pretimeout_panic -prism2_usb -processor_thermal_device -processor_thermal_device_pci -processor_thermal_device_pci_legacy -processor_thermal_mbox -processor_thermal_rapl -processor_thermal_rfim -ps2-gpio -ps2mult -psample -psmouse -psnap -pstore_blk -pstore_zone -psxpad-spi -pt -ptdma -ptp_clockmatrix -ptp_idt82p33 -ptp_ines -ptp_kvm -ptp_ocp -ptp_vmw -pulse8-cec -pulsedlight-lidar-lite-v2 -punit_atom_debug -pv88060-regulator -pv88080-regulator -pv88090-regulator -pvcalls-front -pvpanic -pvpanic-mmio -pvpanic-pci -pvrusb2 -pwc -pwm-beeper -pwm-cros-ec -pwm-dwc -pwm-iqs620a -pwm-lp3943 -pwm-pca9685 -pwm-regulator -pwm-twl -pwm-twl-led -pwm-vibra -pwm_bl -pxa27x_udc -pxe1610 -pxrc -q54sj108a2 -qat_4xxx -qat_c3xxx -qat_c3xxxvf -qat_c62x -qat_c62xvf -qat_dh895xcc -qat_dh895xccvf -qca8k -qcaux -qcom-emac -qcom-labibb-regulator -qcom-spmi-adc5 -qcom-spmi-iadc -qcom-spmi-vadc -qcom-vadc-common -qcom-wled -qcom_glink -qcom_glink_rpm -qcom_spmi-regulator -qcom_usb_vbus-regulator -qcserial -qed -qede -qedf -qedi -qedr -qemu_fw_cfg -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qlogic_cs -qlogicfas408 -qm1d1b0004 -qm1d1c0042 -qmi_helpers -qmi_wwan -qnx4 -qnx6 -qrtr -qrtr-mhi -qrtr-smd -qrtr-tun -qsemi -qt1010 -qt1050 -qt1070 -qt2160 -qtnfmac -qtnfmac_pcie -quatech2 -quatech_daqp_cs -quota_tree -quota_v1 -quota_v2 -qwiic-joystick -qxl -r592 -r6040 -r8152 -r8153_ecm -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723bs -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si470x-common -radio-si470x-i2c -radio-si470x-usb -radio-si476x -radio-tea5764 -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid_class -rainshadow-cec -ramoops -rapl -rave-sp -rave-sp-backlight -rave-sp-pwrbutton -rave-sp-wdt -raw_diag -raw_gadget -ray_cs -raydium_i2c_ts -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 -rc5t583-regulator -rdacm20 -rdacm21 -rdc321x-southbridge -rdma_cm -rdma_rxe -rdma_ucm -rdmavt -rds -rds_rdma -rds_tcp -realtek -realtek-smi -redboot -redrat3 -reed_solomon -regmap-i3c -regmap-sccb -regmap-sdw -regmap-sdw-mbq -regmap-slimbus -regmap-spi-avmm -regmap-spmi -regmap-w1 -regulator-haptic -reiserfs -repaper -reset-ti-syscon -resistive-adc-touch -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd77402 -rfd_ftl -rfkill-gpio -rio-scan -rio_cm -rio_mport_cdev -rionet -rivafb -rj54n1cb0c -rm3100-core -rm3100-i2c -rm3100-spi -rmd160 -rmi_core -rmi_i2c -rmi_smbus -rmi_spi -rmnet -rnbd-client -rnbd-server -rndis_host -rndis_wlan -rockchip -rocker -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpi-panel-attiny-regulator -rpmsg_char -rpmsg_core -rpmsg_ns -rpmsg_wwan_ctrl -rpr0521 -rsi_91x -rsi_sdio -rsi_usb -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt4801-regulator -rt4831 -rt4831-backlight -rt4831-regulator -rt5033 -rt5033-regulator -rt5033_battery -rt6160-regulator -rt61pci -rt6245-regulator -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab-eoz9 -rtc-abx80x -rtc-bq32k -rtc-bq4802 -rtc-cros-ec -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1302 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-em3027 -rtc-fm3130 -rtc-ftrtc010 -rtc-goldfish -rtc-hid-sensor-time -rtc-isl12022 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max6916 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-msm6242 -rtc-mt6397 -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf85363 -rtc-pcf8563 -rtc-pcf8583 -rtc-r9701 -rtc-rc5t583 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3028 -rtc-rv3029c2 -rtc-rv3032 -rtc-rv8803 -rtc-rx4581 -rtc-rx6110 -rtc-rx8010 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-sd3078 -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-v3020 -rtc-wilco-ec -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rtmv20-regulator -rtq2134-regulator -rtq6752-regulator -rtrs-client -rtrs-core -rtrs-server -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rtw88_8723d -rtw88_8723de -rtw88_8821c -rtw88_8821ce -rtw88_8822b -rtw88_8822be -rtw88_8822c -rtw88_8822ce -rtw88_core -rtw88_pci -rtw89_core -rtw89_pci -rx51_battery -rxrpc -s1d13xxxfb -s2250 -s2255drv -s2io -s3fb -s3fwrn5 -s3fwrn5_i2c -s3fwrn82_uart -s526 -s5c73m3 -s5h1409 -s5h1411 -s5h1420 -s5h1432 -s5k4ecgx -s5k5baf -s5k6a3 -s5k6aa -s626 -s6sy761 -s921 -saa6588 -saa6752hs -saa7110 -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7185 -saa7706h -safe_serial -sample-trace-array -samsung-keypad -samsung-laptop -samsung-q10 -samsung-sxgbe -sata_dwc_460ex -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_sil -sata_sil24 -sata_sis -sata_svw -sata_sx4 -sata_uli -sata_via -sata_vsc -savagefb -sb1000 -sb_edac -sbc60xxwdt -sbc_epx_c3 -sbc_fitpc2_wdt -sbc_gxx -sbp_target -sbrmi -sbs -sbs-battery -sbs-charger -sbs-manager -sbshc -sbtsi_temp -sc1200wdt -sc16is7xx -sc92031 -sca3000 -sca3300 -scb2_flash -scd30_core -scd30_i2c -scd30_serial -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 -scr24x_cs -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_diag -sdhci -sdhci-acpi -sdhci-pci -sdhci-pltfm -sdhci-xenon-driver -sdhci_f_sdh30 -sdio_uart -sdricoh_cs -seco-cec -sensorhub -serial-multi-instantiate -serial_cs -serial_ir -serio_raw -sermouse -serpent-avx-x86_64 -serpent-avx2 -serpent-sse2-x86_64 -serpent_generic -serport -ses -sf-pdma -sfc -sfc-falcon -sfp -sgi_w1 -sgp30 -sgp40 -sha1-ssse3 -sha256-ssse3 -sha3_generic -sha512-ssse3 -shark2 -shiftfs -sht15 -sht21 -sht3x -sht4x -shtc1 -si1133 -si1145 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sil164 -silead -sim710 -simpledrm -simplefb -siox-bus-gpio -siox-core -sir_ir -sis-agp -sis190 -sis5595 -sis900 -sis_i2c -sisfb -sisusbvga -sit -siw -sja1000 -sja1000_isa -sja1000_platform -sja1105 -skfp -skge -skx_edac -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -sl811_cs -slcan -slg51000-regulator -slicoss -slim-qcom-ctrl -slimbus -slip -slram -sm2_generic -sm3_generic -sm4-aesni-avx-x86_64 -sm4-aesni-avx2-x86_64 -sm4_generic -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smartpqi -smb347-charger -smc -smc91c92_cs -smc_diag -smipcie -smm665 -smsc -smsc37b787_wdt -smsc47b397 -smsc47m1 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-acp3x-i2s -snd-acp3x-pcm-dma -snd-acp3x-pdm-dma -snd-acp3x-rn -snd-acp5x-i2s -snd-acp5x-pcm-dma -snd-acp6x-pdm-dma -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4117 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als300 -snd-als4000 -snd-asihpi -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt3328 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-compress -snd-cs4281 -snd-cs46xx -snd-cs8427 -snd-ctl-led -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1938 -snd-es1968 -snd-fireface -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-motu -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-cs8409 -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-ext-core -snd-hda-intel -snd-hda-scodec-cs35l41 -snd-hda-scodec-cs35l41-i2c -snd-hda-scodec-cs35l41-spi -snd-hdmi-lpe-audio -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel-dspcfg -snd-intel-sdw-acpi -snd-intel-sst-acpi -snd-intel-sst-core -snd-intel-sst-pci -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-lx6464es -snd-maestro3 -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pci-acp3x -snd-pci-acp5x -snd-pci-acp6x -snd-pcm -snd-pcm-dmaengine -snd-pcsp -snd-pcxhr -snd-pdaudiocf -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-rn-pci-acp3x -snd-sb-common -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-skl_nau88l25_max98357a -snd-soc-63xx -snd-soc-ac97 -snd-soc-acp-da7219mx98357-mach -snd-soc-acp-rt5645-mach -snd-soc-acp-rt5682-mach -snd-soc-acp6x-mach -snd-soc-acpi -snd-soc-acpi-intel-match -snd-soc-adau-utils -snd-soc-adau1372 -snd-soc-adau1372-i2c -snd-soc-adau1372-spi -snd-soc-adau1701 -snd-soc-adau1761 -snd-soc-adau1761-i2c -snd-soc-adau1761-spi -snd-soc-adau17x1 -snd-soc-adau7002 -snd-soc-adau7118 -snd-soc-adau7118-hw -snd-soc-adau7118-i2c -snd-soc-adi-axi-i2s -snd-soc-adi-axi-spdif -snd-soc-ak4104 -snd-soc-ak4118 -snd-soc-ak4458 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-ak5558 -snd-soc-alc5623 -snd-soc-arizona -snd-soc-bd28623 -snd-soc-bt-sco -snd-soc-catpt -snd-soc-cml_rt1011_rt5682 -snd-soc-core -snd-soc-cros-ec-codec -snd-soc-cs35l32 -snd-soc-cs35l33 -snd-soc-cs35l34 -snd-soc-cs35l35 -snd-soc-cs35l36 -snd-soc-cs35l41 -snd-soc-cs35l41-i2c -snd-soc-cs35l41-lib -snd-soc-cs35l41-spi -snd-soc-cs4234 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l42 -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs43130 -snd-soc-cs4341 -snd-soc-cs4349 -snd-soc-cs53l30 -snd-soc-cx2072x -snd-soc-da7213 -snd-soc-da7219 -snd-soc-dmic -snd-soc-ehl-rt5660 -snd-soc-es7134 -snd-soc-es7241 -snd-soc-es8316 -snd-soc-es8328 -snd-soc-es8328-i2c -snd-soc-es8328-spi -snd-soc-fsl-asrc -snd-soc-fsl-audmix -snd-soc-fsl-easrc -snd-soc-fsl-esai -snd-soc-fsl-micfil -snd-soc-fsl-mqs -snd-soc-fsl-rpmsg -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-fsl-xcvr -snd-soc-gtm601 -snd-soc-hdac-hda -snd-soc-hdac-hdmi -snd-soc-hdmi-codec -snd-soc-ics43432 -snd-soc-imx-audmux -snd-soc-inno-rk3036 -snd-soc-intel-hda-dsp-common -snd-soc-intel-sof-maxim-common -snd-soc-kbl_da7219_max98357a -snd-soc-kbl_da7219_max98927 -snd-soc-kbl_rt5660 -snd-soc-kbl_rt5663_max98927 -snd-soc-kbl_rt5663_rt5514_max98927 -snd-soc-lpass-rx-macro -snd-soc-lpass-tx-macro -snd-soc-lpass-va-macro -snd-soc-lpass-wsa-macro -snd-soc-max9759 -snd-soc-max98088 -snd-soc-max98090 -snd-soc-max98357a -snd-soc-max98373 -snd-soc-max98373-i2c -snd-soc-max98373-sdw -snd-soc-max98390 -snd-soc-max98504 -snd-soc-max9860 -snd-soc-max9867 -snd-soc-max98927 -snd-soc-msm8916-analog -snd-soc-msm8916-digital -snd-soc-mt6351 -snd-soc-mt6358 -snd-soc-mt6660 -snd-soc-nau8315 -snd-soc-nau8540 -snd-soc-nau8810 -snd-soc-nau8822 -snd-soc-nau8824 -snd-soc-nau8825 -snd-soc-pcm1681 -snd-soc-pcm1789-codec -snd-soc-pcm1789-i2c -snd-soc-pcm179x-codec -snd-soc-pcm179x-i2c -snd-soc-pcm179x-spi -snd-soc-pcm186x -snd-soc-pcm186x-i2c -snd-soc-pcm186x-spi -snd-soc-pcm3060 -snd-soc-pcm3060-i2c -snd-soc-pcm3060-spi -snd-soc-pcm3168a -snd-soc-pcm3168a-i2c -snd-soc-pcm3168a-spi -snd-soc-pcm5102a -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rk3328 -snd-soc-rl6231 -snd-soc-rl6347a -snd-soc-rt1011 -snd-soc-rt1015 -snd-soc-rt1015p -snd-soc-rt1308 -snd-soc-rt1308-sdw -snd-soc-rt1316-sdw -snd-soc-rt286 -snd-soc-rt298 -snd-soc-rt5514 -snd-soc-rt5514-spi -snd-soc-rt5616 -snd-soc-rt5631 -snd-soc-rt5640 -snd-soc-rt5645 -snd-soc-rt5651 -snd-soc-rt5659 -snd-soc-rt5660 -snd-soc-rt5663 -snd-soc-rt5670 -snd-soc-rt5677 -snd-soc-rt5677-spi -snd-soc-rt5682 -snd-soc-rt5682-i2c -snd-soc-rt5682-sdw -snd-soc-rt700 -snd-soc-rt711 -snd-soc-rt711-sdca -snd-soc-rt715 -snd-soc-rt715-sdca -snd-soc-sdw-mockup -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-sigmadsp-regmap -snd-soc-simple-amplifier -snd-soc-simple-card -snd-soc-simple-card-utils -snd-soc-simple-mux -snd-soc-skl -snd-soc-skl-ssp-clk -snd-soc-skl_hda_dsp -snd-soc-skl_nau88l25_ssm4567 -snd-soc-skl_rt286 -snd-soc-sof-sdw -snd-soc-sof_cs42l42 -snd-soc-sof_da7219_max98373 -snd-soc-sof_rt5682 -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2305 -snd-soc-ssm2518 -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sst-atom-hifi2-platform -snd-soc-sst-bdw-rt5650-mach -snd-soc-sst-bdw-rt5677-mach -snd-soc-sst-broadwell -snd-soc-sst-bxt-da7219_max98357a -snd-soc-sst-bxt-rt298 -snd-soc-sst-byt-cht-cx2072x -snd-soc-sst-byt-cht-da7213 -snd-soc-sst-byt-cht-es8316 -snd-soc-sst-bytcr-rt5640 -snd-soc-sst-bytcr-rt5651 -snd-soc-sst-bytcr-wm5102 -snd-soc-sst-cht-bsw-max98090_ti -snd-soc-sst-cht-bsw-nau8824 -snd-soc-sst-cht-bsw-rt5645 -snd-soc-sst-cht-bsw-rt5672 -snd-soc-sst-dsp -snd-soc-sst-glk-rt5682_max98357a -snd-soc-sst-haswell -snd-soc-sst-ipc -snd-soc-sst-sof-pcm512x -snd-soc-sst-sof-wm8804 -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-tas2552 -snd-soc-tas2562 -snd-soc-tas2764 -snd-soc-tas2770 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tas5720 -snd-soc-tas6424 -snd-soc-tda7419 -snd-soc-tfa9879 -snd-soc-tfa989x -snd-soc-tlv320adcx140 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic32x4 -snd-soc-tlv320aic32x4-i2c -snd-soc-tlv320aic32x4-spi -snd-soc-tlv320aic3x -snd-soc-tlv320aic3x-i2c -snd-soc-tlv320aic3x-spi -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-tscs42xx -snd-soc-tscs454 -snd-soc-uda1334 -snd-soc-wcd-mbhc -snd-soc-wcd9335 -snd-soc-wcd934x -snd-soc-wcd938x -snd-soc-wcd938x-sdw -snd-soc-wm-adsp -snd-soc-wm5102 -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8524 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8782 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8904 -snd-soc-wm8960 -snd-soc-wm8962 -snd-soc-wm8974 -snd-soc-wm8978 -snd-soc-wm8985 -snd-soc-wsa881x -snd-soc-xlnx-formatter-pcm -snd-soc-xlnx-i2s -snd-soc-xlnx-spdif -snd-soc-xtfpga-i2s -snd-soc-zl38060 -snd-sof -snd-sof-acpi -snd-sof-acpi-intel-bdw -snd-sof-acpi-intel-byt -snd-sof-intel-atom -snd-sof-intel-hda -snd-sof-intel-hda-common -snd-sof-intel-ipc -snd-sof-pci -snd-sof-pci-intel-apl -snd-sof-pci-intel-cnl -snd-sof-pci-intel-icl -snd-sof-pci-intel-tgl -snd-sof-pci-intel-tng -snd-sof-xtensa-dsp -snd-sonicvibes -snd-timer -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-us122l -snd-usb-usx2y -snd-usb-variax -snd-usbmidi-lib -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-vxpocket -snd-ymfpci -snd_xen_front -snic -snps_udc_core -soc_button_array -softdog -softing -softing_cs -solo6x10 -solos-pci -sony-btf-mpx -sony-laptop -soundcore -soundwire-bus -soundwire-cadence -soundwire-generic-allocation -soundwire-intel -soundwire-qcom -sp2 -sp5100_tco -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -spectrum_cs -speedfax -speedstep-lib -speedtch -spi-altera-core -spi-altera-dfl -spi-altera-platform -spi-amd -spi-axi-spi-engine -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-mmio -spi-dw-pci -spi-gpio -spi-lantiq-ssc -spi-ljca -spi-lm70llp -spi-loopback-test -spi-mux -spi-mxic -spi-nor -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 -spi_ks8995 -spidev -spinand -spl -spmi -sprd_serial -sps30 -sps30_i2c -sps30_serial -sr030pc30 -sr9700 -sr9800 -srf04 -srf08 -ssb -ssb-hcd -ssd1307fb -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -sstfb -ssu100 -st -st-mipid02 -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st7586 -st7735r -st95hf -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_lsm6dsx -st_lsm6dsx_i2c -st_lsm6dsx_i3c -st_lsm6dsx_spi -st_lsm9ds0 -st_lsm9ds0_i2c -st_lsm9ds0_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -st_uvis25_core -st_uvis25_i2c -st_uvis25_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -stex -stinger -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stm_ftrace -stm_heartbeat -stm_p_basic -stm_p_sys-t -stmfts -stmmac -stmmac-pci -stmmac-platform -stowaway -stp -stpddc60 -streamzap -streebog_generic -stts751 -stusb160x -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv0910 -stv6110 -stv6110x -stv6111 -stx104 -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -surface3-wmi -surface3_button -surface3_power -surface3_spi -surface_acpi_notify -surface_aggregator -surface_aggregator_cdev -surface_aggregator_registry -surface_battery -surface_charger -surface_dtx -surface_gpe -surface_hid -surface_hid_core -surface_hotplug -surface_kbd -surface_platform_profile -surfacepro3_button -svc-i3c-master -svgalib -switchtec -sx8654 -sx9310 -sx9500 -sym53c500_cs -sym53c8xx -symbolserial -synaptics_i2c -synaptics_usb -synclink_cs -synclink_gt -syscopyarea -sysfillrect -sysimgblt -system76_acpi -sysv -t5403 -tag_ar9331 -tag_brcm -tag_dsa -tag_gswip -tag_hellcreek -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 -tc-dwc-g210 -tc-dwc-g210-pci -tc-dwc-g210-pltfrm -tc358743 -tc654 -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcan4x5x -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -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 -tcpci -tcpci_maxim -tcpci_mt6360 -tcpci_rt1711h -tcpm -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18250 -tda18271 -tda18271c2dd -tda1997x -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda9950 -tda998x -tdfxfb -tdo24m -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tee -tef6862 -tehuti -teranetics -test_blackhole_dev -test_bpf -test_power -tg3 -thermal-generic-adc -think-lmi -thinkpad_acpi -thmc50 -ths7303 -ths8200 -thunder_bgx -thunder_xcv -thunderbolt -thunderbolt-net -ti-adc081c -ti-adc0832 -ti-adc084s021 -ti-adc108s102 -ti-adc12138 -ti-adc128s052 -ti-adc161s626 -ti-ads1015 -ti-ads131e08 -ti-ads7950 -ti-dac082s085 -ti-dac5571 -ti-dac7311 -ti-dac7612 -ti-lmu -ti-tlc4541 -ti-tsc2046 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timeriomem-rng -tipc -tlan -tlclk -tls -tlv320aic23b -tm2-touchkey -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmp006 -tmp007 -tmp102 -tmp103 -tmp108 -tmp117 -tmp401 -tmp421 -tmp513 -topstar-laptop -toshiba_acpi -toshiba_bluetooth -toshiba_haps -toshsd -touchit213 -touchright -touchwin -tpci200 -tpl0102 -tpm_atmel -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_infineon -tpm_key_parser -tpm_nsc -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tpm_tis_i2c_cr50 -tpm_tis_spi -tpm_vtpm_proxy -tps23861 -tps40422 -tps51632-regulator -tps53679 -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65086 -tps65086-regulator -tps65090-charger -tps65090-regulator -tps65132-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps6598x -tps80031-regulator -tqmx86 -tqmx86_wdt -trace-printk -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2591 -tsl2772 -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -ttynull -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp514x -tvp5150 -tvp7002 -tw2804 -tw5864 -tw68 -tw686x -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6030-regulator -twl6040-vibra -twofish-avx-x86_64 -twofish-x86_64 -twofish-x86_64-3way -twofish_common -twofish_generic -typec -typec_displayport -typec_nvidia -typec_ucsi -typhoon -u132-hcd -uPD60620 -uPD98402 -u_audio -u_ether -u_serial -uacce -uartlite -uas -ubi -ubifs -ubuntu-host -ucan -ucb1400_core -ucb1400_ts -ucd9000 -ucd9200 -ucsi_acpi -ucsi_ccg -uda1342 -udc-core -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd-core -ufshcd-dwc -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dfl -uio_dmem_genirq -uio_hv_generic -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uleds -uli526x -ulpi -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -unix_diag -upd64031a -upd64083 -upd78f0730 -us5182d -usb-conn-gpio -usb-serial-simple -usb-storage -usb251xb -usb3503 -usb4604 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_tcm -usb_f_uac1 -usb_f_uac1_legacy -usb_f_uac2 -usb_f_uvc -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbip-vudc -usbkbd -usblcd -usblp -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usdhi6rol0 -userio -userspace-consumer -ushc -usnic_verbs -uss720 -uv_mmtimer -uv_sysfs -uvcvideo -uvesafb -v4l2-async -v4l2-dv-timings -v4l2-flash-led-class -v4l2-fwnode -v4l2-mem2mem -v4l2-tpg -v4l2loopback -vboxguest -vboxsf -vboxvideo -vcan -vcnl3020 -vcnl4000 -vcnl4035 -vdpa -vdpa_sim -vdpa_sim_blk -vdpa_sim_net -vduse -veml6030 -veml6070 -ves1820 -ves1x93 -veth -vga16fb -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_iotlb -vhost_net -vhost_scsi -vhost_vdpa -vhost_vsock -via-camera -via-cputemp -via-rhine -via-rng -via-sdmmc -via-velocity -via686a -via_wdt -viafb -vicodec -video -video-i2c -videobuf-core -videobuf-dma-sg -videobuf-vmalloc -videobuf2-common -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videocodec -videodev -vim2m -vimc -viperboard -viperboard_adc -virt_wifi -virtio-gpu -virtio-rng -virtio_blk -virtio_bt -virtio_crypto -virtio_dma_buf -virtio_input -virtio_mem -virtio_net -virtio_pmem -virtio_rpmsg_bus -virtio_scsi -virtio_snd -virtio_vdpa -virtiofs -virtual -virtual_ncidev -visor -visorbus -visorhba -visorinput -visornic -vitesse -vitesse-vsc73xx-core -vitesse-vsc73xx-platform -vitesse-vsc73xx-spi -vivid -vkms -vl53l0x-i2c -vl6180 -vmac -vmd -vme_ca91cx42 -vme_fake -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmlfb -vmw_balloon -vmw_pvrdma -vmw_pvscsi -vmw_vmci -vmw_vsock_virtio_transport -vmw_vsock_virtio_transport_common -vmw_vsock_vmci_transport -vmwgfx -vmxnet3 -vp27smpx -vp_vdpa -vport-geneve -vport-gre -vport-vxlan -vpx3220 -vrf -vringh -vs6624 -vsock -vsock_diag -vsock_loopback -vsockmon -vsxxxaa -vt1211 -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxcan -vxge -vxlan -vz89x -w1-gpio -w1_ds2405 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2430 -w1_ds2431 -w1_ds2433 -w1_ds2438 -w1_ds250x -w1_ds2780 -w1_ds2781 -w1_ds2805 -w1_ds28e04 -w1_ds28e17 -w1_smem -w1_therm -w5100 -w5100-spi -w5300 -w6692 -w83627ehf -w83627hf -w83627hf_wdt -w83773g -w83781d -w83791d -w83792d -w83793 -w83795 -w83877f_wdt -w83977f_wdt -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -wafer5823wdt -walkera0701 -wanxl -warrior -wbsd -wcd934x -wcn36xx -wd719x -wdat_wdt -wdt87xx_i2c -wdt_aaeon -wdt_pci -wfx -whiteheat -wil6210 -wilc1000 -wilc1000-sdio -wilc1000-spi -wilco-charger -wilco_ec -wilco_ec_debugfs -wilco_ec_events -wilco_ec_telem -winbond-840 -winbond-cir -wire -wireguard -wireless-hotkey -wishbone-serial -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wl3501_cs -wlcore -wlcore_sdio -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994 -wm8994-regulator -wm97xx-ts -wmi -wmi-bmof -wp512 -wwan -wwan_hwsim -x25 -x38_edac -x86_pkg_temp_thermal -x_tables -xbox_remote -xc4000 -xc5000 -xcbc -xdpe12284 -xen-blkback -xen-evtchn -xen-fbfront -xen-front-pgdir-shbuf -xen-gntalloc -xen-gntdev -xen-kbdfront -xen-netback -xen-pciback -xen-pcifront -xen-privcmd -xen-scsiback -xen-scsifront -xen-tpmfront -xen_wdt -xenfs -xfrm4_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_compat -xfrm_interface -xfrm_ipcomp -xfrm_user -xfs -xgene-hwmon -xhci-pci -xhci-pci-renesas -xhci-plat-hcd -xiaomi-wmi -xilinx-pr-decoupler -xilinx-spi -xilinx-xadc -xilinx_emac -xilinx_emaclite -xilinx_gmii2rgmii -xilinx_sdfec -xillybus_class -xillybus_core -xillybus_pcie -xillyusb -xiphera-trng -xirc2ps_cs -xircom_cb -xlnx_vcu -xor -xp -xpad -xpc -xpnet -xr_serial -xrs700x -xrs700x_i2c -xrs700x_mdio -xsens_mt -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 -xtkbd -xusbatm -xxhash_generic -xz_dec_test -yam -yamaha-yas530 -yealink -yellowfin -yenta_socket -yurex -z3fold -zatm -zaurus -zavl -zcommon -zd1201 -zd1211rw -zd1301 -zd1301_demod -zet6223 -zforce_ts -zfs -zhenhua -ziirave_wdt -zinitix -zl10036 -zl10039 -zl10353 -zl6100 -zlua -znvpair -zonefs -zopt2201 -zpa2326 -zpa2326_i2c -zpa2326_spi -zr36016 -zr36050 -zr36060 -zr36067 -zr364xx -zram -zstd -zstd_compress -zunicode -zzstd reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/amd64/generic.modules.builtin +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/amd64/generic.modules.builtin @@ -1,309 +0,0 @@ -8250 -8250_base -8250_mid -8250_pci -88pm860x -ac -acpi-cpufreq -acpi_dbg -acpi_mdio -acpiphp -aead -aes_generic -af_packet -agpgart -akcipher -amd64-agp -amd_pstate -asiliantfb -asn1_decoder -asn1_encoder -asymmetric_keys -ata_generic -ata_piix -atkbd -backlight -battery -bcm84881 -binfmt_elf -binfmt_script -bitrev -bsg -btree -button -cbc -cdrom -cfbcopyarea -cfbfillrect -cfbimgblt -charger-manager -cn -compat_binfmt_elf -configfs -cpufreq_conservative -cpufreq_ondemand -cpufreq_performance -cpufreq_powersave -cpufreq_userspace -crc-ccitt -crc-t10dif -crc16 -crc32 -crc32c-intel -crc32c_generic -crct10dif_common -crct10dif_generic -crypto -crypto_acompress -crypto_algapi -crypto_hash -crypto_null -cryptomgr -ctr -cts -da903x -da9052-core -da9052-i2c -da9052-spi -da9055 -da9063 -dax -deflate -dh_generic -digsig -dm-mod -dns_resolver -drbg -drm_mipi_dsi -drm_panel_orientation_quirks -drop_monitor -dwc2 -ecb -ecryptfs -edac_core -edd -efivarfs -efivars -ehci-hcd -ehci-pci -ehci-platform -elants_i2c -encrypted-keys -evdev -exportfs -ext4 -extcon-core -ezx-pcap -fan -fat -fb -fbdev -fddi -firmware_class -fixed_phy -font -freq_table -fuse -fwnode_mdio -gcm -geniv -gf128mul -ghash-generic -glob -governor_passive -governor_performance -governor_powersave -governor_simpleondemand -governor_userspace -gpio-crystalcove -hed -hmac -hsu_dma -hwmon -hwspinlock_core -i2c-core -i2c-designware-core -i2c-designware-platform -i2c-dev -i8042 -icc-core -imsttfb -input-core -intel-agp -intel-gtt -intel-soc-pmic -intel-uncore -intel_pmc_core -intel_pmc_core_pltdrv -intel_pstate -ioasid -iosf_mbi -iova -ipv6 -irqbypass -jbd2 -jitterentropy_rng -kgdboc -kpp -led-class -libaes -libata -libblake2s -libblake2s-x86_64 -libnvdimm -libphy -libps2 -libsha256 -linear_ranges -loop -lp8788 -lz4_decompress -lzo -lzo-rle -lzo_compress -lzo_decompress -max14577 -max310x -max77693 -mbcache -md-mod -md5 -mdio_devres -mfd-core -mmc_core -mousedev -mpi -mq-deadline -mt6323-poweroff -n_null -nd_e820 -nfs_ssc -nls_base -nls_cp437 -nvmem_core -ohci-hcd -ohci-pci -ohci-platform -oid_registry -packing -palmas -pata_sis -pcc-cpufreq -pci-ep-cfs -pci-epc-core -pci-epc-mem -pci-epf-core -pinctrl-amd -pinctrl-cherryview -pinctrl-intel -pkcs7_message -pldmfw -power_supply -powercap_sys -powernow-k8 -ppp_generic -pps_core -pretimeout_noop -processor -pstore -ptp -public_key -pwm-lpss -pwm-lpss-pci -pwm-lpss-platform -rapidio -rational -regmap-i2c -regmap-mmio -regmap-spi -remoteproc -restart-poweroff -rfkill -rng -rng-core -roles -rsa_generic -rtc-cmos -sccnxp -scsi_common -scsi_mod -sd_mod -selftests -seqiv -serdev -serial_core -serial_mctrl_gpio -serio -sg -sha1_generic -sha256_generic -sha512_generic -shpchp -skcipher -slhc -speedstep-centrino -squashfs -sr_mod -system_heap -t10-pi -tcp_cubic -thermal -tpm -tpm_crb -tpm_tis -tpm_tis_core -tps65086-restart -tps6586x -tps65912-core -tps65912-i2c -tps65912-spi -trusted -ttyprintk -tun -twl4030-audio -twl6040 -ucs2_string -udmabuf -uhci-hcd -uinput -unicode -unix -usb-common -usbcore -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 -watch_queue -watchdog -x509_key_parser -xen-acpi-processor -xen-blkfront -xen-netfront -xenbus -xenbus_probe_frontend -xhci-hcd -xts -xxhash -xz_dec -zbud -zlib_deflate -zlib_inflate -zpool -zsmalloc -zstd_decompress -zswap reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/amd64/generic.retpoline +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/amd64/generic.retpoline @@ -1 +0,0 @@ -# retpoline v1.0 reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/arm64/generic +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/arm64/generic @@ -1,26514 +0,0 @@ -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 -CXL EXPORT_SYMBOL_GPL 0x343aa11e devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x37b0108f cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x45ce010d is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4985223a devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5181e721 devm_cxl_add_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x54e00c2b to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x880cf2be cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x944f1734 is_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9c267106 __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa9aff494 cxl_probe_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb944a03e to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc693bac0 cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xcd47c01d devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd64c9dba cxl_add_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf7e02c6d devm_cxl_add_port drivers/cxl/core/cxl_core -EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x177c07c7 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 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/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/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 -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 0x3839a8df ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5d9f92cd ipmi_add_smi -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 0x894b9133 ipmi_smi_watcher_register -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 0xf4ee95aa ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x49a9c66d st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x54dec8a9 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x970b66ad st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xb18818e9 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x8b8f8edc xillybus_cleanup_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x8fb95834 xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x9530353d xillybus_find_inode -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x4dc4e8ce xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x8d094ffe xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xebfee21b xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0x25c98843 clk_alpha_pll_zonda_ops -EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xa03f8920 clk_alpha_pll_postdiv_lucid_5lpe_ops -EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xd89a02cf clk_alpha_pll_fixed_lucid_5lpe_ops -EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xed46e5cc clk_alpha_pll_lucid_5lpe_ops -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x48087458 atmel_i2c_enqueue -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x6bb93c74 atmel_i2c_send_receive -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x7c5ddf52 atmel_i2c_probe -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 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 0x5d3cfb0f caam_drv_ctx_rel -EXPORT_SYMBOL drivers/crypto/caam/caam 0x80fd0366 caam_qi_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam 0x8e611d10 caam_drv_ctx_init -EXPORT_SYMBOL drivers/crypto/caam/caam 0x8f746747 caam_drv_ctx_update -EXPORT_SYMBOL drivers/crypto/caam/caam 0xc0eaa792 qi_cache_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x196d485f caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x35dfe32f caam_jr_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x4b32f7cf caam_jr_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xa680786b gen_split_key -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xdb109e1f 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 -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 0xdd1f8227 dpaa2_caam_enqueue -EXPORT_SYMBOL drivers/crypto/caam/error 0x3756c9cf caam_strstatus -EXPORT_SYMBOL drivers/crypto/caam/error 0x53d0fc97 caam_ptr_sz -EXPORT_SYMBOL drivers/crypto/caam/error 0xa51f16c7 caam_little_end -EXPORT_SYMBOL drivers/crypto/caam/error 0xbd67c092 caam_imx -EXPORT_SYMBOL drivers/crypto/caam/error 0xd25da602 caam_dump_sg -EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0xf609bcf0 xilinx_vdma_channel_set_config -EXPORT_SYMBOL drivers/firewire/firewire-core 0x05448c87 fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x05999212 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2691c876 fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3066359a fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0x306adbaa fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x32acf2ee fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x40411964 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4677f938 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x543a056f fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0x54712daf fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5adaefbd fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5b17f3e8 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x74a460a0 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x777e2c48 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x82d4cff7 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x83db3f9e fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8c4382cc fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8fec1ceb fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x935f9b87 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x95ff8a60 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa596fcf1 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa752e01d fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbcdc77e7 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe2dae578 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xea399516 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf2a9f0c8 fw_bus_type -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 0x0625d5ef imx_dsp_request_channel -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x6ad9544b imx_dsp_free_channel -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xfa894f2f imx_dsp_ring_doorbell -EXPORT_SYMBOL drivers/fpga/dfl 0xd78d299e __dfl_driver_register -EXPORT_SYMBOL drivers/fpga/dfl 0xe5377fdd dfl_driver_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00738a74 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x007b0f8b drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00f10ad9 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01009de7 __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x013eead0 drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x020a0796 drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02256fb3 drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02bea057 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02f26efc drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03ec6b30 drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0405cbf9 drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04a567a5 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x073d4496 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x074b94f4 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09dfa495 drm_atomic_get_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b6121d0 drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c307e79 drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c73f0f0 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d40dcc7 drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d4d9736 drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e85811d drm_crtc_vblank_helper_get_vblank_timestamp_internal -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 0x0ff44fc2 drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10aeb29d drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10f5e7e8 drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11054894 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1110a5f5 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11755066 drm_atomic_nonblocking_commit -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 0x1342fa6a drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13c5e524 drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x147f026e drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1539165d drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1676067c drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x175ea1e7 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18915fa4 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x189b5b72 drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x191010bb drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a1ffadd drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ae74323 drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b321fe2 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b6c6594 drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bf244b4 __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c03dccc drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c25ee8b drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e4dcad1 drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e8328ac drm_atomic_set_fence_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20d00ea2 drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20d8161a drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21afa5b0 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d541eb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22424506 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2378dd04 drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23ecfb8c drm_connector_attach_dp_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f654d8 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 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 0x252851c4 of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x252cf6f0 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25908f6b drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x278f3477 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27a47404 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27f8f44b drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28176009 drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2886ab58 drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29cff9b8 drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f84bac drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a4e070a drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a59074e drm_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a7452b5 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2aa1b230 drm_atomic_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c1abd31 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2df66156 __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f1203d5 drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30769c20 drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31799a2d drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31e34185 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x329b034b drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33210a1f drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x333e21f1 drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35f2489a drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x378a1cf4 drm_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38bdb2ea drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39091768 drm_modeset_lock_all_ctx -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 0x3b1ab882 drm_mode_create_dvi_i_properties -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 0x3c576433 drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c808aaa drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cf0dadb drm_add_override_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d2b34a1 drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3da3e65c drm_panel_of_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e50b109 drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e8e4f7d drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb38759 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f8cf151 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x403a2886 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41ddb34e drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44183b49 drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a2cadb drm_prime_sg_to_dma_addr_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45111194 drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x468705ec drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x475509d3 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a1aef4e drm_add_edid_modes -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 0x4aaf6a3b drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ab7cb2e drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b94543b drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bb904b6 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c2e5244 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cdab45a drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d7e0c83 drm_gem_fence_array_add_implicit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e9298f7 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4edb59fe drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fabe53b drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fbde12a drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50238a7a drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50cdb8d1 drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51ce0549 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52f7b7ba drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5542443b drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5738f542 drm_atomic_set_crtc_for_connector -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 0x57cff101 drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57eda732 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5809d0e9 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5842dd98 drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58fa7b96 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x595756ba __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5971ba07 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a07fe95 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a15f178 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5aa88381 drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ada2a6a drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5afce06a drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b37045f drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b4b0787 __drmm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5be55933 drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c877da8 drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd8b3cb drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d5d4c97 drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d84e547 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5deb3e99 drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e16beba drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f298bb6 drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60ad1d7b drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x616873c3 drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm 0x619b5390 drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61e713dc drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6378a22e drm_gem_cma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x637f9914 drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64d66a9e drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64fb155f drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x656c9dbb drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65b7c9f2 drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x662198d7 drm_vblank_work_schedule -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6697ccb0 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67072e53 drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68395649 drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6841b832 drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6849c7c9 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x687fc554 drm_hdmi_avi_infoframe_colorspace -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69dcc26a drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a38c2b9 drm_connector_set_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ab1253e drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b56caad drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b9b61e1 drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c5be5b6 drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d5ecc7c drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dbd478d drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dcb7298 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e1d0308 drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f8e88c0 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fde316d drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7340cde0 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7654c9a3 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76d0dcf3 drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x778d8ffa drm_gem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77f508aa drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7820c4f7 drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x787e6b14 drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79379175 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7af426f2 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b32a17a drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c698cda drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d08c014 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d2c2f99 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7da1d9fc drmm_kfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7df3ad88 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e01beb5 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7eed4444 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f568c48 drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f714d00 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fb6d0f5 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ff1389a drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80d7c65e drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8132d013 drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81b0b2f6 drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82434e16 drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82e08e46 drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83d2d1d5 drm_modeset_unlock_all -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 0x8687f890 drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8819b5cd drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88bb996b drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88bc713e drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8930f8e3 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89a63a69 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b256112 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d8ecbd1 drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d96e3f4 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e327c17 drm_crtc_commit_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e8cba3e drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e9863a5 drm_of_crtc_port_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eaca0d0 drm_gem_cma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f6b626e drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90f897e4 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90fc93f1 drm_plane_get_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x919addb5 drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x925939e1 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9295ee41 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92ee8a9d drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93145411 drm_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93669390 drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9440dc52 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94647adf drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94c781f9 drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x956e4af7 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x961c2f1a drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96f35501 drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97b83f48 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98017804 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98a1dc12 drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98f4b28e drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99942c5c drm_connector_attach_hdr_output_metadata_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99ca3c49 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled -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 0x9ba40eed drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bff5675 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c33a07f drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c530b86 drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d42e331 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e1e1c7c drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e4f3789 drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e6bb4fd drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ebba417 drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f91bbcb drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1b1ce3f drm_atomic_bridge_chain_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1b8611c drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa25f70b4 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28bf937 drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa306da54 __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3c594eb drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4e730ba drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa66e65dd drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab062a18 drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4bae3f drmm_mode_config_init -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 0xae48dcca drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaeec57eb drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf7b307f drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb00f8da2 drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb078b869 drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0baaea8 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ef865 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb15e1b33 drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1ed8639 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb290659c drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb29f3de1 drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2f19310 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb38dc557 drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3b10d00 drm_gtf_mode -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 0xb4fa376c drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb59319b6 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb658d55d drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb69d9076 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6f060d9 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb852ab86 drm_dev_has_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8837e1c drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9b2bd1f drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb83cfec drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc888960 __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc96a9c3 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd556ad1 drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd581251 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd9adec7 drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe570b63 drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf7639af drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0620d9d drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1a45807 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1b2a4a1 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2a40e9d drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc37ecc1b drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc395f88d drm_client_modeset_commit_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4a83aed drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4ca4a6a drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4e682f1 devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6323239 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6f5206a drm_mode_destroy -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 0xc8211c16 drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8a0a7a6 drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9099cdb drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca64f42d drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca72d2d2 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca78838c drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcadc05e0 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb20c0a5 __drmm_add_action_or_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb493612 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbc18311 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbc464b9 drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc441227 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfef8244 drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05a1324 drm_client_modeset_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0b8cfd6 drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0bfe386 drm_hdmi_avi_infoframe_bars -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd12c0737 drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd201ee6b drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd21a3eeb drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd23d94e5 drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd269c85e drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2c773d4 drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2ea481f drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2fe5218 drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd302215c drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd32cda93 drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd33a1273 drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd37f8865 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3981e43 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3b0045c drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3ed3cde drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd455feec drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd463b977 drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd49a1e47 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4a94d21 drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5805e1c drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd67fc9bd drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6ba431a drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6d1a91c drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd729ea9a drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8052c4d drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd875d3c3 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd903cb15 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd96cfbd8 drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdadfe53a drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb89c1df drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb9bebed drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcb30cb1 drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd12ffd8 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd671fc8 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdda31e40 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde1e0b88 drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdeac9d68 drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdef6f27e drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf236d24 drm_gem_vmap -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 0xe06b9758 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe074e612 drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0a28b80 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe182ad38 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe24f7462 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2b2cce8 drm_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2fcb5a2 drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3c2707a drm_connector_attach_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3e20d60 drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe41453a0 drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe42af31c drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4bba829 drm_crtc_vblank_helper_get_vblank_timestamp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4dc0a07 drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4f5914f drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe65893ab drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe67d294c drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe82e7d86 drm_atomic_check_only -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 0xe8ad8594 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9d54835 drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeaf01c38 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb03d919 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb1180b8 drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec179f29 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0xecdf2a77 of_drm_get_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed4e67f2 drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed61a5c2 drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef0c0044 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0858aed drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0aed7fd drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf12394b4 drm_vblank_work_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 0xf2b8d822 drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2dc6d62 drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3d33c5d drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf43b17b5 drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf58cde71 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf60623ac drm_bridge_chain_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf76a92a8 drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9764c68 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf97a571e drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf98bf86b drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaf1b172 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb350faa drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfba22a7b drm_prime_sg_to_page_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbe549dc drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe546142 drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff6843ce drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x008ecfb1 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c13f31 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05202db7 drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x059f654e devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x079a39f3 drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08c341f0 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08ff7976 drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a651136 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d420ee8 drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10986452 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1427e026 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1597a116 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18e5fba8 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19547b88 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19f7cbf7 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1af71880 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b8d4904 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c0edf5b drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c7f05d6 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d7f8ce1 drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1eaa7428 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ef0a405 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fb24f00 drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fec5bf0 drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2010c2f0 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2035fb83 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x205e464b drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20c804a3 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2144b076 drm_gem_simple_kms_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21854ea2 drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21a7af1d __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x227b1b0d __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22c25add drm_dp_read_downstream_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22ed8d61 drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x235d964d __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23961837 drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25dc7129 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26f9769c drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27cc0af9 drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29e2a1d9 drm_dp_send_query_stream_enc_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29f00a4b drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a542a44 drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b3cafbe drm_edp_backlight_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c81f08a devm_drm_of_get_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ca3b998 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e9ef123 drm_dp_pcon_pps_default -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f1573b1 drm_gem_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f339218 drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x303dcacb drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30de13d0 drm_dp_pcon_pps_override_param -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31324eb4 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3197fba3 __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32ec9d86 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33089a20 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3424d02c drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35a93953 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37b24bc0 __drmm_simple_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37e443df drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39cf5134 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b338d0b drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b65bc31 drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c55684c drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c8fc0e9 drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ff74056 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x401010f5 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x420224b6 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x422e167a drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42e8845b __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45df34aa drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47eeff43 drm_dp_atomic_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48222a2e drm_dp_pcon_hdmi_frl_link_error_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49ba905e drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a1c1fe1 drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a5b923f drm_dp_downstream_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d3993c6 __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d7222cf drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e0f457b drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x500d5c91 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50553670 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51249b14 drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x522c5782 drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52f313b4 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53689f01 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537b8893 drm_fb_blit_rect_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x539e4749 drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x545cc8f2 drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x546b670f drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x548d0e63 drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x551af2e4 drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55aa3f28 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56a663e9 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x577a4f1c drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57d24f8d drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582cd6d7 drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x587cca6a drm_atomic_helper_update_plane -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 0x5a2ed31b __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bbd31fd drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cb0de53 drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cdb4c5a drm_dp_read_dpcd_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d2ec2d1 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e37876f drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f280a98 drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fd0cbf7 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61d0b62f drm_gem_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x622636fb __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x623ede5a __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6299ed18 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63a477fb drm_dp_downstream_min_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x640caf65 drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x642a717b drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6431eab4 drm_dp_set_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6562878e drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65f8b1ef drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66df5f68 drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68033870 drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68d8dce7 drm_dp_downstream_is_tmds -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69494a4e drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x695ca146 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x699f137c drm_dp_lttpr_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a596414 drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b262ed4 drm_atomic_helper_damage_merged -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 0x6c28d0d7 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ca6aa84 drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ca992f7 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6dabbc8f drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e38026d drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e6c8d7b drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x715cc3e9 drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71623d21 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71c49699 drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x720dc6ae drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x732be891 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74235585 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7485dee7 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74d4a114 drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76256fa8 drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76519543 drm_dp_mst_detect_port -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 0x776e42ed drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78084480 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78763ef6 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78c43401 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78ec550f drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a5b3971 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae669d0 drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ba9481f drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d2a8a88 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fe42b24 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ff7f4e1 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8134836b drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81717c27 drm_dp_read_sink_count_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x819c8cb4 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x828591a9 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x829b6048 drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8325b464 drm_edp_backlight_set_level -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x832a621b drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e92931 drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x851ceab6 drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88723980 __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x893f3dbe drm_fb_helper_set_suspend -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 0x89e4d5e5 drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bd2b046 drm_dp_pcon_pps_override_buf -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 0x8e42b32e drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f9fd3b9 drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fa3b6ed drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9045d4b7 drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x911d9c75 drm_dp_set_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91a6c2d8 drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91e35ce7 drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x929b97ad drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9431d699 drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94d07eac drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9547087f drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95e10d37 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95fc64bd drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98db9d75 drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a935d2a drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c107ff0 drm_atomic_helper_bridge_propagate_bus_fmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d6e946d drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dc3c2a7 drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e678354 drm_dp_pcon_convert_rgb_to_ycbcr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9eb9369f drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1c8605c drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1d53cc2 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa20a6721 drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2b192b0 drm_dp_read_sink_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3dec0fb drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3fe17ea drm_dp_remote_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa54029d6 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa69cf48a drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa76362f9 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa843606e drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9ce434e drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9f2ed91 drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa76c0d9 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab1d1171 drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab6d3dc8 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabfc44d4 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac305216 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacc34292 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf3ecd43 drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf5448c7 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0081667 drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb092386a drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb286328a drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb39160cf drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8cde7ca drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb92a58ae drm_gem_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbba81e54 drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc4d30cd drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe20d6d3 drm_dp_mst_atomic_enable_dsc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbeaa1b4a drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1eb9aef drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc29e2f11 drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc36b4e21 drm_dp_pcon_frl_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5833e01 drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc62ba199 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6394772 drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6c664c3 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79ecffb drm_dp_downstream_is_type -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8026ee8 drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc85e28e8 drm_fb_xrgb8888_to_rgb565_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc589515 drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce90144c drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd326301d __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd338b6ba drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3e88610 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6191c88 drm_gem_simple_kms_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd73f2c1a drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd78a1067 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd79a62ff drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd82e7efd drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd848161f devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8bd5169 drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9967bb9 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9fd75e0 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc27c419 drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdca3cd10 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd696843 drm_panel_dp_aux_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xded10def drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe07ce929 drm_dp_vsc_sdp_log -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0a11c91 drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1087297 drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe17d6473 drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe401f8d4 drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe47fc5ab drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4ea58c3 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe909e6e5 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9c7d4c3 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeaa10910 drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedaa753c drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xede731a5 drm_gem_fb_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee73231e drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef21c8d3 drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef40e6fe drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef6577c3 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef93c6a2 drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1bb04e1 drm_dp_get_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2135872 drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf32d6fa7 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf421ed69 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5c3baa1 drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf68741fb drm_dp_subconnector_type -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf689ad25 drm_dp_downstream_420_passthrough -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9aca668 drm_edp_backlight_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa0cc3de drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfde7fddc drm_dp_pcon_frl_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe777e1e drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe96cf68 __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfed5d592 drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x069d4335 mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0bbe8c6d mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2d4ffdfb mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x380de33c mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x395bb672 mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x39d9c65c mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x431dbc9a mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x620cd804 mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8339bfb8 mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9a4dff32 mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa7bde5dc mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xafc9a6c2 mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc2452758 mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc9ae0fed mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcae67107 mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xef962387 mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xfb082e77 mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x746c3da1 drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xa720cb3e drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xc1cddcb2 drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xe51167cf drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xecbb8168 drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0604343f drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x21f1a0d3 drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x27a8c308 drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2ce7a422 drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x32142620 drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x33868f2e drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x406e3d74 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x410da476 drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x48406d06 drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x63dd4dbd drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7236e1da drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9464e567 drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb3c6ebbf drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcb41d792 drm_gem_vram_fill_create_dumb -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 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 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 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 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/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 -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x93f38046 sun4i_frontend_enable -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x9492a1c7 sun4i_frontend_exit -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 0xb1741fe5 sun4i_frontend_update_buffer -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xe13164ef sun4i_frontend_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x0c5c3e16 sun4i_tcon_enable_vblank -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x2bd7cf1f sun4i_lvds_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x304aa67f sun4i_rgb_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x324aa529 sun4i_dclk_free -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6c10c7a7 sun4i_tcon_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x92731709 sun4i_tcon_mode_set -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xb5ccdaf7 sun4i_dclk_create -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x350e5dcd sun8i_tcon_top_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x55f115df sun8i_tcon_top_de_config -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x7750b59b sun8i_tcon_top_set_hdmi_src -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0006b306 ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x01e6c3fd ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bbcb3a0 ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0f093709 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x11dcace0 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x13164258 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x13f3eb04 ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1de20c50 ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1e90c831 ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21cd1ef4 ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x220070d4 ttm_range_man_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22e22578 ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x26c29f8f ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x28f8de57 ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2a446142 ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2fc55ce7 ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x30034d41 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4b76402a ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e1b7fdf ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ad48bcf ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x601bac6a ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60996cb5 ttm_pool_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x65d05810 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x682e82fd ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x68630b2b ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x72926397 ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x753c3c84 ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x76c4d11c ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85952147 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x87e74451 ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d4bca34 ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9275daef ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x95165cd9 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa51e6f99 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa8346ced ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa9389888 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb7b13436 ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb7f19db8 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbf5147f8 ttm_tt_destroy_common -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbf65d076 ttm_global_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc0ddb8be ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce374e96 ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd2eb5c88 ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd638cffe ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda9defb6 ttm_range_man_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde1dd690 ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe04469db ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe5fe30f8 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe778cea0 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf03f94e3 ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf0e81b4c ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf18b41a7 ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf37f1511 ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x2c4974a7 ttm_mem_glob -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x446c961c ttm_base_object_noref_lookup -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x6052860c ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x6d5d9436 ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0xfe2743ec ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x001a3b04 host1x_job_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x02be8412 __host1x_client_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x15868b09 host1x_syncpt_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x19b685bb host1x_job_add_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1d552eac host1x_job_add_gather -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x29a3100d host1x_client_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2f51d8e1 host1x_syncpt_incr_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3a0c0039 host1x_driver_register_full -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3f741b5e host1x_channel_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3fc16d5a host1x_channel_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x45d42bb8 host1x_syncpt_read_min -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4d7ca450 host1x_syncpt_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 0x576e0399 host1x_syncpt_release_vblank_reservation -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5e0489b0 host1x_job_pin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x69b4400b host1x_syncpt_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6f895782 host1x_syncpt_read -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x95ea305d host1x_device_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x98bcd4ae host1x_channel_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9e2ba294 host1x_client_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa6d9ffc2 host1x_syncpt_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa8ff4cfd host1x_driver_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xaa04829b host1x_device_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xabf3008a host1x_syncpt_get_by_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc775f3ca host1x_syncpt_get_by_id_noref -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 0xf309ee60 host1x_client_suspend -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf5fa9697 host1x_syncpt_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfc2f07d8 host1x_job_submit -EXPORT_SYMBOL drivers/hid/hid 0x8c6b0a77 hid_bus_type -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x0cef8a1d vmbus_sendpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x6f05b7fc vmbus_recvpacket -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x2caa482c 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 0x0278601a i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x30088fde i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x495b478a i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x4f5f3465 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xe0bc1042 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xbb36e847 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x051cbf4c bma400_regmap_config -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x9054b642 bma400_remove -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xc6843e62 bma400_probe -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x47269735 kxsd9_common_remove -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x5f4cee5a kxsd9_dev_pm_ops -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x9dc6c3f9 kxsd9_common_probe -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0ba821a9 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1fdece5b mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3db5a181 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6b4440fa mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x744d10e4 mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7e5f83dd mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7ea8d36c mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x85a3b35e mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9666b41b mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9813a536 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa380c5aa mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa63c1c36 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb9641f61 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd8c8bbeb mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdce04325 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdd41fb71 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x12692381 st_accel_get_settings -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x9c6ba8ab st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xee089e2e st_accel_common_probe -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x12402a0a qcom_vadc_scale -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x47f699dd qcom_adc5_decimation_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x4e64cdb9 qcom_adc5_hw_settle_time_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x53546ecd qcom_adc5_avg_samples_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xc61e7a34 qcom_adc5_prescaling_from_dt -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x9f17ab35 iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xc424774f iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xcaa93c32 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xdfbcc201 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0xc6f75718 bme680_regmap_config -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x6ef3619f scd30_resume -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xb1d9973b scd30_probe -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xc9f8e52b scd30_suspend -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5092cb01 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5fbd2a7f ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x81f802b1 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8b7e5ead ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8db8e7d4 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x953bff3d ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xdc37ca9d ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe05d6833 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf3301fb6 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x1a3fd68b ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x28ef440e ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x65d7a033 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x8cf5022f ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x900b3a25 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x687337f8 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x72e4027a ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xc1ad10c5 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0c90cf3e st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0f267c09 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2745ce22 st_sensors_get_settings_index -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x41d9d9a6 st_sensors_dev_name_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6696eb8b st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7af4cd4f st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x80dc3ccb st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x83256589 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x97e7a6ee st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa4d770f3 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbf800abb st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc4691933 st_sensors_verify_id -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd7940dcf st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdd381b24 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe122a7b5 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xebfe41be st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf7aa2f41 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf88e8ca5 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xdd4b92cd st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x5ff59c6c st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x125aefbd mpu3050_dev_pm_ops -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x1ca615e8 mpu3050_common_remove -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x1d7beb8c mpu3050_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x00f629a6 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x1b1f53f7 st_gyro_get_settings -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x7dc1e3ff st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x146b1c9e hts221_pm_ops -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x27d14404 hts221_probe -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x1f9550a0 bmi160_regmap_config -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x2bbe5f6f fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x0149eb96 st_lsm6dsx_pm_ops -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x3fe5dade st_lsm6dsx_probe -EXPORT_SYMBOL drivers/iio/industrialio 0x17613106 __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0x254550ee __iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0x292e4913 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x5af0619a iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x5af7db54 iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x5f20ca20 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x6220a138 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x91cc36dd iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x950f9a3b iio_device_get_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x9740f5e6 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xa829b958 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xac4d6a93 iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0xb8d5d330 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xc0c2e904 iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0xce49b70f iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0xd2a91ca2 iio_get_time_res -EXPORT_SYMBOL drivers/iio/industrialio 0xded22c56 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe0f94de0 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0xee410bd5 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0xf0b8554c iio_device_set_clock -EXPORT_SYMBOL drivers/iio/industrialio 0xf1a1bcdc iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0xf1f24c2a iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0xfc2bb48b iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x92304880 iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x05a1117a iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x33c97ea1 iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x9852804b iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xbdd92254 iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x32227c0f iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x465b9d89 iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc72ddd7e iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xf23155f4 iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x0d5986cb iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x9785f523 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x7d76acd8 st_uvis25_probe -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xbd207ecd st_uvis25_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x16eb6665 bmc150_magn_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xa4261e01 bmc150_magn_regmap_config -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xbf070a96 bmc150_magn_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xc38c0679 bmc150_magn_remove -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x17f0b5bc hmc5843_common_resume -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x869c1786 hmc5843_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x90a3526d hmc5843_common_suspend -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xcd3ce1c0 hmc5843_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x09a61a82 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x8aeb9856 st_magn_get_settings -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x9bbeecf3 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x20315d24 bmp180_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x5bce1b78 bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xcab78046 bmp280_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xfd5957dd bmp280_common_probe -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x77f52d33 ms5611_remove -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 0x148860dd ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1e7118cd ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2294c6dc ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3223e9f0 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x476a2952 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6334fd08 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7da94b5a ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x88c4620c ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x94798d4d ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9db8ef22 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9e0bc542 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa0ec91db ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa33140aa ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xeceab7bf ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xee26d2a9 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0011e2df ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05bc7a43 rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05c4b1ab ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x073b369d ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08ff223e ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0df1ee24 ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f29d37a ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f54c114 rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f8ea764 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x104dbe41 rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x110fc67b ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12dab0b7 rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18dfeaf6 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a303e50 rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a998ded ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b95c40b ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e10b3fe rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20a15788 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x210ffc65 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22461e2d ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x227ad78f ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24cdf07b ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2652d92c rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27e09401 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29ad40f8 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ae0b5f4 __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ae3320e ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b6e845d ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c1237c7 ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2dfb33ec ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x300b3a8e ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30f5724c rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33e74dec rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34f33c4e ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3591a7a3 rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35dc1bc2 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x372c7fb5 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a22ac72 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a7576b6 rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c142161 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c86b5e3 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cb14f5a rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cc3b9af __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fa51530 ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41cd2380 rdma_rw_mr_factor -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 0x4738ae50 ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x487115a4 rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48d568e9 rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48f185a2 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a86d9a5 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4aaf32e7 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b1af19c ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b474e16 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b55c444 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d67ec27 rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e4b8c30 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ea8b96c ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f7ea171 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5049b240 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5102346c rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56563aa2 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5856d295 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 0x59aaa1d0 ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a14db1f ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ccf8e55 ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e62a85a ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f261f67 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x607bee95 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60986a4c ib_get_cached_subnet_prefix -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 0x65e0c949 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x665bc9ee rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6728ccbb ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67adf98e ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67c3d68f rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6960029e ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a5f0325 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b7aa562 rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d44edfe rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d7b7367 ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70be4994 rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7167ea4c ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7449c262 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x759c466f ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7646239b rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76832508 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77a5225c rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77fd249e rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78a930c5 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79ee13a9 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7aef74db rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d008fc0 ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d68fa6a ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e286900 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f931ec6 rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80d657a6 ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81f21f9b rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8293dc84 ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x848bb072 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x848f5a88 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8626781b rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88307dd3 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89b3defb rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a2d58ec rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ee8da63 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f59f12c ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f784bce rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x922cd598 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94b1af23 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95e62316 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9713616e rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98b1e996 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x997b0d9b rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a91bc84 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c431b0f ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d17f50c ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d43ba14 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ece4901 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0beacdd ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4939617 ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4dbc8fc rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa61f666f rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8614329 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9d4393e ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa36e9fc ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa87539a ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaaa5ef41 rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab325c37 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac425b47 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad002be3 ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad6ebd43 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb009c294 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb288c9c5 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3d9a9fc ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6497d5f rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7a16dec ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8ea371c ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba11944f rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbab94d1c rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbae4c544 rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc099543 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc5c1af5 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe34d910 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe92024e ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1589590 ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc17c9987 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67516aa rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc695133c ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8bc9b1c ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb96369d rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc31107e ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce76de2a rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf7ed59d ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd061ea93 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd069aff5 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2997048 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3ad8e9f ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd554a9d9 ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5f46149 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6212ef8 ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd72f3dcf ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde56f1fc ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdec20460 ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe159db54 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe206c313 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe289a2a8 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4a5ff1d ib_close_qp -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 0xe6e172c9 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8af2a8f ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb80c23d ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec364c77 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed59fcf8 rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedae7e6b _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xede3bb78 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xede849fd ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2dd21a2 rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf46f52fa ib_get_vf_config -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 0xf766cd39 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf810d1fb ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9447742 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa8ac4d0 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfae3cdde ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb09d0c2 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbf7b918 rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe138549 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff301e04 ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff61d4ff ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x02a28b05 ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0c3175bd ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1102dc3e ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x11d528d4 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1447b29f ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x15878fac ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2aeea664 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x375ac219 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3a6f568c flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3b34a246 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x433ed9f2 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4433e887 uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x44d890da uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x44f4c275 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x480de7f7 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4d7fbf1f ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x53c0a489 ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x616b383e ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7c819ced _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8666fa64 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x89972b50 flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa4c47f6c ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa6bef869 uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xadff4949 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaee08f4b uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb3e2b3b3 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb880aeaa _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbbbbeb95 ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbcf44fe1 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 0xc1c6048d ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcb78809d uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xda6798d6 _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdb1c5c2a ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf3b1dc5d uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf530c6ae ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfe3c18d7 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1b6435bf iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x460fa015 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6e669f3a iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7fe9479f iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x93de5d20 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9557af38 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd29013ee iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe86dc810 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0b51649a rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0c3cf196 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0ecbf50f rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x16a6df75 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1a2e230d rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1f72ebe0 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x22a99740 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x260dab54 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x431458a2 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4855d0e9 __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x48f71922 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4f8ca4cd rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x50ccc033 rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x56cde6bc rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x610f61dd rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x658f2d45 rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6a39d7b1 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x701e676c rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x73d133c1 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x822f2fc2 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8e083f8f rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x95ecf6e9 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa40163f7 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa6cda7b6 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xac1e8998 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcc6fe34e rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd36583cd rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe67e7218 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe9a2f7bc rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeedbeba6 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf4a56433 rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf5f924bd rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf633d242 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfbb531a5 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0fe707f7 rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x1cf9d0e1 rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x1d31860e rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x338954d2 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x48aa5d10 rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x594e14cb rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x74ef2a22 rtrs_clt_open -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 0x641e8fa6 rtrs_rdma_dev_pd_init -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x72bedb48 rtrs_rdma_dev_pd_deinit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x887302f3 rtrs_addr_to_sockaddr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xc0e10d00 rtrs_ib_dev_put -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xc8a72e20 rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x189968f6 rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x22665124 rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x3351a7cb rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x4bb363bc rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x4f3bd93a rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x7168f2c6 rtrs_srv_close -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 -EXPORT_SYMBOL drivers/input/gameport/gameport 0x8ce2aef9 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x9f1ca40d __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xa11dd7ad gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xb4b6d63f gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0xdc51666c gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xf02a71c4 gameport_stop_polling -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x21300ac5 iforce_init_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x769b964a iforce_send_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xed4c0a5c iforce_process_packet -EXPORT_SYMBOL drivers/input/matrix-keymap 0x468d3ca2 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x1bed4b32 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xe8c287b4 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0xfe31fba6 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x9f366d19 cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x752999d2 rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x32e32f2e sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0x776589a2 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x78462049 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0xd557626e sparse_keymap_entry_from_keycode -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/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 -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe4cce70d capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfbd62c2e attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x27c58fd5 isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x4644eea5 isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x5b835a58 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0xef4ee223 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 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/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 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 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50e01a4f queue_ch_frame -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 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 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 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc781e06e mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 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 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_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x2c7f0c37 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 0xd30c34f6 ti_lmu_common_get_ramp_params -EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0xd5a59369 cmdq_get_shift_pa -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x2e348312 omap_mbox_request_channel -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x2faade7a omap_mbox_enable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xd7c0d59f omap_mbox_disable_irq -EXPORT_SYMBOL drivers/md/dm-log 0x425a5d61 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0x7c7de4d1 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x97b05e77 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0xc8a8650a dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x2ec05d3c dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x390d6679 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x48e8bb27 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x55fe077f dm_exception_store_type_register -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/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 -EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x5866c352 cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xb2b9efb7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xc3fbd9f9 cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 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 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0x917e6df8 tveeprom_read -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x12945251 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1b700d37 put_vaddr_frames -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1d5f9555 frame_vector_destroy -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x858abee3 vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc2d9e090 get_vaddr_frames -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 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-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 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x03fafa85 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x06ca2935 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 -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 -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 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 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 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 -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 0x96798959 dvb_remove_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa6d84c9d dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbc5cc5df dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc6305120 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf0c43d59 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf92b214b dvb_generic_open -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/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 -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x37ee02d4 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x42e8f99e au8522_writereg -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/cx24113 0x3b51e996 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x6362f73e cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x15d8d424 dib0070_get_rf_output -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 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x078a79a4 dib0090_pwm_gain_reset -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 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 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x689c5fb5 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8bf3c764 dib0090_update_tuning_table_7090 -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 0xf00630f0 dib0090_dcc_freq -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/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/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 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x4928ce04 dib9000_firmware_post_pll_init -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 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 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xf395661d dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x20e0dc9e dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x2a77a105 dibx000_init_i2c_master -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/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/lgs8gl5 0x1c19e509 lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x8102a76c lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x4a44c01e m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x835262d0 s5h1420_get_tuner_i2c_adapter -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/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/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 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x7d37227d bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x2e5c47a0 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x812d8080 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xf27fd904 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1d9c881a write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x31d29a18 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x36c4cb17 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa9f65762 dst_comm_init -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/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/cx23885/altera-ci 0x1ab311dc altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x14d090af cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x359cdcb6 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x65fa1cce cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6a31f576 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8bd01ff3 cx25821_riscmem_alloc -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/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 0x8d88137a cx88_sram_channels -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/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 -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x28a6cc0b ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2e85b40c ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2f1f1548 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x371f5ce0 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5f1b3cc3 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x63d7de0e ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7694cb58 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8cae8b00 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x996a9d48 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9982b385 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9c37db7a ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa6831bb1 ivtv_clear_irq_mask -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 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 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 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/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 -EXPORT_SYMBOL drivers/media/radio/tea575x 0x529f52a6 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x64be5107 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x758aaa0f snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xa776b10c snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0xfb7fcb60 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl -EXPORT_SYMBOL drivers/media/rc/rc-core 0x6663c84e ir_raw_handler_register -EXPORT_SYMBOL drivers/media/rc/rc-core 0x7407b0fa ir_raw_handler_unregister -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/fc0013 0x2746e3b0 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x5af21d7b fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xd25ed179 xc2028_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/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-af9005-remote 0x341530cb rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 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 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/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 -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x593bfebc go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x67a26815 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6f8fb9f8 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9a2442b0 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9d66133f go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd21ff442 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfcc714e7 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfcd09dca go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x222f565d gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x40034d9e gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x626fde24 gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x66f8f907 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x791f5ba6 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa590d459 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc2b2ce2e gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xec302931 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x27aa542d tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x7c2e74ca tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xb45280a5 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xd62a9bbb ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xfded9a71 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x00211700 v4l2_async_notifier_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x7e4998e2 v4l2_async_subdev_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x8618adf9 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xae258ebb v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xb1ae4f86 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xd273bf53 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x0240b094 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x6911b401 v4l2_m2m_buf_done_and_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xb7539bbb v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xc0bd4526 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x08ef99c3 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0c6bcd1e video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x18654dbd v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1a52c732 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1c0a8fe5 v4l2_ctrl_new_fwnode_properties -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1e5d7af2 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x21dbe630 v4l2_query_ext_ctrl -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 0x2bc3d89c video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2cf66c63 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35107fff v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x38657112 v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x49461c89 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4c8cf455 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x53791335 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x55193a83 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x556960d8 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5d34d44f v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5d3a6c8e v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6256e878 v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x69036e3a v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6a45c519 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6b43ea6f video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6bb9372b __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x74725278 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x767eebc7 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x78451de5 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7af96679 v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8126160b v4l2_ctrl_new_std_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x845e04cc v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x87d4602e __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa6e5ec71 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa846b6d4 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa996629f v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa9bc567b v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaa63ed73 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaaa09e76 __v4l2_ctrl_s_ctrl_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad156dd1 v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xafd4ecb5 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb546c8f9 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xba9d2858 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc77b4b32 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd0460ec3 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd2fd7f1e video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd8f53072 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc2ccb8b __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc7e0128 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe0026593 v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe233f81b v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2d270ec video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeb84ee7c v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf16a6f5b v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfbbf1843 video_devdata -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x181111f0 rpcif_sw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x2bf6f891 rpcif_prepare -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x492a6fe9 rpcif_hw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x9e92a99d rpcif_manual_xfer -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xdeaa8736 rpcif_dirmap_read -EXPORT_SYMBOL drivers/memstick/core/memstick 0x359b2f4e memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x46c8eb99 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x57fa4246 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x650ae82f memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa65ea3f4 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa7613ee8 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb64fa77a memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0xbcb30d7c memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd9c9a224 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xdf366310 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xeb1848d4 memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0xeb5c49c8 memstick_resume_host -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0cb2cce3 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0dba6f57 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x116f3f5d mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x16aec5b8 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3a2826bb mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x50148e0f mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x53ce68a4 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x663854c9 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6abcd3e2 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8a535b6a mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8d699e48 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9b47ca6e mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9dc0068d mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9f1436e8 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaa11b540 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xadd1beed mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbd73b8a6 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbf01bcea mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc23c4bc5 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc6d2ba9b mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc8495a1c mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcf2e34b5 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd3705bc5 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd44198f9 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xded77d20 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdf3c70ec mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdf83d8ee mpt_put_msg_frame_hi_pri -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 0x05b58af2 mptscsih_remove -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 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/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 -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x28717d52 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x29941271 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3a1795ac mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x48697a44 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x82c11bbd mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc183bd04 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcb9588e2 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe03fe545 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf399a3cf mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfb450835 mc13xxx_irq_request -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 0x20c1772c wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x55d2a0ee wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0x6a01b761 wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xc1a36a4f wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0xc7590ed5 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xf563b54c wm8958_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x63806748 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xf9fcc76d ad_dpot_probe -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0xaaea311f c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0xca0da2f4 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x12b9deb3 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x348cf492 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x37ccbe72 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0x46dc6f91 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x59a5fa08 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x5efaf00c tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x636bfbbc tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x8b074e3d tifm_free_device -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/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 -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x17d4774a cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x47ee2024 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6de90eb0 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8e2da3a7 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9314af60 cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xaa019773 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc9058f8c cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x2d371ba9 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x595d3cac map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x71bbf931 do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xd5769c3a unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x5ff3ad78 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x1be557d4 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x5b836ef7 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x1f6b8171 mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0x70b23724 mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x06b3ebb0 nand_ecc_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x08577cb2 nand_ecc_sw_hamming_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x08795e99 nand_ecc_sw_bch_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x10fab13b nand_ecc_sw_hamming_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3997c46c nand_ecc_get_sw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x41cc6171 nand_ecc_sw_bch_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x51591299 nand_ecc_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x59f0edd0 nand_ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6f23dbd7 nand_ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7be7c5d1 nand_ecc_sw_hamming_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7fb602a6 nand_ecc_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x80d05b0f nand_ecc_finish_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x82131c8c nand_ecc_is_strong_enough -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x90b89de0 of_get_nand_ecc_user_config -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa69ce29c nand_ecc_get_on_die_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xac270b62 nand_ecc_sw_bch_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcbce8690 nand_ecc_prepare_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xeca7d89e nand_ecc_sw_bch_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x768a9fe4 onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xfe60bf22 flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x9b92a351 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xffde5678 denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x102603bc mtk_ecc_get_parity_bits -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5437e775 mtk_ecc_disable -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5de55d81 mtk_ecc_get_stats -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x6df58afb mtk_ecc_release -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x76e53683 mtk_ecc_wait_done -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x8dcc87d2 mtk_ecc_enable -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xc6fa9f10 of_mtk_ecc_get -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xda64ef4a mtk_ecc_adjust_strength -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xec8b9207 mtk_ecc_encode -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x00f1a350 nand_create_bbt -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x0dcfe042 rawnand_sw_bch_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3a537e2d nand_read_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x522dcb3d rawnand_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5fa16a2a nand_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x715df232 rawnand_sw_hamming_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x74aba8b7 nand_scan_with_ids -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x839d726f nand_write_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa06c55a8 nand_get_set_features_notsupp -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xaec8b1af rawnand_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xb0aeb41a rawnand_sw_hamming_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc962bf06 nand_monolithic_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xcbe7fbc6 rawnand_sw_hamming_correct -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 0x2bc440f9 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4c5a6609 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4e06b69e arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x50ea1685 free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6cdcb21a arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x71b3e608 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9b2850a2 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa9c25384 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xad00ce86 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd863a2d7 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe0ec928d arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -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 0x01611ce4 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0854fdeb b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x105c6e4f b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x26ea0a9e b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2d0d292b b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x32fc8492 b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x44455d6f b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x47f0dd48 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5674a469 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5cddfd4d b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x604e8613 b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6a74d5a4 b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6f8a4f5b b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x726d9113 b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7626e80d b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x80705a59 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8d4f291d b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8eaeb9c9 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x91b64d6d b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x926b8309 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x92880d3f b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x98932faf b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x99db974e b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa0d89a32 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa53e787f b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa896baf8 b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb8e92aa0 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbda17345 b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbe236369 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbfcfe810 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc09ae5bc b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc6e50de9 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc8f9f81f b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcc092567 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcc8808aa b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd2370dea b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe1721e30 b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe333b53e b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeb31913d b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf8f72bad b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfae43e71 b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x03b6196a b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x50976708 b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x5fd5e695 b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xca32140d b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xd18586f6 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xdddb3d89 b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x3ebd2ee1 lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x9f6be01d lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xf0c9aea6 lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x95d307c0 ksz8_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x5172b9fe ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x2d581fe0 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xa271a2d9 ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xb40a5754 ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x0ede4976 vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x13444967 vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xb9954efd vsc73xx_probe -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x05d856ef xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x0bee1e7b 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 0xa0dea614 xrs700x_switch_register -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xa739de2c xrs700x_switch_remove -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info -EXPORT_SYMBOL drivers/net/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 0xd76b16c7 bnxt_ulp_probe -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x61ac1ae6 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_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 -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x34eeb48a bgx_set_dmac_cam_filter -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x46cdf933 bgx_config_timestamping -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x539ca253 bgx_get_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x60cd1f2f bgx_lmac_get_pfc -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6ca2152d bgx_lmac_set_pfc -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x716fd7f0 bgx_reset_xcast_mode -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x72b238e4 bgx_get_rx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xbe654297 bgx_get_tx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xd8ed0bcc bgx_set_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state -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 0x0255a066 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x12b2956e cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3e6ff72c cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x480ea9ee cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5325ac89 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x53e4b083 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x58133976 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6cf2b72c cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x75c55b28 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x946009b9 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9bd26d7d cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa4edaebf cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xad17c81d t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdc4a8c8f t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xee4e8b48 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf1368b51 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x04abdf2e cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0861c56f cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0a31ff8d cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x19f2268a cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1ca724a5 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x32c964af cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3747fb43 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3de642c8 cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x42a292b8 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x42dfa586 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x477c6e59 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4ccf4e3c cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4f628427 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5a86eece cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5bb51a06 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5ef5255f cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x65edd078 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x68eb8975 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6cf1a466 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x71639116 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x76fe9ba8 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x781f88bc cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x821be132 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x85a2f291 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8d000609 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8f9aabce cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9027d492 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x956f6817 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9901c4c2 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa15d2103 cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa88f48a5 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xab3e35f6 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb18eaf4d cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb39c857f cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb65a68f2 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb8e27679 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb9162d30 cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xba9e6ac4 cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbd01c88a cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbdea00ed cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc2e78a62 cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc76d8457 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcdea4dc2 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe8085e85 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeff7ca52 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf6d2bc5f t4_cleanup_clip_tbl -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 0x6db9b461 cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x8721ebe0 cxgb_find_route -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 0xc4d07694 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 0x4e2e10d2 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x6b2ee2d7 be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xe3815ebc be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x4412391e dpaa2_phc_index -EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0xe372bbe5 dpaa2_ptp -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/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 0x54a26c53 hnae3_unregister_ae_algo_prepare -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x8e3f56ac hnae3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x8fd9e5ad hnae3_register_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x99ce65c9 hnae3_unregister_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xb35beb06 hnae3_unregister_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xdf339a73 hnae3_register_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xe25727d9 hnae3_register_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xec4740f3 hnae3_set_client_init_flag -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x532e7848 iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x67438878 iavf_unregister_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/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 0x5fece4d1 otx2_mbox_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6365a74f __SCK__tp_func_otx2_msg_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6e89f79b otx2_mbox_regions_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8e833b87 __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 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 0xb150b38c __tracepoint_otx2_msg_process -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xc03ec3f0 __traceiter_otx2_msg_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xcef3985a __SCK__tp_func_otx2_msg_process -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xd27566b1 otx2_mbox_destroy -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/af/rvu_mbox 0xfac1ccf5 __traceiter_otx2_msg_interrupt -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x092de776 cn10k_lmtst_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1a6b71b6 mbox_handler_nix_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x36b50913 mbox_handler_nix_bp_enable -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x44ee934a otx2_mcam_flow_del -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5421d951 otx2_sq_append_skb -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x58824c59 otx2_set_real_num_queues -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5efa0797 otx2_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6968a2b4 otx2_attach_npa_nix -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6a463462 mbox_handler_msix_offset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x81634495 otx2_alloc_mcam_entries -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x87286f72 otx2_open -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 0x8f71130e otx2_set_mac_address -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9e6421cc otx2_stop -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa79e3e6c otx2_mbox_up_handler_cgx_link_event -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xaf4c13db mbox_handler_nix_txsch_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb2f1a1d1 otx2vf_mcam_flow_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb2fd2a52 otx2_get_mac_from_af -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb33d16d5 mbox_handler_npa_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb77d6c51 otx2_detach_resources -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xbe5092af otx2_tc_alloc_ent_bitmap -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xdfb66e91 otx2_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xeffd130b otx2_get_maxflows -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf6866294 otx2_get_max_mtu -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/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 0x02053e89 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x028f0eef mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02c7b17c mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x037e5281 mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04bf362b mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x070f2af0 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x089d0a9c mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08b7e7de mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b99fd6d mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e9bbfeb mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0edea6ee mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10bcd07d mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x128bed65 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x160ea1fe mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16ad14ee mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bcd9220 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c57c524 __traceiter_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e38486c __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2045c1d1 __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2269a768 mlx5_eq_disable -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 0x23c956d3 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x244ab326 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e8dd27a mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x304becb7 __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31fe68e2 mlx5_core_create_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 0x342c37ed mlx5_vector2eqn -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 0x36d72b29 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3767113d mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c777436 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ed87c74 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41c38808 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x437cfe6b mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43db0483 mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44d860ee mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46124929 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4764f91f mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4773ef27 mlx5_core_modify_sq -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 0x4c18f101 mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cafde54 mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d521d9e mlx5_rl_remove_rate -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 0x503f3c9d __traceiter_mlx5_fs_add_ft -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 0x58d350fc mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bdec1ac mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d105008 mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d39d8eb mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ec49863 mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f477a02 mlx5_core_create_rqt -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 0x611de696 mlx5_eswitch_uplink_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 0x63d7192c mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6555c54e mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65987aac mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65abec35 mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x682e4bb3 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b4ae109 mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6be48ea1 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cb85a9d mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cf6d4f1 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d012f22 mlx5_core_query_cq -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 0x77c91e94 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79d74374 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79dd6902 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a6aacf2 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b25db24 mlx5_lag_is_roce -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 0x7bf215ee mlx5_add_flow_rules -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 0x7ca27f0f mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d7873ac mlx5_lag_get_peer_mdev -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 0x806c6396 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80e175fb mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84e2a051 mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85945ed8 mlx5_core_dealloc_transport_domain -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 0x89252a13 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x902d13a2 mlx5_nic_vport_disable_roce -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 0x946b9b49 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b4fab78 mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c03395c mlx5_lag_get_slave_port -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 0xa1db4465 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa225994f mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa66a9c43 mlx5_core_detach_mcg -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 0xa94bc034 mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab12df13 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab3367f3 mlx5_comp_vectors_count -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 0xaec050b4 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf781338 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafa90648 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb18eb549 mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb26ad79b mlx5_core_destroy_rq -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 0xb415a2db mlx5_eswitch_get_encap_mode -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 0xb53a6253 mlx5_core_alloc_pd -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 0xba5c2f4f __traceiter_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb30e5d3 mlx5_core_query_rq -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 0xbb6d73b5 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbbccec9 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc71b081 mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd3ab21b mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc12647a4 mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc56d6cef __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5f51fdc mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc92bbb5 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4476d56 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6218521 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd66a18d7 mlx5_eswitch_add_send_to_vport_rule -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 0xd7265796 mlx5_debug_qp_add -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 0xda011c00 mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda41e512 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe47b4eff mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe74dbf04 mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe88468ec mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeaf72b10 mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb2ca7fa mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb735a73 mlx5_fc_create -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 0xec895afa mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf25c2e5b mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf430ba58 mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4f3ccb8 mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4fdf0d9 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf65b372c mlx5_rl_is_in_range -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 0xf98821eb mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa303918 mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc8e744e __SCK__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcbffa2a mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcdfeeeb mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd0d49ab mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x8dbf43cc 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 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 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 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 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 0x66d0f351 mlxsw_core_skb_receive -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 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 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 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 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 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 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 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 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 0x052e046c ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x06056688 ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08995a77 ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0b872050 ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x10645748 ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x20dc54a9 ocelot_sb_pool_get -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 0x288591d4 ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x29a742f5 ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2f5454fa ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2fe57907 ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x30dff587 ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x311c2cd6 ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3179e671 ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x341ce01a ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x349ef463 ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x373f1dbe ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x47bb9fdc ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4b2a0b8f ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4efe3604 ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5d9909c0 ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5da132f5 ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5e87f2b0 ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6a770b37 ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6d88a1b5 ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6f9c6e9d ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x708c8e3c ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7363d0cd ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x780abca1 ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7840eef2 ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7bb3ce01 ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7c9adbf8 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x805d2eb1 ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80b57b96 ocelot_apply_bridge_fwd_mask -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x829e2611 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x87aca352 ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x87ea4235 ocelot_port_bridge_flags -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 0x8b67e617 ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x94491dd4 ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9470000a ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x94e42749 ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9a318c01 ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa08a668d ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa71b4239 ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb114d263 ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb4532557 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb8ec4e47 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb992ccd3 ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc8e45c1 ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc502df4c ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc8ce3ee7 ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc9bb8d59 ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcb66b513 ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcf1452dd ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd43a31e8 ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd86683d5 ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd88747a3 ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdf1a2adb ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe691f7d1 ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe7c81a28 ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb5fae4d ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xec70ae25 ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xef04de63 ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xefd10004 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf57ebfd0 ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf7e5c0ca ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf82819db ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf86b97d5 ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x281be159 qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4dc07d08 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 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 0xdf2fcd3c qed_get_iscsi_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/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-cavium 0x7f68faa4 cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xa3dbede5 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x3ab60daa xgene_mdio_wr_mac -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x411cd84e xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xc3b0e4ec xgene_mdio_rd_mac -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xc7a246a3 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xd5f621ae xgene_mdio_rgmii_read -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/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0xa41ea439 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x05b2940f team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x48d0417a team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x55254496 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x7c5db139 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xc47a5aad team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xcb354da6 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xe8dfb88a team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xf447b5c0 team_mode_register -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 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x10eb13ed ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x343c34d3 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x34f075d8 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x37547494 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3dfef6d1 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9856505a ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa1466c64 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 0xabaed32e ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb18c8167 ath_hw_keysetmac -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb9d744ae ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc7b1c6dd ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe5c04556 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xecfa10d0 ath_rxbuf_alloc -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 0x072b38c5 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0a29dd57 ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1c5cf870 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1d5ded2e ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x21dcafee ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x24662fe7 ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2d604261 __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x323b0929 ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3304c94c ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x34fa8cb4 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3523aea2 ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x39aeaf94 ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3ad26513 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3b281a73 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3e2fe61f ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4304a928 ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x46d07ee8 ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x472d3c07 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x473cbbcb ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4d770cb6 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x540ee0c3 ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x68a5fab8 ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6b034d8e ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6c640db5 ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7648a61d ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x76e37ef0 ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x77c5273d ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7a9f1503 ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x81903dc0 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x823233a9 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x826e3a35 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9204f8c1 ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1e4849a __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa573b797 ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa5e3314b ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa605a74a ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaac3849c ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb2710416 ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb2b4f5b3 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb419a31e ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbc6e13cd ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbc7c7598 ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbe438865 ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc4b09bfb ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd0896a1a ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd2f0929d ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd39ff305 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd6a8809f ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd96e2288 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xda56a0a1 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdcb57798 ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe33a7116 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe7b1cd55 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xed35d8b4 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf0ae2df3 ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfcb70731 ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xff2b39a4 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x053a657b ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1372ae5f ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x187c9fce ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x22b20bbf ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x37146462 ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4d0cf530 ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4f238c71 ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x53a9ec59 ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5af3084a ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x674d741d ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6ff6bfe1 ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7aecbd3e ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8d2452f3 ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9191aa3e ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x93644b6c ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa79ec85c ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb5a2d91e ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb69f1b16 ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc0fea654 ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcd8c5687 ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdfbc31d2 ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf04aca95 ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x10306132 ath6kl_core_cleanup -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 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 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 0x02c0fc2c ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0ea3ca51 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1705f3e4 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1f34e4ca ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1ffcd61b ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x332a4d49 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x38b97b04 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x49de4565 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4c34a0ad ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x510e4235 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x613dde3d ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6203e23e ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x73dc7a33 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7716f03e ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8e016d62 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x944a50b7 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9770ce46 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x993402d4 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9a708d9d ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa344d967 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdab3f03d ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdce9cdb8 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf398bacd ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03b8e3fe ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x057e6279 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c837c89 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d9b308a ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x117673b9 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13cc97e7 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x170ff1da ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18490574 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x189e9801 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1baffe5d ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1eccc4cf ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21e74475 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24a9a604 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25659741 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x265b22bf ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x273ff6b2 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a069c6c ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a6d49b3 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c9d68d7 ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3031b91d ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30b413b9 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30ba5238 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34753ad1 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3727080e ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3870283a ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38ccc922 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x406fbb72 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41baef84 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41de7182 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46eb9f88 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ab706cf ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x516d61be ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55b55a61 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58e6109d ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5bf8934f ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e50ec3b ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f926726 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x605cbf81 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6091e319 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x615b68b5 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x672a10bb ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6aec22e1 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6be511a1 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d225291 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71410581 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72b614c5 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75b8ea62 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77b36475 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a0df3ac ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x814d65a9 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8805d40b ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89081e67 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a89403e ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ad5004b ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92e999ff ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92f4c670 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93feed0f ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98cf4f72 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1d80131 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2a135b6 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5c37d5e ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa81037aa ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa8882691 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa889a0ee ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa913a24f ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xabb4f8b2 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac3266f4 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaeab26e0 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf1ae588 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf5f51c9 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb01bdae8 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb106afd2 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb11d8f40 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb29653b7 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2e2cf66 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4f5f4ea ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb98cde5e ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbfcee2f5 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6a6fd86 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc048c43 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcdd7ed05 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf7948b6 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf99fd62 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd59e01b6 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6785b35 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7ac1bba ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdce90e91 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde09c44b ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdeb1eefc ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf2f3530 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfdbaa61 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe01cecdf ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe03fdcfc ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0629130 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3b6d3b7 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4feb890 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5771fff ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe947d416 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeca280ef ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee831836 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef6fd052 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf02969fa ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf26509ee ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4265c1b ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa0d2b04 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb81c42d ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd5c55f1 ath9k_hw_setpower -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/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 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 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 0x052e6e82 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x059eba9a il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x07a81366 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x07aee53c il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0ac13cc4 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b367ddf il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d3a103b il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x14314df2 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x168c4aee il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1cc2c98f il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d7d8d9f il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f9d5de6 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x23229c18 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x26028687 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x29a27b6b il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2a28c7ea il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2a9c9097 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bdc708f il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bfec9e0 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x330e40e3 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x349a79e2 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x34eabf4c il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3755135e il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3cc7dff2 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3e547e8f il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x40da6374 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42bb864c il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x44c2e66c il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x461ba8e6 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4ce9bf35 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x50080779 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55f5eea5 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5a5d396f il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5a750165 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5b9ed4f8 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6108ccc0 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x61ca2b41 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x629eff3d il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x647039db il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x656abab3 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6f8496b9 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x75148cab il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x78767685 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7cbcbfd5 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7dc0f8b1 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8377e691 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8517cb62 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x857eb3f7 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8658ab96 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x883aafb6 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8df9c4a1 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x92fca278 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x96ae27b7 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9997fa7d il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa1a5e294 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa2e51495 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa81c3f7f il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa82cba4e il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8d8059c il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa931d96d il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9c68738 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xadf77803 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaee38787 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb343dd69 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4167e74 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb5b44f22 il_apm_init -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 0xb9bdc361 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb9db78a6 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xba22a706 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xba23246a il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbeb61ba1 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0e49cf4 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc18f8142 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc61ec22f il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc760f768 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc829ef7f il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc8ba0143 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc97e2686 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc9d86408 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xca931260 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xccbb29b7 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xccbf12da il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xce06df48 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1050f8e il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd514a9e9 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd59cb692 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd95dfe38 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda94f28a il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xde8c40bb il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf25de8e il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe7247788 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xea3280e8 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec59dc50 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xed836c3e il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf01de9bb il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf085fff3 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf38f7168 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe5c9690 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x11106203 __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 0x970bf4ef __SCK__tp_func_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9dea7a4c __traceiter_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaaafbd3e __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfe18c197 __traceiter_iwlwifi_dev_ucode_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/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 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 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/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 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x31628d06 mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x3974d90e rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x022ab9cd rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x076b7734 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x09ce79fb _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x21b670e0 _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 0x23433cb0 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x24e2ae71 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x301da296 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x35116fe5 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x39e1b1b6 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x433e3e2c rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4b167211 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4bf7572f _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x51fd7f1d rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5fe50de7 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x654cd617 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6f3e30da rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x76f21d19 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x79724b89 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x87222306 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x92630917 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x99fa7c78 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9cf99b71 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9ee2bac6 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9fdf0028 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa172939d rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xad345ddb rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb011dc6d rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb29aef50 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbda37042 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbfa22b7e rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc299ced0 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc9a93d1f rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdd600d22 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe01596ca rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe2d3819b rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe4d89919 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe4f63614 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf411acb3 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf5cfead2 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfa9cb943 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfdfc37f0 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x1ee9f58b rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb2d18ee5 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xcb91df2b rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xe13e5a82 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x0134bbb9 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x15924967 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x68920d7b rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf33bd807 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x16585969 rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1e33e81a rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x20a8c630 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x21d6b686 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x31fe292a rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3280e18d rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e48e13a rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e5c52ac efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e1eb96b rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4f27e325 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x57b17025 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5c96d12a rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x625935c5 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x72017e96 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7b13d731 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x82b8c9b3 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x88d483aa rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9454ff65 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb4266668 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbbfd907f rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc0b54cd3 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcc42681a rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcd27a7ec rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd147bf8c rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd1977b00 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdaaff3c1 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe09d5858 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe8586e98 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeb12a048 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf776265a rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x8a3c41cd rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x17fc3640 rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x61dc3b7f rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x8e1e5041 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x039e555a rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0585530f rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x058acb0a rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x05b3747a rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x08508cd1 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0c3a540a rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x199848f8 rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1a8f4a0c rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1bd8077e rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x29ef5296 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2fabb3da rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x47b6a214 rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4e97f846 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x50b509f1 rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x512ef079 rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x529ede60 rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x55d72d39 rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5a154a14 rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5a2c5dbf rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5b6b0818 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x63112280 rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6f952d76 rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x749ac415 rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7d715607 rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fdc9b8d check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x82ca7baa rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x83936b0e rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x86941672 rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8a11eac2 rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x92100ebf rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x938f9bc8 rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9498cdb4 rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x96edcca8 rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa551037b rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaa7dcfeb rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xac6b98bb rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xad046722 rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xae42059b rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xafd81352 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb2a796a5 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbc7f5e6d rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbc9ac818 rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc171ed9a rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc42384bc rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcccfad16 rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcfdc733b rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd14a82b3 rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd15e9b6d rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd296b4a7 rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd6c24fa2 rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd7e8eb60 rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xda7469bf rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdd3be02f rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe31f4fb5 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf8b1b3e8 rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf8f17f82 rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfba72600 rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x0d9801d3 rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x1e3823d7 rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x34cf9fe9 rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x3f3ec5dc rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x02a18479 rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0395854b rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x052f832f rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0632ea79 rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0762f757 rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0c5fbff6 rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1d7d67b2 rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4cbe81dc rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x54773f06 rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6cf7ef00 rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x89f85490 rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x913cfec1 rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x987c17e1 rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x98914a05 rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9c2a5e9b rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaaa6ae18 rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb8abfc68 rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdb2d55f7 rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xea574d71 __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xed32d58f rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7f1bf379 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x4e63c02a rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x00914edd wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x0e541bb8 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x8bdd2362 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe7e75f30 wlcore_calc_packet_alignment -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 -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/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 -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x4f192915 s3fwrn5_phy_power_ctrl -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x8e5ff642 s3fwrn5_remove -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 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 -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 0x419c362d st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4817c4cb st21nfca_dep_deinit -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 -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe77bda62 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe8ebdceb st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xea603952 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf47861ff st21nfca_se_init -EXPORT_SYMBOL drivers/ntb/ntb 0x04765858 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x15683c7a ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x1c0419a4 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x2164cc67 ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x2477b1a9 ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0x3417a7f3 ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x4e95a38c ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0x61222ce7 ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x68e83300 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0x88f55ffc __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x89e2a6f1 ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x9b3603eb ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xadbb7ac1 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xaf2eb6ff ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0xbee666a8 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0xcfb83d49 ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0xe0436f73 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xeb1b9957 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xf5e7021c ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0xfa30f934 ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x3a37a37a nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xeb7514b5 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/parport/parport 0x0f8fe5ef parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x103664f7 parport_read -EXPORT_SYMBOL drivers/parport/parport 0x10b65009 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x14d9c902 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x1b623eac parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x21adcb24 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x2a0c6da8 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x33e705a9 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x3c0cb05d parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x3df274ca parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x3fbc514d parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x42986ec8 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x44f2cc39 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x467dfd78 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x4cb88615 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x5288a696 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x543c0494 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x88423648 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x8d15573e __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0xa00fc85c parport_write -EXPORT_SYMBOL drivers/parport/parport 0xaf0f8e6c parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xafd9e08c parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0xb0681b65 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xb4356abc parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xb9c9d6ab parport_release -EXPORT_SYMBOL drivers/parport/parport 0xcab25e73 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xdb9347b6 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0xdc16342f parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xe781ca3c parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0xf4a9a7a7 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xfd715675 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0xe10ac123 iproc_pcie_remove -EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0xfabf690a iproc_pcie_setup -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0638fd8b pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x24d00251 pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2c710a5a pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x342dac54 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x39dd3490 pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x816a4042 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa64cb835 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb60fdfb9 pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbd63f4eb pcmcia_socket_class -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 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 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 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 0x161090ee scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -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 0x0377751c fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0bc80bd4 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1a05da2e fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2f27df1d fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x324c8a77 fcoe_ctlr_els_send -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 0x8b045aab fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x90a4a5f8 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9cc7e8c1 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe4de3b30 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 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 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 0x71d5f253 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x76d4e505 fc_frame_crc_check -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 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 0x9d50ed7e fc_rport_destroy -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 0xa1bcd198 fc_cpu_mask -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 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 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 0xe3d8357c fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head -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 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 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 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 0x0de7d32e fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x15a8d1fd fc_remote_port_delete -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 0x47027235 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x57810a25 scsi_is_fc_rport -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 0x22233f22 scsi_is_sas_rphy -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 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 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 -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 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 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 -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 0x2c0c7e09 cmdq_mbox_create -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x2f623476 cmdq_dev_get_client_reg -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 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 0xa21fb117 cmdq_pkt_create -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xa644a9a6 cmdq_pkt_write -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xe6dc37ec cmdq_mbox_destroy -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 0x004107d7 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 0x18715946 geni_se_clk_freq_match -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x1c7eef49 geni_se_rx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2fcbef9f geni_icc_set_tag -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x30d65a33 geni_se_clk_tbl_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x3e910805 geni_se_resources_on -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x429ffb86 geni_se_config_packing -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x70111d36 geni_se_init -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7867e0ab geni_icc_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x888b5d4a geni_se_resources_off -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x9e8d2abf geni_se_select_mode -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd2d8b1ca geni_icc_enable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd9f5ed55 geni_icc_disable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xe6c1b791 geni_icc_set_bw -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xed167caf geni_se_rx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xfbd3c816 geni_se_get_qup_hw_version -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xfc20e6b2 geni_se_tx_dma_unprep -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 0x0ef12cc9 qmi_encode_message -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 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/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/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 -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x215d4d26 sdw_bus_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x26635ee0 sdw_bus_master_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2907e93d sdw_bwrite_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2de60e24 sdw_read_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x30193b8b sdw_update_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x372bf0eb sdw_stream_add_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4010d2f3 sdw_write_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4400a5c1 sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x55d34916 sdw_bread_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60348bbc sdw_update -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7903eb4f sdw_clear_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7927084b sdw_compare_devid -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x792b819b sdw_stream_add_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7ac77c57 sdw_bus_exit_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xafe10f80 sdw_extract_slave_id -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb13c1464 sdw_slave_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb6b3a049 sdw_nwrite -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 0xd0bd6726 sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd2ddf4f7 sdw_nread -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd4991617 sdw_stream_remove_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe6d5c3eb sdw_write -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe9f3e1f4 sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xeca55fbf sdw_bus_master_delete -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfa502580 sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0998eeb0 sdw_cdns_is_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x32e4ec3e sdw_cdns_exit_reset -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x471274f8 sdw_cdns_clock_restart -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x4b5e5c5b cdns_xfer_msg -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x52b1e1b8 cdns_bus_conf -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x59f63ba8 sdw_cdns_enable_interrupt -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x5f82d234 sdw_cdns_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x68bce65e sdw_cdns_config_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x69af1d66 cdns_xfer_msg_defer -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 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 -EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x7e0c5dd4 sdw_compute_params -EXPORT_SYMBOL drivers/ssb/ssb 0x18a6b9f1 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x249ca9b0 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x2b028163 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x39eeb732 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x5bf32965 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x652b484b ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x74479a22 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x75fb9ae4 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x92b3ec3c ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x94c4d81b ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x97bec72a ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x9f7f4488 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0xa56212f8 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0xafa71999 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0xbdf89a94 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xc5d80ec8 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xd877fa7b __ssb_driver_register -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 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 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 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/iio/addac/adt7316 0xac34e2bc adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x8ee20f1b ade7854_probe -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 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 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/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 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 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/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 -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x3f02ac50 vchiq_open_service -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x582ed8ca vchiq_bulk_receive -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x6d5ef163 vchiq_release_message -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x7c61db5d vchiq_connect -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 0xb05b02ae vchiq_release_service -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xc407cff0 vchiq_msg_queue_push -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 0x026532c6 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0ae8c504 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0af30cfe iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0b59d547 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x11443974 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c6729cb iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2ff7282b iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x33b92970 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x37dd8199 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3c6bcae4 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4757fcec iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4e2279ba iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4fbf0a3a iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x560c6727 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x59a3a228 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6174fdba iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6850ba25 iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6975500a iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6af4d101 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6b6b8af8 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x73e1e26a iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x81ab4dbc iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x878fb1d3 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x87a39989 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8a4a6204 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8eb3bef9 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ebf562e iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x93a30135 iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9e621753 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9f44fb99 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa7dfe582 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb2da4c69 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb40e83fa iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbad91d31 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbb2f31b3 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc053a8ea iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcbeccdbc iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdc2abbc0 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe06408fd iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe1492961 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe5cf6136 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe5db0d56 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe9affcbb iscsi_change_param_sprintf -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/target_core_mod 0x00b59639 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x04f02a3c target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0b976ea7 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x0edf6543 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x1312bd7c target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x15a7ed33 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x26af0091 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x324e7bce core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x361b1762 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x38ffec8d transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3b21db67 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x45e6f52c sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x46124956 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x49f7a2ba transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x4ecf619c passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x4f45d407 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x554daea9 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x55fc9fa6 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x561e093b transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x59c29199 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x5a05ac8a transport_kmap_data_sg -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 0x64ef4c6d transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x665cebe1 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x6663df83 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x686ddb6f transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x69ba7e26 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x6acb4aad spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x77df8433 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x7898cdfe transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x78ec2864 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a71e5c6 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x81224047 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x81f3b680 target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x82fe176b target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x830756b5 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x83f13436 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x88f85f58 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x8a7b3a2e target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x8d7adef6 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x8e5b998f spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x905a781a target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x92492fef target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x94909224 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x968c23d0 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x9dd87468 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xa66c9f01 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa684d458 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xab70b691 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xb6936d9b target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xb83ac4bb target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xba6c0f77 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xbb49d2ae spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xbc4d193b core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xbd3d19bd target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xc355bfd0 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xc587c209 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xcb6bcc21 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xd4d05423 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0xd848872f transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xdc455b3f transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xdc9196c7 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xddcf5781 transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xe4809084 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xe534d6d5 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xe5ff0521 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xe7f2fc81 target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xef455951 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0xf199b8ad target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf6cb4737 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf7949731 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xfbb8d060 target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xfeae87fe core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x147f172e 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/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 -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2e02db3d usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3421fc00 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x40c25440 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7c297262 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xad26352a usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbc63361e usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xef59acb8 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf90dd525 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x7f9e9d28 usb_serial_resume -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x8700367a usb_serial_suspend -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x0724cdf7 mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x10ce081d mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x1859e8eb mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x31953fbc mdev_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x4aeec05f mdev_register_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xee503d36 mtype_get_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf62c5465 mdev_unregister_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xfce48ce4 mtype_get_type_group_id -EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift -EXPORT_SYMBOL drivers/vfio/vfio 0x1aa9fba0 vfio_dma_rw -EXPORT_SYMBOL drivers/vfio/vfio 0x23945b82 vfio_pin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0x48a81d7e vfio_group_pin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0x53948f95 vfio_register_notifier -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 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL drivers/vfio/vfio 0xdd63123d vfio_unpin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0xeceb7a15 vfio_unregister_notifier -EXPORT_SYMBOL drivers/vhost/vhost 0x681a727d vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vhost 0xe955dc58 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 0x37635939 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x41995c3b lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xa5089c20 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xfbb0300b devm_lcd_device_register -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x075aa6e2 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x635f1d2d svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8e415175 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8ea14763 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x9334b36d svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb12d661b svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xfc14da21 svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x7de42bff sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x15b87bac sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x07ffe129 sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xefa50a56 cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x83e433e6 mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x444d6887 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xa64407b9 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xc087cf34 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x02ce2da7 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xa53b6aa9 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xb163dffe DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xe2e13cd9 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x817e049c matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xbdedbd77 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x131c8bbd matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x140b8e59 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x938e9cc8 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xef5b3da2 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x52044832 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xf177ff7a matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x13c6f89f matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x47e7352e matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x6f09d4f7 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7ade08a2 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcb52c404 matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x9b51fb83 virtio_dma_buf_export -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x9e5e152b is_virtio_dma_buf -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xd9ddb22f virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xea2ae262 virtio_dma_buf_attach -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 0x7dd62da6 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0xf89238a5 w1_register_family -EXPORT_SYMBOL fs/fscache/fscache 0x01ff2fde fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x033b4e7b fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x0cfaddac __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x0fcb6d48 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x118c71e3 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x123ca57e __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x17985235 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x17cc5eb1 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x1b3670f5 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x1f113693 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x1f86f239 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x327380e5 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x3bfdcb32 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x434d6948 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x44f050a0 __fscache_begin_read_operation -EXPORT_SYMBOL fs/fscache/fscache 0x54d202f3 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x57e7b445 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x6acefa42 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x6d682159 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x73eaba94 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x79bddd0b fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x8183d644 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x84ad136c __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x8a2f3787 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x901c976d fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x93c0746f __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x97132715 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x9b29ec26 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x9f061427 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0xb82794a3 fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0xb8c66f29 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xb8f46a41 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0xbc4c027c __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xc11dc3be fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0xc84638b4 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0xd07932fd fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0xdbc508d7 __fscache_write_page -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 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 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 -EXPORT_SYMBOL fs/quota/quota_tree 0x5c608cac qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x94cfb15b qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0x97669dfb qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xe662d340 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/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 0x33c7fd81 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset -EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del -EXPORT_SYMBOL lib/lru_cache 0x63910d66 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get -EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create -EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock -EXPORT_SYMBOL lib/lru_cache 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 0x045018b7 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0x91db0dda lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xab01e455 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xbf2650ee lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xd22da90e lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xe5a1cf91 lowpan_nhc_add -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 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 0x41ce9823 p9stat_read -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 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 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 0xc668234d p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0xc77d61dc v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -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 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 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 0x09279812 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x772f71d8 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/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x303ffbf9 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 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 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 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/ax25/ax25 0x0475f24b ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0x149b40fe ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x2cfaf1de ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x3a56841a ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x4c5ce55b ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x9f643c4f ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0xc07159de ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0xf7e453a5 ax25_find_cb -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 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 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 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 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 0x08751d99 ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2cdaeaa1 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x314aaa56 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x4d716d4e ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x760221f0 ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa05d928c ebt_register_template -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 0x839ddb7b cfcnfg_set_phy_state -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 0x01c6eb7a ceph_msg_data_add_bvecs -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 0x043e926c ceph_osdc_list_watchers -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 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 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 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2c1d6182 ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0x2d4e374f ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x2d8cb140 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x2f997bc4 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x32e22370 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x35022735 ceph_cls_assert_locked -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 0x3ac47bb7 ceph_msg_data_add_pages -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 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 0x416d89bf ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x43f40dbc ceph_client_gid -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 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5ae5f4e3 ceph_monc_validate_auth -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 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 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x678ca0d7 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -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 0x72bc5dc6 ceph_msg_data_add_bio -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 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x87573f1c ceph_osdc_flush_notifies -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 0x92b7b4ce ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0x95dfa657 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options -EXPORT_SYMBOL net/ceph/libceph 0x9b4b169f ceph_msg_new2 -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 0x9ebdcdda 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 0xa1284381 ceph_msg_get -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 0xa4ff330d ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xa55bddb3 osd_req_op_xattr_init -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 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xaea06374 ceph_cls_lock_info -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 0xbd2f79ae ceph_oloc_copy -EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xc3117022 __ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc3d12cc6 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xc3d5a012 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0xc43d916e ceph_con_init -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 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 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 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 0xe34a59f2 ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xe6d9d164 ceph_put_page_vector -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 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 0xeef7e5e3 ceph_con_close -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 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 0x008a36a9 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x6d978891 dccp_req_err -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 0x0291e223 __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xdc19665d __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0x6205c41b gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x4821e662 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x874eb8ff ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa8b1234d ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xcec8c42a ip_tunnel_encap_del_ops -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 0x44876ae5 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x86355c9e ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa8fb1289 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xc717f904 ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/tunnel4 0x0f6afe8b xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0x375b48ef xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xa808ecf7 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x106b5c8e ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x39186089 ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x69bd0295 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x76ac7418 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x79a0af4f ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7df0a7ce ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8151a0ef ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8645a3af ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbb4c2146 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x20bd6280 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x3dacf283 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8790f6de ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd95c5643 ip6t_do_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x470e53ad xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0xfe5368e6 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x058ea200 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x20bc8b64 xfrm6_tunnel_spi_lookup -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/llc/llc 0x38b92846 llc_remove_pack -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 0x049117e1 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x04b98acc ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x09077394 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x0d5c300c ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x0d936f28 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x0e6f8f9d ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x0f1a6c2d ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x10b45cac ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x12fcfebc ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x132cf4b1 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x135aeda1 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x13aa7b5c ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x15a85018 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x15e71721 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x18071023 ieee80211_alloc_hw_nm -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 0x1b2c0492 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x27cec47c ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0x2df59d8c ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x2e9313b9 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x3163e5e9 ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0x34e04faa ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x3563851c ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x36bbca8a __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x3a11d618 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x43362a47 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x44cab72f ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0x4908b09e ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x4a0ca756 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x4d71ebe0 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x4e683e06 ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x4fa45823 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x5e1a488c ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0x5ed2a14a ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x622b362e ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x63f5bd40 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x6cb119ba ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x6e8fdbfc ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x71040eab ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0x73da3e39 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x75fb6de0 ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0x7a1b5a8a ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x7fd0cbef ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0x7ff24bec ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x812ce299 ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x8253ff04 ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x8612df89 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x89c9aaf6 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x8fd793e9 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x92d7d985 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x93a34f2e ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x9a08206e ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x9b3b11fb __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x9ba99fc4 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x9d883e1b ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x9d8d51e1 ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x9dca6b5d ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xa3ac1223 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xa764c9a0 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xa7d626f6 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xac80992f ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xadb3d782 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0xb50780f5 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0xb69c2fa8 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xb79301ca ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0xb859238c ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xb88d06f8 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0xbb69e2c0 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0xbbb01fee ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xbddabc72 ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0xbece23ce ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xbf330bbf ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xbf8f106a ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0xc19ac24a ieee80211_return_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xc87e9301 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0xcb2ec5d0 ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xce1212e9 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0xced1ada1 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xd0cec4eb ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xd14f6af6 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xd3b2508f ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xd6e4dc9f wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xd9cee649 ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xdc35afd1 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xe10314ec ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0xe13872a9 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xe47be448 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0xe548b91e ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0xe9d48295 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xeb2a4560 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0xed92b3d9 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xee4c8d37 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xef63fccf ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xf53389a1 ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0xf88a8912 ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0xf8af76ec __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xfaf3e2b0 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0xfc20a887 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0xfda74f8a __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xfddd8a31 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac802154/mac802154 0x3ad9c814 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x3f1b6d06 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x5730b54d ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x85b9e17b ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x948a67b9 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x99becd50 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x9c6215c7 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xbe1ad1e1 ieee802154_unregister_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x25795f13 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4cdf22cd ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x521a2b7c register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x612f97e7 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6b74e404 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7f7bea54 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x923f134a ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb0290a93 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb0fb16ce ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc334a0ec unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc425b01c register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xeeee3385 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xef0e59b1 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfb27f16a ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfea621e5 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x43c351b7 nf_ct_ext_add -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x04602113 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x1ba96ba8 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x1ed7c489 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x9a9e13b3 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy -EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x272f3371 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks -EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name -EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x5e7b6abd xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x704cc01a xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x73f11e17 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x844cb19e xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xac48d797 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xd7d3da6a xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xee0ad15b xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0xf02043e6 xt_find_table -EXPORT_SYMBOL net/netfilter/x_tables 0xfdc73074 xt_register_target -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 -EXPORT_SYMBOL net/nfc/hci/hci 0x0e99940f nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x1764276a nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x29244479 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x32918a2b nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x491c80be nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0x618499f7 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x65d0e638 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x6d82394e nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0x6f1ef47b nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x6f8900be nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x80335337 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x98d729b0 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xa667b4ee nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xac1618bf nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0xb5a00a52 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0xbcc12077 nfc_hci_driver_failure -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 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/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 0x1b657a4d rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0x242ed254 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3130a0db rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x32fc9393 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3df357ac rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x47eb0e99 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6ca55f5b rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x7a79ff2f rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8c2835c6 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9ed14be4 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa19b064e rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0xbdf65ba3 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xbecc558b rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc1517960 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xcd799e0f rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd2ce16aa rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf0c9445e rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0xfb9d0811 rxrpc_get_server_data_key -EXPORT_SYMBOL net/sctp/sctp 0xbe032621 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x5f2500b9 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x898b87d8 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe2dfbb7e gss_mech_put -EXPORT_SYMBOL net/sunrpc/sunrpc 0x10c2ee41 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0x73add24c get_srcport -EXPORT_SYMBOL net/sunrpc/sunrpc 0x99134a78 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0xf2fe2bc3 xdr_truncate_encode -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 0x552e3d0d 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 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/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 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 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x20b4d543 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x225e883b cfg80211_scan_done -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 0x25b61776 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x264c0448 cfg80211_update_owe_info_event -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 0x289a6994 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x29210710 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x2a5d816f cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x2c9a21c2 cfg80211_get_station -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 0x3d8e5894 cfg80211_chandef_compatible -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 0x5cefb307 cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x5d4414f4 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x638d85fe cfg80211_stop_iface -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 0x69b18f43 rfc1042_header -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 0x6dc19a8f cfg80211_send_layer2_update -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 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 0x7d0b5071 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x7d69b032 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7f17869f cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x866c2cdf ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0x89dd4b5a cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x8ab503ad cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x8edb832e ieee80211_get_channel_khz -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 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 0xa85b8c76 cfg80211_report_wowlan_wakeup -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 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 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 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xd4df72e0 cfg80211_rx_mlme_mgmt -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 0xda0d13c1 ieee80211_get_num_supported_channels -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 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdba5b03a ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xdc6f00b8 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0xdd6f1544 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0xe0e139a3 cfg80211_michael_mic_failure -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 0xef265f27 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -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 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 -EXPORT_SYMBOL sound/core/seq/snd-seq 0x304af852 snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x4c77c918 snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xbc8513c1 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcf4a88c4 snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf912f0c8 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x734e4fba snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 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 0xd3e8c11f snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x0214c669 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x0825ef49 snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x0ffbbcfb snd_register_device -EXPORT_SYMBOL sound/core/snd 0x1018aca1 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0x16dad600 snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1a2574c1 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x1d896d4e snd_device_register -EXPORT_SYMBOL sound/core/snd 0x1e793538 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x20705b31 snd_device_free -EXPORT_SYMBOL sound/core/snd 0x22fc061d snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x28957042 _snd_ctl_add_follower -EXPORT_SYMBOL sound/core/snd 0x2b247eb5 snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0x2c896b64 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0x30cd020b snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x32f6da3f snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x334096f6 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x3360b2c1 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x37ba4aae snd_info_register -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x47d986b8 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x5dd5e6d3 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0x6c3d2b14 snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0x6d400f35 snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0x7b4e8a8a snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0x7d688210 snd_ctl_notify_one -EXPORT_SYMBOL sound/core/snd 0x82360043 snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x85588927 snd_component_add -EXPORT_SYMBOL sound/core/snd 0x858a18ea snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x89086b34 snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x90428bd6 snd_card_new -EXPORT_SYMBOL sound/core/snd 0x91214f53 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa1508887 snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb3bef9dd snd_card_register -EXPORT_SYMBOL sound/core/snd 0xba7367d2 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0xc869523e snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0xcee69c64 snd_card_free -EXPORT_SYMBOL sound/core/snd 0xd207a64b snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0xd583dd71 snd_jack_report -EXPORT_SYMBOL sound/core/snd 0xd5ea0d0d snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0xd78a3ec7 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0xeaebf882 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0xeb00e22e snd_jack_new -EXPORT_SYMBOL sound/core/snd 0xecea63cd snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0xed6dd0c4 snd_device_new -EXPORT_SYMBOL sound/core/snd 0xedcc6366 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0xef081a63 snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0xefce7988 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0xf27177b8 snd_power_wait -EXPORT_SYMBOL sound/core/snd 0xfd67ce1e snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-compress 0x8219802b snd_compr_malloc_pages -EXPORT_SYMBOL sound/core/snd-compress 0xb20db383 snd_compr_free_pages -EXPORT_SYMBOL sound/core/snd-hwdep 0x299e6833 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x087733ed snd_sgbuf_get_addr -EXPORT_SYMBOL sound/core/snd-pcm 0x11db595a snd_dma_buffer_mmap -EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL sound/core/snd-pcm 0x158e5bb0 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x163099c6 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x1908721a snd_pcm_set_managed_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x2a402ee6 snd_pcm_period_elapsed_under_stream_lock -EXPORT_SYMBOL sound/core/snd-pcm 0x35a68455 snd_pcm_hw_constraint_step -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 0x3c32bb84 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x3ce500cd snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0x490d442c 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 0x50e4be07 snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x514c7a8d snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x5235f06d snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x533c3e1e snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x5695de77 snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x586f3639 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x617cfb3f snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0x63473943 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x6508580e snd_sgbuf_get_chunk_size -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 0x69c7ddb2 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x72613a9e snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0x73ade00c snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x84701bdd snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x8bc0a7ff snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x8c0334ad snd_sgbuf_get_page -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x9585e9f9 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0x961bc9bf snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x9f7180d5 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0xa329bdca snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xa9cd4e88 snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xabd5d426 snd_pcm_create_iec958_consumer -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xb92838ea snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xbde9a1fe snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0xbeac8496 __snd_pcm_lib_xfer -EXPORT_SYMBOL sound/core/snd-pcm 0xbfff41a9 snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0xc20e5d04 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xc273330d snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xc8be16df snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0xcf45c85d snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0xd359413b snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xd933a165 snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0xdc83cc13 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xddcacc38 snd_pcm_set_managed_buffer_all -EXPORT_SYMBOL sound/core/snd-pcm 0xddf27028 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xf15132ab snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0xf72745ea snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xfa591f3f snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0xfd396955 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0a9b6eda snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1068ea60 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x19fcb554 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1c999f39 snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2d7518ca snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x30a91991 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4b012ac8 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4e266b2c __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5a0c120d snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6452bbda snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x64f933b5 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6d5c34c5 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9876150f snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa08df056 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0xaf65590d snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb47b4418 snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe7441c24 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xeb96fe2b snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xee31f805 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xef5319ef snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/snd-seq-device 0x0bbea177 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 0x03feabb2 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0x12a83ede snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0x1e671e9c snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0x21935c94 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x22105489 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0x31ac4015 snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x454b6e47 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x94270bdf snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x9c93e1d4 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0xa1237d73 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0xcc903e71 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0xd6c758c5 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0xe87ec0aa snd_timer_instance_new -EXPORT_SYMBOL sound/core/snd-timer 0xf5300086 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0xfb42fdcd snd_timer_instance_free -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xd7561fee snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x236e098e snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x45cb9508 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x48be68b3 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x79a5395e snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa3ccf2f7 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa96a025e snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb4a77efa snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc2de6af1 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd8f88f41 snd_opl3_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2687043b snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x4c8b1c12 snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x64e58dad snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x76cc595c snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8f0bb164 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xec1532b9 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf0169293 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 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 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 -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 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 0x93444929 fw_iso_resources_destroy -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 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 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 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 -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x57e1fc58 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5ec1d1b8 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7c8d05b8 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x96477327 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9878ba0c snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x98e87d1a snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbcd1db69 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x2b0d7bb5 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x91096528 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xb5a835f2 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xba75b79d snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x0f883b90 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x23de8fea snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x10414aa5 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x46cbe4a2 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5513d047 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x63350d09 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x85ebada3 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf8191998 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x025b7966 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x207f7b72 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0x21c73541 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x2a97418e snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x9c0be42b snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x9d558fad snd_i2c_sendbytes -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x03e3c895 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x06322e49 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0bd53bc9 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x18ba0d11 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x201ad62a snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x27255e89 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x331455b1 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3c440835 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x40c01264 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5a48a0dd snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6a3fe7e8 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x833fe39a snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x92dba9c9 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xab8b7b6b snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb65781fb snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcf1860b1 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdeaa9cbe snd_ac97_suspend -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x057040fd snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x109326b0 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x17157d62 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x190543e8 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8964c6f8 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9b822f2b snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb1dd63f9 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xce5c46db snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xff97996a snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x3f8061da snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xa159169b snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xab71789e snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x104d0494 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1844e43f oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3d992b2b oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4330bda1 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x56d2f9a5 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x63b345bc oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x66215699 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x810a1567 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x825be8bf oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x827581f0 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8512af0d oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x978c5e90 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa33f3da8 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd16a1642 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdeac884c oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe2df80fd oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe4b78e3a oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe5703014 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xea612b6b oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xec70cd5f oxygen_write32_masked -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x59c1fc60 snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x79d66fc4 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x8e3e8656 snd_trident_free_voice -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-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 -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xad26b478 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xff9e28f9 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x86c17436 aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xb7287fd2 aic32x4_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xcf2fafeb aic32x4_regmap_config -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 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 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/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 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 0x542c22a9 snd_sof_runtime_resume -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 0xa3e7dbb1 snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa56ddbad sof_machine_check -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 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 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 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 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 0xea92b6b7 snd_sof_complete -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xed6c9543 sof_block_read -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/soundcore 0x02dd9c11 register_sound_special -EXPORT_SYMBOL sound/soundcore 0x20c0a797 register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0x5772a89c sound_class -EXPORT_SYMBOL sound/soundcore 0x60776fc3 register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xa2aa6bd5 register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x04193e1f snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x173f964a snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x223990d4 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x29da8c99 snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x6e458e21 snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x8e4f1ba2 snd_emux_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x0eda33fa snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x2a48197f snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x6517719f __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x914f3491 snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x9223e14b snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x9adc8c44 __snd_util_memblk_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xc59655e4 snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0xd28dc0da __snd_util_mem_alloc -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -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 0x00148653 vsnprintf -EXPORT_SYMBOL vmlinux 0x0017f9b0 cros_ec_check_result -EXPORT_SYMBOL vmlinux 0x00262542 load_nls_default -EXPORT_SYMBOL vmlinux 0x0038ea2d shmem_aops -EXPORT_SYMBOL vmlinux 0x00823e0d proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x008a7dfe blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x00a6608f __alloc_skb -EXPORT_SYMBOL vmlinux 0x00a81596 __scsi_add_device -EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00bd646f rt_dst_alloc -EXPORT_SYMBOL vmlinux 0x00be1c93 __skb_recv_udp -EXPORT_SYMBOL vmlinux 0x00c5ec8d nd_btt_version -EXPORT_SYMBOL vmlinux 0x00cf1098 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00db1882 sync_filesystem -EXPORT_SYMBOL vmlinux 0x00ecc86b acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0x00f7871f netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0113b7ee of_iomap -EXPORT_SYMBOL vmlinux 0x01179fd7 tcf_idr_release -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 0x0147812c kblockd_mod_delayed_work_on -EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc -EXPORT_SYMBOL vmlinux 0x015af7f4 system_state -EXPORT_SYMBOL vmlinux 0x016360a6 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x016fe48b pcie_port_service_unregister -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 0x0188cd88 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x019b0e85 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x01a0c767 pid_task -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 0x01bf55fc paddr_vmcoreinfo_note -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 0x0209f3a7 secure_ipv6_port_ephemeral -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 0x02377325 devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x02502048 rproc_coredump_add_segment -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x027cc1bc __xfrm_route_forward -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 0x02ab0d90 qdisc_reset -EXPORT_SYMBOL vmlinux 0x02af018f blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x02b17da7 ndisc_mc_map -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 0x02eab83f dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x02f5215b send_sig_info -EXPORT_SYMBOL vmlinux 0x0307262c __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0x03191d80 kfree_skb_list -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 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 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 0x03865d76 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -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 0x03d71ee1 __generic_file_write_iter -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 0x04310c39 ihold -EXPORT_SYMBOL vmlinux 0x0441a0b0 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x04673adb qman_ip_rev -EXPORT_SYMBOL vmlinux 0x046c709f param_set_byte -EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu -EXPORT_SYMBOL vmlinux 0x047ab0e2 configfs_depend_item -EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x04a91fe6 pldmfw_flash_image -EXPORT_SYMBOL vmlinux 0x04bf15cb ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0x04d6e5bd mmc_retune_release -EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits -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 0x04f5695d i2c_clients_command -EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x0509e439 netlink_broadcast -EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x05202b77 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x0524f4f0 ip6_frag_next -EXPORT_SYMBOL vmlinux 0x05273a94 kill_pid -EXPORT_SYMBOL vmlinux 0x053cd04d pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x05467ca5 devfreq_update_status -EXPORT_SYMBOL vmlinux 0x054ce717 tty_hangup -EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 -EXPORT_SYMBOL vmlinux 0x0572afad follow_up -EXPORT_SYMBOL vmlinux 0x0591f421 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x05a21407 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x05b2bb4b blk_mq_alloc_request -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 0x0614ee9c sock_register -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x0616ad4e input_enable_softrepeat -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 0x0655fa14 generic_file_fsync -EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x066a2764 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x0675d67a __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x06c0cd91 nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0x06e3c35e tty_vhangup -EXPORT_SYMBOL vmlinux 0x06fc0f13 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x06fc2454 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x070392e1 tcp_poll -EXPORT_SYMBOL vmlinux 0x070c7ead skb_dequeue -EXPORT_SYMBOL vmlinux 0x0711edc8 xudma_dev_get_tisci_rm -EXPORT_SYMBOL vmlinux 0x072809bc bio_copy_data -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x0732e578 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase -EXPORT_SYMBOL vmlinux 0x074fb040 acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0x0750eddc current_time -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 0x07a36b1b xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -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 0x07ff9d41 dm_register_target -EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched -EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x080a9880 sk_send_sigurg -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 0x08356f32 fman_sp_set_buf_pools_in_asc_order_of_buf_sizes -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x084f7a2b skb_put -EXPORT_SYMBOL vmlinux 0x085708c7 cdev_alloc -EXPORT_SYMBOL vmlinux 0x086384ef dev_set_mac_address_user -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 0x08ab2660 locks_init_lock -EXPORT_SYMBOL vmlinux 0x08b4d342 inet_del_protocol -EXPORT_SYMBOL vmlinux 0x08b677fa tcf_register_action -EXPORT_SYMBOL vmlinux 0x08bfa5d3 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x08d2ea2e __sk_receive_skb -EXPORT_SYMBOL vmlinux 0x08d65a5d jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x08dfb025 dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr -EXPORT_SYMBOL vmlinux 0x08edb4e7 secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0x08fb6916 skb_vlan_push -EXPORT_SYMBOL vmlinux 0x08fceb18 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x08fe75aa tcp_filter -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 0x0935d59c pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x0940ad6c md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x096d213e page_pool_create -EXPORT_SYMBOL vmlinux 0x096e0262 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x0995203b inet6_offloads -EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x09c35239 dquot_initialize -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 0x09f02092 of_translate_address -EXPORT_SYMBOL vmlinux 0x09f70577 tcp_prot -EXPORT_SYMBOL vmlinux 0x09f9b261 xudma_rchan_put -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 0x0a280d2e rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x0a2ca5a3 proto_unregister -EXPORT_SYMBOL vmlinux 0x0a365878 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x0a665b92 mdiobus_read_nested -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 0x0a9dd59c blkdev_issue_discard -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 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 0x0b288682 eth_header -EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0x0b2cfbb5 dev_mc_init -EXPORT_SYMBOL vmlinux 0x0b3c99dc vme_register_bridge -EXPORT_SYMBOL vmlinux 0x0b5ee5e7 mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0x0b7181bc security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b75bff4 __inet_hash -EXPORT_SYMBOL vmlinux 0x0b844343 dump_emit -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 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user -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 0x0c23562e path_put -EXPORT_SYMBOL vmlinux 0x0c24c3bb d_lookup -EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c4d660e devfreq_monitor_resume -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 0x0c7d78ec xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x0c92d28b pnp_release_card_device -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 0x0cc4b4b6 crc_ccitt_false -EXPORT_SYMBOL vmlinux 0x0cc4eda8 param_ops_charp -EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason -EXPORT_SYMBOL vmlinux 0x0cf8224d netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0x0cfc5aea generic_update_time -EXPORT_SYMBOL vmlinux 0x0d02c7c5 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d1fccb0 pci_ep_cfs_add_epf_group -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 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d57bb5f _dev_info -EXPORT_SYMBOL vmlinux 0x0d5add2b kobject_put -EXPORT_SYMBOL vmlinux 0x0d5c1ee0 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d81631b __set_page_dirty_no_writeback -EXPORT_SYMBOL vmlinux 0x0d874ab9 rproc_put -EXPORT_SYMBOL vmlinux 0x0da760b1 d_delete -EXPORT_SYMBOL vmlinux 0x0dbfa08a seq_read_iter -EXPORT_SYMBOL vmlinux 0x0de90c36 nexthop_bucket_set_hw_flags -EXPORT_SYMBOL vmlinux 0x0e0ac4a7 write_one_page -EXPORT_SYMBOL vmlinux 0x0e147d4f kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e23ce69 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x0e424ba8 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x0e4ee94a eth_type_trans -EXPORT_SYMBOL vmlinux 0x0e5563da pci_map_rom -EXPORT_SYMBOL vmlinux 0x0e64ff34 security_path_mknod -EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor -EXPORT_SYMBOL vmlinux 0x0e84b889 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x0e9bea01 security_unix_may_send -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 0x0ed3ba86 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x0edba05a textsearch_destroy -EXPORT_SYMBOL vmlinux 0x0ee06c3e kill_anon_super -EXPORT_SYMBOL vmlinux 0x0ee5b9c8 __genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x0eea1b01 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x0eeae87c security_sb_mnt_opts_compat -EXPORT_SYMBOL vmlinux 0x0f011758 cros_ec_get_next_event -EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f0c9b37 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x0f0f4a6d param_set_charp -EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu -EXPORT_SYMBOL vmlinux 0x0f2c993a pci_get_class -EXPORT_SYMBOL vmlinux 0x0f2d3849 unlock_page_memcg -EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x0f3f2675 generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0x0f5cf7c9 unregister_netdevice_notifier_dev_net -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 0x0f8df5dd d_add_ci -EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fb49514 block_truncate_page -EXPORT_SYMBOL vmlinux 0x0fcd2c62 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x0fcf7803 km_report -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 0x10183622 skb_orphan_partial -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 -EXPORT_SYMBOL vmlinux 0x1031824f pci_enable_device -EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x10506420 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x1057a279 bsearch -EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x107123a7 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x10c67887 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x10caa1da md_check_recovery -EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10e66ca2 register_netdev -EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x10e78ad8 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x1107c085 request_firmware -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x110cad7f seq_escape_mem -EXPORT_SYMBOL vmlinux 0x11177eac neigh_seq_start -EXPORT_SYMBOL vmlinux 0x111aa878 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x11456b58 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x1149194f sockfd_lookup -EXPORT_SYMBOL vmlinux 0x1149637a mmc_release_host -EXPORT_SYMBOL vmlinux 0x1154b754 update_devfreq -EXPORT_SYMBOL vmlinux 0x115c8eaf sk_mc_loop -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x1176e276 inet_del_offload -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 0x11ab9d45 dev_get_flags -EXPORT_SYMBOL vmlinux 0x11bb34e7 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x11bf72da tegra_dfll_unregister -EXPORT_SYMBOL vmlinux 0x11c671bf i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x11d189b1 __tracepoint_kmem_cache_alloc_node -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 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120ff8e1 xudma_get_rflow_ring_offset -EXPORT_SYMBOL vmlinux 0x12117567 get_tz_trend -EXPORT_SYMBOL vmlinux 0x121ac78d __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x121f387a vme_lm_request -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 0x126bb556 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x128ceccf mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x12999155 vfs_link -EXPORT_SYMBOL vmlinux 0x129b4fff inode_set_flags -EXPORT_SYMBOL vmlinux 0x12a4e128 __arch_copy_from_user -EXPORT_SYMBOL vmlinux 0x12b91ee4 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x12c3c91a dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12cc2e70 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x12d5ca11 dev_get_mac_address -EXPORT_SYMBOL vmlinux 0x12ea9df2 sock_i_uid -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 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 0x133e6285 __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0x1349465a xfrm6_rcv_encap -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 0x137373a0 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x13772db8 mmc_command_done -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 -EXPORT_SYMBOL vmlinux 0x13b6a821 get_vm_area -EXPORT_SYMBOL vmlinux 0x13bad7bf ilookup5 -EXPORT_SYMBOL vmlinux 0x13c68733 tcp_peek_len -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 0x13daab1a genphy_read_abilities -EXPORT_SYMBOL vmlinux 0x1400e4d0 mmc_remove_host -EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x141fe24f devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node -EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc -EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x147b1637 ilookup -EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x14ad962e blk_mq_delay_run_hw_queues -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 0x150e86d5 km_query -EXPORT_SYMBOL vmlinux 0x151333bd udp_seq_start -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 0x1539a79b netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0x153ccc6f drop_super_exclusive -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x154d1e92 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x154d2024 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x15558db4 generic_set_encrypted_ci_d_ops -EXPORT_SYMBOL vmlinux 0x156d6ea5 netdev_warn -EXPORT_SYMBOL vmlinux 0x15740d49 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x15864902 nd_pfn_validate -EXPORT_SYMBOL vmlinux 0x15b4ea30 __put_page -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 0x15e8156f __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x15e8ceb9 __wait_on_buffer -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 0x160bd43f tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x162d75f9 d_find_alias -EXPORT_SYMBOL vmlinux 0x162e6f13 tcp_sendpage -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 0x16418484 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x1652ddad __dev_set_mtu -EXPORT_SYMBOL vmlinux 0x165839f7 mpage_writepages -EXPORT_SYMBOL vmlinux 0x16584d4e kobject_get -EXPORT_SYMBOL vmlinux 0x16596b8f tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0x166867e9 eth_gro_complete -EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x16ace744 dev_change_proto_down_reason -EXPORT_SYMBOL vmlinux 0x16c79c62 rtnl_unicast -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 0x1704e34a netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x170aaec9 scsi_host_put -EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x17129ac6 ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x1717ceb8 rproc_coredump_using_sections -EXPORT_SYMBOL vmlinux 0x171e3732 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x171ed5cc reuseport_has_conns_set -EXPORT_SYMBOL vmlinux 0x173ed3ea of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x175c7542 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x175f3db2 rproc_boot -EXPORT_SYMBOL vmlinux 0x1774aae9 kernel_getpeername -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 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 0x17fa7c1b neigh_direct_output -EXPORT_SYMBOL vmlinux 0x17ff7680 ptp_clock_index -EXPORT_SYMBOL vmlinux 0x18019e86 pci_enable_wake -EXPORT_SYMBOL vmlinux 0x1806bffb generic_write_end -EXPORT_SYMBOL vmlinux 0x181064dc __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x18548bd1 dma_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x186bd6f1 devm_memremap -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 0x18b30275 __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io -EXPORT_SYMBOL vmlinux 0x18b58a15 __phy_write_mmd -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x190a48a9 efi -EXPORT_SYMBOL vmlinux 0x19179037 __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x1917fc70 drop_nlink -EXPORT_SYMBOL vmlinux 0x192e7b9e rproc_of_parse_firmware -EXPORT_SYMBOL vmlinux 0x1944a87d __cpuhp_setup_state -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 0x1964b0c3 dput -EXPORT_SYMBOL vmlinux 0x197134c8 of_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0x1974532b netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0x19764b5f input_get_timestamp -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 0x19916da1 mmc_put_card -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a1003b ps2_drain -EXPORT_SYMBOL vmlinux 0x19afcc0e neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19ca1c5e iov_iter_advance -EXPORT_SYMBOL vmlinux 0x19ccfd3e kernel_accept -EXPORT_SYMBOL vmlinux 0x19d4c10c security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x19d5f632 pin_user_pages_locked -EXPORT_SYMBOL vmlinux 0x19ed2764 misc_deregister -EXPORT_SYMBOL vmlinux 0x1a042724 neigh_parms_release -EXPORT_SYMBOL vmlinux 0x1a0e0522 inode_init_always -EXPORT_SYMBOL vmlinux 0x1a0ef20b sock_set_priority -EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a508139 __traceiter_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x1a66173d crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x1a6866c6 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x1a785db3 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1a9ac35f ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0x1aa6708b bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x1aa8c618 simple_rename -EXPORT_SYMBOL vmlinux 0x1aa9dd3e ip_mc_leave_group -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 0x1ae22fcb blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0x1aea54f1 proc_create -EXPORT_SYMBOL vmlinux 0x1aeebeea kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x1afc2c6a md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x1afe2f1f md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b0243c4 xp_free -EXPORT_SYMBOL vmlinux 0x1b097a09 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x1b0dd490 netdev_change_features -EXPORT_SYMBOL vmlinux 0x1b27a1b4 devm_backlight_device_register -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 0x1b6e05ba sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b8c58b8 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x1b9a66d4 dquot_load_quota_sb -EXPORT_SYMBOL vmlinux 0x1b9c737a dev_get_iflink -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 0x1be06b4a register_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x1bf36e1c skb_unlink -EXPORT_SYMBOL vmlinux 0x1bf3af61 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x1bf9f5e6 pci_release_regions -EXPORT_SYMBOL vmlinux 0x1bf9f74c pcim_iomap -EXPORT_SYMBOL vmlinux 0x1c2f69c9 generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0x1c32b989 audit_log_start -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 0x1c58427f acpi_remove_notify_handler -EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c6ea23b put_watch_queue -EXPORT_SYMBOL vmlinux 0x1c7bc869 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x1c877dad ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x1c961300 neigh_update -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 0x1ccedfde mount_subtree -EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node -EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl -EXPORT_SYMBOL vmlinux 0x1ce719ae flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x1ced54c5 param_ops_uint -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 0x1d1abdf0 acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0x1d23e7cd mii_link_ok -EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit -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 0x1d975790 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x1d9bf765 dev_disable_lro -EXPORT_SYMBOL vmlinux 0x1dc19c94 tegra_ivc_write_advance -EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key -EXPORT_SYMBOL vmlinux 0x1dd042ce xsk_tx_peek_release_desc_batch -EXPORT_SYMBOL vmlinux 0x1dd4099b blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -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 0x1df2c879 security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0x1dfeadb9 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x1dff5e8b devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x1e02ebdf __netif_napi_del -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 0x1e38b7be is_nd_btt -EXPORT_SYMBOL vmlinux 0x1e3d3f82 skb_checksum_trimmed -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 0x1e91f50e dev_loopback_xmit -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 0x1ed7eb60 __sg_free_table -EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1ef161d4 dev_addr_init -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 0x1f18b070 udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x1f3e3823 __dquot_free_space -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 0x1f5de53c __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x1f6743b7 phy_suspend -EXPORT_SYMBOL vmlinux 0x1f67ec6d of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0x1f8dcf65 fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0x1f956490 sock_init_data -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fbeb8b8 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1ff888bc neigh_table_clear -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x2014e97d get_user_pages_remote -EXPORT_SYMBOL vmlinux 0x2029a6a4 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x202f7a27 dev_activate -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 0x207a8f45 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x207c5397 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x208c4813 is_bad_inode -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20b5183a thaw_bdev -EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20e298f6 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize -EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context -EXPORT_SYMBOL vmlinux 0x21178eba jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0x212de92e md_unregister_thread -EXPORT_SYMBOL vmlinux 0x21334e7e fqdir_init -EXPORT_SYMBOL vmlinux 0x2134d766 udp_skb_destructor -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 0x217476d3 ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0x217f11ac of_find_property -EXPORT_SYMBOL vmlinux 0x218d2fab configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x2193c322 __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0x21a29040 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance -EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21c4887f ipv6_dev_mc_dec -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 0x21f3dcbe tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0x220c7021 tegra_io_pad_power_disable -EXPORT_SYMBOL vmlinux 0x221c47ec gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x22246535 alloc_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x222908d7 amba_device_unregister -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x22326d36 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list -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 0x2256a292 nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0x2256cd35 lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0x226989be of_find_device_by_node -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 0x22b4ceab sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x22b88262 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x22ebe2b3 mode_strip_sgid -EXPORT_SYMBOL vmlinux 0x22ebfd70 kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0x22f2ef39 pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0x22f409fc of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x230ae0c8 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x230b14ff blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x232cb18d genphy_read_lpa -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 0x236a4f1b finish_open -EXPORT_SYMBOL vmlinux 0x236b7228 phy_request_interrupt -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 0x23b83707 pci_select_bars -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 0x23e9dde2 make_kprojid -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x2413dceb dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x243545e2 of_pci_range_to_resource -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x244b788a netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x245870c8 reuseport_select_sock -EXPORT_SYMBOL vmlinux 0x24595d3a pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x24652574 clk_add_alias -EXPORT_SYMBOL vmlinux 0x246c3757 tegra_ivc_init -EXPORT_SYMBOL vmlinux 0x246e99db devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x247c3487 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x24846dd8 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x24a7b56f jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x24adbe68 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x24b2320a no_llseek -EXPORT_SYMBOL vmlinux 0x24bc23a3 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24fe9102 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x252dabf1 pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0x2530de5b icmp_ndo_send -EXPORT_SYMBOL vmlinux 0x2546b3ce fman_set_port_params -EXPORT_SYMBOL vmlinux 0x255e3fe0 pldmfw_op_pci_match_record -EXPORT_SYMBOL vmlinux 0x2564a4b3 refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0x2575f36f udp6_set_csum -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 0x25917b32 md_reload_sb -EXPORT_SYMBOL vmlinux 0x25956fd4 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion -EXPORT_SYMBOL vmlinux 0x25b03e48 rpmh_write_batch -EXPORT_SYMBOL vmlinux 0x25bc9784 import_single_range -EXPORT_SYMBOL vmlinux 0x25c1e502 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x25dc690f register_quota_format -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 0x260a095a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x26174f7e inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x2617e6a8 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x262bc6cc xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x26323b6a __f_setown -EXPORT_SYMBOL vmlinux 0x263a3256 dev_addr_del -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 0x2688ec10 bitmap_zalloc -EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x269c8e23 of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x26a5a6c1 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x26cc73c3 complete_and_exit -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26f4cf7e mdio_device_reset -EXPORT_SYMBOL vmlinux 0x26fa2f1d softnet_data -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 0x27479adc kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x2756eadd fwnode_mdio_find_device -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 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 0x2782089b block_commit_write -EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27a6a485 zpool_register_driver -EXPORT_SYMBOL vmlinux 0x27b4e416 napi_consume_skb -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 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x281a636c sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x2822676b inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x28345b59 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x2864d9bf devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x286ae248 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x28991959 set_blocksize -EXPORT_SYMBOL vmlinux 0x28be5f8b __d_lookup_done -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 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x2902a89b fasync_helper -EXPORT_SYMBOL vmlinux 0x29079459 xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0x29178bbb cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x29287a1d get_tree_keyed -EXPORT_SYMBOL vmlinux 0x2935a748 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x29372c51 set_capacity -EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -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 0x29abdc45 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x29b23df4 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x29bd057a skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29e33169 netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0x2a0ccb17 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x2a0f33ac __find_get_block -EXPORT_SYMBOL vmlinux 0x2a13bb9e pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x2a1cd2d4 sock_wfree -EXPORT_SYMBOL vmlinux 0x2a2322aa unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a328036 xsk_tx_peek_desc -EXPORT_SYMBOL vmlinux 0x2a4383d3 pci_request_regions -EXPORT_SYMBOL vmlinux 0x2a69368d km_new_mapping -EXPORT_SYMBOL vmlinux 0x2a8592c2 msm_pinctrl_dev_pm_ops -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 0x2aca8614 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x2ad0445a __mod_lruvec_page_state -EXPORT_SYMBOL vmlinux 0x2aeabd7b page_pool_destroy -EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 -EXPORT_SYMBOL vmlinux 0x2b351898 fs_param_is_u64 -EXPORT_SYMBOL vmlinux 0x2b3e161a jbd2_journal_finish_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x2b458efb dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x2b468f85 fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0x2b4de011 iov_iter_revert -EXPORT_SYMBOL vmlinux 0x2b50102f netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2b608567 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x2b67073b tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0x2b6793f8 vlan_vid_add -EXPORT_SYMBOL vmlinux 0x2b78a805 tty_port_put -EXPORT_SYMBOL vmlinux 0x2b7d86f8 register_shrinker -EXPORT_SYMBOL vmlinux 0x2b7e6570 skb_checksum -EXPORT_SYMBOL vmlinux 0x2b7f1428 param_ops_string -EXPORT_SYMBOL vmlinux 0x2b915b68 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba43929 _copy_to_iter -EXPORT_SYMBOL vmlinux 0x2bb43fe7 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x2bb4a0e2 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock -EXPORT_SYMBOL vmlinux 0x2bb795cf pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset -EXPORT_SYMBOL vmlinux 0x2bf7f5b4 filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove -EXPORT_SYMBOL vmlinux 0x2c092fb4 phy_write_paged -EXPORT_SYMBOL vmlinux 0x2c0d8916 sget_fc -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c2708ee phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0x2c270afc input_set_timestamp -EXPORT_SYMBOL vmlinux 0x2c2da243 mdiobus_unregister_device -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 0x2c554055 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x2c6ef5eb phy_ethtool_get_link_ksettings -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 0x2c8be74e tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x2c923178 __put_user_ns -EXPORT_SYMBOL vmlinux 0x2cb5c511 dev_trans_start -EXPORT_SYMBOL vmlinux 0x2cba33f4 flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x2ce1bf13 pcim_pin_device -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0x2d1c29ca dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -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 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 0x2d75d6d3 regset_get -EXPORT_SYMBOL vmlinux 0x2d78c5db key_type_keyring -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 0x2dce2f1c __irq_regs -EXPORT_SYMBOL vmlinux 0x2ddb119f ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2def7629 give_up_console -EXPORT_SYMBOL vmlinux 0x2df1f2ee __xfrm_policy_check -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 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 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 0x2e6d72dc tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0x2e7da995 dev_set_mtu -EXPORT_SYMBOL vmlinux 0x2e820567 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x2e998a2a par_io_of_config -EXPORT_SYMBOL vmlinux 0x2ea31ec2 passthru_features_check -EXPORT_SYMBOL vmlinux 0x2ea52d3e dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0x2ebcceba inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2edc28dc sock_set_reuseaddr -EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x2ee6a580 __cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x2eea912c get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x2efedeb0 is_acpi_device_node -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f103ffc ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init -EXPORT_SYMBOL vmlinux 0x2f1f96d3 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security -EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle -EXPORT_SYMBOL vmlinux 0x2f366b56 __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f3c9147 md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x2f6378b1 nf_log_register -EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f882378 vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0x2f8f1324 release_sock -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 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fe5b535 qcom_scm_assign_mem -EXPORT_SYMBOL vmlinux 0x30144c58 ipmr_rule_default -EXPORT_SYMBOL vmlinux 0x3020f469 get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0x30221556 reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0x3037a917 kmem_cache_create -EXPORT_SYMBOL vmlinux 0x304df3e7 md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp -EXPORT_SYMBOL vmlinux 0x308f1cae mmc_card_alternative_gpt_sector -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30b89e9f dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x30c3005b __devm_mdiobus_register -EXPORT_SYMBOL vmlinux 0x30c7238b dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x30cac76c clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x30d70594 of_node_put -EXPORT_SYMBOL vmlinux 0x30da3bc2 __quota_error -EXPORT_SYMBOL vmlinux 0x30e6c104 vfs_path_lookup -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 0x3100cff9 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x31090f0c flow_indr_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x3121f812 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x3137a929 __do_once_done -EXPORT_SYMBOL vmlinux 0x31408d8c pnp_device_detach -EXPORT_SYMBOL vmlinux 0x3149d0cf kernel_write -EXPORT_SYMBOL vmlinux 0x31531c87 genphy_update_link -EXPORT_SYMBOL vmlinux 0x3159f223 tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0x317511b9 inet_stream_ops -EXPORT_SYMBOL vmlinux 0x3179732c tty_unlock -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 0x31e32e97 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x31e66c61 param_set_ushort -EXPORT_SYMBOL vmlinux 0x31f11f76 ip_mc_check_igmp -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 0x321e266b pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x32334bdb iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd -EXPORT_SYMBOL vmlinux 0x324d55cf __ps2_command -EXPORT_SYMBOL vmlinux 0x326dffaf flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach -EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x32aa3fd8 vif_device_init -EXPORT_SYMBOL vmlinux 0x32ab838b amba_driver_register -EXPORT_SYMBOL vmlinux 0x32ac8db5 eth_header_cache -EXPORT_SYMBOL vmlinux 0x32c1e30a locks_copy_lock -EXPORT_SYMBOL vmlinux 0x32c571c2 tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0x32ccdc37 tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -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 0x32fb522f skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl -EXPORT_SYMBOL vmlinux 0x331d5b4b param_set_short -EXPORT_SYMBOL vmlinux 0x33283f58 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down -EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x338d68e7 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x3393e83e tcf_exts_change -EXPORT_SYMBOL vmlinux 0x33a33d4f get_unmapped_area -EXPORT_SYMBOL vmlinux 0x33c3d4ff mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0x33c566b3 put_fs_context -EXPORT_SYMBOL vmlinux 0x33c5f598 netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0x33e727c2 kill_fasync -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 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 0x343967d4 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x344c54bd blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0x345702ba migrate_vma_setup -EXPORT_SYMBOL vmlinux 0x345fd765 dst_destroy -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 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x349d3f97 rt_dst_clone -EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd -EXPORT_SYMBOL vmlinux 0x34b16334 __next_node_in -EXPORT_SYMBOL vmlinux 0x34b934e8 ip_sock_set_recverr -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 0x34d4462a inet_sk_set_state -EXPORT_SYMBOL vmlinux 0x34dc81be netdev_lower_get_first_private_rcu -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 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 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x3575db4b vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x357d966f flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0x3599bf78 param_ops_long -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35c3a7a3 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x35c46917 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x35da2dde mmc_wait_for_req_done -EXPORT_SYMBOL vmlinux 0x35ff954f ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x362e0791 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x3635328d of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x3644fa47 xfrm_register_km -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 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 0x36b6ebbf down_killable -EXPORT_SYMBOL vmlinux 0x36be7c1f seq_release -EXPORT_SYMBOL vmlinux 0x36c228cd blk_cleanup_disk -EXPORT_SYMBOL vmlinux 0x36c55845 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x36e75a09 skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0x36ed0fab blk_rq_init -EXPORT_SYMBOL vmlinux 0x36f9438a seq_release_private -EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue -EXPORT_SYMBOL vmlinux 0x372becef dquot_quota_off -EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x37494d5a xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x3763c6f3 migrate_vma_finalize -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 0x37969c04 tty_register_device -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37d17599 clear_nlink -EXPORT_SYMBOL vmlinux 0x37d34e7e ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37e3ec9b vm_event_states -EXPORT_SYMBOL vmlinux 0x37f7d1e8 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x3808bac9 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381d6d27 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x382ef019 pci_read_vpd -EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x385681d3 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x3858c806 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x3874e706 sock_set_mark -EXPORT_SYMBOL vmlinux 0x3876523c dquot_initialize_needed -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 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 0x38ac6a04 blk_rq_map_kern -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 0x3928efe9 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x3941037c inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach -EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x395b5386 bdev_dax_pgoff -EXPORT_SYMBOL vmlinux 0x39619a53 get_cached_acl -EXPORT_SYMBOL vmlinux 0x397c429e unlock_rename -EXPORT_SYMBOL vmlinux 0x39881f75 skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0x398a73c5 __kfree_skb -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 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 0x39f09967 pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0x39f6b236 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x39fc9192 ip_fraglist_init -EXPORT_SYMBOL vmlinux 0x39fda2b2 get_tree_nodev -EXPORT_SYMBOL vmlinux 0x3a056012 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x3a070cad xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc -EXPORT_SYMBOL vmlinux 0x3a25b73e of_phy_is_fixed_link -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 0x3a4df67d simple_transaction_release -EXPORT_SYMBOL vmlinux 0x3a4e1b9d qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a5d2951 iptun_encaps -EXPORT_SYMBOL vmlinux 0x3a605d88 tcp_disconnect -EXPORT_SYMBOL vmlinux 0x3a7fb5fc simple_link -EXPORT_SYMBOL vmlinux 0x3a86f377 netdev_notice -EXPORT_SYMBOL vmlinux 0x3a8bb320 devm_clk_get -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 0x3aff3200 acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0x3b03aa34 phy_set_sym_pause -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 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b4a7b3a follow_pfn -EXPORT_SYMBOL vmlinux 0x3b5ec521 register_key_type -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b644898 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint -EXPORT_SYMBOL vmlinux 0x3b74c8f5 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x3b98eff6 nf_reinject -EXPORT_SYMBOL vmlinux 0x3ba11d51 kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x3ba86ba9 sk_error_report -EXPORT_SYMBOL vmlinux 0x3bc2a27d of_chosen -EXPORT_SYMBOL vmlinux 0x3bc9ae79 blk_integrity_register -EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3be78aa7 dev_add_pack -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 0x3c30ba0e mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr -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 0x3c59f70d page_cache_next_miss -EXPORT_SYMBOL vmlinux 0x3c873e19 twl6040_get_sysclk -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 0x3caf2084 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x3cb54535 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x3cc22e95 __i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x3cc51b86 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x3cca5240 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x3ccbab1b pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw -EXPORT_SYMBOL vmlinux 0x3cda3e03 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ce7d1b0 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x3cebeafd jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x3ceef1c1 __skb_pad -EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0x3d0fcead genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x3d4b0967 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x3d56db19 param_get_ushort -EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d662723 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x3d699bb2 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x3d72da42 locks_delete_block -EXPORT_SYMBOL vmlinux 0x3d851115 vfs_get_link -EXPORT_SYMBOL vmlinux 0x3d915b51 sock_no_connect -EXPORT_SYMBOL vmlinux 0x3d93c7c2 __arm_smccc_sve_check -EXPORT_SYMBOL vmlinux 0x3d98e57c eth_validate_addr -EXPORT_SYMBOL vmlinux 0x3d9afe7f rproc_add_subdev -EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page -EXPORT_SYMBOL vmlinux 0x3daa6d5d ip6_find_1stfragopt -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 0x3dad9978 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0x3db46076 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x3dbed966 component_match_add_release -EXPORT_SYMBOL vmlinux 0x3dc487b0 vga_get -EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -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 0x3df035b1 sk_stop_timer_sync -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 0x3e263043 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e5643d3 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x3e5c8a1a pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x3e73fdf3 eth_gro_receive -EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc -EXPORT_SYMBOL vmlinux 0x3e8fef6e jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0x3eb0800a inet_shutdown -EXPORT_SYMBOL vmlinux 0x3eb3cdf1 mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x3ec52a47 netpoll_setup -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 0x3f0dbf22 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f2456b8 phy_resume -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 0x3f566e89 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x3f61f824 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x3f666b75 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x3f67080c phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f8a578b phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0x3f9cd94a rproc_resource_cleanup -EXPORT_SYMBOL vmlinux 0x3fbd2d6c sock_no_getname -EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fc293fa tc_setup_cb_destroy -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 0x3feef1d8 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x3ffee70a __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x400713bb vfs_symlink -EXPORT_SYMBOL vmlinux 0x4010dff2 lease_get_mtime -EXPORT_SYMBOL vmlinux 0x401b6801 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x402a4c11 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x4032007d of_phy_connect -EXPORT_SYMBOL vmlinux 0x4048c598 dev_addr_add -EXPORT_SYMBOL vmlinux 0x405a8d30 configfs_unregister_group -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 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40b6ec0b udp_lib_unhash -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 0x40f37b03 nla_reserve -EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc -EXPORT_SYMBOL vmlinux 0x410210b9 kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0x4109e2ea dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x412ed05d crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x41304036 pci_pme_capable -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x414da5e5 qman_enqueue -EXPORT_SYMBOL vmlinux 0x41521039 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x416bb98a vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0x416eac33 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x416f1c78 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418f66b0 input_event -EXPORT_SYMBOL vmlinux 0x4196eb61 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x41b8db1c ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x41c2651f pci_read_config_dword -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 0x420396d4 mdiobus_free -EXPORT_SYMBOL vmlinux 0x42050507 deactivate_super -EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x42171b16 mptcp_subflow_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x42302679 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len -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 0x42578e80 acpi_get_type -EXPORT_SYMBOL vmlinux 0x428b17a1 netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0x4299dd84 generic_writepages -EXPORT_SYMBOL vmlinux 0x429af7dd netlink_ns_capable -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 0x42bed8d4 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x42cd67ea netdev_name_node_alt_destroy -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 0x431bfa2b xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate -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 0x4373aabe mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43a457d6 dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x43b614e6 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x43b61be3 netdev_pick_tx -EXPORT_SYMBOL vmlinux 0x43ba1031 amba_find_device -EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43d6371b xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x43db1768 to_nd_btt -EXPORT_SYMBOL vmlinux 0x43f20dd8 ip6tun_encaps -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 0x44146a1f jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x44201a7f skb_eth_push -EXPORT_SYMBOL vmlinux 0x443a6b6d console_stop -EXPORT_SYMBOL vmlinux 0x443f13d0 fman_get_revision -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 0x4462d35e cpufreq_get_hw_max_freq -EXPORT_SYMBOL vmlinux 0x44662dab configfs_register_group -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 0x4491670c ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x4497d76e blk_mq_init_allocated_queue -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 0x44c6a98f pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x44d685a6 pnp_get_resource -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44f286a5 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -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 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x452cca99 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x45382768 inet_dgram_connect -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 0x4577066e inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x457cd9c7 skb_queue_tail -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 0x45b708a9 phy_print_status -EXPORT_SYMBOL vmlinux 0x45c4f253 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x45d2ff51 vfs_fileattr_get -EXPORT_SYMBOL vmlinux 0x45d8d8e8 block_invalidatepage -EXPORT_SYMBOL vmlinux 0x45e7b871 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x460ac687 rawv6_mh_filter_register -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 0x465e24ff ucs2_utf8size -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -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 0x46a8b404 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x46b6592e unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46dea484 dev_get_stats -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 0x471c7b83 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x472bd57e of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x4742a8a8 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom -EXPORT_SYMBOL vmlinux 0x476da642 __block_write_begin -EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x4771c425 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x477fc4b9 __pskb_copy_fclone -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 0x47c20f8a refcount_dec_not_one -EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -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 0x47d8d301 __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0x47f98fd0 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x47fbfd89 scsi_vpd_tpg_id -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 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 -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 0x48608f24 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0x487bc74a inet_put_port -EXPORT_SYMBOL vmlinux 0x488b5e84 dcache_dir_lseek -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 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48bf4b51 console_start -EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x48cfe128 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x48d0fd54 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x48dd0925 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x48e210b2 mmc_of_parse_clk_phase -EXPORT_SYMBOL vmlinux 0x48eb8dae dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x48fb12b0 devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x4933ad77 seq_vprintf -EXPORT_SYMBOL vmlinux 0x4943a2b2 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x4947f2e1 tcf_block_get -EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 -EXPORT_SYMBOL vmlinux 0x496527a5 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x49654cf6 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0x498e2723 pipe_unlock -EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize -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 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 0x49e1b20a sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x4a0d5d23 tcf_em_register -EXPORT_SYMBOL vmlinux 0x4a1e0546 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x4a2d1ec6 hmm_range_fault -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 0x4a692167 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x4a6bdad1 mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0x4a7fefdd pps_lookup_dev -EXPORT_SYMBOL vmlinux 0x4a91e819 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free -EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4a9bce39 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x4aae16da param_get_hexint -EXPORT_SYMBOL vmlinux 0x4ab3e110 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x4acc0c26 netdev_err -EXPORT_SYMBOL vmlinux 0x4ad5bc78 seg6_hmac_info_lookup -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 0x4afb889a tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0x4b0890ca __skb_checksum -EXPORT_SYMBOL vmlinux 0x4b0a3f52 gic_nonsecure_priorities -EXPORT_SYMBOL vmlinux 0x4b0a68f8 set_binfmt -EXPORT_SYMBOL vmlinux 0x4b14dd49 simple_rmdir -EXPORT_SYMBOL vmlinux 0x4b1ca4af flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0x4b3072a6 ip_do_fragment -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b60d003 pcie_ptm_enabled -EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg -EXPORT_SYMBOL vmlinux 0x4b7172a2 set_cached_acl -EXPORT_SYMBOL vmlinux 0x4b7c19bf eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x4b846e98 kern_unmount -EXPORT_SYMBOL vmlinux 0x4b9988df mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x4ba0de50 of_phy_get_and_connect -EXPORT_SYMBOL vmlinux 0x4bb6537d inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x4bb98796 rproc_alloc -EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node -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 0x4bf08f70 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid -EXPORT_SYMBOL vmlinux 0x4bf6b4fe pcie_print_link_status -EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c0874d6 __break_lease -EXPORT_SYMBOL vmlinux 0x4c2164d9 __register_nls -EXPORT_SYMBOL vmlinux 0x4c2de7f7 reuseport_add_sock -EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x4c3e5f76 dma_sync_wait -EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c5127b4 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x4c615e7d mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0x4c8c626e tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x4c936303 skb_dump -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 0x4cc905d3 dma_pool_create -EXPORT_SYMBOL vmlinux 0x4d08036a serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -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 0x4d40eac4 of_match_node -EXPORT_SYMBOL vmlinux 0x4d45875b fs_param_is_enum -EXPORT_SYMBOL vmlinux 0x4d6165c3 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x4d6497d9 sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic -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 0x4d9e12ab i2c_del_driver -EXPORT_SYMBOL vmlinux 0x4da42d83 xp_set_rxq_info -EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq -EXPORT_SYMBOL vmlinux 0x4dc30cac seq_file_path -EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence -EXPORT_SYMBOL vmlinux 0x4dd22f45 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x4dda964a eth_mac_addr -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 0x4dfa8d4b mutex_lock -EXPORT_SYMBOL vmlinux 0x4dfdba3f backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x4e0af244 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x4e11cd1b in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set -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 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 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e7acf4d dump_skip -EXPORT_SYMBOL vmlinux 0x4e9200eb seg6_hmac_net_exit -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 0x4ece6342 free_mdio_bitbang -EXPORT_SYMBOL vmlinux 0x4ef1c063 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x4ef8b2e2 tty_do_resize -EXPORT_SYMBOL vmlinux 0x4f027bfe __acpi_mdiobus_register -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f30e161 inode_init_owner -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 0x4f709989 security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0x4f732bc9 fs_param_is_bool -EXPORT_SYMBOL vmlinux 0x4f798bf3 tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0x4f7dd294 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x4fc8d5e2 pskb_extract -EXPORT_SYMBOL vmlinux 0x4fd1f272 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x4fd89a5c security_inet_conn_established -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 0x5027bde2 acpi_acquire_mutex -EXPORT_SYMBOL vmlinux 0x502eca13 __mdiobus_read -EXPORT_SYMBOL vmlinux 0x505616fc debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x50624917 sha1_init -EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x507c6a90 of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check -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 0x50b73ce2 rfkill_find_type -EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x50bad5fc mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -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 0x50e300f6 inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0x50eb6ae5 zero_fill_bio -EXPORT_SYMBOL vmlinux 0x50f546fc dst_discard_out -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 0x511a3b77 unregister_shrinker -EXPORT_SYMBOL vmlinux 0x511d7219 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x512bd44d vm_map_ram -EXPORT_SYMBOL vmlinux 0x5138b23b dev_get_by_napi_id -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 0x5167b01d mark_page_accessed -EXPORT_SYMBOL vmlinux 0x516d42f5 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x5189c580 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0x51970fb5 devfreq_update_interval -EXPORT_SYMBOL vmlinux 0x51acfaf2 arp_xmit -EXPORT_SYMBOL vmlinux 0x51c17f2e security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x51c7e9d4 dm_kcopyd_copy -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 0x5203d176 cmd_db_ready -EXPORT_SYMBOL vmlinux 0x523b0b84 param_set_long -EXPORT_SYMBOL vmlinux 0x5256fdf5 __neigh_create -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 0x527b4b75 udp_pre_connect -EXPORT_SYMBOL vmlinux 0x52820c8b udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x528dd0ac textsearch_register -EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x529ec618 __register_chrdev -EXPORT_SYMBOL vmlinux 0x52b8b64c dcache_dir_open -EXPORT_SYMBOL vmlinux 0x52c1bc12 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x52c300aa sg_miter_skip -EXPORT_SYMBOL vmlinux 0x52d3ac50 neigh_connected_output -EXPORT_SYMBOL vmlinux 0x52d5047d ppp_channel_index -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 0x52fbaf99 cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x52fbd78c dev_mc_sync -EXPORT_SYMBOL vmlinux 0x52fc40ee key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x531f8622 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x53289b6f inet_frags_init -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 0x53362ab2 xfrm_lookup -EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x53585465 xfrm_init_state -EXPORT_SYMBOL vmlinux 0x535d2f61 __nla_put_64bit -EXPORT_SYMBOL vmlinux 0x536c3284 fsl_ifc_ctrl_dev -EXPORT_SYMBOL vmlinux 0x538581f2 blkdev_put -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 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 0x5402da9f xudma_navss_psil_pair -EXPORT_SYMBOL vmlinux 0x54054019 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x540940b4 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x54127d27 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x54246c77 phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x5439d628 devm_nvmem_cell_put -EXPORT_SYMBOL vmlinux 0x543b2e70 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x54409156 __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x54479de1 sk_reset_timer -EXPORT_SYMBOL vmlinux 0x545ca987 register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x547e2023 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x54933ab9 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x54a17075 cdev_init -EXPORT_SYMBOL vmlinux 0x54a5141b pcie_set_mps -EXPORT_SYMBOL vmlinux 0x54a59dc7 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value -EXPORT_SYMBOL vmlinux 0x54b64cb7 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x54d298b9 inet_protos -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 0x54f4eeb0 from_kprojid -EXPORT_SYMBOL vmlinux 0x54fb0ad0 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x5508f28d bman_acquire -EXPORT_SYMBOL vmlinux 0x550d376c reuseport_migrate_sock -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 0x5564921b udp6_csum_init -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 0x55aa2599 generic_setlease -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 0x56039c2c neigh_xmit -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 0x5619fed7 vfs_setpos -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -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 0x564fcc3f migrate_vma_pages -EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x569903d0 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x569fbcd7 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x56b819c8 msm_pinctrl_remove -EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56d2d065 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x56d581ae eth_get_headlen -EXPORT_SYMBOL vmlinux 0x56ed8b21 is_nd_pfn -EXPORT_SYMBOL vmlinux 0x57068d6c sock_bind_add -EXPORT_SYMBOL vmlinux 0x5738ff82 register_console -EXPORT_SYMBOL vmlinux 0x57392534 devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x574785e1 mdiobus_read -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x576229e4 dst_release_immediate -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 0x576ead1a xfrm_state_free -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 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x57a03ee3 fscrypt_decrypt_bio -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 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 0x58017a24 mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0x580f4ced cdev_device_add -EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0x5819b12f blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x5824128a inet_addr_type_table -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 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 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 0x588704a9 sg_miter_start -EXPORT_SYMBOL vmlinux 0x588c375f of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0x5898cec0 mmc_is_req_done -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 0x58b4645c dev_close_many -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58d6645d __serio_register_port -EXPORT_SYMBOL vmlinux 0x58dc4bbb udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -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 0x5952d09d security_inode_copy_up -EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x598f0492 inode_permission -EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg -EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node -EXPORT_SYMBOL vmlinux 0x59a2f0ee packing -EXPORT_SYMBOL vmlinux 0x59abcaf8 elv_rb_del -EXPORT_SYMBOL vmlinux 0x59b45c97 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59e0296b loop_register_transfer -EXPORT_SYMBOL vmlinux 0x59e231a2 d_mark_dontcache -EXPORT_SYMBOL vmlinux 0x59f19901 devm_rproc_alloc -EXPORT_SYMBOL vmlinux 0x59fa3ee4 max8998_read_reg -EXPORT_SYMBOL vmlinux 0x5a063ffe lookup_one_unlocked -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5a32d0a4 dev_get_by_name_rcu -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 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 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5a9706bc simple_recursive_removal -EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove -EXPORT_SYMBOL vmlinux 0x5ab4238f napi_disable -EXPORT_SYMBOL vmlinux 0x5ac37f1a get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x5ad015e0 con_is_bound -EXPORT_SYMBOL vmlinux 0x5ae0999b vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -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 0x5b31a51d fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax -EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store -EXPORT_SYMBOL vmlinux 0x5b3fa183 __napi_schedule -EXPORT_SYMBOL vmlinux 0x5b40c4c6 jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0x5b4c8a66 generic_iommu_put_resv_regions -EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup -EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b660d1b inet_addr_type -EXPORT_SYMBOL vmlinux 0x5b9cd72e security_socket_socketpair -EXPORT_SYMBOL vmlinux 0x5ba077f5 simple_get_link -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 0x5bd4ff88 flow_action_cookie_create -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 0x5bf3b11d ___pskb_trim -EXPORT_SYMBOL vmlinux 0x5bfb4c79 rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0x5c11e31f sock_no_linger -EXPORT_SYMBOL vmlinux 0x5c197cdc icmp6_send -EXPORT_SYMBOL vmlinux 0x5c21d47e inet_ioctl -EXPORT_SYMBOL vmlinux 0x5c23342f security_path_mkdir -EXPORT_SYMBOL vmlinux 0x5c239b7f alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c3d726b twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x5c5d614a inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0x5c7bad97 xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0x5c7f4cbd devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x5c910dff mount_bdev -EXPORT_SYMBOL vmlinux 0x5ca91e6c vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x5cae9486 iov_iter_discard -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 0x5d1da05c __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x5d25bdaa dentry_open -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 0x5d5d47a9 dcache_dir_close -EXPORT_SYMBOL vmlinux 0x5d6c910f __dec_zone_page_state -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 0x5da1fb94 super_setup_bdi -EXPORT_SYMBOL vmlinux 0x5da5b919 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh -EXPORT_SYMBOL vmlinux 0x5dbc0d1b netdev_alert -EXPORT_SYMBOL vmlinux 0x5dc28eaf dm_get_device -EXPORT_SYMBOL vmlinux 0x5ddf6a0f filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict -EXPORT_SYMBOL vmlinux 0x5e010519 register_cdrom -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 0x5e211a32 blk_queue_logical_block_size -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 0x5e670812 of_graph_get_port_by_id -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 0x5e958952 reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5ea76212 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x5eb188aa mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -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 0x5ed8dabf dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5ed974ea xfrm_input -EXPORT_SYMBOL vmlinux 0x5eec8f49 kthread_create_worker -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 0x5f24043b pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x5f49f7ed mdio_device_free -EXPORT_SYMBOL vmlinux 0x5f4a08cf dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x5f4bc66a napi_get_frags -EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption -EXPORT_SYMBOL vmlinux 0x5f5b5fc2 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x5f69fcc3 skb_eth_pop -EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f8e2fdf skb_free_datagram -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 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 0x601dd9b9 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x603e3416 nf_log_unset -EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x605a8556 inode_init_once -EXPORT_SYMBOL vmlinux 0x6060c6a9 netif_napi_add -EXPORT_SYMBOL vmlinux 0x607c3bd5 udp_read_sock -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 0x60b52f50 sock_kfree_s -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 0x61073e4a acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0x6111059d d_invalidate -EXPORT_SYMBOL vmlinux 0x6119447c rproc_set_firmware -EXPORT_SYMBOL vmlinux 0x6121feb0 io_uring_get_socket -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get -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 0x616ca3a9 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x61719843 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x617746d5 udp_set_csum -EXPORT_SYMBOL vmlinux 0x61777683 clear_bdi_congested -EXPORT_SYMBOL vmlinux 0x617be091 tcp_mss_to_mtu -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 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 0x61cb2372 __ip_select_ident -EXPORT_SYMBOL vmlinux 0x61cc1b61 pnp_is_active -EXPORT_SYMBOL vmlinux 0x61d3a6bc skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final -EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61ffb2f7 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x621302cd mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x62186fb1 rtc_add_group -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x62380551 ip6_output -EXPORT_SYMBOL vmlinux 0x623b968a rproc_detach -EXPORT_SYMBOL vmlinux 0x623eed87 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x6253f0ff ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x625e05e7 skb_copy_datagram_iter -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 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp -EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x629550ef netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0x629db721 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x62a5bb9c file_path -EXPORT_SYMBOL vmlinux 0x62b5d2e8 genphy_handle_interrupt_no_ack -EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62c455ba tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x62d48971 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal -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 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 0x63391577 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0x634366d8 inetdev_by_index -EXPORT_SYMBOL vmlinux 0x63456603 unpin_user_page -EXPORT_SYMBOL vmlinux 0x63484ba9 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x635ff882 user_path_at_empty -EXPORT_SYMBOL vmlinux 0x6360baa6 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x63705baf free_task -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 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 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63fcd235 dquot_quota_on -EXPORT_SYMBOL vmlinux 0x6401f9c8 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x640f97a8 ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x643f3068 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x644be12c qman_affine_cpus -EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 -EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x649e05ad ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x64a2690e napi_schedule_prep -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 0x64d20549 sock_recvmsg -EXPORT_SYMBOL vmlinux 0x64d3b1f1 nf_hook_slow -EXPORT_SYMBOL vmlinux 0x64d402b2 pci_iomap -EXPORT_SYMBOL vmlinux 0x64d6c7a0 __mdiobus_register -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 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 0x652ca2b2 done_path_create -EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x652de3ea skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x654449c3 memset16 -EXPORT_SYMBOL vmlinux 0x656227e9 ipv6_sock_mc_drop -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 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -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 0x65d04606 udp_gro_complete -EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning -EXPORT_SYMBOL vmlinux 0x65d43734 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65db8505 ipv6_sock_mc_join -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 0x660338a9 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x6611311e tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x66128baa zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x6626afca down -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 0x666fe332 vfs_rename -EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -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 0x669fb2e6 uart_add_one_port -EXPORT_SYMBOL vmlinux 0x66a8329d bio_kmalloc -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 0x66e98aa7 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x66f911f5 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x66f97c8a flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0x6703c6de tcp_sock_set_user_timeout -EXPORT_SYMBOL vmlinux 0x67065485 unregister_key_type -EXPORT_SYMBOL vmlinux 0x670c5af6 generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0x6716ce23 mpage_writepage -EXPORT_SYMBOL vmlinux 0x671f3c7d input_set_keycode -EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid -EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable -EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x6758b5e1 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x67620ad2 file_remove_privs -EXPORT_SYMBOL vmlinux 0x67669de6 skb_append -EXPORT_SYMBOL vmlinux 0x67870458 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x6794fee5 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x67999722 sock_release -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 0x67b2c284 sock_from_file -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read -EXPORT_SYMBOL vmlinux 0x67d52b17 dma_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x67e368a6 __nla_reserve -EXPORT_SYMBOL vmlinux 0x681b6670 is_firmware_framebuffer -EXPORT_SYMBOL vmlinux 0x682bb74c page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0x683a9560 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x68508c4f xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0x6861b648 tegra_dfll_register -EXPORT_SYMBOL vmlinux 0x6863d27a inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x68662d8d tcf_exts_num_actions -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 0x6899bdf0 nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0x689c2c81 vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0x689fb2e5 param_ops_bool -EXPORT_SYMBOL vmlinux 0x68ae3b95 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x68af3e19 page_mapped -EXPORT_SYMBOL vmlinux 0x68b14358 km_policy_expired -EXPORT_SYMBOL vmlinux 0x68ca0a54 iommu_get_msi_cookie -EXPORT_SYMBOL vmlinux 0x68ca78e5 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x68d55556 padata_do_serial -EXPORT_SYMBOL vmlinux 0x68f08da2 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s -EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0x69105149 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x69122deb no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x691b7b33 vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0x69267367 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x692c0c9e tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x6951d307 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x69585523 __ksize -EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x69715dc5 bdev_read_only -EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad -EXPORT_SYMBOL vmlinux 0x69a7cf24 md_write_end -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 0x69db9d7b xfrm_find_acq -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 0x6a03751f sgl_free_order -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a054de0 ip_output -EXPORT_SYMBOL vmlinux 0x6a0beb07 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x6a27914e vfs_mkdir -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 0x6a5cb5ee __get_free_pages -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a792ca4 mmc_get_card -EXPORT_SYMBOL vmlinux 0x6a90663a qman_schedule_fq -EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x6aa24ad8 sock_no_bind -EXPORT_SYMBOL vmlinux 0x6acd809b xfrm_state_add -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 0x6b04d69a mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0x6b0ad582 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x6b0f6832 audit_log -EXPORT_SYMBOL vmlinux 0x6b203c2d inet_frag_find -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 0x6b4b2933 __ioremap -EXPORT_SYMBOL vmlinux 0x6b510e26 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x6b51f79b scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -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 0x6b7fdc13 __of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x6b85377d unregister_nexthop_notifier -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 0x6b8dfe2e set_anon_super -EXPORT_SYMBOL vmlinux 0x6b986362 tso_build_data -EXPORT_SYMBOL vmlinux 0x6b99324b tcp_get_cookie_sock -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 0x6bac6b61 netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0x6bad221d d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x6bb41176 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x6bb9ac8e dentry_path_raw -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible -EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method -EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x6bfb9782 kernel_listen -EXPORT_SYMBOL vmlinux 0x6c01fb2d dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x6c115425 textsearch_unregister -EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x6c2f44b1 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x6c2faad7 arp_create -EXPORT_SYMBOL vmlinux 0x6c4954db tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x6c5e77f3 noop_qdisc -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x6c8155f2 __ip_dev_find -EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cbbfc54 __arch_copy_to_user -EXPORT_SYMBOL vmlinux 0x6cbcf11c get_tree_single -EXPORT_SYMBOL vmlinux 0x6cbee2af put_ipc_ns -EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums -EXPORT_SYMBOL vmlinux 0x6cf0f4d2 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x6cf2373b netif_rx -EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x6d1a2449 backlight_device_get_by_name -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 0x6d55c685 seg6_push_hmac -EXPORT_SYMBOL vmlinux 0x6d5de0e0 of_device_unregister -EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x6d626cb1 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw -EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d8f503f __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x6da467cb pfn_is_map_memory -EXPORT_SYMBOL vmlinux 0x6db06e40 kthread_destroy_worker -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 0x6dd6b2b7 seq_path -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6dfdc52b input_get_keycode -EXPORT_SYMBOL vmlinux 0x6dfdf4cf xfrm4_udp_encap_rcv -EXPORT_SYMBOL vmlinux 0x6dfe7ee7 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x6e09911d flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0x6e1361da set_disk_ro -EXPORT_SYMBOL vmlinux 0x6e1e9c28 udp_ioctl -EXPORT_SYMBOL vmlinux 0x6e29b7a0 ata_print_version -EXPORT_SYMBOL vmlinux 0x6e44d2fa blk_mq_complete_request -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 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e82ef9d bio_add_page -EXPORT_SYMBOL vmlinux 0x6e8a5582 follow_down_one -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 0x6ee71de9 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x6ef2b034 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x6ef9b575 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x6efbe89d scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0x6f0e2971 dquot_commit -EXPORT_SYMBOL vmlinux 0x6f15b80c _dev_emerg -EXPORT_SYMBOL vmlinux 0x6f2af0b2 single_release -EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x6f43d99d iterate_dir -EXPORT_SYMBOL vmlinux 0x6f4adec7 mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0x6f57b693 write_inode_now -EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address -EXPORT_SYMBOL vmlinux 0x6f5cecf2 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x6f7c289c jbd2_submit_inode_data -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 0x6fc8c749 i2c_transfer -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fe1f367 sk_alloc -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 0x700e7ebf find_inode_rcu -EXPORT_SYMBOL vmlinux 0x70145e48 kern_path_create -EXPORT_SYMBOL vmlinux 0x701a651b jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier -EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x70335f14 block_read_full_page -EXPORT_SYMBOL vmlinux 0x7038376c __get_hash_from_flowi6 -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 0x706c36b8 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x707987e1 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x70975df0 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x70a1e463 __skb_ext_del -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 0x71034a7b cfb_copyarea -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x7130f0e4 netdev_lower_get_next -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 0x715fb066 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0x71653f8f inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x7165cae6 devm_of_iomap -EXPORT_SYMBOL vmlinux 0x716a4a85 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x717be53d __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x719c0402 bdevname -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71aa798a vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x71b0bbd5 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0x71c548c9 vfs_fileattr_set -EXPORT_SYMBOL vmlinux 0x71cbf893 genphy_c37_config_aneg -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 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 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x724ed143 mfd_cell_disable -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 0x726bc3c7 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x72718643 tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0x72959e39 tegra_ivc_write_get_next_frame -EXPORT_SYMBOL vmlinux 0x729843da __i2c_transfer -EXPORT_SYMBOL vmlinux 0x729fbc16 vfs_statfs -EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable -EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72be5085 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x72f33854 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x7301b591 netdev_emerg -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 0x732b723e max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x7336a141 bio_reset -EXPORT_SYMBOL vmlinux 0x73564ebd ip6_dst_alloc -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 0x73998efa cpm_muram_free_addr -EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get -EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73d90a35 vm_insert_pages -EXPORT_SYMBOL vmlinux 0x73ee4526 vmf_insert_pfn -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 0x742efdc4 sk_capable -EXPORT_SYMBOL vmlinux 0x742f1324 nobh_write_begin -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 0x7473e36e fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x74b2c08c __netdev_alloc_skb -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 0x74ca42f4 sock_recv_errqueue -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 0x751a490c scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x7527da50 del_gendisk -EXPORT_SYMBOL vmlinux 0x7536e8bb mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x7547fcf2 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x7555dfaf inet_add_protocol -EXPORT_SYMBOL vmlinux 0x755b78c6 meson_sm_call_write -EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic -EXPORT_SYMBOL vmlinux 0x7566c1e9 dup_iter -EXPORT_SYMBOL vmlinux 0x75742e49 security_task_getsecid_subj -EXPORT_SYMBOL vmlinux 0x7581b559 build_skb_around -EXPORT_SYMBOL vmlinux 0x75822b9c xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x758feb24 nvdimm_namespace_capacity -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 0x75c29edc mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x75cae2af vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x760abc0b __getblk_gfp -EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x76426e1d inet6_release -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 0x765ddaeb devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x766ca4cb mr_table_alloc -EXPORT_SYMBOL vmlinux 0x76769472 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76bfb2c4 unregister_nls -EXPORT_SYMBOL vmlinux 0x76c6f808 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x76d005b6 md_register_thread -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76e75c1e ptp_find_pin_unlocked -EXPORT_SYMBOL vmlinux 0x76e81cf7 vme_master_mmap -EXPORT_SYMBOL vmlinux 0x771074b4 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x771185fb tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x771f9888 netdev_port_same_parent_id -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 0x773bcacb __inet6_lookup_established -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 0x7762076f mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 -EXPORT_SYMBOL vmlinux 0x777a47ff override_creds -EXPORT_SYMBOL vmlinux 0x778005f9 kill_pgrp -EXPORT_SYMBOL vmlinux 0x7785bb1e simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x779a559b kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0x77ace87d ps2_begin_command -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77c0dacc jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77f90ad3 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x77fc0f12 PageMovable -EXPORT_SYMBOL vmlinux 0x78025883 of_phy_deregister_fixed_link -EXPORT_SYMBOL vmlinux 0x78051393 ipv4_specific -EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x781b73ca inet_bind -EXPORT_SYMBOL vmlinux 0x783fc153 may_umount -EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x785bc6f8 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x786437ce sock_wake_async -EXPORT_SYMBOL vmlinux 0x7870cf8b sync_blockdev -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x788e2f41 phy_advertise_supported -EXPORT_SYMBOL vmlinux 0x789208de tcf_qevent_init -EXPORT_SYMBOL vmlinux 0x78938438 set_posix_acl -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 0x78b6c2f9 xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78bf5d42 bioset_init -EXPORT_SYMBOL vmlinux 0x78c4987c proto_register -EXPORT_SYMBOL vmlinux 0x78c54b6b d_alloc_anon -EXPORT_SYMBOL vmlinux 0x78c90942 security_path_rename -EXPORT_SYMBOL vmlinux 0x78d4a9fe finish_swait -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x79108771 simple_nosetlease -EXPORT_SYMBOL vmlinux 0x7915dd8e filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x79304285 register_netdevice -EXPORT_SYMBOL vmlinux 0x7932dd7d input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x79426515 kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x7946c9b8 __sock_create -EXPORT_SYMBOL vmlinux 0x7957390a update_region -EXPORT_SYMBOL vmlinux 0x795992df tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin -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 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79aea15b dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x79b08e63 ip_defrag -EXPORT_SYMBOL vmlinux 0x79d3faa4 flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0x79e8f568 mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug -EXPORT_SYMBOL vmlinux 0x79fff03d sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x7a0f8bed xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a325231 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x7a3a9b85 ipv6_dev_find -EXPORT_SYMBOL vmlinux 0x7a4d0b60 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x7a4df959 rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists -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 0x7aa7124b unregister_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x7ab45d25 dma_fence_array_create -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7abafce0 km_policy_notify -EXPORT_SYMBOL vmlinux 0x7abb1a7a kernel_getsockname -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 0x7ae4083d clear_inode -EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum -EXPORT_SYMBOL vmlinux 0x7ae9fbbb do_clone_file_range -EXPORT_SYMBOL vmlinux 0x7af0c9bd ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0x7af5bad5 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x7b0d1dfc rproc_da_to_va -EXPORT_SYMBOL vmlinux 0x7b166506 ppp_input_error -EXPORT_SYMBOL vmlinux 0x7b191421 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0x7b216b76 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x7b28d695 begin_new_exec -EXPORT_SYMBOL vmlinux 0x7b301ed8 generic_permission -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 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b717e26 dev_addr_flush -EXPORT_SYMBOL vmlinux 0x7b7caccd nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace -EXPORT_SYMBOL vmlinux 0x7b9aa29e tc_setup_cb_replace -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 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bbebdca tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0x7bc0b896 page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0x7bc30e82 inode_needs_sync -EXPORT_SYMBOL vmlinux 0x7bd04830 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x7bd7e927 security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0x7bdcf200 xp_can_alloc -EXPORT_SYMBOL vmlinux 0x7bf8f785 __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0x7bff702a tcf_exts_terse_dump -EXPORT_SYMBOL vmlinux 0x7c001d3f of_get_next_cpu_node -EXPORT_SYMBOL vmlinux 0x7c042d76 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c1ef14e proc_create_data -EXPORT_SYMBOL vmlinux 0x7c279a12 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x7c2c812e phy_loopback -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -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 0x7c5dd3f5 genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x7c5f4d99 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x7c6c62fd __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x7c745228 dev_mc_add -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 0x7ca8ab30 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 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 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d4e954c single_open_size -EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x7d6e7ef3 __icmp_send -EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x7d9a5efa new_inode -EXPORT_SYMBOL vmlinux 0x7d9eadc4 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert -EXPORT_SYMBOL vmlinux 0x7ddc38a1 phy_driver_register -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7df7412b md_handle_request -EXPORT_SYMBOL vmlinux 0x7e19e679 __scm_send -EXPORT_SYMBOL vmlinux 0x7e206ee1 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e370342 dev_add_offload -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 0x7eb07498 __post_watch_notification -EXPORT_SYMBOL vmlinux 0x7ebe6b32 generic_file_mmap -EXPORT_SYMBOL vmlinux 0x7ec3ac66 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x7ee608c9 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x7ee61f82 simple_release_fs -EXPORT_SYMBOL vmlinux 0x7ef2ae9c xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x7ef62283 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x7efc743a devm_free_irq -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f16569e scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f3558d1 ip6_xmit -EXPORT_SYMBOL vmlinux 0x7f3d0d63 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x7f52071a net_dim -EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table -EXPORT_SYMBOL vmlinux 0x7f6a7746 tcp_mmap -EXPORT_SYMBOL vmlinux 0x7f7871cc cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x7f7be8b4 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f8746af inode_add_bytes -EXPORT_SYMBOL vmlinux 0x7f9361ab jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x7f95deda tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x7f97e272 cdev_set_parent -EXPORT_SYMBOL vmlinux 0x7fad3ae4 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x7fcbe311 uart_register_driver -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 0x7fe40ce1 d_make_root -EXPORT_SYMBOL vmlinux 0x7ff933cf unix_destruct_scm -EXPORT_SYMBOL vmlinux 0x7ffea906 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x80010304 pci_disable_ptm -EXPORT_SYMBOL vmlinux 0x80192dd5 dump_skip_to -EXPORT_SYMBOL vmlinux 0x8024b9d8 __block_write_full_page -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 0x80799cbf scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x80928e8b vlan_dev_vlan_id -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 0x80b4a670 ether_setup -EXPORT_SYMBOL vmlinux 0x80ba33b3 inet6_getname -EXPORT_SYMBOL vmlinux 0x80c5807f tso_count_descs -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80cd5331 phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -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 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 0x81389fc8 inet_select_addr -EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page -EXPORT_SYMBOL vmlinux 0x81638136 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x81755565 of_mdiobus_child_is_phy -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 0x81ac5e33 trace_print_hex_dump_seq -EXPORT_SYMBOL vmlinux 0x81b1de9c tcf_block_put -EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand -EXPORT_SYMBOL vmlinux 0x81d6115a __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81e643db mdio_bus_type -EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81f6a8b9 page_pool_alloc_frag -EXPORT_SYMBOL vmlinux 0x820773cb xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x823d3505 cmxgcr_lock -EXPORT_SYMBOL vmlinux 0x82435b0a jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x824a0f4a d_prune_aliases -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 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82a8af35 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x82a9f87d fd_install -EXPORT_SYMBOL vmlinux 0x82ad31f7 flow_rule_match_ct -EXPORT_SYMBOL vmlinux 0x82bacbd0 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x82c1eff1 of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0x82c6becd inet_add_offload -EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82d3b49c dev_deactivate -EXPORT_SYMBOL vmlinux 0x82ec01c1 skb_queue_head -EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync -EXPORT_SYMBOL vmlinux 0x83039b42 dma_async_device_register -EXPORT_SYMBOL vmlinux 0x83287012 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x834b9fb6 d_instantiate_new -EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x8368e3ff ip6_frag_init -EXPORT_SYMBOL vmlinux 0x8372baf8 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x839232cf blackhole_netdev -EXPORT_SYMBOL vmlinux 0x83b92be7 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x83ddf1a4 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free -EXPORT_SYMBOL vmlinux 0x840ed633 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x84286743 devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x84335790 pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0x8435a478 genphy_resume -EXPORT_SYMBOL vmlinux 0x84480907 neigh_lookup -EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0x846720f2 skb_copy_header -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 0x84952bc0 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x84b890f5 genphy_suspend -EXPORT_SYMBOL vmlinux 0x84c08903 phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x84c4040c security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0x84d9ea5c skb_pull -EXPORT_SYMBOL vmlinux 0x84da3ce4 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x85123736 tcf_action_update_stats -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 0x8527a885 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x852ca423 vfs_get_fsid -EXPORT_SYMBOL vmlinux 0x852d7882 inet6_bind -EXPORT_SYMBOL vmlinux 0x853cc60d page_pool_put_page -EXPORT_SYMBOL vmlinux 0x854ba571 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x854fec83 tegra_sku_info -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x8594fb5e tcp_create_openreq_child -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 0x85b42e92 netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85d8a5c8 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x86136909 dev_change_proto_down -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 0x8648c324 discard_new_inode -EXPORT_SYMBOL vmlinux 0x864e8648 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x865400ef alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x86713d41 __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x86756a14 blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x868ab847 tcp_shutdown -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 0x86b3eb2e unregister_quota_format -EXPORT_SYMBOL vmlinux 0x86b95961 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant -EXPORT_SYMBOL vmlinux 0x86e64b8b tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0x86f84cac ip6_route_me_harder -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 0x87196013 md_integrity_register -EXPORT_SYMBOL vmlinux 0x872d91b6 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x8737b1bb __mod_node_page_state -EXPORT_SYMBOL vmlinux 0x874868b1 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x8759925c bdev_check_media_change -EXPORT_SYMBOL vmlinux 0x875e7ac5 component_match_add_typed -EXPORT_SYMBOL vmlinux 0x875f160e reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed -EXPORT_SYMBOL vmlinux 0x87726349 pneigh_lookup -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 0x87940493 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x879a1614 page_pool_return_skb_page -EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds -EXPORT_SYMBOL vmlinux 0x87b16255 vfs_tmpfile -EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87c4539c netdev_crit -EXPORT_SYMBOL vmlinux 0x87d436e1 set_create_files_as -EXPORT_SYMBOL vmlinux 0x87dbb23e module_layout -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 0x88233752 ps2_handle_response -EXPORT_SYMBOL vmlinux 0x88339807 devm_memunmap -EXPORT_SYMBOL vmlinux 0x884e7fc4 dquot_acquire -EXPORT_SYMBOL vmlinux 0x88519e54 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x886f5af0 vm_insert_page -EXPORT_SYMBOL vmlinux 0x8871c063 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x88759173 sock_bindtoindex -EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x88829361 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x88892bb2 eth_header_parse -EXPORT_SYMBOL vmlinux 0x888f30b0 pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0x889226b6 sock_kmalloc -EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x88a4459a serio_rescan -EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x88afff65 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x88b462c5 poll_initwait -EXPORT_SYMBOL vmlinux 0x88c25729 dev_lstats_read -EXPORT_SYMBOL vmlinux 0x88d66b91 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88e0a9a5 tty_port_open -EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88f4bec3 ip_local_deliver -EXPORT_SYMBOL vmlinux 0x88fe117e of_parse_phandle -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 0x897eb38c netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x89b1d954 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x89b492bf framebuffer_release -EXPORT_SYMBOL vmlinux 0x89b6e4b3 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x89d5edf5 dev_printk_emit -EXPORT_SYMBOL vmlinux 0x89f5486d udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x8a0a1153 flow_indr_dev_setup_offload -EXPORT_SYMBOL vmlinux 0x8a104766 wireless_send_event -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 0x8a47043d LZ4_decompress_safe_continue -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -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 0x8a7148f5 sock_no_accept -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a80a9f9 inet_proto_csum_replace16 -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 0x8aa087b7 make_kuid -EXPORT_SYMBOL vmlinux 0x8aab64b2 prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0x8abd542b unregister_md_personality -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 0x8ada9d49 unregister_netdev -EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -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 0x8b15ac25 pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0x8b18d39d tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x8b2ffd83 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x8b514669 filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0x8b5fb2fd input_free_device -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b709202 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x8b7223fb flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x8b743cc4 phy_mii_ioctl -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 0x8ba15d04 param_ops_short -EXPORT_SYMBOL vmlinux 0x8bc94771 vfs_ioctl -EXPORT_SYMBOL vmlinux 0x8bca036e netif_carrier_off -EXPORT_SYMBOL vmlinux 0x8bd752c9 netlbl_calipso_ops_register -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 0x8c12f0fe phy_start_cable_test_tdr -EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x8c311419 pci_irq_vector -EXPORT_SYMBOL vmlinux 0x8c4ca0c0 page_pool_put_page_bulk -EXPORT_SYMBOL vmlinux 0x8c507bf3 arp_send -EXPORT_SYMBOL vmlinux 0x8c63739d mntput -EXPORT_SYMBOL vmlinux 0x8c683fcd posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x8c7cefe3 sock_no_listen -EXPORT_SYMBOL vmlinux 0x8c84dc4f inet_getname -EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c921e7a tcp_req_err -EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error -EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid -EXPORT_SYMBOL vmlinux 0x8cb533a2 blk_execute_rq -EXPORT_SYMBOL vmlinux 0x8cb60943 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x8cb66e03 dst_alloc -EXPORT_SYMBOL vmlinux 0x8cb78c5d sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x8cbcac4b readahead_expand -EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin -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 0x8cf9a7ec dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x8d1f0d39 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d709691 blk_put_queue -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d8c0764 cdev_device_del -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 0x8daedb79 cpumask_any_but -EXPORT_SYMBOL vmlinux 0x8dd01f6b udp_gro_receive -EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8df3e5be netdev_reset_tc -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 0x8e21c9a1 dma_fence_add_callback -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 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 0x8e7a73de sock_set_reuseport -EXPORT_SYMBOL vmlinux 0x8e8355ea scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x8e8f362a __phy_resume -EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8ea4d359 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x8eae7781 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x8edce8a8 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f277299 get_acl -EXPORT_SYMBOL vmlinux 0x8f3abfee pci_release_resource -EXPORT_SYMBOL vmlinux 0x8f3f18f9 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x8f50e0ee __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x8f559aa7 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0x8f9349a1 sk_stop_timer -EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find -EXPORT_SYMBOL vmlinux 0x8fa52af0 dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0x8fb74b62 sock_create_kern -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 0x8fe93fdc t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x8fec9449 tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit -EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x9020c8ac netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x902719f0 skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0x902c726a serio_open -EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get -EXPORT_SYMBOL vmlinux 0x902f5199 cpumask_next_wrap -EXPORT_SYMBOL vmlinux 0x902fa664 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x903290dd tty_port_close_start -EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy -EXPORT_SYMBOL vmlinux 0x9042fe6f neigh_for_each -EXPORT_SYMBOL vmlinux 0x9053e579 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x90735938 vme_master_request -EXPORT_SYMBOL vmlinux 0x907ea00e set_security_override -EXPORT_SYMBOL vmlinux 0x90816ff5 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x908e5601 cpu_hwcaps -EXPORT_SYMBOL vmlinux 0x90a03c40 skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0x90aec577 pskb_expand_head -EXPORT_SYMBOL vmlinux 0x90b630c0 __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x90bcd860 gro_cells_receive -EXPORT_SYMBOL vmlinux 0x90c66ecd input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x90d3742e ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0x90d5dddc nd_device_notify -EXPORT_SYMBOL vmlinux 0x90e273e2 cred_fscmp -EXPORT_SYMBOL vmlinux 0x9110a499 genphy_c37_read_status -EXPORT_SYMBOL vmlinux 0x91120096 sock_sendmsg -EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc -EXPORT_SYMBOL vmlinux 0x91567d15 set_anon_super_fc -EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x91724cd7 of_device_get_match_data -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 0x91bd2f88 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x91bdda6e nvdimm_check_and_set_ro -EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91cbb024 submit_bio_noacct -EXPORT_SYMBOL vmlinux 0x91cede12 dma_resv_fini -EXPORT_SYMBOL vmlinux 0x91ddfbdf nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x91df7bb2 scm_detach_fds -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 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 0x924d1c68 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait -EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x9264a967 _dev_warn -EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool -EXPORT_SYMBOL vmlinux 0x92807a14 input_set_abs_params -EXPORT_SYMBOL vmlinux 0x9280f1c2 dev_set_alias -EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x92997ed8 _printk -EXPORT_SYMBOL vmlinux 0x92a373d3 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table -EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -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 0x92f65947 ip_frag_init -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 0x9343318c mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x934e6c4e tcf_qevent_handle -EXPORT_SYMBOL vmlinux 0x9364039f inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x937e87b1 key_link -EXPORT_SYMBOL vmlinux 0x93910c66 __page_symlink -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 0x93bb6f26 tcp_mtu_to_mss -EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all -EXPORT_SYMBOL vmlinux 0x93dcf8ee buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x9407c2fa sock_set_keepalive -EXPORT_SYMBOL vmlinux 0x940de538 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x9411c355 page_pool_update_nid -EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x94296edc xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x942dd879 __vfs_removexattr -EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages -EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x945c339a proc_remove -EXPORT_SYMBOL vmlinux 0x94697bbf __bforget -EXPORT_SYMBOL vmlinux 0x947eb305 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x9487d3e1 ns_capable -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94a9218c free_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x94b16839 unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x94b2ec5a __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo -EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94db0715 pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0x94dbba80 vfs_fadvise -EXPORT_SYMBOL vmlinux 0x94e3c40c skb_checksum_help -EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier -EXPORT_SYMBOL vmlinux 0x94f366e9 get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0x94fc8d93 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x95043411 uart_match_port -EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x95123d8c ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x952aff3c tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x954ba813 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc -EXPORT_SYMBOL vmlinux 0x954f010c __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x956891d4 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x9576de7f super_setup_bdi_name -EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table -EXPORT_SYMBOL vmlinux 0x95b51043 migrate_page_copy -EXPORT_SYMBOL vmlinux 0x95cd8174 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x96162bb8 dma_map_page_attrs -EXPORT_SYMBOL vmlinux 0x963f6f47 page_pool_release_page -EXPORT_SYMBOL vmlinux 0x9641d92e blkdev_compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x9647f6bb xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x964fd457 textsearch_prepare -EXPORT_SYMBOL vmlinux 0x96683b50 rtnl_nla_parse_ifinfomsg -EXPORT_SYMBOL vmlinux 0x967d2b0f page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x96848186 scnprintf -EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr -EXPORT_SYMBOL vmlinux 0x9696fc42 inet_recvmsg -EXPORT_SYMBOL vmlinux 0x969b575b devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x969ee56f skb_tx_error -EXPORT_SYMBOL vmlinux 0x96adc860 xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x96b0b8b3 dma_free_attrs -EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96b99605 dev_get_by_index -EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -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 0x97349b08 netlink_net_capable -EXPORT_SYMBOL vmlinux 0x97370a92 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x974adce6 __scm_destroy -EXPORT_SYMBOL vmlinux 0x9757aee8 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x977c8cd1 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x97879b4f consume_skb -EXPORT_SYMBOL vmlinux 0x979635da kthread_blkcg -EXPORT_SYMBOL vmlinux 0x979a7152 dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0x979e3987 rproc_shutdown -EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97b6c425 genphy_read_status_fixed -EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97bf726e phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0x97c3ba9f __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x97c4ee4c finalize_exec -EXPORT_SYMBOL vmlinux 0x97e2789a commit_creds -EXPORT_SYMBOL vmlinux 0x97e8adad tcf_qevent_dump -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 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 0x982f1743 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x982fad89 account_page_redirty -EXPORT_SYMBOL vmlinux 0x983a5486 lookup_one_positive_unlocked -EXPORT_SYMBOL vmlinux 0x9858ae2f inet_accept -EXPORT_SYMBOL vmlinux 0x98608256 vfs_create -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 0x98a9426e nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x98b2eeb6 to_nd_dax -EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen -EXPORT_SYMBOL vmlinux 0x98d3759b dev_pre_changeaddr_notify -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 0x99078b39 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available -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 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x996e6699 mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x997cd4b5 skb_copy -EXPORT_SYMBOL vmlinux 0x99911e3a sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0x999ca12c scsi_register_interface -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99a5733f mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x99abb158 tegra_dfll_resume -EXPORT_SYMBOL vmlinux 0x99b7c242 skb_copy_expand -EXPORT_SYMBOL vmlinux 0x99bf6f82 d_set_d_op -EXPORT_SYMBOL vmlinux 0x99c742e6 genphy_aneg_done -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 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 0x9a17342b skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x9a36b703 ipv6_select_ident -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 0x9a585b16 tcp_check_req -EXPORT_SYMBOL vmlinux 0x9a634e48 netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x9a7a53df page_get_link -EXPORT_SYMBOL vmlinux 0x9a828432 register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x9a9c864e ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ac6f056 iget5_locked -EXPORT_SYMBOL vmlinux 0x9ad8deeb bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x9ae0bd5b touch_buffer -EXPORT_SYMBOL vmlinux 0x9ae3e711 netdev_state_change -EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9b052aeb sk_stream_wait_connect -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 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 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 0x9b861dd4 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x9b958aca sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x9b992775 kernel_bind -EXPORT_SYMBOL vmlinux 0x9b9a33a8 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0x9b9d738a fs_param_is_string -EXPORT_SYMBOL vmlinux 0x9beef6aa md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x9bfdf1ec security_unix_stream_connect -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 0x9c4335be bio_devname -EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs -EXPORT_SYMBOL vmlinux 0x9c5d5b94 crc8 -EXPORT_SYMBOL vmlinux 0x9c7d02ac fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9ca2a5b8 udp_seq_stop -EXPORT_SYMBOL vmlinux 0x9ca8b8ed inet_frag_kill -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cbbfeb0 d_find_any_alias -EXPORT_SYMBOL vmlinux 0x9cc4b4b9 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x9ccc7902 generic_file_llseek_size -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 0x9ce09b47 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x9ce6b724 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x9cea4329 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy -EXPORT_SYMBOL vmlinux 0x9d1d383d udp_flush_pending_frames -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 0x9d40995c ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x9d649180 fiemap_prep -EXPORT_SYMBOL vmlinux 0x9d899a89 inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0x9d8c8d35 inet_sendmsg -EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context -EXPORT_SYMBOL vmlinux 0x9da5771c sock_create_lite -EXPORT_SYMBOL vmlinux 0x9dafe097 pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0x9db91ebf dev_set_threaded -EXPORT_SYMBOL vmlinux 0x9ddbd648 dev_change_flags -EXPORT_SYMBOL vmlinux 0x9ddf6f97 __dec_node_page_state -EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel -EXPORT_SYMBOL vmlinux 0x9e013421 skb_find_text -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 0x9e447793 d_alloc_parallel -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e5d9f9b from_kuid_munged -EXPORT_SYMBOL vmlinux 0x9e5e750d node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x9e605b15 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e75aca3 migrate_page -EXPORT_SYMBOL vmlinux 0x9e7701da __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e861882 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x9e8c5c85 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup -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 0x9ec256b5 pnp_unregister_card_driver -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 0x9edb9968 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x9ef8ab9c gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x9f052861 of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x9f0dabca xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x9f21c4d8 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0x9f46c07f dev_queue_xmit_accel -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 0x9f685ce6 tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw -EXPORT_SYMBOL vmlinux 0x9f81044d jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9f9f85a9 skb_tunnel_check_pmtu -EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fc74edb skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fe4b3d8 pci_bus_type -EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa0002d81 phy_init_hw -EXPORT_SYMBOL vmlinux 0xa001405d find_vma -EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0xa022c739 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xa02d7af7 napi_gro_frags -EXPORT_SYMBOL vmlinux 0xa033d747 next_arg -EXPORT_SYMBOL vmlinux 0xa03426b6 __register_binfmt -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -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 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 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 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 0xa0eae826 smp_call_function -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa10a91e1 regset_get_alloc -EXPORT_SYMBOL vmlinux 0xa115ce6e scm_fp_dup -EXPORT_SYMBOL vmlinux 0xa11cfa2c edac_mc_find -EXPORT_SYMBOL vmlinux 0xa1253eda cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0xa13e780a gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xa14662f1 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0xa14e4866 mmc_can_trim -EXPORT_SYMBOL vmlinux 0xa15b044f vme_slave_request -EXPORT_SYMBOL vmlinux 0xa160bea1 file_ns_capable -EXPORT_SYMBOL vmlinux 0xa17857d7 from_kgid -EXPORT_SYMBOL vmlinux 0xa1d70be9 scsi_dma_map -EXPORT_SYMBOL vmlinux 0xa1daf54c __dev_remove_pack -EXPORT_SYMBOL vmlinux 0xa2035ac6 qcom_scm_set_warm_boot_addr -EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa22d3fab xp_alloc -EXPORT_SYMBOL vmlinux 0xa22e57f8 tcp_release_cb -EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0xa236cbe8 __netif_schedule -EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort -EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa257020e dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte -EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xa26b6879 iov_iter_zero -EXPORT_SYMBOL vmlinux 0xa285f538 netdev_upper_get_next_dev_rcu -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 0xa2c6304b qdisc_create_dflt -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 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 0xa347197d skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xa3522df5 qman_query_fq_np -EXPORT_SYMBOL vmlinux 0xa35790b9 ll_rw_block -EXPORT_SYMBOL vmlinux 0xa35e6137 dquot_transfer -EXPORT_SYMBOL vmlinux 0xa372643d xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0xa37e4131 genphy_read_status -EXPORT_SYMBOL vmlinux 0xa39ee27d vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0xa3a3f229 cpumask_next_and -EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch -EXPORT_SYMBOL vmlinux 0xa3c261e9 mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0xa3c2e498 vfs_get_tree -EXPORT_SYMBOL vmlinux 0xa3c85eb9 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update -EXPORT_SYMBOL vmlinux 0xa3d5697f init_pseudo -EXPORT_SYMBOL vmlinux 0xa3e9ec4b nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xa3f9130e xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0xa3fa48ee pci_assign_resource -EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits -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 0xa419337f __scsi_execute -EXPORT_SYMBOL vmlinux 0xa41c358e mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0xa429667c iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0xa4370296 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0xa43bf5f6 sock_gettstamp -EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key -EXPORT_SYMBOL vmlinux 0xa46500c5 param_get_ullong -EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction -EXPORT_SYMBOL vmlinux 0xa48571ee mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0xa493cfe2 pci_clear_master -EXPORT_SYMBOL vmlinux 0xa4c16928 uart_update_timeout -EXPORT_SYMBOL vmlinux 0xa4d48286 eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0xa4e4ce1d nf_log_packet -EXPORT_SYMBOL vmlinux 0xa4f7bba1 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock -EXPORT_SYMBOL vmlinux 0xa4fd8a31 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0xa5064be7 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0xa508c4f6 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit -EXPORT_SYMBOL vmlinux 0xa51643d1 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xa518cd07 mmc_start_request -EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply -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 0xa5877e2f inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0xa595f6bc kobject_init -EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock -EXPORT_SYMBOL vmlinux 0xa599773d acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0xa5d06b2d backlight_device_set_brightness -EXPORT_SYMBOL vmlinux 0xa5d4a57c sb_min_blocksize -EXPORT_SYMBOL vmlinux 0xa5dc8a73 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0xa5ed4abf dget_parent -EXPORT_SYMBOL vmlinux 0xa5f4c56e param_get_ulong -EXPORT_SYMBOL vmlinux 0xa5f7cf37 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xa609c265 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0xa60c51e8 tty_unthrottle -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 0xa63bdb91 bio_split -EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds -EXPORT_SYMBOL vmlinux 0xa6576cf2 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xa66daad4 cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0xa67f76e8 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6904e45 unregister_cdrom -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 0xa6da4770 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0xa6ebfa20 pcie_relaxed_ordering_enabled -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 0xa72a005b brioctl_set -EXPORT_SYMBOL vmlinux 0xa73e4c9e skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa7521049 mroute6_is_socket -EXPORT_SYMBOL vmlinux 0xa75541c3 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0xa75c0fa1 pci_bus_alloc_resource -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 0xa79f79de netlink_capable -EXPORT_SYMBOL vmlinux 0xa7aa35d2 bdi_register -EXPORT_SYMBOL vmlinux 0xa7ab1a3b filemap_map_pages -EXPORT_SYMBOL vmlinux 0xa7abd740 sk_free -EXPORT_SYMBOL vmlinux 0xa7c60c63 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0xa7c8e783 phy_error -EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy -EXPORT_SYMBOL vmlinux 0xa7dc0e45 netdev_next_lower_dev_rcu -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 0xa8060478 bio_integrity_prep -EXPORT_SYMBOL vmlinux 0xa80e6439 __napi_schedule_irqoff -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 0xa8224ff8 inet_reqsk_alloc -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 0xa865a88b netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -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 0xa8c04280 fman_bind -EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8d1eabc of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0xa8dd340e of_find_node_with_property -EXPORT_SYMBOL vmlinux 0xa8e21314 ip_sock_set_tos -EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present -EXPORT_SYMBOL vmlinux 0xa8e85dcc pci_scan_bridge -EXPORT_SYMBOL vmlinux 0xa8f4907a lock_rename -EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa909fa5d nlmsg_notify -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 0xa94aead8 tcp_splice_read -EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa9765c4a lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa9a9b2bb fwnode_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0xa9b30706 phy_device_free -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 0xa9e516dd netif_rx_any_context -EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl -EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction -EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf -EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -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 0xaa5aa557 mmc_can_erase -EXPORT_SYMBOL vmlinux 0xaa627355 tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa73cf0f truncate_setsize -EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb -EXPORT_SYMBOL vmlinux 0xaa9183c0 of_cpu_node_to_id -EXPORT_SYMBOL vmlinux 0xaa96bb2b init_task -EXPORT_SYMBOL vmlinux 0xaa9906a6 __check_sticky -EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic -EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change -EXPORT_SYMBOL vmlinux 0xaaaf75ae __dynamic_netdev_dbg -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 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 0xaaec674e tcp_close -EXPORT_SYMBOL vmlinux 0xaaf44325 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab1593b2 zpool_unregister_driver -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 0xab5e8b34 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off -EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xab6609e2 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init -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 0xab902f95 fc_mount -EXPORT_SYMBOL vmlinux 0xabb2004c __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xabb9dcb8 genl_notify -EXPORT_SYMBOL vmlinux 0xabeaa553 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0xabeb9438 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xabee8603 ip_setsockopt -EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xabfb2eee qdisc_put -EXPORT_SYMBOL vmlinux 0xac1867bf __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac267c5d inode_nohighmem -EXPORT_SYMBOL vmlinux 0xac274ec9 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xac57b565 dev_open -EXPORT_SYMBOL vmlinux 0xac5c2266 dev_queue_xmit -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 0xac84c76e vme_new_dma_list -EXPORT_SYMBOL vmlinux 0xaca6be46 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -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 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 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 0xad5596fe jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0xad654e0f blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xad66d143 simple_fill_super -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 0xad735411 param_ops_hexint -EXPORT_SYMBOL vmlinux 0xad756431 generic_delete_inode -EXPORT_SYMBOL vmlinux 0xad7d0718 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0xad8ed0de lock_page_memcg -EXPORT_SYMBOL vmlinux 0xad9409cf param_get_charp -EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue -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 0xadbbdac1 skb_headers_offset_update -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 0xade6cec9 __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0xadf30993 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae09819d nd_dax_probe -EXPORT_SYMBOL vmlinux 0xae128393 kset_register -EXPORT_SYMBOL vmlinux 0xae2254b9 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae33c403 xudma_navss_psil_unpair -EXPORT_SYMBOL vmlinux 0xae54e2b1 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0xae6b4dc9 page_symlink -EXPORT_SYMBOL vmlinux 0xae73471b bio_advance -EXPORT_SYMBOL vmlinux 0xae8607b7 submit_bh -EXPORT_SYMBOL vmlinux 0xaea9df97 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid -EXPORT_SYMBOL vmlinux 0xaebc8b9a register_fib_notifier -EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name -EXPORT_SYMBOL vmlinux 0xaec9a15d dev_mc_unsync -EXPORT_SYMBOL vmlinux 0xaee17315 padata_do_parallel -EXPORT_SYMBOL vmlinux 0xaeeb2f3c icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0xaef34ffa amba_release_regions -EXPORT_SYMBOL vmlinux 0xaf06c066 dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0xaf0fd801 mr_rtm_dumproute -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 0xaf3baeeb inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf410869 pcie_get_mps -EXPORT_SYMBOL vmlinux 0xaf514015 udp_sendmsg -EXPORT_SYMBOL vmlinux 0xaf56600a arm64_use_ng_mappings -EXPORT_SYMBOL vmlinux 0xaf5fadf4 bprm_change_interp -EXPORT_SYMBOL vmlinux 0xaf61f64a napi_gro_receive -EXPORT_SYMBOL vmlinux 0xaf699577 truncate_pagecache -EXPORT_SYMBOL vmlinux 0xaf717238 sync_file_create -EXPORT_SYMBOL vmlinux 0xaf7248bc tty_unregister_device -EXPORT_SYMBOL vmlinux 0xaf766f39 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0xaf7a161c pnp_device_attach -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 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 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 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb06df2d4 blk_put_request -EXPORT_SYMBOL vmlinux 0xb0701db3 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0xb07f5839 free_netdev -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return -EXPORT_SYMBOL vmlinux 0xb0dd2198 _dev_err -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize -EXPORT_SYMBOL vmlinux 0xb0fccd26 tegra_ahb_enable_smmu -EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0xb113e012 bdi_alloc -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -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 0xb1572db9 mdiobus_scan -EXPORT_SYMBOL vmlinux 0xb1692201 blk_sync_queue -EXPORT_SYMBOL vmlinux 0xb17b9dfc fget_raw -EXPORT_SYMBOL vmlinux 0xb17eb7e1 file_modified -EXPORT_SYMBOL vmlinux 0xb19b6b2f xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0xb1b7e556 close_fd_get_file -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 0xb1db9a69 fsl_ifc_find -EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb2145ce3 bio_put -EXPORT_SYMBOL vmlinux 0xb2224e8b mdio_find_bus -EXPORT_SYMBOL vmlinux 0xb22c62b4 sock_i_ino -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 0xb271903f setup_arg_pages -EXPORT_SYMBOL vmlinux 0xb281c71d tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0xb28691be udp_seq_ops -EXPORT_SYMBOL vmlinux 0xb29d7df9 udp_seq_next -EXPORT_SYMBOL vmlinux 0xb2aa5dd6 phy_sfp_probe -EXPORT_SYMBOL vmlinux 0xb2ad2dab netdev_features_change -EXPORT_SYMBOL vmlinux 0xb2b439a5 security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xb2b5a5ae dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0xb2c3b743 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xb2ca299f dm_table_get_size -EXPORT_SYMBOL vmlinux 0xb2e5eca4 d_splice_alias -EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr -EXPORT_SYMBOL vmlinux 0xb2eaf46a empty_aops -EXPORT_SYMBOL vmlinux 0xb2ef0357 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 -EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken -EXPORT_SYMBOL vmlinux 0xb3096b6e __sock_queue_rcv_skb -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 0xb3492aeb phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0xb34dca1c kryo_l2_get_indirect_reg -EXPORT_SYMBOL vmlinux 0xb3522a5b nf_ct_attach -EXPORT_SYMBOL vmlinux 0xb354ea81 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb37f93fa netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0xb39d1f55 netlink_kernel_release -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 0xb3d22b7d km_state_notify -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3d4074f can_nice -EXPORT_SYMBOL vmlinux 0xb3eaaa4a phy_attach -EXPORT_SYMBOL vmlinux 0xb3ec546a devm_ioremap_np -EXPORT_SYMBOL vmlinux 0xb3f20dba netif_device_detach -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 0xb4043948 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0xb40db9f7 dst_release -EXPORT_SYMBOL vmlinux 0xb41390f2 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb434e306 dst_init -EXPORT_SYMBOL vmlinux 0xb43e2ee0 task_work_add -EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present -EXPORT_SYMBOL vmlinux 0xb479aecf rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb48e49fe cros_ec_query_all -EXPORT_SYMBOL vmlinux 0xb49a1765 dmam_pool_create -EXPORT_SYMBOL vmlinux 0xb49ad210 security_sk_clone -EXPORT_SYMBOL vmlinux 0xb4bf7d5c dm_io -EXPORT_SYMBOL vmlinux 0xb4d13f2d flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb4fe6337 arp_tbl -EXPORT_SYMBOL vmlinux 0xb4ff008c dev_graft_qdisc -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 0xb55ee36e blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb5764a93 dev_remove_pack -EXPORT_SYMBOL vmlinux 0xb57d9693 kernel_param_lock -EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable -EXPORT_SYMBOL vmlinux 0xb57f9fe3 mmc_detect_change -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 0xb5ab2a5a fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5ca4dc6 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5f1935a md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible -EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb63cf670 setattr_prepare -EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xb670dc23 follow_down -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 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 0xb6c90530 sk_wait_data -EXPORT_SYMBOL vmlinux 0xb6e11dea dev_close -EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6e6a911 scsi_partsize -EXPORT_SYMBOL vmlinux 0xb6e7da31 copy_string_kernel -EXPORT_SYMBOL vmlinux 0xb6f0be42 __dev_kfree_skb_any -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 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb71fecf5 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0xb72c9ade proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0xb75081c4 jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0xb76759da mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init -EXPORT_SYMBOL vmlinux 0xb778fdd8 qman_start_using_portal -EXPORT_SYMBOL vmlinux 0xb77dcf36 poll_freewait -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 0xb7a3ac7d tcp_read_sock -EXPORT_SYMBOL vmlinux 0xb7b5c480 nf_unregister_sockopt -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 0xb7d0f647 tcp_parse_options -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 0xb819776b netlink_ack -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 0xb842716c qcom_scm_ocmem_lock_available -EXPORT_SYMBOL vmlinux 0xb8449c04 phy_start_cable_test -EXPORT_SYMBOL vmlinux 0xb84bfeb7 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add -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 0xb8717056 sk_net_capable -EXPORT_SYMBOL vmlinux 0xb88110f2 bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0xb888159d mount_single -EXPORT_SYMBOL vmlinux 0xb888a9ec mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xb88fd035 set_groups -EXPORT_SYMBOL vmlinux 0xb88ff4e6 serio_interrupt -EXPORT_SYMBOL vmlinux 0xb8979eb7 processors -EXPORT_SYMBOL vmlinux 0xb89a9eea mmc_can_discard -EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb8aa906a vfs_mkobj -EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xb8c0f1e2 user_revoke -EXPORT_SYMBOL vmlinux 0xb8c8bd9b forget_cached_acl -EXPORT_SYMBOL vmlinux 0xb8ed362b mmc_erase -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 0xb9346b5e pci_enable_ptm -EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb946b779 napi_enable -EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only -EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb99cf394 phy_read_mmd -EXPORT_SYMBOL vmlinux 0xb9abeb08 netif_receive_skb -EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xb9c83504 tty_port_close -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 0xba0423b2 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat -EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba1e1493 netlink_unicast -EXPORT_SYMBOL vmlinux 0xba2dea08 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0xba30faf1 dma_resv_add_shared_fence -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 0xba717475 ip_ct_attach -EXPORT_SYMBOL vmlinux 0xba735dc0 pci_disable_device -EXPORT_SYMBOL vmlinux 0xba787987 sock_efree -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 0xbae1064f xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xbae89ad6 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0xbb0095cc xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb21260e convert_ifc_address -EXPORT_SYMBOL vmlinux 0xbb21b003 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb435f44 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0xbb451b8e skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb50981f acpi_device_hid -EXPORT_SYMBOL vmlinux 0xbb5fd8d5 keyring_alloc -EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool -EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock -EXPORT_SYMBOL vmlinux 0xbba283f7 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0xbbaf587b ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0xbbb08b20 rproc_add_carveout -EXPORT_SYMBOL vmlinux 0xbbb87adb __d_drop -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 0xbc1939f8 validate_slab_cache -EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc3fa5d7 dev_change_carrier -EXPORT_SYMBOL vmlinux 0xbc4b5b52 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xbc7ce998 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0xbc81cb39 flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0xbc82bc31 fman_reset_mac -EXPORT_SYMBOL vmlinux 0xbc8e7fe2 nf_log_trace -EXPORT_SYMBOL vmlinux 0xbc94ca16 tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcacdcb7 jbd2_fc_get_buf -EXPORT_SYMBOL vmlinux 0xbcaec319 param_get_byte -EXPORT_SYMBOL vmlinux 0xbcdf187b user_path_create -EXPORT_SYMBOL vmlinux 0xbcf41562 phy_write_mmd -EXPORT_SYMBOL vmlinux 0xbcf61adb blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0xbd168b05 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0xbd219fbf scsi_alloc_sgtables -EXPORT_SYMBOL vmlinux 0xbd316126 netdev_has_any_upper_dev -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 0xbd849350 devfreq_update_target -EXPORT_SYMBOL vmlinux 0xbd87d7da dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0xbd97de04 phy_stop -EXPORT_SYMBOL vmlinux 0xbda01c9c dquot_file_open -EXPORT_SYMBOL vmlinux 0xbdbd2e13 mfd_remove_devices_late -EXPORT_SYMBOL vmlinux 0xbddc7f30 mii_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xbdeb5b53 compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0xbdebbeb1 security_sock_graft -EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock -EXPORT_SYMBOL vmlinux 0xbe2062d8 fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0xbe38b143 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port -EXPORT_SYMBOL vmlinux 0xbe4a4424 end_page_writeback -EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xbe54a973 reuseport_alloc -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 0xbe7020fe mdiobus_register_device -EXPORT_SYMBOL vmlinux 0xbe7d206e hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table -EXPORT_SYMBOL vmlinux 0xbe9599f9 amba_device_register -EXPORT_SYMBOL vmlinux 0xbe9907e7 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xbeb86445 __phy_read_mmd -EXPORT_SYMBOL vmlinux 0xbeca61ed phy_support_asym_pause -EXPORT_SYMBOL vmlinux 0xbed9335b padata_alloc -EXPORT_SYMBOL vmlinux 0xbedcf97c jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0xbf01d35f pci_iounmap -EXPORT_SYMBOL vmlinux 0xbf0f643a tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xbf279036 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0xbf35e88a vfs_mknod -EXPORT_SYMBOL vmlinux 0xbf36938b sk_common_release -EXPORT_SYMBOL vmlinux 0xbf493c98 netdev_update_features -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 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 0xbf81b482 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0xbf84d41e mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfa7e2ec jbd2_fc_end_commit -EXPORT_SYMBOL vmlinux 0xbfc15665 blk_get_queue -EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block -EXPORT_SYMBOL vmlinux 0xbfd47cc4 register_mii_timestamper -EXPORT_SYMBOL vmlinux 0xbfd941d0 netlink_set_err -EXPORT_SYMBOL vmlinux 0xbfde5c1c ip_options_rcv_srr -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 0xbff1edcb skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xbff34025 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0xc004eabd serio_bus -EXPORT_SYMBOL vmlinux 0xc011006f single_open -EXPORT_SYMBOL vmlinux 0xc018f808 __alloc_disk_node -EXPORT_SYMBOL vmlinux 0xc01d90ee nd_device_register -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 0xc04b3e70 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0xc05f7415 remove_watch_from_object -EXPORT_SYMBOL vmlinux 0xc065a6c8 nd_region_to_nstype -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 0xc080a175 phy_free_interrupt -EXPORT_SYMBOL vmlinux 0xc081f823 fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0xc08b81e0 inode_get_bytes -EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress -EXPORT_SYMBOL vmlinux 0xc0da5d6e pci_reenable_device -EXPORT_SYMBOL vmlinux 0xc0debdc3 nd_region_release_lane -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 0xc14dc168 acpi_get_data -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 0xc1726832 put_cmsg_scm_timestamping64 -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 0xc1a0289d vmf_insert_mixed_prot -EXPORT_SYMBOL vmlinux 0xc1a93fe1 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0xc1cb3174 seq_putc -EXPORT_SYMBOL vmlinux 0xc1cec184 netif_device_attach -EXPORT_SYMBOL vmlinux 0xc1cf0ca4 security_binder_transfer_file -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 0xc2050974 fman_port_get_tstamp -EXPORT_SYMBOL vmlinux 0xc205fb60 mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0xc2219ed7 t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl -EXPORT_SYMBOL vmlinux 0xc23454cc of_match_device -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 0xc291ad0c xp_dma_sync_for_cpu_slow -EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc29d2bd3 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0xc29d3cf0 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xc2acad21 sk_dst_check -EXPORT_SYMBOL vmlinux 0xc2ddd074 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xc2e168ab caches_clean_inval_pou -EXPORT_SYMBOL vmlinux 0xc2e17bbe path_is_mountpoint -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -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 0xc2f84108 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xc2feaacb dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xc302e86d sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state -EXPORT_SYMBOL vmlinux 0xc30ea9f8 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -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 0xc345a9a9 fs_param_is_blob -EXPORT_SYMBOL vmlinux 0xc3564e93 set_user_nice -EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0xc36c53bc lock_sock_nested -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 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 0xc3bc72ad trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb -EXPORT_SYMBOL vmlinux 0xc3cd7ee9 flow_rule_alloc -EXPORT_SYMBOL vmlinux 0xc3f63d06 ip_getsockopt -EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock -EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value -EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc42b3564 inet_register_protosw -EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0xc438a94a param_get_int -EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr -EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc49d0e6a ptp_find_pin -EXPORT_SYMBOL vmlinux 0xc49f2b47 param_set_ulong -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 0xc4ef2e7f fqdir_exit -EXPORT_SYMBOL vmlinux 0xc504eb49 kobject_add -EXPORT_SYMBOL vmlinux 0xc50eb4ec neigh_ifdown -EXPORT_SYMBOL vmlinux 0xc518d3d5 __udp_disconnect -EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0xc56a41e6 vabits_actual -EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next -EXPORT_SYMBOL vmlinux 0xc58355ed skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xc58a386d twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0xc5932ee2 mmc_cqe_post_req -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 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5cf205b nd_integrity_init -EXPORT_SYMBOL vmlinux 0xc5d63699 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0xc5d71822 mount_nodev -EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last -EXPORT_SYMBOL vmlinux 0xc6050f97 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xc60894fe nf_log_unregister -EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc6185dd8 __ip_options_compile -EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive -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 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xc66cb7a5 copy_highpage -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 0xc6abeab6 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xc6c4d0e6 tcp_init_sock -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 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 0xc75d3aad fget -EXPORT_SYMBOL vmlinux 0xc7658830 dev_set_group -EXPORT_SYMBOL vmlinux 0xc76ec612 of_device_alloc -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc7975a7f pci_request_region -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7adc5f8 devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0xc7b28bde simple_open -EXPORT_SYMBOL vmlinux 0xc7b838ea of_phy_find_device -EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7c99d8b inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0xc7ce9bc3 unlock_new_inode -EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xc801e59d genphy_loopback -EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one -EXPORT_SYMBOL vmlinux 0xc8110c23 nf_log_set -EXPORT_SYMBOL vmlinux 0xc8244dc7 of_device_is_available -EXPORT_SYMBOL vmlinux 0xc82da0a6 inode_insert5 -EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 -EXPORT_SYMBOL vmlinux 0xc83b076b rproc_get_by_child -EXPORT_SYMBOL vmlinux 0xc8483af8 kset_unregister -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -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 0xc8a00828 inet6_protos -EXPORT_SYMBOL vmlinux 0xc8a2b6a4 sock_create -EXPORT_SYMBOL vmlinux 0xc8a6d9c9 unpin_user_pages -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8c79fa4 scsi_done -EXPORT_SYMBOL vmlinux 0xc8cce91c fwnode_phy_find_device -EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc -EXPORT_SYMBOL vmlinux 0xc8e098a7 unlock_page -EXPORT_SYMBOL vmlinux 0xc8ee99b1 always_delete_dentry -EXPORT_SYMBOL vmlinux 0xc916ab3e max8925_reg_read -EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xc92c7369 sock_wmalloc -EXPORT_SYMBOL vmlinux 0xc93b3698 xsk_get_pool_from_qid -EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0xc94d03f0 of_get_property -EXPORT_SYMBOL vmlinux 0xc954792d netif_rx_ni -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc9656b15 __traceiter_mmap_lock_released -EXPORT_SYMBOL vmlinux 0xc970c83d tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev -EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9af4e12 mmc_sw_reset -EXPORT_SYMBOL vmlinux 0xc9bf2375 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0xc9d1340c pin_user_pages_remote -EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9e30b9a skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned -EXPORT_SYMBOL vmlinux 0xca03ebc7 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xca090838 vfs_parse_fs_param_source -EXPORT_SYMBOL vmlinux 0xca0b9ecf devm_ioport_map -EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream -EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca55bfe6 __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0xca5acd18 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xca62afaf xudma_rflow_is_gp -EXPORT_SYMBOL vmlinux 0xca69fa79 input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0xca847f82 tcp_connect -EXPORT_SYMBOL vmlinux 0xca869c16 security_sb_clone_mnt_opts -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 0xcaced69a setattr_should_drop_suidgid -EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception -EXPORT_SYMBOL vmlinux 0xcad32312 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xcadfa6f2 scsi_print_command -EXPORT_SYMBOL vmlinux 0xcae4d530 netdev_sk_get_lowest_dev -EXPORT_SYMBOL vmlinux 0xcae8229d dev_get_by_name -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -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 0xcb3a6ca5 of_get_next_parent -EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb4104c7 netdev_name_node_alt_create -EXPORT_SYMBOL vmlinux 0xcb424706 __breadahead -EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb7f4680 simple_write_begin -EXPORT_SYMBOL vmlinux 0xcbae9d32 cdev_add -EXPORT_SYMBOL vmlinux 0xcbaf5f07 rtnl_create_link -EXPORT_SYMBOL vmlinux 0xcbb62153 tcp_time_wait -EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame -EXPORT_SYMBOL vmlinux 0xcbc9f4d3 fwnode_mdiobus_register_phy -EXPORT_SYMBOL vmlinux 0xcbd05ed3 tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev -EXPORT_SYMBOL vmlinux 0xcc0cadd8 rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0xcc174112 put_cmsg_scm_timestamping -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 0xcc4e7d44 scsi_device_put -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc78c315 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0xcc7c76d6 phy_trigger_machine -EXPORT_SYMBOL vmlinux 0xcc9a67bd devfreq_add_device -EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id -EXPORT_SYMBOL vmlinux 0xcca5e5f0 flush_signals -EXPORT_SYMBOL vmlinux 0xccb375b2 tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0xccb91751 lease_modify -EXPORT_SYMBOL vmlinux 0xcccd2a94 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize -EXPORT_SYMBOL vmlinux 0xccf2b19c inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0xccf9aa45 is_nvdimm_bus_locked -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 0xcd0d73b7 trace_event_printf -EXPORT_SYMBOL vmlinux 0xcd10b5da alloc_mdio_bitbang -EXPORT_SYMBOL vmlinux 0xcd185fb1 lookup_one_len -EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd3adffa dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0xcd4d9683 __nlmsg_put -EXPORT_SYMBOL vmlinux 0xcd5619a2 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0xcd704d5e of_parse_phandle_with_args_map -EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception -EXPORT_SYMBOL vmlinux 0xcdb01f65 request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcddf27c6 seq_bprintf -EXPORT_SYMBOL vmlinux 0xcde3416f pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcdf2fdc0 inet_csk_accept -EXPORT_SYMBOL vmlinux 0xce036f24 sg_split -EXPORT_SYMBOL vmlinux 0xce092d96 I_BDEV -EXPORT_SYMBOL vmlinux 0xce098476 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xce0ab243 dump_align -EXPORT_SYMBOL vmlinux 0xce153529 mii_ethtool_sset -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce2d1f57 param_ops_bint -EXPORT_SYMBOL vmlinux 0xce461c15 flow_block_cb_decref -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 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 0xce909e31 add_to_pipe -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -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 0xced938b2 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xcedee944 security_inode_init_security -EXPORT_SYMBOL vmlinux 0xcee5d23e netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0xcef7c342 md_flush_request -EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -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 0xcf660a0f netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0xcf911aa3 __netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcfa55a5e page_readlink -EXPORT_SYMBOL vmlinux 0xcfa7e913 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xcfb20e9e __hw_addr_unsync_dev -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 0xd0061ccf skb_try_coalesce -EXPORT_SYMBOL vmlinux 0xd01ebb90 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0xd030a268 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0xd0338fbc simple_unlink -EXPORT_SYMBOL vmlinux 0xd0363742 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd056c02a sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0xd05fc5ae device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0xd062369d skb_ext_add -EXPORT_SYMBOL vmlinux 0xd064991c __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd07be098 neigh_table_init -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 0xd0fe61fd generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xd101eb92 device_add_disk -EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd1395de8 dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0xd163c72c ppp_input -EXPORT_SYMBOL vmlinux 0xd16830b5 dquot_get_state -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd18fbd32 security_sb_remount -EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd19f26ce pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0xd1a4ab8e flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0xd1ad0a84 seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0xd1bd1ecd key_move -EXPORT_SYMBOL vmlinux 0xd1cefa75 dev_mc_del -EXPORT_SYMBOL vmlinux 0xd1d6e21d dst_dev_put -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1dbaee0 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xd1e0a73a i2c_transfer_buffer_flags -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 0xd2453d70 xfrm_register_type -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 0xd27637ab pci_dev_get -EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xd27acf3b datagram_poll -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0xd2ace417 register_md_personality -EXPORT_SYMBOL vmlinux 0xd2b8093f generic_read_dir -EXPORT_SYMBOL vmlinux 0xd2c12b2b submit_bio -EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller -EXPORT_SYMBOL vmlinux 0xd2d0f960 tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0xd2d2ea0b mmc_cqe_recovery -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 0xd2ede82b seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0xd2f6252a md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd34182c7 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0xd342175e insert_inode_locked -EXPORT_SYMBOL vmlinux 0xd34afdd5 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset -EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 -EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd375d3c0 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xd37cd1f7 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0xd389fbfc generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xd391c25b __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xd3b34b98 tcp_make_synack -EXPORT_SYMBOL vmlinux 0xd3b3544b inet_release -EXPORT_SYMBOL vmlinux 0xd3bc66d1 napi_build_skb -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 0xd41166af xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0xd4129912 mii_check_link -EXPORT_SYMBOL vmlinux 0xd4267d47 pci_find_capability -EXPORT_SYMBOL vmlinux 0xd428a8d3 dev_uc_add -EXPORT_SYMBOL vmlinux 0xd4339de8 qcom_scm_pas_init_image -EXPORT_SYMBOL vmlinux 0xd443e5e6 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xd45c9cbc tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd472405b d_alloc -EXPORT_SYMBOL vmlinux 0xd4735017 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0xd47c70fd skb_split -EXPORT_SYMBOL vmlinux 0xd47fa97e bio_free_pages -EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -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 0xd4d1983c udplite_table -EXPORT_SYMBOL vmlinux 0xd4e0eee2 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0xd4e4fbf6 pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd502af2d __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xd512a3f0 udp_poll -EXPORT_SYMBOL vmlinux 0xd51ef50f mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xd5416955 noop_fsync -EXPORT_SYMBOL vmlinux 0xd547e880 dquot_drop -EXPORT_SYMBOL vmlinux 0xd54b6166 mdio_device_remove -EXPORT_SYMBOL vmlinux 0xd5507b28 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0xd5569ff3 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0xd55be8b3 phy_config_aneg -EXPORT_SYMBOL vmlinux 0xd55f08b7 dqget -EXPORT_SYMBOL vmlinux 0xd563bca3 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0xd57a723b __vfs_setxattr -EXPORT_SYMBOL vmlinux 0xd58d92a6 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise -EXPORT_SYMBOL vmlinux 0xd59387ba neigh_destroy -EXPORT_SYMBOL vmlinux 0xd595bf9b bd_abort_claiming -EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5b584c3 phy_init_eee -EXPORT_SYMBOL vmlinux 0xd5ea43d0 rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0xd5eeceef rtnl_kfree_skbs -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 0xd61cd37a mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0xd6202676 tegra_dfll_suspend -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 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 0xd6a91bdb pci_set_power_state -EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6cd5779 md_cluster_ops -EXPORT_SYMBOL vmlinux 0xd6dc6fb2 tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6f56277 tcf_idr_check_alloc -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 0xd71a4b78 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0xd7287e71 km_state_expired -EXPORT_SYMBOL vmlinux 0xd72b6a6c request_key_tag -EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd74516a7 mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc -EXPORT_SYMBOL vmlinux 0xd7587f38 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0xd77edaf0 phy_get_pause -EXPORT_SYMBOL vmlinux 0xd784a3f2 vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0xd786a65a f_setown -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 0xd7fc0d1e inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 -EXPORT_SYMBOL vmlinux 0xd80a8599 generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range -EXPORT_SYMBOL vmlinux 0xd828603c scsi_print_result -EXPORT_SYMBOL vmlinux 0xd828f063 xudma_tchanrt_write -EXPORT_SYMBOL vmlinux 0xd851c312 vfs_create_mount -EXPORT_SYMBOL vmlinux 0xd87a63a6 phy_attached_info -EXPORT_SYMBOL vmlinux 0xd88660ea rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0xd89944c8 thread_group_exited -EXPORT_SYMBOL vmlinux 0xd89c8edc wake_up_process -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font -EXPORT_SYMBOL vmlinux 0xd8bea423 build_skb -EXPORT_SYMBOL vmlinux 0xd8cf620d skb_set_owner_w -EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xd8ec5436 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0xd8f838f9 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0xd9074c4a netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0xd90833ec config_item_put -EXPORT_SYMBOL vmlinux 0xd91561e7 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0xd933da4a sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy -EXPORT_SYMBOL vmlinux 0xd964bde6 netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0xd96991a2 nonseekable_open -EXPORT_SYMBOL vmlinux 0xd96f63c8 devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0xd9731f3b gro_cells_init -EXPORT_SYMBOL vmlinux 0xd980439e sock_alloc_file -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -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 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 0xd9f9683d simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xda0f4552 phy_detach -EXPORT_SYMBOL vmlinux 0xda10443c xudma_tchan_get_id -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 0xda5cf3b1 dquot_get_next_id -EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda7588ba clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0xda856f5f gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xda941900 seq_puts -EXPORT_SYMBOL vmlinux 0xdaa244be __mdiobus_write -EXPORT_SYMBOL vmlinux 0xdab088ef register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xdab23ee6 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xdac0c418 peernet2id -EXPORT_SYMBOL vmlinux 0xdac10da3 udp_disconnect -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdac65032 clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0xdad8231d __SetPageMovable -EXPORT_SYMBOL vmlinux 0xdadfca78 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0xdaead393 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0xdb082657 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0xdb191e04 vfs_fsync -EXPORT_SYMBOL vmlinux 0xdb2c2c87 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xdb332fa6 sock_edemux -EXPORT_SYMBOL vmlinux 0xdb40211e alloc_fddidev -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb85e7ef dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0xdb8d4d0e posix_lock_file -EXPORT_SYMBOL vmlinux 0xdb924129 scsi_host_busy -EXPORT_SYMBOL vmlinux 0xdb9f93c9 input_inject_event -EXPORT_SYMBOL vmlinux 0xdba8391c xfrm_state_insert -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 0xdc0e4855 timer_delete -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc1589a4 pci_write_config_dword -EXPORT_SYMBOL vmlinux 0xdc1a7340 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0xdc2a779a mr_table_dump -EXPORT_SYMBOL vmlinux 0xdc34158f fman_port_init -EXPORT_SYMBOL vmlinux 0xdc37121a vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc5c4d7e param_ops_byte -EXPORT_SYMBOL vmlinux 0xdc693c43 tcf_qevent_destroy -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 0xdc8d7830 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xdc9bfd98 dev_change_proto_down_generic -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 0xdcb764ad memset -EXPORT_SYMBOL vmlinux 0xdcbf167d of_find_node_by_type -EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress -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 0xdd385746 nd_btt_probe -EXPORT_SYMBOL vmlinux 0xdd416363 xfrm_trans_queue_net -EXPORT_SYMBOL vmlinux 0xdd46b454 ethtool_notify -EXPORT_SYMBOL vmlinux 0xdd5bd736 input_close_device -EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd661501 ndo_dflt_fdb_add -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 0xddaed64f vfs_readlink -EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat -EXPORT_SYMBOL vmlinux 0xddb142f4 netpoll_send_skb -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 0xdddc7ede phy_device_create -EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done -EXPORT_SYMBOL vmlinux 0xde0df8d7 udp6_seq_ops -EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xde572353 __module_get -EXPORT_SYMBOL vmlinux 0xde5c6177 acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0xde720611 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xde88b871 scsi_print_sense -EXPORT_SYMBOL vmlinux 0xde9cb7a5 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xdeb2ddce tcp_child_process -EXPORT_SYMBOL vmlinux 0xdeb8fa72 mdiobus_write -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 0xdecdae8b secpath_set -EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdef200d9 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdf078e68 __neigh_event_send -EXPORT_SYMBOL vmlinux 0xdf094883 tegra_ivc_notified -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 0xdf4f32ef sock_init_data_uid -EXPORT_SYMBOL vmlinux 0xdf53f3d0 nvmem_get_mac_address -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdfa14f4b flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0xdfaea9aa tcp_mtup_init -EXPORT_SYMBOL vmlinux 0xdfb3c11e __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xdfbcfafe tty_port_hangup -EXPORT_SYMBOL vmlinux 0xdfc128bb kernel_connect -EXPORT_SYMBOL vmlinux 0xdfc155f8 __frontswap_load -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 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe0054706 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase -EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops -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 0xe0547c62 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0xe065c1c1 pci_set_master -EXPORT_SYMBOL vmlinux 0xe06aee2e __lock_sock_fast -EXPORT_SYMBOL vmlinux 0xe06e0b38 genphy_write_mmd_unsupported -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 0xe0d6bad9 lookup_one -EXPORT_SYMBOL vmlinux 0xe0e2a898 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xe0e8d621 bioset_init_from_src -EXPORT_SYMBOL vmlinux 0xe0f7b2b7 vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0xe105ab02 fman_set_mac_active_pause -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 0xe16067fd writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xe1852357 inet_listen -EXPORT_SYMBOL vmlinux 0xe18585ea d_obtain_alias -EXPORT_SYMBOL vmlinux 0xe1a1284a inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1eab1d1 scsi_remove_target -EXPORT_SYMBOL vmlinux 0xe21c48c7 vme_init_bridge -EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe247e036 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0xe24a7898 jbd2_journal_put_journal_head -EXPORT_SYMBOL vmlinux 0xe25212dc flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0xe255c877 freezing_slow_path -EXPORT_SYMBOL vmlinux 0xe271128b cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe2806284 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0xe286a918 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0xe29c41ed netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xe2b1749d pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0xe2d3854c path_get -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2d9b333 skb_trim -EXPORT_SYMBOL vmlinux 0xe30e0752 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe35a7890 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0xe36f7d19 phy_read_paged -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 0xe3899248 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0xe38ad9e0 d_add -EXPORT_SYMBOL vmlinux 0xe38dbdad setup_new_exec -EXPORT_SYMBOL vmlinux 0xe38fb957 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -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 0xe3e56afc nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3eceb54 xfrm_policy_flush -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 0xe420d91a unregister_framebuffer -EXPORT_SYMBOL vmlinux 0xe431fe70 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0xe46015e4 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0xe46bb5e8 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0xe490a65a mark_info_dirty -EXPORT_SYMBOL vmlinux 0xe49405a6 __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xe49dbca5 neigh_event_ns -EXPORT_SYMBOL vmlinux 0xe4b216a9 dev_remove_offload -EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset -EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe4bde48c ip_options_compile -EXPORT_SYMBOL vmlinux 0xe4c02cb3 xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0xe4c6661a vme_dma_request -EXPORT_SYMBOL vmlinux 0xe4cb03cf mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0xe4d84d48 __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0xe4d90e69 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0xe4da6d1c mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0xe4db5f2a qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0xe4fb520e xp_dma_unmap -EXPORT_SYMBOL vmlinux 0xe521470f xfrm4_protocol_deregister -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 0xe53a003f tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xe54e4e1d skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0xe55803e4 fwnode_get_phy_id -EXPORT_SYMBOL vmlinux 0xe55ed3f8 vga_client_register -EXPORT_SYMBOL vmlinux 0xe565c21a ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xe566890d tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0xe570ce8f blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xe571f48a of_graph_get_remote_node -EXPORT_SYMBOL vmlinux 0xe5753c61 inet_stream_connect -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 0xe58af229 tcp_ioctl -EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe5a72b87 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xe5b38eb2 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5c97ac0 tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0xe5d121dc phy_disconnect -EXPORT_SYMBOL vmlinux 0xe5e6b72b sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0xe5f3a247 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xe5f64a7c pnp_possible_config -EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xe64c255d pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0xe660ddac pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0xe68b3804 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6ec2344 blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock -EXPORT_SYMBOL vmlinux 0xe6fdd66e scsi_remove_device -EXPORT_SYMBOL vmlinux 0xe71719b6 param_get_invbool -EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range -EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe7532409 devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xe75c1cbf fb_set_suspend -EXPORT_SYMBOL vmlinux 0xe7698027 ioremap_cache -EXPORT_SYMBOL vmlinux 0xe76bb40a tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0xe774e912 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0xe775f55a __sk_dst_check -EXPORT_SYMBOL vmlinux 0xe77fdf61 pci_choose_state -EXPORT_SYMBOL vmlinux 0xe78d6290 devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0xe798d586 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xe7b0353b __cpu_active_mask -EXPORT_SYMBOL vmlinux 0xe7c44713 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7f6dbad dcb_setapp -EXPORT_SYMBOL vmlinux 0xe8033a86 dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0xe809088e filemap_range_has_page -EXPORT_SYMBOL vmlinux 0xe8304258 put_cmsg -EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xe850228d __traceiter_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table -EXPORT_SYMBOL vmlinux 0xe881f8f8 netif_skb_features -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 0xe8b5c3c3 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xe8bfbdf0 would_dump -EXPORT_SYMBOL vmlinux 0xe8c05b0a d_instantiate_anon -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 0xe90c21d7 block_write_end -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe92ab4f0 qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0xe9486d63 nobh_writepage -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -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 0xe9c02ac5 rt6_lookup -EXPORT_SYMBOL vmlinux 0xe9cb8ef7 tcp_seq_start -EXPORT_SYMBOL vmlinux 0xe9d0d6bf cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0xe9d727be tcp_seq_stop -EXPORT_SYMBOL vmlinux 0xe9da3ade ip_tunnel_header_ops -EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock -EXPORT_SYMBOL vmlinux 0xea02eaa2 __seq_open_private -EXPORT_SYMBOL vmlinux 0xea11a354 __sock_i_ino -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 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea45edae xattr_supported_namespace -EXPORT_SYMBOL vmlinux 0xea50aa67 ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0xea51deb2 xsk_tx_release -EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0xea8df4f8 flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0xea956a57 mmc_free_host -EXPORT_SYMBOL vmlinux 0xeab12ae1 netif_carrier_on -EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict -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 0xeb22d5e5 udp_prot -EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc -EXPORT_SYMBOL vmlinux 0xeb2391c9 gen_new_estimator -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 0xeb7f6046 acpi_get_devices -EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order -EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xeba2b64c __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0xeba3a959 vfs_iter_read -EXPORT_SYMBOL vmlinux 0xebba0972 sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0xebc3105e skb_push -EXPORT_SYMBOL vmlinux 0xebced6ea dma_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0xebd1cf53 simple_lookup -EXPORT_SYMBOL vmlinux 0xebd307cb skb_queue_purge -EXPORT_SYMBOL vmlinux 0xebd77966 bdi_put -EXPORT_SYMBOL vmlinux 0xebdcc486 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0xebeb20ea __nla_put -EXPORT_SYMBOL vmlinux 0xebed02eb blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xec0537a0 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0xec0c4f4e amba_request_regions -EXPORT_SYMBOL vmlinux 0xec213ab9 netpoll_cleanup -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 0xec41716a qman_alloc_fqid_range -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec6dfa4c redraw_screen -EXPORT_SYMBOL vmlinux 0xec8d51d8 inet6_del_offload -EXPORT_SYMBOL vmlinux 0xec9be2d9 wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0xecb81916 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0xecd06335 netdev_info -EXPORT_SYMBOL vmlinux 0xecd95f3d fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -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 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 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed6b43b0 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xed836411 mdiobb_read -EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 -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 0xedaadf17 filemap_fdatawrite_wbc -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xeded3fc2 skb_clone_sk -EXPORT_SYMBOL vmlinux 0xedf3230b tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0xedfd7465 uart_resume_port -EXPORT_SYMBOL vmlinux 0xedfe228e kern_path -EXPORT_SYMBOL vmlinux 0xee014052 prepare_to_swait_exclusive -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 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc -EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee82682c of_graph_get_remote_endpoint -EXPORT_SYMBOL vmlinux 0xee868f53 shrink_dcache_parent -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 0xee9ad3f4 xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0xeea5c2da twl6040_set_bits -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeb5e784 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0xeeb626dd skb_clone -EXPORT_SYMBOL vmlinux 0xeec2faed __dquot_transfer -EXPORT_SYMBOL vmlinux 0xeecb8498 rtnl_notify -EXPORT_SYMBOL vmlinux 0xeedaa440 flush_dcache_page -EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init -EXPORT_SYMBOL vmlinux 0xeeeb15a6 dquot_disable -EXPORT_SYMBOL vmlinux 0xeeecbcfe skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0xeef61e43 dcbnl_ieee_notify -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 0xef4671c0 xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0xef525d6f unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0xef668e2a xfrm_if_register_cb -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 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefb8ae67 sock_rfree -EXPORT_SYMBOL vmlinux 0xefba8084 ping_prot -EXPORT_SYMBOL vmlinux 0xefc592e5 phy_find_first -EXPORT_SYMBOL vmlinux 0xefc5c09a tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning -EXPORT_SYMBOL vmlinux 0xefe1ddbb skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0xefe89476 nf_hook_slow_list -EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full -EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf0171ea9 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xf02dc9f0 ip_check_defrag -EXPORT_SYMBOL vmlinux 0xf04d65ea configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0xf05f28f9 __fs_parse -EXPORT_SYMBOL vmlinux 0xf06036ba param_get_string -EXPORT_SYMBOL vmlinux 0xf08403e5 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0xf08fb113 unpin_user_page_range_dirty_lock -EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0a71b1b revert_creds -EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data -EXPORT_SYMBOL vmlinux 0xf0b42ef9 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0xf0d07f69 neigh_carrier_down -EXPORT_SYMBOL vmlinux 0xf0e22bff fs_bio_set -EXPORT_SYMBOL vmlinux 0xf0e76982 pagecache_write_end -EXPORT_SYMBOL vmlinux 0xf10190b9 tty_lock -EXPORT_SYMBOL vmlinux 0xf1029a8f ip_frag_next -EXPORT_SYMBOL vmlinux 0xf1036a28 get_tree_bdev -EXPORT_SYMBOL vmlinux 0xf105b37d tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xf11a3943 __vfs_getxattr -EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf12439f5 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0xf1424f92 input_flush_device -EXPORT_SYMBOL vmlinux 0xf167c03b __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xf16bd643 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf196233e mdio_device_register -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1b09875 proc_mkdir -EXPORT_SYMBOL vmlinux 0xf1b39f80 mr_dump -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 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1e00393 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0xf1e046cc panic -EXPORT_SYMBOL vmlinux 0xf1e71d24 make_bad_inode -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf208c27b napi_complete_done -EXPORT_SYMBOL vmlinux 0xf2148006 may_setattr -EXPORT_SYMBOL vmlinux 0xf2224adc __blk_alloc_disk -EXPORT_SYMBOL vmlinux 0xf23bacf5 of_get_child_by_name -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf24070cf iterate_fd -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 0xf26f8284 logfc -EXPORT_SYMBOL vmlinux 0xf276a954 pskb_trim_rcsum_slow -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 0xf29f8515 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xf2ba92c3 scsi_ioctl -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2ca3997 tcp_add_backlog -EXPORT_SYMBOL vmlinux 0xf2d142f6 da903x_query_status -EXPORT_SYMBOL vmlinux 0xf2e146d3 skb_copy_datagram_from_iter -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 0xf30e725f dqput -EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf32004dd __nd_driver_register -EXPORT_SYMBOL vmlinux 0xf3213744 inet_offloads -EXPORT_SYMBOL vmlinux 0xf3262fb8 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0xf3278fdc generic_copy_file_range -EXPORT_SYMBOL vmlinux 0xf331b29a security_sctp_sk_clone -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 0xf36b546b pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xf37b1bf0 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0xf383105f seg6_hmac_info_add -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 0xf397d245 qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0xf39801ae n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf3aa6721 seq_read -EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3c718b1 seq_dentry -EXPORT_SYMBOL vmlinux 0xf3d4c916 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0xf3dd35e5 tcf_classify -EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3e4dd69 xsk_tx_completed -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3fc8a70 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xf405b31b param_ops_invbool -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 0xf43d2caa acpi_remove_interface -EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf4941cea do_splice_direct -EXPORT_SYMBOL vmlinux 0xf49c6751 mmc_run_bkops -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 0xf4cdd446 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0xf4d22a7f iov_iter_alignment -EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf5304d21 flow_rule_match_control -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf55108c1 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xf567c12f memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0xf592433e udplite_prot -EXPORT_SYMBOL vmlinux 0xf59b6b25 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc -EXPORT_SYMBOL vmlinux 0xf5a4002a tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0xf5a60d1f simple_getattr -EXPORT_SYMBOL vmlinux 0xf5ad7c68 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0xf5add0ae ns_capable_setid -EXPORT_SYMBOL vmlinux 0xf5bec6de tcf_idr_create -EXPORT_SYMBOL vmlinux 0xf5c3312f mr_fill_mroute -EXPORT_SYMBOL vmlinux 0xf5c62f35 wait_on_page_private_2_killable -EXPORT_SYMBOL vmlinux 0xf5ca197f skb_store_bits -EXPORT_SYMBOL vmlinux 0xf5d74d61 input_get_poll_interval -EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -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 0xf62c39fe ucc_slow_graceful_stop_tx -EXPORT_SYMBOL vmlinux 0xf631a0dc ucc_of_parse_tdm -EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -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 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf68a34f6 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0xf6b3ea0e tcp_md5_hash_skb_data -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 0xf7295611 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf73b165f fsync_bdev -EXPORT_SYMBOL vmlinux 0xf7459035 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xf7502694 dev_load -EXPORT_SYMBOL vmlinux 0xf753b8f4 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported -EXPORT_SYMBOL vmlinux 0xf768611b nf_unregister_net_hook -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 0xf7881b1b cad_pid -EXPORT_SYMBOL vmlinux 0xf7bd9859 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0xf7c48778 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table -EXPORT_SYMBOL vmlinux 0xf7e5cc09 __dev_direct_xmit -EXPORT_SYMBOL vmlinux 0xf7ea6311 qman_p_poll_dqrr -EXPORT_SYMBOL vmlinux 0xf7ecbb9e tcp_seq_next -EXPORT_SYMBOL vmlinux 0xf7f05c17 fman_port_use_kg_hash -EXPORT_SYMBOL vmlinux 0xf80261f1 filp_close -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf820d071 pneigh_enqueue -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 0xf8627d4c of_node_name_eq -EXPORT_SYMBOL vmlinux 0xf866b00c tegra_io_pad_power_enable -EXPORT_SYMBOL vmlinux 0xf86f21bc alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf889559e md_error -EXPORT_SYMBOL vmlinux 0xf88e5144 generic_block_bmap -EXPORT_SYMBOL vmlinux 0xf890f4e4 pci_dev_driver -EXPORT_SYMBOL vmlinux 0xf896a8a1 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xf89f5bdc __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0xf8ad52c6 rproc_report_crash -EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound -EXPORT_SYMBOL vmlinux 0xf8c9a282 sk_ns_capable -EXPORT_SYMBOL vmlinux 0xf8cd5183 __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 -EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct -EXPORT_SYMBOL vmlinux 0xf9336f41 pcibus_to_node -EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc -EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf95c619b acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xf969b0ab mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len -EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf98ba65b dcache_readdir -EXPORT_SYMBOL vmlinux 0xf98e608b mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9a8c657 file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0xf9b52732 sock_alloc -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 0xf9cb5190 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0xf9de3234 inode_dio_wait -EXPORT_SYMBOL vmlinux 0xf9ef281a mipi_dsi_device_unregister -EXPORT_SYMBOL vmlinux 0xf9fd46de notify_change -EXPORT_SYMBOL vmlinux 0xfa007921 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa0dd0b7 of_graph_get_endpoint_by_regs -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 0xfa4d53eb iommu_dma_get_resv_regions -EXPORT_SYMBOL vmlinux 0xfa559d9d devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa6e50bd iommu_put_dma_cookie -EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfa8b3964 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0xfa8f13f7 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfaae82f6 may_umount_tree -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacd8c28 nla_put -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 0xfb25a5d7 ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xfb287c3e phy_validate_pause -EXPORT_SYMBOL vmlinux 0xfb2a904b netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable -EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb44c2dd netdev_printk -EXPORT_SYMBOL vmlinux 0xfb499fa6 kfree_skb_reason -EXPORT_SYMBOL vmlinux 0xfb4b30d3 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0xfb60d9a2 nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb79d6cc get_thermal_instance -EXPORT_SYMBOL vmlinux 0xfb7a2791 xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0xfb928c92 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad -EXPORT_SYMBOL vmlinux 0xfbbb6c72 of_graph_is_present -EXPORT_SYMBOL vmlinux 0xfbc42468 tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbe4b175 qman_create_cgr -EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0xfbecca6b xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0xfc1888fd dev_alloc_name -EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit -EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load -EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read -EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown -EXPORT_SYMBOL vmlinux 0xfc61aeba __skb_get_hash -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 0xfcaed3e9 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0xfcb942ff is_nd_dax -EXPORT_SYMBOL vmlinux 0xfcb97531 skb_expand_head -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 0xfcce2f7d ucc_fast_enable -EXPORT_SYMBOL vmlinux 0xfcd104a4 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcd86f01 fib6_info_hw_flags_set -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 0xfcf19994 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0xfcf75d1f skb_seq_read -EXPORT_SYMBOL vmlinux 0xfd2deb0d devm_iounmap -EXPORT_SYMBOL vmlinux 0xfd3ffd98 fman_unregister_intr -EXPORT_SYMBOL vmlinux 0xfd4671cd netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0xfd676b6a tty_write_room -EXPORT_SYMBOL vmlinux 0xfd687a00 d_drop -EXPORT_SYMBOL vmlinux 0xfd7f46c2 fs_context_for_mount -EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 -EXPORT_SYMBOL vmlinux 0xfdb9b34d key_alloc -EXPORT_SYMBOL vmlinux 0xfdba0491 tso_start -EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line -EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfdda4ee3 devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update -EXPORT_SYMBOL vmlinux 0xfe27e341 flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0xfe385fed send_sig -EXPORT_SYMBOL vmlinux 0xfe47f5bf nf_setsockopt -EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe6d782b flow_block_cb_free -EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfe9667cc reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfeabad90 pcim_set_mwi -EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfee04fa5 vfs_unlink -EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff280dbf remap_pfn_range -EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff31dca0 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0xff321028 mmc_request_done -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 0xff9b722f drop_super -EXPORT_SYMBOL vmlinux 0xffb59d6c sock_pfree -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 0xffeee389 blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0xfff0d443 fifo_set_limit -EXPORT_SYMBOL vmlinux 0xfffa4add inet_sendpage -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/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 -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x05462346 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x0bcab344 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xdd831f15 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xe917e570 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x19eb065d async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x1d613fcf async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x61d2e675 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xfcf0652c __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xac4567e7 async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xc9f9e8f3 async_xor_val_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xde1d0f44 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xde41e05c async_xor_offs -EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xb9ad6c3d blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x5f402763 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 0xbcf8919b 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 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 0xefe73979 simd_skcipher_free -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 -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xccc308c5 serpent_setkey -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 0x7b810430 twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x0cec6bca spk_var_show -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1fc8071a spk_ttyio_synth_immediate -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x23a56f47 spk_ttyio_release -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x23cdba2b synth_add -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2e82133b spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4251ffa4 spk_ttyio_synth_probe -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x42654a55 synth_current -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 0x5b45413b synth_remove -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 0x8fc85b66 spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8fe0db01 synth_putwc_s -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x965a54c1 spk_synth_get_index -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x9ea05d4b spk_ttyio_ops -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xa4c9d60a spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaadb0612 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xac3a4c71 spk_do_catch_up_unicode -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb734cb9d speakup_event -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb9d30d27 spk_synth_flush -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 0xd4e802c3 spk_var_store -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd8fd86cf synth_release_region -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd93829dd speakup_info -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe194d0ef synth_printf -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x1f9c0afd acpi_nfit_ctl -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4639bcda acpi_nfit_shutdown -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x499bbf57 nfit_get_smbios_id -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x9eed11db __acpi_nfit_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xbf258cea acpi_nfit_desc_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xdc3a7711 __acpi_nvdimm_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xe3d6bae4 acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0x67927a0d platform_profile_notify -EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xbfe36436 platform_profile_remove -EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xcac33cd4 platform_profile_register -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xe32b5223 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x046a5cba sis_info133_for_sata -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x09917359 charlcd_poke -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x6fd9cc4a charlcd_register -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x8b45326c charlcd_alloc -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-ac97 0x0a9e73c7 __devm_regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x3d8a7126 regmap_ac97_default_volatile -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x699a728a __regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xcdd62d2e __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x0f031192 __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xc5fc024f __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xa1734e13 __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xbe3dea21 __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x8639af14 __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xe19805fc __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x2a682430 __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xe50ca7ed __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x39eb4c41 __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x71f88814 __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x779d459c __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8540f7f2 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8e3755cf __regmap_init_spmi_base -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/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/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 -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1c89794c mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x205208e7 mhi_poll -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x213e52aa mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2628051e mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3a7bc48d mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4c1ce167 mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4d2c2ad8 mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x55a42dce mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5ebbe150 mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x63c5fd2e mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x73e3784e mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x765735c1 mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7ac88751 mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7b90fc6b mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x889f5673 mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8e7b1f06 mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8f826593 mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x905c6c75 mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa230bca9 __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb14d8d66 mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbc238d4d mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc5b5324c mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xccb0f67e mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd7f9b96e mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe5d102ea mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xeb80c54a mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xfcaca603 mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x0b885a2e __moxtet_register_driver -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x4e4c54d6 moxtet_device_write -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x9482bfbc moxtet_device_written -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xbc7e8979 moxtet_device_read -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x63d37646 sunxi_rsb_driver_register -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0xf0e0816d __devm_regmap_init_sunxi_rsb -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x4344f91c meson_sclk_ws_inv_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x59a06bc4 meson_clk_phase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x70fce857 meson_clk_triphase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0x2ec6c5bf 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 0x1314a7de qcom_cc_map -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 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 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 0x4db1c3cb qcom_find_src_index -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 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 0x7b0180f5 qcom_cc_register_board_clk -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 -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9d909edd clk_gfx3d_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9f1bf2e0 clk_alpha_pll_trion_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9f241baa clk_rcg_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaa403ee8 clk_alpha_pll_huayra_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 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 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 -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 0xef4cb01a 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 0x1cb6aec1 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 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/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 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1ad9fd9c comedi_timeout -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1bbfe9dc comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x20a443f1 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x25d476f8 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2cb808e2 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x361cd5bd comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3d1b6cb5 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3ea8ac11 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5375f465 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x55e77870 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x57b17914 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5acaf4e8 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5b328e42 comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5e11d9be comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6747bde2 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7c014c41 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x921a8f85 comedi_event -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9279601a comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x95d3001f comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9d562c27 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9db2a7aa comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xab159184 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb70d5dfa comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbfe087fb comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc713cb26 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc8871064 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcdea0192 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd63b5f8f comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd6ef0a8a comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xded12234 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdf6e1e87 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xee30a10a comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf2212640 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf2954b64 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x0357b838 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x20b337f1 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x251d1fdf comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x329fea85 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x522a4f72 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x9636b7b3 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xb948023a comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xee2974d6 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x2d1317f2 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x572b2860 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x88f564ec comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x8cec4f8d comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xe62fb67c comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xf26e56df comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xd3bc5209 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x82e76ac7 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x90fcd966 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xcd0e4003 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1b660b05 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x24171eb8 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x2d059d27 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4f56a123 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x75dfb31b comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7ef25505 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x86674fbf comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x88693d04 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xae00eab2 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xb312256d comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xbc7929f8 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xd1ff7a01 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe0008dae comedi_8254_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x5100f0b9 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x75b54f20 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xbd1554c8 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x35224040 das08_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2f0e56fa mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2f98eef0 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x32fd952b mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3c5357b3 mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4c31096b mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6f0a0641 mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x716180ba mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x745d2a26 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9d459a83 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb19d857a mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb1d5ce10 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc08db66d mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xcb323476 mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd75cec6b mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdca0e709 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe5c12c0b mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x69a1f86c labpc_common_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x7e40667c labpc_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x85e75c94 ni_assign_device_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x11db25ee ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x16d995ff ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2af6a924 ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x37cdf3ed ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3d36c066 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x44009d37 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4649b14a ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x79006ebc ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x82d11378 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x85c4987d ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8c55353f ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xbd68b6f1 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc8cf35a8 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xdaebb8b6 ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe4bc7a2c ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xeba46b2b ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x00a0698f ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x0c1fca27 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x76c3c496 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xe49e7304 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xe93c276b ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xec9c270e ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x245cbe2e comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x3373a1cc comedi_open -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x6d705116 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x7ccd9085 comedi_close -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x95bd4d74 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xccd4b798 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xe2d36e82 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/counter/counter 0x137352d6 counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0x294a7ea1 devm_counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0x61d398b1 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 0xa1166725 ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0057a8f1 hisi_qm_sriov_enable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x042cfe5e hisi_qm_alg_unregister -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x09facf44 hisi_qm_create_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0f612762 hisi_qm_dev_slot_reset -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x24fbbdd6 hisi_qm_dev_err_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x29352fc2 hisi_qm_stop -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3af62f7b hisi_qm_suspend -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4f55964a hisi_qm_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x58a608fd hisi_acc_sg_buf_unmap -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6400fb3a hisi_qm_get_vft -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6544bd88 hisi_qm_put_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x658909e7 hisi_qm_pm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6781c6ba hisi_qm_get_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6853e3b2 hisi_qm_release_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x69b61146 hisi_qm_alloc_qps_node -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6c95539a hisi_acc_free_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x717c83bc hisi_qm_pm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x75387fb1 hisi_qm_dev_err_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7a3cc7ba hisi_qm_debug_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7ca3fcb1 hisi_qm_debug_regs_clear -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7d36419d hisi_qm_reset_prepare -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8701e3e9 hisi_qm_regs_dump -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8d08214d hisi_qm_sriov_disable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9ba0779e hisi_acc_create_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9fc259db hisi_qm_resume -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa08a839f hisi_qm_start -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa399e0c7 hisi_qm_wait_task_finish -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa3d84413 hisi_qm_stop_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb75ddae6 hisi_qm_dev_err_detected -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc91b6f29 hisi_qm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xca8fa168 hisi_qm_reset_done -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd37be588 hisi_qp_send -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe3bc3ff6 hisi_qm_start_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe6fb671f hisi_acc_sg_buf_map_to_hw_sgl -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xec5daf97 hisi_qm_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xeea584c1 hisi_qm_free_qps -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf019af4a hisi_qm_get_free_qp_num -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfbc5e341 hisi_qm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfc886075 hisi_qm_alg_register -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 0xb41ae187 otx_cpt_eng_grp_has_eng_type -EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x49378335 dev_dax_probe -EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0xfafe6032 __dax_pmem_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x911d8834 dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xb46cb333 dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x072634de do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1af8ecd1 do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x26357be0 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x2e9b1606 idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4c44fc92 dw_dma_acpi_controller_register -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa838e4de dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xace660da dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xbb39dac1 idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc88e9e63 dw_dma_acpi_controller_free -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x369b5dd8 dpdmai_reset -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x4dc3e6f0 dpdmai_get_rx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x683ae5af dpdmai_get_attributes -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x72f30521 dpdmai_set_rx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x816e7adf dpdmai_enable -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x85fbf5b6 dpdmai_destroy -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 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 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 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/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 -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x980673b9 ffa_driver_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xab21393b ffa_device_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xba95ffb2 ffa_bus_type -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xce51d666 ffa_driver_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x6b5fee10 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 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 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 0x7223afef dfl_fpga_enum_info_add_irq -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 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 0x88a560f4 dfl_fpga_enum_info_alloc -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 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 0xef0a6ede dfl_fpga_feature_devs_enumerate -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 -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4158e812 fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x44cfc3a3 of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5b8a160b fpga_bridge_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x70717c83 fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x842df973 fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xb696f6f0 fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xccf3b14e fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xcfee87ea of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xeab2b5a7 fpga_bridge_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xfa1c767e fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xfafb06c4 fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1b58f0bc fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x241c1261 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x37e96aba devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5204d6e6 fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x65cd86c7 devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa5927429 fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb39a25ed fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc0079905 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc283491c fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc38d550f fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd40c2f1c fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xdd59cdf4 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe95537c9 fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf2cdcf6b fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x04432cf9 fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x14e3cba2 fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x4792d2dc fpga_region_register -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 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 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 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 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 -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x00de56b6 gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x46cf7db4 gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x473ca9d0 gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x799a2a26 gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xa28e15d5 gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x1ce2bc66 gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x6c318fde gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x86d67946 gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xe70dbedc gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xed5ce37e gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x2bf7e91b __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x647424be __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x496ce291 gpio_regmap_get_drvdata -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7066570 gpio_regmap_unregister -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7dfc693 devm_gpio_regmap_register -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xf1a8308e gpio_regmap_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x07d82b39 analogix_dp_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x08b852e6 analogix_dp_stop_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x686bcbdd analogix_dp_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x6ecafce0 analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x80a42ae0 analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xde61ddf0 analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xed5b6cca analogix_dp_remove -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 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 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 -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 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/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 -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x17d55bdd drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2fdc7557 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x37de3c8c drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3f0a31dd drm_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4228f6e6 of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4671e32f drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x49f780ee drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5539b1c3 drm_of_encoder_active_endpoint -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5cdaedfd drmm_kstrdup -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x69ae8da3 drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6a2365a0 drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6c0c3fbf drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7cd5d446 drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x828a5b6f drm_gem_shmem_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x99544720 drm_gem_cma_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa7f3c122 drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xacc55995 drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb9f5bd0a drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbddee615 drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc09f3943 drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc1c7a1e6 drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc2e91166 drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc8250173 drm_of_component_match_add -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcb0cc74b drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe146e4a7 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe7b3bf8a drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xec00d1f7 drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf30401e8 drm_of_lvds_get_dual_link_pixel_order -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf9a77715 drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfa4d20b3 drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xff2c35cf drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xffb60502 drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x7566f57f of_dp_aux_depopulate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x7789a173 __dp_aux_dp_driver_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xc65ec2c6 dp_aux_dp_driver_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xd0357559 of_dp_aux_populate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xe12c26ec devm_of_dp_aux_populate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0dcb805d drm_bridge_connector_enable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x21eaa533 drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x2dfa7c72 drm_fb_cma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x42c57fae drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x53f27b3a drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5b3227b3 drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6562a1df drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9f924b59 drm_fb_cma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc5e1739f drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd49f09a3 drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd69a4631 drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd6ce0932 drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xdf269280 drm_bridge_connector_disable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat -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 0xadfea1ef meson_vclk_dmt_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xb291a1c6 meson_venc_hdmi_mode_set -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xb61b5ec9 meson_vclk_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xd258117e meson_vclk_vic_supported_freq -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_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 -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x92af31cf rcar_lvds_is_connected -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x2f64a8dd vop_component_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x3f8c83fc rockchip_rgb_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini -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 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 -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14028e17 __SCK__tp_func_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1778a5a7 gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1b912ee6 gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x28c1813a gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x29cd291e greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2e502cd3 gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3ee904ee gb_connection_latency_tag_disable -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 -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5ad3f2d7 __tracepoint_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5c0a8043 __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x61a2734a gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6213634d __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x63fc0823 gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x64129775 gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x659ce7e4 gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6b4f1d85 gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x786e05d1 gb_operation_request_send_sync_timeout -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 0x96214b37 gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa416e2da __tracepoint_gb_hd_del -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 -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbb136e2a gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbdf3c626 __traceiter_gb_hd_in -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 -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xee499ed5 __traceiter_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf2fb1e7a __traceiter_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf88b19cd gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfaa75a35 __traceiter_gb_hd_create -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 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 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 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfb74f2c9 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x9b6fd082 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 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 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/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 -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x409fe736 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x455235fb hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5d04ee07 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5d93c374 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5fcfad8f hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x759e7fb1 hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9e932665 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa0dce695 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa89c347a hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbc8132dc hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc3b34e65 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc5b8c36d hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe9d9efff hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf705c0ca hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf9726437 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x054b4f40 hv_pkt_iter_first_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0c7c90f2 vmbus_alloc_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x124e0d13 vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1a131802 vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x20f6ffd7 vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2df6806e vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x302b24a9 vmbus_connect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31e2e77f vmbus_free_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x321055cb vmbus_prep_negotiate_resp -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3438bde0 vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3c8aa8a5 vmbus_disconnect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x42a7eedc vmbus_connection -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4fbfdcf3 vmbus_are_subchannels_present -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x511df91f vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x58c0dd93 hv_ringbuffer_spinlock_busy -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x59cb8729 vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5b351f15 vmbus_free_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x674e657e hv_ringbuffer_get_debuginfo -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x68fb2044 vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6f7e4b09 vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x85c2b82b vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8a959cd5 hv_pkt_iter_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x907cf77c vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9298a1b5 vmbus_send_modifychannel -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa902e185 vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb4928797 vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc8941907 __hv_pkt_iter_next -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcf717da7 hv_pkt_iter_first -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd6c680e4 vmbus_request_addr -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe29d9d81 __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe5ca4f03 vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf16f19a9 vmbus_next_request_id -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x027a13de adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x502d30d3 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x9692608e adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xd29e6b3e ltc2947_pm_ops -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x05684b7c intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0926620e intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0929d2ec intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2c2807b8 intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4b85857b intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x74e43caa intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8a0d9ea6 intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x92847045 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa33809f9 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x1806ed32 intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x73626958 intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x74c5af2c intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1f4069d8 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x29f28e05 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2e2fa88c stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4166e568 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x56fc1080 stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7e05b9b1 stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x90ab5c1b to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd46d5f7d stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf464c356 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x13f57730 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x144e68b7 i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x2684b69d i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x4c88f8e9 i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x38829ed1 i2c_free_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x3c210caf i2c_new_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xcb938031 i2c_register_spd -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xe9053c68 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x071e5d4d i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0c46b2cf i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0cc11050 i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1d315f6d i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1dbe9db1 i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1de37128 i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2e1d1bf4 i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x34a5fcf0 i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4d91c14e i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x582bb9bd i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x59b8cc3c i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5bdb6189 i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5f40a7ec i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x64263c8f i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6e051ab8 i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x75edcf73 i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8318da08 i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x91ea7e86 i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9fd86e92 i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xaccd55c4 i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb4328180 dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc7d11c26 i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd5d176bb i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd69b4007 i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfa3dfe5b i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xde076fa5 adxl372_readable_noinc_reg -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xe13c826d adxl372_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x3c32ce3f bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x458e8fbf bmc150_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x4d3402c0 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x8cddc9eb bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x059946ab bmi088_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x0f0dbab1 bmi088_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xbfa5afd5 bmi088_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xc434d0f9 bmi088_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x0f74e8fd fxls8962af_i2c_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x35ad7693 fxls8962af_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x8f4d41cb fxls8962af_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xadaa7c38 fxls8962af_spi_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x106245b9 mma7455_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x8ce2673f mma7455_core_regmap -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xca84e809 mma7455_core_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xad3c6aac ad7091r_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xed3ab372 ad7091r_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xa5068801 ad7606_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xed1207fd ad7606_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x234822d5 devm_ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2c9a8a2a ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4e0d50cc ad_sd_calibrate -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7e1d3260 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7fb67dac ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa9788aa0 ad_sd_reset -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbf2e93ba ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xca1950ba ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xdb5a2e5a ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe55b0899 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0xb5fb0403 devm_adi_axi_adc_conv_register -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0xc0eab3f6 adi_axi_adc_conv_priv -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9e8293f6 iio_channel_cb_get_iio_dev -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xa6b8ace2 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xbe47233d iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0ea34fb5 iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x2ceb66bc iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x352e1110 iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x584cf063 iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6cdf524a iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x73eb475a iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x94bcb945 iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xbc43e00a iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xbcc6713b iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xdf6b53e8 iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe1c25f9b iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf5edfc02 iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0xe6ab9849 devm_iio_dmaengine_buffer_setup -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x1f56313a iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xcb2e763a devm_iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x1d4d0c72 devm_iio_triggered_buffer_setup_ext -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 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 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/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 -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x6a94e36e ad5686_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x1306aea3 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x7d5fb7db bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xc0c408a8 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x7f4d7b9f fxas21002c_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x97c2af46 fxas21002c_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x9ce2b2f4 fxas21002c_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x10d47b48 bmi160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x8e4504d6 fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x2455c9dc inv_icm42600_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xb12078ea inv_icm42600_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xd251b869 inv_icm42600_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x885e2363 inv_mpu_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xde6756dd inv_mpu_pmops -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x49c0c0d0 st_lsm9ds0_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xae3cdd58 st_lsm9ds0_remove -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0149e60a iio_device_id -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x09f3aba3 iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c4414fa iio_device_claim_direct_mode -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 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 -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x277a46d3 iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2cbc871e iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x31031ecc iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3aeb9b34 devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x40ec3a5d iio_get_debugfs_dentry -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x499a6a6a iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4b591669 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x56430eae iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5b6e8921 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5cec684d iio_get_channel_type -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 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 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 -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xba534b5b iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbbba9ba7 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc06dc7e8 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc3acae1c iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc619cb4b iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc970a451 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd35173f4 __devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdaec2c79 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe6f27509 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeea23c12 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeff8b657 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf303f9b6 iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf5ed38fc iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfce60be2 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x12f8d83b rm3100_common_probe -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table -EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xaa55eaa5 mpl115_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x4665c525 zpa2326_remove -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x50c39fa1 zpa2326_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x7c844825 zpa2326_isreg_readable -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 0x12a1a4b2 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x18b440e5 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1c0cd40e rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x306a5b60 rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5c0cad92 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x602a3db4 rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x633c6092 rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x79a121e8 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x95d22ca5 rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa8b1f2e6 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc6814db0 rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe64c9adc 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 -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x084b4596 rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x15c05494 rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x272575fe rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x416cf258 rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4632acdc rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6fe5f7e2 rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9966dc72 rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9bc07e7e rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa5374d67 rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb76bfc41 __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc2034d81 rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd3673328 rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd6fcabf9 rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x3c51d79e cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x9920b397 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xddcd93bb cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x2e85dbc4 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x6d40af48 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x4008db37 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x75f6f638 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0d5a8a3b tsc200x_regmap_config -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/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 0x99942676 qcom_icc_bcm_init -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0x81e513ad qcom_icc_rpm_smd_available -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0xe8dbdc6c qcom_icc_rpm_smd_send -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1b02c3d8 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2fd77d96 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6ddaf41a ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb441b87e ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xba126f6f ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xca25cea6 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd9e4e959 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf277b26a ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf6e5f27f ipack_driver_register -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1835fea6 led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4be85e4e led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x52508f8b led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x601989a3 devm_led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb4cc9f38 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb7bca518 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc3194eeb led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xfbad7264 devm_led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x1aad88a2 devm_led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x39c0e251 led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xc2581c50 devm_led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xd8f621e8 led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xfd11baf7 led_mc_calc_color_components -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1c4939b2 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1d51f39a lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x52c469cc lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x53a48e3a lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6ae365e4 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7362a2f1 lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x95a2caa4 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd7b8903f lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe2571be3 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe59dd3b7 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 -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 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 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 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 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 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 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 0x6e74dca7 __SCK__tp_func_bcache_btree_node_free -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 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 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 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 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 0xbc268695 __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1857470 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc78d7102 __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8ae4213 __SCK__tp_func_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce48d6f4 __tracepoint_bcache_alloc_fail -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 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 -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 0x0d8397f7 dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x12f2e2f6 dm_cell_quiesce_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2465ef8d dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x39f6e06b dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x56e126b1 dm_cell_put_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5a73ff95 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5cf290bb dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7b09ee0b dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7da8d8db dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8b6c87f0 dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9a3288dd dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa31bef2b dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa5682c6a dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 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 0xb75834bb dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc95e4dae dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcc7160dc dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd619e34f dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-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 0x601488b5 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 0x2a08c811 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7890d535 dm_cache_policy_get_name -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 0xc2cb765b dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcf8c2590 dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bdae47 dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x6de7c576 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xa98bae49 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 0x366a6c85 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x58d3f8a3 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6d40181c dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x72a5a792 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x92341c48 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 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 0xe7886fb3 dm_rh_bio_to_region -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 0x4ac16b49 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4f477261 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5375ca71 dm_bm_write_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5475ba9e dm_block_location -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 0x02f1c992 cec_s_log_addrs -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0e95264a cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x252aa039 cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3ebda290 cec_received_msg_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x55f13c54 cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x57771806 cec_s_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5d3f7786 cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6ce863b8 cec_s_conn_info -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6dee1699 cec_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7ea41cd5 cec_pin_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8610af22 cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8a6a0461 cec_transmit_msg -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8f0aee01 cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x92916573 cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9df093f2 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 0xa3a43ee0 cec_transmit_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb74239c4 cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb7927741 cec_register_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xca79f486 cec_unregister_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd2ff77a3 cec_notifier_conn_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd5254893 cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf8efb43f cec_pin_changed -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2f2bf4a9 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3ee43e68 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x48fa2ccf saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x86f14793 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb7d4aa4e saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc0b31f15 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd938b5a8 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf4d2a74e saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfc84587d saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xff1a0126 saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x2c041bfe saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x42573535 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5ff0349a saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x6f88ff5f saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x9b227384 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xbaecb753 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xc162c8ce saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x03a0c620 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0de00388 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2faee333 sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3fa7bfd5 sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x466b5a0f smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x46a50141 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x68fe194d smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6c883257 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7d587dfa sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x86727a71 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x95c12457 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc592163b smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xca9d61da smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xccce3f2b smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd9c6fe97 smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf9dad42e smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xff94e234 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init -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 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 -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1101e65c vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x22ff6dd6 vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2337e417 vb2_core_queue_init -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 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 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 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 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 -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc169a39a vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc3b10f55 vb2_discard_done -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 -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x8e9d7c2c vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xb0586594 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x9c2b0ed6 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x77390def vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0b0ec872 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x18f0c966 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1b4dc91e vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1bda4280 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2aa9439b vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2b43e358 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3895260f vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3a50e1a8 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x450979f0 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4db5a76b vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x57068a26 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5c397e24 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5d209c11 vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5dab72b9 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6065ad7f vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x690dff83 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6a91fa4a vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x72034401 vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x75125f50 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x77a1f4a8 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7a444f85 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7a76fe5f vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7b1f991a vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x852f96f7 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8ceddd93 vb2_find_timestamp -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x99f9de46 vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa6853600 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xab198222 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb082b908 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb8d537ba vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbe91bebf vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xee8136ff vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf08125af vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf507c90c vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x16f126d2 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x7b4eb171 dvb_create_media_graph -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 -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0954b175 max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x22f5aece max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x63df2677 max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x66f7eab4 max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7242ce3d max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7cd14c49 max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8a2107af max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8e487ee5 max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x90c5b6fe max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x90d081b8 max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa73a1cd5 max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc4c6db62 max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0451778d __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0686d759 media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0942a0db __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0bb7d8bc __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x151ee1af media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1cfd25cb media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1efbbeee media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x235ec9e8 media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x24eb33f0 media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2b327ab0 media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2d385997 __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2e41fd9c media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x30b8632d media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x354c16f6 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x389665b4 media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3efa0f32 media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x41715eb2 media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x452e4586 __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x47b0adfc media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5269d813 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x54b108eb media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6652a0c1 media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x67ee5d36 media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7116c42f media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7315e296 __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x796979be media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8483ece9 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x859b9174 media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x87670a22 media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x946d7caa media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x96ba43f6 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9fe89e80 media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa6ef9c84 media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa8f8f100 media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb5ac6b9f media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb6fe2162 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb6ff533d media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbfc30432 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc82b9b70 media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd0e8a25e media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdf056451 media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe1f10b0c __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe9afde45 media_device_cleanup -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/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 0x7f6881c3 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 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/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/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 -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x16461b6b 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 0x48580b9e nal_h264_read_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x4a895716 nal_h264_write_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x5fb8c277 nal_h264_read_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x6a857a95 nal_h264_write_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x711a2909 nal_hevc_read_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xbe334dad nal_hevc_read_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xc2d20bc0 nal_hevc_write_vps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xd0a91777 nal_hevc_read_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xda687e65 nal_hevc_profile_from_v4l2 -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xe16be9e1 nal_hevc_read_vps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xea31bede nal_h264_read_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xf591f42a nal_hevc_write_filler -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x29578b9f mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x2d59d7da mccic_resume -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/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 -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x15d6532c hfi_session_flush -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x234a83bf venus_helper_set_bufsize -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x249a4305 hfi_session_destroy -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x25c3b221 venus_helper_set_input_resolution -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 0x281be4d1 venus_helper_set_profile_level -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 0x2fc54b17 venus_helper_session_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x30450bad venus_helper_set_work_mode -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x37608166 hfi_session_process_buf -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3a99d897 venus_helper_intbufs_free -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3aaee660 venus_helper_unregister_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3ce061fe venus_helper_vb2_buf_prepare -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x45464721 venus_helper_acquire_buf_ref -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x47024577 hfi_session_set_property -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x56038089 hfi_session_create -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x568b7989 venus_helper_set_color_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x585eca0a venus_helper_release_buf_ref -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7481a0fb hfi_session_abort -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7773a651 venus_helper_buffers_done -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7b28b222 venus_helper_get_ts_metadata -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7f6e3162 venus_helper_set_raw_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x80522edc venus_helper_set_format_constraints -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8f6c0367 venus_helper_set_stride -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9087be7c hfi_session_start -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x936425e7 venus_helper_find_buf -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x98fb2d84 venus_helper_set_multistream -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa00e1d99 venus_helper_queue_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa092d806 hfi_session_deinit -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xac50900d hfi_session_unload_res -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb30a9ca0 venus_helper_set_output_resolution -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 0xb8c36746 venus_helper_init_instance -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb8f214d8 venus_helper_get_opb_size -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb9566444 hfi_session_continue -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbc722104 venus_helper_free_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbec898bb venus_helper_set_dyn_bufmode -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc2b6a30d venus_helper_process_initial_out_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc36af62f venus_helper_get_out_fmts -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc469a4ef venus_helper_vb2_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc76992c7 venus_helper_intbufs_realloc -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 0xd24396d7 hfi_session_get_property -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd56fc992 hfi_session_stop -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xdfc178ad venus_helper_get_profile_level -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xdfcb82db venus_helper_alloc_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe12b3fd0 hfi_session_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xeaa28478 venus_helper_vb2_start_streaming -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xebc080bc venus_helper_intbufs_alloc -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xed82cc67 venus_helper_set_num_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xee316389 venus_helper_process_initial_cap_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfc82cc8a venus_helper_check_codec -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 0x5ce3b115 rcar_fcp_get_device -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x5fe6f6e8 rcar_fcp_disable -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x9877c29f rcar_fcp_get -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x50d2aaac vsp1_du_setup_lif -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x5feebb10 vsp1_du_atomic_begin -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x80136bc6 vsp1_du_unmap_sg -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xb16a4969 vsp1_du_atomic_update -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xb3eeee15 vsp1_du_atomic_flush -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xdcc13a5b vsp1_du_map_sg -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xed06ad4c vsp1_du_init -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x34a821aa xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x469d1e4a xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x6d2d602b xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x6f00c7e6 xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x8722355f xvip_init_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 0xfb80ada5 xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xfff44ea5 xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x1346a2c1 xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x4a1087ba radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xf591b38c radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x07d0403d si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x24b42a3e si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x349404a9 si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x95dcb853 si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xc010cf44 si470x_start -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0600948b ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0be37797 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x12e87cca rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x25951e62 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x49f3a7f3 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4cee8ce9 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4dc7e8d5 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4fa57eab ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6d8629ac ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7be4c22c rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7e850550 lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x838135dc ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd74a9898 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xea8db0ba rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xef92fd09 devm_rc_allocate_device -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 -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xea710124 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x39aaf76e tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x7b594211 tea5761_autodetection -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 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2569b78b cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x30160562 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3468131b cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3a7b2690 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4a2766bc cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x52b1aa00 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5b6da0ae cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5c28f024 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x788992a8 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x81d486bd cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xafbf46cc cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb3206f94 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd56a259c cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd88bd860 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdb2f122d cx231xx_uninit_bulk -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/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 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2cde95a6 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x47c21902 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5b3e6132 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d9272c1 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x84b04d53 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x868efaed em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9ee21989 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa7e38c4e em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb6119e73 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc6e4b6ed em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc8706cef em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcf8a0de8 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe8e64ede em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfe376e5b em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfee061ce em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x5403bfa8 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xaa316b08 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xd4f5a525 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xfb052e2c tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x09b47c8b v4l2_async_notifier_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x3bcefa7c __v4l2_async_notifier_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x493736c0 __v4l2_async_notifier_add_fwnode_remote_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xeb885f49 __v4l2_async_notifier_add_i2c_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xfefa40ff __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-flash-led-class 0x9fd475c0 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xa0f1bffc v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xd4af52f5 v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x224cba52 v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x310086a3 v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3985c762 v4l2_async_notifier_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4af9ed63 v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5f991ad6 v4l2_fwnode_device_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x8c92871f v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x8fd2bd4e v4l2_fwnode_connector_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa29faeaa v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf946a1c7 v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xfe3f2afa v4l2_async_register_subdev_sensor -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 0x015a5dc9 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x05a68712 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x05aeef00 v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0682295b v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0b364e3d v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x192b89cb v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1b0cc2ed v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1b48aa37 v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1bc7dd86 v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1c9d6e87 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x24ad787a v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x28b4753d v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2d602831 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x32c2eb2a v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x343104a1 v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x35bf4f0b v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x37077c95 v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3cc1d921 v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3d7021b4 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5765e017 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5eda201e v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x69743f7e v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7076bb35 v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x78a261fd v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8739de16 v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x899ffd66 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x90f69062 v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa180c51f v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa87218b9 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xab9e7735 v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xac14312e v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb21f86c6 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb28a9c60 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbb8d31ea v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fde788 v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc8c8bb65 v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xca2736a0 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcd6967b8 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xce76a467 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd9626a1e v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdfd0cb90 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xebd63836 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xefa0d48e v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf0f367b4 v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0863a1e5 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x19a47652 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x210175fe videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x23d58f28 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2a088919 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x358af3c7 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x40905e9d videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x40af5806 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4acca366 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5214ac42 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x540eb0a7 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5538d0a7 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x563d9ee1 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5fb03ec4 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7f34cdee videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7f3caa98 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb5d200a8 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb6a2c651 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc501d6bb videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdb7901e7 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeb5e37f8 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xee08a001 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xef052cc4 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfe5aa93a videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x08d03e19 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x3cf74097 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa1a6656f videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xc5a85c1a videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x2c27729d videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x5720ec1b videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xf97344b2 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x072b2ac9 v4l_disable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0868d925 v4l2_pipeline_link_notify -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0ee00582 v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1218e798 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x13692f2a v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ae5e652 v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1fc21cda v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2402074d v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2bd9fc8d v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ca36760 v4l2_event_subscribe -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 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3dc35c4c v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3e8404ad v4l2_subdev_get_fwnode_pad_1_to_1 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x41a64173 v4l2_event_unsubscribe -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 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 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 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x72665f26 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7550cbb6 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x75fde42b v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8209d194 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x83318f34 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8439e963 v4l2_pipeline_pm_get -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x88d4ca15 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x894bdfa4 v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x89b57fa2 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8da0ada0 v4l2_event_subdev_unsubscribe -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 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 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 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 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd4eacb0b v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd9b62725 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe1bbe354 v4l2_i2c_new_subdev -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 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf67d8d6a v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfb584054 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfdcee070 __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0x1d593053 mtk_smi_larb_get -EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0x70ce76e9 mtk_smi_larb_put -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x2f3cac57 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xc95a4266 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd52a0c8e pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0a76e4ab wm5102_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x270d30a9 cs47l24_patch -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 0x494e25e7 wm5102_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4ba86024 wm8997_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x58bcf313 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fcc2626 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x833d4d8d arizona_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8bb32453 arizona_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9c7b0593 arizona_clk32k_disable -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 0xb28bd645 arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb41d71da wm5110_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb581e5ad arizona_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc1d05fa1 arizona_clk32k_enable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc43ca08a cs47l24_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq -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/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 -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4a84badf da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x56b113c3 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x74694c4f da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe18dcfcd da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xa142a524 gsc_read -EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xb7abd1c4 gsc_write -EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x23d45d49 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5a5f380f kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5f30eb5d kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9b323e00 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa701b1aa kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xc1872eef kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xcb940b90 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xcf1f7a34 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x0c17c7e8 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x1838ee63 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x5179126c lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2d489f27 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2e32b26e lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7a40c549 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa0c8ce0f lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xbeec911b lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc4911396 lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd7cf389a lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x2f28552b lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x45f4d7d1 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x7854389a lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x09c5d69b cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x09c80adb cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f0b1e4d madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3c033008 madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x428608dc cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4af0cb97 cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4afd17d7 cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4fbcdac4 cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8033615b cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x803ebd1b cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x954bfb28 cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9a9415f7 cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9c734b29 madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9d15966e cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9d184a2e cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9d91e395 cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaa948d93 cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaa9951d3 cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb241fa23 cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb24c2663 cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc3067c57 cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc30ba017 cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xde208b62 cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xde2d5722 cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe9a1909f cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe9ac4cdf cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf174e72f cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf1793b6f cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x0edd61ba mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x19b1b1a8 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2a1fd152 mc13xxx_common_init -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/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/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 -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6e99e9e5 sm501_find_clock -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/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 -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xe240636d tps65217_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x4a93a758 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xaa24fe8e tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xce941b4f tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x7ac58e3f ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x19551848 alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x644c6597 alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x6abb204f alcor_read8 -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_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 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x22a9558e rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x310914a6 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x439c7776 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x60d30acc rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8b3fe3ff rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9f09cf50 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc03cf968 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc23441a9 rtsx_usb_write_register -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 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/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 -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x4b711f77 oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x5909e701 oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x780d3f01 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x84eba96d oslec_free -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 0x0caf8ad9 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x11ab30f4 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1303ee08 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x152afa46 enclosure_find -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/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/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 -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 0x15e0a7b2 vmci_qpair_enquev -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1fd4782d vmci_qpair_get_produce_indexes -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2449459d vmci_event_subscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3a22fa8a vmci_datagram_destroy_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 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 0xb09b0a70 vmci_qpair_dequev -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xb572e830 vmci_doorbell_create -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xbcb85f62 vmci_doorbell_notify -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc04c7e84 vmci_qpair_get_consume_indexes -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc403cafe vmci_is_context_owner -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xd1b3bad0 vmci_qpair_peekv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xde3abc2e vmci_datagram_create_handle_priv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe0cc9c92 vmci_qpair_alloc -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe11895c1 vmci_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea143610 vmci_datagram_send -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea61eefe vmci_qpair_produce_buf_ready -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x32098756 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/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 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/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 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 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 -EXPORT_SYMBOL_GPL drivers/most/most_core 0x3df935cc most_register_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x425e835e most_start_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x450e4c51 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x610c05bd most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x727bead2 most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0x7bed8910 most_get_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x85b37a58 most_put_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x9319e357 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa1801b25 most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xb7bb5ec3 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0xc92c3759 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xd4de4d40 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x7f087768 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x821652fe cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xbd3f7716 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x6e7b0f8c cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x9d82c00a cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xe3d08bda cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x0c45a68d cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x23fff42f cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x30b239dd cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x3e70ab0d cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x8a666c65 hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xf39ab504 hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1837552e mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1f098ddd kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1f428621 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x25d107bb mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x263d6910 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3705d67b mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x37609d2d mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3a93fe6f mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3c535ddb mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4202ebe6 mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x444b30c3 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x462f0e5b mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50d95f41 mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x544b10e0 mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x571878cf get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x57a701d7 mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5e3b30d7 mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6015157f mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x60bf8b6b mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x628837ff mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x65e95254 mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6b19f0bd mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7de33f15 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x836a960e mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x83972616 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x85976f94 get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x91734db3 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x95ba0c14 mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9ce1295a mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa7d39975 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa7e61226 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa891a8e6 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaa7f3e4c mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xab9d4c48 mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xacf89ec7 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb095353b mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb3e97e6c mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb8599f43 get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc4e141c2 mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc51be6a2 mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc9c6ddb2 __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcfd2632c __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd9d80081 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xda24d4e0 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdc2d1269 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdf2c59a1 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe96971c7 mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xee10ad51 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf55f018c __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf6deb8c4 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf81781b5 __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf976d733 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xffe11856 mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x14fef902 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x30f481e2 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x3fb9e3ae deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x61f29e35 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xbb338515 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0071dd18 nanddev_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0e06605a nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x17e21bed nand_ecc_init_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x20c29a60 nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x43c06add nanddev_bbt_update -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x478d008d nand_ecc_restore_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x51badd68 nand_get_large_page_hamming_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x6418ad2e nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x6732bb06 nand_ecc_cleanup_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x6eaebf93 nanddev_ecc_engine_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x77d313a5 nanddev_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8ca5cb22 nanddev_bbt_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9e62aeff nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xbab127f3 nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc86f4978 nanddev_markbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd5c94645 nanddev_ecc_engine_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdfb3516e nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdfd83ab8 nanddev_mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe1ea60c5 nanddev_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xebb7c94e nanddev_init -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 0x1f7a1e1e brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x40a72444 brcmnand_remove -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 -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0428a39b nand_deselect_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x072d2573 nand_read_page_hwecc_oob_first -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0ad3ae46 nand_prog_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0b736903 nand_read_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0c74ba80 nand_ecc_choose_conf -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11e48075 nand_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2541fb3d nand_prog_page_begin_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x27eb36f9 nand_reset_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2b353da4 nand_decode_ext_id -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2e5ef316 nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x502bad95 nand_readid_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x53a671d2 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x72afcc2a nand_select_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7559a288 nand_status_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7d44a68a nand_reset -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9b25cfc3 nand_prog_page_end_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb0a10adb nand_change_read_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbed6e088 nand_gpio_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc456b990 nand_write_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcc7d8d73 nand_erase_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd2bc0922 nand_soft_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3c672b8 nand_subop_get_data_len -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd41ff2ac nand_subop_get_data_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd819179c nand_op_parser_exec_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xdbba417e nand_read_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x8a8d8897 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x4b79f6d5 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xf6be6ad2 spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x01cbc85b ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0b04d656 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1441f922 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x147cde2c ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x230dc8c9 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cf164d8 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7175885d ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7ab0b073 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xaac3880e ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xca27e0bc ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd8822456 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe85c1859 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf27dcafe ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf68a2387 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x00db44ef mux_control_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x132bf298 mux_chip_free -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x17fb1dad mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2269060c devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x257afe63 devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7de14394 mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x938fb5b5 mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x9f74ca17 devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb08e0f14 mux_control_get -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 0x052e109f arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x99463a96 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/bareudp 0x8441725b 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/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 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 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/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 0xc24df336 lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0aa494e0 ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x10d92160 ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1d84e0db ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x321c6e0f ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3258899c ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x35780723 ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3b4779c2 ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x55e0b2d3 ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6d9d5f3e ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa901eed9 ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xaed71c86 ksz_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb4343439 ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe97eeec9 ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf9fb6760 ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x12128258 rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1e6a3c3b rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x2286ca74 rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3c13b0c8 rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x43cdcec2 rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x568fe3d0 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x67a80579 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb183dc7e rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb87e9d55 rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc64c0796 realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd48b0a70 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xdcedf68f rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe088d920 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf7250ee3 rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf967d8f0 rtl8366_get_strings -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/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 0x71242631 i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x9ff46ac1 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x0edf6929 ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x32baacb9 ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x88fd990c ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x9f0488d9 ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xa5ce65b4 ice_rdma_request_reset -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 0x02b6c562 mlx4_get_vf_stats -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 0x105d6541 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1161acb1 mlx4_get_counter_stats -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 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 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 0x27d79b8e mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a0676e0 mlx4_free_cmd_mailbox -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 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 0x4a6fd16f mlx4_set_vf_vlan -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 0x5afc16b8 mlx4_alloc_cmd_mailbox -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 0x5fa8be55 mlx4_slave_convert_port -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 0x6c0ba08a mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c54f141 mlx4_set_vf_rate -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 0x771a9c55 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d83eb2a mlx4_phys_to_slaves_pport_actv -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 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 0x8e19d5bf mlx4_set_vf_spoofchk -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 0x9dfd4f11 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1b06dfc mlx4_phys_to_slaves_pport -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 0xae2060ee mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaed35e27 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb085e031 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb095e22d mlx4_register_interface -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 0xbfaf3c12 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3798c83 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3cb82c1 mlx4_xrcd_alloc -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 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 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 0xdba69b50 mlx4_vf_get_enable_smi_admin -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 0xf0788573 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0dbf2de __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf460741f mlx4_set_vf_link_state -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 0x002cc4f7 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03a89464 mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0819790f mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dd0b24e mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f7f7e6d mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1312b7d6 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14e36507 mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c37a9ce mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22a96b50 mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23f34e1c mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28349638 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2936937f mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e8ae536 mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f361b4e mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cafe7c9 mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3de7a728 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fa121aa mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fe1f955 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ff2fdb7 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x406db50a mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41fda9de mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42fab394 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49336c14 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a522a88 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52f83bb1 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54804e49 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5646d3a8 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58d5d51b mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c12d8d5 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6471a05d mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a9f6419 mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f0d8a22 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7396c689 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75d6cd4a mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c14eacc mlx5_nic_vport_unaffiliate_multiport -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 0x8444409b mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87bc0942 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89a4d63d mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b6e2b52 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fc3a7f8 mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9920f0cf mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x992f2b1a mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9afee467 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e2c2005 mlx5_core_access_reg -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 0xa8c558e6 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac66eb1c mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4f98f09 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2747140 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc355a072 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc40b8c0f mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7531c23 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc996726f mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4042192 mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda3dba74 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdade72b5 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbba90ba mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe244d2d2 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe258a96a mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe45a6fcb mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe613c6f8 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7341c67 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9a95d4f mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea3aa3c3 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb44081b mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed1a0044 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee83344f mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeea810c1 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3fd8b39 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf49009c2 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9548bd0 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd03d8e8 mlx5_query_nic_system_image_guid -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/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 0x08fb8eda ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x096ae361 ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1313ba5c ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x16efbafd ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2e44d7a4 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x58f39a66 ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7843a99a __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8023eb5d ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8146a6b4 __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa7de4029 __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc4a73482 ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf08b3a1e ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfbe1c5c6 ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x0b28a9ad qcafrm_create_footer -EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x2b6ddf3f qcafrm_fsm_decode -EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x41da0375 qcafrm_create_header -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 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 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 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/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 0x91fd3558 am65_cpts_rx_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xb60b988a am65_cpts_estf_disable -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xbfc83e4d am65_cpts_estf_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 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 0x236f1a91 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x9592ff70 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x97f76f8d ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb04dbc60 ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xf3276353 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xf38d91d2 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macsec 0x156f4d3e macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x007c40e2 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x2e188326 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xa0533ccc macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf3ab8369 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/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 -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/phylink 0x08213956 phylink_ethtool_get_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x131e8b94 phylink_helper_basex_speed -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x15c4e3e2 phylink_ethtool_set_pauseparam -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x16ca1a8a phylink_suspend -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2ddb6392 phylink_create -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x43c04408 phylink_mii_c22_pcs_an_restart -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 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 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 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 0x20cb3b88 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 0x010244ce vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x385bcff3 vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x85ca117e vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x873c0ece vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xa1f1108e libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3ddc6eb4 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a5c063a il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7065da9d il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d6ed99e _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8cf6b5c3 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x018baa82 _iwl_dbg_tlv_time_point -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1332e4de iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 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 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 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 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 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 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 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 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 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 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 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 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 0x12a20681 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x256d3ea4 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x83021daf p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x8c811191 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x9d8867e1 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xbc9df760 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xbd734d8d p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf49938a0 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xfa913ebf p54_parse_firmware -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/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 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 0x1ceac614 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x29b85044 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x76188563 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7a7ef683 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x993ea544 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xae99715b lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xcbf6903f lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf77bf533 lbtf_rx -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/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 0x02b61169 mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x04cbfaee mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x04e08168 __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x067321ff mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x07982990 mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x08f1dadb mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0984ebcd mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0ae72209 mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0c4f2212 mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0e550d80 mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x10185496 mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x104cc6b5 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x174646ec mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x186e2016 ____mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1a579905 mt76_get_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ccc0af3 mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1e7bfbdd mt76_insert_ccmp_hdr -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 0x20571a72 mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2174db95 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x220050ee mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x28d82088 mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2b6de533 mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2e5bb246 mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2ecb75b6 mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x30e212ec mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x327e9002 mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x32e282ee mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x38c24e0e mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x39a79f28 mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3a2a7abe mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3e717e3b mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x403cc125 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x441c8c76 mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4775e8d9 mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4a048976 mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4bdef5ee mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x516fb201 mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x52747567 mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x54d38397 mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x575ee427 mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5a8d19cf __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5ab1f480 __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5c045f46 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1b4e42 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5fac6c94 mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6d8c5d1c mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x707497f2 mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x72af18aa mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x787f0af3 mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x80c7210f __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x81560a0a mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x81c1099e mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x85591361 mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x88963dd7 __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x897ed61d mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8f91cc56 mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9073dc91 mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x93fc8cbb mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x97f1c3a8 mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x999e1dce mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a5471af mt76_sar_capa -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9d300be4 mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9fc99bac mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa473a6dd mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaf2b7c45 mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb1b1feca mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc27502c7 mt76_get_survey -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 0xc9f0828e mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd7f209c3 __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdaf901e4 mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdd5dc502 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe2ec226e mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe560cabf mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe94ed2e4 mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeb1108e8 mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeb612727 mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf16c95a8 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfc8e0cc9 mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfd36b78a mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0584f473 mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x05ab1701 mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0f3c0423 mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x120adfcf mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x151f2569 mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x193324d7 mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x26040f13 mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2729ec89 mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x284c2128 mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x31835c91 mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x37f7b175 mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3a8eac9d mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x47788ced mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x488911b9 mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4f0e7a73 mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5e35f3c6 mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x69d54fec mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x69f10274 mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x756d985b mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7a2404fb mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7be0417c mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x80a53b85 mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x84c6e558 mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x92bae50c mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9be095c8 mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9de17b04 mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9ec32955 mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa9676712 mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xac4c2744 mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc779e7a0 mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcab3ef46 mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcc4981cf mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xced6c286 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcf57b91d mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd4e94736 mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd873f4f5 mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xda130f55 mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe02ba6a4 mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe310037f mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xeab561fa mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf27b66cb mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf6ea482b mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfe01832b mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2fa38213 mt76s_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x3f5d2880 mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x9acbd1c3 mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x233169fd mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x2abe194e mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa490719d mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa68368dd mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb13595cf mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc3929454 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xcd7410d3 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd5ce6005 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe4cc017c mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x015ca67d mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0a8e3ae0 mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1e04543b __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x24dd0cec mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2d44a258 mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x37c13d80 mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x57bd2bc8 mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x67930880 mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7e0e8d2d mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8acc95ff mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8bc42db6 mt7615_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8f267272 mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8f68d6f6 mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9212e04e mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa3ea8bab mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa4e28f64 mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa8df6b47 mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xabf980ad mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xce3c8e40 mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd860b068 mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd8b0b1ad mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd95eec18 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe2d77c4a mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe6133727 mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xee8fbdd8 mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf13bf777 mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf3091f97 mt7615_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf961dd8a mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfbf28380 mt7615_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0xa4d9cfe1 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 0x5bce2530 mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x61c40877 mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x68e31526 mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xd603dd1e mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x41e3481a mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x5d2eff90 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x6476f637 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xd24b7442 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xd9b01f96 mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xf32a6109 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x077be3b2 mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1081cd94 mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x149115c0 mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x15ced311 mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x206765a4 mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2b406b47 mt76x02_init_beacon_config -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 0x39f87be1 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3b1d0dad mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4114a419 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x461b2680 mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4732cead mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4c17a4c3 mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x50973e35 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x52db5279 mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x567b0aab mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5765b554 mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5aa883c9 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 0x5ef8ed12 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5f5d9f40 mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6028c065 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x67d43184 mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6bdf9b05 mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6d3ccfcf mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7638d128 mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7b140ddc mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7b92bf58 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7e69a4b8 mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x853d4520 mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8993a2a2 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8d88d26a mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x90e5bf05 mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x92239d0b mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x938d35fd mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9540b82c mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x95a50998 mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9b35a0f7 mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9c18226e mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9cce3960 mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9e631a15 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9f550671 mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa59c14de mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaf466802 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb6059fad mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc16cd361 mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc1edd445 mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc4ff8369 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc52b774d mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc82d117d mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcae7cce1 mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcc4787a3 mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcd7544a7 mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xceb428c5 mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd4be1c6f mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd5eb3d0d mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd6bf491f mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd96b7caa mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdb94d76f mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdf063298 mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe38bb0e5 mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xec1c2e79 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xede258c5 mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf009ddfc mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf111b470 mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf2228e98 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf81b8ab5 mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfdb9b5fb mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x031df78a mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x09ca99ee mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x1366a885 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x2b587d19 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x32aa3e78 mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x61e38201 mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x6e97353c mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xec826c72 mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x010c8e72 mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x17f43181 mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x349c95d4 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5c2cfb8d mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6f3b43d4 mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x780fe420 mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x788f294c mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7cdcc002 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x850a0a75 mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8d6058bf mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9956a2a5 mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xafe5e2cf mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb5bf2821 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc469b5cf mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcd6d288c mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd94ecf60 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdeffa36f mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe8d62eee mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf6014d36 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x8101fdc0 chip_wakeup -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 0xa7ba0735 host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xaee5921d chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xc8ea2180 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xe7b1c111 host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x0ace6786 qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 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 0x0775f727 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x13ac2a09 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x15e0c960 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x24d0f7e6 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x289f7246 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2a1aac81 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2a827b1a rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2b032c30 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x32d434ff rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x35cd01a6 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3b63581c rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3c2a3c58 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3cbf112c rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x486a1251 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4a92a88a rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4e843d0f rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x52882e37 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x56335dac rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5682902e rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x59770369 rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5b1a6543 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5cbb8f8c rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x63101152 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6a070b36 rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x71901a9f rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x77befbad rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x943a7b1e rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x98e4a420 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xad500547 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaf904769 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb997be09 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc4355de6 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc4684f2c rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc830df9f rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd546bfa5 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdf1826bf rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe1fd1891 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xebc5beed rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xef823301 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf417e7fb rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfb5625a6 rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfc067027 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfd41866c rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfdadbdab rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0c749492 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2e3e5187 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x30d50352 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x30e2c7c6 rt2800mmio_kick_queue -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 0x458e3353 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 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x65d2533e rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6a3bd745 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x732eb805 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7aec0b79 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x80688a8e rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9bf58ebc 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 0xc465778c rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd1b6f4de rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd93c8a07 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe851d846 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf03818e5 rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0027b113 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x008d3d5d rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0ed1f66a rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1225bdd2 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x12ce8c6c rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x14d85779 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x20cb9831 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2b09f20a rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x30f1a1e5 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3c4dcba1 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x59fd34e3 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6386ae92 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x68d57338 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x69044b58 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6b91d85f rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x788510c9 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7a85d631 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7ac0fd4b rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7bfdc0bd rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7c3859ae rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7d5aa3bd rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8673fb3b rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x885b3bf5 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x89dcb60c rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8b71bb21 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8d309ece rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9094071c rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x94997f15 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9d80b5e0 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9fb1f394 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa10d2dc3 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa1ba843d rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa369bd3a rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa3d6a398 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb388d293 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbdd0b25d rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbde57ccf rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd37110d3 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdfbe0f9b rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe272b75c rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe3f7359b rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe68e792c rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf066c8c9 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf4ed9f0e rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf57aa7c4 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfcf5d33e rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfd260857 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x24374c4f rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x2bdc6a0a rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x60b183b2 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x9b97085a rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xc70a1e21 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x0052dab9 rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x31150044 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x7aa5e19f rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0c0255f7 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x26489d94 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x309c0ca7 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3be79033 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3e734fb2 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4a5f8688 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6d868a24 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6dbe3958 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7bc4131a rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa5825f67 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xafab9a1d rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xcb48b712 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd0112fa7 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd26b6521 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd6e379ec rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xea6f4d6c rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1d99d434 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4a9dafd3 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc3e962e2 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe49e34b6 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0d5402c6 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x108ee69e rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3d76c983 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3e8bec30 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 0x505d94d2 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6b1f2c95 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6cdb932e rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x70de816e rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7cf85859 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x845577f8 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8595dcba rtl8723_phy_path_a_standby -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 0x8fc5e2a6 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x97036b9d rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa1a3f65e rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa7ee6fce rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb15c3856 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb19a1dc4 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb96d7f00 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc1762d46 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xceb0ca9a rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd214f0e5 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdff16278 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe348a1de rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf0e79c50 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf6d0e545 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x00a9ef73 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x043efdcf rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x187fe668 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2847cc6e rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2ae546ff rtl_efuse_ops_init -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 0x2f3f9280 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3cb6d28a rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3d31475d rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4dcba0bc 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 0x61e5940f rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7d075dcc rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90a2e5f7 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x93bd749a read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9e960782 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6026fc8 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbb9daa8e rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc3e88d9c rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc3f02422 rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc9d624f4 rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd73d1799 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdcc9141a rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf3f186ae rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf66492b2 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8cb8406 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xff504802 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x45fd22e1 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7c29a5de rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x86a339c1 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xae7eb8d5 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xde8f8dbe rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x280139dd cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x5e470c8e cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x61bcdfdd cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x6cf05d7c cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x505a83da wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x52f08b6a wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x545e96c9 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x01cb5030 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x020b816d wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0bb21c90 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0c7abe8e wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0eed8f94 wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x143c73af wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x15b92d95 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x16e8b80c wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x21962881 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2c9834d8 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3255f0ff wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x33c70a4f wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x35c297e7 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3bb43de7 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4dcca9f2 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x59b004c2 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5d9fac10 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5fc0b436 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6b4faeb3 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6f8c29c7 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x74f5aa11 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x756868da wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7e655789 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8061c4a9 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85cbc769 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x864292e6 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x87a5f37d wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8ec4995d wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8fee5d8c wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9732e97e wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa604caa2 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb044d7c0 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb5cdf6d8 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc4153a7f wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc8c4b2ea wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xca69622e wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe5a7b235 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe7120e9c wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf39c65c3 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf3e05d39 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfa58820c wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfda24a85 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfe1f89ed wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x0434bf28 wwan_create_port -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x3d9bbf75 wwan_port_txon -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x4dff61e5 wwan_port_txoff -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 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 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xebbb75d1 pn532_i2c_nfc_alloc -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 -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x517861a3 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x94da95ae st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xad33e757 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xea6c20de st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf494d568 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x2d21470f st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x6f4dbb91 st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xfdc8bfe3 st95hf_spi_recv_response -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x8ab3578d ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x962cf718 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9b999d37 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 0xcad83222 virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xf6062c08 async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0489a246 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x04c82031 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0797e84e nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x101acc0c nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1b476ab1 nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1da63bbf nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2e2aed4b nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2f55dd09 nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x38aec772 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x39286d93 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3ff0cf3d nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4430380e nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4e69d9b5 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x535879f2 nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x608e071d nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x65dc117b nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x676ab6dc nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x686c072e nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6af086a1 nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7657b18f nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x77e3a3ce nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x77fa2173 nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x80ffc7e5 nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x83ba47df nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8deae77e nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9e13ce43 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9ffb4b45 nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa6f06279 nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa82d33c1 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xac09f6bd nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xac6d1f74 nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb3a73fa7 nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb7d8ae08 nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcfece8cd nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd21473a4 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd3968103 __nvme_check_ready -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 0xd7b1aac0 nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd99a644a nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe882a2fe nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf3512ef9 __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf3b50c81 nvme_reset_ctrl -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-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-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 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 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 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 -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fa5302a nvmet_fc_rcv_fcp_abort -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport -EXPORT_SYMBOL_GPL drivers/pci/controller/pcie-iproc 0x481ac674 iproc_pcie_shutdown -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xe67c9dbc switchtec_class -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 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 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 0xf3f79d98 hisi_uncore_pmu_init_irq -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 -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x50e1ef9d tegra194_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5fac18ce tegra_xusb_padctl_get_usb3_companion -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x69064c14 tegra_xusb_padctl_disable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x82d70446 tegra186_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xa26867c1 tegra_xusb_padctl_disable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xab0403b8 tegra_xusb_padctl_enable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xace5ad9d tegra_phy_xusb_utmi_port_reset -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xbe44702e tegra_xusb_padctl_usb3_save_context -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xd2a5a6ae tegra_xusb_padctl_enable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xd5325c9d tegra_xusb_padctl_remote_wake_detected -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xddf79bf5 tegra_xusb_padctl_put -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe0c3dea3 tegra_xusb_padctl_set_vbus_override -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe15ece02 tegra_xusb_padctl_usb3_set_lfps_detect -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xfa1674b1 tegra124_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xfd4168d4 tegra210_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xfd7865ce tegra_xusb_padctl_get -EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator -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 0x58f2d6b3 cros_ec_sensorhub_register_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x8020e0d7 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 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 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 -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x99fd24af ssam_controller_put -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 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 -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdc633f3c ssam_request_write_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe201c68c ssam_device_driver_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe8ba54ab ssam_bus_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xea30c8e6 ssam_request_sync_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xead63149 ssam_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x18b14ae4 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/power/reset/reboot-mode 0x5ca5f181 reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x6543d6a5 devm_reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xa3cee8fc reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xb4b1c561 devm_reboot_mode_register -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/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 -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x5c54991f ptp_qoriq_gettime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x68ce58b8 ptp_qoriq_init -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x79ba5e6b ptp_qoriq_adjtime -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 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/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 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 -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x10bf5128 scp_ipi_register -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x2c233e78 scp_ipi_lock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x33af87df scp_ipi_send -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x3b0dee15 scp_ipi_unregister -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x55025625 scp_ipi_unlock -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x18ad7e41 qcom_add_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x32735a49 qcom_minidump -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x6cf19cdd qcom_add_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x78b22ac9 qcom_remove_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x8c8249b7 qcom_add_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xdd04049b qcom_remove_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xe04879b4 qcom_remove_ssr_subdev -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 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 -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/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 0x04de65b7 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x04f9d14d cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x07cd720e cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0cc5c7a3 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1200c202 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x172a75aa cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x19f0e653 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x27693d04 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x284b9563 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2ca0bd52 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x32f023a4 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4371b5d1 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4490ef90 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4638074f cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x51de5be7 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5471b33c cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x56006434 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x582607b8 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x59a7291b cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5b1b6a1a cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x868e5b45 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x87fc2b41 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a8aa2f0 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8fe722fb cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x909932a5 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9839c43c cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa341be73 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa47e3b7d cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xab553909 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb6541696 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc2a17ce7 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc5da1c9c cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xceee1906 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcfe94f6c cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdc11002e cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdec07cf3 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe5147def cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe9215d7a cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea5bdb52 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeda8b438 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef6ba997 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf49bf1ee cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf4a75f9c cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf5c9f026 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1006145c fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x11b3c005 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x120b7fe0 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x14b5a5b1 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x333c81b6 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4bc8b4e9 fcoe_clean_pending_queue -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 0x73c0b599 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7c1c638f fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8a9bbe6f fcoe_get_lesb -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 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdee906e8 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfa94d76b fcoe_check_wait_queue -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 0x0b607283 hisi_sas_probe -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 0x17780746 hisi_sas_controller_reset_done -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 0x34db7027 to_hisi_sas_port -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3d1fa298 hisi_sas_release_tasks -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x47a8f1af hisi_sas_remove -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4e0483a2 hisi_sas_alloc -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4fc22123 hisi_sas_stt -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x551661ac hisi_sas_phy_down -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 0x850671fa hisi_sas_sync_irqs -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8518e841 hisi_sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x88ebaf99 hisi_sas_init_mem -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8bff5cfa hisi_sas_get_fw_info -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x912398a3 hisi_sas_free -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9392195d hisi_sas_phy_oob_ready -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 0xb03aa9c5 hisi_sas_rst_work_handler -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 0xbb454d33 hisi_sas_stop_phys -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 0xc8eb6b9c hisi_sas_controller_reset_prepare -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xd1d4de0f hisi_sas_slot_task_free -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 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 0xe94b2d7b hisi_sas_notify_phy_event -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/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 -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x416adc55 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x563c29b8 iscsi_boot_create_acpitbl -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 0x00eab3ac iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x03626f36 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x03889b94 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x081a8091 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x123c768a iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x138081db iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x18dc7d16 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d0fe95f iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1da65ec4 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x27bb1f66 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2d716aae iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ef7468b __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3167f696 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x36aa72dd iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3784af3c iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3a09627c iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x433054f2 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4a0d0df1 iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4aa682af __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5334c22d iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x566572d0 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ea78620 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6267225d iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x720dfd38 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7396743c iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x73f35f18 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7637f33b iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7669c5bf iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x86721964 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x87629724 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x98900e56 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9b528f53 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9db13516 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9e98f87d __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa97ba4c7 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xab445857 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xafe83c63 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbbcfdc58 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbcaab64a iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbde129e8 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf721395 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc7a65806 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc8dae626 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xca57746e iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xceeb2120 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf097e795 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf40280c5 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf5d707be iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x08c83132 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0f625e68 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x10cb6e25 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x11b17984 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x30502f1a iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x33750bf8 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x48caf1a4 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6ebe6d2d iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x76fc7e40 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x81237e92 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8a0be310 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb340559a iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb3a26853 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc34c34c7 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd232009c iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe07bb0be iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe6a0e8c9 iscsi_tcp_conn_get_stats -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 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 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 0x06be439d iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x145f3571 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x168dfed4 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1868fb4a iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a30d249 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x22ca0cc2 __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x23819ca9 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2754476c iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2ce5ac9c iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2cff8c2d iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d5a13c1 iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x340c9368 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x36509344 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3b46e4b7 __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f2bafd9 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x415ed7c7 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d462803 __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5768a3a2 iscsi_alloc_session -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 0x5d338ef9 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x62b3a083 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7c6bf8db iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7da8a12b iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8308f313 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x856d79e0 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8d66851b iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x935e7bd0 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x958b60ab iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x988f029d iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e50bf55 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8273b2c 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 0xab9162bf iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xad022edd iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaf9abc4b iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb80d536f iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc355b9a iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc1462689 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4cfef3d iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdaa01470 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdaf47317 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde7136f5 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde79e55d iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe0fa4b6b iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2eb8239 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xed7cfcca iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf2173fe8 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb293638 __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfee1d454 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfef23a6f iscsi_scan_finished -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 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 0x29136820 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x729bd2fe srp_rport_del -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/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 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 0x389ef9af 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 0xc723b1cf ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -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 -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1d99e6ad slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2d0f1e5b slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x40d8bbf5 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x42a0abe9 slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x58592c29 slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x58faf8af slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x60ab8acc slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6ea0a9ed slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x75579767 slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x872b7393 __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8c1450e4 slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x91cdd682 slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9ed1315f slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa5d4ea6b slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xad674045 slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xaed5f641 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbf4186ba slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcddff52a slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd874b3c1 slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xde8fcccb slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe3dadf86 slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xebcebeed slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf99154aa of_slim_get_device -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x494128eb meson_canvas_alloc -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x673c5a86 meson_canvas_config -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xa899a745 meson_canvas_get -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 0x1f245590 dpaa2_io_service_register -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2ea89927 dpaa2_io_service_pull_channel -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2f10852c dpaa2_io_service_select -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x3f8992eb dpaa2_io_service_release -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x4994345c dpaa2_io_store_destroy -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x6560c60d dpaa2_io_service_acquire -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x79cf65a1 dpaa2_io_service_enqueue_qd -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x8edafa55 dpaa2_io_query_bp_count -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xb9e81961 dpaa2_io_query_fq_count -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xcdbca974 dpaa2_io_store_create -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xd02a95b6 dpaa2_io_service_deregister -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x14373062 aprbus -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x2787a0ba apr_driver_unregister -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x6976a9e6 __apr_driver_register -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xfa37e674 apr_send_pkt -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 0x27040e99 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/soc/qcom/mdt_loader 0xf206b1c1 qcom_mdt_load_no_init -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x2d3b6190 __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xcf08a74e sdw_unregister_driver -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 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 -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9f7f0e3d spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa0248f1b spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbf205edd spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf3b654f6 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x053473e6 dw_spi_dma_setup_generic -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x156a48f4 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x3d1862fa dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x5d63e41a dw_spi_dma_setup_mfld -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa6d03532 dw_spi_update_config -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xbc8fd046 dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xbfdcfc75 dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xc01275e5 dw_spi_check_status -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 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 -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x578d20ab anybuss_read_fbctrl -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5b525027 devm_anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7fb4118b anybuss_client_driver_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8a06b3ba anybuss_send_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x939f90d0 anybuss_finish_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xabada0d9 anybuss_recv_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb88c1382 anybuss_start_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc1c492aa anybuss_read_output -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc3472870 anybuss_send_ext -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xda0f925f anybuss_write_input -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe97051de anybuss_client_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x054da64f fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x34b78cdd fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x8a63338c fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xebeb1515 fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x020b4f26 gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1114d25c gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x16e79ba9 gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x18faa285 gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x54e6512f gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7644f848 gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7bdfe3c1 gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7faa8891 gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x893c9e89 gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xab562e3a gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xabbbe259 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc792f545 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe782c444 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x014e967a gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x199dd988 gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x40eeba9b gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x48abeb5d gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x4c724752 gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x70193470 gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x74c0987f gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x857a2b09 gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc0273aad gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc312a75e gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xcd21e85c gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd8d698a1 gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe1d8d08c gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x1e8a4bcc gb_audio_manager_get_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x735cdacc gb_audio_manager_put_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x712a185f gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xa5a7f41d gb_gbphy_deregister_driver -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 -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x201112d8 imx_media_get_pad_fwnode -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2326c83f imx_media_of_add_csi -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3afc4948 imx_media_find_pixel_format -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x534ba9e1 imx_media_find_mbus_format -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x53a175e7 imx_media_capture_device_unregister -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x5712773b imx_media_capture_device_next_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x5a02a475 imx_media_add_video_device -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x743aa958 imx_media_alloc_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x75d2ca77 imx_media_dev_notifier_register -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x75e8e6c4 imx_media_pipeline_set_stream -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x77c38d6a imx_media_add_of_subdevs -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa01d076a imx_media_pipeline_video_device -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa46d1daf imx_media_pipeline_csi2_channel -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 0xb8beef9c imx_media_capture_device_init -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xba1c7b7e imx_media_mbus_fmt_to_pix_fmt -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc0e6162e imx_media_init_mbus_fmt -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xccb894f1 imx_media_capture_device_register -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 0xd8c73f9f imx_media_pipeline_subdev -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe3a7a124 imx_media_capture_device_remove -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe50fbb90 imx_media_pipeline_pad -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 0xe9c814a2 imx_media_init_cfg -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf0350700 imx_media_probe_complete -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 0xfa67e10f imx_media_dev_init -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xfbf0c690 imx_media_find_subdev_by_devname -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x036a1cbe codec_hevc_free_fbc_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x092d5271 amvdec_dst_buf_done_offset -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x09520bee amvdec_read_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0974be58 codec_hevc_setup_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x115655e9 amvdec_am21c_body_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x12c048fc amvdec_set_par_from_dar -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x14aaa88c amvdec_write_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x20d4a4dd amvdec_remove_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x29da8e0c amvdec_add_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2c35a6d1 codec_hevc_fill_mmu_map -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3fcd66b2 amvdec_write_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x55e1f51d amvdec_write_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5ff35ee8 amvdec_am21c_head_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7db3e887 amvdec_get_output_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x8298ffdc amvdec_clear_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xaf2b7070 amvdec_read_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb5bfffb2 amvdec_dst_buf_done_idx -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb8b15171 codec_hevc_free_mmu_headers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc894c698 amvdec_dst_buf_done -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd1bef6e0 codec_hevc_setup_decode_head -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xdfa2a72e amvdec_src_change -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf396f39e amvdec_set_canvases -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xfd459728 amvdec_abort -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xd928b2a8 nvec_unregister_notifier -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xf90b53e6 nvec_msg_free -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xf97fd021 nvec_register_notifier -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x0cd2817f vchiq_mmal_port_enable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x0cffc2be vchiq_mmal_component_finalise -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x0d11316b vchiq_mmal_port_connect_tunnel -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x0d3fb554 vchiq_mmal_component_disable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x48be4d94 vchiq_mmal_port_disable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x49eb24d4 vchiq_mmal_component_enable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x4c4d4540 vchiq_mmal_submit_buffer -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x50434598 mmal_vchi_buffer_cleanup -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x6192e1a2 vchiq_mmal_version -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x73577d20 vchiq_mmal_finalise -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x8a58d308 vchiq_mmal_component_init -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 0xad8657e5 vchiq_mmal_port_set_format -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 0x2a3c6e4a target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5e2d2870 target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x8c86424a target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xe6238023 target_submit -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 -EXPORT_SYMBOL_GPL drivers/tee/tee 0x3163d983 tee_shm_pa2va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x31910686 teedev_open -EXPORT_SYMBOL_GPL drivers/tee/tee 0x3e188916 tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x48dbbd91 tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x5bf5b686 tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/tee/tee 0x67303a99 tee_shm_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0x67c07bfc tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x68d33d27 tee_shm_pool_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x705f8b23 teedev_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x83f3f89a tee_shm_pool_mgr_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid -EXPORT_SYMBOL_GPL drivers/tee/tee 0x8e1a4194 tee_client_open_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb586f47c tee_shm_pool_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb7b078a2 tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0xbd853fe8 tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/tee/tee 0xbe80655d tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc6fe6323 tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc9c1b0c8 tee_shm_alloc_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0xcc70d6ab tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd5a6ae57 tee_device_unregister -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd9ea8181 tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0xddfaf817 tee_bus_type -EXPORT_SYMBOL_GPL drivers/tee/tee 0xe45f0b4f tee_client_invoke_func -EXPORT_SYMBOL_GPL drivers/tee/tee 0xebb548fc tee_shm_va2pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf70a3024 tee_device_register -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x02102236 tb_xdomain_alloc_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0ce56437 tb_ring_start -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1a0cc708 __tb_ring_enqueue -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x24bae5d4 tb_xdomain_lane_bonding_enable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x34f28000 tb_xdomain_alloc_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3d83bfc9 tb_ring_alloc_rx -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 0x5379d501 tb_ring_alloc_tx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x62b63d63 tb_xdomain_request -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658712d9 tb_unregister_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x65a5262e tb_xdomain_disable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6ff19b3a tb_ring_free -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x772696be tb_service_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7d2008e2 tb_xdomain_find_by_route -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8dbdbf96 tb_xdomain_enable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x99797c8b tb_xdomain_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9b90b419 tb_ring_poll_complete -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa6821851 tb_xdomain_lane_bonding_disable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa845c5dd tb_ring_stop -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb0564a63 tb_xdomain_find_by_uuid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb592c8fe tb_xdomain_release_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc4d09621 tb_register_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdc4e11e2 tb_xdomain_release_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xeb958918 tb_xdomain_response -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf2880283 tb_ring_poll -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler -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/cdns3/cdns-usb-common 0x0a4cba79 cdns_drd_gadget_off -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 0x22d2f536 cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x56a798eb cdns_set_active -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x586c9c3c cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x82b047bc cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x973d992a cdns_set_vbus -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 0x2dbcaa97 hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xae7d3a83 ci_hdrc_add_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 -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xe9ca321a imx_usbmisc_charger_detection -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xeb6348e5 imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xf54c87bd imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1205c3d0 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x67889e59 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9038a62c ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xcb04e398 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd0db4257 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xda4210f0 __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x04d3f5a3 u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0df24e20 g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2819bfd8 u_audio_get_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4aa84cc5 u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x60153c97 g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x97bdff47 u_audio_get_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc02c8819 u_audio_set_volume -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 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_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 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60ea48a0 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xbb4b2072 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc0a01527 gserial_set_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xceb5ee18 gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xcf68ae48 gserial_suspend -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c825859 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x98c21483 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xed533033 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x08f14ff6 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1455a9b5 fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1b2bd3fd fsg_store_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d1b6b94 fsg_show_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x31ed776c fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4300bf4d fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x573ebdb6 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5a494ad0 fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x719e1ca0 fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7445e42c fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab6c68ac fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc12843f3 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcda7e9da fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd106bde2 fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe7266929 fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf34d619e fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 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/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 -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1edf57d6 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x25cb55fb usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2a3c984b usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x319ac807 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x32f5900a usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x38b3eed5 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3ec53e83 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x43b7eefd usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4c8f16ba usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4f72476d usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5a912df8 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6336034f usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7c121666 usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8ab17dfa unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa12c75f1 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa5b5cc71 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaa6e1492 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb775db55 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbfdc9fe3 config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc4df646b usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd0ba86e3 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xebbe2214 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xece0060b usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf04e3718 usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf29fe40c usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf2eefea5 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfb9ad66d usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfc71368c usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfd272823 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfe990ff5 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xffc0a282 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x05a02b3e empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x1e276e84 udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x257bec52 udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x39f23a90 init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x67c587a2 free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x6a70326b gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9ae138e7 udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xcdef2b9b udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xcfbc5b6c udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01b12bfb usb_ep_free_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x02583d47 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0a8c3b4b usb_ep_set_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0acfe2e7 usb_ep_set_wedge -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0d82502f usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0d90d784 usb_ep_fifo_flush -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x12e58bca usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1318aace usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1d48773e usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x27275ba1 usb_gadget_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3279ddc3 usb_initialize_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x38f02b8a usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3b95f0df usb_add_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x40d8cf57 usb_gadget_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x499061cb usb_del_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49d9f030 usb_ep_fifo_status -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4d2c348b usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x506ab3a9 usb_ep_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5fc294ef usb_ep_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x69d60b8c usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6ded7038 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7310ec68 usb_gadget_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x74e82ec5 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x760d6c24 usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7a41b9f2 usb_ep_set_maxpacket_limit -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7be89624 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x87eefa9d usb_gadget_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x882077d5 usb_ep_dequeue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8aa67c72 usb_gadget_set_remote_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x93ccfa35 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x950a853a usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9eb52803 usb_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa9e74462 usb_ep_alloc_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xae6d633a usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaf201fa6 usb_ep_enable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb7b903bc usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcb76cd24 usb_gadget_vbus_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd6205f0f usb_gadget_vbus_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xda536627 usb_gadget_check_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdfc8791f usb_gadget_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xec9067b0 usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf130b102 usb_gadget_frame_number -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfdf2259a usb_gadget_map_request_by_dev -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/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 -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x56a61a77 musb_root_disconnect -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af8c6dc musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x7ca77163 musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x7ce4011a musb_queue_resume_work -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x7fb1654a musb_get_mode -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x95e264d3 musb_set_peripheral -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 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 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 -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x7778c396 tegra_usb_phy_postresume -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x9b106f6d tegra_ehci_phy_restore_end -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x9b197bdb tegra_ehci_phy_restore_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x0e8d00ce usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1a01c77d usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x212c6074 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x28ef100b usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2e3c4caf usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2f92756c usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x31b91bf7 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3f41ff84 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x585d0e39 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5b4fd6c7 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5bbd9255 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6945ef28 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6cd8416b usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa0a13abc usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xadce6c5b usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbd2d345b usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd556db93 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdafdc920 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdb2f2e77 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf85c8eb2 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfd9354fe usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x24e68692 dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x8e95ef4b dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xd3d6a76f tcpci_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x87d63fb6 tcpm_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc37b9769 tcpm_cc_change -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xceb50012 tcpm_vbus_change -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x000f401b typec_get_fw_cap -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0e35c055 typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x12ebd257 typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x13d58108 typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x149462b4 typec_plug_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x15c454e2 typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1bcbfb64 typec_switch_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1dd0eeb4 typec_partner_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x21c51310 typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2578e30f typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x26807102 typec_mux_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x29494c48 typec_partner_set_pd_revision -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x33b23e65 typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x374550b1 typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x390ed9f0 typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x39e6a8f5 typec_cable_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3c29e4f4 typec_partner_set_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3ca9ed57 typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3cbdae81 typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3d242bd1 typec_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3db28161 typec_unlink_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4459ad36 typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4fe8732a typec_cable_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x50a05825 typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x528a17b4 typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x576152a5 typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x68d654ee typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6a88b6ec typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6bf3407d typec_link_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x70485832 typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x76d4307b typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x777affd6 typec_mux_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x82e3799c typec_mux_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x84f2f2ec typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x88719fce typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x90dade49 typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9addb4f7 typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9d5d9683 fwnode_typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9d911da3 typec_cable_is_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9f45ab8d typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa51ad912 typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa64aa374 typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa7384d95 typec_get_negotiated_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xab52090f fwnode_typec_mux_get -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 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 -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xde5b5530 typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe2b6eeac typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe38e7f03 typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe6e28142 typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe7806bcd typec_unregister_port -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 0xf7b55be9 typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf99c9d21 typec_port_register_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfbaa0a0c typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xffa8e6bf typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x040b997b ucsi_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x0c0afa72 ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x5ce1a27f ucsi_destroy -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x6d6553bc ucsi_register -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x90037df2 ucsi_connector_change -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 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 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 0xa243ecd1 usbip_start_eh -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 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_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 -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x066ff2f7 vfio_pci_core_close_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x091ba1fe vfio_pci_core_register_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0a235290 vfio_pci_core_mmap -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x187db0e6 vfio_pci_core_request -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3d9be91f vfio_pci_core_uninit_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x54211c3f vfio_pci_core_match -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5d0cbba6 vfio_pci_register_dev_region -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5edcf40e vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5f9d4d2c vfio_pci_core_disable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x679c8084 vfio_pci_core_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x72d6944a vfio_pci_core_read -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x750eac08 vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x76efda60 vfio_pci_core_sriov_configure -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb1a3723b vfio_pci_core_write -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xeb1e8005 vfio_pci_core_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xeb4a88f8 vfio_pci_core_unregister_device -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x4d2a0c16 __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xb8cec3a4 vfio_platform_probe_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xed0bf665 vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xf0b0f8a3 vfio_platform_remove_common -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0dc58ebd vfio_register_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0f81ab34 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1a092e55 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2b0532fc vfio_init_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3a4001bb vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x400d60b6 vfio_assign_device_set -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 0x95d6ad81 vfio_iommu_group_get -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9d5dea68 vfio_group_iommu_domain -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa293f0d9 vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbc3b00e4 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc0b5efac vfio_external_group_match_file -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd6c8156b vfio_group_get_external_user_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd7629d81 vfio_unregister_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xdc0f6a43 vfio_uninit_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xdd0656b0 vfio_iommu_group_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x71f1380d vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xad33cfac vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x002fd047 vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x09f1f5e9 vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0f59dca0 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x12e3c1ed vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x14bf036c vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x17f329f8 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1ae86a6f vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x27f66e17 vhost_clear_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2990db0d vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x40163d20 vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b667376 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4de3426e vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x514fff4d vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x653c09fd vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x65b06e38 vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6618ba05 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6a42640d vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6bcfb05a vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x70e96cee vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9122126c vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x979275cc vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x984e0f87 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9874acf8 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa19addb5 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa7372390 vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa7816012 vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa7a20d37 vhost_work_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xafe59628 vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbba077eb vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc850d35e vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcc887664 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd6571362 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xda6d76ea vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdb2f6b99 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdd2cf751 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe0328df2 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe10f7175 vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe68a8911 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe9157b05 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeb5d70ad vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xec5a863e 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/ili9320 0x0a370733 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x33640f0b ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x38001b0c ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x871739e3 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xad772327 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd0faa2c0 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xfa6d966d ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xeb5df16f fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x03af9f6d fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xcd7eafab fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x5add1936 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xbf815044 sis_free_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x00c66413 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x132cfa6e w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x15ada0d7 w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x19bb00ec w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x1ded1010 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x647d9914 w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0x74389cea w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x882096ac w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0xb17c3658 w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0xba8e87d4 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xca250081 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x0a7f9e2c xen_front_pgdir_shbuf_alloc -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x4ffa0882 xen_front_pgdir_shbuf_map -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x712bd2b8 xen_front_pgdir_shbuf_free -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xb22a265a xen_front_pgdir_shbuf_unmap -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xbc55b619 xen_front_pgdir_shbuf_get_dir_start -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x54dfd228 xen_privcmd_fops -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xb5cc8583 xen_privcmdbuf_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x518c3695 dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x56d32dd4 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock -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 0x08822cfa nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x195ce09f nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x47441a44 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8b54e9c6 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa251c2ee lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xde682315 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xedfa5154 nlmclnt_done -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x011a3663 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03ab1706 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x040d8e2c nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0530c32b nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06d99b36 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07c827c1 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08476c3c nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x094bd6d1 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x099267d4 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b9238c6 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0caef124 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x108032ea nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11b3f2b6 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x124e8c8c nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13f8bfe2 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x140cd696 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14a42e03 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x153e53b3 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x192cca0e nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x194b51ca nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a617774 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d0ae4a2 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x205d928b nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x216d5030 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2530030a nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2868c4f4 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a5587d8 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3143bdf7 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33264ae5 __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3460260f nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35b0e9d5 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36543139 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x379b5c60 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3829e551 nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3cd307a0 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d35a69c nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d742245 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e45f7ba nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ff81157 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4196cbb6 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42132259 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x447de708 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4862ab58 nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a70f864 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x507cbae2 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5088cb7b nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55a7fce0 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57dd8df1 nfs_sync_inode -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 0x5a083835 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bca5e41 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5dfe137f nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61bc02fa nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x622bd19d put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cd9b31f register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d7f1b05 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e244035 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x712f9f21 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bac9c8a nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ca49ad1 nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ccc819f nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d08f177 nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d9b4a26 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8dca6a03 __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e1e75b1 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x901e488c nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90555b5a nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x917835cb nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92d0d54b nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x954ca06f nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x959c68e9 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97b00434 nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97bdceaa nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x983f7ed4 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9915775b alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bd4d532 nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9dd02cb3 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3f75717 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa486b9e9 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa51f2941 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa62754ff nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7d328be nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7edf697 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7f8f4e6 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa98e5a74 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9beca1f nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab99416d nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad09cd38 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb51d6064 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb55318d7 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb69d2ec5 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6a2f56a nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb999eb2e nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba1c8a58 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb1795cf nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb385e0e nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbaee400 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbd01b5f nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdb51051 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc15ed992 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1ebd815 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2cf6731 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5e94a25 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7239115 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc909a48e nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc966bc4a nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9d28062 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3a7f239 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4d50c31 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd745fe16 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7f16f48 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd989c2e nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde83571b nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf28647f __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1df3da5 nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2140c1d nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe21ea15a unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe37218df nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4b21283 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4d1126e nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6854938 nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6c58a01 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9822035 nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9b4a624 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee7754cd nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf18a0ac7 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf44fc078 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf48d78cf nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4ed1b2d nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5913d9b nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf764943c nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7a24251 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfaf0cad7 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb329ae9 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe96081d nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfef8771f nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x11a482ef nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x035c0bff nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x039456f6 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x05b924b7 pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09447e9f __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ad5a13f pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0afee09e nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0eee47f7 pnfs_generic_pg_init_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 0x15a87166 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15fb280c pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18280b23 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1edc8b97 pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f0c63d2 pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24e0397b pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x25a59162 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c212774 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2fab9cc6 nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30473d59 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32b8fe18 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bb6e05 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3803f819 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38214db4 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b70d3ad __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3f6c5893 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4354bf62 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f8a2799 __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51be5afb nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53863afb nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55a6ddb4 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58f3acbb nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5bfaa61d __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x683b2c00 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x699a038d __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69c433ad __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b614775 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b7bc802 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71fe50c6 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7915b97a nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x795bc59d pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79d2e77a pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ab7bcc6 __tracepoint_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7be5060e 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 0x7f56b236 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8384e800 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86af2f2a pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87b04b06 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8aefc59f pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95589fec nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98eeff28 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x994e1a41 __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d0eb7c3 nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d491be5 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0987591 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0ccd525 __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa239f2cd nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2c105c8 __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3883270 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa98979ee pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb41c177c pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5f0226b pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7a3ae25 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbec733f0 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf651533 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbff0627c __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc246e90b nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc25e157b pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcaab6a30 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc2c9b3e nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcce53a53 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf29b95f __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0ecfaad __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd7294161 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd7ccbcce pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf12d7bc pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe32c3b3b __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5c85140 pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe802edca pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe8484612 nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xead6629a __traceiter_pnfs_mds_fallback_read_done -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 0xf2283d70 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf54a1dce pnfs_register_layoutdriver -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 0xfa3109bd nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc0b75d9 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe6b6adb pnfs_generic_pg_cleanup -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/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 0x0448bb40 nfsd4_ssc_init_umount_work -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0c901677 o2hb_setup_callback -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 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 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 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 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 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 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 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 -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 0x4163133b ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9f7c8847 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 0xd04621b2 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x34c730cc unregister_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xd1375c56 register_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x16683b23 unregister_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x4478760e register_pstore_zone -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xabd9af6d cifs_arc4_crypt -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xc4c73891 cifs_arc4_setkey -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0x798f3830 cifs_md4_init -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xceecd9e4 cifs_md4_final -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xdef1096d cifs_md4_update -EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x0c303f52 bch_encode -EXPORT_SYMBOL_GPL lib/bch 0x0d3e3481 bch_free -EXPORT_SYMBOL_GPL lib/bch 0x1a267fa8 bch_init -EXPORT_SYMBOL_GPL lib/bch 0x860a2eab bch_decode -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 0x1f02d73c notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xf7308126 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 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 0x1a6f8bc6 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x5754c6a7 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 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 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 0x07711546 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x08db4845 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1ad8faa6 br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x211efcba br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x34c42e67 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x36a2ae3e br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x60fb596d br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6472f578 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x649d7b6e br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0x66f4f553 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6b2b81be br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x747f1209 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9d4a4a09 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa95366ba br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa9bbc6a4 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0xaa1e2b89 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb89685c4 br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0xbb325305 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0xbf5bcca6 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd1fdb713 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd6c86b22 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe7a9e2ae br_vlan_enabled -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 0x0dd3e40b dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x14b5c440 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1735d757 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x21a2454d dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2cc417a0 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x326e76ef inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x34e26aac dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x36d3fa8a dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d2c1791 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d744ba9 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x45793846 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4df7deb7 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x58ef030f dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x596af2ee dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59aa4fe3 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5db83659 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x68c2fb1b dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0x722630de dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x74815f66 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7ff913ad dccp_shutdown -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 0x87e93b4b dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x884a32bd dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8a0f026a dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x95507d18 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9f08b523 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa6a51b66 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa843c4d6 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xaa291bbb dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb62f37b1 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb959c16a dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc6e227b0 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd79059d6 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd84f914f dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe19eb031 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3d85420b dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x419cddb4 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7a1d7d63 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd61eb18c dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xed61bcba dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfd5fb4f3 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x00df9a1e dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x037cdd8d dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0733904b dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x085d6f2d dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0cd0a8ce dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1bc35e5e dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1ee1bc4b dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x289c3dd2 dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x401091e3 dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4256609e dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x44a00cec dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4576468f dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x46523eac dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4a930dc5 dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5469a920 dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x54f5e762 dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5b7982a6 dsa_tag_8021q_bridge_tx_fwd_offload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5ef6c9ee dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6b85829b dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7613c803 dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x795bf200 dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x80a7261f dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8c6119bc dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8f228565 dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x901253cc dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x990153db dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa473c664 dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa5a6c2be dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb2d39f25 dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb65f38d8 dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd461bcb9 dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd84b2130 dsa_tag_8021q_bridge_tx_fwd_unoffload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xefa52438 dsa_switch_suspend -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 0xfaa1dd40 dsa_8021q_rcv -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/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/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 0x232e918f esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x84fbe4e7 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xb2c2758c esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/gre 0x671c7dc1 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x8a4dfd62 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3761c97d inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5850acab inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x58ece258 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x66d32f85 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x99057260 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9c4e77f1 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb93f07cb inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc15b505f inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe19df94c inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xf6424639 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x08d57f25 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0c8e5a97 ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x18e609d6 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2c8cc265 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3693ff5e ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x370ffbdc ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4d3d9f22 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x594ef31a ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7c4fadb2 ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8189dc10 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x97c4a214 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa074a9b4 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc59ce505 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe0eed50b ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xec5cf478 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf570d98c ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfe0b8a2b ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x5727595a arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xa10f47d3 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xb7fa04a1 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xc5e6ed95 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xfba0a7ca nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2a6da531 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4c1c2bcb nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x55ee2d5a nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xccb93317 nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd78ccaf1 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xdb6d2d4d nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf929d6a8 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xc16a5494 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x195924d5 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x35e21918 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xfa135dc4 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x59733fba nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x7aa27782 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9ff6c6a0 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb0b33e3a tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xcf38d361 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xdb9dca4e tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf16bba6e tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5e55d6bb udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7677c9ef setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x85a27a91 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb0e4d776 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb8483c01 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xeaf430af udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xee688e09 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xfb1383bf udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x13d92871 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x97defac6 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xb231c8a3 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5097f295 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x7afd94e2 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xdbcbe671 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x24bea7ab udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xa855ba9d udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xf65cc0cf ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x33b8b07e nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x91717957 nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xb55c4e3c nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x6d95a306 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x090d0300 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2dc8c3ec nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5efdc875 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x825f2c80 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9fd04bda nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xda447e62 nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe008ed33 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x460df5fd nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x8cff2bf4 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xb018207b nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xf5763181 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x17dc160f nft_fib6_eval -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xbdf917d4 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x03ce888d l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x26e53a16 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2b684a10 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3a315c6a l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3c6c00e9 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4296edd7 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4c55dbae l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4e27e968 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x64bfc886 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6cdb9f2d l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7281a6fb l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x81d4267a l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8517667c l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9360695f l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x95cb1178 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x98ad54f1 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa24f6ff7 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xca372c1f l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xccef5032 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd29e6162 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd7922993 l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xd1ca48db l2tp_ioctl -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xbd12d54f l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0d06addb wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x19be498e ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1e6c9a82 ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x20bd099f ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2ccc4fa0 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2ed79faf ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4323bf80 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x46e0133d ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x56c8b84c ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x614c2979 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7bc89fb3 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x84436b28 ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x967cdeff ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9e53c82a ieee80211_color_change_finish -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 0xa8b49384 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xaaa1eda7 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xace03d69 ieeee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc5164999 ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xee964b91 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfa14935b ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x253933b1 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8c61c2b3 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc6db2b9f mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe0f67f31 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xfdc12359 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x03006141 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x04c2580e ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x127d0834 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x359c799e ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x39d60153 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x76f83eef 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 0x7b1a3342 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7c55ee25 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x88bc0569 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8c0f2675 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x958187ba ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x97849bfc 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 0xa571e3f3 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xab1e3c14 ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xaca3bbc0 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb34a74bc ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbca8a8d1 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbf8cd355 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe35b3355 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 0x274d6936 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x61edca80 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x839274e2 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x99aa417c register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x722daccd nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7c33771d nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8f164138 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9c0d5420 nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xcf231d70 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0098efa8 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x089b7b12 nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d9bb451 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0db84d4d nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1739c0e6 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x190e6e0a nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ad175d3 nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c188003 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1cd9d047 nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20cba5c2 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x234be5ac nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23a59b3f nf_conntrack_hash_check_insert -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 0x2b8e8868 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ee95bb2 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3bba6956 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ca6a3e0 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f41f269 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4073997e nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e6eec70 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ec856e8 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ef29e2e nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56075f10 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x562151ef nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x563804f0 nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57732691 nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63ac4d2e nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65703a20 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x66267b8a nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x677d88ca nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6af190c4 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c2158d8 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d64f443 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6dcf564d __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x709fe502 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72a9a480 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x796702f6 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c56f2ec nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f648cbe nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x819ce858 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x826b4e41 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8497e76f nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9214f500 nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9250eb37 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x94ee3657 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x96e95ce3 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9771a63f nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9827aa74 nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99a48818 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9aa65e4c nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9cec1da0 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9cfa7540 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d108bb0 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e732e1b nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1951430 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4b154e2 nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa95a17b5 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa8ce404 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad644158 nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xadef784c nf_ct_tmpl_alloc -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 0xb00e102f __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1802a0b nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8a257f9 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd6fa37c nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2a379be nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc42328f0 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd3ca8bd nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce59090b nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0756dd8 nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1f35887 nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda0e5ac9 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc67d24d nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc7469d7 nf_ct_set_auto_assign_helper_warned -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd989c3b nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0099849 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe248d6da nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe653abe7 nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7022d9a nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7769fca nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea0cb7ca nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee0b99da __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf18c9e73 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x962c996c nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x0bc9f15b nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xdb3a1a6e nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0687dd25 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x35a0e94a nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5171d4c5 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x579e869c get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc57e39e7 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcbc982a5 set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd169d95d nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdb065cbb nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf99dfbe2 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfb9b5314 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x1e0e3953 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x76ebb8e8 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc02e734e nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xcf54625c nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xffe98e4b nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1f57f87e ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3447a910 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3b15bb3e ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb2c8dea1 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xec27377c ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfa35abd5 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfc5ca946 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x4dd86443 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x0096cc36 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 0x051f7cba nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x116532da flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x218e7002 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4082f1dc flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4d1d4fe7 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x60eeabcd flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7396ce77 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7913808e flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8da3bfc9 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9c33810e nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa12a85fb nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xac8c800b nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xcd6e43e2 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd053247c nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe988b567 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf05ac758 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf0ddd599 nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0eeea9bf nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x17a78b80 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x20b542d0 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2763f094 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2badda08 nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x40a96b1a nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4bc40c05 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5ba43d70 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6612d9c0 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6d1101c6 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9616eee7 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x97868d26 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9a74c379 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xac19aa31 nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xaca45516 nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbfb42463 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_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x29eb11db synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x45de4256 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x46abe267 nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4e25d29a synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x64b22267 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x64e8d19b nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x88b1f26f nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8bdaef50 ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x99cc6b75 synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xaaf2c193 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcbd28ddb synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0073cbe2 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x093b45b2 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x09c4b8e3 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x18e84fb7 nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1a61534e nft_meta_get_init -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 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 0x54b40f83 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5e9630d1 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5fa80b38 nft_meta_set_dump -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 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 0x8b5ae838 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9515f865 nft_register_flowtable_type -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 0xb20da27c nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb2ab6c6e nft_register_expr -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 0xbfb07501 nft_request_module -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 0xd4b5e88a nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd4c86f46 nft_unregister_expr -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 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/nfnetlink 0x1b5bc8e4 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4ee7b6b9 nfnetlink_set_err -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 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_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x4de7b3a7 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x51031e00 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 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xbb19f26a nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xc376d9c8 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xf4c85751 nft_reject_validate -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x01468a1d xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24002ca1 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x31628c65 xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x34b28bbf xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3ce1df2d xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f3256de xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x46a23edf xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4a1d4d0e xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x53657982 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x56c57d62 xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6f8553da xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c625c12 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa3095f3c xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa6ac1e73 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa91c59f5 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb9017fae xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc5ab8bd1 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc6c0dea7 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc9b3f957 xt_request_find_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 0xd9bb821b xt_copy_counters -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe5ec453e xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe9a5003a xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe9c6a7a2 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfad6af98 xt_unregister_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/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 0x01c837eb ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x087f9643 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x894c2b4b ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9ad7bcab __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9f53a309 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf506214d ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/psample/psample 0x2d3cb2c6 psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0x67aba356 psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0x8c3b1abe psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0xb52ad612 psample_group_take -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/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 0x0b8d98e2 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0x0d3ab899 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x1bbbdbba rds_message_unmapped -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 0x31c52978 rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x36b10870 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x386faeec rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x479fcf0d rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x58b0d888 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x59bed213 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x5efce6ce rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x6af9b654 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x6d8a30eb rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x7fa3ff19 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x8da83e29 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x8e878e91 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x9de75c0a rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x9f347c5e rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0xadc2396f rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0xae9d806c rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xb2033694 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xba0fa313 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0xc18c86b0 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc2f25ba4 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xdafc769f rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xdf0161cf rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xe8a71ed4 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xf1498a93 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0xf500ad14 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x204dd2c2 pie_process_dequeue -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xc288f8ef 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 0x34336c85 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x5893ac52 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xd53fcc9f sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0xd92e34dc sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/smc/smc 0x00cfaf02 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x1596782c smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x1e51f905 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x408a15e7 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x5baeb207 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0x6bcb4183 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0x9e6b1bec smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xb84e481e smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0xd9087389 smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xdd08d37e smcd_handle_event -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x117d8b59 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 0x395333fd gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd3f7e39a 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 0xe426dcbd svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00fd0cf8 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01055aac sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01636c16 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02fd183c rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x041c3923 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x041ee0e4 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x051d6ac1 rpc_peeraddr2str -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 0x074e9670 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x077f44b6 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07a99a77 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b35e911 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d13e0d5 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d305499 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ebb3c95 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f86217b xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12f40158 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x163490e5 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x175a282a rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17a51b89 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18f6ffce xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1904f414 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19b62465 xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b7d78da xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b959ccb rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c452bea xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c7e8b97 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c97b7a3 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f216751 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ffed649 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21ed2539 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x236b98dc xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x239aa608 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x269940bd xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27f146ae rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2890a67f xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28f64af9 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x291d0813 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2930c84a sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f237666 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fe97a4e rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x307815d5 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x308e992d sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30ffa36f rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31942811 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31b12ab8 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3381da2e rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33acd66b _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34e8aec3 svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3532d268 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x356c7e4f rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x358971ca xdr_expand_hole -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35aade21 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x373c1c71 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37fd7be7 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38531863 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x392d6604 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39798ada rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x398b9a5d xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39d6c382 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a2bb6c4 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c1a46db rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d8be8b8 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f040d3b xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f19cea6 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41f02997 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42ee7897 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43b30f41 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4480ac1b cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44916814 svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44f20af2 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x474e9a9c rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47b4ccc0 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4899917f svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c53c233 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cb64a71 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dcda4bc rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e30b897 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4eb32f81 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f5410a6 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50fdaf2e svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51e8d6f1 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52b81d3d svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5756a4c2 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c4bd207 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c70fc7c xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5da14b9e xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dcf83b2 xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e237110 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x601e946d rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x602b1174 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61953176 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x630d518c sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63987ac2 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66a7fe07 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6888f7be xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6934f1df rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x694dc262 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x697e8c0d cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b084f6d write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b7eb2c2 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e327ff3 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x706a196c svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7113b5cf svcauth_unix_purge -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 0x7222ae08 rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74047d31 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76e81623 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x775957d2 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78c02b6a xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a90b963 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b2fed7e rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c053be8 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c3dc158 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e2be4e0 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80140cfe rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82a78b4e rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83bd80f5 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85b1cd16 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8811cda5 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88a2993c rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b3024c5 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b488906 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dc617b0 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f9fb54f svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90544bac svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90ab3f98 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91f07a7a xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x927764a6 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x937d850b rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93fbd467 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94f34715 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96560291 svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x969b2b85 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96c01a04 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96d091fe cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96dc8c06 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97f7b61c rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x988dc0dc rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98bbf7c7 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b2f2a3f rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b527f6e rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c499f5e rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d457969 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e70cbb7 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e7a4c04 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ea6b386 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f302c33 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0e3a17a svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa268d878 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa36a568d xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3a0c0ca svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5e2ea2b rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa612ce55 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6543d78 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa99522f0 rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9d7ed08 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae017227 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae1ef12c svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaefa2006 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf2db4fb rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf559822 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb133c0cf rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2fd12c9 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb36c79a5 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3c621a3 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb452ce27 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb48e91c6 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb559a28d bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6b01098 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9392682 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9adaeef xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9b707a5 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb07834f rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb854944 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb91757a auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbed22572 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf47ba0e xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfd1b94d xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc05a1053 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc55abcab rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc91aa5e3 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcae7458f svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb2c4ffa rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc3c545c xdr_align_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce3bc48a unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf8b2c5f rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd09526ac rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d1d5b rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd14e7244 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd15446cb svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd38854f9 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3b220ad read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3baad96 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd423e924 xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4f8e641 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5d56602 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd68adc34 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7c13535 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd81371bf xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd82e99fd rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd983f53d cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddad7bba xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf5cc4f8 xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0e024a4 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe351b6ed svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3be586f rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4924e9c csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5e70e67 xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6eefab0 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe80584bb xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8626d84 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9155e21 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb9aa66c svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebb637aa rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebbfa663 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec58f8b6 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec7d5ca0 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeccf49fe svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed292255 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed5fb52e xdr_enter_page -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 0xef9e59bd svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf11c182a svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf162d0dd rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3e8073e xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf44cfc67 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4996a2a xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf548c831 svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf62911ff rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf84e9f73 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8c98257 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa39f538 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbdd2653 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfce73c27 svc_set_num_threads -EXPORT_SYMBOL_GPL net/tls/tls 0x11f3718e tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0x34486c09 tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0x42e4b854 tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x8e67823e 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 0x05fc183d virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0bbc0fe5 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0d199e3a virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2b511468 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2ccee30c virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2ee43c30 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x318a1e11 virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x32276f02 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x339b773f virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4163aea4 virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x444fc8f8 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x45d7941f virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4f9cdd84 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x50906249 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x53643a9c virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x544b7e3c virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6b5b5b79 virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6ceeeaca virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x79b15d1a virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7d54c5f4 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x95dc200d virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa2be2fc2 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa4be88b9 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa8583837 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa99959a4 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaef8325d virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xafc9a374 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 0xbf754e11 virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc1db9560 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc5f48d29 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcc06a5b2 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe0d38553 virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xef5c4bf8 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf3d71c0e virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x00a2f299 vsock_core_unregister -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 0x2eb99696 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x32e68024 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -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 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 0x90aa8549 vsock_find_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x914d620b vsock_remove_pending -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 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 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 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/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 0x49644666 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7a8bd40c ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x940bfe86 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe1362929 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 -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 0x00374f4c snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0x02f0a7cc snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0x1aff75c1 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0x1cdad51c snd_fasync_helper -EXPORT_SYMBOL_GPL sound/core/snd 0x1cfb0597 snd_devm_card_new -EXPORT_SYMBOL_GPL sound/core/snd 0x43d511dd snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x4878c72d snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x541f86da snd_device_get_state -EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free -EXPORT_SYMBOL_GPL sound/core/snd 0x63a4a242 snd_ctl_disconnect_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x77751347 snd_card_rw_proc_new -EXPORT_SYMBOL_GPL sound/core/snd 0x9c6eb699 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0xb2c729c6 snd_ctl_register_layer -EXPORT_SYMBOL_GPL sound/core/snd 0xbd2acafc snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0xc849a591 snd_card_free_on_error -EXPORT_SYMBOL_GPL sound/core/snd 0xccfdb58b snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0xe78f053e snd_power_ref_and_wait -EXPORT_SYMBOL_GPL sound/core/snd 0xf6883f80 snd_ctl_apply_vmaster_followers -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 0xfbddf776 snd_card_ref -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x70ba77ce snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xbcf90a8c snd_compr_stop_error -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x18785830 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x38c7b3a2 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x57ca09af snd_pcm_fill_iec958_consumer -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x61a4c2c2 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6429a993 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7322dc41 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x75aa5ef0 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x869ca6ca snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8ad9f9d3 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 0x9b4fa4cd snd_devm_alloc_pages -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb015a9bb snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb52882b1 _snd_pcm_stream_lock_irqsave_nested -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd1a39ee4 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x44a720a9 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x45b16a6e snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x69db67af snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6b0afde1 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x799a39db snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x83a0d45c snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x90584967 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x959f10eb snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9d07ef93 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa41ebbdb snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xcaf94313 snd_dmaengine_pcm_pointer -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 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 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 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 0xe5d3af4e amdtp_am824_set_pcm_position -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 -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0c0cb52a snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10bc9d93 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1107211f snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1322e0ba snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x171861e1 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x18ca0f20 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1be9d69f snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1d596330 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1e93f1be snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1fa09d8b snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x20c31350 snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27ff7b1c snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x284ed0e3 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c905384 snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2cb42942 snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2d7654c5 snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2d89c4ee snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34e13b37 snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x37278d76 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c2917df snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3cdf7368 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3d7ff1a1 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3efa60c7 snd_hdac_stop_streams -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4048c02e _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42b85223 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42c69735 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x44394e47 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x45ae31d6 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4bc4cc0e snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4ffd551f snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5167a8d6 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54d8ed51 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5702938d snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x58b8ef29 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a13401c snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5da38ebb snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f366128 snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6820f7f1 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7136299c snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x76738b54 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77e64d13 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77ef14da snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7812d1a1 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7d310455 snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7dec914f snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88f24759 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8aca2deb snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8fb9dced snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x908b2e6b snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9184cf23 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95b60007 snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x96702823 snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9794921e snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x97abd631 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xace97a50 snd_hdac_stop_streams_and_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb089d299 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2002b3a snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2fe21fb snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb3d9bd7b snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4859285 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb6cbfcd7 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba0caaad snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf7a7914 snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc088dc65 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc25cd2af snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc73c3ea6 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc741e9cf snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc94f05ac snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca0b72ad snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcfd6c814 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd0c70f70 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd7675c17 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd8c7d647 snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd9cf99fc snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb3d4b31 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdfb29707 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe02e3431 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4f8649b snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea712b3a snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb14d236 snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee152771 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb48b976 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xffb371d0 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x0c6877ac intel_nhlt_get_dmic_geo -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e859456 intel_nhlt_free -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x75ccaa83 snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x914c4ee7 snd_intel_acpi_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xd7c2d22b intel_nhlt_init -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x050238f9 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x304a69ad snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4b94abb3 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x5f666beb snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x80ccb777 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd643ba1a snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00c8a334 snd_hda_create_spdif_share_sw -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 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 0x1753f471 snd_hda_codec_get_pincfg -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 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 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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a30aeea snd_hda_enable_beep_device -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 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 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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f0863aa snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ff3167f snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x701c34d9 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70c22935 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70ea2b1b snd_hda_mixer_amp_switch_get -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 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 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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa27e9aed _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2f12318 snd_hda_shutup_pins -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 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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa82d3fe snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaafc89b2 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacf2f4ec snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb12478a9 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb26fbbbb snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2dbb428 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3ecc1dc snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb634312e snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9bb66d1 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbaa36a18 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0f8ada9 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc19be46d snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1d9b6a4 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc38bd5a0 snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6549a91 snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc835d99b is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcac640a2 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb6c121d snd_hda_override_amp_caps -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 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 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 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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0b261792 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1730b7ba snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x25c71bc8 snd_hda_gen_add_micmute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2e308e8e snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3a266d77 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x48e4e33b snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4dc2ea6b snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4f7455d4 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x88fc2398 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8afe6cda snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x95e68741 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x962c2f8d snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbb6622b8 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd01ac162 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd7f9664e snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xde55b387 snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xec093e5f snd_hda_get_path_from_idx -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/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 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 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 0xdf5b9e8f adau17x1_precious_register -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 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-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 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x6107f79c cs35l41_otp_unpack -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x6166afda cs35l41_register_errata_patch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7420434e cs35l41_test_key_unlock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x90689c60 cs35l41_test_key_lock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb6f4da81 cs35l41_regmap_spi -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x2677e826 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x91046544 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x35e4d508 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x3c7856ef cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x59687596 cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x79e8afe4 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xfe8ae256 cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x63c5fa50 cs42xx8_regmap_config -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 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-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-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-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 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x0872486c pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x08d01828 pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x28b30562 pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xe2a5292e pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x02849988 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x6ec5bb5b pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xb28cd39d pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xf7e6bee3 pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x067b430f pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x79f974ec pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x93058cae pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xff619e94 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0x61ff58e3 rt5514_spi_burst_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0xff87892f rt5514_spi_burst_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 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-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 0x21ac7645 rt5682_volatile_register -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 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-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-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 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-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 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 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 0xdd3c79ef wm_adsp2_bus_error -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-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 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-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/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-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 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 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 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 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/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/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 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-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/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 -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xe592b6e0 q6adm_open -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x07a54780 q6afe_cdc_dma_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x498d993b q6afe_get_port_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5332304f q6afe_slim_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7df60063 q6afe_port_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xa68e3a0e q6afe_set_lpass_clock -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xae809786 q6afe_hdmi_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd4523c59 q6afe_i2s_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xdfd4b4f2 q6afe_port_get_from_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe45246a8 q6afe_port_start -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xfaf22370 q6afe_tdm_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x13b7efd9 q6asm_cmd -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x1b6c77fc q6asm_stream_media_format_block_alac -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x25bfa476 q6asm_open_write -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x2b693eed q6asm_stream_media_format_block_wma_v9 -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4afe6f73 q6asm_read -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4fba2f0c q6asm_run_nowait -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x68db31e2 q6asm_unmap_memory_regions -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x6cec4b17 q6asm_stream_remove_trailing_silence -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7ccc69e5 q6asm_audio_client_alloc -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x856b4fdb q6asm_stream_media_format_block_wma_v10 -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x9d0cf85f q6asm_stream_media_format_block_flac -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xa7d3a3a6 q6asm_media_format_block_multi_ch_pcm -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xb37ed108 q6asm_enc_cfg_blk_pcm_format_support -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc0dd8d67 q6asm_open_read -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc1347db0 q6asm_write_async -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc5a116a4 q6asm_get_session_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xcbee5e42 q6asm_stream_remove_initial_silence -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xcc4952e4 q6asm_audio_client_free -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd2cf1a0f q6asm_run -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd38aa312 q6asm_cmd_nowait -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xea75a5dd q6asm_map_memory_regions -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xf47f4b35 q6asm_stream_media_format_block_ape -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x7e52e977 q6core_is_adsp_ready -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x9b02ea0d q6core_get_svc_api_info -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/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/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 0x04fa1264 snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x050ce962 snd_soc_of_parse_aux_devs -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 0x08fdf5a9 snd_soc_add_pcm_runtime -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 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 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 0x126d2c81 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1444cbf6 snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x153f558e snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1557804e snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15ac6469 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x161f3d43 snd_soc_add_dai_controls -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 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 0x1c942b5c snd_soc_register_component -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 0x2310109b snd_soc_component_compr_open -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x244bb8e2 snd_soc_dai_is_dummy -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 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 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 0x303e5288 snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31740436 snd_soc_add_component_controls -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 0x36c0d0c0 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38182bf7 snd_soc_lookup_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c469bea snd_soc_suspend -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 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 0x41048f0e snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4333d1b5 snd_soc_unregister_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43a8d416 snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43c88bc6 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x455d18a1 snd_soc_poweroff -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 0x4f998845 snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51223a1d snd_soc_add_card_controls -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 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 0x5cbea1c3 snd_soc_put_volsw_range -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 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 0x6a4606cd snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ac81e4c snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b9ef8a0 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6edea3a7 snd_soc_dapm_enable_pin -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 0x70ee00d0 snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x722ae1f5 snd_soc_dai_set_tdm_slot -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 0x76ccb99a snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78703a1f snd_soc_lookup_component_nolocked -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 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 0x80ce5073 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x810af3dc snd_soc_dai_compr_set_metadata -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 0x8483a61a snd_soc_component_compr_ack -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 0x86a91226 snd_soc_pm_ops -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 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 0x8d90efa9 snd_soc_of_parse_audio_simple_widgets -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 0x90dd71c7 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x914b9c4c dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92831123 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95537343 snd_soc_component_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95e31a46 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x966ae738 snd_soc_cnew -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 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 0x9e6997a9 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa22b2cd2 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa360dc04 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4f0e1ba snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7286bbd snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9a82176 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab5d64f8 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabf5c50c snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad923989 snd_soc_find_dai -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 0xb2943bab snd_soc_dai_set_channel_map -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 0xb6b0a7d7 snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb732490b snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7a6b1c8 snd_soc_register_card -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 0xbaf25c22 snd_soc_component_compr_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbf729d6 snd_soc_get_dai_id -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 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 0xc1157714 snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1529dcb snd_soc_dapm_nc_pin -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 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 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 0xc8edd7ea snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc957018d snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc970eb77 snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca01e8b6 snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca5cd3cf snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xccfe746e snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd29a150 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd101ed8c snd_soc_component_initialize -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1765508 snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4800468 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8910fdb snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb1c5c1b snd_soc_debugfs_root -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 0xe1605b9e snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3c81274 snd_soc_resume -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 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 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 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 0xf621e3c7 snd_soc_of_parse_card_name -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 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc26f855 snd_soc_of_parse_audio_routing -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 0xffa14acd snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffa5d7db snd_soc_runtime_set_dai_fmt -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/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 -EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x68b4b311 sprd_mcdt_chan_dma_enable -EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x6c283cec sprd_mcdt_chan_int_enable -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-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 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-tegra20-das 0x0d54c9b9 tegra20_das_connect_dap_to_dac -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xb52cfca4 tegra20_das_connect_dac_to_dap -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xbced7431 tegra20_das_connect_dap_to_dap -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x0427e3da tegra30_ahub_allocate_tx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x55a40206 tegra30_ahub_disable_rx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x5d7237ff tegra30_ahub_set_cif -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x6fe20143 tegra30_ahub_set_rx_cif_source -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb419329b tegra30_ahub_disable_tx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb4a9367d tegra30_ahub_enable_tx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb81bca9d tegra30_ahub_free_rx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xc78c7125 tegra30_ahub_free_tx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xccb67e55 tegra124_ahub_set_cif -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xccc98372 tegra30_ahub_enable_rx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xd01de23b tegra30_ahub_allocate_rx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xe549513a tegra30_ahub_unset_rx_cif_source -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0x87e5935b edma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x5cffaefa sdma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0x7c3541de udma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x078f32bf line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3d5ef9b0 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4258a007 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x45853dc9 line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x77e230c0 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8073dd4d line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x90c3645c line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x95cc594f line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa2d19b5d line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xaa9be339 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb841e530 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd43d2310 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdb69fcd9 line6_alloc_sysex_buffer -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 0x000c3024 xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x00116b9b sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00323719 skb_tstamp_tx -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 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 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 0x0108976c verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x010f9bec iommu_aux_detach_device -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 0x014e8186 cpu_scale -EXPORT_SYMBOL_GPL vmlinux 0x0162725c __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x016a9a9a acpi_cppc_processor_exit -EXPORT_SYMBOL_GPL vmlinux 0x0170154f mtk_pinconf_adv_pull_set -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 0x018c13ee cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0x0197e4aa ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free -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 0x01d6dba0 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01f79d7b lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0x01f897ad iommu_enable_nesting -EXPORT_SYMBOL_GPL vmlinux 0x01f9abc1 virtqueue_enable_cb -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 0x02159c7e invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x02161dd8 sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0x0219963f pinconf_generic_dt_node_to_map -EXPORT_SYMBOL_GPL vmlinux 0x022c5515 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x0264c7f6 kvm_put_kvm -EXPORT_SYMBOL_GPL vmlinux 0x02671296 fsl_mc_portal_reset -EXPORT_SYMBOL_GPL vmlinux 0x0271196b bgmac_alloc -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 0x029dd9d5 gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0x02aa174f ahci_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x02b77ca8 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x02ba9762 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x02bbac14 usb_poison_urb -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 0x02ed1b9a blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -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 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x0360eebc devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0x03648566 devlink_trap_policers_unregister -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 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 0x03a4a5aa adp5520_set_bits -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 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 0x0409d8b9 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x040cef28 ipv4_sk_redirect -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 0x0433cc44 pinctrl_generic_get_group_name -EXPORT_SYMBOL_GPL vmlinux 0x04386f81 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x0441f4e0 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x04446f38 switchdev_port_obj_add -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 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x04ad4c25 skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x04ad6b64 bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 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 0x051ee6fb skb_mpls_update_lse -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 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 0x05641313 imx_clk_hw_sscg_pll -EXPORT_SYMBOL_GPL vmlinux 0x056d3ea3 clk_hw_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x058261dc key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x0589fef9 inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x05bacaa4 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x05cda2b8 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x05e582b5 pci_try_reset_function -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 -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x063d284a kthread_func -EXPORT_SYMBOL_GPL vmlinux 0x063e9296 rpi_firmware_put -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 0x065e0144 __devm_spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x0676d88d __traceiter_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x067c1aa7 genpd_dev_pm_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x0682dfd2 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x06873046 k3_ringacc_dmarings_init -EXPORT_SYMBOL_GPL vmlinux 0x06969fcf scsi_host_unblock -EXPORT_SYMBOL_GPL vmlinux 0x069767cc debugfs_write_file_bool -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 0x06e6ca1e xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x06e7aab9 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x071363b3 kthread_unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x0729887a led_set_brightness_sync -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 0x07483e13 cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field -EXPORT_SYMBOL_GPL vmlinux 0x0756420d bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy -EXPORT_SYMBOL_GPL vmlinux 0x077f5c0a anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x078ed02b register_net_sysctl -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 0x07bdb958 __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07c19cc4 lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0x07c66a76 usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x07cc0bb7 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0x07d04d52 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x07ddea6f tpm_chip_unregister -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 0x0843fa03 balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x084728ab skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x08576175 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x085a9686 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x085bdf2b iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x086272e5 dprc_remove_devices -EXPORT_SYMBOL_GPL vmlinux 0x0863d20c pin_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x086ac27f ipv6_dup_options -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 0x0880d29b call_switchdev_notifiers -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 0x08a8ba03 __traceiter_neigh_update_done -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 0x08e6e311 crypto_enqueue_request_head -EXPORT_SYMBOL_GPL vmlinux 0x08e770cd pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x0918f68a is_nvdimm_sync -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 0x095a7240 devlink_port_attrs_pci_sf_set -EXPORT_SYMBOL_GPL vmlinux 0x096a9398 sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x09841245 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x09862b23 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x099b1db7 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09d63265 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x09ebadc2 usb_get_maximum_ssp_rate -EXPORT_SYMBOL_GPL vmlinux 0x09f3fa5b __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x09fc9d55 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x0a2307d2 skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0x0a26264d tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x0a36048c devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x0a3bb099 __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x0a48ab47 crypto_register_algs -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 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 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 0x0ac25f53 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x0adf4fb5 mtk_pinconf_bias_disable_get -EXPORT_SYMBOL_GPL vmlinux 0x0aec2cbe of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region -EXPORT_SYMBOL_GPL vmlinux 0x0b061be8 device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b0aabf2 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x0b183b70 fsl_mc_populate_irq_pool -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 0x0b3a3ed7 zynqmp_pm_fpga_get_status -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 0x0b751eed wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0b784ab4 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x0b7f40bd regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x0ba63da1 skb_send_sock_locked -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 0x0bd0fe54 devlink_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0x0bdf6e62 tcp_reno_cong_avoid -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 0x0bfa3a19 rcu_idle_exit -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 0x0c600741 tps6586x_reads -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 0x0c905131 fib_table_lookup -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 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 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 0x0cf5e8c9 nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0x0d0aa92e fwnode_get_nth_parent -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 0x0d1e9cec regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x0d28177e __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x0d367d59 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d499f77 __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d528856 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x0d65bb48 ndo_dflt_bridge_getlink -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 0x0d7ad02a spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x0d828ab2 driver_attach -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 0x0dae29c7 perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0x0db0c8fe gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -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 0x0e1194d5 hrtimer_try_to_cancel -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 0x0e2fd0ea fsl_mc_allocate_irqs -EXPORT_SYMBOL_GPL vmlinux 0x0e4d7148 register_wide_hw_breakpoint -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 0x0eeea142 inet6_csk_update_pmtu -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 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 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 0x0f662969 housekeeping_affine -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 0x0fd4175e gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fdb56c9 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x0fe2943f scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x0fe5cb2b skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0x0fe80419 elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0x0feb3b11 pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0ff9b6d3 trace_output_call -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 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 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 0x1090d005 __raw_v4_lookup -EXPORT_SYMBOL_GPL vmlinux 0x10abd2d8 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x10adc9c1 devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x10b9d0c6 usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x10c7040c memremap_pages -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 0x1130c93c cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x113d3937 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x117b74ce of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0x11860565 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x11a21261 dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11a71aec badblocks_show -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 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 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 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 0x125e0f61 sk_msg_trim -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 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 0x12a35650 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x12c17bbf led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x12c24c48 sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0x12c3f54a __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0x12ca648e cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0x12cbf412 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0x12df6f4c bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x12e1974d devm_regulator_bulk_register_supply_alias -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 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 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 0x135128b8 icc_nodes_remove -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg -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 0x138aff76 gnttab_init -EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1396489d dpcon_open -EXPORT_SYMBOL_GPL vmlinux 0x13afe9be ahci_save_initial_config -EXPORT_SYMBOL_GPL vmlinux 0x13c38f3e reset_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x13caa386 tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13d5d1ae ip6_datagram_connect -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 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13f3a87e ahci_do_softreset -EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x140655b2 ahci_handle_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x141c4805 gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0x141e2a5f phy_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x142b16f7 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x143d9b3c alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0x144bf616 __sync_filesystem -EXPORT_SYMBOL_GPL vmlinux 0x14528e15 __traceiter_napi_poll -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 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 0x14894d0b of_remove_property -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 0x14a0a572 dev_get_tstats64 -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 -EXPORT_SYMBOL_GPL vmlinux 0x14e4e325 devm_nvmem_device_put -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 0x15108a71 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x151408de regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x152dbdb9 tty_set_ldisc -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 0x1589de83 nf_queue_entry_get_refs -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 0x15b92d74 __traceiter_xdp_bulk_tx -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 0x15ea2648 hwpoison_filter_flags_mask -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 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 0x16516798 osc_pc_lpi_support_confirmed -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 0x16af8378 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x16b72183 devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x16bdda3d sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0x16c24e9d __vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put -EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness -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 0x17267819 crypto_grab_shash -EXPORT_SYMBOL_GPL vmlinux 0x1734c111 devlink_params_unregister -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 0x17535dd6 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x17541357 rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x17547ef0 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x17591ecd zynqmp_pm_write_ggs -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 0x17690e59 crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0x177523f6 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x1781e5a8 clk_mux_val_to_index -EXPORT_SYMBOL_GPL vmlinux 0x178ecb5d page_cache_sync_ra -EXPORT_SYMBOL_GPL vmlinux 0x17933b0f ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x17a8ebf0 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x17a9418b fuse_conn_init -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 0x17cb5475 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear -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 0x1829e0d5 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes -EXPORT_SYMBOL_GPL vmlinux 0x1867493b pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0x1869cc19 blk_ksm_destroy -EXPORT_SYMBOL_GPL vmlinux 0x186d07fb strp_process -EXPORT_SYMBOL_GPL vmlinux 0x18715353 k3_udma_glue_push_tx_chn -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 0x18c30c64 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x18ca86a5 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x18cea26a bpf_map_inc_not_zero -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 0x19080529 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x190bbfdb kvm_release_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x191905c9 xdp_master_redirect -EXPORT_SYMBOL_GPL vmlinux 0x191bca0c fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x1926028c zynqmp_pm_reset_assert -EXPORT_SYMBOL_GPL vmlinux 0x19400af9 acpi_dev_get_property -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 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 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 0x19df78cd __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit -EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a24bfd0 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x1a29c393 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x1a2e7839 irq_chip_enable_parent -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 0x1a876574 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x1a8d42ef md_find_rdev_nr_rcu -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 0x1abbfd9c irq_chip_mask_ack_parent -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 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 0x1b325728 devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1b3ad94c class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1b4129fe dma_buf_get -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 0x1b78f8b7 crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0x1b7f1062 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1b999a34 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x1baa2d87 to_software_node -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -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 0x1c163829 pci_ecam_create -EXPORT_SYMBOL_GPL vmlinux 0x1c33b2dc mtk_eint_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x1c497498 serial8250_do_get_mctrl -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 0x1c67cf41 irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0x1c726cd6 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x1c7d5221 perf_event_period -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 0x1c88f8dd crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x1c89fb22 zynqmp_pm_clock_setparent -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 0x1cac5346 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1cace77e dev_pm_genpd_add_notifier -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 0x1cd61ba9 of_clk_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x1cde422b crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x1ce8500e device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x1cee9343 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x1cf23793 devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0x1cfa9f97 scsi_host_block -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d3f6a6b crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x1d409f24 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x1d589bfa alloc_skb_for_msg -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 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 0x1dc88dfc pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0x1dcefc84 led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0x1ddedbeb inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm -EXPORT_SYMBOL_GPL vmlinux 0x1e036c2d sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -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 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 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 0x1e83fee6 HYPERVISOR_physdev_op -EXPORT_SYMBOL_GPL vmlinux 0x1e899dc8 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x1e8d893a virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -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 0x1eabbaa6 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1eba70b7 crypto_stats_ahash_final -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 0x1efce3e9 devlink_register -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 0x1f1cc011 zynqmp_pm_get_chipid -EXPORT_SYMBOL_GPL vmlinux 0x1f248f3a dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x1f386f23 da9052_regmap_config -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 0x1f4e8876 devlink_alloc_ns -EXPORT_SYMBOL_GPL vmlinux 0x1f559a4f __traceiter_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f96b9ad devm_get_free_pages -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 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 0x1fbbbfcb rtnl_af_register -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 0x1fe6e504 gpiod_add_hogs -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 0x2024c47d tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x202cecee i2c_new_scanned_device -EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x2030bdca inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0x203218fe device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0x2035c682 lp8788_read_multi_bytes -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 0x2075e989 devlink_resource_occ_get_unregister -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 0x20af18c8 sched_setattr_nocheck -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 0x20caa67b nf_checksum -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 0x20f53181 i2c_of_match_device -EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource -EXPORT_SYMBOL_GPL vmlinux 0x211e31d7 rockchip_register_softrst -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 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 0x218ca607 __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x2191715a mtk_mmsys_ddp_disconnect -EXPORT_SYMBOL_GPL vmlinux 0x2194598f anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x2197913a __raw_v6_lookup -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 0x21f4bfb2 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x21fa6bc2 xenbus_grant_ring -EXPORT_SYMBOL_GPL vmlinux 0x21fa9886 sk_msg_return -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 0x22143977 lwtunnel_get_encap_size -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 0x222af9d6 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2245b831 acpi_subsys_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x224f51bf nvmem_device_cell_read -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 0x22e19ffe crypto_stats_skcipher_decrypt -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 0x23012322 fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0x2315e47c file_is_kvm -EXPORT_SYMBOL_GPL vmlinux 0x231bf7e5 bio_alloc_kiocb -EXPORT_SYMBOL_GPL vmlinux 0x23245d75 bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x234dbbf2 acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x235538cb nf_queue_nf_hook_drop -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 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x239c3e7c to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0x23a5f9fa msg_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0x23baf8dc ahci_platform_ops -EXPORT_SYMBOL_GPL vmlinux 0x23c5e342 __traceiter_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x23d13372 dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0x23edea6e pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x23fd3652 device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x23ff5e85 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x24081ff3 clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0x240c0ee7 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x24137123 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x2417245b attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x2417df33 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2419caa2 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const -EXPORT_SYMBOL_GPL vmlinux 0x2441be68 pinctrl_register -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 0x2464da17 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x24729f9d pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x24796c73 usb_ep0_reinit -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 0x248bc867 raw_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray -EXPORT_SYMBOL_GPL vmlinux 0x249ce1d4 _copy_from_iter_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x24a2603c sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x24a29e2b devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x24a9a317 phy_speed_down -EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24af6db1 inet_csk_addr2sockaddr -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 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 0x24fc50f4 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x25009000 transport_add_device -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 0x255dd2b9 mdiobus_modify -EXPORT_SYMBOL_GPL vmlinux 0x2572109b xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0x2574da11 zynqmp_pm_write_pggs -EXPORT_SYMBOL_GPL vmlinux 0x2589b5b5 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x25ad6084 nf_queue -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 0x25c68a08 vchan_init -EXPORT_SYMBOL_GPL vmlinux 0x25d274c8 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x25db442e phy_resolve_aneg_pause -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 0x263f039e xas_nomem -EXPORT_SYMBOL_GPL vmlinux 0x264d945e udp_destruct_common -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 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 0x26a93eb2 verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26b58953 dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x26b6cf54 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x26c5d6e7 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26e85ce4 pinctrl_add_gpio_ranges -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 0x271eb3b4 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x27229109 icc_get_name -EXPORT_SYMBOL_GPL vmlinux 0x272417b0 iomap_writepages -EXPORT_SYMBOL_GPL vmlinux 0x272b46cf phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x272b8663 bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit -EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x275d1273 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked -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 0x27841fa6 skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0x278bd6f9 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x2795b717 mptcp_get_reset_option -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 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 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 0x28318cb2 bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0x284ea375 spi_mem_poll_status -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 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 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 0x28d736cf dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x28f26684 irq_set_affinity_hint -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 0x293ae52d wakeup_sources_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x2953cc82 serial8250_em485_stop_tx -EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x29b57dfe i2c_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x29c2284e blk_ksm_update_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x29c924fc lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0x29d76547 k3_udma_glue_tdown_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29fd528b ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x2a0bdb65 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x2a14b2dc mtk_mmsys_ddp_connect -EXPORT_SYMBOL_GPL vmlinux 0x2a171174 ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x2a37257d dst_blackhole_redirect -EXPORT_SYMBOL_GPL vmlinux 0x2a37ea11 imx_clk_hw_frac_pll -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 -EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a6e42ad ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x2a70a6db pm_genpd_remove_device -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 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 0x2ae0db7f sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x2ae1689e zynqmp_pm_clock_getdivider -EXPORT_SYMBOL_GPL vmlinux 0x2ae735c3 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x2b0765ca xen_store_interface -EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x2b196698 kvm_put_kvm_no_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2b1cdec0 devlink_param_register -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 0x2b4509dd devlink_health_reporter_state_update -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 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 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 0x2bab314e bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0x2bad1090 pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0x2bbe38f3 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2bbf1454 badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0x2bcd2376 acpi_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x2bd2bea2 nvdimm_setup_pfn -EXPORT_SYMBOL_GPL vmlinux 0x2bd768b9 tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0x2bf3ade2 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x2bf92a89 dev_attr_ncq_prio_enable -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 0x2c245859 udp_bpf_update_proto -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 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 0x2c6c323f bpf_prog_inc_not_zero -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 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 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 0x2cc495c5 rpi_firmware_property_list -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 0x2ce810e7 __traceiter_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -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 0x2d176d27 rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d2c902f perf_trace_buf_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d2f12b8 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x2d391d90 serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d4306c6 efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x2d4eba72 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x2d5f5d2e rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict -EXPORT_SYMBOL_GPL vmlinux 0x2d698e74 of_genpd_remove_last -EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff -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 0x2db67d4a owl_sps_set_pg -EXPORT_SYMBOL_GPL vmlinux 0x2db701d7 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x2dc68277 pm_wakeup_ws_event -EXPORT_SYMBOL_GPL vmlinux 0x2dd4f650 netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0x2de7004d netlink_has_listeners -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 0x2e1c20b2 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e33e4a0 crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x2e41c05f irq_domain_remove -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 -EXPORT_SYMBOL_GPL vmlinux 0x2e670427 sbitmap_queue_wake_all -EXPORT_SYMBOL_GPL vmlinux 0x2e678211 xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0x2e6951ee pci_iov_virtfn_devfn -EXPORT_SYMBOL_GPL vmlinux 0x2e721257 of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x2e7503f1 led_set_brightness_nopm -EXPORT_SYMBOL_GPL vmlinux 0x2e9431a4 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x2e95e684 of_genpd_add_provider_onecell -EXPORT_SYMBOL_GPL vmlinux 0x2e987547 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x2e9a6390 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x2e9d11f7 nl_table -EXPORT_SYMBOL_GPL vmlinux 0x2ea74319 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x2eb84505 fscrypt_symlink_getattr -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 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 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 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 0x2f83aeb7 pci_vpd_alloc -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 0x2fbdedbe mmput -EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -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 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 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 -EXPORT_SYMBOL_GPL vmlinux 0x305138fc dm_per_bio_data -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 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 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 0x30e1ec25 apei_map_generic_address -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 0x31526e4d usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x3157a4f4 mtk_pinconf_adv_pull_get -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 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x31991a06 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x31a5cdf0 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x31a6bab7 devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31ad066b ethnl_cable_test_finished -EXPORT_SYMBOL_GPL vmlinux 0x31c1427e cpuidle_get_cpu_driver -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 0x31dca4d8 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x31df4410 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x31e1fa35 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x31e58b0c pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x31e9e8d5 zynqmp_pm_set_suspend_mode -EXPORT_SYMBOL_GPL vmlinux 0x31fe11e1 mptcp_pm_get_subflows_max -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 0x325e6f72 devlink_reload_enable -EXPORT_SYMBOL_GPL vmlinux 0x3260da31 unix_outq_len -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 0x327cb93f perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0x327e5ffc devlink_dpipe_table_register -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 0x329bae13 perf_event_read_value -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 0x32a8f4e7 generic_fsdax_supported -EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32ac86ce usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32bf86a5 pci_rescan_bus -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 0x32f4c296 bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x3300cd3f rockchip_clk_register_branches -EXPORT_SYMBOL_GPL vmlinux 0x3337d6b2 get_user_pages_fast -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 0x339ac156 fsl_mc_bus_dpcon_type -EXPORT_SYMBOL_GPL vmlinux 0x339b88bd cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x33a45d47 stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x33aa6652 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x33daad8f auxiliary_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x33df3cf3 clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x33f5576b platform_irqchip_probe -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 0x343bb7e9 synth_event_create -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 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 0x34bd50c7 inet6_compat_ioctl -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 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 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 0x35569cf8 devm_acpi_dma_controller_register -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 0x35813701 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0x35871256 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35a1c768 tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0x35a4f59d zynqmp_pm_clock_setdivider -EXPORT_SYMBOL_GPL vmlinux 0x35ba57aa i2c_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x35c5cd59 imx_pinctrl_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x35d177e0 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem -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 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 0x3626ba3e icc_put -EXPORT_SYMBOL_GPL vmlinux 0x36294974 raw_abort -EXPORT_SYMBOL_GPL vmlinux 0x3630e4de regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x36420e24 sysfs_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll -EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x3660afcf dev_nit_active -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 0x36ef99a2 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x36f794ec synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0x36f954eb clk_regmap_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x36ff77dc ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x3702ef7e dm_copy_name_and_uuid -EXPORT_SYMBOL_GPL vmlinux 0x3708a454 udp_tunnel_nic_ops -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 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 0x3740936f ata_host_alloc_pinfo -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 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 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 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 0x37e00980 pci_bridge_emul_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x37f19b43 __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0x37fd56fb ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0x37ffc9a1 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x37ffdf19 sched_set_fifo -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 -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 0x38432384 dst_cache_set_ip6 -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 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 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 0x38e1fde7 mpi_set -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -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 0x392a6142 ip6_append_data -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 0x39504b5b gpiochip_irq_unmap -EXPORT_SYMBOL_GPL vmlinux 0x39544cc0 of_css -EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x397f69d9 mptcp_pm_get_local_addr_max -EXPORT_SYMBOL_GPL vmlinux 0x399eda0f sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout -EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 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 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 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 0x3a553762 trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked -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 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 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 0x3adc5bba __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x3ae07e62 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x3ae72c1b phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x3af11511 mptcp_token_iter_next -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 0x3b0858be find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x3b08cf20 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x3b24c48a iommu_attach_group -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 0x3b78bf02 sunxi_ccu_get_mmc_timing_mode -EXPORT_SYMBOL_GPL vmlinux 0x3b8979ea gnttab_grant_foreign_transfer_ref -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 0x3bbffe42 msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0x3bc37128 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x3bca0130 devlink_net -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 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 0x3c16ed15 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply -EXPORT_SYMBOL_GPL vmlinux 0x3c3a5c4d ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x3c3ac88e strp_unpause -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 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 0x3c7b1b9c devm_pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x3c7b884c ip6_push_pending_frames -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 0x3cde21c8 dprc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3ce48246 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x3cfa67e5 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x3d0cb369 governor_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x3d1e77d3 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x3d21d5a6 meson_pmx_get_func_name -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -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 0x3d563271 platform_get_irq_byname_optional -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 0x3d91de78 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x3d95d9cb sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x3d96c926 usb_phy_set_charger_state -EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3db48927 sbitmap_any_bit_set -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 0x3dfa6e39 regmap_register_patch -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 0x3e329a16 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x3e40bec2 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x3e59604e devlink_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3e63c661 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e7f8f38 pm_schedule_suspend -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 0x3ec893af of_detach_node -EXPORT_SYMBOL_GPL vmlinux 0x3ecbce4e find_iova -EXPORT_SYMBOL_GPL vmlinux 0x3edacb46 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3ef28a02 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x3f0eafe7 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x3f1aab69 pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0x3f2a3dbb fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0x3f322df1 skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f5282af fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0x3f693d23 device_rename -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 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 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 0x4008edc1 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x401492ad skb_zerocopy -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 0x4061b4a5 ping_seq_stop -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 0x4071b517 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout -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 0x40a95990 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x40b64001 __rio_local_write_config_32 -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 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 0x4118c3e0 inet_csk_reqsk_queue_hash_add -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 0x416e0892 tpm2_probe -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 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 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 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 -EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf -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 0x42211e31 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x425b14d5 irq_get_irq_data -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 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x428bfa03 xhci_dbg_trace -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 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 0x42fed5fa dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x4303597a bio_add_zone_append_page -EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x431a11f9 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x431c46e1 serial8250_update_uartclk -EXPORT_SYMBOL_GPL vmlinux 0x43206baa cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x4324af1c dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x4327bff6 skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x4332a8eb devm_pm_opp_of_add_table -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 0x435746c6 inet6_sock_destruct -EXPORT_SYMBOL_GPL vmlinux 0x435850ca devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x436043a9 divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit -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 -EXPORT_SYMBOL_GPL vmlinux 0x438c61fc amba_apb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x439648b2 fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x439c995a devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x43a2be2b iommu_device_sysfs_add -EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43d88930 of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0x43dddedb iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x43e301f9 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -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 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 0x444f1735 cpu_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x44540dc5 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x449209a5 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x44986c8f evm_verifyxattr -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 0x44b9624b skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -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 0x44f8be8d vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x450cc77b dm_noflush_suspending -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 0x45558f56 clk_unregister_fixed_factor -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 0x4593ccce __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x459b19e5 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x45b06589 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x45b3b417 tcp_unregister_ulp -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 0x46085d99 pingv6_ops -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 0x467f6a05 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x467f8f32 mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x468ee509 md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x469c2623 _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel -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 0x46d13be7 __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0x46e94346 devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0x46ebf42f tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x46f7458d ata_pci_sff_init_one -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 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 0x475aecc0 dax_supported -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x47689b96 crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0x477f1259 iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0x47801ef2 tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x4788c681 devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0x478bf582 addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0x478debf5 phy_10gbit_fec_features -EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x479a731e init_dummy_netdev -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 0x47b5db19 yield_to -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 0x47f03bb7 gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x47f3d0ca edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x4815aa79 dev_pm_opp_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm -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 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 0x4870546c ipv6_recv_error -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 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 0x48f49400 apei_hest_parse -EXPORT_SYMBOL_GPL vmlinux 0x48faed79 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x490cde1a dev_pm_opp_register_set_opp_helper -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 0x49412f27 tcp_reno_ssthresh -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 0x4988d1e7 regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49cefada ahci_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x49d08179 fib6_check_nexthop -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 0x49ebec3e sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0x49eeadbe thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x49ef971f tpm2_flush_context -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 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a2fec77 efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0x4a3a0936 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a78afb0 dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x4a7ccc71 crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0x4a9fd155 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x4aa24da5 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x4aa74955 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x4aafc174 md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0x4ad0847e dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0x4addaf72 pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0x4af05bac cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4af7cbb6 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x4b1467ea skcipher_walk_virt -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 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 0x4b6b7a54 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x4b6dfc46 security_path_chmod -EXPORT_SYMBOL_GPL vmlinux 0x4b70d849 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4b77aaa9 usb_for_each_dev -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 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 0x4bfa5d9b dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x4bfafab0 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x4bfbfc86 fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0x4bfcafbb serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x4bfed7a9 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x4c0d6ab2 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x4c22c91f ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x4c29fd4e ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x4c2b5ecf udp_cmsg_send -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 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c55ad31 iomap_readahead -EXPORT_SYMBOL_GPL vmlinux 0x4c6041c1 raw_seq_next -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 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 0x4d0015e2 cpu_hotplug_disable -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 0x4d1dcecd nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev -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 0x4d676283 lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get -EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d765d0f dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x4d7aa536 fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0x4d80463c xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0x4d81ef14 devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0x4d83c710 k3_udma_glue_tdown_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x4d84f838 blkcg_deactivate_policy -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 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 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4deec03c __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x4df2e871 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x4dfad3f0 irq_domain_associate_many -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 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 0x4e41f480 devlink_dpipe_entry_ctx_close -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 0x4e6209e5 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x4e676c40 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x4e8875bf class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4e8935d2 scsi_check_sense -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 0x4ecb612e __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4ee1551c wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0x4eead633 of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4efe92be lochnagar_update_config -EXPORT_SYMBOL_GPL vmlinux 0x4f0ec64c __traceiter_devlink_hwmsg -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 0x4f4a1e3d net_selftest -EXPORT_SYMBOL_GPL vmlinux 0x4f59a0b3 led_trigger_remove -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 0x4f8baca8 of_phy_provider_unregister -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 0x4fab149a ipv4_redirect -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 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 0x503aa813 synth_event_trace_start -EXPORT_SYMBOL_GPL vmlinux 0x504df5ec acpi_set_modalias -EXPORT_SYMBOL_GPL vmlinux 0x506285e1 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x50758702 fscrypt_set_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50a9d49a ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x50b06756 fwnode_count_parents -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 0x50eb8373 shash_free_singlespawn_instance -EXPORT_SYMBOL_GPL vmlinux 0x50f7b470 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -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 0x5117ccc1 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x51252235 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x514c42a3 blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x514c557f usb_get_dr_mode -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 0x51a9d540 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x51ad07dd tegra210_plle_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0x51c87eac spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x51cf4a80 lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler -EXPORT_SYMBOL_GPL vmlinux 0x51d6618d gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x51e2aaf5 ethnl_cable_test_result -EXPORT_SYMBOL_GPL vmlinux 0x51faed3c mctrl_gpio_init -EXPORT_SYMBOL_GPL vmlinux 0x51fc9a6d xenmem_reservation_decrease -EXPORT_SYMBOL_GPL vmlinux 0x52159475 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x521aa4df init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x521c96a3 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -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 0x525b067a tcp_twsk_unique -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 0x527c3380 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x527c6d03 __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x528e4f43 fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x52920305 pci_pr3_present -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 0x52ce2057 hv_setup_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52fd3ad9 dm_start_time_ns_from_clone -EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x53170c34 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x5321d3d6 sbitmap_get -EXPORT_SYMBOL_GPL vmlinux 0x53261cd5 cpufreq_freq_attr_scaling_available_freqs -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 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 0x537252cf __SCK__tp_func_rpm_return_int -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 0x53b368ba validate_xmit_skb_list -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 0x53d82d4a bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0x53e73ac1 fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x5402a4d4 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x541f0818 crypto_stats_skcipher_encrypt -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 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 0x5461611f seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x5467df8e __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x546ffe35 __netif_set_xps_queue -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 0x54a25da2 qcom_smem_state_put -EXPORT_SYMBOL_GPL vmlinux 0x54be80fa clk_hw_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0x54c200d9 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x54d70f08 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x54f2e429 netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x54fc8527 __acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x551e8d5c tegra_bpmp_request_mrq -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 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 0x556e3018 acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x556f0885 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x556f717b tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x5579d8fb clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x557d2843 addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0x5592e159 kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x55a11029 event_triggers_call -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 0x55e6ff5e rio_mport_send_doorbell -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 -EXPORT_SYMBOL_GPL vmlinux 0x5624d019 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -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 0x56576bac clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x565964f6 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x5672e0a6 driver_register -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 0x56c11512 acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x56c1f541 ti_sci_inta_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0x56c91841 sched_trace_rq_cpu -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 0x570dbbd7 kvm_get_kvm_safe -EXPORT_SYMBOL_GPL vmlinux 0x5713dd5b perf_event_enable -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 0x571f20c6 iommu_sva_alloc_pasid -EXPORT_SYMBOL_GPL vmlinux 0x5727baa5 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x572ab39f ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x572d0ae7 fsl_mc_resource_free -EXPORT_SYMBOL_GPL vmlinux 0x57327896 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x57333e85 kvm_write_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0x574f74f8 sysfs_remove_link -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 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 0x57d0de96 dev_xdp_prog_count -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 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 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 0x582fd55f msg_zerocopy_alloc -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 0x5865e1c8 genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0x586a5ec6 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -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 0x58b2fd03 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x58b963eb bio_start_io_acct -EXPORT_SYMBOL_GPL vmlinux 0x58cd7346 crypto_stats_akcipher_decrypt -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 0x592c7ab8 sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0x593072a3 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0x593ab862 do_splice_to -EXPORT_SYMBOL_GPL vmlinux 0x594a1e6a dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x594c2224 srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0x59570a29 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x59586c23 crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0x5966fc9d fsl_mc_bus_dpdbg_type -EXPORT_SYMBOL_GPL vmlinux 0x596c3354 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x596eef3b spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x5972093a dw_pcie_find_capability -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 0x59953fdd dst_blackhole_mtu -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 0x59c6cef1 devm_pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x59c91b46 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x59d52461 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x59d68c56 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x59e32311 devlink_free -EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns -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 0x5a12d6c8 device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x5a165d81 dev_err_probe -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 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 0x5aa70984 acpi_reduced_hardware -EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -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 0x5af1e553 tegra_mc_probe_device -EXPORT_SYMBOL_GPL vmlinux 0x5af299cd em_dev_unregister_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0x5afbd30b crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x5afee0e0 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x5b094e06 irq_gc_mask_set_bit -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 0x5b58d238 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b6eaab0 __traceiter_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x5b78120f usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x5b79ba9c ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x5b7bb4d1 tracing_snapshot_cond_disable -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 0x5bbdfa26 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel -EXPORT_SYMBOL_GPL vmlinux 0x5bc99c83 dma_mmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x5bca8b39 of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bd8e66f ping_err -EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5be78871 serdev_controller_alloc -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 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 0x5c1fa7c4 inverse_translate -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 0x5c3bbd06 __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x5c4e1965 xen_xenbus_fops -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 0x5c6fbf65 devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x5c7274ce ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll -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 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 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 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 0x5d8476d3 bpf_sk_storage_diag_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5d8f7cbf md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x5da60a14 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dac1189 of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0x5dacd0a0 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5db42ee8 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x5dd7aa7d dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x5ddb1311 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x5ddd2cca security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x5de412cd k3_ringacc_ring_push -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 0x5e1fc279 unmap_mapping_pages -EXPORT_SYMBOL_GPL vmlinux 0x5e2667e0 clk_hw_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x5e269b17 vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0x5e2e7a2f usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x5e40de0c tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0x5e4d8755 fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -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 0x5e93eb01 devlink_param_unpublish -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 0x5ebcab78 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x5ebef6f8 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x5ec2319a mtk_mutex_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x5ec9c1bf ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x5ecdcf90 ti_sci_get_free_resource -EXPORT_SYMBOL_GPL vmlinux 0x5edd000e __trace_array_puts -EXPORT_SYMBOL_GPL vmlinux 0x5efe69ea elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5f0391ed pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x5f0e20f4 driver_unregister -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 0x5f4871ed skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x5f49f930 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x5f64fcf3 tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f7b7af0 component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0x5f8d004a rio_attach_device -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 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 0x604dfcc3 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x605d5bfa cache_line_size -EXPORT_SYMBOL_GPL vmlinux 0x605f3322 __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x60634878 dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x6066ac06 iommu_device_unregister -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 0x6083bef6 devlink_port_params_register -EXPORT_SYMBOL_GPL vmlinux 0x608bfcd6 sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x60969a70 fsl_mc_resource_allocate -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 0x60a35b5e ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x60a5790a dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x60c8be24 led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x60dcb495 fwnode_graph_get_remote_node -EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x60f63ec3 switchdev_handle_fdb_del_to_device -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 0x610e24f3 input_ff_event -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 0x6148c4c0 synth_event_trace_array -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 0x6172dd20 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x617b026c hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x618392f3 usb_add_hcd -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 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 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 0x6219e1dd usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x622ec6dc devm_clk_get_optional_enabled -EXPORT_SYMBOL_GPL vmlinux 0x622f41a6 mtk_eint_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6230f521 ip6_update_pmtu -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 0x6252affc driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get -EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -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 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 0x62d4620e inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x62e1918e clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x62f7a540 sk_set_memalloc -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 0x6345b5b2 thermal_zone_device_enable -EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x634e02f2 blk_trace_remove -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 0x63996a36 fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x63a0ebef skb_defer_rx_timestamp -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 0x63c8c1f2 tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x63d497a8 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63f36bec ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x63ffec29 devm_regmap_init_vexpress_config -EXPORT_SYMBOL_GPL vmlinux 0x640d0e0c power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x6411d6ec fs_dax_get_by_bdev -EXPORT_SYMBOL_GPL vmlinux 0x64199b58 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x64258e1d fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0x642616a2 nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x64265f18 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x6427572b tegra210_clk_emc_dll_enable -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 0x645b7acc i2c_dw_probe_master -EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report -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 0x64925270 __dax_synchronous -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 -EXPORT_SYMBOL_GPL vmlinux 0x64c84f7c clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x64d3cc4e xas_load -EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete -EXPORT_SYMBOL_GPL vmlinux 0x64ef679d iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x64f3bb4d vp_modern_map_vq_notify -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 0x652313fd pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x6528fa37 devlink_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0x652d75b7 blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x65333901 shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0x65393922 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x653d9015 ip6_datagram_release_cb -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 0x655720b4 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x655e4879 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x65814c6b debugfs_lookup_and_remove -EXPORT_SYMBOL_GPL vmlinux 0x659d4513 nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0x65ab232d cgroup_get_from_id -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 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 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 0x6639c5d4 pm_clk_add -EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x6645a35c i2c_slave_unregister -EXPORT_SYMBOL_GPL vmlinux 0x664e8ffb inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x664eb54a k3_ringacc_ring_reset_dma -EXPORT_SYMBOL_GPL vmlinux 0x664f0cef bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x66546ede acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0x6655e7c2 xenbus_watch_path -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 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 0x668402aa crypto_put_default_rng -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 0x66df8abc power_supply_am_i_supplied -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 0x671524c9 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x6717f431 serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0x672b53d1 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x67310fb9 nfs_ssc_client_tbl -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 0x674e2d5e synth_event_trace -EXPORT_SYMBOL_GPL vmlinux 0x676c688f k3_ringacc_ring_free -EXPORT_SYMBOL_GPL vmlinux 0x6777a092 debugfs_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67a0169a pin_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x67a19903 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x67b6e858 devm_of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0x67c884a9 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x67d91336 fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67e3667c udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x67fa8d47 xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x680f3fd5 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x681898f1 setfl -EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x683a495b icc_node_add -EXPORT_SYMBOL_GPL vmlinux 0x683d05a4 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x684ca117 zynqmp_pm_get_pll_frac_mode -EXPORT_SYMBOL_GPL vmlinux 0x6859677b cgroup_attach_task_all -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 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 0x68a990cb bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x68af8adc genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x68b773e4 of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0x68c90424 devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x68c962ba sched_trace_rq_avg_dl -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 0x68fe0efd usb_check_int_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x691e406e nvdimm_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x6935039b regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x693c6eeb fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x6943a93c mmc_switch -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 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 0x698f3513 component_del -EXPORT_SYMBOL_GPL vmlinux 0x699a940a xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x69a1c97d fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0x69a97e48 mmc_cmdq_disable -EXPORT_SYMBOL_GPL vmlinux 0x69b3cf79 __sock_recv_ts_and_drops -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 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a0bcc4b ata_bmdma_start -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 0x6a2a2707 inet_csk_update_pmtu -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 0x6a4f623b mmu_notifier_synchronize -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 0x6aa2a877 xenbus_printf -EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x6acd3e47 set_capacity_and_notify -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 0x6ae5cc53 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0x6af5dcd4 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x6b03e837 nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -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 0x6b594d57 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x6b5c4c87 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x6b6afd34 __traceiter_sched_util_est_se_tp -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 0x6b8eb273 dev_pm_opp_put_clkname -EXPORT_SYMBOL_GPL vmlinux 0x6ba1c6fd ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x6ba7282e devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x6bb1c244 usb_amd_pt_check_port -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 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 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 0x6c389761 acpi_bus_get_private_data -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 0x6c821a37 __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0x6c88c195 kvm_vcpu_block -EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x6c9a3354 mptcp_subflow_init_cookie_req -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6cb0ce87 irq_get_percpu_devid_partition -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 0x6d024515 rio_lock_device -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 0x6d14720d __traceiter_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x6d18c799 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d3ad3a5 blk_queue_zone_write_granularity -EXPORT_SYMBOL_GPL vmlinux 0x6d4136e9 dst_cache_get_ip6 -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 0x6d690978 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -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 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6dee0446 dev_pm_opp_get_max_clock_latency -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 0x6e21350c class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e466bb6 fsl8250_handle_irq -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 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e7953b9 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e91af50 devlink_port_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x6e94f9f4 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x6e9f203b dev_pm_set_dedicated_wake_irq -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 -EXPORT_SYMBOL_GPL vmlinux 0x6eca5a5a ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0x6ecab5b2 pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x6ee386e5 sch_frag_xmit_hook -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 0x6f0fb4e6 nf_queue_entry_free -EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f1ee3f5 devm_platform_ioremap_resource -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 0x6f5e1ce1 alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0x6f67dd01 vp_modern_get_status -EXPORT_SYMBOL_GPL vmlinux 0x6f74191c sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -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 0x6fa121cd ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6fa2c222 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x6fa67ada debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x6faa2d76 sched_trace_rq_cpu_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6faae178 crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0x6fb58f85 rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6ff072cc ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x700280da __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x7002a96c power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x700fcc54 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x70169f09 lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0x702d792e usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0x703bdab3 tcp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x7043b7ff inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x7055c56e __sbitmap_queue_get_shallow -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 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 0x709e2f4c dpbp_reset -EXPORT_SYMBOL_GPL vmlinux 0x709ef340 amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0x70a969c2 iommu_device_link -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 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70e06e33 pkcs7_free_message -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 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 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71633e95 iptunnel_handle_offloads -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 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x71a9a3ab mtk_mutex_acquire -EXPORT_SYMBOL_GPL vmlinux 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 0x71c7a7c3 user_update -EXPORT_SYMBOL_GPL vmlinux 0x71c84f7d ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x71c86c7f aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x71c89154 device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x71e33e31 irq_gc_set_wake -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 0x721c0f1b of_platform_default_populate -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 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 0x726e4c78 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -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 0x72a61a80 inet_csk_route_child_sock -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 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 0x730519d4 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x7309f77e rtnl_put_cacheinfo -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 0x731fa62a devlink_port_param_driverinit_value_get -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 0x73614997 bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x7366f2c8 __fscrypt_prepare_readdir -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 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 0x73b40cdc blk_mq_complete_request_remote -EXPORT_SYMBOL_GPL vmlinux 0x73b97fb3 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x73c15c78 ip6_input -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 0x74163e1b inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x7422375a ahci_ops -EXPORT_SYMBOL_GPL vmlinux 0x74269348 dax_finish_sync_fault -EXPORT_SYMBOL_GPL vmlinux 0x7431878e sdio_claim_host -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 0x744f605b security_inode_create -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 0x7492658c metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x749d82c4 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x74a22bb4 k3_udma_glue_push_rx_chn -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 -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 0x74f1e45e mptcp_pm_get_add_addr_signal_max -EXPORT_SYMBOL_GPL vmlinux 0x74fc2ea2 serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0x7501fef0 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x750590bf rio_local_set_device_id -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 0x75254096 synth_event_add_next_val -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 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 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 0x75cb1705 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x75cf6835 led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0x75d1445f crypto_alloc_sync_skcipher -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 0x75e9c735 pci_ats_disabled -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 0x7623ec4b perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0x76299b1b xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0x764de14d __fput_sync -EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register -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 0x768b54df device_property_read_u16_array -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 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 0x76d680f6 acpi_dev_resource_memory -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -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 -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 0x77467c7f add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x775fac9c __device_reset -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 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 0x77d57f9b usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x77d84a67 mtk_eint_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x77e0d9f2 sched_set_normal -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 0x781487f8 iomap_page_mkwrite -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 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x7860d8fe __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x7861d9bb devlink_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0x78630bc8 relay_close -EXPORT_SYMBOL_GPL vmlinux 0x786ac9ed bio_start_io_acct_time -EXPORT_SYMBOL_GPL vmlinux 0x786cc698 fl6_update_dst -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 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 0x78bd61b7 vfs_write -EXPORT_SYMBOL_GPL vmlinux 0x78d561b4 genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x78e317c0 crypto_stats_akcipher_verify -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 0x790c87db bpf_prog_put -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 -EXPORT_SYMBOL_GPL vmlinux 0x791c8401 blk_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0x791df58d screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x792222db tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x7922946e udp4_lib_lookup -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 0x7940becc ping_common_sendmsg -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 0x796eb434 fixed_phy_register_with_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x79729891 virtio_add_status -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 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 0x79d57116 vfs_read -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79eea92c extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x79fbe175 skb_gso_validate_mac_len -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 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 0x7a40bc8b devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0x7a54a55e irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0x7a5e51d5 __mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a83fd61 kgdb_register_io_module -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 0x7aa5170e of_console_check -EXPORT_SYMBOL_GPL vmlinux 0x7aac3471 devlink_port_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x7ab5ea82 thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7acb5a5b ping_unhash -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 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 0x7afeac54 nfs42_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x7b080289 dax_inode -EXPORT_SYMBOL_GPL vmlinux 0x7b13f91c __synth_event_gen_cmd_start -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 0x7b31a83b screen_glyph -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 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 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 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 0x7b96a59b bpf_preload_ops -EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7b9c677b security_path_rmdir -EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq -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 0x7bd438a1 ncsi_stop_dev -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 0x7c134b5b skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x7c176714 devlink_resources_unregister -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 0x7c983a5d dmi_walk -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7ca3c3af task_cputime_adjusted -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 0x7ccde7a2 of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x7cce0262 strp_init -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 0x7ce6ee59 devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -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 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 0x7d893e96 mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x7d900cf0 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x7dbf114a extcon_unregister_notifier_all -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 0x7e055596 fsl_mc_bus_dpbp_type -EXPORT_SYMBOL_GPL vmlinux 0x7e063b06 blk_ksm_register -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 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 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 0x7e6869d8 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x7e6dfab6 devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7e7182a6 memunmap_pages -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 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 0x7e92d2c7 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x7e9e2f21 device_link_remove -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 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 0x7f19091e devm_regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0x7f195ccf __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x7f2a4690 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0x7f3e662a device_create -EXPORT_SYMBOL_GPL vmlinux 0x7f44e22b pci_host_common_probe -EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7fa74fd7 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x7fba0417 cgroup_get_e_css -EXPORT_SYMBOL_GPL vmlinux 0x7fc86461 clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0x7fc9c88f ping_close -EXPORT_SYMBOL_GPL vmlinux 0x7ff19c40 zynqmp_pm_set_requirement -EXPORT_SYMBOL_GPL vmlinux 0x7ffc5d4d tcp_enter_memory_pressure -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 0x801f51a0 devlink_unregister -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 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 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x8093696d __skb_get_hash_symmetric -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 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 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 0x81313754 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x8139675d lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x813cdf4a __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x8149cc90 phy_resolve_aneg_linkmode -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 0x8160f80c bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x816cda48 bpf_offload_dev_create -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 0x818f79f3 trace_array_set_clr_event -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 0x81ae1c2a devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x81ccbf98 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x81da5f67 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x81df6f75 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x81e5c2af ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x81ef78d0 of_get_named_gpio_flags -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 0x8242c71f bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0x8246ef80 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x8254bc3b phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x825dfc12 sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x8264e94b scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x826cca2a acpi_device_fix_up_power -EXPORT_SYMBOL_GPL vmlinux 0x82734763 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x827bb02e virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x827c1fa6 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog -EXPORT_SYMBOL_GPL vmlinux 0x82833a8f hwspin_lock_request -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 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 0x82badb89 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x82c7c80f fl6_merge_options -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 0x82d545ae devm_tegra_core_dev_init_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -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 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x834bb25b rockchip_pcie_deinit_phys -EXPORT_SYMBOL_GPL vmlinux 0x834e0693 devlink_dpipe_headers_unregister -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 0x836a3491 __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x837c46d7 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x837f9c91 cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0x838f7ebf __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x838f9177 mtk_pinconf_bias_set_rev1 -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 0x83a2a8ec scsi_host_complete_all_commands -EXPORT_SYMBOL_GPL vmlinux 0x83c14a75 trace_array_put -EXPORT_SYMBOL_GPL vmlinux 0x83c5e00b sk_psock_init -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 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 0x84257ac4 devlink_param_driverinit_value_get -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 -EXPORT_SYMBOL_GPL vmlinux 0x84360386 __devm_regmap_init_mmio_clk -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 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 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 0x8493517e ncsi_start_dev -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 0x850bb6db devlink_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x850fdae2 mtk_pinconf_drive_set -EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_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 0x8563403c genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0x856467a8 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x85761337 crypto_type_has_alg -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 0x85863f67 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x85b248c2 mptcp_pm_get_add_addr_accept_max -EXPORT_SYMBOL_GPL vmlinux 0x85bdb23f __class_register -EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0x85d17b29 pid_nr_ns -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 0x85fa51a2 kvm_vcpu_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x8601f9bb devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x860d8ccd skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x8620361d trace_array_get_by_name -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 0x863d4aea of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x865c3a5e tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x866ca6a3 gnttab_page_cache_init -EXPORT_SYMBOL_GPL vmlinux 0x866da4e3 serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0x866de911 devm_ti_sci_get_handle -EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid -EXPORT_SYMBOL_GPL vmlinux 0x86708ced mmu_interval_notifier_insert -EXPORT_SYMBOL_GPL vmlinux 0x867102f3 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x86766103 fsl_mc_bus_dpdcei_type -EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier -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 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 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 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 0x87bede99 component_add -EXPORT_SYMBOL_GPL vmlinux 0x87ce0be2 free_iova -EXPORT_SYMBOL_GPL vmlinux 0x8802cb1e led_classdev_unregister -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 0x8821d228 cros_ec_check_features -EXPORT_SYMBOL_GPL vmlinux 0x8834a77a divider_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x884c8c5d clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0x88520e18 netdev_walk_all_lower_dev_rcu -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 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 0x889ae963 fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0x88a7e263 fsl_mc_device_add -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 0x88bac6b2 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x88cd7a9a k3_ringacc_ring_get_occ -EXPORT_SYMBOL_GPL vmlinux 0x88f37636 input_device_enabled -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 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put -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 0x897e81cc debugfs_create_devm_seqfile -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 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 0x8a09b2c4 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x8a09c347 pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0x8a177373 percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x8a23bc9a net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next -EXPORT_SYMBOL_GPL vmlinux 0x8a32dba7 __traceiter_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x8a33de2d devlink_rate_leaf_create -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 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 0x8a72cb1d sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0x8a772baf sock_map_unhash -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 0x8a9b19f1 inet_csk_get_port -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 0x8af882df ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL vmlinux 0x8af9f83a scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x8b0fd23f trace_array_printk -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 0x8b2d4288 of_icc_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x8b30313c xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0x8b314390 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x8b50510f extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release -EXPORT_SYMBOL_GPL vmlinux 0x8b6a5998 bpf_trace_run3 -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 0x8b8445b8 of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0x8b87b059 switchdev_handle_port_attr_set -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 0x8bb7f4f8 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x8bc05bf0 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x8bc333ae led_put -EXPORT_SYMBOL_GPL vmlinux 0x8bddedfd pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x8be514c4 dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0x8be96d40 __trace_note_message -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 0x8c0215f2 pm_system_wakeup -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 0x8c46a84f trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x8c49c136 devm_platform_get_irqs_affinity -EXPORT_SYMBOL_GPL vmlinux 0x8c49c94f regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0x8c5f1bc6 skb_zerocopy_headlen -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 -EXPORT_SYMBOL_GPL vmlinux 0x8c88643c acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c918dd9 sock_gen_put -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 0x8cf5071a switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0x8d01270b edac_mc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d03c673 devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x8d1d8224 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d31c1dd is_swiotlb_active -EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -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 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 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 0x8dc4b138 ncsi_vlan_rx_kill_vid -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 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 0x8e619e90 tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x8e6886b4 sk_setup_caps -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 0x8e7f0a9c acpi_get_phys_id -EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x8e96d7b6 sched_trace_cfs_rq_avg -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 0x8ec08068 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x8ed216cf dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x8ed36d57 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x8edef68a __sock_recv_wifi_status -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 0x8f056936 fsl_mc_bus_dpmac_type -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -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 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 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 0x8f7830fe bgmac_enet_suspend -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 0x8f960a46 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x8f9b4eeb trace_array_init_printk -EXPORT_SYMBOL_GPL vmlinux 0x8f9c70e3 device_get_phy_mode -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 0x8fc35dc9 nfs_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8fcb1696 nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0x8fdd255d usb_hcd_setup_local_mem -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 0x900e98b7 switchdev_handle_fdb_add_to_device -EXPORT_SYMBOL_GPL vmlinux 0x90300dbd usb_get_role_switch_default_mode -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 0x9043fcef pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x9045e5e2 fsnotify_put_mark -EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put -EXPORT_SYMBOL_GPL vmlinux 0x907450a5 sk_msg_return_zero -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 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 0x90b763f1 HYPERVISOR_console_io -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 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 0x9104ab0b css_next_descendant_pre -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 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 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 0x9175a3f3 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x917a8419 devlink_trap_groups_register -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 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 0x91f2d631 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x9203d3bc of_fwnode_ops -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 0x92306c93 xfrm_local_error -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 0x926fbeca ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0x927487ea zynqmp_pm_read_ggs -EXPORT_SYMBOL_GPL vmlinux 0x927bad28 set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x927c7fa1 fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x928ebcd4 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x928fbb30 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x92923feb pm_clk_add_notifier -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 -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 0x92eedfb4 ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x92f63765 devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0x92f866d1 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x930ab533 k3_ringacc_request_ring -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 -EXPORT_SYMBOL_GPL vmlinux 0x93202028 blk_ksm_reprogram_all_keys -EXPORT_SYMBOL_GPL vmlinux 0x93206471 regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array -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 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 0x93c7edeb usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references -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 0x940b0098 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x940b1a08 pci_epc_init_notify -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 0x946dd559 sha224_zero_message_hash -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 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 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 0x9501fef0 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x95118315 dm_suspended -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 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x95635737 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu -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 0x9594c14e shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x959aa110 acpi_spi_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x95ab89ac ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x95b2acb9 __mnt_is_readonly -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 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 0x95fbd789 __traceiter_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x9603ee22 vp_modern_remove -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 0x962c8ae1 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x9633a1d6 switchdev_port_attr_set -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 0x9666a62d iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x967e084a devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0x96858bbf fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin -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 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 -EXPORT_SYMBOL_GPL vmlinux 0x97030fa3 dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x9704b461 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x9711b7b5 phy_optional_get -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 0x97411573 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x97440e99 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x9744b6d5 ping_seq_start -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 0x97623558 xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x977c3670 fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x978dbe6f pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0x97971f83 srcutorture_get_gp_data -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 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 0x97ee8c24 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x97f84208 pci_hp_add -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 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9876975a bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -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 0x98867ad7 devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0x988f26bf nvmem_cell_read_variable_le_u64 -EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str -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 0x98ed9eb9 devm_krealloc -EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x98f00b57 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x990b659a acpi_dma_request_slave_chan_by_name -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 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x996114ab usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg -EXPORT_SYMBOL_GPL vmlinux 0x997e9b24 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x9996cb4d dprc_open -EXPORT_SYMBOL_GPL vmlinux 0x99b1e806 crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0x99c0a952 l3mdev_master_upper_ifindex_by_index_rcu -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 0x99fa3aa5 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x9a01972a pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9a02c89e dev_attr_ncq_prio_supported -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 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 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 0x9a6cdfbe devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9a6da8d2 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x9a86255a tcp_ca_openreq_child -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 0x9ab1f1e3 crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x9ab55b0d nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x9b019f1c acpi_dev_gpio_irq_get_by -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 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 0x9b7c71f7 ip6_dst_lookup_tunnel -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 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9ba20d36 devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -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 0x9c096c6c do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0x9c149893 ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x9c37361b inet_csk_listen_stop -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 -EXPORT_SYMBOL_GPL vmlinux 0x9c6987e4 input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0x9c6bc122 devlink_port_type_clear -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 0x9c8aebd2 debugfs_create_ulong -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 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 0x9cc7960f sk_psock_drop -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 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d09fdea skb_segment_list -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 0x9d63c47d dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x9d6a42c5 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x9d81c65d class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x9d91d893 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x9d98409f __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x9dc15364 __devm_clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x9dc8f27c rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x9deb19e2 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x9df121a0 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x9df60fed pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0x9df91634 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps -EXPORT_SYMBOL_GPL vmlinux 0x9e047ec0 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x9e1a4030 pm_generic_resume_noirq -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 0x9e799114 dev_fill_forward_path -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 0x9ec37da6 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ed83c81 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x9ee87dcd sk_psock_msg_verdict -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 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 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 0x9f86fd76 clk_hw_get_parent_index -EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9fab04f8 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write -EXPORT_SYMBOL_GPL vmlinux 0x9fc8425b sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x9fc8c4c6 dev_pm_opp_add -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 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 0xa02742f5 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0xa03b489c fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0xa04b412c crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa053ab91 uart_xchar_out -EXPORT_SYMBOL_GPL vmlinux 0xa05b0a4a do_xdp_generic -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 0xa0a07dcd __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0xa0c12489 gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0d8e7ad attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0xa0dcdde4 synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa11592b0 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0xa121e06b phy_put -EXPORT_SYMBOL_GPL vmlinux 0xa1221d3b espintcp_queue_out -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 0xa15dc5ce devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked -EXPORT_SYMBOL_GPL vmlinux 0xa16deb13 sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xa170343b inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xa1749ce3 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa175c996 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xa18a92eb shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xa19d37a8 __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xa1a3fc41 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0xa1b00207 xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0xa1b3100e devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0xa1b97cd2 gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1e7e9ea iommu_device_register -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 0xa23eef45 bgmac_phy_connect_direct -EXPORT_SYMBOL_GPL vmlinux 0xa24a8086 skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0xa24f1ba4 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -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 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2e51c2a fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xa2e5c219 sysfs_notify -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 0xa31ce754 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa31faeb7 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0xa34f0f85 of_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0xa36004ac ip6_dst_lookup -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 0xa385425b espintcp_push_skb -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 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3baa377 genphy_c45_loopback -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 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 0xa3f2a05c devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0xa3f41c60 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa4120631 wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xa42518a0 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0xa4330ba1 xfrm_audit_state_delete -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 0xa472ffdf device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0xa47685c8 __fib_lookup -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 0xa499df01 fuse_fill_super_common -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 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 0xa50ecef6 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0xa5150f38 usb_control_msg_send -EXPORT_SYMBOL_GPL vmlinux 0xa517f884 tegra210_plle_hw_sequence_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa55c3694 dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xa568344b virtqueue_get_used_addr -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 0xa5b50f79 fsnotify_alloc_user_group -EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0xa5cae5db devres_remove -EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5fdef19 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0xa6069b2c devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xa6129094 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xa61b8d11 ahci_init_controller -EXPORT_SYMBOL_GPL vmlinux 0xa6244c53 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0xa627d4af nvdimm_security_setup_events -EXPORT_SYMBOL_GPL vmlinux 0xa62e477c br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0xa633b669 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0xa63e2867 meson_vid_pll_div_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xa648a4d2 tcp_abort -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 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 0xa66e2337 dpcon_set_notification -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 0xa688b35e nfs42_ssc_unregister -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 -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 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 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 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa72e7b2b devm_regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xa763e220 sched_trace_cfs_rq_cpu -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 0xa78e38de nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0xa78eb79a pinmux_generic_get_function_count -EXPORT_SYMBOL_GPL vmlinux 0xa7a32713 __traceiter_br_fdb_add -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 0xa7e2a2af rio_add_net -EXPORT_SYMBOL_GPL vmlinux 0xa7e5e7e0 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0xa7e825fe usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0xa7ea253e ti_sci_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xa7f1890f bgmac_enet_remove -EXPORT_SYMBOL_GPL vmlinux 0xa7f3cc2a __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xa7f58232 regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0xa7feba03 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0xa8096922 of_platform_device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa80b9886 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0xa8150ee3 devlink_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa81aec33 virtio_device_restore -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 0xa8363525 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0xa84d16da devlink_region_snapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0xa8504701 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa86359ca irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0xa88210a5 __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0xa8893e11 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0xa8a53324 phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xa8b26d81 handle_fasteoi_mask_irq -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 0xa8d0f4e4 ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0xa8d974cc hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0xa8f931b6 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa91359a2 free_fib_info -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 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 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 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e3921a inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xa9f1cff3 sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xaa03e253 fuse_direct_io -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 0xaa44431f shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xaa5e2351 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa767148 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xaa921235 request_firmware_direct -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 0xaaad84e3 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xaad5c5c5 devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0xaaddb0ac __rio_local_write_config_16 -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 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 0xab7ef18a __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare -EXPORT_SYMBOL_GPL vmlinux 0xab938385 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks -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 0xabeaaba6 devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0xabf06e66 devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0xabfc5b81 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xac431bfe adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0xac601a4e tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xac73583a gpiod_set_config -EXPORT_SYMBOL_GPL vmlinux 0xac90b60c pm_generic_poweroff -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 0xace4eb5b sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0xace51dde regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xacef6a9a sock_map_close -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 0xad06c8a3 devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0xad0c6a95 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xad1b85b1 __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp -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 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 0xad627885 xen_xlate_unmap_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xad796a25 regulator_unregister_notifier -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 -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 0xade991a3 pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xae0c01a2 __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock -EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xae1bb734 perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0xae3669d2 devm_nvdimm_memremap -EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae3a5cd2 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0xae3e140f rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0xae54705e crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0xae55a9db pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0xae6288ae strp_stop -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 0xae78402e sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xaeaa6a9f __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xaeade160 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0xaec7a70b bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0xaeca98a0 timer_unstable_counter_workaround -EXPORT_SYMBOL_GPL vmlinux 0xaeef68f5 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0xaf03f874 hvc_instantiate -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 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 0xaf40aa9a platform_get_mem_or_io -EXPORT_SYMBOL_GPL vmlinux 0xaf51c888 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xaf57ddbe devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0xaf57e2e2 acpi_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xaf645a16 iommu_unmap_fast -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 0xafb07262 __pfn_to_mfn -EXPORT_SYMBOL_GPL vmlinux 0xafc6bb32 nd_cmd_in_size -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 0xb003d838 sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0xb0099f79 topology_clear_scale_freq_source -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 0xb049a294 __SCK__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xb05b68d5 zynqmp_pm_reset_get_status -EXPORT_SYMBOL_GPL vmlinux 0xb0647344 netdev_is_rx_handler_busy -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 0xb08a22a3 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xb08da303 i2c_acpi_new_device -EXPORT_SYMBOL_GPL vmlinux 0xb09947df vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0xb09d2f10 __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0xb0b19136 fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0xb0b54880 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -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 0xb104da82 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb1119a16 sched_trace_rq_avg_irq -EXPORT_SYMBOL_GPL vmlinux 0xb114b0eb cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0xb115f5bd register_trace_event -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 0xb12f1195 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0xb14bf289 ip_fib_metrics_init -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 0xb16f92db __fscrypt_inode_uses_inline_crypto -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 0xb1df2228 rio_request_outb_dbell -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 0xb202f0d7 rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0xb21b4e11 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -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 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 0xb291597a netlink_strict_get_check -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 0xb29ed96b ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -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 0xb3279be0 bgmac_enet_probe -EXPORT_SYMBOL_GPL vmlinux 0xb336d6ae __kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0xb3380bbb irq_domain_xlate_twocell -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 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 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 0xb3c9c39c tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0xb3d0de28 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xb3d1355a ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xb3dec0b1 xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0xb3e60242 dev_pm_domain_attach_by_name -EXPORT_SYMBOL_GPL vmlinux 0xb3eba7a4 __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xb3f695d3 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb3feae9c clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0xb401acc2 tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0xb4094856 dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0xb40d673e zynqmp_pm_pinctrl_request -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 0xb454826e kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0xb4562c68 sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0xb45a64e7 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0xb45fc477 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0xb4638a6b subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0xb4659a87 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xb47dde6a dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xb482415e gpiochip_generic_config -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 0xb4c9142b nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0xb4d453c3 pinmux_generic_get_function_groups -EXPORT_SYMBOL_GPL vmlinux 0xb4dc33ab xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -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 0xb4ff66ba __traceiter_br_fdb_update -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 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 0xb53e9f54 of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0xb546a4ae clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0xb5561e12 arm64_mm_context_get -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 0xb5be9835 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0xb5c0a919 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xb5d17805 bgmac_adjust_link -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 0xb61d8f35 devlink_param_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb62ac588 ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm -EXPORT_SYMBOL_GPL vmlinux 0xb64421cf skb_segment -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 0xb66edd83 of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb678f8bd __traceiter_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0xb68d595f tps65912_device_init -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 0xb6aae5bc platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb6bd0cc4 devm_phy_optional_get -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 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 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 0xb75be107 tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0xb75d8442 perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0xb75eba01 fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0xb76ca1b4 spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0xb7715178 device_show_int -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 0xb78886a6 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xb79b6e49 scmi_protocol_register -EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xb7ecc5cc usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xb80c4a48 nvdimm_blk_region_create -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 0xb832d809 __dev_change_net_namespace -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 0xb84f2545 ima_file_hash -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 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 0xb89e69b1 jump_label_update_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb8b8c4f0 ti_sci_release_resource -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8de6f20 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xb8e76590 gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0xb8ef1c5e device_create_file -EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb901eb7a pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0xb9071419 sk_psock_tls_strp_read -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 0xb94304c9 ahci_reset_em -EXPORT_SYMBOL_GPL vmlinux 0xb94e6323 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xb953137c msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0xb9607ae6 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb97041a3 acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0xb978cece xdp_attachment_setup -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 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 0xb9b36955 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9bf94a7 ip_icmp_error_rfc4884 -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 0xb9d34035 ping_hash -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 0xba00b1ef dax_layout_busy_page_range -EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns -EXPORT_SYMBOL_GPL vmlinux 0xba097c26 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xba15151b of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xba2a79a6 bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba47a55e strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xba77be49 acpi_cppc_processor_probe -EXPORT_SYMBOL_GPL vmlinux 0xba95b01a perf_event_sysfs_show -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 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 -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 0xbb2b144b bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0xbb327f67 clk_register -EXPORT_SYMBOL_GPL vmlinux 0xbb3dd4c5 rdev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xbb55307d tcp_set_keepalive -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 -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 0xbb9e9a2f ahci_fill_cmd_slot -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 0xbbc6c5da akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xbbc87bbe xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbbd2d506 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xbbdb3f60 ahci_platform_get_resources -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 0xbbec4249 ip6_route_input_lookup -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 0xbc0fd16f pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0xbc1efa68 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0xbc25991f fscrypt_set_bio_crypt_ctx_bh -EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xbc4db218 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xbc64feca kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0xbc654326 __traceiter_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -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 0xbca0881b inet_unhash -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 0xbcd05491 metadata_dst_free -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 0xbce9bdf6 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xbcedefde blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xbcef7391 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -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 0xbd21fd05 devlink_reload_disable -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 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 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 0xbe17f598 clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xbe242921 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0xbe24fe31 clk_hw_register_gate2 -EXPORT_SYMBOL_GPL vmlinux 0xbe271af3 pci_create_root_bus -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 0xbe6ce1ca fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0xbe6d43d7 ioasid_put -EXPORT_SYMBOL_GPL vmlinux 0xbe7ed160 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0xbe813975 gpiochip_generic_free -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 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 0xbebd2ede regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xbed1377f wm831x_regmap_config -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 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 0xbf07ad4e tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0xbf1a8d83 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0xbf1c210b sk_msg_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xbf288622 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0xbf37e192 nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0xbf3b60c8 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0xbf5da26e crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0xbf7bfc71 acpi_subsys_runtime_resume -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 0xbfaa08bf icc_node_create -EXPORT_SYMBOL_GPL vmlinux 0xbfac4aac dma_resv_test_signaled -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfc079b6 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0xbfc60c88 netlink_add_tap -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 0xbfe76675 nf_route -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 0xbffa29be srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xc0001fd6 dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0xc010d268 dprc_get_obj_region -EXPORT_SYMBOL_GPL vmlinux 0xc0165fc6 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xc021bc29 inet_ehash_nolisten -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 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 0xc07faa0b sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0xc0815d32 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings -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 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 -EXPORT_SYMBOL_GPL vmlinux 0xc0e48e85 irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0xc0e99c8c __traceiter_neigh_cleanup_and_release -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 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 0xc1397952 sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0xc13c299a devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0xc1516045 dma_buf_dynamic_attach -EXPORT_SYMBOL_GPL vmlinux 0xc154f8b0 crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0xc1553dfa crypto_register_skciphers -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 0xc189efab usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xc1968c3a clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xc199f00a ahci_platform_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0xc1a48b8d rio_register_mport -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 -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 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc22f1b7f blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xc2367bdb usb_pipe_type_check -EXPORT_SYMBOL_GPL vmlinux 0xc23ddff5 bio_release_pages -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 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 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 0xc2d58750 acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xc2d5f0cd devm_hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0xc2d69ca6 gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0xc2dcdaa8 irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2e89ccd int_active_memcg -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 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 0xc323525b dev_pm_opp_put_supported_hw -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 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 0xc38c4515 crypto_drop_spawn -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 0xc3e5272f pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0xc3e69a35 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0xc3ea3ac0 bpf_map_inc_with_uref -EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc404060d i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0xc40dfe0c sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0xc4109362 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0xc41a66bb lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc42a2da6 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xc42a42e7 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf -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 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc47478ff rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0xc4811499 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0xc482b3fa __inet_twsk_schedule -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 -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 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 0xc4d11c51 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0xc4ee60b7 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc500d0d1 spi_res_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc505e527 get_pid_task -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 0xc51c9fe8 fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0xc5261178 gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0xc5310d36 set_secondary_fwnode -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 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 0xc58439f2 blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc58f2663 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xc5a4edf2 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5aac1dd nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0xc5b0e2d6 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc5ba8659 edac_device_free_ctl_info -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 0xc60dd9e2 devm_pm_opp_register_set_opp_helper -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 0xc6321a24 lwtunnel_fill_encap -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 0xc6572a90 xenbus_read_unsigned -EXPORT_SYMBOL_GPL vmlinux 0xc6580647 devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister -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 0xc6727f9c pci_epf_add_vepf -EXPORT_SYMBOL_GPL vmlinux 0xc672a391 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xc672b2e6 inet6_destroy_sock -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 -EXPORT_SYMBOL_GPL vmlinux 0xc6e8a589 skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xc6ed97fd rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0xc6fa09a7 phy_restore_page -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 0xc718e42e rio_pw_enable -EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -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 -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 0xc781b30e trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xc7964fb9 kthread_data -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7b85ad8 acpi_dma_configure_id -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 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 0xc7f63b9e device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0xc7f8cdaf devlink_params_unpublish -EXPORT_SYMBOL_GPL vmlinux 0xc7f95779 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -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 0xc82cb88d synth_event_gen_cmd_array_start -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 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 0xc8881a9b crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0xc89cfcb5 gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xc8a1dd30 fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xc8a2ffb2 crypto_register_instance -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 0xc8e1b2a8 __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0xc8ecf3d5 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xc8ff2c8d rockchip_pcie_enable_clocks -EXPORT_SYMBOL_GPL vmlinux 0xc90b5453 pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero -EXPORT_SYMBOL_GPL vmlinux 0xc92a93e2 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc9466f7c devlink_region_snapshot_id_put -EXPORT_SYMBOL_GPL vmlinux 0xc9475509 sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc957d81b __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xc961256e vp_modern_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc96a7982 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xc96c126e gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xc96f9dbf xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0xc9703b71 ahci_stop_engine -EXPORT_SYMBOL_GPL vmlinux 0xc970ddc8 ahci_shost_attrs -EXPORT_SYMBOL_GPL vmlinux 0xc980efd5 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc989ca9c sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0xc9912e6d strp_done -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 0xc9d99108 acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0xc9db2479 nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0xc9e49a3a check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0xc9e5954f wm8350_block_write -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 0xca01b614 dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xca215c64 pci_epc_mem_init -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 0xca454a34 vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0xca50e929 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0xca599f0b ip6_route_output_flags_noref -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 0xca95a457 xfer_to_guest_mode_handle_work -EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0xcab99d83 gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcacaab95 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcacb4758 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0xcaccb1bb rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcacd8dce usb_alloc_dev -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 0xcaf1d958 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xcaf24ea1 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0xcaf54fa2 usb_string -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 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb2077eb mptcp_token_get_sock -EXPORT_SYMBOL_GPL vmlinux 0xcb281677 rockchip_pcie_parse_dt -EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb3eba74 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0xcb4337ff fib6_new_table -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 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 0xcb8967e1 rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0xcb89d499 fwnode_graph_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xcb8ff9e8 devlink_flash_update_timeout_notify -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 0xcbc474c9 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcbcadc98 irq_create_of_mapping -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 0xcbfdf7e5 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xcc044a9f serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0xcc06d90c of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0xcc0fd0a7 k3_ringacc_ring_push_head -EXPORT_SYMBOL_GPL vmlinux 0xcc109468 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xcc1cc965 fixed_phy_change_carrier -EXPORT_SYMBOL_GPL vmlinux 0xcc239d89 iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0xcc23d5f6 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0xcc2b126d blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap -EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc744576 mtk_pinconf_bias_disable_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0xcc79d313 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcc86f6a9 extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0xcc9065ab tcpv6_prot -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 0xcca6e81a ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xccab9725 find_get_pid -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 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 0xcce66bbc mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xcd045f29 usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcd0f1ddf blk_stat_enable_accounting -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 0xcd526e16 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd6f63bd rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0xcd759b82 k3_ringacc_ring_reset -EXPORT_SYMBOL_GPL vmlinux 0xcd7ca29f devlink_trap_groups_unregister -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 0xcdabc405 fscrypt_show_test_dummy_encryption -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 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 0xce2960c3 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xce316d7e zynqmp_pm_set_sd_tapdelay -EXPORT_SYMBOL_GPL vmlinux 0xce41a260 crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xce4be422 spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0xce4ce3b9 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0xce56cc00 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0xce598ef2 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xce5aa55e bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xce629e7a of_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0xce6a0c39 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce721d32 switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0xce792b89 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xce7b2a80 devm_hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0xce7be2f3 sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0xce7e01cc sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0xce90a5f7 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xce948e89 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xceac8674 zynqmp_pm_read_pggs -EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xcec1a2a5 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xced5acd8 dev_pm_opp_of_remove_table -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 0xceed8c16 __set_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xcf1264af sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0xcf1f0f84 vp_modern_get_num_queues -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 0xcfab4160 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xcfb903ba fat_free_clusters -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 0xcfe249c2 cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0xcfe434c9 netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0xcff111ec clk_divider_ro_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 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 -EXPORT_SYMBOL_GPL vmlinux 0xd0516b70 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0xd0527a9d xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xd0605c98 crypto_unregister_skcipher -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 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 0xd0abfd54 nd_region_dev -EXPORT_SYMBOL_GPL vmlinux 0xd0ae1276 crypto_stats_get -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 0xd0d156e9 __rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xd0dadf03 free_vm_area -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 0xd0ff648b pinmux_generic_add_function -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 0xd13ed8b8 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd13f60a0 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0xd14120c1 __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear -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 0xd1879870 xhci_update_hub_device -EXPORT_SYMBOL_GPL vmlinux 0xd189ce19 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0xd191ffef rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xd1994174 of_genpd_del_provider -EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xd1abb026 __traceiter_neigh_event_send_dead -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 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 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 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 0xd259ec07 crypto_skcipher_encrypt -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 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 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 0xd2bf590b devlink_port_param_value_changed -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 0xd3114f6c tcp_ca_get_key_by_name -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 0xd33ada8b cci_probed -EXPORT_SYMBOL_GPL vmlinux 0xd341b594 fscrypt_ioctl_remove_key_all_users -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 0xd3536edc crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xd396fdca iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3ae6595 fscrypt_set_bio_crypt_ctx -EXPORT_SYMBOL_GPL vmlinux 0xd3c1557c blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0xd3c6a193 gpiochip_irqchip_irq_valid -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 0xd455025a crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xd456d16f irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs -EXPORT_SYMBOL_GPL vmlinux 0xd46c1b72 dax_copy_to_iter -EXPORT_SYMBOL_GPL vmlinux 0xd46e813d dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xd4a294bb bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0xd4a6e388 max8997_write_reg -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 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 0xd4f4154c tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf -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 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 0xd55ad93b iommu_group_get_iommudata -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 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 0xd5b2e117 nd_blk_memremap_flags -EXPORT_SYMBOL_GPL vmlinux 0xd5becb9f perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xd5c0356d is_software_node -EXPORT_SYMBOL_GPL vmlinux 0xd5d03984 fuse_dev_install -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 0xd610ec97 gnttab_page_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xd612e931 decrypt_blob -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 0xd66a0074 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd676dbf5 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd6828fa1 mbox_client_txdone -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 0xd689472b crypto_skcipher_decrypt -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 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 0xd7269c64 osc_sb_native_usb4_control -EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xd72b5a4f strp_check_rcv -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 0xd73a3f5e ipv4_update_pmtu -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 0xd7633ee5 crypto_spawn_tfm -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 0xd76ebede fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0xd7728c46 devm_of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xd781b717 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0xd79449e8 iomap_writepage -EXPORT_SYMBOL_GPL vmlinux 0xd7a19088 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0xd7a832d3 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0xd7b198c5 rio_unregister_mport -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 0xd7c91b63 tegra210_sata_pll_hw_control_enable -EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xd7d1c685 trace_event_buffer_commit -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 0xd7f3ccc8 device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xd8017a5a sock_map_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd80d3e9c device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0xd820216d debugfs_file_put -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 0xd89615d3 badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0xd8a4affa ip_route_output_tunnel -EXPORT_SYMBOL_GPL vmlinux 0xd8a4c606 devfreq_cooling_em_register -EXPORT_SYMBOL_GPL vmlinux 0xd8b6f72e ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xd8bd311e devm_regulator_get_exclusive -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 0xd8f08fdf skb_mpls_push -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 0xd928055f raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data -EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock -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 0xd94f0a9f d_exchange -EXPORT_SYMBOL_GPL vmlinux 0xd955bb3e virtqueue_get_vring_size -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 0xd978b117 xen_dbgp_reset_prep -EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 -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 0xd9e24457 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0xd9e343de devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0xd9f478f8 phy_reset -EXPORT_SYMBOL_GPL vmlinux 0xd9f95cf6 __traceiter_neigh_update -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 0xda0dd603 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0xda2e7948 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda3743c9 imx_pinctrl_sc_ipc_init -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 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 0xda9afadb nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdaa81e47 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdab6586e ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0xdad5d257 trace_get_event_file -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 0xdb43dbd0 crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0xdb4d103d usb_alloc_streams -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 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb8e958d class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdb985f1a sk_msg_free -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 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 0xdbe94e57 ip_local_out -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 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 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 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 0xdc6596fa irq_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -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 -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 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 0xdcb27a32 xdp_rxq_info_unreg_mem_model -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 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 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 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd46ebd3 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xdd5058c9 fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0xdd56ee3a proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd6b0556 fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xdd78d2f2 of_genpd_add_provider_simple -EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xdd963fe1 phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0xddb18643 bpf_prog_get_type_dev -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 0xdddfa321 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xddf02e29 __netdev_watchdog_up -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 0xde2adfaa devlink_param_publish -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 0xde3ec295 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xde4d7b90 usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0xde523278 fat_detach -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 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 0xdefbc6c2 bpf_trace_run1 -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 0xdf15ab91 devm_acpi_dev_remove_driver_gpios -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 0xdf590504 elv_register -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 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 0xdfd6865d k3_udma_glue_request_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xdfda80bc blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0xdfeafcec switchdev_bridge_port_unoffload -EXPORT_SYMBOL_GPL vmlinux 0xdff05537 sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0xdff70bc0 tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xdff84540 ethtool_set_ethtool_phy_ops -EXPORT_SYMBOL_GPL vmlinux 0xdffa9ba3 of_phandle_iterator_init -EXPORT_SYMBOL_GPL vmlinux 0xdfff629b ahci_kick_engine -EXPORT_SYMBOL_GPL vmlinux 0xe00aaae4 syscon_regmap_lookup_by_phandle_args -EXPORT_SYMBOL_GPL vmlinux 0xe01160c8 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0xe01f4cb0 irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0xe024a8fa skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xe0410e71 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xe04c6076 peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -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 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 0xe0db33e4 apply_to_existing_page_range -EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op -EXPORT_SYMBOL_GPL vmlinux 0xe0efa9e1 inet6_cleanup_sock -EXPORT_SYMBOL_GPL vmlinux 0xe0f74b50 xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0xe10746fe lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe118c18a gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0xe14346f9 make_device_exclusive_range -EXPORT_SYMBOL_GPL vmlinux 0xe15dd8f5 dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -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 0xe1c2a160 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx -EXPORT_SYMBOL_GPL vmlinux 0xe1e2e8d9 ip6_route_output_flags -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 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 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 0xe29f20bf is_virtio_device -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 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe2d14dc8 meson_pmx_get_groups -EXPORT_SYMBOL_GPL vmlinux 0xe2e88759 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0xe2fea6d6 crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0xe3008da5 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0xe3067403 ata_bmdma_error_handler -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 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 0xe3840e18 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xe393244b tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf -EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit -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 0xe3dfb837 devm_spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xe3f32662 sdio_signal_irq -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 0xe4248980 cper_estatus_print -EXPORT_SYMBOL_GPL vmlinux 0xe42b9299 bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe443da5e pci_disable_pri -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 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 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 0xe51d4ce5 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0xe52272b3 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xe546e5fb xdp_rxq_info_is_reg -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 0xe56324b3 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0xe57cf3ff regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0xe57e8131 acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe591fde1 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0xe5968cf8 __traceiter_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xe59a34e2 kvm_make_all_cpus_request -EXPORT_SYMBOL_GPL vmlinux 0xe5a925d3 zynqmp_pm_init_finalize -EXPORT_SYMBOL_GPL vmlinux 0xe5aa69cf pwm_free -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 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 0xe5dde7b7 ti_sci_inta_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0xe5eb6e71 icmp_build_probe -EXPORT_SYMBOL_GPL vmlinux 0xe5ee6750 devm_clk_hw_register_fixed_factor -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 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 0xe63892c0 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xe639fe8d devm_of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0xe63ca854 devlink_port_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe64fed01 kernfs_notify -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 0xe690abeb fsl_mc_get_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xe691eaad usb_of_get_interface_node -EXPORT_SYMBOL_GPL vmlinux 0xe697b0fd nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0xe6a1ed06 tpm_calc_ordinal_duration -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 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 0xe7043b0e misc_cg_uncharge -EXPORT_SYMBOL_GPL vmlinux 0xe710fe30 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xe7294702 __traceiter_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0xe74e9f4d skb_copy_ubufs -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 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 0xe7652f01 bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0xe7664c0f sched_trace_rq_nr_running -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -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 0xe7b3172e tegra_bpmp_get -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 0xe7e5ecf7 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0xe7e8126b meson_pinctrl_probe -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 0xe820aea1 dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xe824c6b1 gnttab_pages_set_private -EXPORT_SYMBOL_GPL vmlinux 0xe824d385 skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0xe82e4cac usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xe8362401 devm_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0xe8441568 ata_sff_qc_issue -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 0xe86103aa dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe86b22de power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0xe871695c devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xe88074ce dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0xe8874a05 irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xe89639ab unregister_trace_event -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 0xe8a64a10 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0xe8af5502 xfrm_state_mtu -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 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 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 0xe92523bb irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xe937a183 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe93d12cd raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -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 0xe98f55f2 arm_smccc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xe9a0c71c fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0xe9a1647b evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0xe9bc5ec0 tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0xe9c3abdb ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0xe9c3c46a regulator_set_voltage_sel_pickable_regmap -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 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 0xea090367 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea1c9b5f device_add -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 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 0xea87f9d6 pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0xeaa8d1e4 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0xeab6c73d of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0xeacff115 trace_event_buffer_reserve -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 0xeae87538 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xeaeb2980 ata_ncq_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0xeaed2ad2 devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0xeaf8469d hv_do_fast_hypercall8 -EXPORT_SYMBOL_GPL vmlinux 0xeb23f8b4 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xeb2ffa84 uart_try_toggle_sysrq -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 0xeb763b2e clk_regmap_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xeb78b1ed unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xeb88eb19 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xeb97b990 clk_regmap_gate_ops -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 0xebd59ad2 __traceiter_pelt_thermal_tp -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 0xec3006a0 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0xec319ee4 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xec32c9e0 iopf_queue_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xec41dfff bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0xec4f6605 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask -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 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 0xecb300f7 receive_fd -EXPORT_SYMBOL_GPL vmlinux 0xecb671fc tegra210_sata_pll_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xecd9122c devlink_params_publish -EXPORT_SYMBOL_GPL vmlinux 0xed1c27bf ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0xed387d96 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID -EXPORT_SYMBOL_GPL vmlinux 0xed5e8f6a rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0xed74a54d pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xed87e731 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0xed8829fd __traceiter_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xed8be743 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xed920ea5 __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xed95adc6 devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0xed98eda3 bio_end_io_acct_remapped -EXPORT_SYMBOL_GPL vmlinux 0xed9d09c0 bpf_prog_alloc -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 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 0xee30e81e bpf_trace_run10 -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 0xee518148 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xee7af1c2 dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0xee7de75f irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xee9a8d67 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0xee9d5b6f sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xee9e829b ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0xeea8a8cd __skb_tstamp_tx -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 -EXPORT_SYMBOL_GPL vmlinux 0xeed6eca2 transport_class_unregister -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 0xef13f920 serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xef458ec4 rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xef64e392 tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0xef670ea9 tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef6ee0c9 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance -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 0xefc5a862 dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0xefe6fdd5 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0xefe8c3f7 put_pid -EXPORT_SYMBOL_GPL vmlinux 0xefea749e acpi_dev_get_dma_resources -EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xeff4dfde scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0xeff767e2 mbox_client_peek_data -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 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 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 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 0xf0d820a4 devfreq_cooling_unregister -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 0xf0fa2ee6 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0xf10a2e6a fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0xf10e47f8 fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0xf1174a49 rpi_firmware_get -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 0xf160e226 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0xf16c16b4 fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0xf175d976 skcipher_alloc_instance_simple -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 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 0xf1b0d158 crypto_unregister_alg -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 0xf1ffcaa8 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xf2066464 lwtunnel_output -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 0xf2230a72 crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0xf2264a62 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0xf2418972 pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf241e46f topology_set_thermal_pressure -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 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf299dc5f subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xf2a92529 tpm_pcr_extend -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 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 -EXPORT_SYMBOL_GPL vmlinux 0xf310a2d7 usb_hcd_giveback_urb -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 0xf3215615 tcp_register_ulp -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 0xf34dfd8a fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf362612e fixed_phy_set_link_update -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 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 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0xf3b9ca97 devm_add_action -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 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 0xf406c2a6 crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0xf40eb5fe validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0xf4135a87 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xf42ec34e bgmac_enet_resume -EXPORT_SYMBOL_GPL vmlinux 0xf43b2b31 __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf4450bf2 mmc_send_abort_tuning -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 0xf46c0d51 sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit -EXPORT_SYMBOL_GPL vmlinux 0xf48a2ef5 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0xf48b151b perf_event_create_kernel_counter -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 0xf4c7b6c7 __traceiter_neigh_event_send_done -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 0xf5001266 __pm_runtime_suspend -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 0xf51ebf37 of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0xf521df67 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0xf52b44d7 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xf53b1735 crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0xf548988d put_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf54e0564 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xf550f117 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf557ba76 gov_attr_set_put -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 0xf5b26071 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xf5c239a6 mtk_pinconf_bias_set -EXPORT_SYMBOL_GPL vmlinux 0xf5cb68ab devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0xf5d3de00 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0xf5e0d00e ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf6049776 scsi_register_device_handler -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 0xf644b983 rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xf645ed3c phy_set_speed -EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xf661ed28 __traceiter_sched_util_est_cfs_tp -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 0xf6a28554 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xf6bb8545 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xf6c55298 preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6ca297f __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0xf6d373fd regulator_disable_deferred -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 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 0xf75bfc84 mtk_pinconf_bias_get_rev1 -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 0xf79ef967 kthread_queue_delayed_work -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 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 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 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 0xf84fd302 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset -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 0xf89dbdd5 devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0xf8a740e2 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xf8b11e06 debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xf8d0ffb7 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0xf8ebdf9b kick_process -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fdefaf regulator_get_error_flags -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 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 0xf93ab204 tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0xf93bbd52 nfs_ssc_register -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 0xf9621267 acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version -EXPORT_SYMBOL_GPL vmlinux 0xf987e04e input_class -EXPORT_SYMBOL_GPL vmlinux 0xf9988806 xhci_check_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a24fa6 call_switchdev_blocking_notifiers -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 0xfa0395c8 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0xfa07b745 devm_clk_hw_get_clk -EXPORT_SYMBOL_GPL vmlinux 0xfa0c0a3f sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -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 0xfa666974 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0xfa848e9e crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0xfa86b9cc phy_package_leave -EXPORT_SYMBOL_GPL vmlinux 0xfa905258 serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xfa9aa2d1 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0xfa9debd6 devlink_dpipe_table_resource_set -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 0xfac8ee82 blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0xface318a dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -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 0xfaf41148 pin_get_name -EXPORT_SYMBOL_GPL vmlinux 0xfb05bb00 devlink_params_register -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 0xfb49761f tcp_done -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 0xfb76cb4a devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0xfb79d99f pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0xfb7ffd2a set_cpus_allowed_ptr -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 0xfbcdb203 bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0xfbcfa0e0 bio_associate_blkg -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 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 0xfc087b31 udp_abort -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 0xfc201b66 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xfc394eb9 ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc498e24 dst_blackhole_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xfc50de97 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xfc5b83ee amba_apb_device_add -EXPORT_SYMBOL_GPL vmlinux 0xfc746b3c gnttab_page_cache_shrink -EXPORT_SYMBOL_GPL vmlinux 0xfc7972a4 fib_rules_lookup -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 0xfcb34ada devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0xfcb9d621 sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed -EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfce45255 mmc_regulator_get_supply -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 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 0xfd2da355 regulator_desc_list_voltage_linear -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 0xfd5081d7 led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0xfd5362c9 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xfd5a314c tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable -EXPORT_SYMBOL_GPL vmlinux 0xfd77fb50 uprobe_register -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 0xfda489e1 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -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 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 0xfe1a7a7b mpi_point_release -EXPORT_SYMBOL_GPL vmlinux 0xfe2e7303 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfe3aa3fa fib6_rule_default -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 0xfe6f5209 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xfe77152c crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page -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 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 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff3d1c1c vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0xff3dffa3 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff4a590f __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0xff4ea07e sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0xff56162a rdev_get_drvdata -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 0xff8f05c6 irq_chip_eoi_parent -EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffaf90fd param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xffc822f9 __traceiter_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xffe38628 switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xffeda1b3 skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0xfff0c870 get_device -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 -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x071f60d0 __adis_update_bits_base drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x0af02596 devm_adis_probe_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x24679270 adis_init drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x24d12a23 adis_single_conversion drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x384b1cdc adis_update_scan_mode drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x4889dde3 __adis_check_status drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x5eac1990 __adis_read_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x9e6d0f29 __adis_initial_startup drivers/iio/imu/adis_lib -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 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 -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 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 -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 0x14bd6e0d nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x2f98a687 nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x91e2eabf nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xa48c7799 nvme_execute_passthru_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xd70e9bd8 nvme_command_effects 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 -PMBUS EXPORT_SYMBOL_GPL 0x56293067 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x58d77e4c pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x6292fcc1 pmbus_set_update drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x6b5acd68 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x958eefc5 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x973e164a pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x9b2bd3ee pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xab8d330e pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xcac532d3 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xcd4b488c pmbus_write_byte drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xd68e1879 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xdef862ff pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xe11d11bc pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xe53e7ef4 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xe7f5280f pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xf5f4534d pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -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 -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x5af438eb sdw_intel_enable_irq 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 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 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 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 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 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 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 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 reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/arm64/generic-64k +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/arm64/generic-64k @@ -1,26510 +0,0 @@ -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 -CXL EXPORT_SYMBOL_GPL 0x882c8dd4 cxl_driver_unregister drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x88f04f98 is_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8a76a988 cxl_add_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x92a497b5 cxl_probe_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9695d267 cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa229145d devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb69d3013 devm_cxl_add_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xbd7c70ba is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc756c9b7 cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd4a7526c cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd5319361 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe23a79ae devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf35956c5 __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf5e0bcb0 devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfc6ea3f0 to_cxl_nvdimm drivers/cxl/core/cxl_core -EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x177c07c7 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 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/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/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 -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 0x35677248 ipmi_smi_watcher_register -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 0x5aa3658d ipmi_add_smi -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 0xcc71f3ae ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xefd62f32 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x038543e6 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x0df63620 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x56c772c0 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xfe6c6553 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x8b8f8edc xillybus_cleanup_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x8fb95834 xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x9530353d xillybus_find_inode -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x1bf6c116 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x4888c6c9 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x58146b96 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0x25c98843 clk_alpha_pll_zonda_ops -EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xa03f8920 clk_alpha_pll_postdiv_lucid_5lpe_ops -EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xd89a02cf clk_alpha_pll_fixed_lucid_5lpe_ops -EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xed46e5cc clk_alpha_pll_lucid_5lpe_ops -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x2fd6309d atmel_i2c_enqueue -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x9431321b atmel_i2c_send_receive -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 0x17572340 caam_congested -EXPORT_SYMBOL drivers/crypto/caam/caam 0x17bd8e41 caam_qi_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam 0x350b5bda caam_drv_ctx_init -EXPORT_SYMBOL drivers/crypto/caam/caam 0x36359191 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 0xc0eaa792 qi_cache_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam 0xdbed5fe1 caam_drv_ctx_update -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x1453e73f gen_split_key -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x21bc7a2a caam_jr_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x763bf2eb caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xb094a91c caam_jr_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xd33f437e 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 -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 0x18958a6d dpaa2_caam_enqueue -EXPORT_SYMBOL drivers/crypto/caam/error 0x53d0fc97 caam_ptr_sz -EXPORT_SYMBOL drivers/crypto/caam/error 0x86f22ce5 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 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 -EXPORT_SYMBOL drivers/firewire/firewire-core 0x11c73375 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x284bcbff fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2ed2a3aa fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x32ddec26 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0x33327236 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x37bafa7f fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x39f8aede fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x51dedaba fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0x651b22bd fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x653566c5 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x771770ae fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7881eab2 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x847fdf3c fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x85dae7c0 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9f2baadd fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa08728f5 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb7b7a686 fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0xba499d77 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbfc6d2f3 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc083765d fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd3e05ccd fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd557ae23 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe0654b93 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe9639261 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf6be99cb fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firmware/broadcom/tee_bnxt_fw 0x57b73b33 tee_bnxt_fw_load -EXPORT_SYMBOL drivers/firmware/broadcom/tee_bnxt_fw 0xdfaff93c tee_bnxt_copy_coredump -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x0625d5ef imx_dsp_request_channel -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x6ad9544b imx_dsp_free_channel -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xfa894f2f imx_dsp_ring_doorbell -EXPORT_SYMBOL drivers/fpga/dfl 0xd78d299e __dfl_driver_register -EXPORT_SYMBOL drivers/fpga/dfl 0xe5377fdd dfl_driver_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x006351ea drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00738a74 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00c1ccb3 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0305b4e8 drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05c0a72b drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b386a drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07a35169 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07aa597a drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07ad44b1 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08b6f2cd drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09685d1b drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09f33bb5 drm_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a2c5731 drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a97af44 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ba6a8cd drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0be57a78 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c7905bc drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d5ae900 drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7dacb2 drm_atomic_bridge_chain_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f407877 drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd054ec of_drm_find_panel -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 0x115e6d23 drm_gtf_mode -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 0x1292355d drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12db0c95 drm_connector_attach_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13144ca3 drm_plane_get_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x137c9282 drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0x143dca0f drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15114481 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x165ecaee drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x170b1c2e drm_atomic_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17354281 __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1746a5f7 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18a25d1a drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18f558fd drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x191010bb drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19d0f9c3 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b7f20eb drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b95006c drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c633090 drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d5f67d5 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d5fdc48 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d3b181 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d541eb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22c1830e drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22d1ec51 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x232ecd22 of_drm_get_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23e65a14 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f654d8 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 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 0x256087a0 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x258eeb8c drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26297062 drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27fdb59a drm_gem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2866eefb drm_prime_sg_to_page_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29ff2936 drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c9b5666 drm_atomic_set_fence_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d941e6c drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e601abb drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ee0babe drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fa4a77b drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3111494f drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x315ca4f5 drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32df83bf drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x331c00f8 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33d9f715 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33e4ef03 __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0x362e15f3 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36853f8a drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37064408 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37b9c08a drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38960a5b drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38d4408f drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3902b292 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x399e0381 drm_hdmi_avi_infoframe_bars -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39b3393d drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39c84e25 drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a78c156 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a87dcba drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a8cfc83 drm_client_modeset_commit_locked -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 0x3e50b109 drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e81bdec __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40e6b13f drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x413e6bf9 drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0x415bef5f drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x417ce151 drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42ccd60e drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42d9bbd5 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42ebb66a drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x434cb8a7 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4392b7a6 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43f3d957 drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x444bf0ed drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a2cadb drm_prime_sg_to_dma_addr_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44cd002b drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x450046be drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45a077d2 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46376bf7 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4644d36b drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x473c4a2a drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x486f151f drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48afd3de drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x494ed953 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49870c89 drmm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49baf43d drm_connector_attach_dp_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49f5c7d9 drm_atomic_set_fb_for_plane -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 0x4b3d766c drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c404902 drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c776d3b drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c7e2ef7 drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c8a5241 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e28969a drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4eba192c drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4eecc927 drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f876a1e drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fb79668 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ff75d12 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50a3290f drm_vblank_work_schedule -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50d45b6d drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52138ee8 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x524a0f08 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52d3d9d0 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x530ece21 drm_gem_cma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5347ef89 drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x536621c5 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53aed2b0 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5542443b drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55ad79e6 drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56483dcd drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56ad38ed drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56f69119 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5706427c drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5752b35d drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5787d19c drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58741f97 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58c1aa77 drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x593c77ac drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59a49558 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a59f0bc drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a7e5860 drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5abd1417 drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd8b3cb drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d159962 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d2b6486 drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d9abace drm_connector_set_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e9fc7ec drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ff59284 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ff62e86 drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x618845e8 devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0x622885ab __drmm_add_action_or_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x627c6e76 drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62ac66aa drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62f0dae2 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63968792 drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63caf41f drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64b397b6 drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6593ff07 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65f68eff drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66631a8f drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x667a19ac drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6848a9aa drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x696a8d27 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69d3656d drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ab73054 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b92ef00 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cadbbb6 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cb2dc71 __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e383e28 drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e3aee5e drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6efeb29b drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f8f6e60 drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71e2add6 drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x735878f7 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x741deffc drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75473800 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75fa34b6 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x763f6316 drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76562a2c drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7694d87a drm_bridge_chain_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76d03fc2 drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7726807e drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78205072 drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7923e6da drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a098643 drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b5319e3 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b5c7947 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b763e55 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b85f7de drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cd924bb drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ce33a69 drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e9ae7e7 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f614ab8 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x803f4410 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80c614c2 drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80d09afa drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x810e343c drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8195e5a3 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82a7ca3e drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82b01f6c drm_atomic_get_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x839b9f54 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x842dd90c drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x851b28bf drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85ae5bb6 drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86526990 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8767eb7e drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87e64d29 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88410089 drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8847e04a drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88ed25fd drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88f2bdda drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8944bf41 drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89e09a35 drm_panel_of_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bf38872 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c0e96d9 drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c4a4ea9 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cfa8735 drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d0fcd79 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d2bb849 drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8da9aea0 drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e00fd94 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e1f0c28 __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e262cea drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e8dab94 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e9bc088 drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ee969a4 drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eed4155 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f2b6e4a drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8feee4ce drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90a49df4 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91e1ffe1 drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9241d9b2 drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92ec29dc drmm_kfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92ee8a9d drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f96c10 drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9313cd0c drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x932d68de drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93669390 drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x947c1c18 drm_gem_cma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9533e5fc drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x960b3e03 drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96680c50 drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96c2ce31 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9940d712 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9961431a drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99d65229 drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a41cab8 drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a89fe28 drm_add_override_edid_modes -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 0x9cacfdc8 drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d569c49 drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d630421 drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ddba29b drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9de535a7 drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e7c22cb drm_crtc_vblank_helper_get_vblank_timestamp_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ebba417 drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f44c20c drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f5dd508 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f61c193 drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f6230c8 drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0665289 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1ac505d drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa29f0483 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa36de9ce drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3f51013 drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4a8399d drm_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4ceced5 drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4e888d0 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5b11258 drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6890b6b drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6a9e60f drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7241fc9 drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa73fe7e9 drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa769b576 drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa89b51eb drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab5d231e drm_crtc_vblank_helper_get_vblank_timestamp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac602a97 drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac8fe1e9 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacb724e0 drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad1e2d51 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0xada597b2 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadb5eaad drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae48dcca drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaea0c415 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaecc915e drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaee856da drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf0f84e9 drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf21b1be drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xafb68b3b drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaffb1f3f drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb024e312 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 0xb0b1d3aa drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b73fcd drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1a92076 drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2d4179a drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb34c7f8e of_drm_find_bridge -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 0xb410b8ba drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5b11446 drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5f9f64b drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6bd1672 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7f85122 drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8fe6583 __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9bd1cbb drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba4a06b6 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbaa952d8 drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd477f9f drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf7fea58 drm_hdmi_avi_infoframe_colorspace -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0782651 drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc230c1a1 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc24032d5 drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2533355 drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc254d5ad drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc27bc953 drm_connector_attach_hdr_output_metadata_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3c93e82 drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6323239 drm_flip_work_cleanup -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 0xc87d6690 drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9681f09 drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9bf741b drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca599e71 __drmm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb900f5e drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccb8e802 drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccbb0c07 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd92c27c drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce14c869 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf700889 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf85ef42 drm_dev_has_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfcfc6cc drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0d56fe2 drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0e35d3f drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd167f2c5 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2fe5218 drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3060c30 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd30ea00e drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd355c445 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd36e213d drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4311778 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd445c946 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd53557eb drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd651c363 drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd69dc92d drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd837a987 drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9f60307 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda627c20 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdacf4445 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc69ec0b drm_of_crtc_port_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd1996ac drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd671fc8 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd776e6c drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde3ebb46 drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde41ba6a drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf354f76 drm_panel_prepare -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 0xe101d73f drm_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1117c82 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1505b6c drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe282c561 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3eb1183 drm_client_modeset_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe448e75a drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe54e2d27 drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe55fe13e drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe596f815 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5cade0f drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe63200ea drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe678bc30 drm_atomic_get_old_connector_for_encoder -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 0xe921ea1d drm_gem_fence_array_add_implicit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9d1e91a drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xebb35177 drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0xebd1a3f6 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec89fe1e drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed4e67f2 drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed8236f1 drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xedb30f69 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xedd80904 drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee23aa51 drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee93b350 drm_bridge_chain_disable -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 0xf3e743b3 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf52ada35 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6b0cdbb drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6d22f2b drm_crtc_commit_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf73bdaf7 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8e17ea9 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9542269 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa03f5c1 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb402133 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb7f1d5d drm_gem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbb86422 drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbe549dc drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfca87801 drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd2e8703 drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd78ad3a drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd9f7629 drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb8baa9 drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff371b50 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff63d598 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff82716c drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00998e42 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00ce407c drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01a7071d drm_dp_atomic_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01d510db drm_dp_pcon_pps_override_param -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0379229b drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03a75384 drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06071395 __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06154126 drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x068e74c4 drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x077aba69 __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08001452 drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0862a73a drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08a83d72 drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09bde31d drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a694471 drm_dp_pcon_frl_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a7daa82 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a919efe drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c510190 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c9886f0 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12ce9255 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x133d36ae __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13e56192 drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1402dca9 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x146e947c drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14f0f3ea drm_dp_pcon_frl_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15f6a309 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1675e03e drm_atomic_helper_plane_duplicate_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 0x195039a6 __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ab88ffb __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1bb7f286 drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c10788b drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1db03775 drm_dp_read_sink_count_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x200c191b drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x227515e4 drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x237e3725 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23961837 drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x251f099c drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25c94eab drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25e07b93 drm_atomic_helper_plane_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 0x297335fe drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a396c36 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b114b05 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c431fc3 drm_gem_simple_kms_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c78d944 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d153f9b drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ee0d929 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 0x310aca09 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32ff7f1e drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x330c73f3 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x333b423a drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x345cdd31 drm_dp_lttpr_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34603351 drm_dp_set_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3537c4d2 __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36a43ed9 drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x375e3518 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x395a5205 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3aaad539 drm_dp_set_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ae309bf drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b2d2ceb drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b6739ad drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bc7014e drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3be21fee drm_dp_downstream_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c63e50c drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c6864e1 drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e1a46d8 drm_dp_read_sink_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e4235b8 devm_drm_of_get_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fbdd2d3 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x400e8066 drm_dp_vsc_sdp_log -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x422c68a8 drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44970832 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44a2fefe drm_dp_read_dpcd_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44d3f992 __drmm_simple_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44eb07c3 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45a4f623 drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4745aa24 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x476ee08c drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47d979fd drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4831ee6a drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x495bbc1f drm_dp_send_query_stream_enc_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ab56135 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ac26ef7 __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ae0288d drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4dd1bb5b __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e3a687b drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f536bbd drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f7d81fd drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fde3d17 drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51b1efe4 __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5312e3dd drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53436b0e drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5371c44b drm_gem_reset_shadow_plane -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 0x5418ea67 drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54413adb devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56a663e9 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x570c0267 drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x585f30ba drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58608406 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59553303 drm_atomic_helper_commit_tail_rpm -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 0x5a18f71f drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d0dd804 drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ea35e8f drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5eaa0c60 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f6b5e18 drm_dp_pcon_pps_default -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61763780 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61970b01 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x624ca126 drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62dab887 __drm_atomic_helper_crtc_reset -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 0x68d8dce7 drm_dp_downstream_is_tmds -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x699d3d44 drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a5bb08c drm_dp_find_vcpi_slots -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 0x6bba4c97 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6dbb6d7b drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e3d548e drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x708416c6 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71047f54 drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71bd7a1c drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71d80617 drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x727c3359 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7297485e 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 0x76785b2a drm_edp_backlight_set_level -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 0x782dd41e drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79a2f226 drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae669d0 drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b367adb drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b6d862f drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d2de37a drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d84dc6b drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ef0717b drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80b21065 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x829b6048 drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82e9dceb drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84056ed2 drm_dp_pcon_hdmi_frl_link_error_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84215af8 drm_gem_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84dfcc18 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x864c470c drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8778026f drm_atomic_helper_disable_all -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 0x8ac4cea7 drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8aff94cd drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b47b341 drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bad6202 drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bc21dd7 drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c12fb9d drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ccd94c5 drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d55cc29 drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8da4fea7 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8df58c8e drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fb209be drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x902bb8dc drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9030ac3c drm_edp_backlight_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90b3e816 drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91cd179c drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93474fb1 drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93488118 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x941c594d drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x946be0e3 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94a9f686 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95683684 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9810d333 drm_dp_read_downstream_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99b6df4a drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a891c32 drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9aaa8b70 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ac0b4f6 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ac0cf95 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9be33a8b drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bf5ba0e drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c0165d5 drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e15bd62 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e4aaebc drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa16810d6 drm_gem_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3fc5a09 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4676c74 drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa50c10a7 __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa59ec978 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa71563be drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7b814da drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa843606e drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9a9f34d drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9d2c1d5 drm_dp_pcon_pps_override_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabb58350 drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabe115bd drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac6f2504 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf77f86b drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0650135 drm_gem_fb_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2da8681 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb45f2f15 drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4c844e8 __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb54be022 drm_dp_remote_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5a00d4b drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb64570a4 drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7f1d15a drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7f7889c __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7fce953 drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8284257 drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8ac6d38 drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8c7777e drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9225558 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba9f99a4 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb51fc62 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc02c27f drm_dp_pcon_convert_rgb_to_ycbcr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbca045ec drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdf11298 drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbebf170d drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf1fa7f1 drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfb4b7cf drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfbb4c4d drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfd3eabf drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc06562c8 drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0836602 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc13b7aa8 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc19598ee drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1be4fc4 drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3b75c0c drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4093575 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5bc4272 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79ecffb drm_dp_downstream_is_type -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7aa66bd drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc85e28e8 drm_fb_xrgb8888_to_rgb565_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca1b6515 drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca4c0a1d drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbe9d802 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd70e987 drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1a90526 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5a04ae8 drm_atomic_helper_bridge_propagate_bus_fmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5d74f22 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7ff0d91 drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd841b4f9 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8b8783c drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9b43f6d drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda244457 drm_dp_mst_atomic_enable_dsc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda64fdab drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd3f8d96 drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xded283ba drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf8864b1 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfb6cc87 drm_gem_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfde036f drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdff5b9ad drm_dp_get_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0280e01 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0653c9a drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0de3e5e drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe34db1fe drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe370fb5f drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3723945 drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe383203e devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4c359f2 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe533ef6c __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe56bd6bd drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7de322f drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe81fa847 drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9e888d5 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea74a8ec drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb733396 drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec970398 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee8ac275 drm_panel_dp_aux_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefb6f362 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf13dae10 drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf35398fb drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4215522 drm_fb_helper_prepare -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 0xf720fefd drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf759644d drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7812ff8 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf80fe19d drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbc52104 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbf13449 drm_gem_simple_kms_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd9a9a1c drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe614be3 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x007923da mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x26c10bb9 mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2f369a26 mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x37525ee6 mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3a864694 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3c940302 mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5108c50f mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x53d4eee9 mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5c069ead mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5ffe8d08 mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7a3fd27d mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8856a491 mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8bc2b009 mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9191088a mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9ce762ed mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa9c60e87 mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbcf6dcb1 mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x21659ed6 drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x3d80791f drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x4afd84e7 drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x78033f9d drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x8de8577c drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0cff7173 drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0dc5ec47 drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1bcba0df drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2b34d408 drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x337aaa4b drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x57e63203 drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x72ed2c62 drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x81f2be57 drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8afcb8cd drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9cd897e4 drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa7c462c0 drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb253f897 drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb6e88488 drm_gem_vram_put -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 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 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 0x9673c1bf drm_sched_entity_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 0xf4e8cec4 drm_sched_entity_flush -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 -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x547efd6b sun4i_frontend_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x8ceded4a sun4i_frontend_exit -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 0xaa517e65 sun4i_frontend_update_buffer -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xe13164ef sun4i_frontend_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x15f2f3db sun4i_tcon_enable_vblank -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x322cb746 sun4i_rgb_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x3ed4d2e1 sun4i_lvds_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x5d5acd16 sun4i_dclk_create -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6c10c7a7 sun4i_tcon_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xb603139f sun4i_dclk_free -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xf3c08c45 sun4i_tcon_mode_set -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x350e5dcd sun8i_tcon_top_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x55f115df sun8i_tcon_top_de_config -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x7750b59b sun8i_tcon_top_set_hdmi_src -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0506abba ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06584025 ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06d364a7 ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0b6abcaa ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x143f5b33 ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x15d1dd31 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x17ddcba1 ttm_pool_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2d6c4963 ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ecf6a19 ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ecfa950 ttm_global_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x30163ab0 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x32fcf7bc ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3b6f3928 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4616f5df ttm_tt_destroy_common -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x478d747b ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x49e338aa ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4cf16ceb ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4fd9f9fe ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x53886042 ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x54437277 ttm_range_man_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a28ed67 ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5c4ba6e0 ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x600b6fb6 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61268ba3 ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a86c1b1 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6f9d1976 ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x754c20a5 ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c311c89 ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c4622d0 ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9e3ee0a3 ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa10e91d8 ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa3d3f51c ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa455e603 ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5ac23d8 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb076f0d0 ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb3680a45 ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc1529eb6 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc8839971 ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc06bb81 ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd3d6bfae ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd407aae ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe3c67472 ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe4237849 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe641b31d ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe9fb70cd ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xece07f29 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xee59711b ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf03f94e3 ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf1b996a1 ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5ec966a ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5f2cede ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfb2ec9aa ttm_range_man_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xff1fd0a6 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x3368a61f ttm_mem_global_alloc -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 0x64f89090 ttm_mem_glob -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0xc8b73ea0 ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x002fe98f host1x_syncpt_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0f7093aa host1x_job_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1262e1c9 host1x_syncpt_get_by_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x23ade6cd host1x_syncpt_read_min -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x328e5700 host1x_syncpt_get_base -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x44f7f07c host1x_syncpt_read_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x47159f8e host1x_channel_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x498bafa2 host1x_client_suspend -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4a95f9c1 host1x_client_resume -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 0x527007fc tegra_mipi_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x528dbae4 host1x_job_pin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x53c53ee7 __host1x_client_register -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x544409bf host1x_syncpt_wait -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 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 -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x78bc8d82 host1x_syncpt_incr -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7c7ffc5f host1x_syncpt_read -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8b213746 host1x_syncpt_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8c293913 host1x_job_submit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8c47d646 host1x_channel_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8e64e019 host1x_device_init -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 -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc0d7b62a host1x_syncpt_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc2a5b135 host1x_job_add_gather -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc5a7638c __host1x_client_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc63a06ff host1x_driver_register_full -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd3b76bff host1x_client_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe8e2b76e host1x_syncpt_release_vblank_reservation -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf4fa6904 host1x_client_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8f02ca8 host1x_job_alloc -EXPORT_SYMBOL drivers/hid/hid 0xd7fd4407 hid_bus_type -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x713c8d60 vmbus_sendpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xf23d496d vmbus_recvpacket -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x5aa2d199 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 0x12dad8af i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x5085494a i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xe9e22158 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x15bbae10 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xba6f8822 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xd0b213bb amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x72a71739 bma400_regmap_config -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x743bd8bd bma400_remove -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xc6633ab2 bma400_probe -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x2da6ce26 kxsd9_dev_pm_ops -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xb8081571 kxsd9_common_remove -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xdc2321f0 kxsd9_common_probe -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0bdb6231 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x16bd53e8 mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1d00a86c mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1d8bfe56 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x282c2c87 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x33f42eb4 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x68450391 mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x89e99aac mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa03f39c2 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xae306d32 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbfa4e6b0 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc8dbfa97 mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcc0203f8 mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd27c2a64 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd45ad115 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xefe0365a mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x2dc1bd4b st_accel_get_settings -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x698d36d6 st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x8b60102a st_accel_common_probe -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x12402a0a qcom_vadc_scale -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x47f699dd qcom_adc5_decimation_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x4e64cdb9 qcom_adc5_hw_settle_time_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x53546ecd qcom_adc5_avg_samples_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xc61e7a34 qcom_adc5_prescaling_from_dt -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x9f17ab35 iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xc424774f iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x10989ae4 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x3dccb285 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0xcb6914f4 bme680_regmap_config -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x7968cc3e scd30_resume -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xafa83f7e scd30_probe -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xe518ee21 scd30_suspend -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x0a712af6 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x352a656a ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x405dcf85 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x60d16779 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x67dc3566 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x7a214b14 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x96c11f68 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb1005ff6 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xced4e09e ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x0c8f1490 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x20049a4b ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x71648001 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x93d87ba3 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xa5a6dc43 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x687337f8 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x72e4027a ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xc1ad10c5 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0b12fc1d st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1b4630cf st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2978d0c0 st_sensors_verify_id -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x29ddb056 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x37a5a932 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4c2fd831 st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x62fe8c0b st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7aebb476 st_sensors_dev_name_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x827abdca st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8b5f83b0 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa10a689c st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb380af71 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc74aec42 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc94a481a st_sensors_get_settings_index -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd355dc8f st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd51dc875 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd6d30759 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe92221a3 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x56b969fa st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xc104d6b3 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x93965802 mpu3050_common_probe -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x9c57e74f mpu3050_common_remove -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xbee6a141 mpu3050_dev_pm_ops -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x06874451 st_gyro_get_settings -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x4b57c63f st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x8ec504db st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x61e7ec47 hts221_pm_ops -EXPORT_SYMBOL drivers/iio/humidity/hts221 0xbd7bb8b0 hts221_probe -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x8694f9d3 bmi160_regmap_config -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x36a0fe3b fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x3acacd95 st_lsm6dsx_probe -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x58883ca1 st_lsm6dsx_pm_ops -EXPORT_SYMBOL drivers/iio/industrialio 0x17613106 __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0x254550ee __iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0x292e4913 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x5af0619a iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x5af7db54 iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x5f20ca20 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x6220a138 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x91cc36dd iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x950f9a3b iio_device_get_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x9740f5e6 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xa829b958 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xac4d6a93 iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0xb8d5d330 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xbfbbcc3f iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0xc0c2e904 iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0xce49b70f iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0xd2a91ca2 iio_get_time_res -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe0f94de0 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0xee410bd5 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0xf0b8554c iio_device_set_clock -EXPORT_SYMBOL drivers/iio/industrialio 0xf1a1bcdc iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0xf1f24c2a iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0xfc2bb48b iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x92304880 iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x05a1117a iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x33c97ea1 iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x9852804b iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xbdd92254 iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x32227c0f iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x465b9d89 iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc72ddd7e iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xf23155f4 iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x0d5986cb iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x9785f523 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x7d76acd8 st_uvis25_probe -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xbd207ecd st_uvis25_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x13bb446a bmc150_magn_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x4c393592 bmc150_magn_remove -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x8b7689f5 bmc150_magn_regmap_config -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x9bd0d835 bmc150_magn_probe -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x17f0b5bc hmc5843_common_resume -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x869c1786 hmc5843_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x90a3526d hmc5843_common_suspend -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xcd3ce1c0 hmc5843_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x97738ff0 st_magn_get_settings -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xcfe833a9 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xf51dfb18 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x020fcc4f bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x20315d24 bmp180_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x9fdc796c bmp280_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xcab78046 bmp280_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x4e8042d7 ms5611_remove -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 0x093a0082 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x134f9c55 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2330957f ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2ba01b7f ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2c04fb8a ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3d241987 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x553c5ed4 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5758385d ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x576c6be1 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x94deba59 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x968b4ac6 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x96d565fb ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd288d6ca ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xde24b58b ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfa95d5ec ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00649f39 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x043d17f5 rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x043da6f2 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05979ea5 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0827b0c7 ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a836912 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0afc40b4 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b7eb84f ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0cb7aaba rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0effd42f ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1068dbc4 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11ac9a6b rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11ad1014 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13c72e58 ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16100722 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1640b743 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x177ea7b5 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17b67add ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a1d0448 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1abc19fc ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c325987 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f50a7a0 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f652278 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2025aa9c ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x219c0d55 ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x223cef9a ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25663170 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28f20aaa rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29efa12f rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a25247c ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c7378e5 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2df08a71 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e61e9d1 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f4a1fc7 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3008e2c0 ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x302e3709 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33d2c389 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3534fab1 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x356fa096 ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35f64f7a ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35f8665f ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36508743 ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3799a370 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37dbbecc roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37dd41f0 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39ff9c13 rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a50e098 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b779f28 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c1eac26 ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c60b2ef rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f7f0824 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4142c7e5 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 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x466c3432 rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46d6e9f1 rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x478bf5fc rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47d650a7 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x497cde08 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4aa8b0a5 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4af9dbdb ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b3a5465 rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b5d0e00 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cae5faf ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cb707d2 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4db65346 ibdev_warn -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 0x50b8183e rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52977b55 rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52d3dce1 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5358ff49 rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5485d871 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54d8a32d ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x561d861b rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56d56d4c ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58722b17 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59b6cb0e ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59d9166a rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d0e81e6 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60b8c949 ib_modify_device -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 0x65144011 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x656f91b2 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x673b9b40 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69a6b8f2 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b6780a0 rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e4642a8 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x707a3f89 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7269467d ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74e66890 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78df8aab ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a8eb6c0 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bf7b0fe rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c34fa1e ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c37f971 ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7dde4db8 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ef7b8f2 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f9d556c ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8275dbed rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83b3da88 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87205f8d rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89189bcf rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b355ba8 __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d51e2ba ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f51125b ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fd5c099 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92961586 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92e5c521 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x954909d3 rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x956e0a37 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95c3e0ef rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95f2a14f ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96eaae6a ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97cf7b5e ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x982d9aea rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a24699b rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c2618f4 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa18e663f rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa558aa5c ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6480c6a ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa65a152e ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7b21d02 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9298e81 ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa98b4730 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa25b26e ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa2f97aa ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac0c099e ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac0da7e6 ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaca02910 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaca45fb2 rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb01ca2a4 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0313cfd rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb08cc1a6 rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb171a617 _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb364cf4f ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3923763 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4d371b8 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5076183 ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb65766d0 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb75d9bc4 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7962148 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7fc3c7a rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba57048e ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbab0865d rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcd44d5b ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcd7c260 rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe082bd0 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe9d0319 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0cce2e3 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0e7163c ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1db1d83 rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc31311c9 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc399952c ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3b27ff9 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc79a8405 ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca470483 ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbc9ecaa ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc01df0c ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcec005b2 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcffd9dd1 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd014a060 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1c5eece rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd34c8ef0 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3752e09 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4615500 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4d3f138 ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6fad907 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd82500dd rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd91d8ce8 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda91021d ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdce3f158 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdde972fa ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0ee5bac rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe716bb1e rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7a9e714 ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe997ccb7 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb6d04c9 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed725e21 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee40dbda rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf00ded63 rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf28634aa ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf342ee4c rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5fc7695 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6178f2a ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf62aa923 rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6e2f845 ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7dacb77 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7f4cdec ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf92b4f64 rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa2d1bec ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0d6e682b ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x19543783 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x23ce6401 _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x26a81b58 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2a65491c uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2eaed4db ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3cf52b12 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4a65bb69 uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4d788d8b ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5088d875 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x54c6427c uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x57741605 ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5d2b5b0c ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5fd6c86b uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6981c52e ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6e8562ac uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7b4cce88 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7d1534c6 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x81ed3668 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x82811ebd uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x903e27bc flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x90bbfe09 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9e42cd20 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9e6daa73 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xada8a596 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb2220a17 _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb26e7fc8 uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbfa2bf8a ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc2c00449 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc307d63c ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc3216ca1 flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xca0f5e87 uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcb828dbf ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf2d34ee4 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf4f8f6b8 ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf5af6f6f ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0cb054b2 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x159a0e09 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3678ce2f iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x395530a3 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8fe37834 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb43a24b0 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbfa4633b iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf5213281 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x027b39e8 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x04fe2172 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x144b07a1 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x18d9df37 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2832c1ac rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2fbb5e10 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x38e518b7 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x39962555 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3a25eeae rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5c33c7bf rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x647b502e rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x670adb7f rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6e46e9e0 rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x704df362 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x70ab5109 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7166e16d rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7294b6de rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x73bdfeff rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x881648aa rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x89bc603f rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8bf506b1 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8f98abde rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9273e2b6 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x92bdb441 rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x98b86234 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xabeafeb1 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb0a6c2f8 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbb7a0889 rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc2716f3a rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc469198f rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd4919ba3 __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeb387101 rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf39518a1 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf697706b rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x06d61ddd rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x1961c117 rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x6581d96d rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x995b9515 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb4fe73f2 rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xe71aa586 rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf9c91db8 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 0x47cf11c3 rtrs_rdma_dev_pd_deinit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5b01e41d sockaddr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5ce1e877 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 0xb217c4c0 rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe24181b5 rtrs_ib_dev_put -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x3945a3fd rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x39afe6cc rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9418addf rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xbb99ba3d rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xce8ee2f8 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xf16008cd rtrs_srv_set_sess_priv -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 -EXPORT_SYMBOL drivers/input/gameport/gameport 0x8ce2aef9 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x9f1ca40d __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xa11dd7ad gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xb4b6d63f gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0xdc51666c gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xf02a71c4 gameport_stop_polling -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x21300ac5 iforce_init_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x769b964a iforce_send_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xed4c0a5c iforce_process_packet -EXPORT_SYMBOL drivers/input/matrix-keymap 0x468d3ca2 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x1bed4b32 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xe8c287b4 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0xfe31fba6 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x9f366d19 cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0xc86e7662 rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x32e32f2e sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0x776589a2 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x78462049 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0xd557626e sparse_keymap_entry_from_keycode -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/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 -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe49eba2e attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf4465d61 capi_ctr_handle_message -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/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 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 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 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa0bd96a1 recv_Echannel -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 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 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeb4a0a02 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x2c7f0c37 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 0xd30c34f6 ti_lmu_common_get_ramp_params -EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0xac097c39 cmdq_get_shift_pa -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x67a2bfc1 omap_mbox_disable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xb529b5b4 omap_mbox_request_channel -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xb8c47b16 omap_mbox_enable_irq -EXPORT_SYMBOL drivers/md/dm-log 0x2b7a74e0 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x5f8c40ea dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0xb1e82e17 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0xc31b3e40 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x5937b7b7 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x649e5456 dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x7d73b760 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x8a67be88 dm_exception_store_type_unregister -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/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 -EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x772fdd8e cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0x9aa7d1ee cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xa07a9d14 cx2341x_handler_setup -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 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 -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 0x28ab41b1 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xaa9df014 vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc2d9e090 get_vaddr_frames -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 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-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 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x06ca2935 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1254e12a dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x128a188c dvb_device_get -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1dc11bdb dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x288c411d dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3821f08a dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until -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 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 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6060e18f dvb_remove_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6181aec0 dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 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 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 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc9acfcc0 dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdfc4b00f dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail -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/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 -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2a862388 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x38757080 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5d6926c8 au8522_get_state -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/cx24113 0x15664ba8 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x56288860 cx24123_get_tuner_i2c_adapter -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/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 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 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/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 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 0x93965140 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xff8c5824 dib7000m_get_i2c_master -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 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 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xabac7fe5 dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb1c5c695 dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc7e333ac dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xdbe48a99 dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x2e763dd0 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x54e65f9c dibx000_get_i2c_adapter -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/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/lgs8gl5 0xc5024dbf lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x956591c6 lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x2b029d01 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xb6181d8e s5h1420_get_tuner_i2c_adapter -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/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/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 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd41ab5fa bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x119a79f6 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x17f5f4d3 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xc2c2041e bttv_sub_register -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 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/cx18/cx18 0x1bc40c48 cx18_ext_init -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/cx23885/altera-ci 0x1ab311dc altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x108b0163 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x463aa81f cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x47963a15 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6cc83360 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9572c508 cx25821_dev_unregister -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/cx88xx 0x5edb7ae5 cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x60c759cb cx88_sram_channel_setup -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 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/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 -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0fa0a1eb ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x25e64d37 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x27b5b8d3 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4fba5d54 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x551e9783 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7cb6de92 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9078c927 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9b90f60c ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa8541c7d ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xae656cd1 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd241bb3b ivtv_api -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 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 0x730c4be3 saa7134_boards -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/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 -EXPORT_SYMBOL drivers/media/radio/tea575x 0x39ee4581 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5a088e31 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x609b025a snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xb74347c5 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0xff444b31 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl -EXPORT_SYMBOL drivers/media/rc/rc-core 0x6944a825 ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester -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/fc0013 0x5a2497cc fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xc6e949db fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x4119d0eb xc2028_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/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-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 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 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/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 -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5a8e2c96 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x660dcb12 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9dcee199 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa0a330dc go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe4b9709e go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xef782113 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfc1457e3 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfc96ddcf go7007_alloc -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x25b9dc69 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3e376ed8 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x661cf0b1 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x943ce346 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb07a53de gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xbc0438d1 gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf1495385 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf389238f gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x4d1c70fc tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xbf6e908c tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xf90c689e tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x9e86a7d2 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xb541a618 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x0cfbdaca v4l2_async_notifier_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x1306846f v4l2_async_subdev_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xac3cdf7a v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xbc37f0ab v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xe5741bf3 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xede53cc6 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x43e54993 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x47748a3e v4l2_m2m_buf_done_and_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x65e3190d v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xa76c107d v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x02e0f639 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x04a9dfb8 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x075d53d1 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0c5098f8 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x18f6dc21 v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1df2b3a2 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1f64a578 v4l2_subdev_init -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 0x3271a85b v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x38a967d1 v4l2_try_ext_ctrls -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 0x3c71cb11 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3cc54737 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3d9b4a31 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4082aded v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x41188a79 v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x48686d1b video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4bbece1b video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x54a0e9a7 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59b439bc v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6256e878 v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x684cbf3b v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x75559979 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x847e8b0c v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8948448f video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x92ca42e0 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9964d911 __v4l2_ctrl_s_ctrl_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9a201e1f v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9a3dd603 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9a6d6fb3 __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9b3094ac v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9eca972d __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa45fc1da v4l2_ctrl_new_std_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb018d7ca v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb327955c v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3bc3a0a __v4l2_ctrl_modify_range -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 0xbdc63526 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc4d11d86 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc5e0750c v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc8b7acd6 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd1e6de05 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd266dcc1 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd7ea8753 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd99487be v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc154d38 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc7e0128 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdddd825a v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdee035fc v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe0026593 v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xec32df5a v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3459b93 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf956149d v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf9b5c1ba v4l2_ctrl_new_fwnode_properties -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfcdc1cee video_unregister_device -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x181111f0 rpcif_sw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x2bf6f891 rpcif_prepare -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x492a6fe9 rpcif_hw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x9e92a99d rpcif_manual_xfer -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xdeaa8736 rpcif_dirmap_read -EXPORT_SYMBOL drivers/memstick/core/memstick 0x13a64910 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x2d1d1a9c memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x385bc283 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x46744e87 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4fa43edb memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5b342141 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x66532e35 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x69e755c6 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x70ac6380 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x946527d6 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xef4f708f memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0xfedd8caf memstick_new_req -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0dc15239 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1b93efc8 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1bb86daa mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1c2e46ec mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2606e043 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x28b78b8b mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2983d361 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2c608965 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2ee1d831 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3fd8b5c8 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x407685ee mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x456d231f mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4937eea6 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4c210a74 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5bb768b7 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8781f586 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9deee539 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa0a35109 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa224b37c mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcaf76754 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xceeb716a mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd12f56c3 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd49a22c6 mptbase_sas_persist_operation -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 0xe6d49333 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe78f4e47 mpt_raid_phys_disk_pg1 -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 0x07774a1d mptscsih_suspend -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 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 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/message/fusion/mptscsih 0xfcc8b54f mptscsih_info -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/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 -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x28717d52 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x29941271 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3a1795ac mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x48697a44 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x82c11bbd mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc183bd04 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcb9588e2 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe03fe545 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf399a3cf mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfb450835 mc13xxx_irq_request -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 0x20c1772c wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x4d1cd2c4 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0x6a01b761 wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xc7590ed5 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xe8719864 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0xf563b54c wm8958_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x63806748 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xf9fcc76d ad_dpot_probe -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0xaaea311f c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0xca0da2f4 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x2254dd05 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x30a89289 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x32575df1 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x4d7d584a tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x50468f9a tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x62697bb3 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x66638bb3 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x792955f5 tifm_alloc_device -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/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 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 -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x47ee2024 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6de90eb0 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8e2da3a7 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9314af60 cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xaa019773 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc9058f8c cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x2d371ba9 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x595d3cac map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x71bbf931 do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xd5769c3a unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x5ff3ad78 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x1be557d4 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x5b836ef7 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0xb6d6f565 mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0xf5f53028 mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x06b3ebb0 nand_ecc_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x08577cb2 nand_ecc_sw_hamming_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x08795e99 nand_ecc_sw_bch_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x10fab13b nand_ecc_sw_hamming_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3997c46c nand_ecc_get_sw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x41cc6171 nand_ecc_sw_bch_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x51591299 nand_ecc_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x59f0edd0 nand_ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6f23dbd7 nand_ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7be7c5d1 nand_ecc_sw_hamming_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7fb602a6 nand_ecc_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x80d05b0f nand_ecc_finish_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x82131c8c nand_ecc_is_strong_enough -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x90b89de0 of_get_nand_ecc_user_config -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa69ce29c nand_ecc_get_on_die_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xac270b62 nand_ecc_sw_bch_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcbce8690 nand_ecc_prepare_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xeca7d89e nand_ecc_sw_bch_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x768a9fe4 onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xfe60bf22 flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xa01d75ed denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xb40342c6 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x102603bc mtk_ecc_get_parity_bits -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5437e775 mtk_ecc_disable -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5de55d81 mtk_ecc_get_stats -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x6c482831 of_mtk_ecc_get -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x6df58afb mtk_ecc_release -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x76e53683 mtk_ecc_wait_done -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x8dcc87d2 mtk_ecc_enable -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xda64ef4a mtk_ecc_adjust_strength -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xec8b9207 mtk_ecc_encode -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x00f1a350 nand_create_bbt -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x05eee63b rawnand_dt_parse_gpio_cs -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4a768415 rawnand_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x788edd11 nand_write_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x860dcb67 rawnand_sw_hamming_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8b94a444 rawnand_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ca1c99e nand_monolithic_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x916e84fc rawnand_sw_bch_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa06c55a8 nand_get_set_features_notsupp -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xbd72282f nand_read_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc330b5fe rawnand_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc506aaf1 nand_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xcd056a5a nand_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd1f713dd nand_monolithic_read_page_raw -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 0x16f9c2b3 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x23b87441 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2bf1edd2 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x761e5274 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8d850293 free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa1564fc4 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa8af8078 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb6e90912 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbfc27268 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd5cb3f32 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf773eb43 arc_bcast_proto -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 0x0311ce70 b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x104f3772 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x146c51cf b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x159609aa b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x18d38c42 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1a2b9cdc b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1c1470ee b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x20b69e4f b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x20de1579 b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2b573854 b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x326fbc83 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x32d7e7cf b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x37a6e1eb b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x42a5b44a b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x46d27c7f b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7ba26d0c b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x873a3a79 b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8aa0b9d8 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x97c2a01f b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9f839328 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa35403f6 b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa99228bb b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaac6b7f0 b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xac924a02 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb8d57793 b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb8dc55dc b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb97fbd7e b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbaea1982 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbc4074c1 b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbce82776 b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcb8483e9 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd8dd2aa5 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdc02e7da b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe18a64a2 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe1f0ff05 b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe277e29d b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xefbb5248 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf114aa34 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf29e81a4 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf85ea437 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfd774665 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x127bce7f b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x20490dcc b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x6080a357 b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x801f88b0 b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xe59a3b6a b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xf3e0fb62 b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x0c5869b1 lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x8792d122 lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xd1de6d7c lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x7b947a9c ksz8_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x7f0b35a4 ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x225c9dfc ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x50ee61eb ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xd46e9f9b ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x518f00b1 vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x94dbab20 vsc73xx_probe -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xdd1d600f vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x38cee45f xrs700x_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x83b7b667 xrs7003f_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x87248170 xrs700x_switch_remove -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 0xbc8848a4 xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xdbea81a4 xrs700x_switch_register -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0bf5ea84 NS8390_init -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 0xc328e048 bnxt_ulp_probe -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x70310135 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 -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x34eeb48a bgx_set_dmac_cam_filter -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x46cdf933 bgx_config_timestamping -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x539ca253 bgx_get_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x60cd1f2f bgx_lmac_get_pfc -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6ca2152d bgx_lmac_set_pfc -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x716fd7f0 bgx_reset_xcast_mode -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x72b238e4 bgx_get_rx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xbe654297 bgx_get_tx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xd8ed0bcc bgx_set_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state -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 0x0962aeb0 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x287dec96 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x362ba755 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3a72f612 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x46bac4c2 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x477d1e63 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4cd817f3 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x57947510 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x58cf32ef t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5be3df3a t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6760cba3 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8385659b cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x851c6549 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x939bce8e cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd5704dec t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd96bb604 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x03c91734 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x04e7caae cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x061ed5c9 cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x070b10c7 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x081232e7 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x146cfd80 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x163862e4 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x24287068 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2a348e4b cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x37ce8cc1 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x396e4b1d cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x40abc963 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4159aea0 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x48a9b3ed cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5034b7be cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5d32534f cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x62589822 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6418ca5e cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6b380899 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x75664702 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7dfc00e6 cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7e06ab7d cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86222089 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x873409fc cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x87a805a7 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x88a8a45a cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x895b2a5a cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8b8953ab cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9a6f2ffd cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa6cb7086 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbd1a3ad3 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbe1705ec cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcd8650b2 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcf5c9a80 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcfc584a1 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd1406bec cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd25e4161 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd38f2e62 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xda2eed6a cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe2c8dafc cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe3b73d20 cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe93166b4 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeeba36a8 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf5ff0d7d cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfbfd2cba cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfc8b6658 cxgb4_reclaim_completed_tx -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/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 0x7757c9b7 cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x9ceac938 cxgb_find_route -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 0x1be4d907 be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x5d415205 be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x4412391e dpaa2_phc_index -EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0xe2bc741a 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/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 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 0x1bf200c6 hnae3_unregister_ae_algo_prepare -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x44717a21 hnae3_register_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x6b606a39 hnae3_register_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7524e7d0 hnae3_unregister_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7a605705 hnae3_set_client_init_flag -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xd8e6e2f4 hnae3_register_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xdf0ab429 hnae3_unregister_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xe9b37f05 hnae3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xa71b2754 iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xe23f306b 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 0x2f71006e __traceiter_otx2_msg_interrupt -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x2fb6669d 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 0x376f78ba otx2_mbox_regions_init -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 0x6365a74f __SCK__tp_func_otx2_msg_alloc -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 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 0xa4b1db83 __traceiter_otx2_msg_process -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 0xb12842cc otx2_mbox_destroy -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 0xdd312782 __traceiter_otx2_msg_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xe5640f68 otx2_mbox_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x186fd270 mbox_handler_nix_txsch_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x19ac7c93 mbox_handler_msix_offset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2df20e5d cn10k_lmtst_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x32fa269c otx2_detach_resources -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 0x3ad8a17a mbox_handler_npa_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x46492acd otx2_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5c6d770f otx2_mbox_up_handler_cgx_link_event -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7d1e10fb otx2_open -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x8f2fe7a1 otx2_stop -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9854b9bb otx2_set_mac_address -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9b82a5ac mbox_handler_nix_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa4154734 otx2_tc_alloc_ent_bitmap -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa9d0ba5e otx2_get_mac_from_af -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xbec70c72 otx2_attach_npa_nix -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd6915152 otx2_sq_append_skb -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd8c1d297 otx2_set_real_num_queues -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xdaac9f7a otx2_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe62b12ab otx2_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe76151d2 otx2_mcam_flow_del -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe91cb791 otx2vf_mcam_flow_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xeeb5577e otx2_alloc_mcam_entries -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xeffd130b otx2_get_maxflows -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xfd267c6e 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/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 0x00bb7ecf mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0129ddc7 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d633e1b mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f860ef9 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11f35cb2 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13e166e9 mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x155f4b45 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17e08db2 mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x182b1722 mlx5_eswitch_get_vport_metadata_for_match -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 0x1eadead3 mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f8f1193 mlx5_eq_disable -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 0x2507adb3 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25225eef mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2634c6ee mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a25ac07 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ab0caa4 mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c9bede9 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cfeb814 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31632a3d mlx5_eswitch_add_send_to_vport_rule -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 0x33c32168 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3475821f __SCK__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36e20e56 mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a41669f mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3be5622a mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3db09122 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3de3ad48 mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e9fccf7 mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40e4f200 mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4167cd53 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42782186 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42d6610f mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x433f0c5b mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46528f6d mlx5_cmd_free_uar -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 0x4a2b6d33 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c0e6566 mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cffc628 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fddeee3 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x503f3c9d __traceiter_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5493ce2d mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5511d50a mlx5_fpga_mem_write -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 0x5c989e8b mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d4efb3a mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e3f06bb mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f5193fe mlx5_core_destroy_rqt -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 0x60c53499 mlx5_rdma_rn_get_params -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 0x644e602c mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65190aa8 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6661a706 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66bbd8f0 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d0c661f mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6db01158 mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e98321c mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e9b0cb4 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7051b228 mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70a19329 mlx5_rsc_dump_cmd_create -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 0x7307348f mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76a88755 mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76efa552 __traceiter_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7823239c mlx5_eswitch_get_proto_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 0x7c1580e4 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 0x7d9dc052 mlx5_eq_enable -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 0x834cc427 mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83580bf4 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84336231 mlx5_comp_vectors_count -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 0x888e0551 mlx5_cmd_alloc_uar -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 0x91eb61e8 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9307b4cb mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95877201 mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x964f8055 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96a379ed mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96a6be9a mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99f8befa mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b74eabd mlx5_rl_add_rate_raw -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 0x9e54efa9 mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f33ac1e mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0005fb2 mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa19f40f8 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4dc3f58 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5dba4e9 __traceiter_mlx5_fs_set_fte -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 0xa74d454c mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7cba70c mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa4b273b mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacd70fb4 mlx5_cmd_exec_polling -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 0xaeb7c49d mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf238f53 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf55628d mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb208784d mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2224099 mlx5_eswitch_reg_c1_loopback_enabled -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 0xb362d842 mlx5_notifier_register -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 0xb72cffaf __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7c3ac98 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb926bef9 mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9fad2fe mlx5_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 0xbb475e47 __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcad3be7 __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1a69b16 mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc548e469 mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7178c1e mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca471fa8 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcac79ad6 mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xced96eb6 __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd063013d mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5fff245 mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd667b58c mlx5_lag_get_slave_port -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 0xd7d45c90 mlx5_fpga_sbu_conn_create -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 0xd90d9190 mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd74bd96 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd8f2113 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe333bb68 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe42e5a33 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5ad5a99 mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6378266 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7215e74 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe97946f3 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea23d0f6 mlx5_modify_header_alloc -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 0xef7c9a5d mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf14c5aa8 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf350f5c6 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf645f062 mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6ac46db mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88d57b1 __SCK__tp_func_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbf1da6b mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc8e744e __SCK__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcbccee3 mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xce05c931 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 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 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 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 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 -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 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 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 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 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 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 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 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 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 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 0x0231ce8d ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x19bedaab ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d88d0ca ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2425ca7d ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2459f04b ocelot_bridge_stp_state_set -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 0x332f2f53 ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x334d1542 ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x425b73db ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4683bfa2 ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x480acda7 ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4caf5468 ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4cdcfb05 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4e0d6b64 ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4f286413 ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4fbff229 ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54c25e0c ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x56e656c2 ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a1bed25 ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5e016edf ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5ef12739 ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x616ae262 ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x61bd39d2 ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x652ae612 ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68b01c89 ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6fa702dd ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x70ab85e1 ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x70f280d7 ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x718c61a2 ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7ab20fc9 ocelot_apply_bridge_fwd_mask -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e682a0f ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x85a7314a ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x86fd3035 ocelot_init_timestamp -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 0x8d1084be ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8d365c42 ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8db57440 ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8e7b0fee ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8f64ed66 ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90809aa5 ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x96f06aac ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa1af1bd0 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa511378d ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa658a822 ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa70cf9fd ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaa319ded ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaa6fd655 ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xadbd87cd ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xafe122ac ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb46557da ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb528f7c2 ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb7248d62 ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb7ed1ac9 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf83f849 ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbff2b6c9 ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc18cea0f ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc7c01d4a ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd112413a ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd30672be ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd6e8af17 ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdced36b6 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xde0168c2 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf3dc3267 ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf5a94ec3 ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf7117271 ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfa4d5847 ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc732942 ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff65dcf7 ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xffbf3b84 ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x1b52abce qed_get_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4a5e6ede 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 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 0xa3e26ed2 qed_get_fcoe_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/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-cavium 0x1e2b1813 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x3ac4fcdd cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x3b6647c8 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x3e2bf0b4 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x4c13d8cc xgene_mdio_rd_mac -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x6b3507ef xgene_mdio_wr_mac -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x7062ad08 xgene_enet_phy_register -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/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 0x1952fe60 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x45a896bc team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x5368a96d team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x5b033cce team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x8cde3e1c team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x99493462 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xb48882f3 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0xe1b5f089 team_modeop_port_change_dev_addr -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 0x04a2a8e1 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0d8b853a ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x22001e4d ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4900e555 ath_hw_keysetmac -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x500caeb9 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6612af47 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6e0d8bfd ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x75b4ab3b ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x78a7836b ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x871a57f9 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb1fe8d78 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb2763206 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc2ea6b66 ath_hw_setbssidmask -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 0x050c54fa ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x09f3f971 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0e9de097 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x101d12c9 ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x17ea0698 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1813276f ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x226c13ae ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x320c7e6d ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x334143b2 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3abd61f4 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3f05ae1e ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4cd6a062 ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4f5ec495 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x50d23f52 ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x50eb778d ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x61d24f86 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6277d6b7 ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6866f011 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6d00921d ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6e9c4b9c ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x71d96921 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7294e764 ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7507aaf1 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x781a93cd ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7e73bee1 ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x81303028 ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8ed4affb ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9d1170eb __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9ed922c4 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa14df5cf ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1e4849a __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa4e846fe ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa5596c2b ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa58f99b0 ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa960f5eb ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb00a945c ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb2b81020 ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb3c0e15b ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb5c896fc ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbc562d17 ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc601fea7 ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc636085e ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc6a03625 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcb58bed1 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xccfd3a24 ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xce9e0b16 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd4e3ba8b ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd5104edf ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xda82c5c4 ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdb84d363 __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xecb3b047 ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xecf8b193 ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xef60b3d9 ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf464db34 ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf67f121b ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf855aa4f ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfa0f1712 ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1a9dda64 ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2e9a29af ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x39541460 ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x41b873c2 ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x477471bd ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4f192d30 ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x576982a1 ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x62c1240d ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x653f3418 ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6c0e9e94 ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x71d38b88 ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x78bc963a ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fdfefd8 ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8ab76597 ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8afff775 ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8ef9f0b5 ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa5490e40 ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbba3616f ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcecead08 ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe225ab2f ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe350dcf9 ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf80c82a4 ath11k_core_suspend -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 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 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 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 0x061f39aa ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0f0dd023 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0fee9b4d ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1279cc14 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1777edfe ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x209d97b7 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x31137f18 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6547e167 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x69b60c54 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x72679aab ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7a139db0 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7e0e2500 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9ae3d205 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa11feafa ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa18ce5ea ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa934337a ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xca6faf12 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xccf2abd7 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 0xd32e1243 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdfeee219 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf8661876 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfb504062 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xffe8e56a ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x009692ad ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0188e43f ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0309a0c0 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03d68bf3 ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06ae0f61 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06f56736 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x098610d2 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a22f383 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b30fb55 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ccdd6e1 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ce861c4 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1165ab1f ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11739331 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12b78497 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13295cb7 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13e5f370 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x148a9a43 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15187d15 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1580152c ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x194b17b9 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2415a2ff ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x257ab96e ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e913337 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f5bf21b ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x308168a2 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30f5929d ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x385c59c4 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42b8b0fc ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x450bc53d ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45681c95 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47d98f50 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4dfe59ae ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5172b281 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x527e9f3e ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55290433 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x555138ba ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x577e835c ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x583c96d3 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5df197e3 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ea740bc ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f1bc205 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x617dae37 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65039efb ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69e69eac ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a36cc3e ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d6a434c ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d7c87ea ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f84aca0 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70d99d15 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x713784b4 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71af300b ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73933aa8 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73fa9e28 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7af56233 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e48cd4e ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f1a729c ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87b63fed ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88b6e59f ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ade38d7 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b3d3d63 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x903d7b6f ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91001080 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a1545f2 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c696e5e ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e69c31d ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1f883d0 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa273dcdd ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6732f3f ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7808e82 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa95045a0 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad975ff2 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3265731 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb82d259d ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8a2354f ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb951c2cf ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe132849 ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc03662d6 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc32d1e23 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3fe789b ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc43e59a4 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9020965 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcbede709 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcce33689 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce22e96e ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf7ed859 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd512b0ae ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5e6b566 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd95a058f ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdbb5ab14 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd20953d ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde5f4388 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdef7cbc8 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe26fc047 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5e6173d ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe85ed106 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8963607 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee1570b7 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee554aaa ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef6864e9 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6390719 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9234904 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9c961eb ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfbc7ce5d ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc60b622 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfddc8514 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff6214f5 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffa9044b ath9k_hw_numtxpending -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/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 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 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 0x0345c037 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x062dd14e il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x091f65d2 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0e83db4a il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x178a5e38 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x18515cd0 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1cf09378 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x267f619f il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x272cc354 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x29e01ce9 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2a1ae1e3 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3641516a il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36bf85eb il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3820630c il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x382a3e77 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x39961bb9 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d873f29 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x41d50396 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42601b31 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4c1e4547 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4c60ba0b il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4fdf27e6 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5266b87e il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55ee67db il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x57d3d6b6 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5aa78b5c il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5cb8fd4e il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5eec0ebe il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x60b35450 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x621c0c4f il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64f57ea1 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x69acef42 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ab0d269 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b450ab9 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d39edab il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x70d754ba il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x78a93e62 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x79da716b il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b6f46ec il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7efde04e il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fdaef4f il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8320dc20 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x83b4b2e0 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8540ba25 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x88c38b92 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x898f2476 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ae8c9e4 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b7627c9 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x907842f4 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x90ee440d il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x957123a8 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x96cc2672 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x98746a15 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x99800d24 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9a80a702 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b17aebd il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b518375 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b651494 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9bbc1fa1 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cda7f58 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d531624 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa280d406 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa3cb9c32 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa585b47c il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa92c78fd il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa19cc57 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb14243cd il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb63b7f22 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb84ad475 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf1f7de7 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc2057b19 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc51d58f7 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc5f0121a il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc958e26d il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc97771e1 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb616aec il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcbcee57e il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc7861f6 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcec1dc38 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd02340dc il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd05a63a2 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd4ff7452 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe08f60cb il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe35a4e63 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe7345c90 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe73695f9 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe9669530 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xebdfab61 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf05799f8 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf21d398b il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf5bacdb7 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf6011ebc il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf61a94d5 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf6246073 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf63562de il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf750abf3 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfac9b815 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xffc8ac41 il_mac_hw_scan -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 0x7578a7dc __traceiter_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x761ca827 __traceiter_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x970bf4ef __SCK__tp_func_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 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 0xdffc7f04 __traceiter_iwlwifi_dev_ucode_wrap_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 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 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 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 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/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 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xc0c666ac mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xbf2a2e4a rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x028226b9 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x02a56088 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x059a2313 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x09a0bf0e _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0ddb43c6 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x105f6a8c _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x12dc5ec0 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x196c22d5 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1abee1ad rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1b856825 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1d363eca rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1f48ec5b rtl92c_phy_set_bb_reg -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 0x2e4ceb09 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x389ed9a1 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3f474eff rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x435a5e8d rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4878fc17 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5b9367cc rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6e0e3418 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x79d051e0 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8b870aef rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x92f1a3c6 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9c803da8 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa036ca22 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa7f27d5f rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xad0595eb _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb7b23afc rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc9175da6 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcb6a889d rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcde23bfe rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd3064153 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe103ccf4 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe21e7776 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeab958b3 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb699caf rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf57271fe rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf86e329a rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf898f32d rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf98ceb39 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfc39fbf6 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfd939125 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x4ca64f01 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x6a11b256 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb2f55fad rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd155d437 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x0761f4cd rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x717e9959 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8d2476eb rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc8d2ba76 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x04d1be0b rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0a6d1593 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x12c6138c rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2828ea91 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d4bea75 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2fdddcb2 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a172d0e efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x57bf25ff rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5c7586f1 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x62905d00 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6a309bb6 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x716de5a3 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x744b00c5 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7a8cb6c0 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7ec23c6b rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa6359ba3 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa90650b9 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb9c14cef rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc5272820 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xce915e91 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd2e8f2cd efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd448f3b0 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd5fe478a rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdab90ef6 rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdae9f3c5 rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe5aff7ea rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe94d0682 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf0a4dcff rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf6eba032 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf89f18d5 rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xbe51656c rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x239112e1 rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x55b11fde rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xba7374e0 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x09ec90c9 rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x109ab919 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x12b04175 rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x13058119 rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x13c24c9a rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1667219b rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x247cc5ad rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2c107399 rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x310bb328 rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3676f96d rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3d422504 rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3da340b3 rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3e885a2f rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3ee6dab5 rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x41d1ee91 rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x422be71a rtw_phy_config_swing_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 0x4f5a94d2 rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4f6e2e83 rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x501e1845 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x50e5ff49 rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x56cab87d rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x57517df7 rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x613d8477 rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x69e2b361 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7255e88d rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x72c5d478 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7e655272 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7ef78de9 rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8882cf42 rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x89bcfc97 rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8f9d333f rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x96e33c8d rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x97ce292b rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9c1c1df9 rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9ee2c193 rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9f38ed0f rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa1f11d0b rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa2424752 rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa39c1091 rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa4e41783 rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa70d501c rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb3ccbcda rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb6376e61 rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbca249c3 rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbefdd903 rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc16b5123 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc4b1e516 rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcac231c5 rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xce11ae64 check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcec6a734 rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcf35a7c8 rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd0345a82 rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd3ba7f0e rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xebff9d94 rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xed6eb294 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf071abaf rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf697a6d6 rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x6bf1c1ad rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x95fac687 rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xa4a0eb29 rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xf84e51df rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0a7ebeac __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0b0f3730 rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0bf53201 rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x10cc785f rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1d33d243 rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3fbb5433 rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x477d4ddf rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4c85983d rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x667d7819 rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6f74c4e2 rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x711124ac rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7ebd5484 rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x899c807e rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa7c430a8 rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb71ad5f6 rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc20a07bd rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc7334007 rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcda55c4a rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe6b557a9 rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf6eaf07b rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xbf5d8c98 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x5d3da4d0 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x268380a6 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x39e02152 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xabf95ec8 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf1bd79e4 wlcore_calc_packet_alignment -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 -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/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 -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x8b7797b7 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x9fb79db1 s3fwrn5_recv_frame -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 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 -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x74ea4308 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9f71d965 ndlc_probe -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 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 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 -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x66869bc9 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7aa12ddf st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x98b9f3a8 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9a2fc68e st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa09b3764 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb7b4fa6f st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd717c5d2 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe01bf604 st21nfca_se_init -EXPORT_SYMBOL drivers/ntb/ntb 0x0176d450 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0x03f2a9b3 ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x18137e7d ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x43043f70 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x44988868 ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x56f26e4d ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x633450de ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x68b63601 ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0x7f151373 ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0x879d025c ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0x9a472354 ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x9d07866a ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0xa6f507db __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0xb40cefca ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0xbe402084 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xbef7815d ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xc2d1e4a4 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0xcaf0675f ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xcc74f26b ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xd29a6c96 ntb_default_peer_port_count -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x616131b7 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xb76d89b3 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/parport/parport 0x0f8fe5ef parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x103664f7 parport_read -EXPORT_SYMBOL drivers/parport/parport 0x10b65009 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x14d9c902 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x1b623eac parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x21adcb24 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x2a0c6da8 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x33e705a9 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x3c0cb05d parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x3df274ca parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x3fbc514d parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x42986ec8 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x44f2cc39 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x467dfd78 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x4cb88615 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x5288a696 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x543c0494 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x88423648 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x8d15573e __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0xa00fc85c parport_write -EXPORT_SYMBOL drivers/parport/parport 0xaf0f8e6c parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xafd9e08c parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0xb0681b65 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xb4356abc parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xb9c9d6ab parport_release -EXPORT_SYMBOL drivers/parport/parport 0xcab25e73 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xdb9347b6 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0xdc16342f parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xe781ca3c parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0xf4a9a7a7 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xfd715675 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0x2f4da2ec iproc_pcie_remove -EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0xc8ec4a1d iproc_pcie_setup -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1d78bb8b pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x20136e44 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3a4e8faa pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x47afeba4 pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x580a152c pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x84c6131f pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x92a00fe5 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xad53c626 pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc362b2ae pcmcia_socket_class -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 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 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 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 0x25f1c1af scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -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 0x0e60d2ec fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3aaf4598 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3b42fa84 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x401d7843 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7d6b0606 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8572f74e fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa6c8e41c fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xabeb4397 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xde1eb443 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe1b230a2 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf5cf70d1 fcoe_ctlr_link_down -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 0x2121aa3a fc_get_host_stats -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 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 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 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 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 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 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 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 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 0xec2e6005 fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2ef259b fc_lport_flogi_resp -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 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 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 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 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 0x3e68cab6 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4465cbe5 scsi_is_fc_rport -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 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 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 -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 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 -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 0xd2adc5e0 sas_port_add_phy -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 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 0xdf7d90e0 srp_rport_get -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 -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 0x248e19f2 cmdq_mbox_create -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x27f7a778 cmdq_pkt_set_event -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3bc70297 cmdq_pkt_write_s_mask_value -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3d3c435f cmdq_pkt_jump -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x457eddda cmdq_mbox_destroy -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 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 0x6f3d7f7d cmdq_pkt_create -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 0xeaa247af cmdq_dev_get_client_reg -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 0x004107d7 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 0x185a180b geni_icc_enable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x20215960 geni_se_get_qup_hw_version -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x237f6a08 geni_se_rx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x3a4b4f5f geni_se_rx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5712289f geni_se_clk_tbl_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x65545652 geni_se_resources_off -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x6690978e geni_icc_set_tag -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x79078dba geni_se_tx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7a5156ad geni_icc_disable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7be8a725 geni_icc_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x9b7d7470 geni_se_tx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xa7066bb5 geni_icc_set_bw -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xacf4a3b2 geni_se_init -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc2791ac0 geni_se_config_packing -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc9c81d75 geni_se_select_mode -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xcbad6c39 geni_se_resources_on -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 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/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/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 -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16a2986d sdw_read_no_pm -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 0x2ca44a06 sdw_slave_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2eaddfe2 sdw_nwrite -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3165a094 sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x32dbb32c sdw_stream_add_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x33a89783 sdw_bwrite_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3d3b2943 sdw_update -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4c13958d sdw_bus_master_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5f92a76c sdw_bus_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x631b4dc3 sdw_compare_devid -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 0x76e0ab2f sdw_bread_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7d7488d4 sdw_stream_add_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x82757e1a sdw_bus_exit_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8bb9bd67 sdw_write -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa5a704e3 sdw_clear_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbcd4485b sdw_stream_remove_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc0eefa4d sdw_update_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd0bd6726 sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd459c255 sdw_bus_master_delete -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd5a361e3 sdw_bus_prep_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xddb781cc sdw_nread -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xeb9c7aa2 sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfa502580 sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x171bd70e sdw_cdns_pdi_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6af129d1 sdw_cdns_is_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x73f35e6a cdns_bus_conf -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x863b7663 sdw_cdns_enable_interrupt -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x88f2435d sdw_cdns_clock_restart -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x94a43b34 sdw_cdns_config_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9e22f3fb sdw_cdns_exit_reset -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 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 -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf4b9239a sdw_cdns_alloc_pdi -EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x7e0c5dd4 sdw_compute_params -EXPORT_SYMBOL drivers/ssb/ssb 0x09e35415 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x1605254e ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x208e018c ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x2316a693 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x3ebbf44f __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x634d3bbd ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x738f9059 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x75069c75 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x797a5bba ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x9466a245 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x990aec23 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x9d99aaa9 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x9e2f5d51 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0xa7b57518 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xad739ad7 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0xb5f00cfd ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0xbfe5456b ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 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 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 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 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 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 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/iio/addac/adt7316 0x0b24a311 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x8ee20f1b ade7854_probe -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 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 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/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 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 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/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 -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x1c60d406 vchiq_get_service_userdata -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 0xb05b02ae vchiq_release_service -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xc407cff0 vchiq_msg_queue_push -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 0x0346122f iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0db29bb7 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x13432287 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1565dd85 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x18a39eae iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1f8a88a8 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x25f83b04 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x28576fe9 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2a0e0db4 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x31689e6c iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3a9ec60e iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x43968adf iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4478db66 iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4860dbae iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x513a02ab iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x54e6bc83 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x551461d8 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x61ba4b9c iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6fa031bd iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7cb3e7c9 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7da2542b iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x96ca4174 iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d0e8ede iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa116aee4 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa14b9d42 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa58a8129 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xac1a18b9 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaca63826 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xad49a47f iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xadc5174a iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbfa8a4c6 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc3272ab7 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc3594082 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc47d8950 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc90b1bda iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcf9559c8 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdeecf8da iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe4d54dac __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe74ee123 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xec5ec4c1 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xece80a2c iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf0828a86 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 0xf55fee2b iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfd8d6339 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x00626208 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x02a015f2 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0c9e7fda sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x0e30759d transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x1459b3be target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x177cc3c9 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x1c56288f transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x21b2d08c target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x2819acbc passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x3407d8dc __transport_register_session -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 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a6bb26f spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x3c5fd3d4 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x3d2c5c89 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x3dc8bc6e target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x3dd42127 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x405dafd7 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x41b5f573 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x4476ff78 target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x4addaa82 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x4b09b015 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 0x4d89ec86 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x590675b8 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x5b64c8fd passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x5e9188b8 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x5eea517d passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x635cc26e target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x6505b56f transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x6566c34a transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x681b036c target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x71cf56e9 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a450c8c transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x7acd49f5 target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x8059b19e transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x85fecf8f spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x87624cec transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x8b2cc8fe target_tpg_has_node_acl -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 0x8fbe5f35 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x9a282236 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x9e6ca1cb target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xa2776927 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0xa306802c 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 0xabab1e44 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xaf282ebd target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xaf78b987 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xb9bcdffc __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xbac927fe target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xbff44a63 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xc1a20816 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc45a0971 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xcb63c485 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xcf875775 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xd18b1251 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xd5ab10de target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xd85d8f16 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xe5064740 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xe64d36ba target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xea502b0b target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0xefb53598 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xf23a4855 target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf4dd78c5 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf8a56b48 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xf8ea2b4a transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xfaf9b8d9 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xfd16cfd9 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xfe6ad22b transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xfed042ae transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xfed36baf target_complete_cmd -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xbf10fb8c 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/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 -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4ff5d85b usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x745a6504 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x93e123db usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc8634877 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xcdeec452 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdbc8a023 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdfb1aa54 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfccccd77 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x452e8bbb usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xfa6c3265 usb_serial_resume -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x0724cdf7 mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x1325c6ad mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x1599eedf mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x31953fbc mdev_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x4aeec05f mdev_register_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xee503d36 mtype_get_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf62c5465 mdev_unregister_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xfce48ce4 mtype_get_type_group_id -EXPORT_SYMBOL drivers/vfio/vfio 0x12e09350 vfio_unregister_notifier -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 0x7b4f88ca vfio_register_notifier -EXPORT_SYMBOL drivers/vfio/vfio 0x8576f800 vfio_pin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL drivers/vfio/vfio 0xfeaf9c9c vfio_unpin_pages -EXPORT_SYMBOL drivers/vhost/vhost 0x01ca7a07 vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vhost 0x1142f2d6 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 0x6edcdbbf lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x8bd5a817 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x8f9dec7e lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xc5ed3689 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x25763886 svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x475b8c8b svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x72ab26bf svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x89001d43 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xaacf399c svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xbe1b83f3 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef04a907 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xe76472f9 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x12678d85 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x7e05d70b sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xbd3e2d02 cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x3550ad81 mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x3f87cfdc g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xf4372620 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xfac8f687 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xa56d87f4 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xb326995f DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xc5d201c0 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xf5f8d424 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x238a2cd2 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x58d2bc9d matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x11249a30 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x1d0dcdb1 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x3f920354 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x59b1d247 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x0d208719 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x71bc246e matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x8e379633 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xaecc1e47 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xbff50bc6 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd88e9774 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe8eafb4f matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x10bff921 virtio_dma_buf_export -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x2ee01fed virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x79b8eff9 virtio_dma_buf_attach -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xe70b9df7 is_virtio_dma_buf -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 0x7dd62da6 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0x9e0793f6 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 -EXPORT_SYMBOL fs/fscache/fscache 0x093ee850 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x0a0a85f3 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x18d780f2 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x1a606a5a __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x1c0328b5 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x2626ae90 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x35eb6e6f fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x35ef192c __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x37360079 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x37f3ee16 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x3bd03201 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0x446d20d9 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x643029b5 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x6acefa42 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x6c379bca __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x702959f0 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x772092bc __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x7e13b36f __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x7eebdc2c __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xa058505d fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0xa0e8bd13 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0xa129ff24 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0xa1588ae6 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xa379a48f fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0xa75ae036 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0xa851a707 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0xbe8bd9c6 __fscache_begin_read_operation -EXPORT_SYMBOL fs/fscache/fscache 0xc3e28977 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xc5ef1876 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xc906a726 fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0xcdd6373d fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0xd62d742e __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xe1090771 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0xe1817917 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xe4690a2a fscache_obtained_object -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 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 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 -EXPORT_SYMBOL fs/quota/quota_tree 0x5c608cac qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x94cfb15b qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0x97669dfb qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xe662d340 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/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 0x33c7fd81 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset -EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del -EXPORT_SYMBOL lib/lru_cache 0x63910d66 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get -EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create -EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock -EXPORT_SYMBOL lib/lru_cache 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 0x2b4846a1 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv -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 0x086c3e34 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x2b1997c3 lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x421654e3 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0x56bbd4b8 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xcb89fc9d lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xdabbc6f4 lowpan_nhc_add -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/9p/9pnet 0x03fc1e9d p9_release_pages -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 0x404a6b74 p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read -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 0x9656bade p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini -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 0xbb9f5480 p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0xc04ab781 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xc77d61dc v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xcf1cff5e p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -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 0xf46b099e v9fs_get_default_trans -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 0x55278835 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x6b38962c atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0x927d9493 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xfeb46ffd aarp_send_ddp -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 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 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 0x14cecd59 ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x26e68220 ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x5e5d4f36 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0x715afe39 ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0x767a4e3c ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xb420f147 ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0xef00374a ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0xf6ae36f8 ax25_ip_xmit -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 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 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 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 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 0x2682e05e ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3dc05b35 ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5255a869 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x57f1e05e ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa06c1da9 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xcaa59de5 ebt_do_table -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 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 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/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 0x0f8eb076 ceph_msg_data_add_bvecs -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 0x1378aba3 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x15c5f233 ceph_monc_do_statfs -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 0x2087719e ceph_oid_copy -EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x297a3c4b ceph_cls_set_cookie -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 0x3300438f ceph_con_init -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 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 0x3fcde607 ceph_con_open -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 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x4683e8ad ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x47768c69 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x4b51c234 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x4f271336 ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0x4f6a0998 ceph_osdc_notify_ack -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 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 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 0x63758856 ceph_str_hash_name -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 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 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 0x7e5297c8 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x7ec91cc5 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x7fe496d2 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x82d5eb60 ceph_msg_put -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 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x8b592685 ceph_reset_client_addr -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 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 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 0x9ee314a5 ceph_msg_data_add_pages -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 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 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 0xaa889799 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0xaaea630d ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0xabdac7c4 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0xacfeab10 ceph_auth_get_authorizer -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 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 0xb9b41829 ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0xb9ed6ed8 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xbaf044f6 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy -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 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc56f8ce3 ceph_copy_user_to_page_vector -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 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 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 0xe5d5d396 ceph_osdc_maybe_request_map -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 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 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/ceph/libceph 0xfd91a3d3 ceph_con_send -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x992c8546 dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xde8c973b 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/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x4df6e0bb __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0x95c5dfd3 __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0x31610a57 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x530fb8f4 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x9a9eb53f ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xbff20c2d ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe04dbd62 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 0x10371240 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x82dc8912 ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xaaf1e72a ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb0733a95 ipt_do_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x971c8dd1 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0xb11552c9 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x51bb4966 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1c5a6def ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2b966db8 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6737fdd5 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7183d70c ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8a918b9e ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcf3fe608 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd51630e7 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdd0695e4 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe40dd238 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x61d390c0 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x90b22b57 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xacb4725e ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd00f263f ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/tunnel6 0x0f2cd96e xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0xd9ad7a10 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x58799c50 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x9fb83879 xfrm6_tunnel_spi_lookup -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/llc/llc 0x38b92846 llc_remove_pack -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 0x00eb8816 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x07e011b0 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x090fc0eb ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x0ce5a9d2 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x0e9f6d19 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x0f89a2c3 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x0fa14ddc ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x0fa77746 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x15a6bfdb ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0x1625a3ef ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x1672acfe ieee80211_sched_scan_stopped -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 0x1dd0d9dc ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x22dbf31b ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x23652183 ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x2536fe7f ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x25582113 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x2b571fbc __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x2d03dd79 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x2fa32cbe ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x2fb6336a ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x2fd3d281 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x316225f9 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x367bfca6 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x38e86f62 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x3a57e735 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x3aaf0381 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x3d2b61e2 ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0x3fd1f5ae ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x40923e03 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x40fcb886 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x410c6e51 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x415caf30 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x43940e07 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x4586c655 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x46bfb746 ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0x46e9abc1 ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x47b9a597 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0x5410785a ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x550f2b91 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x553e2e5a ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0x58095db9 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x5e54c4e4 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x5f1a6152 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0x60e8cf3f ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x61960f5a ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x61ab5f7e ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x61dc33e6 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x6282cd37 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x62890c20 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x68291c31 ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0x6851b5d0 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x6e641108 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x6eee8777 ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x6fe90724 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x732d11f9 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x77e11fd3 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x7d3f211a ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x825393d6 ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x8c2482b0 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x8d5eee01 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x91ba3e9a ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x948cec65 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x9bdbb3cf ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x9d3f25ff ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x9e131318 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x9f5cba20 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xa234f85b ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xa2af5c26 ieee80211_return_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xa92176bf ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xacd8ea5a ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xad60157a ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0xae42d4ea ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0xb53588f9 ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xb5fc64d4 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xb7b792b0 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xba2a4734 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xc4dc8588 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xc6792713 ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0xc9bfa350 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xcc923e02 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xcec4d374 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xd28e5bd4 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xd3dd90ee ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xd6efc771 ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0xd80b03ea ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xd8e0bf9b ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0xdb3cdab2 ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0xe0bb8a38 ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0xe1490fc0 ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0xe2580a52 ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0xe578ab48 ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0xe5cc43fb ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xe68dc743 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0xeb799726 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xedd5ad2d ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xee481399 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xf6efb571 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xf9a8ba1b ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0xfe9f6d4d ieee80211_sta_eosp -EXPORT_SYMBOL net/mac802154/mac802154 0x11bebb11 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x5f6ee75a ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x8f2c6b95 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xc1d41774 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xc4c2bdfb ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xd63f8fd8 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 0x09fe09d9 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x30bcef78 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5f5f9bae ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x75080916 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x79991f2b ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7c596f42 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8c63ac95 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8f5fadb3 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x90f5d7a0 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x99e9fa43 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xaeddb7fe ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbf00ad0f ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc78ef64c ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd6e6f7eb ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xeb0847e7 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x5e099214 nf_ct_ext_add -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x0fcbba66 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x2b319377 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x63c03a4c nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0xcfb55429 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 0x1637b7ab xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks -EXPORT_SYMBOL net/netfilter/x_tables 0x3c025d0f xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name -EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x5c156946 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x6b8e5067 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x827b2080 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x85970971 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x8622b265 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x8ed14705 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xe1be2540 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xf419cdc5 xt_find_table -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 -EXPORT_SYMBOL net/nfc/hci/hci 0x12d1ad24 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x18401406 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x1e76539d nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x2ebe594d nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x30c56352 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x4372d3aa nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x5928e31a nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x667aa456 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0x704eefcb nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x763451f7 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x819f44ad nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x91015eac nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0x9bbc8b7a nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0xba905bf5 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0xbc96de14 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0xbff625a7 nfc_hci_unregister_device -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 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/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 0x17793670 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x260f7e69 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x30fb3560 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x32b594fa rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3ef57bc8 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x440fb0ed rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4c4bb6cb key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x54679b57 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x571ba7a4 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5ea7e664 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6085960a rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x831dde71 rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x87b8530a rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9267ba9b rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa18411cc rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd68ee8a6 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xddbb201d rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xee66dc25 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/sctp/sctp 0x272165e6 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x87f564b7 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x91337b88 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xfc5067b8 gss_mech_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0x04acaae1 get_srcport -EXPORT_SYMBOL net/sunrpc/sunrpc 0x21796594 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0x2ba81e79 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0xa922b674 xdr_truncate_encode -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 0x9d33c2d4 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 0x0d48db8f cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -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 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1d6dde49 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x1e133e65 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x1e4cca0b cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x202e80bb ieee80211_data_to_8023_exthdr -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 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 0x2a5d816f cfg80211_chandef_valid -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 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 0x3d8e5894 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x400e699e cfg80211_abandon_assoc -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 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 0x636ba30d cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x648803ec cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x686e3e98 cfg80211_iter_combinations -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 0x79b82a71 cfg80211_find_vendor_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x8300fec4 cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0x8428098d cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x87201542 cfg80211_any_usable_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x8887a0c4 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x8d77f933 cfg80211_mgmt_tx_status -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 0x9bb8d7fc ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x9cd84bc0 cfg80211_nan_match -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 0xa363af75 cfg80211_iftype_allowed -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 0xb3f7d2e3 ieee80211_get_channel_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xb55a416f cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0xb6dd4432 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xb815210b cfg80211_check_combinations -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 0xc17c7624 ieee80211_get_num_supported_channels -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 0xc5dcacef ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xc8ae5a8b cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0xcafcd9f2 cfg80211_auth_timeout -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 0xd4540c27 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdc9f9866 cfg80211_michael_mic_failure -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 0xebe9b9a9 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xeeb0a8a7 cfg80211_roamed -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 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf73b61e3 cfg80211_get_drvinfo -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 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 -EXPORT_SYMBOL sound/core/seq/snd-seq 0x304af852 snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x4c77c918 snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xbc8513c1 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcf4a88c4 snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf912f0c8 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x734e4fba snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 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 0xd3e8c11f snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x0214c669 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x09ac08bc snd_info_register -EXPORT_SYMBOL sound/core/snd 0x0ffbbcfb snd_register_device -EXPORT_SYMBOL sound/core/snd 0x1161ae7c snd_ctl_notify_one -EXPORT_SYMBOL sound/core/snd 0x187071b1 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1be4ac68 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0x1d896d4e snd_device_register -EXPORT_SYMBOL sound/core/snd 0x20705b31 snd_device_free -EXPORT_SYMBOL sound/core/snd 0x22e9ba94 snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0x22fc061d snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x28957042 _snd_ctl_add_follower -EXPORT_SYMBOL sound/core/snd 0x296aaf4c snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0x2abd914d snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0x30c8b406 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3c461c9d snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x42e886ac snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x615a7038 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x63778392 snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x6a6a2b6c snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x6c3d2b14 snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0x75fbaf1b snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0x76e2072c snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x779929bf snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x7b4e8a8a snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0x85588927 snd_component_add -EXPORT_SYMBOL sound/core/snd 0x858a18ea snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x90428bd6 snd_card_new -EXPORT_SYMBOL sound/core/snd 0x9df2063a snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa0c6b65d snd_jack_new -EXPORT_SYMBOL sound/core/snd 0xa2f3a95a snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0xa772681d snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb3bef9dd snd_card_register -EXPORT_SYMBOL sound/core/snd 0xb7609e69 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0xba7367d2 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0xc869523e snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0xcb42aa17 snd_jack_report -EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0xcee69c64 snd_card_free -EXPORT_SYMBOL sound/core/snd 0xd73c05d5 snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0xd78a3ec7 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0xd7ac91fa snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0xdd5bf37a snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0xe2b31311 snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0xeaebf882 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0xec48e1ec snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0xecea63cd snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0xed6dd0c4 snd_device_new -EXPORT_SYMBOL sound/core/snd 0xf0db5431 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0xf27177b8 snd_power_wait -EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-compress 0xd0a03a85 snd_compr_free_pages -EXPORT_SYMBOL sound/core/snd-compress 0xf3eea25a snd_compr_malloc_pages -EXPORT_SYMBOL sound/core/snd-hwdep 0x299e6833 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x0366f2df snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x0947355f snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x0af65911 snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL sound/core/snd-pcm 0x122006d7 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x14c39ff5 snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x33919fec snd_sgbuf_get_page -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x4992e6dd snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x4dfbb85d snd_pcm_set_managed_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x527c2523 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x5496529b snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x55edc3ba _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x564977ac snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x56aabace snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x586003ac snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0x5ba6d88a snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x60ae2490 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0x64f88fb5 snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x66e2c682 snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL sound/core/snd-pcm 0x69255f54 snd_pcm_hw_limit_rates -EXPORT_SYMBOL sound/core/snd-pcm 0x6b91e615 snd_pcm_set_managed_buffer_all -EXPORT_SYMBOL sound/core/snd-pcm 0x6e9f1088 __snd_pcm_lib_xfer -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x6f0ecfb3 snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0x77c8c1f0 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x79dcb8c5 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x83a1703b snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0x861b2874 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0x8b2184c8 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0x8c58ecd7 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x8dde25c0 snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x9004fe8d snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x90ab198d snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x94830578 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x96e2dd90 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0xa03e4e94 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0xa0b58d10 snd_pcm_create_iec958_consumer -EXPORT_SYMBOL sound/core/snd-pcm 0xa3526939 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xb80241f4 snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xba36aeff snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0xbae88e98 snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0xc58e0077 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0xc7c1b8fd snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0xda19ea7e snd_dma_buffer_mmap -EXPORT_SYMBOL sound/core/snd-pcm 0xdf3c73c0 snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0xdfd0c982 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xe8ebc3cd snd_sgbuf_get_addr -EXPORT_SYMBOL sound/core/snd-pcm 0xefd8863e snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0xf91fd1dc snd_pcm_period_elapsed_under_stream_lock -EXPORT_SYMBOL sound/core/snd-pcm 0xfb423b9f snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0xfcf20676 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x031ce90a snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2495c38b snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2accd494 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x34862137 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4764f642 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5079a809 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x62b759c0 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6dabf2ed __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x816fd467 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x8598144a __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9324af68 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x967df99d snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa84dc6b3 snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0xaf39af80 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0xbf415b13 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xcf3eabce snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0xdc2c5b90 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe0ff1f15 snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe41fc85f snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf665d3d0 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/snd-seq-device 0x0bbea177 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 0x03feabb2 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0x12a83ede snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0x1e671e9c snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0x21935c94 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x22105489 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0x31ac4015 snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x454b6e47 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x94270bdf snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x9c93e1d4 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0xa1237d73 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0xcc903e71 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0xd6c758c5 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0xe87ec0aa snd_timer_instance_new -EXPORT_SYMBOL sound/core/snd-timer 0xf5300086 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0xfb42fdcd snd_timer_instance_free -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xd7561fee snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x236e098e snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x45cb9508 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x48be68b3 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x79a5395e snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa3ccf2f7 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa96a025e snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb4a77efa snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc2de6af1 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd8f88f41 snd_opl3_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0db28d5e snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x25597166 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x4fc662c7 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x524b44e8 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6c6ebf60 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x90dffe13 snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x95836fd1 snd_vx_suspend -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 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 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 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 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 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 0xeb1dd949 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf1e7d1f0 fw_iso_resources_free -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 -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x34a0775f snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x439cf501 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4424a3f0 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x608b56d5 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x68c77282 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8cf0eda0 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xedae14a9 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x2b0d7bb5 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x91096528 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xb5a835f2 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xba75b79d snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x0f883b90 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x23de8fea snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x063c29b8 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1e187a24 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xb15197da snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xbc8c24cd snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xc3352868 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xdb72c47e snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-i2c 0x025b7966 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x207f7b72 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0x21c73541 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x2a97418e snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x9c0be42b snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x9d558fad snd_i2c_sendbytes -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0ec955d4 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x12d4ee4c snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1ad087ba snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2d81519a snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x48f13907 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4bbcfe98 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5359e571 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5a697d0f snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x60adaa99 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x65a3faa2 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6d1bba18 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x791c66ec snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7e4846c0 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xaa191ed6 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb4e23e3d snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe26ecc79 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe59ca012 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x07264472 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0a90478d snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1af9f424 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x55aec1ee snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5eb4c9a8 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8fee4c95 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb592b1ae snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf9e489b5 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfa127b6e snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x4618c103 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x52c6925e snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x576e414b snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x104d0494 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3d992b2b oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x40d0dfdb oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4330bda1 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4cd19a1a oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x63b345bc oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6582b57e oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x66215699 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6af53b02 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x810a1567 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x827581f0 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x978c5e90 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa33f3da8 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd16a1642 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdeac884c oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe2df80fd oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe4b78e3a oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe5703014 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xea612b6b oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xec70cd5f oxygen_write32_masked -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x00e46a4b snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x22344ef8 snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x2688e1d1 snd_trident_stop_voice -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-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 -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x9406adfe tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xf35e731b tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x2bddbd95 aic32x4_probe -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 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 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 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/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 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 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 0x498815f1 snd_sof_create_page_table -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 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 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 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 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 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 0xc78b9db0 snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcdbb40d2 sof_io_write64 -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 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/soundcore 0x02dd9c11 register_sound_special -EXPORT_SYMBOL sound/soundcore 0x20c0a797 register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0x5772a89c sound_class -EXPORT_SYMBOL sound/soundcore 0x60776fc3 register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xa2aa6bd5 register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x04193e1f snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x173f964a snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x223990d4 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x29da8c99 snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x6e458e21 snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x8e4f1ba2 snd_emux_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x0eda33fa snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x2a48197f snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x6517719f __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x914f3491 snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x9223e14b snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x9adc8c44 __snd_util_memblk_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xc59655e4 snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0xd28dc0da __snd_util_mem_alloc -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -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 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 0x002d18b4 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x003cf09d __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x005be74f tcf_qevent_dump -EXPORT_SYMBOL vmlinux 0x00679eb0 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x007436f5 mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0x007eff6c twl6040_get_pll -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 0x00b3601a unregister_nexthop_notifier -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 0x00f0b187 netif_carrier_off -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x01076947 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x010dab45 pid_task -EXPORT_SYMBOL vmlinux 0x010e293f ___pskb_trim -EXPORT_SYMBOL vmlinux 0x010fd01f get_watch_queue -EXPORT_SYMBOL vmlinux 0x011bab86 prepare_creds -EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set -EXPORT_SYMBOL vmlinux 0x012abba3 __ip_mc_inc_group -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 -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 0x015ed510 key_payload_reserve -EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device -EXPORT_SYMBOL vmlinux 0x0178ffa4 km_query -EXPORT_SYMBOL vmlinux 0x01794538 blk_queue_dma_alignment -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 0x0199c3bd ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x019a6f87 sk_wait_data -EXPORT_SYMBOL vmlinux 0x019cd047 xfrm_policy_walk_done -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 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01ca362d migrate_page_states -EXPORT_SYMBOL vmlinux 0x01fc2966 xfrm_policy_register_afinfo -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 0x0220873a memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x02294a80 tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0x022ae398 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x02377325 devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0x023b5118 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x023ecf8a kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x024b6908 pci_scan_slot -EXPORT_SYMBOL vmlinux 0x025fce35 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x026316f7 pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0x02644e05 vfs_rename -EXPORT_SYMBOL vmlinux 0x026d0ad3 path_is_mountpoint -EXPORT_SYMBOL vmlinux 0x026d375a __sock_create -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x028e95a0 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x029c07bb twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x02a8a490 tcp_add_backlog -EXPORT_SYMBOL vmlinux 0x02ab946c genphy_read_abilities -EXPORT_SYMBOL vmlinux 0x02adcb28 set_binfmt -EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng -EXPORT_SYMBOL vmlinux 0x02c46037 phy_do_ioctl_running -EXPORT_SYMBOL vmlinux 0x02d9a4ae mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x02df9875 tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0x02f5d06c prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0x0305ca9e flow_block_cb_decref -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 0x0360307a __dev_direct_xmit -EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x03633a62 sock_alloc_file -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x03863275 nvmem_get_mac_address -EXPORT_SYMBOL vmlinux 0x03897a0a block_truncate_page -EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x03aa066a seq_putc -EXPORT_SYMBOL vmlinux 0x03b408e6 of_graph_get_endpoint_count -EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x03d0382e napi_gro_receive -EXPORT_SYMBOL vmlinux 0x03e5609e migrate_vma_finalize -EXPORT_SYMBOL vmlinux 0x03e6e370 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x03f60031 pneigh_enqueue -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 0x0429360a sock_pfree -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -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 0x047d0854 ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x04846dbd udp_gro_complete -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 0x04d9bf4e blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x04e4712d remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04fc314b xfrm_replay_seqhi -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 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x05433439 dquot_transfer -EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x0553125a sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 -EXPORT_SYMBOL vmlinux 0x05608e26 param_ops_short -EXPORT_SYMBOL vmlinux 0x0583153a __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0x058604e1 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x05994a3b backlight_device_set_brightness -EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x05b63d92 pin_user_pages_locked -EXPORT_SYMBOL vmlinux 0x05d33927 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x05ef9bcf inode_nohighmem -EXPORT_SYMBOL vmlinux 0x05f66e07 path_has_submounts -EXPORT_SYMBOL vmlinux 0x05fb1835 tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0x0603bd54 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x0608f098 flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0x0612c19a forget_cached_acl -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x0616ad4e input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x0637ec4d flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0x064d8731 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x06548393 netdev_warn -EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x067cc930 param_get_invbool -EXPORT_SYMBOL vmlinux 0x0680b8ef udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x0689757a netdev_alert -EXPORT_SYMBOL vmlinux 0x06927fab vfs_rmdir -EXPORT_SYMBOL vmlinux 0x069addc2 tcp_disconnect -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 0x06fa9a49 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x0711edc8 xudma_dev_get_tisci_rm -EXPORT_SYMBOL vmlinux 0x07229a6a netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0x072501ae __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase -EXPORT_SYMBOL vmlinux 0x074acdc7 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x076dc17c blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl -EXPORT_SYMBOL vmlinux 0x0797ef71 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x079a4d01 phy_drivers_register -EXPORT_SYMBOL vmlinux 0x07a242e3 phy_attached_print -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07a89e36 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x07ad0348 __inet_hash -EXPORT_SYMBOL vmlinux 0x07b49e55 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x07c02331 ip_sock_set_freebind -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 0x07db17be qman_create_fq -EXPORT_SYMBOL vmlinux 0x07dc7a4b ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x07e35197 generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0x07e43677 vfs_tmpfile -EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace -EXPORT_SYMBOL vmlinux 0x07f5e3ae __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched -EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x0809f0d4 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x08157d50 dev_addr_add -EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks -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 0x082e4261 nexthop_set_hw_flags -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 0x08530101 register_filesystem -EXPORT_SYMBOL vmlinux 0x085ada84 file_ns_capable -EXPORT_SYMBOL vmlinux 0x086cb0f0 mmc_release_host -EXPORT_SYMBOL vmlinux 0x0870fac0 lock_page_memcg -EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x089cbe31 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0x089e351c unregister_console -EXPORT_SYMBOL vmlinux 0x08c42ac9 d_tmpfile -EXPORT_SYMBOL vmlinux 0x08ce6349 seq_dentry -EXPORT_SYMBOL vmlinux 0x08d1e04d __nlmsg_put -EXPORT_SYMBOL vmlinux 0x08d51549 flow_rule_alloc -EXPORT_SYMBOL vmlinux 0x08e178fd gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr -EXPORT_SYMBOL vmlinux 0x08e6108b bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x08ec0885 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0x08ed3de6 ptp_find_pin -EXPORT_SYMBOL vmlinux 0x0912888c request_key_tag -EXPORT_SYMBOL vmlinux 0x0918b864 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x094ce4c2 brioctl_set -EXPORT_SYMBOL vmlinux 0x09531d1a __lock_sock_fast -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 0x097cc17d netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x097d133d gnet_stats_copy_app -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 0x09c7f6bf xsk_set_rx_need_wakeup -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 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 0x0ac9a04c eth_get_headlen -EXPORT_SYMBOL vmlinux 0x0accf27e t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0b0b59c2 phy_print_status -EXPORT_SYMBOL vmlinux 0x0b0ca60c d_find_alias -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 0x0b498464 blk_get_request -EXPORT_SYMBOL vmlinux 0x0b5c00d2 phy_device_create -EXPORT_SYMBOL vmlinux 0x0b7094ad touch_atime -EXPORT_SYMBOL vmlinux 0x0b729242 seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -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 0x0b93159f inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0bbfa78c set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x0bc1db80 tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop -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 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 0x0c692e53 mdiobus_write -EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -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 0x0cb616f0 dev_get_flags -EXPORT_SYMBOL vmlinux 0x0cb965a6 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false -EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason -EXPORT_SYMBOL vmlinux 0x0cf58dd8 param_get_byte -EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d264133 mpage_writepage -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 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 0x0d7abd90 xfrm6_rcv_encap -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 0x0db70b46 phy_find_first -EXPORT_SYMBOL vmlinux 0x0dd5ebd0 mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x0dfdf0e9 page_get_link -EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e301885 hmm_range_fault -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 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 0x0ea3c74e tasklet_kill -EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init -EXPORT_SYMBOL vmlinux 0x0eb4df5c consume_skb -EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint -EXPORT_SYMBOL vmlinux 0x0ebfbf82 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x0ec5739c mmc_get_card -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0edba05a textsearch_destroy -EXPORT_SYMBOL vmlinux 0x0edd00f2 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x0ee8fde2 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x0eed6bf1 ip_local_deliver -EXPORT_SYMBOL vmlinux 0x0f011758 cros_ec_get_next_event -EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu -EXPORT_SYMBOL vmlinux 0x0f33ab25 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x0f4269be phy_write_paged -EXPORT_SYMBOL vmlinux 0x0f4dee93 unregister_md_personality -EXPORT_SYMBOL vmlinux 0x0f5b8ac3 nobh_writepage -EXPORT_SYMBOL vmlinux 0x0f6542b1 __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0x0f72e845 get_tree_nodev -EXPORT_SYMBOL vmlinux 0x0f7955ad bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x0f83b3f8 skb_mac_gso_segment -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 0x0fab1ab0 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fc7ca24 __vfs_getxattr -EXPORT_SYMBOL vmlinux 0x0fca31e3 simple_fill_super -EXPORT_SYMBOL vmlinux 0x0fd4a837 dev_disable_lro -EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -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 0x102270bd sock_wfree -EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed -EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source -EXPORT_SYMBOL vmlinux 0x103211e3 eth_commit_mac_addr_change -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 0x105671e5 cdev_device_add -EXPORT_SYMBOL vmlinux 0x1057a279 bsearch -EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x106aea43 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x109fcc30 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x10af21cb d_invalidate -EXPORT_SYMBOL vmlinux 0x10bcd782 arp_tbl -EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x10c76931 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10df9842 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x110f1cd8 fget_raw -EXPORT_SYMBOL vmlinux 0x111eb269 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x112b775c would_dump -EXPORT_SYMBOL vmlinux 0x112e0af3 unix_destruct_scm -EXPORT_SYMBOL vmlinux 0x112f3ecd inet_stream_connect -EXPORT_SYMBOL vmlinux 0x113fb34e of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x1141834f configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x11508be9 param_get_uint -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x117bbba7 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x11af4bc8 d_alloc_name -EXPORT_SYMBOL vmlinux 0x11b04420 max8925_bulk_write -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 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 0x11ffdfee ucc_slow_stop_tx -EXPORT_SYMBOL vmlinux 0x1205d3a1 _copy_from_iter -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -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 0x122c4155 tcp_splice_read -EXPORT_SYMBOL vmlinux 0x122f8646 amba_device_register -EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x124d0628 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x124eec23 blkdev_put -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 0x12a4e128 __arch_copy_from_user -EXPORT_SYMBOL vmlinux 0x12af4b53 dma_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x12b4f20f neigh_lookup -EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12cdc45d ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0x12e09660 register_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x12e80b51 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x12eb1612 bio_advance -EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x1301c38e input_mt_init_slots -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 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 0x1373c57a end_page_writeback -EXPORT_SYMBOL vmlinux 0x137a9c62 devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x137b19ad blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x138bdd96 cpumask_next -EXPORT_SYMBOL vmlinux 0x138f0748 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x13932ca2 nf_hook_slow -EXPORT_SYMBOL vmlinux 0x139ad228 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13b04598 get_fs_type -EXPORT_SYMBOL vmlinux 0x13b0a447 devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x13c9d4b7 scsi_eh_prep_cmnd -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 0x13d98559 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x13ffeb56 skb_copy_expand -EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x14323ed9 ptp_clock_index -EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node -EXPORT_SYMBOL vmlinux 0x144338d0 qdisc_put -EXPORT_SYMBOL vmlinux 0x145796bc xp_raw_get_data -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 0x1486ded2 dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x14959320 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x14a59e5b tcf_block_get -EXPORT_SYMBOL vmlinux 0x14aa3bba register_netdevice -EXPORT_SYMBOL vmlinux 0x14ad7a42 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x14b89635 arm64_const_caps_ready -EXPORT_SYMBOL vmlinux 0x14b9a97e request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14ced76e nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x14d8e5bf tcf_exts_change -EXPORT_SYMBOL vmlinux 0x14db785f jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool -EXPORT_SYMBOL vmlinux 0x14fcf237 sock_edemux -EXPORT_SYMBOL vmlinux 0x15013188 unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0x1511c639 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x151d2a92 d_alloc_parallel -EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible -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 0x154984f8 eth_type_trans -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x155b7134 kthread_create_worker -EXPORT_SYMBOL vmlinux 0x1570bc98 thermal_zone_device_critical -EXPORT_SYMBOL vmlinux 0x15740d49 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x15773123 skb_ext_add -EXPORT_SYMBOL vmlinux 0x15796783 iget5_locked -EXPORT_SYMBOL vmlinux 0x15a07abf flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial -EXPORT_SYMBOL vmlinux 0x15bf800f sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x15c3df6b bio_free_pages -EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init -EXPORT_SYMBOL vmlinux 0x15f20e43 of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init -EXPORT_SYMBOL vmlinux 0x15fdbf24 ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x1608fe3e pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x160c96f0 bdi_put -EXPORT_SYMBOL vmlinux 0x160f2ec3 md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0x161a39ce md_register_thread -EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -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 0x16584d4e kobject_get -EXPORT_SYMBOL vmlinux 0x165ad395 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0x1662b657 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x16778795 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x16a92aa9 __devm_release_region -EXPORT_SYMBOL vmlinux 0x16b4559b write_one_page -EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table -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 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x17548642 flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0x175f1191 dquot_file_open -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 0x17ab9502 tcp_sock_set_user_timeout -EXPORT_SYMBOL vmlinux 0x17af23e8 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x17bd3425 pci_dev_driver -EXPORT_SYMBOL vmlinux 0x17bffefa clk_bulk_get -EXPORT_SYMBOL vmlinux 0x17c2850e scsi_remove_device -EXPORT_SYMBOL vmlinux 0x17c93e1e of_get_cpu_state_node -EXPORT_SYMBOL vmlinux 0x17df24c2 rpmh_invalidate -EXPORT_SYMBOL vmlinux 0x17e2b414 vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0x181e78fd pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -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 0x18888d00 downgrade_write -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x189058b4 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x18b3bec9 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io -EXPORT_SYMBOL vmlinux 0x18bf8968 get_bitmap_from_slot -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 0x18f8a586 alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0x190a48a9 efi -EXPORT_SYMBOL vmlinux 0x1915823d posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x192ff745 nf_hook_slow_list -EXPORT_SYMBOL vmlinux 0x1944a87d __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0x19486a87 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x194c5b66 input_register_handle -EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create -EXPORT_SYMBOL vmlinux 0x19764b5f input_get_timestamp -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 0x198d76e2 __block_write_begin -EXPORT_SYMBOL vmlinux 0x198df11b pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x198e64c1 phy_set_asym_pause -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 0x19cbff95 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x19e4a198 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x19ed2764 misc_deregister -EXPORT_SYMBOL vmlinux 0x19f7be37 __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x1a1c8b27 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x1a1ef213 phy_aneg_done -EXPORT_SYMBOL vmlinux 0x1a1f1d45 dcache_dir_close -EXPORT_SYMBOL vmlinux 0x1a2d4e73 nd_btt_version -EXPORT_SYMBOL vmlinux 0x1a3b72e0 dev_set_threaded -EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a543f35 set_page_dirty -EXPORT_SYMBOL vmlinux 0x1a87538b put_disk -EXPORT_SYMBOL vmlinux 0x1a9031dd pneigh_lookup -EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1aa43f45 inet6_getname -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 0x1b112b52 inet6_release -EXPORT_SYMBOL vmlinux 0x1b1d0be4 tcf_block_put -EXPORT_SYMBOL vmlinux 0x1b22608f param_ops_int -EXPORT_SYMBOL vmlinux 0x1b5196fc xudma_tchan_put -EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all -EXPORT_SYMBOL vmlinux 0x1b6027e8 dev_uc_del -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 0x1ba7b0c5 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x1bad0cdf xudma_get_device -EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc -EXPORT_SYMBOL vmlinux 0x1bb86b9a xen_start_info -EXPORT_SYMBOL vmlinux 0x1bc7e98b netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent -EXPORT_SYMBOL vmlinux 0x1be0677a jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x1c1b8a90 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x1c29a1e3 security_dentry_init_security -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 0x1c72f293 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x1c7b9990 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x1cb42c5b elv_rb_find -EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x1cc88e19 vma_set_file -EXPORT_SYMBOL vmlinux 0x1cd69573 alloc_pages_vma -EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node -EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl -EXPORT_SYMBOL vmlinux 0x1ce1979b blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x1ce2f3a5 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x1ce5d07b sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x1ceb4489 pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0x1cecccce tc_setup_cb_add -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 0x1d07e365 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit -EXPORT_SYMBOL vmlinux 0x1d2cf2b5 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x1d2d9410 mmc_start_request -EXPORT_SYMBOL vmlinux 0x1d358308 __mdiobus_read -EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each -EXPORT_SYMBOL vmlinux 0x1d429152 fget -EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x1d6ad7f9 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x1d8bf3e1 mdiobus_read_nested -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 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 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 0x1e626470 xfrm_spd_getinfo -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 0x1ed7eb60 __sg_free_table -EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1edbbc65 netdev_printk -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 0x1f3d4385 discard_new_inode -EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0x1f67ec6d of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0x1f875e3c del_gendisk -EXPORT_SYMBOL vmlinux 0x1fa702ec of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0x1fae855e inc_nlink -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd89dfc tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x1fe79c3a remove_arg_zero -EXPORT_SYMBOL vmlinux 0x1ff434e6 kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x200d0c04 nexthop_res_grp_activity_update -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 0x205762d7 lock_rename -EXPORT_SYMBOL vmlinux 0x205fd1ad unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x20756d75 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x207d2e09 block_commit_write -EXPORT_SYMBOL vmlinux 0x208c4813 is_bad_inode -EXPORT_SYMBOL vmlinux 0x209a8a59 kernel_recvmsg -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 0x20cbb30a __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x20cd92d9 dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0x20cdcc59 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x20cea5c2 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20fb28ab tty_lock -EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize -EXPORT_SYMBOL vmlinux 0x2101dd7d mmc_card_alternative_gpt_sector -EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context -EXPORT_SYMBOL vmlinux 0x2115fd34 freeze_bdev -EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc -EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x214ada1e ipmr_rule_default -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 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 0x21de1c1a fd_install -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 0x2200d56e devfreq_add_device -EXPORT_SYMBOL vmlinux 0x220c7021 tegra_io_pad_power_disable -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list -EXPORT_SYMBOL vmlinux 0x223bf2ba bio_uninit -EXPORT_SYMBOL vmlinux 0x224ce651 xudma_free_gp_rflow_range -EXPORT_SYMBOL vmlinux 0x224da51d mdiobb_read -EXPORT_SYMBOL vmlinux 0x229484cd netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0x22977eb1 d_lookup -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 0x22cb24a1 get_unmapped_area -EXPORT_SYMBOL vmlinux 0x22d8c7d5 nonseekable_open -EXPORT_SYMBOL vmlinux 0x22eeb0a1 __scm_send -EXPORT_SYMBOL vmlinux 0x22f409fc of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x2302967f netpoll_setup -EXPORT_SYMBOL vmlinux 0x2309c110 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x232703a9 netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0x23449ec6 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x23483f98 inet_csk_reset_keepalive_timer -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 0x236ef202 __neigh_create -EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x237d416d pcim_pin_device -EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x2391f725 irq_stat -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 0x23dd4497 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x23df8bc4 scsi_print_command -EXPORT_SYMBOL vmlinux 0x23e9dde2 make_kprojid -EXPORT_SYMBOL vmlinux 0x23ee2c47 generic_permission -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 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 0x245df309 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x24652574 clk_add_alias -EXPORT_SYMBOL vmlinux 0x24783749 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x248f9cf0 ppp_input -EXPORT_SYMBOL vmlinux 0x249c3a54 phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0x24a3ff4b pnp_release_card_device -EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24d2df92 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x24faac50 vfs_get_fsid -EXPORT_SYMBOL vmlinux 0x24fd9073 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x24ff234a tcf_idrinfo_destroy -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 0x252332f1 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x25252c36 dcache_readdir -EXPORT_SYMBOL vmlinux 0x252a0af0 phy_start -EXPORT_SYMBOL vmlinux 0x252d2f0d mark_page_accessed -EXPORT_SYMBOL vmlinux 0x252f8d43 proc_set_size -EXPORT_SYMBOL vmlinux 0x2546b3ce fman_set_port_params -EXPORT_SYMBOL vmlinux 0x2547a20a inode_get_bytes -EXPORT_SYMBOL vmlinux 0x25500388 iptun_encaps -EXPORT_SYMBOL vmlinux 0x2552d468 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x25582edd dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x255a2949 dma_resv_fini -EXPORT_SYMBOL vmlinux 0x25665599 dev_trans_start -EXPORT_SYMBOL vmlinux 0x256ce15e sock_no_sendmsg -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 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 0x25fd61b6 tcp_shutdown -EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x26163882 tcp_time_wait -EXPORT_SYMBOL vmlinux 0x2617e6a8 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x261f57fe tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0x263b2605 of_mdio_find_device -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x263c3152 bcmp -EXPORT_SYMBOL vmlinux 0x263da47b skb_find_text -EXPORT_SYMBOL vmlinux 0x263de61d no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod -EXPORT_SYMBOL vmlinux 0x264df7de ether_setup -EXPORT_SYMBOL vmlinux 0x265879b7 vfs_iter_read -EXPORT_SYMBOL vmlinux 0x265aa225 inode_init_once -EXPORT_SYMBOL vmlinux 0x265c0def xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0x266ba6d1 tcf_qevent_handle -EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc -EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x268f04ec give_up_console -EXPORT_SYMBOL vmlinux 0x269ebf4f phy_stop -EXPORT_SYMBOL vmlinux 0x26a77385 tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0x26a821d5 vmf_insert_mixed_prot -EXPORT_SYMBOL vmlinux 0x26b72ccb phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0x26cc73c3 complete_and_exit -EXPORT_SYMBOL vmlinux 0x26dd8ad5 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e98aa1 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x26f0ca98 keyring_search -EXPORT_SYMBOL vmlinux 0x26fb4209 ping_prot -EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x271e2cd4 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x27397317 dec_node_page_state -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 0x27756bc8 scsi_sanitize_inquiry_string -EXPORT_SYMBOL vmlinux 0x27778d87 blk_mq_delay_run_hw_queues -EXPORT_SYMBOL vmlinux 0x27786b85 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x2779900e md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x27810361 acpi_os_wait_events_complete -EXPORT_SYMBOL vmlinux 0x278201b5 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -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 0x27c53656 nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x281f8d49 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x28206e12 dquot_operations -EXPORT_SYMBOL vmlinux 0x282f1aaa devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x2831064d eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0x28465980 acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0x28638bfa dma_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x28ac67c0 netpoll_send_skb -EXPORT_SYMBOL vmlinux 0x28b1c684 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x28c3d646 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0x28dfdc30 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x28e3bae6 mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0x28e6f219 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x28f13462 nf_log_unset -EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x29178bbb cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x293e18bc d_set_fallthru -EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x296ad522 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x2970cf00 config_item_get -EXPORT_SYMBOL vmlinux 0x2970fef2 remap_pfn_range -EXPORT_SYMBOL vmlinux 0x297fbb36 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x299a381b filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x29a171e0 __serio_register_driver -EXPORT_SYMBOL vmlinux 0x29b5ef72 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29e2909d km_state_notify -EXPORT_SYMBOL vmlinux 0x29ec87e0 tso_count_descs -EXPORT_SYMBOL vmlinux 0x29f6695b ppp_unit_number -EXPORT_SYMBOL vmlinux 0x29ff74c6 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x2a00367c mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0x2a01d844 block_write_end -EXPORT_SYMBOL vmlinux 0x2a2902cc mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a35acbf xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0x2a3c3f4a __alloc_skb -EXPORT_SYMBOL vmlinux 0x2a5a1120 clear_nlink -EXPORT_SYMBOL vmlinux 0x2a5f81d0 sdev_enable_disk_events -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 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 0x2ac0b91c tcp_make_synack -EXPORT_SYMBOL vmlinux 0x2aca8614 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x2acf6f34 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x2aeb8acd __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x2b11ba80 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x2b124c1c ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 -EXPORT_SYMBOL vmlinux 0x2b2b780e neigh_table_init -EXPORT_SYMBOL vmlinux 0x2b3f31b0 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x2b408b5e dma_supported -EXPORT_SYMBOL vmlinux 0x2b4eb824 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x2b58f2a4 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2b59dd93 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x2b60428f iproc_msi_init -EXPORT_SYMBOL vmlinux 0x2b6e8c37 of_phy_connect -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 0x2b86e862 tso_build_data -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock -EXPORT_SYMBOL vmlinux 0x2bbc575f buffer_check_dirty_writeback -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 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 0x2bfffcb2 mroute6_is_socket -EXPORT_SYMBOL vmlinux 0x2c1c1004 kern_path -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c270afc input_set_timestamp -EXPORT_SYMBOL vmlinux 0x2c31a1c3 pci_read_config_dword -EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up -EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x2c636910 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x2c6b8cf4 __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool -EXPORT_SYMBOL vmlinux 0x2c80a5bd __napi_alloc_skb -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 0x2cc4c10b register_cdrom -EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2cd8c70e tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0x2cd9c793 dev_addr_del -EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x2cfc8255 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x2cfcf645 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d17cf65 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -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 0x2d4e3abc page_pool_return_skb_page -EXPORT_SYMBOL vmlinux 0x2d56d6fc md_error -EXPORT_SYMBOL vmlinux 0x2d75d6d3 regset_get -EXPORT_SYMBOL vmlinux 0x2d90fe71 inet6_offloads -EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year -EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2daf1654 udp_seq_ops -EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs -EXPORT_SYMBOL vmlinux 0x2de3474c scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x2de4ab88 sk_mc_loop -EXPORT_SYMBOL vmlinux 0x2dfd443d __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x2e00e176 xfrm_state_delete -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 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 0x2e6313a5 pci_iounmap -EXPORT_SYMBOL vmlinux 0x2e741753 km_policy_expired -EXPORT_SYMBOL vmlinux 0x2e7d5798 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x2e820567 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x2e970d0e kfree_skb_reason -EXPORT_SYMBOL vmlinux 0x2e998a2a par_io_of_config -EXPORT_SYMBOL vmlinux 0x2ea0c48d tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0x2ea52d3e dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0x2ebb5078 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x2ebbdee5 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ee01bd2 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x2eea912c get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x2efd45db xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f0a7b53 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init -EXPORT_SYMBOL vmlinux 0x2f1b8ee0 pci_disable_ptm -EXPORT_SYMBOL vmlinux 0x2f26513b mmc_cqe_start_req -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 0x2f40920f generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x2f50ab65 unregister_netdev -EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f86dff0 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x2f8e3cce generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x2fc02af4 sock_no_connect -EXPORT_SYMBOL vmlinux 0x2fcb81f9 nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x2fd1a016 security_sock_graft -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 0x30080d83 ip_defrag -EXPORT_SYMBOL vmlinux 0x300d482a iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp -EXPORT_SYMBOL vmlinux 0x30533b3c of_match_device -EXPORT_SYMBOL vmlinux 0x3059c877 xfrm_register_km -EXPORT_SYMBOL vmlinux 0x306874a3 scsi_partsize -EXPORT_SYMBOL vmlinux 0x306ded9e phy_init_eee -EXPORT_SYMBOL vmlinux 0x30887ef8 of_xudma_dev_get -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 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30efc4c7 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x30f05b66 phy_get_pause -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 0x3126a9e8 siphash_1u64 -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 0x319d493d proc_dostring -EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available -EXPORT_SYMBOL vmlinux 0x31a990b0 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x31bd8c16 unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x31d253f5 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x31ff9553 adjust_managed_page_count -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 0x32232254 ip_options_compile -EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd -EXPORT_SYMBOL vmlinux 0x324d55cf __ps2_command -EXPORT_SYMBOL vmlinux 0x3252e1a7 tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0x32580397 of_device_get_match_data -EXPORT_SYMBOL vmlinux 0x327237e2 cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0x327a04dc mmc_sw_reset -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 0x32bef66f ip_tunnel_header_ops -EXPORT_SYMBOL vmlinux 0x32ccba1b dma_resv_add_excl_fence -EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32d3420f sock_no_linger -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 0x331f1728 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down -EXPORT_SYMBOL vmlinux 0x3335d91e udp_pre_connect -EXPORT_SYMBOL vmlinux 0x3348a14f __vfs_setxattr -EXPORT_SYMBOL vmlinux 0x33515586 seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0x33575d0b mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x3359e298 inet_sendpage -EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x337437ee linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x337e13c8 finish_no_open -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 0x339f4567 tty_vhangup -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 0x33f43db3 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0x33f4bed5 neigh_parms_release -EXPORT_SYMBOL vmlinux 0x33f60a62 setup_new_exec -EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq -EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x341a1f11 pcie_set_readrq -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 0x343ebf8f acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0x34445272 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x344af75c genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x34542078 sock_set_priority -EXPORT_SYMBOL vmlinux 0x34701cf8 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x3478a558 security_inet_conn_established -EXPORT_SYMBOL vmlinux 0x348ead01 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd -EXPORT_SYMBOL vmlinux 0x34a76cf1 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x34ae331f udp_sendmsg -EXPORT_SYMBOL vmlinux 0x34b009a7 phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0x34b16334 __next_node_in -EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34c8b344 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34f5bd1b xp_dma_sync_for_cpu_slow -EXPORT_SYMBOL vmlinux 0x3503ed4d tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait -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 0x3569aa20 flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0x357c44fa mmc_erase -EXPORT_SYMBOL vmlinux 0x357cc670 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x357ebe1e sk_free -EXPORT_SYMBOL vmlinux 0x359b8c11 generic_fadvise -EXPORT_SYMBOL vmlinux 0x35a1fe6a param_get_int -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35a92307 netdev_emerg -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 0x35f6668c i2c_add_adapter -EXPORT_SYMBOL vmlinux 0x3602008b dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x36275341 user_path_at_empty -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 0x3648b001 tcf_exts_terse_dump -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 0x36831e13 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x3689c9a3 tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0x368c4e18 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x36a43375 read_cache_page -EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable -EXPORT_SYMBOL vmlinux 0x36ce1ffc sk_alloc -EXPORT_SYMBOL vmlinux 0x36d93df0 mr_fill_mroute -EXPORT_SYMBOL vmlinux 0x36eea3b7 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x36f28f98 flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue -EXPORT_SYMBOL vmlinux 0x37235b7e netdev_notice -EXPORT_SYMBOL vmlinux 0x37296124 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x372de7c8 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x372ee029 kill_fasync -EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound -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 0x375fbaea pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0x37619a11 skb_dump -EXPORT_SYMBOL vmlinux 0x376abd83 finish_swait -EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream -EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error -EXPORT_SYMBOL vmlinux 0x37862e05 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x3793c272 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x379a168b prepare_to_swait_exclusive -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 0x37db8f19 dmi_get_date -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 0x37f9bed7 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x37fb1931 __hw_addr_ref_unsync_dev -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 0x3833551e __vfs_removexattr -EXPORT_SYMBOL vmlinux 0x384f07d9 ip6_output -EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -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 0x38998084 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x389c2fcc input_unregister_device -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 0x38df201f mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit -EXPORT_SYMBOL vmlinux 0x38f23bfb sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq -EXPORT_SYMBOL vmlinux 0x391206cd genphy_config_eee_advert -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 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach -EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x3956c357 alloc_netdev_mqs -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 0x39aab461 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x39afbf5f __xfrm_state_destroy -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 0x39c18566 mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0x39e5ec34 udp_lib_setsockopt -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 0x3a2f6702 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x3a3b3016 inet_del_protocol -EXPORT_SYMBOL vmlinux 0x3a3ce1a4 seq_read -EXPORT_SYMBOL vmlinux 0x3a3f14f7 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x3a4397ef flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0x3a48fc02 seq_escape -EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -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 0x3aa3af31 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x3ab6e73a ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3ac4e5ac flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0x3acb2691 devm_devfreq_unregister_opp_notifier -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 0x3af5d9c2 devm_of_iomap -EXPORT_SYMBOL vmlinux 0x3af789f3 pci_map_rom -EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0x3b05dffa d_drop -EXPORT_SYMBOL vmlinux 0x3b0f23d2 xudma_is_pktdma -EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b38806a mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x3b4bc1af super_setup_bdi -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 0x3b9144c9 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x3b914ada proc_set_user -EXPORT_SYMBOL vmlinux 0x3bb4c1c1 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x3bb58157 rproc_add -EXPORT_SYMBOL vmlinux 0x3bc2a27d of_chosen -EXPORT_SYMBOL vmlinux 0x3bc2e352 __kfree_skb -EXPORT_SYMBOL vmlinux 0x3bc55efc param_get_string -EXPORT_SYMBOL vmlinux 0x3bdcf92e wireless_spy_update -EXPORT_SYMBOL vmlinux 0x3bddc937 d_rehash -EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3beacb0a skb_free_datagram -EXPORT_SYMBOL vmlinux 0x3c07eac2 sk_net_capable -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 0x3c3215c4 qe_immr -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c41e3d0 page_pool_update_nid -EXPORT_SYMBOL vmlinux 0x3c49015e __ip_select_ident -EXPORT_SYMBOL vmlinux 0x3c504aa9 pps_event -EXPORT_SYMBOL vmlinux 0x3c5560a8 mmc_put_card -EXPORT_SYMBOL vmlinux 0x3c6919d7 tcp_mmap -EXPORT_SYMBOL vmlinux 0x3c961077 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x3ca0c3cd __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x3cb93dae tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0x3cbafc58 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x3ccbab1b pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3cf16c27 inet_del_offload -EXPORT_SYMBOL vmlinux 0x3cfd0665 skb_append -EXPORT_SYMBOL vmlinux 0x3cfd12d8 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x3d015543 tcf_idr_create -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 0x3d21199a tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x3d385328 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x3d3bebac copy_page_from_iter_atomic -EXPORT_SYMBOL vmlinux 0x3d3dd35b blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d5a5201 skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0x3d767a42 add_watch_to_object -EXPORT_SYMBOL vmlinux 0x3d8603b7 mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0x3d8a1614 sock_create_lite -EXPORT_SYMBOL vmlinux 0x3d93c7c2 __arm_smccc_sve_check -EXPORT_SYMBOL vmlinux 0x3d9afd03 clear_bdi_congested -EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page -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 0x3dbed966 component_match_add_release -EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -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 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e42e4fc blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x3e4e33f4 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc -EXPORT_SYMBOL vmlinux 0x3e7d8b9d devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x3e97cea9 pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0x3ea5316e pin_user_pages -EXPORT_SYMBOL vmlinux 0x3ea81b43 filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0x3eac7936 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x3ebea62e sock_no_listen -EXPORT_SYMBOL vmlinux 0x3ed6f75e alloc_mdio_bitbang -EXPORT_SYMBOL vmlinux 0x3edf2ed4 io_uring_get_socket -EXPORT_SYMBOL vmlinux 0x3ee51798 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up -EXPORT_SYMBOL vmlinux 0x3eee8cca input_allocate_device -EXPORT_SYMBOL vmlinux 0x3ef2d06b sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3f01a654 dst_init -EXPORT_SYMBOL vmlinux 0x3f0686e6 udp_gro_receive -EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f20e135 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x3f23a830 jbd2_journal_check_available_features -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 0x3f81d5c3 secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0x3f886111 scsi_host_busy -EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3fae1614 blk_execute_rq -EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fcb85ed jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x3fd6df63 xattr_supported_namespace -EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3ff386de __dev_set_mtu -EXPORT_SYMBOL vmlinux 0x400e6531 register_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x401f985b blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x4028fa90 dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0x404b9b5a jbd2_journal_finish_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x40558289 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x40580393 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x4059e888 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x406220de sk_stop_timer_sync -EXPORT_SYMBOL vmlinux 0x406dfbc7 kernel_read -EXPORT_SYMBOL vmlinux 0x40705a5c ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x4070fc31 netdev_notify_peers -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 0x40993d5f mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0x40a233d6 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40b55f8c phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0x40b66988 skb_pull -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -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 0x40ded2eb nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x40f37b03 nla_reserve -EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc -EXPORT_SYMBOL vmlinux 0x411f863a phy_connect_direct -EXPORT_SYMBOL vmlinux 0x412d2b0d unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x414da5e5 qman_enqueue -EXPORT_SYMBOL vmlinux 0x41521039 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x4183d2fd scsi_scan_host -EXPORT_SYMBOL vmlinux 0x4183ecc3 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418f66b0 input_event -EXPORT_SYMBOL vmlinux 0x41a8cd92 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x41de5733 dma_free_attrs -EXPORT_SYMBOL vmlinux 0x41e0e291 phy_device_remove -EXPORT_SYMBOL vmlinux 0x41eb51c3 mr_table_dump -EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes -EXPORT_SYMBOL vmlinux 0x41eddf26 xfrm_stateonly_find -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 0x41f9147e __skb_pad -EXPORT_SYMBOL vmlinux 0x41fb1f74 msm_pinctrl_probe -EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x42163510 __mod_lruvec_page_state -EXPORT_SYMBOL vmlinux 0x4216ad6d vlan_for_each -EXPORT_SYMBOL vmlinux 0x421a80f8 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x42246692 acpi_bus_register_driver -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 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type -EXPORT_SYMBOL vmlinux 0x425cdbb7 inet_offloads -EXPORT_SYMBOL vmlinux 0x4283e194 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x42c5da64 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x42ceb44e scsi_device_put -EXPORT_SYMBOL vmlinux 0x42d4aa83 netdev_info -EXPORT_SYMBOL vmlinux 0x42d61605 jbd2_submit_inode_data -EXPORT_SYMBOL vmlinux 0x42df1ce2 tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x430545cc crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x431d7383 noop_llseek -EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate -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 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x43845cf0 tegra_ivc_reset -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x438c5042 refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0x43c19905 sk_dst_check -EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43d4459b pci_request_regions -EXPORT_SYMBOL vmlinux 0x43e3dfaa neigh_connected_output -EXPORT_SYMBOL vmlinux 0x43e5985e zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember -EXPORT_SYMBOL vmlinux 0x43fdd2b6 serial8250_register_8250_port -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 0x440ad88e may_umount_tree -EXPORT_SYMBOL vmlinux 0x4422ed93 rt_dst_alloc -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 0x445d5ded nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq -EXPORT_SYMBOL vmlinux 0x4483f9d2 netdev_rx_csum_fault -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 0x44ce46da netdev_state_change -EXPORT_SYMBOL vmlinux 0x44d28a2c rproc_report_crash -EXPORT_SYMBOL vmlinux 0x44de49e1 __skb_gro_checksum_complete -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 0x452413a1 qman_alloc_pool_range -EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x4536ec50 sk_capable -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x453df1fd sync_blockdev -EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x458a682d generic_set_encrypted_ci_d_ops -EXPORT_SYMBOL vmlinux 0x459318ce arp_send -EXPORT_SYMBOL vmlinux 0x4594c9da __inode_add_bytes -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 0x460f4a34 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x4611cc4c pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents -EXPORT_SYMBOL vmlinux 0x46241a71 skb_expand_head -EXPORT_SYMBOL vmlinux 0x463219fb tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x46322789 skb_eth_push -EXPORT_SYMBOL vmlinux 0x46379257 inet_csk_accept -EXPORT_SYMBOL vmlinux 0x4645159e __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size -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 0x46a183d7 simple_transaction_set -EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46de1338 bioset_init_from_src -EXPORT_SYMBOL vmlinux 0x46efabb7 napi_complete_done -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 0x471dfd13 set_bdi_congested -EXPORT_SYMBOL vmlinux 0x473b2119 __ClearPageMovable -EXPORT_SYMBOL vmlinux 0x474304ea skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x47516bdf put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0x475541c3 __mmap_lock_do_trace_acquire_returned -EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom -EXPORT_SYMBOL vmlinux 0x47680031 amba_find_device -EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x4777efc7 mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0x47838da5 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x479f936c skb_checksum_help -EXPORT_SYMBOL vmlinux 0x47b6fb89 dst_alloc -EXPORT_SYMBOL vmlinux 0x47bc8634 dst_destroy -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 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 0x481f50ef inet_sendmsg -EXPORT_SYMBOL vmlinux 0x4829a47e memcpy -EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0x4837bb10 logic_outsb -EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config -EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 -EXPORT_SYMBOL vmlinux 0x4851a645 amba_release_regions -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x485a113c blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x485efddb sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x486bd683 md_finish_reshape -EXPORT_SYMBOL vmlinux 0x489eda10 memset32 -EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim -EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48b2f1c0 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x48e0bb99 skb_dequeue -EXPORT_SYMBOL vmlinux 0x48f181b1 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x490deabd inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x490e8c3d phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x491e353d is_acpi_data_node -EXPORT_SYMBOL vmlinux 0x49261800 eth_gro_complete -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 0x495d096a tcf_get_next_proto -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 0x4972d4d6 i2c_smbus_read_block_data -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 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49c30759 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x49d83428 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x49e7cb23 vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0x49f80a2c skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x49fe3689 put_fs_context -EXPORT_SYMBOL vmlinux 0x4a035595 mmc_of_parse_clk_phase -EXPORT_SYMBOL vmlinux 0x4a0412db dev_get_by_index -EXPORT_SYMBOL vmlinux 0x4a0f7461 set_nlink -EXPORT_SYMBOL vmlinux 0x4a10017c mmc_can_erase -EXPORT_SYMBOL vmlinux 0x4a1bb652 ip6_route_me_harder -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 0x4a53d61f inet_ioctl -EXPORT_SYMBOL vmlinux 0x4a606d86 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x4a7169d8 security_unix_may_send -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 0x4a99f328 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x4aa47fac netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0x4aa564e5 param_ops_long -EXPORT_SYMBOL vmlinux 0x4ac2219b km_report -EXPORT_SYMBOL vmlinux 0x4acfabe6 __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0x4ad3ec20 pcie_relaxed_ordering_enabled -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 0x4b1a6d3f skb_queue_tail -EXPORT_SYMBOL vmlinux 0x4b41890e amba_device_unregister -EXPORT_SYMBOL vmlinux 0x4b4345bd mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0x4b5eaf63 napi_enable -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 0x4ba8f9be reuseport_select_sock -EXPORT_SYMBOL vmlinux 0x4bae2abc nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0x4bafb616 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0x4bb4f94b mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0x4bb7c9d9 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node -EXPORT_SYMBOL vmlinux 0x4bda6f4b udp6_set_csum -EXPORT_SYMBOL vmlinux 0x4bee36a9 bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid -EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c2164d9 __register_nls -EXPORT_SYMBOL vmlinux 0x4c286ed9 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x4c31bbfd kernel_listen -EXPORT_SYMBOL vmlinux 0x4c37f4de inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c6abbde __d_drop -EXPORT_SYMBOL vmlinux 0x4c6df894 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x4c758a8c skb_store_bits -EXPORT_SYMBOL vmlinux 0x4c7702e6 vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0x4c92d1da inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x4c9555af genphy_loopback -EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x4cedd601 dm_table_event -EXPORT_SYMBOL vmlinux 0x4d0bd703 fman_set_mac_active_pause -EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d3a7cef pci_write_config_word -EXPORT_SYMBOL vmlinux 0x4d40eac4 of_match_node -EXPORT_SYMBOL vmlinux 0x4d537b23 inet_getname -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 0x4d8967dd tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x4d924f20 memremap -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq -EXPORT_SYMBOL vmlinux 0x4db46a62 pci_get_domain_bus_and_slot -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 0x4dfa8d4b mutex_lock -EXPORT_SYMBOL vmlinux 0x4e062126 register_netdev -EXPORT_SYMBOL vmlinux 0x4e0f4871 tcp_prot -EXPORT_SYMBOL vmlinux 0x4e1bbf18 block_is_partially_uptodate -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 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 0x4e4443c3 dev_change_proto_down_reason -EXPORT_SYMBOL vmlinux 0x4e4cf492 tcp_enter_cwr -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 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 0x4e952a1b netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset -EXPORT_SYMBOL vmlinux 0x4ea3e6d3 vme_slot_num -EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0x4eba8bf3 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ec84c8c __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x4ecc499f cdrom_open -EXPORT_SYMBOL vmlinux 0x4eeaa2f1 sock_bind_add -EXPORT_SYMBOL vmlinux 0x4ef8db31 tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x4f0eb3f3 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f1f49c4 skb_put -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -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 0x4f771aa1 dev_get_by_name -EXPORT_SYMBOL vmlinux 0x4f7dd294 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x4f8654f8 mii_check_gmii_support -EXPORT_SYMBOL vmlinux 0x4fb24ffd vc_cons -EXPORT_SYMBOL vmlinux 0x4fbef1ff page_mapped -EXPORT_SYMBOL vmlinux 0x4fd25f7d filp_open -EXPORT_SYMBOL vmlinux 0x4fdfbc7b vme_register_error_handler -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 0x5027bde2 acpi_acquire_mutex -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 0x5062f0b4 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x50651c70 genl_register_family -EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x50790237 dma_async_device_register -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 0x50b73101 da903x_query_status -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 0x50c64bb3 rpmh_write -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 0x50f85302 __arm_smccc_hvc -EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr -EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x510414f7 has_capability -EXPORT_SYMBOL vmlinux 0x510cdf0a mdiobus_register_device -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 0x5167cfc5 netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0x5168a281 key_link -EXPORT_SYMBOL vmlinux 0x5189c580 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0x51b40718 trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51e4496b vfs_get_link -EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready -EXPORT_SYMBOL vmlinux 0x52068e89 arp_create -EXPORT_SYMBOL vmlinux 0x5207c133 put_devmap_managed_page -EXPORT_SYMBOL vmlinux 0x52148751 nf_log_set -EXPORT_SYMBOL vmlinux 0x5219ff1c xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x521dd673 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x522a48dd xfrm_unregister_type -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 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x529a1502 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x529b5dbd dev_deactivate -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 0x52eb3eac put_cmsg -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 0x52fd6bfa scm_detach_fds -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 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 0x53b954a2 up_read -EXPORT_SYMBOL vmlinux 0x53c0b758 scsi_host_put -EXPORT_SYMBOL vmlinux 0x53d4c95b sock_init_data -EXPORT_SYMBOL vmlinux 0x53dae230 iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0x53dc9de3 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x53e50ffa first_ec -EXPORT_SYMBOL vmlinux 0x53eff192 tegra_ivc_align -EXPORT_SYMBOL vmlinux 0x53f2bb09 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock -EXPORT_SYMBOL vmlinux 0x5402da9f xudma_navss_psil_pair -EXPORT_SYMBOL vmlinux 0x5407b909 generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0x5408ec31 mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0x540c4a26 tty_register_device -EXPORT_SYMBOL vmlinux 0x54226383 neigh_update -EXPORT_SYMBOL vmlinux 0x542b51f0 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x543570f9 rtnl_notify -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 0x544d77ed ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0x546bb6b0 nobh_write_end -EXPORT_SYMBOL vmlinux 0x54702ddf jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x5477d4a3 fqdir_init -EXPORT_SYMBOL vmlinux 0x548408af __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x54a97f22 noop_qdisc -EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value -EXPORT_SYMBOL vmlinux 0x54cb584b tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x54dc9718 ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0x54e29c8f tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54e8de45 inode_init_owner -EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags -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 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 0x552db3aa qman_query_cgr_congested -EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x55791411 xfrm_input_resume -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 0x55bebd03 param_set_short -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 0x55f481bc __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x560ce937 param_set_copystring -EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh -EXPORT_SYMBOL vmlinux 0x561db533 genphy_update_link -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -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 0x565c77bd phy_driver_register -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 0x567d8e79 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x56a2db18 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x56b819c8 msm_pinctrl_remove -EXPORT_SYMBOL vmlinux 0x56c16d72 tcp_read_sock -EXPORT_SYMBOL vmlinux 0x56c2f39f acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x56c4f4a6 mmc_free_host -EXPORT_SYMBOL vmlinux 0x56c7e46a tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56cfe3bb inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0x56e337f8 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x5722863a security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0x57251f35 flush_dcache_page -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 0x578a408b ZSTD_initDCtx -EXPORT_SYMBOL vmlinux 0x578faf86 end_buffer_read_sync -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 0x57cc2ca4 skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x57d221bc generic_read_dir -EXPORT_SYMBOL vmlinux 0x57dfe26f kill_pid -EXPORT_SYMBOL vmlinux 0x57ee7fef sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x57f2f112 nobh_write_begin -EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info -EXPORT_SYMBOL vmlinux 0x57fd7a10 clkdev_drop -EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0x581d4d6a reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x582606eb xudma_rflow_put -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 0x585ae877 nmi_panic -EXPORT_SYMBOL vmlinux 0x5860dba9 __register_binfmt -EXPORT_SYMBOL vmlinux 0x58614d42 build_skb_around -EXPORT_SYMBOL vmlinux 0x5864894b ip_ct_attach -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 0x587df224 lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -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 0x58b4645c dev_close_many -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58bc6ce6 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x58cde381 __udp_disconnect -EXPORT_SYMBOL vmlinux 0x58d6645d __serio_register_port -EXPORT_SYMBOL vmlinux 0x58de1707 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -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 0x591d61df tso_start -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 0x5988942e md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0x5998032e vfs_mkdir -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 0x59b5d854 lookup_one_unlocked -EXPORT_SYMBOL vmlinux 0x59bbafbc __skb_get_hash -EXPORT_SYMBOL vmlinux 0x59df295c xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x59efa07a set_blocksize -EXPORT_SYMBOL vmlinux 0x59f208f7 sock_bindtoindex -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a1a6471 simple_setattr -EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5a2ee411 ip_do_fragment -EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq -EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 -EXPORT_SYMBOL vmlinux 0x5a6299cb netif_carrier_on -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 0x5ab8fc19 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x5ad1b355 tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0x5adb619c __skb_recv_udp -EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -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 0x5b2f27fb do_wait_intr -EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax -EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store -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 0x5b5ea81b vfs_readlink -EXPORT_SYMBOL vmlinux 0x5b900d47 __skb_recv_datagram -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 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 0x5bd6a6fa sg_miter_skip -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 0x5c2197f8 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout -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 0x5c6949ae vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x5c7f4cbd devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x5c88b504 xfrm_policy_delete -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 0x5cf3e6dc devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state -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 0x5d4774a1 eth_validate_addr -EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5da78a79 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh -EXPORT_SYMBOL vmlinux 0x5db904ea register_console -EXPORT_SYMBOL vmlinux 0x5dc4c0f0 pci_iomap -EXPORT_SYMBOL vmlinux 0x5deb9d18 __lock_page -EXPORT_SYMBOL vmlinux 0x5debcb1d mmc_is_req_done -EXPORT_SYMBOL vmlinux 0x5df04481 single_open -EXPORT_SYMBOL vmlinux 0x5df519d5 tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0x5dfe4369 i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0x5dffabde phy_register_fixup -EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict -EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e0db225 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x5e107998 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x5e1dcdb8 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x5e2d49d1 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x5e3240a0 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue -EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e578327 input_register_device -EXPORT_SYMBOL vmlinux 0x5e670812 of_graph_get_port_by_id -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 0x5e8bd047 nvdimm_bus_unlock -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 0x5ec08734 devm_ioport_map -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 0x5ed13d72 tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -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 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 0x5f47a8f5 skb_seq_read -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 0x5f6e72e7 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x5f78f334 tty_unregister_device -EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package -EXPORT_SYMBOL vmlinux 0x5f98bdb6 nf_hooks_needed -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 0x5ff890db tty_port_close_end -EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x600cdd6b vme_dma_request -EXPORT_SYMBOL vmlinux 0x600e9d50 udp_disconnect -EXPORT_SYMBOL vmlinux 0x6011d256 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602042df mdiobb_write -EXPORT_SYMBOL vmlinux 0x60233b0c path_is_under -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x604caf9c blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x605d0d8c param_set_uint -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 0x60a31dab sock_setsockopt -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 0x60c5fe0f __sk_receive_skb -EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60dec227 module_refcount -EXPORT_SYMBOL vmlinux 0x60e42d80 udp_set_csum -EXPORT_SYMBOL vmlinux 0x60e79cfa bioset_init -EXPORT_SYMBOL vmlinux 0x60ea64a3 phy_get_internal_delay -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 0x61445fc1 km_state_expired -EXPORT_SYMBOL vmlinux 0x614b057a devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x6158f731 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x615ab299 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x615ace3c blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0x6160e77b inetdev_by_index -EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge -EXPORT_SYMBOL vmlinux 0x61690a93 flow_block_cb_setup_simple -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 0x618ecf4c pnp_get_resource -EXPORT_SYMBOL vmlinux 0x61930ee3 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x61954fd2 dma_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61a9b96f qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x61ac4d47 tcf_register_action -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61bd4866 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x61c05bd7 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x61cc1b61 pnp_is_active -EXPORT_SYMBOL vmlinux 0x61d4fe0f nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x61e02271 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x61e06163 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final -EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61ead194 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x61ee5de3 qdisc_class_hash_grow -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 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x62483f17 xp_alloc -EXPORT_SYMBOL vmlinux 0x624aa681 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0x625379d2 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x6267939d skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x6271a949 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x6287fd55 dst_cow_metrics_generic -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 0x62948e5a sk_ns_capable -EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x62ba7c27 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x62bc5cb3 pskb_extract -EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62c7a4f6 devm_release_resource -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 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 0x632ce9db migrate_page -EXPORT_SYMBOL vmlinux 0x6359d138 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x635c90bd ip_route_input_noref -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 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 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63f11e89 vfs_parse_fs_param_source -EXPORT_SYMBOL vmlinux 0x63f92c2c fb_class -EXPORT_SYMBOL vmlinux 0x6404d997 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x6409cae1 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x6419e1b6 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x642b4a6e pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x642ee874 kfree_skb_list -EXPORT_SYMBOL vmlinux 0x643bbaef netdev_err -EXPORT_SYMBOL vmlinux 0x643bbdbb vfs_mknod -EXPORT_SYMBOL vmlinux 0x643f3068 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x644be12c qman_affine_cpus -EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 -EXPORT_SYMBOL vmlinux 0x648223db reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0x6484ab12 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x648a3389 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -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 0x64bbc288 string_unescape -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 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x652dc05c phy_ethtool_get_sset_count -EXPORT_SYMBOL vmlinux 0x652e9c7c netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0x65300bd1 ip_queue_xmit -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 0x655da2cf inet_rtx_syn_ack -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 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 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 0x65f3b233 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x6626afca down -EXPORT_SYMBOL vmlinux 0x662a2233 get_vm_area -EXPORT_SYMBOL vmlinux 0x663a325e d_add_ci -EXPORT_SYMBOL vmlinux 0x664b1e29 qman_delete_cgr -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 0x66ae2f1e phy_read_paged -EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup -EXPORT_SYMBOL vmlinux 0x66c570c8 of_node_name_prefix -EXPORT_SYMBOL vmlinux 0x66c8d8f5 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x66ca1156 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x66f3574d flush_signals -EXPORT_SYMBOL vmlinux 0x671f3c7d input_set_keycode -EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid -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 0x676aa9bc tty_hangup -EXPORT_SYMBOL vmlinux 0x676d39b9 dst_discard_out -EXPORT_SYMBOL vmlinux 0x677d8d9c tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0x677f6f9d d_mark_dontcache -EXPORT_SYMBOL vmlinux 0x678893f0 open_exec -EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x67900120 kern_unmount_array -EXPORT_SYMBOL vmlinux 0x67935325 flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x67a4d763 submit_bh -EXPORT_SYMBOL vmlinux 0x67a66147 tcp_poll -EXPORT_SYMBOL vmlinux 0x67ab78e3 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x67aba10a secpath_set -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 0x67ded8dc sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x67e368a6 __nla_reserve -EXPORT_SYMBOL vmlinux 0x67feb82c seq_hex_dump -EXPORT_SYMBOL vmlinux 0x6819e70f sock_efree -EXPORT_SYMBOL vmlinux 0x681b6670 is_firmware_framebuffer -EXPORT_SYMBOL vmlinux 0x681dedef tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x68283edb scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x683a9560 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x68660baf security_inode_copy_up -EXPORT_SYMBOL vmlinux 0x6877b763 param_set_int -EXPORT_SYMBOL vmlinux 0x6879963a tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x68959563 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x68b55dfd generic_write_end -EXPORT_SYMBOL vmlinux 0x68c514b2 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x68d55556 padata_do_serial -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 0x68fb581a icst307_idx2s -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 0x6917a77e __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x691a54df jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x69338c62 sget_fc -EXPORT_SYMBOL vmlinux 0x6948cb80 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x69585523 __ksize -EXPORT_SYMBOL vmlinux 0x695c50db locks_copy_lock -EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad -EXPORT_SYMBOL vmlinux 0x6985bad6 __post_watch_notification -EXPORT_SYMBOL vmlinux 0x698c5c06 skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0x698ca4a1 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x6999403a pci_iomap_range -EXPORT_SYMBOL vmlinux 0x69b2c227 pci_restore_state -EXPORT_SYMBOL vmlinux 0x69cedb92 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x69d53cbc posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le -EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69ed8af1 bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0x69f38847 cpu_hwcap_keys -EXPORT_SYMBOL vmlinux 0x6a023f96 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a0c0990 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x6a12e827 dev_remove_pack -EXPORT_SYMBOL vmlinux 0x6a17f8c1 devfreq_unregister_opp_notifier -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 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a90663a qman_schedule_fq -EXPORT_SYMBOL vmlinux 0x6a9c6ef0 __devm_request_region -EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x6ab69593 mdiobus_scan -EXPORT_SYMBOL vmlinux 0x6ac29cff i2c_clients_command -EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -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 0x6b066627 d_instantiate -EXPORT_SYMBOL vmlinux 0x6b1fdecd tcf_generic_walker -EXPORT_SYMBOL vmlinux 0x6b220e33 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b45cacc blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0x6b4b2933 __ioremap -EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b5837ff register_shrinker -EXPORT_SYMBOL vmlinux 0x6b5f0c62 nf_setsockopt -EXPORT_SYMBOL vmlinux 0x6b6dc260 cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6b70896e tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0x6b7c0646 cros_ec_get_host_event -EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval -EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6b8d92fc mod_node_page_state -EXPORT_SYMBOL vmlinux 0x6b93b82a unregister_key_type -EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x6ba08750 dns_query -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc4d28f fs_param_is_blob -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 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 0x6c30c8af shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x6c4922de user_revoke -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 0x6c7676c8 inode_insert5 -EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x6c866688 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0x6c99c658 reuseport_add_sock -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 0x6cc473fa mdio_find_bus -EXPORT_SYMBOL vmlinux 0x6ce1d854 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums -EXPORT_SYMBOL vmlinux 0x6cf2b108 sock_register -EXPORT_SYMBOL vmlinux 0x6cf4b33b __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x6d0d0005 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x6d1bef24 mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0x6d1ee5ae blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d3146d7 kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d4d1f01 vmap -EXPORT_SYMBOL vmlinux 0x6d52ca32 serio_reconnect -EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x6d6dcfd0 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw -EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d7ff26c gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x6d91f949 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x6d97c406 follow_down -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 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 0x6def464c ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x6df063e3 register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6dfdc52b input_get_keycode -EXPORT_SYMBOL vmlinux 0x6e10ada4 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x6e14571a __d_lookup_done -EXPORT_SYMBOL vmlinux 0x6e2d003b sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x6e42e27f __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x6e592743 flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run -EXPORT_SYMBOL vmlinux 0x6e5c9228 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x6e65bb68 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e805e90 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x6e82a6a9 __hw_addr_ref_sync_dev -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 0x6ed2bd81 pps_register_source -EXPORT_SYMBOL vmlinux 0x6ed8461a inode_init_always -EXPORT_SYMBOL vmlinux 0x6ee9cda5 dump_align -EXPORT_SYMBOL vmlinux 0x6ef3c034 xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x6f0095b0 skb_unlink -EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x6f4a246d dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x6f4dd791 genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address -EXPORT_SYMBOL vmlinux 0x6f68be6d __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x6f825575 mmc_wait_for_req_done -EXPORT_SYMBOL vmlinux 0x6f82c783 update_region -EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func -EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats -EXPORT_SYMBOL vmlinux 0x6f92875e ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x6f9f0173 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work -EXPORT_SYMBOL vmlinux 0x6fb4ae08 generic_file_fsync -EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6fc57f7a fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x6fca35de inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fefaa7f config_item_init_type_name -EXPORT_SYMBOL vmlinux 0x6ff58e6c rproc_resource_cleanup -EXPORT_SYMBOL vmlinux 0x6fff261f __arch_clear_user -EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x700ca11e t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x701c116c ipv4_specific -EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier -EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x703602cc iov_iter_xarray -EXPORT_SYMBOL vmlinux 0x7038376c __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0x7042471e fb_validate_mode -EXPORT_SYMBOL vmlinux 0x70496c25 rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0x70538960 kernel_accept -EXPORT_SYMBOL vmlinux 0x705b5d7a block_write_full_page -EXPORT_SYMBOL vmlinux 0x7065e00e reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0x70776f52 freeze_super -EXPORT_SYMBOL vmlinux 0x7085642e security_d_instantiate -EXPORT_SYMBOL vmlinux 0x708624b8 generic_perform_write -EXPORT_SYMBOL vmlinux 0x70928005 sock_release -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 0x70d17585 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool -EXPORT_SYMBOL vmlinux 0x70e220d7 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x710647d5 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x7120a80b ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712ad6a2 skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb -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 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71aaff44 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x71df46af dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x71faf0b2 sock_no_bind -EXPORT_SYMBOL vmlinux 0x71fe3255 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x72081688 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x7223cf11 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x72293c2a kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x725fcde3 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x72663f73 of_phy_find_device -EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x727020d6 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x727693e8 get_acl -EXPORT_SYMBOL vmlinux 0x727cb651 no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0x727de424 mem_section -EXPORT_SYMBOL vmlinux 0x728edd6a xfrm_policy_unregister_afinfo -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 0x72bef1ac blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -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 0x732eff9e migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x7335e9dd ip_route_me_harder -EXPORT_SYMBOL vmlinux 0x733f5216 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x73496f57 __skb_ext_del -EXPORT_SYMBOL vmlinux 0x7352da57 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x736310d4 register_md_personality -EXPORT_SYMBOL vmlinux 0x7367488d sunxi_sram_claim -EXPORT_SYMBOL vmlinux 0x737a8a4f _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr -EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get -EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73d81725 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x73db0be1 skb_tunnel_check_pmtu -EXPORT_SYMBOL vmlinux 0x73de5e9d iov_iter_init -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 0x742bf631 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x743f4126 keygen_port_hashing_init -EXPORT_SYMBOL vmlinux 0x74482124 alloc_pages -EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x7457416b pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0x74631eba simple_transaction_release -EXPORT_SYMBOL vmlinux 0x746d6512 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x74709b00 configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0x747e58b1 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x748e3c2b ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0x74a58ebf unregister_qdisc -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 0x74c506e2 dev_set_mac_address -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 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 0x7543850e __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic -EXPORT_SYMBOL vmlinux 0x75690030 set_user_nice -EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x75b45c61 xfrm_state_add -EXPORT_SYMBOL vmlinux 0x75b93dad tcp_close -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75c1987a xsk_tx_peek_desc -EXPORT_SYMBOL vmlinux 0x75c4f276 skb_push -EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75e3ba9d netdev_name_node_alt_create -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x761323de genl_unregister_family -EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -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 0x766587ed security_sb_remount -EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x767c42ff jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x767c537b netlink_ack -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 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76bbb5aa page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0x76bfb2c4 unregister_nls -EXPORT_SYMBOL vmlinux 0x76c7c294 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76e44fd6 d_exact_alias -EXPORT_SYMBOL vmlinux 0x76ed3a42 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x76f4ed7e security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x76f53de9 mii_nway_restart -EXPORT_SYMBOL vmlinux 0x771185fb tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x7719395b __seq_open_private -EXPORT_SYMBOL vmlinux 0x7721420e udp_read_sock -EXPORT_SYMBOL vmlinux 0x77292232 vfs_fadvise -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 0x774443aa tegra_dfll_runtime_suspend -EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x775866a9 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x775d63d6 inode_permission -EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 -EXPORT_SYMBOL vmlinux 0x777a47ff override_creds -EXPORT_SYMBOL vmlinux 0x7789fc1e ipv6_push_frag_opts -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 0x77d6c769 ip_options_rcv_srr -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 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x786244aa scsi_register_driver -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x789cadb4 always_delete_dentry -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 0x78c07389 complete_request_key -EXPORT_SYMBOL vmlinux 0x78cde77b xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78dfcd2f inode_io_list_del -EXPORT_SYMBOL vmlinux 0x78f9ac99 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x7932dd7d input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x7942978d blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0x796d8e92 rproc_add_carveout -EXPORT_SYMBOL vmlinux 0x797123ab user_path_create -EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin -EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79a68956 pci_get_device -EXPORT_SYMBOL vmlinux 0x79a74e48 inode_set_flags -EXPORT_SYMBOL vmlinux 0x79c596f4 elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0x79ccdd6b sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0x79d9e607 locks_init_lock -EXPORT_SYMBOL vmlinux 0x79dcab8c poll_initwait -EXPORT_SYMBOL vmlinux 0x79dec0a8 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x79e41e35 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug -EXPORT_SYMBOL vmlinux 0x79f9063a acpi_dev_get_next_match_dev -EXPORT_SYMBOL vmlinux 0x7a089d1a nf_log_trace -EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x7a1ae562 seq_escape_mem -EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists -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 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aac1153 __icmp_send -EXPORT_SYMBOL vmlinux 0x7ab45d25 dma_fence_array_create -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7ad73bec kernel_bind -EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7ae4d377 vfs_llseek -EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum -EXPORT_SYMBOL vmlinux 0x7af05228 dev_close -EXPORT_SYMBOL vmlinux 0x7b04d2c8 pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0x7b077dab inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0x7b22686b vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x7b2bb16e __xfrm_state_delete -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 0x7b474d2b __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem -EXPORT_SYMBOL vmlinux 0x7b4e9c4a ps2_command -EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b61fa67 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x7b798827 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x7b7c4471 fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace -EXPORT_SYMBOL vmlinux 0x7b93f776 scsi_print_result -EXPORT_SYMBOL vmlinux 0x7ba17053 netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0x7ba368ee scsi_block_requests -EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off -EXPORT_SYMBOL vmlinux 0x7ba7cfbf iget_locked -EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write -EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bbe25cb wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0x7bd641d1 netlink_set_err -EXPORT_SYMBOL vmlinux 0x7be0297c pci_bus_write_config_word -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 0x7c02afb8 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x7c0302ae mmput_async -EXPORT_SYMBOL vmlinux 0x7c095de9 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c179de1 mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x7c1c21f6 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x7c41269f inet_add_protocol -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c55c16d fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0x7c8e9996 elevator_alloc -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 0x7cb418ed write_cache_pages -EXPORT_SYMBOL vmlinux 0x7cb81d94 ptp_clock_register -EXPORT_SYMBOL vmlinux 0x7cbafd7b __traceiter_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x7cc99e4e netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x7cd136bc phy_reset_after_clk_enable -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 0x7cfbe1b5 get_task_cred -EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -EXPORT_SYMBOL vmlinux 0x7d001e8e mmc_can_trim -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 0x7d271702 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x7d28c0dc kill_anon_super -EXPORT_SYMBOL vmlinux 0x7d3af41e tcp_connect -EXPORT_SYMBOL vmlinux 0x7d41dfe9 xfrm_init_state -EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x7d6245c8 softnet_data -EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x7d84d337 of_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0x7d97e320 pnp_unregister_card_driver -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 0x7db17325 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x7db8776d xfrm_trans_queue_net -EXPORT_SYMBOL vmlinux 0x7dbcaa8a iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x7dbffeba send_sig_info -EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert -EXPORT_SYMBOL vmlinux 0x7de5199a mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x7de5ac14 udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x7de79e7b iommu_get_msi_cookie -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7dfd647a devm_ioremap -EXPORT_SYMBOL vmlinux 0x7e057ef0 proc_create_data -EXPORT_SYMBOL vmlinux 0x7e206ee1 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x7e230edc sg_miter_start -EXPORT_SYMBOL vmlinux 0x7e2aa510 inet_listen -EXPORT_SYMBOL vmlinux 0x7e2fcef4 generic_fillattr -EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e53c0c3 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x7e6e5a0d xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x7e7bae40 ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x7e9d34e6 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x7eac760a param_set_hexint -EXPORT_SYMBOL vmlinux 0x7ebbce69 __dev_kfree_skb_any -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 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f35592e nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x7f432458 __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x7f48a138 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0x7f52071a net_dim -EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table -EXPORT_SYMBOL vmlinux 0x7f7f7025 vfs_symlink -EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7fb8eca3 bh_submit_read -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 0x7ffb8dcd reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0x80036d48 setattr_prepare -EXPORT_SYMBOL vmlinux 0x8012f33d generic_file_open -EXPORT_SYMBOL vmlinux 0x801c4e72 hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create -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 0x8071f77f dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x8089d69d acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0x8095df56 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x809ec780 register_quota_format -EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x80a9b869 pci_release_resource -EXPORT_SYMBOL vmlinux 0x80bce75d configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d5009e sock_rfree -EXPORT_SYMBOL vmlinux 0x80d5642f gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0x80ec0d50 qman_init_fq -EXPORT_SYMBOL vmlinux 0x80ec9970 napi_disable -EXPORT_SYMBOL vmlinux 0x80f0818c of_platform_device_create -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 0x816d7877 fscrypt_free_bounce_page -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 0x81a1e60e inet_add_offload -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 0x81c95326 xfrm_state_free -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 0x82053e8a param_ops_charp -EXPORT_SYMBOL vmlinux 0x820e3689 xfrm_lookup -EXPORT_SYMBOL vmlinux 0x821f8e5a dquot_resume -EXPORT_SYMBOL vmlinux 0x823d3505 cmxgcr_lock -EXPORT_SYMBOL vmlinux 0x82475ce4 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x82544d71 generic_copy_file_range -EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82918cb7 pcix_get_max_mmrbc -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 0x82dbab43 sock_kmalloc -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 0x82fe1aba scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x83007637 page_readlink -EXPORT_SYMBOL vmlinux 0x830e67a2 vfs_iocb_iter_write -EXPORT_SYMBOL vmlinux 0x83280c7f netif_rx_ni -EXPORT_SYMBOL vmlinux 0x832e2a90 iov_iter_discard -EXPORT_SYMBOL vmlinux 0x834fc316 phy_advertise_supported -EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x83658f48 tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0x8367e76b sock_recvmsg -EXPORT_SYMBOL vmlinux 0x8368929f jbd2__journal_restart -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 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 0x83cc8a8b vme_irq_request -EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free -EXPORT_SYMBOL vmlinux 0x84159628 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x8436cc01 blk_get_queue -EXPORT_SYMBOL vmlinux 0x844e53e4 redraw_screen -EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0x8461b025 blk_queue_virt_boundary -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 0x8489f8da tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0x84b4b5a7 unix_attach_fds -EXPORT_SYMBOL vmlinux 0x84b58c4c rproc_elf_find_loaded_rsc_table -EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x84c2056a tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0x84c4040c security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0x84f2e9d0 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x85173771 ps2_end_command -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 0x8568cb94 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x856f47e9 blk_put_queue -EXPORT_SYMBOL vmlinux 0x8586658a simple_link -EXPORT_SYMBOL vmlinux 0x8590d390 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -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 0x85bf3f60 migrate_vma_pages -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85eb9638 uart_update_timeout -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f0758f inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0x86083bc0 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0x8624ff13 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x8640bfb3 pci_release_region -EXPORT_SYMBOL vmlinux 0x864f6ebc neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x8656d9ec xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x86584d52 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x866ed865 phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86966731 seq_printf -EXPORT_SYMBOL vmlinux 0x86a2af5d of_node_get -EXPORT_SYMBOL vmlinux 0x86a374d4 watchdog_register_governor -EXPORT_SYMBOL vmlinux 0x86a69a16 netdev_reset_tc -EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant -EXPORT_SYMBOL vmlinux 0x86de6470 proc_remove -EXPORT_SYMBOL vmlinux 0x86f65b95 phy_suspend -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x870f3501 mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0x8738ebda seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0x87453ca3 kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0x874f37b1 copy_highpage -EXPORT_SYMBOL vmlinux 0x8754447c kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x875e7ac5 component_match_add_typed -EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed -EXPORT_SYMBOL vmlinux 0x8765e48f dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x8781e9c4 mdiobus_is_registered_device -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 0x87a21cb3 __ubsan_handle_out_of_bounds -EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87dc0df7 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x87dc7fe8 tegra_dfll_suspend -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 0x88233752 ps2_handle_response -EXPORT_SYMBOL vmlinux 0x88311ae2 vfs_get_tree -EXPORT_SYMBOL vmlinux 0x885097e6 fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0x886777a0 dev_remove_offload -EXPORT_SYMBOL vmlinux 0x886dc3a7 dev_alloc_name -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 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x88900143 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x889132a2 amba_request_regions -EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock -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 0x88cc2545 inet_csk_reqsk_queue_drop -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 0x88fe117e of_parse_phandle -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 0x8953b7ec netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x896c4542 acpi_device_hid -EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x89db4b02 genphy_c37_config_aneg -EXPORT_SYMBOL vmlinux 0x89dd2a5f simple_nosetlease -EXPORT_SYMBOL vmlinux 0x89e276ff vfs_setpos -EXPORT_SYMBOL vmlinux 0x89f71bd7 get_tree_keyed -EXPORT_SYMBOL vmlinux 0x89fbe0b7 get_cached_acl -EXPORT_SYMBOL vmlinux 0x8a099ff5 pci_disable_device -EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a6985d3 of_get_parent -EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags -EXPORT_SYMBOL vmlinux 0x8a732f56 ip_sock_set_recverr -EXPORT_SYMBOL vmlinux 0x8a77a4c4 module_layout -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -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 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8a9e63cf msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x8aa087b7 make_kuid -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 0x8ad05e14 __ip_options_compile -EXPORT_SYMBOL vmlinux 0x8ad33a2d flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x8ae801d5 netdev_txq_to_tc -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 0x8b1068c3 dev_set_group -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 0x8b5fb2fd input_free_device -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b734baa path_put -EXPORT_SYMBOL vmlinux 0x8b7bf3d0 __sock_i_ino -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b81ce30 tcp_md5_do_del -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 0x8bcdebf4 ipv6_getsockopt -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 0x8c0e0caf __traceiter_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x8c1c5fd4 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x8c2c4061 of_clk_get -EXPORT_SYMBOL vmlinux 0x8c540213 done_path_create -EXPORT_SYMBOL vmlinux 0x8c683fcd posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x8c7c107b i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x8c809b20 ip_sock_set_tos -EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error -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 0x8cc56b89 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8ce30d9e dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x8ce57abf dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0x8ce63318 filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0x8d0f2174 pci_bus_type -EXPORT_SYMBOL vmlinux 0x8d1c881b mr_mfc_seq_next -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 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d9bdefb input_unregister_handle -EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x8da36c53 pci_dev_put -EXPORT_SYMBOL vmlinux 0x8da6585d __stack_chk_fail -EXPORT_SYMBOL vmlinux 0x8daedb79 cpumask_any_but -EXPORT_SYMBOL vmlinux 0x8daef562 rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0x8db234d9 nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -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 0x8e0145dd simple_open -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 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8ec1ff2c tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0x8ed8c95a ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x8ee11df5 dev_set_alias -EXPORT_SYMBOL vmlinux 0x8ee9e0c7 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x8eee458f netdev_crit -EXPORT_SYMBOL vmlinux 0x8ef11955 devm_backlight_device_register -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 0x8f3519c2 __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x8f559aa7 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0x8f8a03f1 delete_from_page_cache -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 0x8faadff5 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x8fc80a6e neigh_app_ns -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 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 0x9034a696 mempool_destroy -EXPORT_SYMBOL vmlinux 0x904f1204 inet_bind -EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x90660ad9 param_get_short -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 0x908ee39c get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0x90913da9 iommu_put_dma_cookie -EXPORT_SYMBOL vmlinux 0x90913e1b rproc_put -EXPORT_SYMBOL vmlinux 0x909fc782 ll_rw_block -EXPORT_SYMBOL vmlinux 0x90a56605 nf_reinject -EXPORT_SYMBOL vmlinux 0x90b630c0 __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x90c66ecd input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x90d1720c ata_print_version -EXPORT_SYMBOL vmlinux 0x90e086a5 napi_get_frags -EXPORT_SYMBOL vmlinux 0x90e273e2 cred_fscmp -EXPORT_SYMBOL vmlinux 0x90ea1147 d_instantiate_new -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 0x9134fc5e skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x913d62a7 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x91445035 igrab -EXPORT_SYMBOL vmlinux 0x915f1fb8 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x9179189e eth_mac_addr -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 0x919c58f3 __clzsi2 -EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91b7c10d cfb_fillrect -EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91e34c70 nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x91f4ae52 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x9207358c xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x92162575 keyring_alloc -EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x92442ba1 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0x9249bdbf skb_queue_head -EXPORT_SYMBOL vmlinux 0x924c7196 tcp_get_cookie_sock -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 0x9264b487 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x926588e0 security_socket_socketpair -EXPORT_SYMBOL vmlinux 0x926d4c1e __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x926d4ca2 sock_cmsg_send -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 0x92b99a33 acpi_put_table -EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92cd9287 input_release_device -EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq -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 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x9307d94c netdev_has_upper_dev -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 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93a80060 to_nd_pfn -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93c98cd3 mdio_bus_type -EXPORT_SYMBOL vmlinux 0x93cb9542 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x93d212e6 dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all -EXPORT_SYMBOL vmlinux 0x93efdd45 bio_chain -EXPORT_SYMBOL vmlinux 0x93f13ea4 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x94070f54 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x941e69b2 tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -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 0x945372b5 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x94574c48 xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0x9457c8f1 md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x945991ee nd_device_register -EXPORT_SYMBOL vmlinux 0x945eec53 dst_dev_put -EXPORT_SYMBOL vmlinux 0x94604ab7 mfd_add_devices -EXPORT_SYMBOL vmlinux 0x946bad3d fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0x946e1dc6 mmc_request_done -EXPORT_SYMBOL vmlinux 0x946e4e12 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x9487d3e1 ns_capable -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94a38348 xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo -EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier -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 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 0x953daa30 netif_napi_add -EXPORT_SYMBOL vmlinux 0x9546889d mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc -EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x955cd269 sock_from_file -EXPORT_SYMBOL vmlinux 0x95657f82 flow_rule_match_ct -EXPORT_SYMBOL vmlinux 0x95665043 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x956a7ee2 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table -EXPORT_SYMBOL vmlinux 0x95b70f70 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x95db879b kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x95f4e5c2 configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0x961c7e65 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x9622f580 d_obtain_root -EXPORT_SYMBOL vmlinux 0x964fd457 textsearch_prepare -EXPORT_SYMBOL vmlinux 0x96683b50 rtnl_nla_parse_ifinfomsg -EXPORT_SYMBOL vmlinux 0x96757f69 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x96848186 scnprintf -EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr -EXPORT_SYMBOL vmlinux 0x969ba18b generic_delete_inode -EXPORT_SYMBOL vmlinux 0x96a3e83b ipv6_chk_addr -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 0x96c33eed tcp_ioctl -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96d5b3f7 blk_integrity_register -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 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x9728f0e2 mmc_calc_max_discard -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 0x976910d4 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x9776c03d __frontswap_store -EXPORT_SYMBOL vmlinux 0x977c0087 mount_subtree -EXPORT_SYMBOL vmlinux 0x977c8cd1 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x97940e5d d_obtain_alias -EXPORT_SYMBOL vmlinux 0x9794698c sock_kzfree_s -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 0x97c45664 xsk_tx_completed -EXPORT_SYMBOL vmlinux 0x97e0878c dma_set_mask -EXPORT_SYMBOL vmlinux 0x97e2789a commit_creds -EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x97f80b69 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x97f8c4ed of_get_next_child -EXPORT_SYMBOL vmlinux 0x98147460 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x982bcde4 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0x9859a037 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x9862dd5c __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0x986dd558 fs_bio_set -EXPORT_SYMBOL vmlinux 0x9872d502 fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0x98b605a7 dquot_load_quota_sb -EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen -EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98f30521 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x98ffbff6 netdev_adjacent_change_abort -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 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x9957c8a8 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x998deda4 iunique -EXPORT_SYMBOL vmlinux 0x99973c58 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x9997aca7 xsk_tx_peek_release_desc_batch -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x999fe437 posix_lock_file -EXPORT_SYMBOL vmlinux 0x99b041f7 flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99eb82d9 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x99f7371c refcount_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x99fe3f45 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x9a0a70db genphy_handle_interrupt_no_ack -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 0x9a2fb882 clear_inode -EXPORT_SYMBOL vmlinux 0x9a38b65e make_kgid -EXPORT_SYMBOL vmlinux 0x9a4bb578 proto_unregister -EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a6148aa sg_miter_stop -EXPORT_SYMBOL vmlinux 0x9a62553c __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x9a6691d5 ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict -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 0x9ab33a7a netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x9ac3d26a unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9ae856ed skb_copy_header -EXPORT_SYMBOL vmlinux 0x9af5d7b9 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x9b035b71 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x9b07615c skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state -EXPORT_SYMBOL vmlinux 0x9b17b375 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b282038 scsi_add_device -EXPORT_SYMBOL vmlinux 0x9b29e0af __skb_checksum_complete_head -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 0x9b69bdeb thaw_super -EXPORT_SYMBOL vmlinux 0x9b6c724e xudma_pktdma_tflow_get_irq -EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table -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 0x9bd883d0 dev_uc_sync -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 0x9c0862cf sock_set_rcvbuf -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 0x9c1e5bf5 queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0x9c209ba6 devm_clk_release_clkdev -EXPORT_SYMBOL vmlinux 0x9c3b1b51 __of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs -EXPORT_SYMBOL vmlinux 0x9c5d5b94 crc8 -EXPORT_SYMBOL vmlinux 0x9c6da59e vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9c88614c sock_set_reuseaddr -EXPORT_SYMBOL vmlinux 0x9c888e10 tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0x9c8b3574 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x9c93aba4 fwnode_mdiobus_register_phy -EXPORT_SYMBOL vmlinux 0x9c9dfec6 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x9ca4f51b scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cac538d generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl -EXPORT_SYMBOL vmlinux 0x9cdae029 pci_choose_state -EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9ce5137e sock_i_ino -EXPORT_SYMBOL vmlinux 0x9cf9172d ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x9d000e58 fs_param_is_u32 -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy -EXPORT_SYMBOL vmlinux 0x9d26ba72 from_kgid_munged -EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d37248a sock_enable_timestamps -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 0x9d6068c3 ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x9d700ef9 fddi_type_trans -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 0x9db498d8 netdev_features_change -EXPORT_SYMBOL vmlinux 0x9db54e33 jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0x9dd80fea vfs_iter_write -EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel -EXPORT_SYMBOL vmlinux 0x9dfb0b4a blackhole_netdev -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e0d2791 dev_get_stats -EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 -EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0x9e2a62c9 zap_page_range -EXPORT_SYMBOL vmlinux 0x9e33170c neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x9e346be2 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x9e49d70f inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e5d9f9b from_kuid_munged -EXPORT_SYMBOL vmlinux 0x9e5e750d node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e878286 nd_integrity_init -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 0x9ed7c847 brcmstb_get_family_id -EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9ef025de inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x9ef989ba __genphy_config_aneg -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 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 0x9f78ac18 nexthop_bucket_set_hw_flags -EXPORT_SYMBOL vmlinux 0x9f79a741 rproc_elf_load_segments -EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw -EXPORT_SYMBOL vmlinux 0x9f94f09b fs_param_is_string -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9ff8f74c flow_block_cb_free -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa0176d20 neigh_table_clear -EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0xa022c739 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xa033d747 next_arg -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -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 0xa07a183e xfrm_state_walk -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 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa0a344ee __traceiter_module_get -EXPORT_SYMBOL vmlinux 0xa0a76013 param_get_ushort -EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -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 0xa0df2a16 netpoll_poll_enable -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 0xa0f12bfc filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xa0f1b87a phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xa0fb7002 nf_log_unregister -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 0xa11e45fb md_reload_sb -EXPORT_SYMBOL vmlinux 0xa128da92 dev_change_proto_down_generic -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 0xa1643bbe __check_sticky -EXPORT_SYMBOL vmlinux 0xa1643f8b security_path_unlink -EXPORT_SYMBOL vmlinux 0xa16fb844 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0xa1750e60 pci_set_mwi -EXPORT_SYMBOL vmlinux 0xa17857d7 from_kgid -EXPORT_SYMBOL vmlinux 0xa17fae89 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0xa181d485 sock_set_mark -EXPORT_SYMBOL vmlinux 0xa182d225 trace_event_printf -EXPORT_SYMBOL vmlinux 0xa18eb10f pskb_expand_head -EXPORT_SYMBOL vmlinux 0xa19f9185 scm_fp_dup -EXPORT_SYMBOL vmlinux 0xa1a6fce7 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0xa1b04fdf dst_release_immediate -EXPORT_SYMBOL vmlinux 0xa1bcc2ef dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xa1c72636 mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0xa1e075eb skb_trim -EXPORT_SYMBOL vmlinux 0xa1e2b41d mark_info_dirty -EXPORT_SYMBOL vmlinux 0xa1e9cceb sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0xa2035ac6 qcom_scm_set_warm_boot_addr -EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa209411d __mmap_lock_do_trace_released -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 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa2501ae8 devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte -EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xa28a3266 simple_rename -EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa2a11ce4 touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0xa2a5ef70 rproc_da_to_va -EXPORT_SYMBOL vmlinux 0xa2b516ac inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0xa2bb9d3e pci_write_config_dword -EXPORT_SYMBOL vmlinux 0xa2c2ef8a key_invalidate -EXPORT_SYMBOL vmlinux 0xa2c698e2 icmp6_send -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 0xa2f56cf4 alloc_fcdev -EXPORT_SYMBOL vmlinux 0xa31f60ef ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0xa3246734 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0xa32574d0 skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0xa339e6e5 on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0xa343756e dev_open -EXPORT_SYMBOL vmlinux 0xa3522df5 qman_query_fq_np -EXPORT_SYMBOL vmlinux 0xa35c388f of_translate_address -EXPORT_SYMBOL vmlinux 0xa36096e3 param_ops_byte -EXPORT_SYMBOL vmlinux 0xa3758486 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0xa37d2782 uart_suspend_port -EXPORT_SYMBOL vmlinux 0xa394e6d1 seg6_push_hmac -EXPORT_SYMBOL vmlinux 0xa399c596 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0xa3a3f229 cpumask_next_and -EXPORT_SYMBOL vmlinux 0xa3b4c47d dm_unregister_target -EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch -EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update -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 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 0xa46ab4dd mdio_device_reset -EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction -EXPORT_SYMBOL vmlinux 0xa47ed64b t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xa4978a16 dma_pool_create -EXPORT_SYMBOL vmlinux 0xa4abab40 ihold -EXPORT_SYMBOL vmlinux 0xa4ac660f __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xa4e6ffb0 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xa4e7bfa8 iov_iter_get_pages -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 0xa52b6993 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0xa5342b58 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xa53f374b inet_frags_init -EXPORT_SYMBOL vmlinux 0xa5455297 __traceiter_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xa54b7fb4 posix_test_lock -EXPORT_SYMBOL vmlinux 0xa5511dcf security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa55622f3 poll_freewait -EXPORT_SYMBOL vmlinux 0xa5685246 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xa582d1f0 bio_kmalloc -EXPORT_SYMBOL vmlinux 0xa595f6bc kobject_init -EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock -EXPORT_SYMBOL vmlinux 0xa598af96 netlink_net_capable -EXPORT_SYMBOL vmlinux 0xa59918f3 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0xa5a33aa8 is_subdir -EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0xa5b914fe cdrom_get_media_event -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 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 0xa648e561 __ubsan_handle_shift_out_of_bounds -EXPORT_SYMBOL vmlinux 0xa65871a3 genlmsg_put -EXPORT_SYMBOL vmlinux 0xa66a51df __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0xa66daad4 cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0xa66f63fd crypto_sha256_update -EXPORT_SYMBOL vmlinux 0xa670d8d2 udp_poll -EXPORT_SYMBOL vmlinux 0xa67f9ade gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa68e576f block_invalidatepage -EXPORT_SYMBOL vmlinux 0xa68ea346 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0xa6a919b9 rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0xa6a98584 key_put -EXPORT_SYMBOL vmlinux 0xa6b256f9 pcie_get_readrq -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 0xa71acc92 fman_port_config -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 0xa76577b2 vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0xa7708016 get_ipc_ns_exported -EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa79c7f57 pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0xa7d0c366 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy -EXPORT_SYMBOL vmlinux 0xa7deb654 tcf_idr_search -EXPORT_SYMBOL vmlinux 0xa7df99a4 fqdir_exit -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 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox -EXPORT_SYMBOL vmlinux 0xa84d3f79 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0xa8511f9f skb_clone_sk -EXPORT_SYMBOL vmlinux 0xa853396b xa_extract -EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load -EXPORT_SYMBOL vmlinux 0xa8667264 of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa8721be0 __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xa880206e unlock_rename -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 0xa89ddbec fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end -EXPORT_SYMBOL vmlinux 0xa8a86aec tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0xa8c04280 fman_bind -EXPORT_SYMBOL vmlinux 0xa8c541a8 twl6040_reg_read -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 0xa8dd340e of_find_node_with_property -EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present -EXPORT_SYMBOL vmlinux 0xa8ece4e3 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work -EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -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 0xa92b044c set_bh_page -EXPORT_SYMBOL vmlinux 0xa9311b3d do_clone_file_range -EXPORT_SYMBOL vmlinux 0xa954563c phy_write_mmd -EXPORT_SYMBOL vmlinux 0xa9565294 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa98ce930 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa9cd6bca neigh_event_ns -EXPORT_SYMBOL vmlinux 0xa9ea40f2 xp_dma_unmap -EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl -EXPORT_SYMBOL vmlinux 0xa9ed9a24 begin_new_exec -EXPORT_SYMBOL vmlinux 0xa9f83970 netif_rx -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 0xaa14ebff neigh_destroy -EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa2e2754 xp_set_rxq_info -EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception -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 0xaa7b04ba tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb -EXPORT_SYMBOL vmlinux 0xaa8106bd __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0xaa825e9a xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0xaa9183c0 of_cpu_node_to_id -EXPORT_SYMBOL vmlinux 0xaaa26f1a param_set_bint -EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic -EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change -EXPORT_SYMBOL vmlinux 0xaaadd009 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xaaae2df9 netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0xaab47b4b notify_change -EXPORT_SYMBOL vmlinux 0xaac4370c rfkill_alloc -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 0xaae71c8d devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab0f744a inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xab228a1a tcp_seq_start -EXPORT_SYMBOL vmlinux 0xab2c7131 lookup_one -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 0xab49e968 arp_xmit -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 0xab67a0ac dql_init -EXPORT_SYMBOL vmlinux 0xab6a9dba pagecache_write_begin -EXPORT_SYMBOL vmlinux 0xab6b3325 pci_scan_root_bus_bridge -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 0xab973d29 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xab9a09dd mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0xab9a530e phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0xabbbd3f2 __frontswap_load -EXPORT_SYMBOL vmlinux 0xabc65255 dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0xabe075b7 netlbl_calipso_ops_register -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 0xac0c8fee dev_set_allmulti -EXPORT_SYMBOL vmlinux 0xac126892 to_ndd -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac223399 key_unlink -EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac648b81 _dev_alert -EXPORT_SYMBOL vmlinux 0xac6eb818 padata_free_shell -EXPORT_SYMBOL vmlinux 0xac753ffe __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xac757c2d skb_ensure_writable -EXPORT_SYMBOL vmlinux 0xac91a469 wake_up_process -EXPORT_SYMBOL vmlinux 0xac943df2 xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacb2f01c acpi_device_set_power -EXPORT_SYMBOL vmlinux 0xacb78ae6 remove_watch_from_object -EXPORT_SYMBOL vmlinux 0xacbbf556 phy_sfp_probe -EXPORT_SYMBOL vmlinux 0xacc927b5 dev_get_port_parent_id -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 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 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 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 0xad530246 kernel_getsockname -EXPORT_SYMBOL vmlinux 0xad5a7694 pci_pme_capable -EXPORT_SYMBOL vmlinux 0xad5c4492 netif_rx_any_context -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 0xada0021f dst_release -EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final -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 0xadd1aae2 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0xadf00183 dmam_pool_create -EXPORT_SYMBOL vmlinux 0xadfc2ca4 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xadfe158c sock_alloc_send_pskb -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 0xae130d88 __netif_napi_del -EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae33c403 xudma_navss_psil_unpair -EXPORT_SYMBOL vmlinux 0xae3956b3 ptp_cancel_worker_sync -EXPORT_SYMBOL vmlinux 0xae4a7981 kthread_create_on_cpu -EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0xae6b23d6 address_space_init_once -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 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 0xaed2b0ad __dquot_free_space -EXPORT_SYMBOL vmlinux 0xaed8fad7 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 0xaf15ec52 of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0xaf2c5659 phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0xaf309092 fman_port_bind -EXPORT_SYMBOL vmlinux 0xaf32b1f1 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf49727a netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0xaf4b0ae6 inet_frag_kill -EXPORT_SYMBOL vmlinux 0xaf4f658b ppp_dev_name -EXPORT_SYMBOL vmlinux 0xaf56600a arm64_use_ng_mappings -EXPORT_SYMBOL vmlinux 0xaf5da6a0 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0xaf717238 sync_file_create -EXPORT_SYMBOL vmlinux 0xaf7a161c pnp_device_attach -EXPORT_SYMBOL vmlinux 0xaf85f903 skb_eth_pop -EXPORT_SYMBOL vmlinux 0xaf935fc0 sock_create -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 0xaff5b243 ipv6_skip_exthdr -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 0xb04a43ad __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xb04c25d6 mfd_remove_devices_late -EXPORT_SYMBOL vmlinux 0xb056eea2 udp_skb_destructor -EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats -EXPORT_SYMBOL vmlinux 0xb05f5f6f free_netdev -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb079a104 framebuffer_release -EXPORT_SYMBOL vmlinux 0xb081301c vfs_mkobj -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0a776aa find_get_pages_contig -EXPORT_SYMBOL vmlinux 0xb0aa8a7c fasync_helper -EXPORT_SYMBOL vmlinux 0xb0be8269 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return -EXPORT_SYMBOL vmlinux 0xb0d42a09 vfs_ioctl -EXPORT_SYMBOL vmlinux 0xb0d47adb acpi_dev_hid_uid_match -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e3bde6 max8925_reg_read -EXPORT_SYMBOL vmlinux 0xb0ec33c4 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize -EXPORT_SYMBOL vmlinux 0xb0fc1b41 rproc_shutdown -EXPORT_SYMBOL vmlinux 0xb0fc6b83 bio_put -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 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 0xb1430e91 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xb14f18c8 tcp_peek_len -EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 -EXPORT_SYMBOL vmlinux 0xb1847431 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0xb1ae5507 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0xb1b660e9 pmem_sector_size -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug -EXPORT_SYMBOL vmlinux 0xb1db9a69 fsl_ifc_find -EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb2153c73 d_add -EXPORT_SYMBOL vmlinux 0xb217dea9 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xb2181b94 __f_setown -EXPORT_SYMBOL vmlinux 0xb220dbf0 dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xb237c9f1 sock_no_accept -EXPORT_SYMBOL vmlinux 0xb25423b7 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xb282532d iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0xb288bffa security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0xb2a21822 devm_devfreq_unregister_notifier -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 0xb2c03a6c mr_dump -EXPORT_SYMBOL vmlinux 0xb2ccf10a simple_statfs -EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr -EXPORT_SYMBOL vmlinux 0xb2eee83e read_cache_pages -EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 -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 0xb30e27b6 __breadahead -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 0xb33cbcc1 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xb348bf29 pci_set_power_state -EXPORT_SYMBOL vmlinux 0xb34dca1c kryo_l2_get_indirect_reg -EXPORT_SYMBOL vmlinux 0xb361dae9 netdev_next_lower_dev_rcu -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 0xb388ea5c netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0xb3948c7a ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xb395e0ea inet_dgram_connect -EXPORT_SYMBOL vmlinux 0xb3a82019 profile_pc -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 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 0xb40750dc __dquot_transfer -EXPORT_SYMBOL vmlinux 0xb41a5b65 mipi_dsi_dcs_set_display_brightness_large -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb43bde14 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0xb448904b udp6_csum_init -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 0xb4782d38 inet_sk_set_state -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 0xb491e7f1 xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0xb4bddd32 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0xb4d66522 __phy_read_mmd -EXPORT_SYMBOL vmlinux 0xb4ecff5d mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb504cc55 end_page_private_2 -EXPORT_SYMBOL vmlinux 0xb50a1627 send_sig -EXPORT_SYMBOL vmlinux 0xb50b7797 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0xb510c63e blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0xb51f9061 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xb542909a register_qdisc -EXPORT_SYMBOL vmlinux 0xb54c9808 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xb557680e xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xb5599470 kernel_connect -EXPORT_SYMBOL vmlinux 0xb56e7917 vif_device_init -EXPORT_SYMBOL vmlinux 0xb56fe632 tcf_idr_release -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb576ec02 md_write_end -EXPORT_SYMBOL vmlinux 0xb57e32ce xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0xb57ec2a2 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable -EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat -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 0xb5aec7fb sock_create_kern -EXPORT_SYMBOL vmlinux 0xb5b5383c mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5ba6598 kern_path_create -EXPORT_SYMBOL vmlinux 0xb5c45ea6 skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5e8a756 neigh_seq_start -EXPORT_SYMBOL vmlinux 0xb5f7965d security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0xb6007ccb pipe_unlock -EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible -EXPORT_SYMBOL vmlinux 0xb629895e jbd2__journal_start -EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb63e5158 security_path_mkdir -EXPORT_SYMBOL vmlinux 0xb6454056 phy_read_mmd -EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xb65e85cc dmaengine_get_unmap_data -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 0xb691d0d2 dev_addr_init -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb69cf86f sock_alloc -EXPORT_SYMBOL vmlinux 0xb69dda94 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0xb69fa5fb __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0xb6a8f221 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6acfd13 netdev_name_node_alt_destroy -EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6e68b26 fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xb6fc327d dev_change_proto_down -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 0xb71589f0 skip_spaces -EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit -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 0xb797cab0 dquot_drop -EXPORT_SYMBOL vmlinux 0xb79c2613 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0xb79e96e0 km_policy_notify -EXPORT_SYMBOL vmlinux 0xb7b7fa6e node_states -EXPORT_SYMBOL vmlinux 0xb7b8db20 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0xb7c0f443 sort -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7e34475 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0xb7f020bf from_kuid -EXPORT_SYMBOL vmlinux 0xb7f437f7 irq_set_chip -EXPORT_SYMBOL vmlinux 0xb81865a3 insert_inode_locked -EXPORT_SYMBOL vmlinux 0xb82a3564 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue -EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available -EXPORT_SYMBOL vmlinux 0xb85632cc phy_request_interrupt -EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add -EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key -EXPORT_SYMBOL vmlinux 0xb86b5184 fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0xb8711d53 file_modified -EXPORT_SYMBOL vmlinux 0xb87d7779 pci_assign_resource -EXPORT_SYMBOL vmlinux 0xb88d4af7 __brelse -EXPORT_SYMBOL vmlinux 0xb88fd035 set_groups -EXPORT_SYMBOL vmlinux 0xb88ff4e6 serio_interrupt -EXPORT_SYMBOL vmlinux 0xb896809f shmem_aops -EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb8a2fad1 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0xb8ad3253 generic_writepages -EXPORT_SYMBOL vmlinux 0xb8ad6860 generic_update_time -EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b1743a dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xb8c5eb6a lock_sock_nested -EXPORT_SYMBOL vmlinux 0xb8cc994a dget_parent -EXPORT_SYMBOL vmlinux 0xb8d39431 __traceiter_mmap_lock_released -EXPORT_SYMBOL vmlinux 0xb8da37d0 sk_error_report -EXPORT_SYMBOL vmlinux 0xb8dc2809 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xb8fe2bf0 devfreq_update_interval -EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory -EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb930b8eb inet_select_addr -EXPORT_SYMBOL vmlinux 0xb9382ed1 tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0xb93fd5da single_release -EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only -EXPORT_SYMBOL vmlinux 0xb94fe8f1 tcf_em_register -EXPORT_SYMBOL vmlinux 0xb95e5f82 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb9823c6c ip_check_defrag -EXPORT_SYMBOL vmlinux 0xb982b0a5 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0xb98de3aa mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0xb991445a mntput -EXPORT_SYMBOL vmlinux 0xb99162a3 devfreq_update_status -EXPORT_SYMBOL vmlinux 0xb9a47be5 generic_listxattr -EXPORT_SYMBOL vmlinux 0xb9a727d4 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0xb9acece7 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xb9b4ada8 udplite_prot -EXPORT_SYMBOL vmlinux 0xb9b646a4 sock_sendmsg -EXPORT_SYMBOL vmlinux 0xb9bcb9b0 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0xb9c83504 tty_port_close -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 0xba47c502 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len -EXPORT_SYMBOL vmlinux 0xba5c2c10 xp_can_alloc -EXPORT_SYMBOL vmlinux 0xba6999b8 fman_register_intr -EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk -EXPORT_SYMBOL vmlinux 0xba744716 stop_tty -EXPORT_SYMBOL vmlinux 0xbaaf229b netif_device_attach -EXPORT_SYMBOL vmlinux 0xbaaf7e49 xsk_tx_release -EXPORT_SYMBOL vmlinux 0xbadab4ab vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0xbaea297c fault_in_iov_iter_readable -EXPORT_SYMBOL vmlinux 0xbafabe9f pci_request_irq -EXPORT_SYMBOL vmlinux 0xbafb2f98 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb21260e convert_ifc_address -EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb396404 __neigh_event_send -EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb5a9841 devm_iounmap -EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool -EXPORT_SYMBOL vmlinux 0xbb7fd0c5 sock_wmalloc -EXPORT_SYMBOL vmlinux 0xbb8535f7 kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xbb919661 pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0xbb9ea881 vfs_create -EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock -EXPORT_SYMBOL vmlinux 0xbbac7995 acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0xbbbdb721 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order -EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc26b9d1 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0xbc2984b9 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xbc62753b napi_schedule_prep -EXPORT_SYMBOL vmlinux 0xbc66ce59 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0xbc745ec0 reuseport_alloc -EXPORT_SYMBOL vmlinux 0xbc82bc31 fman_reset_mac -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 0xbd3f7b4c __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xbd3fc9a2 tcp_md5_hash_skb_data -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 0xbd66e3b0 ipv6_setsockopt -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 0xbd776b06 netlink_unicast -EXPORT_SYMBOL vmlinux 0xbd7e91e9 copy_string_kernel -EXPORT_SYMBOL vmlinux 0xbd9a0c6e qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0xbdb8e1ac netdev_sk_get_lowest_dev -EXPORT_SYMBOL vmlinux 0xbdbfd923 open_with_fake_path -EXPORT_SYMBOL vmlinux 0xbdd90515 mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0xbddb60a5 security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xbde40248 scsi_device_get -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 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe61b36a rtnl_create_link -EXPORT_SYMBOL vmlinux 0xbe66fe02 processors -EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit -EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table -EXPORT_SYMBOL vmlinux 0xbe879f85 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0xbe8ebc25 unregister_cdrom -EXPORT_SYMBOL vmlinux 0xbeab8c9d param_get_long -EXPORT_SYMBOL vmlinux 0xbec5b577 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xbec724f1 __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0xbecc800f register_tcf_proto_ops -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 0xbedd1bfc lease_get_mtime -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0xbf245500 napi_gro_frags -EXPORT_SYMBOL vmlinux 0xbf29f1de devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xbf3903dc dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0xbf410319 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0xbf4f3a4c netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf6490cc md_check_recovery -EXPORT_SYMBOL vmlinux 0xbf68da56 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0xbf69cfc1 __bread_gfp -EXPORT_SYMBOL vmlinux 0xbf7a69b1 inet6_del_offload -EXPORT_SYMBOL vmlinux 0xbf831c99 param_set_ullong -EXPORT_SYMBOL vmlinux 0xbf982386 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfc78a2d _dev_err -EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block -EXPORT_SYMBOL vmlinux 0xbfd042fb __find_get_block -EXPORT_SYMBOL vmlinux 0xbfe039f6 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xc004eabd serio_bus -EXPORT_SYMBOL vmlinux 0xc00dc2d8 skb_copy -EXPORT_SYMBOL vmlinux 0xc0148787 udp_seq_next -EXPORT_SYMBOL vmlinux 0xc01c8d19 register_key_type -EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable -EXPORT_SYMBOL vmlinux 0xc03d0491 setattr_copy -EXPORT_SYMBOL vmlinux 0xc053835b unpin_user_page -EXPORT_SYMBOL vmlinux 0xc05c4989 logfc -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc0772456 unlock_buffer -EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress -EXPORT_SYMBOL vmlinux 0xc0c4a6d3 netlink_capable -EXPORT_SYMBOL vmlinux 0xc0c9e436 neigh_xmit -EXPORT_SYMBOL vmlinux 0xc0cbef0a ip_frag_init -EXPORT_SYMBOL vmlinux 0xc0e1846f devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0xc0e2fe53 tcf_classify -EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup -EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor -EXPORT_SYMBOL vmlinux 0xc112a065 peernet2id -EXPORT_SYMBOL vmlinux 0xc11eee3c bmap -EXPORT_SYMBOL vmlinux 0xc132eabf scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0xc13f19cf take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xc14374c8 find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data -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 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 0xc18d15b0 param_set_long -EXPORT_SYMBOL vmlinux 0xc18dc225 dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0xc1958612 qdisc_reset -EXPORT_SYMBOL vmlinux 0xc199cb11 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0xc19e2ba6 eth_header_parse -EXPORT_SYMBOL vmlinux 0xc1a9b39b udp_seq_stop -EXPORT_SYMBOL vmlinux 0xc1c73c79 inet_put_port -EXPORT_SYMBOL vmlinux 0xc1c907ae netdev_refcnt_read -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 0xc1ea3606 __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xc2050974 fman_port_get_tstamp -EXPORT_SYMBOL vmlinux 0xc219390d free_xenballooned_pages -EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl -EXPORT_SYMBOL vmlinux 0xc23eb5a4 inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0xc24a6301 blkdev_compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0xc24e4cff sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0xc2575b58 generic_file_mmap -EXPORT_SYMBOL vmlinux 0xc2587b02 of_device_alloc -EXPORT_SYMBOL vmlinux 0xc25cadd6 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc267e6b2 sockfd_lookup -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 0xc2a723eb __mdiobus_write -EXPORT_SYMBOL vmlinux 0xc2ad741a skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0xc2b8c018 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xc2c90cab __inet_stream_connect -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 0xc2f52274 __lshrti3 -EXPORT_SYMBOL vmlinux 0xc2fa8e1b cdev_init -EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state -EXPORT_SYMBOL vmlinux 0xc3090e1b register_mii_timestamper -EXPORT_SYMBOL vmlinux 0xc30da1da can_nice -EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr -EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc33691ba vfs_getattr -EXPORT_SYMBOL vmlinux 0xc3569c20 __breadahead_gfp -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 0xc3bc5787 lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb -EXPORT_SYMBOL vmlinux 0xc3d35fd8 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0xc3ea8cf5 vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0xc3eefe8d tcp_sock_set_cork -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 0xc40da68b PageMovable -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 0xc44f28bb jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0xc458112f inode_update_time -EXPORT_SYMBOL vmlinux 0xc4674d8d inet_stream_ops -EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr -EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc484d2d2 fman_get_pause_cfg -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 0xc4c3e4a2 cdev_del -EXPORT_SYMBOL vmlinux 0xc4cbbcbb __mod_node_page_state -EXPORT_SYMBOL vmlinux 0xc504eb49 kobject_add -EXPORT_SYMBOL vmlinux 0xc519d961 sock_init_data_uid -EXPORT_SYMBOL vmlinux 0xc51fc3cd blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0xc52ac54e sk_reset_timer -EXPORT_SYMBOL vmlinux 0xc5302071 fs_param_is_fd -EXPORT_SYMBOL vmlinux 0xc53a1d3d vc_resize -EXPORT_SYMBOL vmlinux 0xc54e3c1e i2c_del_driver -EXPORT_SYMBOL vmlinux 0xc56a41e6 vabits_actual -EXPORT_SYMBOL vmlinux 0xc56a93ed inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0xc56fc855 sock_gettstamp -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 0xc59c0a17 sock_set_keepalive -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 0xc5b8ff9c sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xc5d63699 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -EXPORT_SYMBOL vmlinux 0xc5f75c1b pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last -EXPORT_SYMBOL vmlinux 0xc5fa603f __netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc613c5cc key_revoke -EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc63c83c0 pci_scan_bus -EXPORT_SYMBOL vmlinux 0xc63cf9d4 mfd_cell_disable -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 0xc68d5629 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle -EXPORT_SYMBOL vmlinux 0xc6abc9bc irq_domain_set_info -EXPORT_SYMBOL vmlinux 0xc6c22d7d __destroy_inode -EXPORT_SYMBOL vmlinux 0xc6c71b81 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6cfac2e close_fd_get_file -EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware -EXPORT_SYMBOL vmlinux 0xc6d4eef9 pci_set_master -EXPORT_SYMBOL vmlinux 0xc6d65076 devfreq_update_target -EXPORT_SYMBOL vmlinux 0xc6d830be ip6tun_encaps -EXPORT_SYMBOL vmlinux 0xc6e3e175 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one -EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc700a74a blk_cleanup_disk -EXPORT_SYMBOL vmlinux 0xc7035af9 rpmh_write_async -EXPORT_SYMBOL vmlinux 0xc703c03a devm_clk_put -EXPORT_SYMBOL vmlinux 0xc707167a __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc72754ca nobh_truncate_page -EXPORT_SYMBOL vmlinux 0xc72aa27a dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0xc7352601 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0xc740bad4 fwnode_get_phy_id -EXPORT_SYMBOL vmlinux 0xc76c03b9 acpi_bus_get_device -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 0xc7941d93 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7b1831e inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xc7def85e tcp_check_req -EXPORT_SYMBOL vmlinux 0xc7e88224 dput -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 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc8804487 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -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 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b5bc5d mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0xc8d8fcc8 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc -EXPORT_SYMBOL vmlinux 0xc8dcf10f dm_put_device -EXPORT_SYMBOL vmlinux 0xc904df1f __alloc_disk_node -EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xc93dff9b deactivate_super -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 0xc951e0a4 netif_receive_skb -EXPORT_SYMBOL vmlinux 0xc962d6fc udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc9655961 skb_vlan_push -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 0xc9a8dc0b eth_gro_receive -EXPORT_SYMBOL vmlinux 0xc9aa229b jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xc9b13cfc sk_stream_error -EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9e366fb inet_shutdown -EXPORT_SYMBOL vmlinux 0xc9e462cd xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0xc9e7b0ee rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned -EXPORT_SYMBOL vmlinux 0xca01e555 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xca04b5f9 rt_dst_clone -EXPORT_SYMBOL vmlinux 0xca0aa076 mount_nodev -EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream -EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -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 0xca62afaf xudma_rflow_is_gp -EXPORT_SYMBOL vmlinux 0xca69fa79 input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0xca7982ad jbd2_journal_put_journal_head -EXPORT_SYMBOL vmlinux 0xca83bb3f cont_write_begin -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 0xcaa267c4 netif_schedule_queue -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 0xcafd3af4 tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb121c42 jbd2_journal_grab_journal_head -EXPORT_SYMBOL vmlinux 0xcb2441ec ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0xcb2926e5 input_reset_device -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 0xcb67a24e phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb76d6e1 remove_proc_entry -EXPORT_SYMBOL vmlinux 0xcb7e795e __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xcba00b79 xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0xcbc66ceb vm_mmap -EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame -EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbde2690 tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0xcbec23c7 udp_prot -EXPORT_SYMBOL vmlinux 0xcbf98b43 lease_modify -EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev -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 0xcc445ceb __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc573398 neigh_seq_next -EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc7100d3 generic_write_checks -EXPORT_SYMBOL vmlinux 0xcc8a37d7 dev_change_flags -EXPORT_SYMBOL vmlinux 0xcc921f00 ip6_frag_init -EXPORT_SYMBOL vmlinux 0xcc94df85 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id -EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize -EXPORT_SYMBOL vmlinux 0xccf8fce9 inet6_bind -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 0xcd0ce573 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xcd105aaf vme_dma_list_free -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 0xcd5dc148 unlock_page_memcg -EXPORT_SYMBOL vmlinux 0xcd704d5e of_parse_phandle_with_args_map -EXPORT_SYMBOL vmlinux 0xcd7c4f2c seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception -EXPORT_SYMBOL vmlinux 0xcd916b35 fs_param_is_u64 -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc73ec1 bdev_dax_pgoff -EXPORT_SYMBOL vmlinux 0xcdcb282d fs_lookup_param -EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xce022400 cdev_device_del -EXPORT_SYMBOL vmlinux 0xce036f24 sg_split -EXPORT_SYMBOL vmlinux 0xce0f289e write_inode_now -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 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 0xce853a68 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xcecd92e8 mount_bdev -EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create -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 0xcf4a8a45 tcp_sendpage -EXPORT_SYMBOL vmlinux 0xcf4d3ead skb_clone -EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xcf5b6822 filp_close -EXPORT_SYMBOL vmlinux 0xcf6f1548 dev_mc_add -EXPORT_SYMBOL vmlinux 0xcf71b3b5 fb_set_cmap -EXPORT_SYMBOL vmlinux 0xcf79ca33 dquot_disable -EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcfa7e913 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned -EXPORT_SYMBOL vmlinux 0xcfde01e4 seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0xcfeb98a8 acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xcfefce05 pci_claim_resource -EXPORT_SYMBOL vmlinux 0xd00df965 task_work_add -EXPORT_SYMBOL vmlinux 0xd00e66b2 skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0xd0120618 __napi_schedule -EXPORT_SYMBOL vmlinux 0xd02601dc simple_lookup -EXPORT_SYMBOL vmlinux 0xd02958a3 ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xd03498e4 neigh_for_each -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 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd0716e60 kernel_write -EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -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 0xd0fe8d51 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xd127215d fwnode_irq_get -EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd169cc9e dqput -EXPORT_SYMBOL vmlinux 0xd172cdde blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0xd17db5d1 inet_frag_find -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd19ef5ee sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0xd1adfe5c file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0xd1b95a47 ip6_xmit -EXPORT_SYMBOL vmlinux 0xd1c2e829 configfs_register_group -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1e27293 dquot_acquire -EXPORT_SYMBOL vmlinux 0xd1f31d61 flow_indr_block_cb_alloc -EXPORT_SYMBOL vmlinux 0xd204bf98 eth_header -EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down -EXPORT_SYMBOL vmlinux 0xd20f8779 of_root -EXPORT_SYMBOL vmlinux 0xd218f931 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0xd21fba89 sk_stop_timer -EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0xd237e4f7 tty_do_resize -EXPORT_SYMBOL vmlinux 0xd24838ce netdev_change_features -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 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 0xd2b8ac2d _dev_emerg -EXPORT_SYMBOL vmlinux 0xd2ba906b fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller -EXPORT_SYMBOL vmlinux 0xd2cb9ef2 __remove_inode_hash -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 0xd2f9b45b netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0xd3028070 init_net -EXPORT_SYMBOL vmlinux 0xd30c5c84 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd3468c5c inet_addr_type -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 0xd36dc10c get_random_u32 -EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd37f6635 d_move -EXPORT_SYMBOL vmlinux 0xd390b6ed xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0xd391c25b __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xd3a8f27c scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xd3af53a5 security_path_mknod -EXPORT_SYMBOL vmlinux 0xd3b080e7 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0xd3b31998 mpage_readahead -EXPORT_SYMBOL vmlinux 0xd3bccd46 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xd3bea511 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0xd3d2a4d2 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0xd3e424c8 xsk_get_pool_from_qid -EXPORT_SYMBOL vmlinux 0xd3e4bf22 napi_consume_skb -EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd3fba534 qcom_scm_set_cold_boot_addr -EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd4339de8 qcom_scm_pas_init_image -EXPORT_SYMBOL vmlinux 0xd43461b0 __scsi_execute -EXPORT_SYMBOL vmlinux 0xd43e49e5 twl6040_reg_write -EXPORT_SYMBOL vmlinux 0xd43f1e37 ip_fraglist_init -EXPORT_SYMBOL vmlinux 0xd443e5e6 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xd44558ad sock_i_uid -EXPORT_SYMBOL vmlinux 0xd44aa5c1 truncate_pagecache -EXPORT_SYMBOL vmlinux 0xd44d0efa netif_set_real_num_rx_queues -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 0xd4767b05 dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0xd481420d dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0xd4815dc8 mount_single -EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd48de0e2 max8925_set_bits -EXPORT_SYMBOL vmlinux 0xd49a07c8 netif_skb_features -EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam -EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4c2e212 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xd4ccb4b3 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table -EXPORT_SYMBOL vmlinux 0xd4f0b659 vfs_link -EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd514169b pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd52d7ca9 mdiobus_free -EXPORT_SYMBOL vmlinux 0xd52ee129 mmc_remove_host -EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xd563bca3 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0xd56f340a tcp_rcv_state_process -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 0xd5ba2191 rproc_add_subdev -EXPORT_SYMBOL vmlinux 0xd5e1ddf5 locks_free_lock -EXPORT_SYMBOL vmlinux 0xd5e4eaee skb_flow_dissect_hash -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 0xd62b1e45 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0xd636c6da tty_check_change -EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax -EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state -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 0xd6a3cec7 rproc_del -EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6adc2c0 rio_query_mport -EXPORT_SYMBOL vmlinux 0xd6cc532a vlan_vid_add -EXPORT_SYMBOL vmlinux 0xd6dfb687 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0xd6e5d2df inc_node_page_state -EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced -EXPORT_SYMBOL vmlinux 0xd702c755 reuseport_has_conns_set -EXPORT_SYMBOL vmlinux 0xd709b8c6 mmc_set_data_timeout -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 0xd7332724 rtnetlink_put_metrics -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 0xd77b6611 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0xd77bf05e jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xd7801786 nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0xd78e71f5 datagram_poll -EXPORT_SYMBOL vmlinux 0xd7add95d tcf_exts_num_actions -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 0xd7d280ad irq_poll_complete -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 0xd7ff1b8a __ashlti3 -EXPORT_SYMBOL vmlinux 0xd802074d nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range -EXPORT_SYMBOL vmlinux 0xd81f6765 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0xd828f063 xudma_tchanrt_write -EXPORT_SYMBOL vmlinux 0xd82d11e0 bio_add_page -EXPORT_SYMBOL vmlinux 0xd8327fb0 proc_create_single_data -EXPORT_SYMBOL vmlinux 0xd83d4e4c phy_get_c45_ids -EXPORT_SYMBOL vmlinux 0xd84ddd51 xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0xd85e5677 genl_notify -EXPORT_SYMBOL vmlinux 0xd86fe775 dev_get_mac_address -EXPORT_SYMBOL vmlinux 0xd876b74a nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0xd8853657 mdiobus_read -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd89fd137 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0xd8a309bd rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font -EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xd8e6aebd genphy_resume -EXPORT_SYMBOL vmlinux 0xd8fa1bbd disk_end_io_acct -EXPORT_SYMBOL vmlinux 0xd9059cee udp_ioctl -EXPORT_SYMBOL vmlinux 0xd90833ec config_item_put -EXPORT_SYMBOL vmlinux 0xd9198853 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0xd92e4f84 tcp_child_process -EXPORT_SYMBOL vmlinux 0xd939735e ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xd93e45ee fb_firmware_edid -EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy -EXPORT_SYMBOL vmlinux 0xd954cef5 __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0xd9567c4a ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xd95f6cc0 inet6_protos -EXPORT_SYMBOL vmlinux 0xd9636ae7 pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0xd96f63c8 devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0xd9734ba0 tcp_release_cb -EXPORT_SYMBOL vmlinux 0xd978d079 tegra_ivc_read_advance -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd988eac1 seq_vprintf -EXPORT_SYMBOL vmlinux 0xd99232e0 path_get -EXPORT_SYMBOL vmlinux 0xd99b1863 max8925_reg_write -EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xd9b185e4 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get -EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xd9c69d28 __devm_of_mdiobus_register -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 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 0xda0058c7 dump_emit -EXPORT_SYMBOL vmlinux 0xda10443c xudma_tchan_get_id -EXPORT_SYMBOL vmlinux 0xda14cd08 request_key_rcu -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda4d5f0b xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0xda69c1df mdio_device_create -EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda7a77b4 device_get_mac_address -EXPORT_SYMBOL vmlinux 0xda8196dd scsi_remove_target -EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -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 0xdb0c2ea4 seq_path -EXPORT_SYMBOL vmlinux 0xdb257507 sget -EXPORT_SYMBOL vmlinux 0xdb47c244 scmd_printk -EXPORT_SYMBOL vmlinux 0xdb4e13fc inet_accept -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb6ca782 mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0xdb6ea209 md_write_inc -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb8a3e9c __devm_mdiobus_register -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 0xdbcb80aa xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0xdbd66ab8 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0xdbda9b37 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc206a94 get_phy_device -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 0xdc49c198 reciprocal_value_adv -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc65406d __dev_get_by_name -EXPORT_SYMBOL vmlinux 0xdc718682 napi_gro_flush -EXPORT_SYMBOL vmlinux 0xdc7d5ad3 pnp_disable_dev -EXPORT_SYMBOL vmlinux 0xdc863a3a __free_pages -EXPORT_SYMBOL vmlinux 0xdc8f21fa mr_table_alloc -EXPORT_SYMBOL vmlinux 0xdca5b44f padata_free -EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb -EXPORT_SYMBOL vmlinux 0xdcb764ad memset -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 0xdce72b17 ppp_channel_index -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 0xdd18f9cd icmp_ndo_send -EXPORT_SYMBOL vmlinux 0xdd1dfd91 mptcp_subflow_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd3dce10 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xdd5bd736 input_close_device -EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd6610ef blk_mq_free_tag_set -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 0xddad7952 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat -EXPORT_SYMBOL vmlinux 0xddb4f805 mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0xddbc994b acpi_dev_get_first_match_dev -EXPORT_SYMBOL vmlinux 0xddc21f4c unlock_new_inode -EXPORT_SYMBOL vmlinux 0xddc5f3a9 default_llseek -EXPORT_SYMBOL vmlinux 0xddca8477 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xddd446a6 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0xdde031dd filemap_fault -EXPORT_SYMBOL vmlinux 0xdde2586f try_lookup_one_len -EXPORT_SYMBOL vmlinux 0xddf66fcc inet_recvmsg -EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done -EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xde469f97 kthread_bind -EXPORT_SYMBOL vmlinux 0xde55d6da bioset_exit -EXPORT_SYMBOL vmlinux 0xde6ad7d5 fwnode_phy_find_device -EXPORT_SYMBOL vmlinux 0xdea30d06 __lock_buffer -EXPORT_SYMBOL vmlinux 0xdea3cc91 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0xdeb0f1bf ilookup5 -EXPORT_SYMBOL vmlinux 0xdec35081 tcp_mtu_to_mss -EXPORT_SYMBOL vmlinux 0xded13756 page_symlink -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 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdf172f30 simple_rmdir -EXPORT_SYMBOL vmlinux 0xdf1d6236 pci_save_state -EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after -EXPORT_SYMBOL vmlinux 0xdf480b09 twl6040_power -EXPORT_SYMBOL vmlinux 0xdf4e5e8b cdrom_mode_select -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdfa05513 devm_of_clk_del_provider -EXPORT_SYMBOL vmlinux 0xdfbcfafe tty_port_hangup -EXPORT_SYMBOL vmlinux 0xdfcb1494 bio_copy_data -EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -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 0xe02c9c92 __xa_erase -EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0xe03d337c config_group_find_item -EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -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 0xe07e5f44 acpi_reconfig_notifier_unregister -EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups -EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range -EXPORT_SYMBOL vmlinux 0xe08e7a3f cleancache_register_ops -EXPORT_SYMBOL vmlinux 0xe091c977 list_sort -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 0xe0a8e4a7 inet6_ioctl -EXPORT_SYMBOL vmlinux 0xe0b131fb generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco -EXPORT_SYMBOL vmlinux 0xe0da7177 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0xe0e92f4f netlink_broadcast -EXPORT_SYMBOL vmlinux 0xe0e9d789 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0xe0f1b438 con_is_bound -EXPORT_SYMBOL vmlinux 0xe0f6607f __module_put_and_exit -EXPORT_SYMBOL vmlinux 0xe1116c49 mii_link_ok -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 0xe133d03c pci_match_id -EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch -EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe15197d0 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0xe1808f13 pcie_print_link_status -EXPORT_SYMBOL vmlinux 0xe18bb869 put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0xe19a4ef1 tcf_qevent_init -EXPORT_SYMBOL vmlinux 0xe19e46d1 sk_common_release -EXPORT_SYMBOL vmlinux 0xe1cbced6 rproc_alloc -EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe2154d6b of_device_register -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 0xe221d507 ip_getsockopt -EXPORT_SYMBOL vmlinux 0xe2287517 cdev_add -EXPORT_SYMBOL vmlinux 0xe2370cbc rt6_lookup -EXPORT_SYMBOL vmlinux 0xe24112e0 phy_init_hw -EXPORT_SYMBOL vmlinux 0xe241dfb8 fuse_mount_destroy -EXPORT_SYMBOL vmlinux 0xe2424839 netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0xe271128b cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0xe271e630 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe27fad75 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0xe28ff571 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0xe2a216a9 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xe2a5fe91 audit_log_start -EXPORT_SYMBOL vmlinux 0xe2ade466 skb_checksum -EXPORT_SYMBOL vmlinux 0xe2d40e9b ipv6_dev_find -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2e15bc8 neigh_ifdown -EXPORT_SYMBOL vmlinux 0xe2ec4fae generic_file_splice_read -EXPORT_SYMBOL vmlinux 0xe2ed8485 phy_do_ioctl -EXPORT_SYMBOL vmlinux 0xe3021ec9 __skb_checksum -EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe337892e __netif_schedule -EXPORT_SYMBOL vmlinux 0xe340dda8 __page_symlink -EXPORT_SYMBOL vmlinux 0xe35ad3e1 __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xe38d3240 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0xe38d7253 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0xe3915d2b tty_kref_put -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 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 0xe3bc74a8 fwnode_mdio_find_device -EXPORT_SYMBOL vmlinux 0xe3c22fe6 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xe3e753ac mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3f5c8f2 mipi_dsi_device_unregister -EXPORT_SYMBOL vmlinux 0xe3fd3455 fib_default_rule_add -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 0xe41eea4f __quota_error -EXPORT_SYMBOL vmlinux 0xe41fb299 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xe42dcb6f simple_empty -EXPORT_SYMBOL vmlinux 0xe4359e37 qman_get_qm_portal_config -EXPORT_SYMBOL vmlinux 0xe4479fd6 tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0xe44b1606 eth_header_cache -EXPORT_SYMBOL vmlinux 0xe465ae6e pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0xe46fdf0a reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0xe4721935 mdio_device_remove -EXPORT_SYMBOL vmlinux 0xe474ec32 sock_no_socketpair -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 0xe4ab10ef security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset -EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe4f46666 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0xe4f98352 dqget -EXPORT_SYMBOL vmlinux 0xe4faf583 __ip_dev_find -EXPORT_SYMBOL vmlinux 0xe506b1c2 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe5368fc1 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe53974c2 vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0xe5640ac5 call_netdevice_notifiers -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 0xe59e1bf0 xfrm_policy_flush -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 0xe5d118b4 insert_inode_locked4 -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 0xe63995fa blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0xe641268f setup_arg_pages -EXPORT_SYMBOL vmlinux 0xe6415ec7 thread_group_exited -EXPORT_SYMBOL vmlinux 0xe643c463 inet_protos -EXPORT_SYMBOL vmlinux 0xe6487449 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0xe6794777 rproc_detach -EXPORT_SYMBOL vmlinux 0xe68fd145 seq_puts -EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0xe69e8315 pagevec_lookup_range -EXPORT_SYMBOL vmlinux 0xe6b410a9 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -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 0xe7257ab8 xa_store_range -EXPORT_SYMBOL vmlinux 0xe72dd141 blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe73284b7 vme_register_driver -EXPORT_SYMBOL vmlinux 0xe74ad4be i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0xe74f85a9 tcp_filter -EXPORT_SYMBOL vmlinux 0xe75ba036 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0xe7698027 ioremap_cache -EXPORT_SYMBOL vmlinux 0xe76bb40a tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0xe77f14a6 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0xe78a9e65 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0xe78cfbae udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0xe78d6290 devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0xe790d42d buffer_migrate_page -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 0xe7d67c51 skb_tx_error -EXPORT_SYMBOL vmlinux 0xe7ef52ad ip6_frag_next -EXPORT_SYMBOL vmlinux 0xe7f250ef fs_param_is_bool -EXPORT_SYMBOL vmlinux 0xe7fe3b02 nd_device_unregister -EXPORT_SYMBOL vmlinux 0xe80ac064 account_page_redirty -EXPORT_SYMBOL vmlinux 0xe80ba77e proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xe839bb87 tcf_qevent_destroy -EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table -EXPORT_SYMBOL vmlinux 0xe86c2b58 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xe87d6d25 pcie_ptm_enabled -EXPORT_SYMBOL vmlinux 0xe880ef66 seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0xe8855322 padata_alloc_shell -EXPORT_SYMBOL vmlinux 0xe88da7d3 ip_frag_next -EXPORT_SYMBOL vmlinux 0xe892457f km_new_mapping -EXPORT_SYMBOL vmlinux 0xe8b012a4 proto_register -EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xe8b74c6c passthru_features_check -EXPORT_SYMBOL vmlinux 0xe8cc0098 mmc_retune_pause -EXPORT_SYMBOL vmlinux 0xe8d8c844 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0xe90253f0 xudma_rflow_get -EXPORT_SYMBOL vmlinux 0xe904621d xfrm4_rcv -EXPORT_SYMBOL vmlinux 0xe90571da dev_add_pack -EXPORT_SYMBOL vmlinux 0xe90779ce dev_add_offload -EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe916204b generic_block_bmap -EXPORT_SYMBOL vmlinux 0xe9204f3f wait_for_key_construction -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 0xe95347ab netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe957542b pldmfw_flash_image -EXPORT_SYMBOL vmlinux 0xe97b3e88 __scm_destroy -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 0xe991f261 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0xe9a10100 mmc_detect_change -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 0xe9c65c5f __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0xe9d3a2c0 netdev_update_features -EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size -EXPORT_SYMBOL vmlinux 0xe9edafa9 register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock -EXPORT_SYMBOL vmlinux 0xea1c3e3a arm_smccc_1_2_hvc -EXPORT_SYMBOL vmlinux 0xea246bda send_sig_mceerr -EXPORT_SYMBOL vmlinux 0xea32286f ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xea3a1328 seq_open -EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea505695 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0xea51994f tegra_ivc_cleanup -EXPORT_SYMBOL vmlinux 0xea551055 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0xea565f3b __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0xea5dfff7 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0xea7de79f mmc_can_discard -EXPORT_SYMBOL vmlinux 0xea860c0b mmc_run_bkops -EXPORT_SYMBOL vmlinux 0xea905617 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xea96a26f lookup_one_len -EXPORT_SYMBOL vmlinux 0xeab16756 pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xead8c400 bman_get_bpid -EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xeb13fbc5 inet_frags_fini -EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc -EXPORT_SYMBOL vmlinux 0xeb2391c9 gen_new_estimator -EXPORT_SYMBOL vmlinux 0xeb2e87cc flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0xeb31e743 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -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 0xeb7869d1 neigh_carrier_down -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 0xeba1422e xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xeba3a96f shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0xeba84720 dev_load -EXPORT_SYMBOL vmlinux 0xebaf8f13 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xebb08e83 page_pool_put_page -EXPORT_SYMBOL vmlinux 0xebb5043b twl6040_set_pll -EXPORT_SYMBOL vmlinux 0xebc5d43b nf_log_register -EXPORT_SYMBOL vmlinux 0xebd1ab49 device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0xebd43184 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0xebeb20ea __nla_put -EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0xec2ce68b _dev_info -EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range -EXPORT_SYMBOL vmlinux 0xec43f962 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0xec48e0af pci_clear_mwi -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec75f038 pcibus_to_node -EXPORT_SYMBOL vmlinux 0xec8a6790 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0xecb49ae5 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0xecc5e24e build_skb -EXPORT_SYMBOL vmlinux 0xecdc69b8 mii_check_media -EXPORT_SYMBOL vmlinux 0xecdd7707 ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecf522f1 unix_get_socket -EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node -EXPORT_SYMBOL vmlinux 0xed007ec2 vga_client_register -EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf -EXPORT_SYMBOL vmlinux 0xed08b380 tty_devnum -EXPORT_SYMBOL vmlinux 0xed0fff46 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0xed1071a3 mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0xed142ac1 sock_wake_async -EXPORT_SYMBOL vmlinux 0xed238617 __put_cred -EXPORT_SYMBOL vmlinux 0xed28041e mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0xed3b85a9 pci_enable_wake -EXPORT_SYMBOL vmlinux 0xed49d783 mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock -EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address -EXPORT_SYMBOL vmlinux 0xed5d49b1 module_put -EXPORT_SYMBOL vmlinux 0xed5d64c4 nla_put_64bit -EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed7c88c6 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 -EXPORT_SYMBOL vmlinux 0xed966b59 input_set_max_poll_interval -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 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee30d55e __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee719ee2 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc -EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee82682c of_graph_get_remote_endpoint -EXPORT_SYMBOL vmlinux 0xee84b48d sock_set_reuseport -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 0xee9df7d7 blk_queue_split -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -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 0xeefb0bac tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0xef15cfb1 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xef24c25f mmc_command_done -EXPORT_SYMBOL vmlinux 0xef4623e2 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xef6fc5d8 ip_output -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 0xef8ac53d qcom_scm_restore_sec_cfg -EXPORT_SYMBOL vmlinux 0xef8da8b4 get_tree_bdev -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 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefb5cfeb mipi_dsi_generic_read -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 0xefefa68a napi_build_skb -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf0061525 iterate_fd -EXPORT_SYMBOL vmlinux 0xf01bdb4a file_open_root -EXPORT_SYMBOL vmlinux 0xf01c4545 __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xf02b9c34 generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0xf03502d3 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0xf040ecc7 dma_map_resource -EXPORT_SYMBOL vmlinux 0xf042a714 genphy_read_lpa -EXPORT_SYMBOL vmlinux 0xf06d3cee __mdiobus_register -EXPORT_SYMBOL vmlinux 0xf07bac4e nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0xf07f92a2 vfs_statfs -EXPORT_SYMBOL vmlinux 0xf08912a8 ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -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 0xf0ddd82f free_task -EXPORT_SYMBOL vmlinux 0xf0f5571b dm_kobject_release -EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf130c0e3 param_set_ulong -EXPORT_SYMBOL vmlinux 0xf137afa7 netif_device_detach -EXPORT_SYMBOL vmlinux 0xf1424f92 input_flush_device -EXPORT_SYMBOL vmlinux 0xf150d17e migrate_vma_setup -EXPORT_SYMBOL vmlinux 0xf15f84b4 phy_resume -EXPORT_SYMBOL vmlinux 0xf161e787 vm_map_ram -EXPORT_SYMBOL vmlinux 0xf16bd643 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb -EXPORT_SYMBOL vmlinux 0xf1883120 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0xf18ab4f3 d_genocide -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1984b88 rtnl_unicast -EXPORT_SYMBOL vmlinux 0xf1ab3092 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0xf1add85a sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0xf1c2d285 fwnode_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0xf1cb356b rtc_add_groups -EXPORT_SYMBOL vmlinux 0xf1cc0646 request_firmware -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 0xf1f1d07e vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0xf1f81380 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xf1fe7653 vfs_fsync -EXPORT_SYMBOL vmlinux 0xf21e972e flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0xf2203413 udp6_seq_ops -EXPORT_SYMBOL vmlinux 0xf223e129 pci_dev_get -EXPORT_SYMBOL vmlinux 0xf2282908 dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0xf23bacf5 of_get_child_by_name -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf2646b68 finalize_exec -EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier -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 0xf28ecf5a tcp_seq_next -EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler -EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xf2aba58a do_splice_direct -EXPORT_SYMBOL vmlinux 0xf2af83dd skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2d44798 ethtool_notify -EXPORT_SYMBOL vmlinux 0xf2d797ad icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free -EXPORT_SYMBOL vmlinux 0xf2ff9868 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0xf303f58b remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf31163c2 fb_blank -EXPORT_SYMBOL vmlinux 0xf31c93ba inet_csk_destroy_sock -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 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf34b9fa0 netdev_pick_tx -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -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 0xf379bf33 vme_irq_generate -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused -EXPORT_SYMBOL vmlinux 0xf39a43a5 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0xf3a3fb6c sb_min_blocksize -EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf3aeaabb mmc_add_host -EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3c0a72f sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0xf3ca0b82 touch_buffer -EXPORT_SYMBOL vmlinux 0xf3d4046c ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xf3dd5c23 genphy_c37_read_status -EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3e30993 qdisc_hash_del -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3fc8a70 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xf3ffe453 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0xf40950ab tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0xf4102303 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xf410bee9 locks_delete_block -EXPORT_SYMBOL vmlinux 0xf42ab019 rproc_of_parse_firmware -EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface -EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -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 0xf487bad2 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xf49746d2 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4dc4672 flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf503fef2 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xf506f1ff blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0xf511ecec xfrm_input -EXPORT_SYMBOL vmlinux 0xf53058ef param_set_invbool -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf5422200 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0xf54bec41 tcp_parse_options -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 0xf56b199e sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0xf5784dd0 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0xf57fb6b7 vme_bus_type -EXPORT_SYMBOL vmlinux 0xf5925223 sock_no_getname -EXPORT_SYMBOL vmlinux 0xf592b468 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc -EXPORT_SYMBOL vmlinux 0xf5add0ae ns_capable_setid -EXPORT_SYMBOL vmlinux 0xf5b1383f d_alloc -EXPORT_SYMBOL vmlinux 0xf5b18a34 __phy_resume -EXPORT_SYMBOL vmlinux 0xf5d74d61 input_get_poll_interval -EXPORT_SYMBOL vmlinux 0xf5e33e07 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf60cb18b dquot_quota_on_mount -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 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf6958ed5 md_bitmap_free -EXPORT_SYMBOL vmlinux 0xf6964728 param_set_charp -EXPORT_SYMBOL vmlinux 0xf69704c6 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0xf6aca585 devm_ioremap_np -EXPORT_SYMBOL vmlinux 0xf6c98340 __module_get -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6ef55da xfrm4_udp_encap_rcv -EXPORT_SYMBOL vmlinux 0xf6f89fcb dev_mc_init -EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf74bf28b _dev_notice -EXPORT_SYMBOL vmlinux 0xf75211d1 dev_set_mtu -EXPORT_SYMBOL vmlinux 0xf762f92e mdiobus_unregister_device -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 0xf77337a1 hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio -EXPORT_SYMBOL vmlinux 0xf781ff91 fault_in_iov_iter_writeable -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 0xf7ac571f lookup_one_positive_unlocked -EXPORT_SYMBOL vmlinux 0xf7bd9859 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0xf7c48778 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0xf7cc1faa xfrm_state_update -EXPORT_SYMBOL vmlinux 0xf7d2cec8 inet_release -EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table -EXPORT_SYMBOL vmlinux 0xf7da9856 dma_get_sgtable_attrs -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 0xf80063fd follow_down_one -EXPORT_SYMBOL vmlinux 0xf80b8085 import_iovec -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf8264f50 dma_map_page_attrs -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf835979d blk_mq_unique_tag -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 0xf8627d4c of_node_name_eq -EXPORT_SYMBOL vmlinux 0xf866b00c tegra_io_pad_power_enable -EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf89f5bdc __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0xf8af9002 release_sock -EXPORT_SYMBOL vmlinux 0xf8b71281 dev_queue_xmit_accel -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 0xf90f33d4 phy_connect -EXPORT_SYMBOL vmlinux 0xf91013a9 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0xf910c61b gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct -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 0xf9525a2b kmalloc_caches -EXPORT_SYMBOL vmlinux 0xf95c619b acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xf9637440 kthread_blkcg -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 0xf98ce0e1 netdev_port_same_parent_id -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 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 0xfa297415 acpi_map_pxm_to_node -EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec -EXPORT_SYMBOL vmlinux 0xfa559d9d devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa7ce488 tcp_req_err -EXPORT_SYMBOL vmlinux 0xfa7f92f3 netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfa8e97f7 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0xfa9dbdd9 acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0xfaa84971 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfac22d9b vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0xfac2c217 netpoll_print_options -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -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 0xfb2b0908 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0xfb339eb2 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable -EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb41750c phy_modify_paged -EXPORT_SYMBOL vmlinux 0xfb449acd vme_dma_list_add -EXPORT_SYMBOL vmlinux 0xfb57379e tegra_dfll_register -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 0xfb73b5ad sock_kfree_s -EXPORT_SYMBOL vmlinux 0xfb79d6cc get_thermal_instance -EXPORT_SYMBOL vmlinux 0xfb868048 dquot_free_inode -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 0xfbb6cb7d starget_for_each_device -EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad -EXPORT_SYMBOL vmlinux 0xfbbb6c72 of_graph_is_present -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbe30ea0 phy_free_interrupt -EXPORT_SYMBOL vmlinux 0xfbe4b175 qman_create_cgr -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 0xfc031ebc inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0xfc05c473 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xfc0b5b87 dev_activate -EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit -EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load -EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read -EXPORT_SYMBOL vmlinux 0xfc4c0e4a nf_log_packet -EXPORT_SYMBOL vmlinux 0xfc527013 call_fib_notifiers -EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown -EXPORT_SYMBOL vmlinux 0xfc695ca2 filemap_fdatawrite_wbc -EXPORT_SYMBOL vmlinux 0xfc7dd517 zero_fill_bio -EXPORT_SYMBOL vmlinux 0xfc7e1100 unix_detach_fds -EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset -EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available -EXPORT_SYMBOL vmlinux 0xfcb82633 netlink_kernel_release -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 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfd034cff kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xfd04aa31 fc_mount -EXPORT_SYMBOL vmlinux 0xfd1c7c3a rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0xfd1f506f vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xfd36f773 audit_log -EXPORT_SYMBOL vmlinux 0xfd3ffd98 fman_unregister_intr -EXPORT_SYMBOL vmlinux 0xfd6a15d4 vfs_unlink -EXPORT_SYMBOL vmlinux 0xfd7e0fd7 follow_up -EXPORT_SYMBOL vmlinux 0xfd8512e3 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0xfd8e075a tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 -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 0xfdceb45f tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0xfdd5fc0f qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0xfde6fcf9 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0xfdf09e20 dev_printk_emit -EXPORT_SYMBOL vmlinux 0xfe008dae fput -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe03f4bd netdev_get_xmit_slave -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 0xfe31c55d tegra_ivc_write_advance -EXPORT_SYMBOL vmlinux 0xfe37ed3f simple_dir_inode_operations -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 0xfe6f0858 seq_release_private -EXPORT_SYMBOL vmlinux 0xfe76d22c vm_map_pages -EXPORT_SYMBOL vmlinux 0xfe868a0a dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0xfe8ef6c8 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfe91941f param_ops_string -EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfea3c367 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info -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 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfeff3781 mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0xff035a1b genphy_suspend -EXPORT_SYMBOL vmlinux 0xff0faaac cad_pid -EXPORT_SYMBOL vmlinux 0xff0fb8de skb_split -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff2db2dd invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xff4d13c7 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff6de051 udp_seq_start -EXPORT_SYMBOL vmlinux 0xff72d688 phy_disconnect -EXPORT_SYMBOL vmlinux 0xff7e7f8d kryo_l2_set_indirect_reg -EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xff96800d jbd2_journal_init_inode -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 0xffbf3e30 d_alloc_anon -EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffd126fc trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0xffd31d35 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0xfff0957d tegra_ivc_read_get_next_frame -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/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 -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x027ab3d2 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xa5eba0f7 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x6187e1b5 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xb7262ff5 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x0f476d23 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x3dc44045 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x889600aa async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xab7732a6 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x11e1a042 async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x17e94d0b async_xor_val_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x5a136c95 async_xor_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xce02bc78 async_xor_val -EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x7b56b715 blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x5f402763 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 0xbcf8919b 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 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 0xefe73979 simd_skcipher_free -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 -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xccc308c5 serpent_setkey -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 0x7b810430 twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x087020df spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x38acff77 spk_synth_get_index -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x466f5eb7 synth_putwc -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4ef38edd spk_ttyio_release -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4f418bdf spk_synth_flush -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x528c662a synth_remove -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x588a6418 spk_var_show -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x72598a60 synth_add -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x744f4ecd spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7478ceb6 synth_current -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x78a37465 spk_ttyio_ops -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x84dad068 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8c82dfca synth_request_region -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8fe0db01 synth_putwc_s -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaadb0612 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xabb7e5cf spk_ttyio_synth_probe -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaf590088 spk_do_catch_up_unicode -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xafeb819c spk_ttyio_synth_immediate -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb734cb9d speakup_event -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc319c604 synth_putws_s -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc6a06d16 spk_get_var -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd1540a29 spk_var_store -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd8fd86cf synth_release_region -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd93829dd speakup_info -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe194d0ef synth_printf -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xed22e907 spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x1c304a78 acpi_nfit_desc_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4639bcda acpi_nfit_shutdown -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x499bbf57 nfit_get_smbios_id -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xb864bb01 acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xb9d38c30 acpi_nfit_ctl -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xba0e557e __acpi_nvdimm_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xcd410171 __acpi_nfit_notify -EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0x67927a0d platform_profile_notify -EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xbfe36436 platform_profile_remove -EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xcac33cd4 platform_profile_register -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x5460aeb4 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xde9c2f8c sis_info133_for_sata -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x09917359 charlcd_poke -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x6fd9cc4a charlcd_register -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x8b45326c charlcd_alloc -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-ac97 0x169dcd59 __regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x22c79b99 __devm_regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xd4f0d4a0 regmap_ac97_default_volatile -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xd573cae4 __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xd2949831 __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xd85b50f2 __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xa1734e13 __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xbe3dea21 __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x8639af14 __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xe19805fc __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x2a682430 __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xe50ca7ed __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x20bf26b9 __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x61e2861f __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x779d459c __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8540f7f2 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8e3755cf __regmap_init_spmi_base -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/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/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 -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1ffad24a mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2193e711 mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2ba80e07 mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x50e05876 mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5b5dac8d mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5bcd0d30 mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x60470af8 mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x63dc8e7f mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x659c5295 mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6bda930e mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6d5a9859 mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6d69cfce mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x73d2e86a mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7524aabc mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9119fa11 __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x99704ee3 mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9a6cb5a0 mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa4a3c2de mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb6ca557b mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbc18c8aa mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc2314b59 mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd36c7645 mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe11875bc mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe8aea82e mhi_poll -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf29eb5ed mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf95cf33f mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xfb744984 mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x1173a10f moxtet_device_written -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x165634eb __moxtet_register_driver -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x42349a53 moxtet_device_write -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x5d604726 moxtet_device_read -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x63d37646 sunxi_rsb_driver_register -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0xf0e0816d __devm_regmap_init_sunxi_rsb -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x4344f91c meson_sclk_ws_inv_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x59a06bc4 meson_clk_phase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x70fce857 meson_clk_triphase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0x2ec6c5bf 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 0x1314a7de qcom_cc_map -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 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 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 0x4db1c3cb qcom_find_src_index -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 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 0x7b0180f5 qcom_cc_register_board_clk -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 -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 0xa14c013e gdsc_gx_do_nothing_enable -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 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 -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/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 0x1cb6aec1 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 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/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 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x24ec3ce8 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2ba6053a comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3001940f comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x324c8e75 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x413a641d comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x429851c6 comedi_timeout -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x57f1a69a comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5de82e5a comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x692d2253 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6ffaa4a8 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x830910dd comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9cc62756 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9e62d32f __comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9f8fc4b5 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa6f7714f comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa900c75f comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb3d82460 comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb97dbaf8 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdf52b60 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbea37be7 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbfb78aaf comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc5913202 comedi_event -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc7c76774 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc7e1259c comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd3beef62 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd3fec11f comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdab49e5e comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb13c3d4 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe358f691 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe3bd0c3b comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe496eec4 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe4f5eb1c comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xea6c630f comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfc548822 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x065d3a0f comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x072e2c80 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x0ffc583f comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x65481488 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xa544956b comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xaca1b818 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe0936046 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe9b25863 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x454fad5e comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x464ee4c7 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xa4dbeff5 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xd2b8fb26 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xd840cc3d comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xf76a10c7 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xa913d6b9 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x2a27ca12 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x537caa02 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xc97f441b amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x2718a49f comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x29b269cb comedi_8254_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x391905d7 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x55c36705 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x571c8962 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5af194e6 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x62986d5e comedi_8254_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x75ed4f14 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7862cab5 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x87fa5b30 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xdae49f4f comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf7f8dbe5 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xfe0f351c comedi_8254_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x0a85e4bb subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x644d4fa0 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xe325b9d3 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x90c70dff das08_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0a4c726c mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x153954ec mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1d5102d6 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x23701eaa mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x26b1e010 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x31f8c893 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4ac735e3 mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x50601e9b mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x5dbe28c3 mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6aa761d3 mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6e862fa1 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc15338b5 mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe2849c23 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe4729042 mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xeeca643e mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xfe446a61 mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x228c21e4 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x33123dce labpc_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x85e75c94 ni_assign_device_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1155887e ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x14cfdb53 ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2dc29faf ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x39a2ce32 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4e8b3669 ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x581a55f1 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x67468834 ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x77c95ceb ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7853a3ca ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x953507b7 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa5bae9c1 ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xaa038f38 ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xae69637a ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb3e05561 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xbeb71954 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe4a47723 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x0ad719da ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x0c700c91 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x1265dd7b ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x915764e6 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xab2fac9e ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xacfad1e1 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x1cb90294 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x43f00128 comedi_open -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x4b6dbe02 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x813acf17 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa0af7011 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa8491948 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xef0ddbfa comedi_close -EXPORT_SYMBOL_GPL drivers/counter/counter 0x137352d6 counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0x294a7ea1 devm_counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0x61d398b1 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 0xece97640 ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x15ffc853 hisi_qm_get_free_qp_num -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1dae8c1f hisi_qm_get_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1f13fe9b hisi_acc_sg_buf_unmap -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2becc288 hisi_qm_alloc_qps_node -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2cf092ef hisi_qm_free_qps -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3a518bdf hisi_qm_suspend -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3ee3ae3f hisi_qm_alg_register -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x406337d5 hisi_qm_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x57a64085 hisi_qm_sriov_enable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x59edd918 hisi_qm_create_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5f4ce504 hisi_qm_pm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6032a038 hisi_acc_free_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x637a3ab9 hisi_qm_dev_err_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x74c13a03 hisi_qm_reset_prepare -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7c54aea0 hisi_qm_release_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7d4775f6 hisi_qm_pm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x811cb4d0 hisi_qm_dev_slot_reset -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x834ea608 hisi_qm_dev_err_detected -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x83b71ba1 hisi_qm_alg_unregister -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8867ae06 hisi_qm_stop -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8f66ecae hisi_qm_wait_task_finish -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9319de69 hisi_qm_debug_regs_clear -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x958b53f8 hisi_qm_put_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9e402437 hisi_qm_start_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa027e76a hisi_acc_sg_buf_map_to_hw_sgl -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa618668b hisi_qm_start -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa96e3b86 hisi_qm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xac9469e4 hisi_qm_sriov_disable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xaf409f32 hisi_qp_send -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb3f53856 hisi_qm_get_vft -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc8214a5e hisi_qm_debug_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd11a0ee3 hisi_qm_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xda0ba106 hisi_acc_create_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdd2996d6 hisi_qm_reset_done -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe088598a hisi_qm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe18fa620 hisi_qm_dev_err_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe9740556 hisi_qm_resume -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf2d8b797 hisi_qm_stop_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfce16cce hisi_qm_regs_dump -EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0x08fb3d88 otx_cpt_eng_grp_has_eng_type -EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0x32e43048 otx_cpt_uc_supports_eng_type -EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x3af0b1c0 dev_dax_probe -EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0x38c08410 __dax_pmem_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x56a685ce dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x603dd041 dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x051290a8 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x22b65974 dw_dma_acpi_controller_free -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x45f5aa4e idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x6eb652dc do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x73035ab3 do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x95d3ef73 dw_dma_acpi_controller_register -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xad3d085e idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc8eaf0ef dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd8031443 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x369b5dd8 dpdmai_reset -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x4dc3e6f0 dpdmai_get_rx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x683ae5af dpdmai_get_attributes -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x72f30521 dpdmai_set_rx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x816e7adf dpdmai_enable -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x85fbf5b6 dpdmai_destroy -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 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 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 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 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/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 -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xab21393b ffa_device_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xba95ffb2 ffa_bus_type -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xbb24c923 ffa_dev_ops_get -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xce51d666 ffa_driver_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x6b5fee10 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 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 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 0x7223afef dfl_fpga_enum_info_add_irq -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 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 0x88a560f4 dfl_fpga_enum_info_alloc -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 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 0xef0a6ede dfl_fpga_feature_devs_enumerate -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 -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4158e812 fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x44cfc3a3 of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5b8a160b fpga_bridge_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x70717c83 fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x842df973 fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xb696f6f0 fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xccf3b14e fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xcfee87ea of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xeab2b5a7 fpga_bridge_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xfa1c767e fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xfafb06c4 fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1169deae fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x19d460fa fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1ed02159 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x29820355 fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2ca7dfc2 devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5819430a fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x60523bc8 fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7fb90184 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x837d2798 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8d173877 fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xbb4d5b77 fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe0d6d7e9 devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe105b4e1 fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf92a1add fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x04432cf9 fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x14e3cba2 fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x4792d2dc fpga_region_register -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 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 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 0xd942f235 fsi_slave_write -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 -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x43ab860c gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x50ffab6b gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x53b43d8a gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x7857f5a9 gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xfbbc2ba0 gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x1639502d gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x1e269986 gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x22aaf9f2 gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x49b9014c gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xdbf88433 gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x2bf7e91b __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x647424be __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x496ce291 gpio_regmap_get_drvdata -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7066570 gpio_regmap_unregister -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7dfc693 devm_gpio_regmap_register -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xf1a8308e gpio_regmap_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x23bd6640 analogix_dp_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x6b7c42a9 analogix_dp_stop_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x73b3b324 analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x74eea564 analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7fe835ae analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xc7ee3071 analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xcbd8b192 analogix_dp_probe -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 -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4524f857 dw_hdmi_set_plugged_cb -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 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 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 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 0x43a48078 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 -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x090c7e38 drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0f6e7e8e drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x14ce11d7 drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2a1c199f of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x31596c18 drm_of_encoder_active_endpoint -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4050c196 drm_gem_cma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4159358f drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x429d2692 drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x42bc94ec drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x47198bf7 drm_of_lvds_get_dual_link_pixel_order -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x509a3c59 drm_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5695123c drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x61069e25 drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6e85c9e9 drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x80cdb6c2 drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x88c5fb77 drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa10b9732 drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa63b926d drm_of_find_panel_or_bridge -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa7bf156d drm_gem_shmem_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaeea5b1e drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb2724bff drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb4852112 drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb9419446 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xba41c507 drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc9348b27 drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd2de586b drm_of_component_match_add -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd3320198 drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xde7639b3 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdf4bd407 drmm_kstrdup -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe8d81acc drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf1926108 drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf4f66f40 drm_gem_cma_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf72de176 drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x223b6676 devm_of_dp_aux_populate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x2710bb2f of_dp_aux_depopulate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x78686aba of_dp_aux_populate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xa397926a __dp_aux_dp_driver_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xf0825887 dp_aux_dp_driver_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x047e4ba9 drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4b8dc40e drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x552621fd drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5fdf5eb9 drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x913a853b drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa706c5e4 drm_fb_cma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb243f864 drm_bridge_connector_disable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb2a106ce drm_bridge_connector_enable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xbfe4f8fc drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc4a85d46 drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc855b463 drm_fb_cma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xdcc679fc drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf19c10d4 drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x11ba829d meson_vclk_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x338fd8ed meson_venc_hdmi_mode_set -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x57002ea6 meson_vclk_dmt_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x94a785f8 meson_venc_hdmi_supported_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xecf357eb meson_vclk_vic_supported_freq -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_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 -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xdee8a2f1 rcar_lvds_clk_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x6835ebcc rockchip_rgb_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xb062ed7f vop_component_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02f46d26 __tracepoint_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1143f339 gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14028e17 __SCK__tp_func_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 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 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 -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5ad3f2d7 __tracepoint_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5c0a8043 __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5d13d3b2 gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6213634d __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6247fd3b gb_connection_destroy -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x755886ea gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7682fff1 gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x76c17ac9 greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81949bf1 gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x83727a02 gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x87418feb gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8ba458bb __traceiter_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x91939861 greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9af6c455 gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9c202c78 __traceiter_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9dc4676b gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa2974dab gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa298305d gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa416e2da __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xad8afbdd gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb8a56c72 gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc7a837bc gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcce70292 gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcf25058e gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd0f6db90 __traceiter_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3e646d9 __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdd633c6e gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdf88527e gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe286b371 __traceiter_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeb954bb4 gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xedb02754 gb_operation_unidirectional_timeout -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/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 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 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 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 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x9b6fd082 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/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/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 -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x54717f31 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x680ae3fd hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7ca893be hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7e00b032 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x87e3bd9d hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8b810a05 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9082d912 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x95f58e1f hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x978f7315 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa1b2904c hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb6dae6c5 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xef4c3773 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf2de5019 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfeb6f9cd hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfecfaa06 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0935c646 vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x104ae105 vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1c79cfd3 hv_ringbuffer_spinlock_busy -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x216a35e5 vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x23a6c727 hv_pkt_iter_first -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2c777048 vmbus_free_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2f3680f5 vmbus_next_request_id -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31e2e77f vmbus_free_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x321055cb vmbus_prep_negotiate_resp -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x32e5ab06 vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x363e8265 vmbus_connect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4746e0fe __hv_pkt_iter_next -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4f8430ec vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x548521b1 hv_ringbuffer_get_debuginfo -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5ad9691a vmbus_request_addr -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x62db11a4 vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7882f285 hv_pkt_iter_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x78f97ae5 vmbus_send_modifychannel -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7dfaf97c vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x819b03d4 hv_pkt_iter_first_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x90750c2a vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9326a72c vmbus_connection -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x95024589 vmbus_disconnect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9b8ef90f vmbus_alloc_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xaaa16155 vmbus_are_subchannels_present -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb19ac732 vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb356dbe4 vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc93fbe50 vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcb9a9e79 __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf5312131 vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf915c2f9 vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfdaa46e9 vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x027a13de adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x502d30d3 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x9692608e adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xd29e6b3e ltc2947_pm_ops -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1f329577 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x429de3c8 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x43dca68b intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6d47ad16 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x79fdc920 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x826b5a92 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa8185da8 intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc217afc1 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xef3017f1 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x111ff9bb intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x3eb7eb77 intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xb8ded58d intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1a346103 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x28301037 stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2894d4d5 stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x451d2080 stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5f186ecc stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6b4f3d09 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7065d594 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x90ab5c1b to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe3e969a9 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x6a7f75a2 i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x8a150e72 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xaa818345 i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xad6eb17d i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x59e0ce07 i2c_free_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x8963d845 i2c_register_spd -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x9139e78a i2c_new_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xd57299bb i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0be1f3c9 i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x166c0d4c i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x21422f28 i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x271c8abc i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3045c4d1 i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4748c208 i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x57ec4bdf i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5bcfff7b i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x62238c72 i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6b1fe9cc i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6ba01ffd i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x83301247 i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x885879e2 i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8cdc1d73 dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x92d1d325 i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9dacd90d i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb36b245e i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbe6051a0 i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe4965852 i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf17b236f i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf20fdebb i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf4ebdd2d i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf5681b1c i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfccf067e i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfcdf9437 i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x267da9e0 adxl372_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x52765676 adxl372_readable_noinc_reg -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x387acb92 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xd07aa1f2 bmc150_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xe6bddd41 bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xf7ab6aff bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x059946ab bmi088_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x0f0dbab1 bmi088_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xbfa5afd5 bmi088_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xc434d0f9 bmi088_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x17551aaa fxls8962af_spi_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x8ffafde0 fxls8962af_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xb58b8e6f fxls8962af_i2c_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xbf7ebadb fxls8962af_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x106245b9 mma7455_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x8ce2673f mma7455_core_regmap -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xca84e809 mma7455_core_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x8d2454b7 ad7091r_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xf013750b ad7091r_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x989ef724 ad7606_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xba99be86 ad7606_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0ce5cdb0 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1ceb11bb ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x24e9e096 ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x31130aef ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6ba47147 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x89a43434 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x92c3b740 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbc2d15b7 ad_sd_reset -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd1e3e451 devm_ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xfba0ac7c ad_sd_calibrate -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0xb5fb0403 devm_adi_axi_adc_conv_register -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0xc0eab3f6 adi_axi_adc_conv_priv -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9e8293f6 iio_channel_cb_get_iio_dev -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xa6b8ace2 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xbe47233d iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x2f205bc7 iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x383edff5 iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4bbe359f iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5dcc452e iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7c8ce7af iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x8fe2a70a iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xaa25cc01 iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xaafe5662 iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xd6042a41 iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xda1e6a28 iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf0fd506b iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf62b7bdd iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x47c1b4fa devm_iio_dmaengine_buffer_setup -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x1f56313a iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xcb2e763a devm_iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x1d4d0c72 devm_iio_triggered_buffer_setup_ext -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 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 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/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 -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xc639ace5 ad5686_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x54ac1cef bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xb7610858 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xe587af88 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x5a7d0b02 fxas21002c_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x786b2a26 fxas21002c_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xbbf44e98 fxas21002c_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xadc60b71 bmi160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x0cc5a205 fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x03625dd6 inv_icm42600_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x3990c668 inv_icm42600_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x52244702 inv_icm42600_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x28e657f6 inv_mpu_pmops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xbb7aceb4 inv_mpu_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x3d76bcb7 st_lsm9ds0_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xe3a6c96b st_lsm9ds0_remove -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0149e60a iio_device_id -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x09f3aba3 iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c4414fa iio_device_claim_direct_mode -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 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 -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x277a46d3 iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2cbc871e iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x31031ecc iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3aeb9b34 devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x40ec3a5d iio_get_debugfs_dentry -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x499a6a6a iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4b591669 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x56430eae iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5b6e8921 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5cec684d iio_get_channel_type -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 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 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 -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xba534b5b iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbbba9ba7 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc06dc7e8 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc3acae1c iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc619cb4b iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc970a451 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd35173f4 __devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdaec2c79 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe6f27509 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeea23c12 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeff8b657 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf303f9b6 iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf5ed38fc iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfce60be2 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x12f8d83b rm3100_common_probe -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table -EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xaa55eaa5 mpl115_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x0a97c867 zpa2326_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x8ffb9577 zpa2326_isreg_readable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x987e75e3 zpa2326_remove -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 0x171c053b rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x53cd2e04 rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5971f429 rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x844e90e4 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x923c71dc rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x939b371b rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa0d7c928 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa6939a54 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb1460e64 rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd53278d3 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xeb22ef79 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xee14e9fe rtrs_iu_post_recv -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 -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x109ca95b rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x13c83e1f rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8313e67a rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9038cf4a __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9c066866 rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa6716b9d rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa6ae173d rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xacbc8c96 rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb21b9409 rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb3e118c8 rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc6676707 rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xcee30744 rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xfb0bfe18 rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x3c51d79e cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x9920b397 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xddcd93bb cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x02f5d7c1 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x0dd31793 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x1a2950f7 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xda8c231e cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0f22d33e tsc200x_probe -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/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 0x99942676 qcom_icc_bcm_init -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0x81e513ad qcom_icc_rpm_smd_available -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0xe8dbdc6c qcom_icc_rpm_smd_send -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1b02c3d8 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2fd77d96 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6ddaf41a ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb441b87e ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xba126f6f ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xca25cea6 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd9e4e959 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf277b26a ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf6e5f27f ipack_driver_register -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1835fea6 led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4be85e4e led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x52508f8b led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x601989a3 devm_led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb4cc9f38 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb7bca518 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc3194eeb led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xfbad7264 devm_led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x1aad88a2 devm_led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x39c0e251 led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xc2581c50 devm_led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xd8f621e8 led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xfd11baf7 led_mc_calc_color_components -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x25b4e1a0 lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5203d411 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6265c89d lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x63333956 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6c11d06b lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x75bb2887 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8889f97f lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb5a63bf8 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc1c261d7 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe5fc3a7f lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x051b2215 __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 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 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 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 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 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 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 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 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 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 0x902cb523 __tracepoint_bcache_gc_copy_collision -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 -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 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 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 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 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 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 0xf6249e5f __SCK__tp_func_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf865c1a2 __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb3d6c67 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd6b5d80 __SCK__tp_func_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x06d5b33b dm_cell_quiesce_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0b2bf1a9 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x22bf8786 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 0x5362b1dd dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5c5657ef dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x68b97297 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x69ff3fab dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6b79bd08 dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7068e584 dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7283ff69 dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8246ab48 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9ea51f09 dm_cell_put_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xacf6bea6 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xaeb2eba3 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbf5f6e3e dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd57664f1 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xecace3e5 dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0c19222c dm_bufio_client_create -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-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 0x76906ff9 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 0x893f7bdc dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xadbefda4 dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcf8c2590 dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bdae47 dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x506c4a97 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xc8224b7d 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 0x131a754b dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a585cb0 dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5322eaf0 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 0x7b3ee109 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9b8bc59b dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbb26c940 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 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 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/md/persistent-data/dm-persistent-data 0xfdf70252 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x06f7b35f cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x12f25829 cec_pin_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x20514970 cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4c6fc153 cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x50da0c03 cec_notifier_conn_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x57a667f6 cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x680ff9b4 cec_register_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x69ca66ef cec_pin_changed -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6ce32a7f cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x716276ed cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x80d39980 cec_s_log_addrs -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xad88c5c1 cec_transmit_msg -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbaed6ccc cec_s_conn_info -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc3f06243 cec_unregister_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xcd768fe1 cec_received_msg_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd46860c5 cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xdf9dd43c cec_transmit_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe31c66bf cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe3720ced cec_s_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe3adbe4c cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xeea41d16 cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf9477272 cec_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2d9ebcf4 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x64683ce1 saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8219cc49 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x882b3f0f saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8c646ab9 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc4dece10 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xdcd88d78 saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xde5d6d7b saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xee2d8b27 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xee35d531 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3b9858ee saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x561a1021 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x66f63ad5 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x6c6b75a1 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x81fb737c saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x92832731 saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xc068a5e7 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x307f15a8 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3af8bbb7 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3e28c137 sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x55b729aa smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5d32f254 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6d38b4b9 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x75ffed4d smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8b6dae35 smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9cafab0a sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa102a7cd smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xaa2b6ee3 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb120f86e sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc16d60a6 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc77ae65c smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd8cecd43 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd938dcec sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf6eb0d3b smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init -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 0x07729fd4 __SCK__tp_func_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0e5a55c6 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x11577fe3 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x119fd4dd vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1321a65f vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x234d1adc vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x24451812 __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2593782f __tracepoint_vb2_buf_queue -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 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 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 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 -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb907a810 vb2_plane_cookie -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 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 -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfb339def vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xc3f3b812 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xc60453bd vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0xf90c7835 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xe91d2bd7 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x04690c49 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0cda43fd vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1d6b0196 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1e3646ab vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2215670c vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x29f72875 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2d37cad5 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x354133db vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3a7c7f0c vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3aac8778 vb2_find_timestamp -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3e9fce21 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x50d8d523 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5153281a vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x69932617 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6d502e72 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x74353d3c vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8174d7b6 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x820960b2 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8aabf610 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8acfea0c vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x93008e77 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x93d21af9 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9408b7d6 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x979d8ae5 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x97b6d4b0 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9a4fbe19 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9f8c7416 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9f9dd308 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xac5b9c92 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xae914847 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb908e920 vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc8a65f65 vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd92b5e22 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe0e1ab1e vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x2f97b266 vb2_vmalloc_memops -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 -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x173c7159 max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1ad4eed6 max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1dff4b79 max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3e0615da max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5205753c max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6cfcc1a3 max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7d84161b max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x916cdd13 max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb170d262 max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc9fe5dfc max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xdf64128d max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf122d3d0 max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0451778d __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0686d759 media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0942a0db __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x151ee1af media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1cfd25cb media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x235ec9e8 media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x24eb33f0 media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x29df6b30 media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2d385997 __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2e41fd9c media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x30b8632d media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x354c16f6 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x389665b4 media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3efa0f32 media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x452e4586 __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x47b0adfc media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4d381794 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5269d813 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x54b108eb media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5a1c027f media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6652a0c1 media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x67ee5d36 media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6abc0cb8 media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7315e296 __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x796979be media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7feb059f __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8483ece9 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x859b9174 media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x87670a22 media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x946d7caa media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9fe89e80 media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa8f8f100 media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb5ac6b9f media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb6fe2162 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb6ff533d media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb8ae8d6f media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc82b9b70 media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd0e8a25e media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xda257db2 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdf056451 media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe075d8e3 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xeceae4a4 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xefcfcf9e __media_entity_remove_links -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/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 0xd32fa0e2 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 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/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/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 -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x16461b6b 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 0x48580b9e nal_h264_read_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x4a895716 nal_h264_write_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x5fb8c277 nal_h264_read_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x6a857a95 nal_h264_write_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x711a2909 nal_hevc_read_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xbe334dad nal_hevc_read_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xc2d20bc0 nal_hevc_write_vps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xd0a91777 nal_hevc_read_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xda687e65 nal_hevc_profile_from_v4l2 -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xe16be9e1 nal_hevc_read_vps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xea31bede nal_h264_read_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xf591f42a nal_hevc_write_filler -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x26a9a42c mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x2d2706d9 mccic_irq -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/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 -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x21ccb34a hfi_session_flush -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x259afb48 venus_helper_set_input_resolution -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x25d0393c hfi_session_abort -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x27a43099 venus_helper_intbufs_free -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 0x299e9edb venus_helper_set_format_constraints -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 0x321a146a venus_helper_vb2_buf_prepare -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x326dac1e venus_helper_set_bufsize -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x32bdcfe5 venus_helper_alloc_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x36c73272 venus_helper_find_buf -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x40487634 hfi_session_set_property -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x41f1382f venus_helper_get_out_fmts -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x456aa7e3 venus_helper_get_opb_size -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x47be62d2 venus_helper_set_work_mode -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4a901739 venus_helper_vb2_start_streaming -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4b89b59d hfi_session_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4bc7f089 venus_helper_get_bufreq -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4efac6e8 venus_helper_acquire_buf_ref -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5266c5dc venus_helper_set_stride -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x54716e4b venus_helper_vb2_buf_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x572a8a87 venus_helper_get_profile_level -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x67ecdf2b venus_helper_get_ts_metadata -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6a08635d venus_helper_process_initial_out_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6cbc96da venus_helper_set_multistream -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x76a79bdc venus_helper_intbufs_realloc -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8147ca6f hfi_session_process_buf -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8795863b venus_helper_set_dyn_bufmode -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8fa174e5 venus_helper_set_color_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x90d3d872 venus_helper_check_codec -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x93a142c9 hfi_session_continue -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa9c2fec4 venus_helper_process_initial_cap_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xaf5c0883 venus_helper_set_profile_level -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 0xb609c1d1 venus_helper_unregister_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb843b05b venus_helper_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbb0d7eab hfi_session_destroy -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbb2775ee hfi_session_start -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc2dd5265 venus_helper_set_raw_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc4179799 venus_helper_session_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xca06cb95 venus_helper_free_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd21da2e4 venus_helper_get_framesz -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd2f1bbfa venus_helper_release_buf_ref -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd67bb7d2 venus_helper_intbufs_alloc -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xedd4e772 hfi_session_get_property -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xef5ba0c1 venus_helper_set_output_resolution -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf36d372c venus_helper_set_num_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf3e9abe6 hfi_session_unload_res -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf54b454e venus_helper_buffers_done -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf70ae2fb hfi_session_create -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfeca9735 venus_helper_init_instance -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xff116ac5 hfi_session_stop -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 0xd77453c0 rcar_fcp_get_device -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x0847eabb vsp1_du_init -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x1d2c9331 vsp1_du_map_sg -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x457e84da vsp1_du_atomic_begin -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x4833b0af vsp1_du_setup_lif -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x4ff85380 vsp1_du_unmap_sg -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xcd135484 vsp1_du_atomic_flush -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xe516b255 vsp1_du_atomic_update -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0fec4b2f xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c10145e xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x4653b2c0 xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7296ee85 xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x88292d0c xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x92c91316 xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xfc32a5b2 xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x78863633 xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x1cd8d7a3 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xaca99428 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x6250f2f8 si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x9eb144aa si470x_start -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xa0deb69a si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xbac4875e si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xe4a85aab si470x_stop -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x10a5deab ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x11e7edfb rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x14273fe3 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x21fd4115 rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3bbba4a4 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x48a91bc4 devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x494176d1 ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4ea1e519 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x822af2e6 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8d8785ec rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x90c49667 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9c800f8c ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa0a96c41 devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaa54be22 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc1721dee lirc_scancode_event -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 -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xbb5cc8ef tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x40b65d0a tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x53b9426a tea5761_autodetection -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 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x304ac6e2 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x38a1d87a cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x43912380 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x46ab4017 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x59078429 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6a2b14fc cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7481ba97 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x91f36146 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x93656bce cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9ba548a3 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa2d5015b cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb02465b4 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb201505d cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe50dd61d is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe73435a6 cx231xx_init_isoc -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/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 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x40317c21 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x58b6f9eb em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x72616aac em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8d00f100 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x95eb1ae5 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa40d1a56 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa9ef1868 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb1bb3a26 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc1a65bf7 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd293e0c3 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdc5d54a6 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdf702952 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xea0e49e6 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf285d632 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xffe7afee em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x27edcda6 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x378e3e05 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x4e62929c tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x97f7575a tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x083af809 __v4l2_async_notifier_add_i2c_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x28aac8d1 __v4l2_async_notifier_add_fwnode_remote_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x368fb9f7 __v4l2_async_notifier_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x70e04895 v4l2_async_notifier_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xc53cb35b __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-flash-led-class 0x8487c5f6 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x8a1bc2a3 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xbeca173e v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x04dc2d23 v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x48c5388a v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x68c5b752 v4l2_fwnode_connector_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x74512286 v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7abd2ede v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7f838dce v4l2_async_notifier_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xae757cb6 v4l2_fwnode_device_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd3b546cd v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd99ac078 v4l2_async_register_subdev_sensor -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xff65050e v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x2c620a2d v4l2_h264_build_p_ref_list -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x4b224860 v4l2_h264_init_reflist_builder -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x5150f937 v4l2_h264_build_b_ref_lists -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 0x07046c6b v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0776a5aa v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x177cd5c7 v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2a71c7aa v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x312c2fed v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3c7fcc4a v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x482777bc v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x483b8a4f v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x50d062e6 v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5c2447f7 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5d53bec8 v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6006136a v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6248cd29 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x688d2902 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6a11324b v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x797c9a85 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fd1d1ab v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x860e255f v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x943eee00 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9c998708 v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xac06dd33 v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb3c2a769 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb8fdecaa v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbc5015de v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbe72695d v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbf5e2edd v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6f8432c v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc841529e v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc9696000 v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcaaff534 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcd1249d9 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd6f80715 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd7ae302c v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd83182a9 v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd84e4626 v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdd4a1b73 v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe20d52b2 v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe5ba13e5 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xec8df06d v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xecce7d72 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xee4367e8 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf4076cca v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf496cd04 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfce72ba5 v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0a941cc3 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x101bb874 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x18b27403 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x248794da videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2e95263e videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2fa26413 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3d06d47a videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4dd484b5 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5c2bdb6b videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6961bef6 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6def0b25 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x701e537c videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7109c479 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x85e8d99f videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x903bb4c7 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x93c361b6 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xca242f43 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcc4d8aa0 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcd2d62be videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe229b55a videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xecfffd39 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf2d792af videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf990899b videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf9e23256 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x4c79af59 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x5230254e videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x6b2953e3 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xb9e42f0f videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x144e3a47 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x45977cbc videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xc444a031 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0ad25a34 v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x119f4181 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 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 -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 0x4a929bcd v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4fb9e813 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5118367e v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x53da0f9a __v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5780402c v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x59080767 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5d2dd7b1 v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5e2e8324 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5f8e359d v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5fe75a3e v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x65fe2911 v4l2_i2c_subdev_set_name -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 0x745f4e07 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7467e56f v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7d21f8d0 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7e88eba4 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x85fee644 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8894f55d v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8cd1f7dc v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8f84482b v4l2_pipeline_pm_get -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9408cf5c v4l2_pipeline_link_notify -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x96e9f269 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9900f046 v4l2_subdev_alloc_state -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 0xac5b1bca v4l2_subdev_link_validate -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 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc25b8935 v4l2_event_wake_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc2d43f05 v4l2_mc_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc742d6e8 __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd299d5fa v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd3a42cb1 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdb8e00ec v4l2_event_pending -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 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 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5efe1e9 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf6b742ab v4l_disable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfb1e5fe4 v4l2_pipeline_pm_put -EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0x1d593053 mtk_smi_larb_get -EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0x70ce76e9 mtk_smi_larb_put -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x27c46554 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x29cba907 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xf17d32b3 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x185b9af1 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1d8f81d6 arizona_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2ed99930 wm5102_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3f2b4fc4 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4577e77e arizona_clk32k_enable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5242c2a0 wm8997_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x61208a55 arizona_set_irq_wake -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6de1587c wm5102_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7c0b5565 arizona_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x90b20c41 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x95d0e502 arizona_clk32k_disable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9f0ad075 arizona_request_irq -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 0xb99a8429 arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc7332433 arizona_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq -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/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 -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9604632e da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xac5e5262 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xadd35b6f da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xeafeb46e da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xa142a524 gsc_read -EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xb7abd1c4 gsc_write -EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x01d88ce0 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x08718ce4 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2d7ee933 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x41def6ef kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x84883300 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbee268eb kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd961f446 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe9a44968 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x31679abe lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xb58fb889 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xbdd778da lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2d489f27 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2e32b26e lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7a40c549 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa0c8ce0f lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xbeec911b lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc4911396 lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd7cf389a lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x37778ad5 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x7052ce44 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x8b3d0303 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x05b07a68 cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x05bda628 cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x10733c0d madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x18968d5d cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x189b511d cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2f1796a0 cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2f1a4ae0 cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x307559de cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x37c2e110 cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x37cf3d50 cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x46856764 cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4688bb24 cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5ba39051 cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5bae4c11 cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5cbb8d34 cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5fb3193b cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6c228bac cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6c2f57ec cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x72a3270f cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x74f7fc1c cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x74fa205c cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8c46cda8 cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8c4b11e8 cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcf73d0a4 cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcf7e0ce4 cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd34022b0 madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf314a346 cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf3bffb79 madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x0edd61ba mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x19b1b1a8 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2a1fd152 mc13xxx_common_init -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/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/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 -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xb937a8d9 sm501_find_clock -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/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 -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xaa265a88 tps65217_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x07f3ec9f tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x7d2c7f11 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xa439a435 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xd1513a69 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x1c0fa89b alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x29f71e68 alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x3de009e9 alcor_write32 -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_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 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x22a9558e rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x310914a6 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x439c7776 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x60d30acc rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8b3fe3ff rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9f09cf50 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc03cf968 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc23441a9 rtsx_usb_write_register -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 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 -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x296a8983 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3115970d oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x4b711f77 oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x5909e701 oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x780d3f01 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x84eba96d oslec_free -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 0x0caf8ad9 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x11ab30f4 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1303ee08 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x152afa46 enclosure_find -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/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/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 -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 0x0673c99a vmci_qpair_enquev -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1fd4782d vmci_qpair_get_produce_indexes -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2449459d vmci_event_subscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3a22fa8a vmci_datagram_destroy_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 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 0x62701e87 vmci_qpair_dequev -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 0x86cabc51 vmci_qpair_peekv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xb572e830 vmci_doorbell_create -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xbcb85f62 vmci_doorbell_notify -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc04c7e84 vmci_qpair_get_consume_indexes -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc403cafe vmci_is_context_owner -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xde3abc2e vmci_datagram_create_handle_priv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe0cc9c92 vmci_qpair_alloc -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe11895c1 vmci_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea143610 vmci_datagram_send -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea61eefe vmci_qpair_produce_buf_ready -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 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/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 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/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 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/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 -EXPORT_SYMBOL_GPL drivers/most/most_core 0x2ca4211d most_stop_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x4cba8b5b most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x690586c6 most_register_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x727bead2 most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa1801b25 most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xbf37d405 most_deregister_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0xc140e161 most_start_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0xc52603c5 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xc68901e9 most_get_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xdaaa8968 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0xecfccd0d most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x7f087768 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x821652fe cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xbd3f7716 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x6e7b0f8c cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x9d82c00a cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xe3d08bda cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x0c45a68d cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x23fff42f cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x30b239dd cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x3e70ab0d cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x8a666c65 hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xf39ab504 hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x01caa106 mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0397714a mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1146d870 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x11dda806 mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x130af4e2 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1456ea50 mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x15635fb1 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x17315c2c mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1983ad55 get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1f7e39b3 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1fae285b register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2562cab8 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2619a1e3 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2f5a2987 mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x37609d2d mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3c0a9923 mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3fede79d mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x444b30c3 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x44de4d7c kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4984f06b unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5378b4ff put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x53c75174 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x604e9e29 mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x638f3053 mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x662cb05f mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x76e4c33a get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7a9048d2 mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8ac6d537 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8ebdbc12 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9c73451d mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa01a82ca mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa44dbc66 __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa9679fa4 mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xac03a8bd mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb19097f4 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb30b9e3b mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb8def6ca mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc0aee271 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc2f82739 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc38210d4 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc4e141c2 mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcdfefff4 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xced19b5c mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xced49a8b mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd18ed949 mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd9d80081 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xda1d5444 mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdce6cd4a mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdfc8dcee mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xef187961 mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf4fc9e28 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf81781b5 __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfac2ae27 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x01c3f73b add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x149b54cf deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x15791ca7 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x18e09107 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xf325f365 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0071dd18 nanddev_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0e06605a nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x17e21bed nand_ecc_init_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x20c29a60 nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x43c06add nanddev_bbt_update -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x478d008d nand_ecc_restore_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x51badd68 nand_get_large_page_hamming_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x6418ad2e nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x6732bb06 nand_ecc_cleanup_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x6eaebf93 nanddev_ecc_engine_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x77d313a5 nanddev_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8ca5cb22 nanddev_bbt_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9e62aeff nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xbab127f3 nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc86f4978 nanddev_markbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd5c94645 nanddev_ecc_engine_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdfb3516e nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdfd83ab8 nanddev_mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe1ea60c5 nanddev_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xebb7c94e nanddev_init -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 0x72f8f1fe brcmnand_probe -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 -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2494fdca nand_prog_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2aee3916 nand_read_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x33810015 nand_erase_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x33e3f9fa nand_decode_ext_id -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3a59de5b nand_gpio_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4d404260 nand_select_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4d4dc8e9 nand_soft_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x53a671d2 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5953caa2 nand_op_parser_exec_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6c6061eb nand_read_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7350209d nand_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8728ae3f nand_change_read_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8bd7eab1 nand_ecc_choose_conf -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8c96b634 nand_prog_page_begin_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc1fe780a nand_write_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc75f9f82 nand_reset -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc94507f3 nand_status_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3c672b8 nand_subop_get_data_len -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd41ff2ac nand_subop_get_data_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd6a7e3da nand_prog_page_end_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd95d1d3d nand_reset_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xde0a8f7c nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xdf46c014 nand_read_oob_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xeec17e55 nand_deselect_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfd4733bd nand_readid_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x8a8d8897 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x19994365 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x9c8f8d62 spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0b672c5f ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x210eceec ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3ea6c5fa ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x49d92a01 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x51843625 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x542295d4 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x858bc169 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x916ef868 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc5b5bb85 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcc5b3a1f ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xde42775f ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf09c997d ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfb2ab4af ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfdaf9720 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x00db44ef mux_control_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x132bf298 mux_chip_free -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x17fb1dad mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2269060c devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x257afe63 devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7de14394 mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x938fb5b5 mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x9f74ca17 devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb08e0f14 mux_control_get -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 0x19d2c2c2 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x1d2dcbb1 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/bareudp 0xaaabbddb 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/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 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 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/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 0x8eee6bed lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x180f4618 ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1d65dfc5 ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3d5f57b0 ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4fe92eba ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x56c641e4 ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5e1aa1b3 ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x64af2a0b ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x757eae9e ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8149a627 ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9d8c9035 ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9e9ae9f3 ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xacb6f5e0 ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc558f8aa ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xdeeceb2e ksz_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x141c628f rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x21448add rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3e5e09ca rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x545a5d06 rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x662e874a realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x74259645 rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x8fd52922 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9825afa3 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9941606e rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb1ca19fd rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbf18daae rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xcb6c4085 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf6651098 rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf6993f61 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xfdb63651 rtl8366_init_vlan -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/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 0x1f5ac346 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xb29a67c0 i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x2795ba75 ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x6a290d52 ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x9f3ddd06 ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc9aefeb6 ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xfb8d9426 ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01ab65ef mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0287ea7b mlx4_register_mac -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 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 0x1e645ff2 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24c0b02f __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x273346e5 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x274fd2ca mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x278a5969 mlx4_phys_to_slaves_pport -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 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 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 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 0x6b612988 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cca5b53 mlx4_set_vf_vlan -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 0x72cd1e08 mlx4_phys_to_slaves_pport_actv -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 0x78cb28a2 mlx4_get_slave_default_vlan -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 0x864ce26a mlx4_set_vf_spoofchk -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 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 0xa6cb0322 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa93a95d2 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa064f95 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae50e315 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb29c27ff mlx4_get_vf_stats -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 0xb8467c38 mlx4_get_counter_stats -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 0xba0d492f mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb2474b5 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd67d2dd mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe7cf2c8 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe84cd68 mlx4_vf_get_enable_smi_admin -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 0xc15fcdc7 mlx4_register_vlan -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 0xc9539060 mlx4_alloc_cmd_mailbox -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 0xd4d78a6a mlx4_slave_convert_port -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 0xe50ac6c9 mlx4_set_vf_mac -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 0xeaefedc9 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec9c6e3e mlx4_qp_modify -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 0x056a3463 mlx5_query_port_prio_tc -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 0x0d4ebf7c mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e4823dd mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f5020c9 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fa90554 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x109513e3 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1517b800 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17d0fa98 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a64a23c mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a82b4ad mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21d55a65 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23180b5d mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x270d8fba mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a1aedbe mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c3662a4 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2eaf9ec9 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x353e47b5 mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3711aadb mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x381add14 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38e3bd02 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d9fd61a mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48dceece mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49a07b26 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ab9ea53 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ca2b95e mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59b224f2 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b953314 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5dcd2765 mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e1b658d mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ee58d7d mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x612da8d2 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6312564d mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6923fa30 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x707ebc42 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7852b7a6 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bae6687 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8513791a mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86dfd41c mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88b28c20 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x897cf774 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a30fdfc mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8cc54f97 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f21ae94 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x932df611 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97768b58 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x985be4f1 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1bf316f mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1fefa22 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 0xaba07698 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3e6a6d2 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbd9d7a8 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc7dc8a2 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe5e3218 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc562f51d mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc902d5e3 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc96282c5 mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd115b66 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1afa06c mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8b86519 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe44b46a3 mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe451113f mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe47f757d mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe64ed76f mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8eefcfa mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec3fad30 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee4461c5 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf13c99ef mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1ae5a10 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1e8f3f4 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3fc0d58 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfac285b9 mlx5_query_min_inline -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/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 0x0378b721 __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1a63b85e ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2426c9dd __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x346f307c ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3efa05c7 ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4ab412d4 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x579dad17 ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6e999393 ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7350b624 ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x860f342b ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb4a935c7 __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcab9cec5 ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfcee71f0 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 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 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 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/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 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 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 0xad4a09c8 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x669c846d ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x739259a4 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc176489e ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc342a29e ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xfc42792b ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/macsec 0x33e22436 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x13bb925d macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x6e6d4405 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x766fa0a2 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd5641833 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/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 -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/phylink 0x08213956 phylink_ethtool_get_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x131e8b94 phylink_helper_basex_speed -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x15c4e3e2 phylink_ethtool_set_pauseparam -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x16ca1a8a phylink_suspend -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3c65d4ba phylink_mii_c22_pcs_get_state -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4898be80 phylink_create -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6831eccf phylink_ethtool_ksettings_get -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 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 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 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 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 0xc1d47852 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 0x0e332a92 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x5dd8c705 vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x83061c53 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x844051a6 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x33043467 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d06b582 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x44b5ad41 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6bad5a43 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc43aa338 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe5463b32 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x08301b62 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 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 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 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 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 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 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 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 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 0xb1338340 iwl_fw_lookup_cmd_ver -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 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 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 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 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 0x0c2b8c83 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1d45a92b p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5bb3ff49 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5f301451 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7174865c p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb24b10f9 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xcf08662e p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd2ad0c0f p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf9b69853 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/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 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 0x35c4cef1 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x53b1b11a lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x77b0c7b7 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x87a60086 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x90e4a44e lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa9fc6333 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe370816b lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf32ab547 lbtf_rx -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 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 0x02a1664b mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x02d8e061 mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x02ec2bb5 mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x02f8daba mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0453f1c8 mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0b6e91f6 mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0c2d6420 mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x10a70de8 mt76_get_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x110a253e mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1977fe69 mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x19e38e54 __mt76_sta_remove -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 0x25956110 __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2886fb45 mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2baf3949 mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2e12c6ea mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2ffd9627 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x30aa2091 mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3174436f mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x363ffb84 mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x37d5de22 mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4558f3e1 __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x49cc64bd mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d051299 mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d0a13af mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4f4ab6fe mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x51835379 mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1b4e42 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5fb848a0 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x60c06340 __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x65564e6e mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6665af3a mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x686b5b28 mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6ea3fdbc mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6f24ee25 mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x760feb6d mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x762799b3 mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8134320f mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x890a27f8 mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x89b72b4c mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8b53ab86 mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x901155d0 mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9083460d mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x91b4dd14 __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a5471af mt76_sar_capa -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a73b9d4 mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9adcd4e0 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9b2242ec mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9d48e1e5 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9d7f3bc2 mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9ed150e0 mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9f97ae44 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa0a9ea92 mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa383aa7b mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xad97ea8e mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb072cc88 __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb2df1dbf mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbd573684 mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc2da9ab0 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc45e559e mt76_register_debugfs_fops -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 0xceb6471e mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd25a90ab mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd37b3548 mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd62eec8f mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd79fb78d ____mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdc030ff6 mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdcb9243e mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe43b9a35 mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xea7d6335 mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xebff6a6b mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeebdb8a7 mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xef8e8165 mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xefad2d11 mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf3a22f72 mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf44f4569 mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf6f050d4 mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfa480e83 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfa8a5347 mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfc864b74 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xff32e326 mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x09cd5ffa mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0a9fb7fe mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x100ab54b mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x160342d1 mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1d87d497 mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x261d568e mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x290a225e mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x291d0c2d mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2d001eb6 mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x30aee8a1 mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4029a586 mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x408da2b6 mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4c953158 mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4cf3ece1 mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x531b9b57 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x58e39ca0 mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5c443a27 mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5c7acb73 mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x61480f79 mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x698185e1 mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x79593e95 mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7f7ab15b mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x835864c4 mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x878b3452 mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8a7e291c mt76_connac_mcu_wtbl_ht_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 0x90bad524 mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x97635b15 mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9c2e7f07 mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9d45515f mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9f7a6687 mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa78f1a36 mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa7c06c73 mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb077b0ba mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb091217e mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb96636d0 mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbfa781c7 mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc2afb0c1 mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc5cc79f2 mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcd9f50da mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd061b32a mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd1fce705 mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xeb100522 mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf2480941 mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x013af23a mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2abe1017 mt76s_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x75c8c26f mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x197ba6dc mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x2448026a mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3188383b mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x46c31d7f mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5d3ca406 mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x94f4cc22 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa5a045ac mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb8fe7af8 mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xeb87b1d5 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0d52a902 mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0dd20ae3 mt7615_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1151c77c mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x34e181cc mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x49204530 mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4aa0da8d mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5aec3457 mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5cda2b0a mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5d14f5d2 __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x62e9fdde mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6dde4ef6 mt7615_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x82d2bf9f mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x852b129d mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8ae19464 mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8cec6757 mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8f6b19b4 mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9846e854 mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb42973e4 mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc1dec5c4 mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc512eb5f mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc9f4251b mt7615_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcb16853e mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcb2e02db mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd504ada6 mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe03d6e68 mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xeebbcbb8 mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf08c5603 mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf8b2bd32 mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfa826753 mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0xa47d8908 mt7615_dma_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1334488a mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1506ffca mt7663_usb_sdio_reg_map -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1cd4796f mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x37a436b1 mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xb2445c3a mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x0b3b2de8 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x313cddff mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x356e26c6 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x93240691 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x93cfc5c7 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xde8bf45e 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 0x09b48468 mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0ac9ebc8 mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0bd6aec5 mt76x02_sta_ps -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 0x0e084add mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0fb85936 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x10a86b6f mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x139c5519 mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x14668210 mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1659807b mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1ba12466 mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2059f238 mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2c20b766 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2c945e1c mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2ca1a025 mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x395000cc mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3c9fdd95 mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x45cf59f8 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4c064534 mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x53c4e505 mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x54f257a7 mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x57f1503e mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x65088b87 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6892b440 mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6b010979 mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6c334e89 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6e6deaef mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6f659d33 mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x72ad17d9 mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7579f223 mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x77328a14 mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x77e65cf2 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7ed53484 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x80f12f93 mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x82cbb350 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x85ff9087 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x862a97ae mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8a93eb6d mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8b0434ea mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x95ae85f0 mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x97ebdc98 mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x991d628e mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa076d7d7 mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa42ee545 mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa4746294 mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa6fff27b mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa9b208f9 mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xad0a50ec mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc167f208 mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc547d24b mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc64edcd1 mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc8769545 mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcc053ce3 mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcce1d7cf mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcf32acb1 mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd241d801 mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd50ddec9 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd665e64a mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdbd200a2 mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xddb41db9 mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe81b9103 mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf0fd6c64 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf622168f mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf833b75f mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfea14650 mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xff4429a8 mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfff7b989 mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x0c0ae586 mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x105aae8a mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x59606a89 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7872ee41 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa65071d6 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xbca5f7a2 mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe4ba9211 mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xfcdc30a4 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0180cc78 mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x074655f2 mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x07f5db9c mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0d5351cd mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1601df6f mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2e755dff mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3f0d7091 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5cf080f1 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x61eff851 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb2432203 mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbcf7a69f mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc88c1473 mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xca8d01b3 mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd229bb71 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe0a4386f mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe6e50e58 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf5628086 mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf9902327 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfd951884 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x2be60899 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x58ed5302 host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xcfd0918a host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xd363e4bb wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xf3a913cc chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xf860e016 wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xfafd836b chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x2a3dbbc6 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 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 0x057f9b8b rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x08d7eb57 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x094b5b5c rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0f2a3f5c rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0f5ddcfb rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1c4973cb rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x272a1311 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x27fcebef rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x29229bb3 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x337f8491 rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3d77a6aa rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5dcfa491 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x74bd8abe rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x770de024 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x772ea13e rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x79e8767e rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7c611ef9 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7cbd727c rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x80e39f6b rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x853d62b2 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8b03992d rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8b11098c rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8b3116cd rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8d58fd33 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x92235d6d rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x99c15617 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa2b4aee5 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa3e0d6ca rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb8606818 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc141abf5 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc35b57fa rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd37b4ab9 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd3d3f062 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe091ba99 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe0c1e5f8 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe34c5fbf rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe57dfc79 rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe685b7d1 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xea99d5ec rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeb23b0e8 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf220b4a3 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf43429f2 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf53552ae rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf9eba3ed rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x131f3096 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 0x36886d2e rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x54edb3e1 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x65492115 rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x78f7ba11 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7b202a8a rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8d9c6b57 rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9278ef88 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x93c744b1 rt2800mmio_queue_init -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 0xb795b1f2 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb93ee8d2 rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbca2f162 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbe9cb9d0 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xdd6fb222 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xdef4738e rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xef27c73a rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x00d3e391 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0470434d rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0726116a rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0abd2673 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x186a00ce rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x19170327 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x28656e48 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x29ae1c3a rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2a8f487c rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3e82d254 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4772e672 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4d8708be rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4ec8b643 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x50b5a150 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5986a6f0 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5d81f4b7 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6047eb05 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6268df08 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x629eb01c rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6b391086 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6f666da1 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x85ddab4d rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8fb149b4 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x917d6dff rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x92b04c32 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x96ee3735 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa14d2d23 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa714d116 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa7f12cda rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa7fe6886 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xab0886ad rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb29fec96 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb529027b rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc034c349 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc22a0ba9 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcbf36e92 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdac6d96f rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xddf4c3ef rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdec7c7f0 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe5b6bbc8 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe5d2e878 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe5f2d00f rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe7e36b32 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeadceb9c rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf5770438 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf6709dfd rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfb68b623 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x0963ce65 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x259f1a17 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x474eb242 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x65604c04 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xf314c68a rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x0c7bf9ba rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x15a81120 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x35fc0627 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x06556c06 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x11165c47 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x18220b38 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1f6ded8e rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2f114f45 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x331ff0f4 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3efeb657 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x40048420 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x667f803e rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x675bf3bd rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x68ff1563 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa2de4234 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbb46266a rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc55632ba rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd0dda75f rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf179286b rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0dcefc29 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1d4fc615 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x22ec785d dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xee71f80c rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x01c1288b rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0e961aac rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x160b0f8f rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1b026c0d rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x273c7918 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x30714bed rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x34dc58e7 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3b52f09a rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3ba5ede5 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 0x3fdf767a rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x678ae810 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6ed6ee6c rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8994ccaf 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 0x8eb0f292 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa2e89ea4 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa53eaa0d rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaecca264 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb3eed13a rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb9cb13ad rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbd618cc3 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbfe9f43b rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcd66a012 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd4e27fab rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdaa3ea7c rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf400072c rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1f08273a rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 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 0x3d65dbe0 rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x420ebb6f rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x49bdfa17 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x53ed6d14 rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x559051cf rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x55c274c0 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x57136786 rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x58b60c4f rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x59755c9d rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5c6498d9 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5f11d09f rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7d723afa rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x803c3bf1 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8e43a22a rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90fbc41c 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 0x9815a8d2 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa7408a7e rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xadb9a57b rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xae60e8ec rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbbbdec7b read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdf6e24cd rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe2070cfe rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xecd76fab rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf6004ba2 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x1300bf47 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x27762f09 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7d0ce778 rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x816f8a85 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x90c40abb rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x118758b9 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x7bfc03ef cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xd5451a40 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xd6135e6f cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x2572c610 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x722f721c wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xec3fee66 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x007a1ebe wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x03593582 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x057578d5 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x135b7d40 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1523475d wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1e7627b4 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1fa86a26 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2482f5a6 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x335884ba wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x347a0ce0 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x39ec19b9 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x42df916b wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x49557824 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x497e0792 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x545b9fde wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x636f7c5d wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7e7aa3c6 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fe2d0ca wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x821d2a71 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85029612 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d184e39 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8e8a802b wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa1cf304e wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa2b15504 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa9223bca wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xad6cec41 wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaf2c42ce wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb71d11b9 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb8b598eb wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xba88b0cd wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcace43e8 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd3a7c9df wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd7d6209a wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe217be13 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe401289e wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe4de5bfb wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xef8f396d wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf43240b0 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf490e98f wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf6dcb12e wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfccd49f5 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfe76c973 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xff437a49 wlcore_set_partition -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/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 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 0xdecfd339 pn533_rx_frame_is_ack -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 -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7e478433 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9b0ae07a st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc3f7122e st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xeb663d1d st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf8fa3b09 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x08da1455 st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x657fdaa1 st95hf_spi_recv_response -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xc4249eb1 st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xa760e570 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xb258cb46 ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf0ae6487 ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x064e4e84 virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x5485b526 async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x01bee84c nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x04b40c45 nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x06b0d3d6 nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x08750012 nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1604f8e8 nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1db746d6 nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2ab5c7b9 __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2d2f2196 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2f250827 nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3af70e59 nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5220923b nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x53f4cac3 nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x58bea83a nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5ff7f62d nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x685b0924 nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6bf5efe5 nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6ee535bf nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x767a2387 nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7c0e0b0d nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x84f288b0 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x883a020a nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x88ca521c nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a31f0a9 nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8bf48004 nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9fca7a97 nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa3b6cb53 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa84f75b9 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb18e8bfc nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb1dafbeb nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb54bd2d3 nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbeb26da4 nvme_wait_freeze -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 0xda269b92 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdb31dd6d nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdcab47f6 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe1d826a8 nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe389e010 __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe4a03059 nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe801f6f8 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeb84b30a nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xef9331ec nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf8951bf9 nvme_setup_cmd -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-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-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 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 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 -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 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 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 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 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 0xd55dc585 hisi_uncore_pmu_init_irq -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 -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x20daab26 tegra_xusb_padctl_put -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x2a4b5cdb tegra194_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x34c29e71 tegra_xusb_padctl_hsic_set_idle -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x407e7f15 tegra_xusb_padctl_get -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x55120df4 tegra_xusb_padctl_usb3_save_context -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x80bcc7f7 tegra124_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x87ebdb92 tegra210_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xa1db50c7 tegra_xusb_padctl_enable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xaba089c1 tegra_xusb_padctl_remote_wake_detected -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xbd60b07f tegra_xusb_padctl_set_vbus_override -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xcdf38026 tegra_xusb_padctl_enable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe1974fc8 tegra_xusb_padctl_disable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe433fe98 tegra_xusb_padctl_disable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf2e1bcd2 tegra_xusb_padctl_get_usb3_companion -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf87db700 tegra186_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator -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 0x6c48acb2 cros_ec_sensorhub_unregister_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x89ce66f9 cros_ec_sensorhub_register_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x6b1be500 cros_usbpd_unregister_notify -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x8bda2df3 cros_usbpd_register_notify -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 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 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 -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7807fc34 ssam_device_driver_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7b920760 ssam_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7fdc7d89 ssam_controller_statelock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x876e7a99 ssam_controller_stateunlock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8ea6a857 ssam_request_sync_init -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8f72ec0f ssam_device_get_match_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa1f31aca ssam_device_get_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa6abab5e __ssam_device_driver_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xaa18dfa8 ssam_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xaf379221 ssam_controller_event_disable -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 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 -EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xd60bd773 san_dgpu_notifier_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x5ca5f181 reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x6543d6a5 devm_reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xa3cee8fc reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xb4b1c561 devm_reboot_mode_register -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/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 -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x6352d27c ptp_qoriq_adjtime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x6592d804 ptp_qoriq_free -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 0x384ced95 mc13xxx_fixed_regulator_ops -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/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 -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_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 -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xc18e254e scp_ipi_lock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xe020c9d5 scp_ipi_unlock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xfe1073c3 scp_ipi_unregister -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0af3b497 qcom_add_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x382964b6 qcom_remove_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x7edbdc58 qcom_add_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x83084a2d qcom_remove_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xa7cafaaf qcom_register_dump_segments -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xacb15537 qcom_add_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xc32b0c73 qcom_minidump -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xf2467104 qcom_remove_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x30e58241 qcom_pil_info_store -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x0ad13ad3 qcom_q6v5_request_stop -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 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/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 0x02d69377 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0518925d cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0a127a00 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0a650b0a cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1a5e4a6a cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x227dcb5f cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x260ba8c7 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2bf42d84 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x324c55ee cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x375f05b9 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x37cc4a51 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x383c43a9 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x39015345 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x48f2ee18 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4fa71a92 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x548e9dff cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x56215483 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x586abad0 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x59074d65 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5ca8b595 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5fc78fcb cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6dc71fd2 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x740d97d6 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x76a9254c cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x78105fba cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x79361217 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x806d3512 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x89032522 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8eda4fb5 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaecc9ea4 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb1a83678 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb312abc4 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb7960c4b cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc10ad832 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc77a450f cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc8af6b13 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xca9d6eba cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdb195e26 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdd45fd14 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdde9c2d2 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdfcc7d1c cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe76eb006 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xebb0a589 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xedd91916 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x13adca81 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x257c8335 fcoe_fcf_device_add -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 0x473450fa __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4dd68386 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4f871812 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x840b9864 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x97bbcd99 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa64693f6 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa869e604 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbbfe9922 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc03607a7 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf37c564b fcoe_get_lesb -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 0x00c40d7e hisi_sas_init_mem -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 0x24b56649 hisi_sas_stop_phys -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3125ca69 hisi_sas_probe -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x38e15a21 hisi_sas_phy_enable -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 0x41fd9cf6 hisi_sas_remove -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 0x4fc22123 hisi_sas_stt -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 0x60d2dc0f hisi_sas_debugfs_dir -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x717a8fe9 hisi_sas_phy_down -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 0x820f4b06 hisi_sas_alloc -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8b3fabdc hisi_sas_get_fw_info -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x90c8f66d hisi_sas_free -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x982e4674 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 0xa5f78f58 hisi_sas_phy_oob_ready -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 0xb2f784c0 hisi_sas_notify_phy_event -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 0xb9fceddb hisi_sas_controller_reset_done -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc2584819 hisi_sas_sync_irqs -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc3a41131 hisi_sas_debugfs_dump_count -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc910af66 hisi_sas_controller_reset_prepare -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xce771fd5 hisi_sas_slot_task_free -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe330cb74 hisi_sas_sync_rst_work_handler -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe987d9aa hisi_sas_debugfs_enable -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xebfae55c hisi_sas_get_ata_protocol -EXPORT_SYMBOL_GPL drivers/scsi/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 -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x416adc55 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x563c29b8 iscsi_boot_create_acpitbl -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 0x0518f423 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x052e9799 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x07ba5a85 iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0a442b77 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1e05221a iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x257a8ef5 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2eb13c5e iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3925e3bf iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x395f9a19 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3be68882 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x47a1bbfe iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4dd74019 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5372051f iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5a80af08 iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ae03bc2 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5c268a22 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x62b2bc03 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x65b24db7 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x65cfec1d iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7021a218 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x74186acd iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7c7a46e8 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fa81f18 iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x898e8439 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x94c74473 iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x94dc1e71 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x99d1c7fc iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa40e5f27 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa51cee13 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa78f1287 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7b1c046 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa9fc3df6 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaa848091 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac921fd5 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xad7435d6 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xafe3405b iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb4a6ded4 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb732bcbf iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xba5835a3 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd075315b iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd0f08b2d iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9865430 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe1b1aa6c iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe2094bb0 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe5d571d6 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xed07e6f5 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf2e95cfb iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfa066325 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x17686984 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x21a1a02f iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x31c59b43 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3b466980 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4b9bd54d iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5c0498bd iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9c85bb18 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9eb17582 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa2c6d610 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xad6f9918 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb509edbd iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xce57ce6d iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd0860384 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd2d37ee2 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdb31334b iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe3ec5125 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe9539238 iscsi_segment_seek_sg -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 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 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 0x02773e8a iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0af35b1d iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0ecc25d5 __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x12c7f756 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x192d4b75 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2411416d iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x250f1553 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d038745 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2ddc63ce iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2ff2d994 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3d89bb7f iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x456ee9e6 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x457df9eb iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x509b8513 __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x50a7c378 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x50d46a5e iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x50da8ee2 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e5bab18 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x61ea6ede iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x63aeba56 iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x64da84db iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x654f470e iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6de514fb iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71562536 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x724e450d iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7d4861a2 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7e2e0244 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8232df9e iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8913fdbe iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8cbbdcdd iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8ff6404d __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x925d1dc3 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x96a578e6 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ff801ee iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa148166d iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa2ddb352 iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa517e41d iscsi_lookup_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 0xabe4111d iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc1a556c6 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc3cd7a25 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc3d6571e __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc51ce99f iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd766198d iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe20d1a7e iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe98ae800 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xea363084 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeccf2af1 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf2d7e0f8 __traceiter_iscsi_dbg_session -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 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 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 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 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 0xc97db6a5 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc9aafe13 ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -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 -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1d99e6ad slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2d0f1e5b slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x40d8bbf5 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x42a0abe9 slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x58592c29 slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x58faf8af slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x60ab8acc slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6ea0a9ed slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x75579767 slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x872b7393 __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8c1450e4 slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x91cdd682 slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9ed1315f slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa5d4ea6b slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xad674045 slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xaed5f641 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbf4186ba slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcddff52a slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd874b3c1 slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xde8fcccb slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe3dadf86 slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xebcebeed slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf99154aa of_slim_get_device -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x494128eb meson_canvas_alloc -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x673c5a86 meson_canvas_config -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xa899a745 meson_canvas_get -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 0x4cbc7677 dpaa2_io_service_register -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x6560c60d dpaa2_io_service_acquire -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x79cf65a1 dpaa2_io_service_enqueue_qd -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x7d62db21 dpaa2_io_service_deregister -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x8edafa55 dpaa2_io_query_bp_count -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xb9e81961 dpaa2_io_query_fq_count -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xef3bb3e5 dpaa2_io_store_create -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x14373062 aprbus -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x2787a0ba apr_driver_unregister -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x6976a9e6 __apr_driver_register -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xfa37e674 apr_send_pkt -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 0x27040e99 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/soc/qcom/mdt_loader 0xf206b1c1 qcom_mdt_load_no_init -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x2d3b6190 __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xcf08a74e sdw_unregister_driver -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-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 -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x50f45357 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe49c8dda spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xea93aef3 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x34e4f0c5 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x3701508d dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4604caab dw_spi_update_config -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4ce00583 dw_spi_dma_setup_mfld -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4d420dfe dw_spi_set_cs -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x5b50139e dw_spi_check_status -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x766c9e33 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xc441b46e dw_spi_remove_host -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 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 -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x6b959843 anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x6cb1a935 anybuss_client_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x6eddf801 anybuss_read_fbctrl -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7454c89d anybuss_send_ext -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7ba40c22 anybuss_client_driver_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x82c70365 anybuss_write_input -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x979d3a13 anybuss_finish_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb5341dd5 devm_anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc0db2d71 anybuss_send_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xee5f52b6 anybuss_start_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xf3e3297c anybuss_read_output -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x054da64f fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x34b78cdd fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x8a63338c fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xebeb1515 fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x085a46c7 gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x25321e8c gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2911d0cd gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6a8ccecb gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x733db8e6 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7dc524d7 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa046f6c7 gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa6ac409b gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xac653886 gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb8d82143 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xbc56213b gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd90750e3 gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf8b1cc9c gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x0d2a2a46 gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1768e24a gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1784a897 gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x45bdaf40 gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x57d380df gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6b82529f gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x75d0ed16 gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8c3243b1 gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8d7a34c5 gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xac48e3cd gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb21a5c44 gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb9f8c499 gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xfe3496c3 gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x1e8a4bcc gb_audio_manager_get_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x735cdacc gb_audio_manager_put_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xe9e02b2d gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xfad9b907 gb_gbphy_deregister_driver -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 -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x187a410a imx_media_add_video_device -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x1a2b0787 imx_media_capture_device_error -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2d87d8d0 imx_media_get_pad_fwnode -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x306327f5 imx_media_capture_device_remove -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 0x49211a5c imx_media_capture_device_register -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4f4aee64 imx_media_find_subdev_by_fwnode -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x500aa056 imx_media_dev_init -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 0x623c7bc6 imx_media_free_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x744a423b imx_media_probe_complete -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7b3fe14a imx_media_init_cfg -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7e9b7a6d imx_media_capture_device_unregister -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x910b7873 imx_media_dev_notifier_register -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9a4d9939 imx_media_pipeline_video_device -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9ab4844e imx_media_capture_device_init -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa631199b imx_media_grp_id_to_sd_name -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa9e2459f imx_media_enum_mbus_formats -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xb4808865 imx_media_of_add_csi -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xba1c7b7e imx_media_mbus_fmt_to_pix_fmt -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xbdc20ba0 imx_media_add_of_subdevs -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xbf79530c imx_media_pipeline_pad -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc0e6162e imx_media_init_mbus_fmt -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 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 0xde1c1b1d imx_media_pipeline_subdev -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xdf9409f5 imx_media_find_subdev_by_devname -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe90722e7 imx_media_pipeline_set_stream -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 0xf5c8707e imx_media_mbus_fmt_to_ipu_image -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0ce08dca amvdec_read_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x115655e9 amvdec_am21c_body_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x13b274a6 amvdec_src_change -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x22a6ca3b amvdec_set_par_from_dar -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x37d75748 codec_hevc_setup_decode_head -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x40d5d8d0 amvdec_abort -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x420626e7 amvdec_write_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4211cd82 amvdec_add_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4734d7a3 amvdec_write_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x490e1190 codec_hevc_fill_mmu_map -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4f8b8754 amvdec_write_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5ff35ee8 amvdec_am21c_head_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x64c528e6 amvdec_clear_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7401c71e amvdec_remove_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x740b5cdb amvdec_get_output_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x94514202 codec_hevc_free_fbc_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa1721138 amvdec_set_canvases -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xaabeacfe amvdec_dst_buf_done_idx -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb9d82963 amvdec_read_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xcbc3e29e codec_hevc_setup_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe320d3c2 amvdec_dst_buf_done -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xed66dd77 amvdec_dst_buf_done_offset -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf5575f4e codec_hevc_free_mmu_headers -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xd928b2a8 nvec_unregister_notifier -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xf90b53e6 nvec_msg_free -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xf97fd021 nvec_register_notifier -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x0374819d vchiq_mmal_component_finalise -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x0727fbb0 vchiq_mmal_port_set_format -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x107a4fe2 vchiq_mmal_component_disable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x2bae1a46 vchiq_mmal_port_connect_tunnel -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x2e094775 mmal_vchi_buffer_cleanup -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x3f794653 vchiq_mmal_component_enable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x41bc97bc vchiq_mmal_submit_buffer -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x4e3dd4bf vchiq_mmal_component_init -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x5008bace mmal_vchi_buffer_init -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x5b59a807 vchiq_mmal_port_parameter_get -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x6192e1a2 vchiq_mmal_version -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x73577d20 vchiq_mmal_finalise -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x7e7d2db9 vchiq_mmal_port_disable -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 0x413fc5d3 target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x4fd0650f target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x923c2551 target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xfd5bcea6 target_queue_submission -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 -EXPORT_SYMBOL_GPL drivers/tee/tee 0x2b130f2c tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0x31910686 teedev_open -EXPORT_SYMBOL_GPL drivers/tee/tee 0x3d856884 tee_shm_pool_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0x3e188916 tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x491a0ecb tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x67c07bfc tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x6b99b247 tee_shm_pa2va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x705f8b23 teedev_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x74d9c0de tee_shm_pool_mgr_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7d9e6eb0 tee_shm_va2pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid -EXPORT_SYMBOL_GPL drivers/tee/tee 0x8d3dff39 tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x8e1a4194 tee_client_open_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x9242d21d tee_shm_pool_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa0cb0303 tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb7b078a2 tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0xbe80655d tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc6fe6323 tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0xcf8636d0 tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd5a6ae57 tee_device_unregister -EXPORT_SYMBOL_GPL drivers/tee/tee 0xdbba82e8 tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/tee/tee 0xddfaf817 tee_bus_type -EXPORT_SYMBOL_GPL drivers/tee/tee 0xe45f0b4f tee_client_invoke_func -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf3f0ccf5 tee_shm_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf70a3024 tee_device_register -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0eb79f4f tb_xdomain_alloc_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x176e330e tb_ring_poll -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1dbd79d1 tb_xdomain_disable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1ead386c tb_xdomain_enable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2c6ebd3b tb_xdomain_release_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3fce4f61 tb_xdomain_lane_bonding_enable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x463c3166 tb_ring_poll_complete -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4a4f7040 tb_xdomain_response -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 0x520bb89e tb_ring_alloc_rx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5ec01d11 tb_register_service_driver -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 0x692cf392 tb_xdomain_find_by_route -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6a2b24af tb_xdomain_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6f735eb0 tb_ring_free -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x83ff376e tb_xdomain_request -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8474ce9a tb_service_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8ba65a68 tb_xdomain_alloc_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x96823f2e tb_xdomain_find_by_uuid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9a396fee tb_ring_alloc_tx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb64df084 tb_ring_start -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc541ac58 tb_ring_stop -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdcec366f tb_xdomain_release_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe6f79f51 tb_unregister_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xefaddcc1 __tb_ring_enqueue -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf506ed46 tb_xdomain_lane_bonding_disable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler -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/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 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 0x7f141c3a cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x92b9bb0e cdns_suspend -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/cdns3/cdns-usb-common 0xf99257e9 cdns_set_active -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/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/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 -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x69bf6c00 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xecaadba8 imx_usbmisc_hsic_set_connect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xf23a2a53 imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x0a5926b9 __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2f84684c ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x90a6514d ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x93051a03 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xab4fa73c ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xff63a4b7 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x077c6415 u_audio_set_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x25ebefac u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x29064de3 u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x36642a4d u_audio_get_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x3e3e79bc g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4c67a125 u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x87fadea9 u_audio_get_mute -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 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_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4a3df9d0 gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60ea48a0 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x7aaa34ad gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xae8ad9f1 gserial_suspend -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc0a01527 gserial_set_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc39d85e1 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc9e3cae0 gserial_resume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x193e9d16 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x1d0c5949 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c825859 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x04679fd8 fsg_store_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x14812496 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x18a8bf67 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x19580392 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1de4c057 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x37445c9d fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x46a31dd9 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x59d0441e fsg_show_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5c6cd17e fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x60994101 fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6ee2b668 fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x794b1392 fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7f508c0c fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8d2a24fd fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8fbf8b7a fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab6c68ac fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc6b3d113 fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 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/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 -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0cd786e1 usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1bd95ae2 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1eb1da1d usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1ec1cb67 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x22cf8d3d usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e9da82b usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3f1483e1 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4aa991d0 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4be4ca6d usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5655d59d usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5c05350f config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6a615f5d usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6fe1dd96 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x754ab284 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x78fe7423 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7d1b817d usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7ed87b5f usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8af8df62 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8c83c25b config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x917eba43 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa1df65e8 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa33703f7 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb06f1ac9 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb775db55 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbd7d91fa usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc324a443 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc9dc1a5b usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe96cb80d usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf1d1e668 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf3d35fbe usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfa4163de unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x508df6c2 free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5b7881f7 udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x656c6091 init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x71339104 udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x8a495780 udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xbd499466 udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc94170b9 udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd5bfc2cf gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd7a15a23 empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x000351a4 usb_gadget_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01b12bfb usb_ep_free_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x057126e7 usb_gadget_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0a8c3b4b usb_ep_set_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0acfe2e7 usb_ep_set_wedge -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0cc8dd1c gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0d90d784 usb_ep_fifo_flush -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0ecd0c4a usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0f51a884 usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1d15f09f usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x25348caa usb_gadget_check_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2a6a21ed usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x341c3969 usb_gadget_vbus_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4515b365 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49d9f030 usb_ep_fifo_status -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x506ab3a9 usb_ep_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x559eb7f1 usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5fc294ef usb_ep_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6ba7e2c0 usb_del_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7a41b9f2 usb_ep_set_maxpacket_limit -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7be89624 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7c467055 usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x882077d5 usb_ep_dequeue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8e195949 usb_gadget_set_remote_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x983e7d92 usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9adf367d usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9eb52803 usb_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa7caa43f usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa81bd71d usb_gadget_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa9e74462 usb_ep_alloc_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaf201fa6 usb_ep_enable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb244e4c1 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb480ded4 usb_gadget_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb4a48367 usb_add_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb7466ff6 usb_gadget_frame_number -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc2b9bfba usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc2db7367 usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd110f00b usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd60667df usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe28bd483 usb_gadget_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf779f143 usb_gadget_vbus_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf90d4147 usb_initialize_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xff73635b usb_gadget_map_request_by_dev -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/musb/musb_hdrc 0x09492220 musb_mailbox -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0b4a8834 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x351ef7db musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x36f692ba musb_queue_resume_work -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x3c21b474 musb_get_mode -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x3eaf572c musb_set_peripheral -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af8c6dc musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x8a62999d musb_set_host -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xb24bef63 musb_root_disconnect -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 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-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 -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x7494d017 tegra_ehci_phy_restore_end -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xa5c4152b tegra_usb_phy_postresume -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x0d91e2dd usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x51ef5d89 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6238f2ad usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6883d1c5 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6f828459 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x71831e7a usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x72868c0b usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8b69eeaf usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaae62ffa usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaae8d48f usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb0ab196a usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc39bb163 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc8067f0c usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcb6726b4 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcb7b01ca usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd344be85 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd354fda6 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd43b5991 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd4629f6d usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xea5f3fab usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf8ab158c usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x24e68692 dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x8e95ef4b dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xba677145 tcpci_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x87d63fb6 tcpm_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc37b9769 tcpm_cc_change -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xceb50012 tcpm_vbus_change -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x000f401b typec_get_fw_cap -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0e35c055 typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x12ebd257 typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x13d58108 typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x149462b4 typec_plug_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x15c454e2 typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1bcbfb64 typec_switch_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1dd0eeb4 typec_partner_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x21c51310 typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2578e30f typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x26807102 typec_mux_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2692a78f typec_unlink_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x29494c48 typec_partner_set_pd_revision -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2fc9e4dc typec_link_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x33b23e65 typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x374550b1 typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x390ed9f0 typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x39e6a8f5 typec_cable_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3c29e4f4 typec_partner_set_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3ca9ed57 typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3cbdae81 typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3d242bd1 typec_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4459ad36 typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4fe8732a typec_cable_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x50a05825 typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x528a17b4 typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x576152a5 typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x68d654ee typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6a88b6ec typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x70485832 typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x76d4307b typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x777affd6 typec_mux_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x82e3799c typec_mux_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x84f2f2ec typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x88719fce typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x90dade49 typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9addb4f7 typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9d5d9683 fwnode_typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9d911da3 typec_cable_is_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9f45ab8d typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa51ad912 typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa64aa374 typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa7384d95 typec_get_negotiated_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xab52090f fwnode_typec_mux_get -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 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 -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xde5b5530 typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe2b6eeac typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe38e7f03 typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe6e28142 typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe7806bcd typec_unregister_port -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 0xf7b55be9 typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf99c9d21 typec_port_register_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfbaa0a0c typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xffa8e6bf typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x040b997b ucsi_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x0c0afa72 ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x5ce1a27f ucsi_destroy -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x6d6553bc ucsi_register -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x90037df2 ucsi_connector_change -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 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 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x84dbec75 usbip_in_eh -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/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 -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0dca2328 vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0f8dc315 vfio_pci_core_unregister_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x294f83ef vfio_pci_register_dev_region -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2d9ff02d vfio_pci_core_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2e2e9acb vfio_pci_core_mmap -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x38313192 vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4e267a3d vfio_pci_core_init_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5c7fcdaa vfio_pci_core_uninit_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5efcb35e vfio_pci_core_disable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x865acd34 vfio_pci_core_write -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb2e0b46e vfio_pci_core_sriov_configure -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd66ae3e9 vfio_pci_core_register_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xde2a9c66 vfio_pci_core_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf3a0a860 vfio_pci_core_request -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf9d2d363 vfio_pci_core_read -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfa830577 vfio_pci_core_match -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x02566aed vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x75f02b43 vfio_platform_remove_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x8db88418 vfio_platform_probe_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x8dbf5044 __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0b4716dd vfio_iommu_group_get -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0d003e09 vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x202208f4 vfio_group_get_external_user_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3682b61b vfio_group_iommu_domain -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x39508ad4 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x53600a70 vfio_init_group_dev -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 0x67a313cd vfio_unregister_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7be1e22c vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x81ee28ff vfio_iommu_group_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x88ca5417 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9db4487c vfio_uninit_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 0xdce3396a vfio_register_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe3dc50af vfio_external_group_match_file -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe8a70950 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe8a91bb4 vfio_assign_device_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xa307175e vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xf7194171 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x007b3b19 vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0238e459 vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x12e131a0 vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1aca33e4 vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x21077d5f vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x247835b8 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2858252e vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x353dc8d8 vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3f107c35 vhost_clear_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3f9fff36 vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x40e4742b vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x43262b58 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b03cb28 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4d773da0 vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4f841bf5 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x68e65ae1 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6ea5a405 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x78d7eca6 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7a46662c vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7c21d9af vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x80190584 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x87d2158e vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x89db4b9f vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8c4b1a57 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8da92424 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa055fbc6 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa123a20f vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa9c2476a vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaf1df97e vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb00b0b7a vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb33b4eea vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbfe29d64 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc20e0a80 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc9123cbe vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc96480c0 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd16cc43f vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd8cb2dec vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe5a14943 vhost_work_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xefce8a2c vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfbd2e0c2 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xff411e8c vhost_set_backend_features -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 0x0cbe8f62 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x209c461f ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x25944100 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x93ec2ee7 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb5a709db ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb8d94d24 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe58751d4 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x6430e1a8 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x8f482a19 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x9196a3f9 fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x4c87f1b2 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xd900678f sis_free_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x00c66413 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x132cfa6e w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x15ada0d7 w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x19bb00ec w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x1ded1010 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x647d9914 w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0x74389cea w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x882096ac w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0xb17c3658 w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0xba8e87d4 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xca250081 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x2c8fd8a1 xen_front_pgdir_shbuf_unmap -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x3116ebc1 xen_front_pgdir_shbuf_free -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x57445907 xen_front_pgdir_shbuf_map -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x62cf984c xen_front_pgdir_shbuf_alloc -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x67c1fe5e xen_front_pgdir_shbuf_get_dir_start -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x4750e8a9 xen_privcmdbuf_fops -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x9dd56f45 xen_privcmd_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x518c3695 dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x56d32dd4 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock -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 0x1c7ca7e6 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x468c580e nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x563a589e lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5c51484e lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5e6f8e12 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xab4c1f53 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe63abfcd nlmsvc_ops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04014c4b nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04a5dd2b __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x053fef3a nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x077803cf nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09ca8ab2 nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09d0ace2 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0acafaa8 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b01274f nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ba2d420 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12544fe5 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x167fa384 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16f07235 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x170fa191 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18e53c93 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a8e174f nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ab2d4e7 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b228e6a nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1be55f78 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21a02fe9 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2380fd8d nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27be8283 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a73f6e3 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b5de87c nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b9e70ef nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c7c23e8 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d7c0002 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e3d534e nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2edb9d7e nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f5debef nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x321a87ba nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32367525 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38765052 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38df9d70 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a7f883a nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e1085bc nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3fe3d4a8 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40c3dfdd nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4104949f nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4426a1d0 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a271424 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cafe8e3 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d99b2d2 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50f6231a nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5281c088 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5714d7a0 nfs_kill_super -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 0x5c0edf6d nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5cf0b386 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d07bae6 nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d0e8d93 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e16417b nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6315a046 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x634395f9 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6583a127 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x671bdbe7 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d892f5c nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70d67e0d nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70dec4c0 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7116bc3b nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72871d4b nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72aae421 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75594db6 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x779176ce nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7845fa95 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7be34dc3 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d484b41 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7da4e5ad nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80509806 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81f7761f nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8659bae2 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87aae671 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x887b0651 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b02df5a nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cb9b991 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cd9713e nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d510c08 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e1340fb nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e54cc6a nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ed61777 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x919359af nfs_alloc_server -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 0x96ab07c6 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96d3310f nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x990c53a8 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d38c0be nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d6d9c6c nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f990efc nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa101e730 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa12b72ef nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab066e88 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad4017a6 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae129e25 nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae6dd6dc nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb06cb887 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3676d8f unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4700476 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb59453ef nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5cd96e0 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6467935 nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd5ffd78 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbda75085 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdae4171 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbeaba150 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf794cf2 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc15ed992 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc265440d nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3b8bfa8 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5a0b866 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8889b3f nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca7a388b alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca806728 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcaeeff70 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcafbaa57 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcca7f2d6 nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0c281b4 __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd118d9c9 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd13b6cb1 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5748c13 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7ac528f nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd82b4c1e nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9c288eb __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda1470b2 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2197031 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2b9a740 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe75179ce nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe79871f0 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8434633 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8e221b1 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe992bbe3 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea24a9c2 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea658623 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee14f583 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeebd16e3 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf51ec7d8 nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf62ff3c9 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf63ecf41 __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffd5c391 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xb70072a7 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x013fd863 pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0225efdb pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x03150ac2 __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07442671 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0868996d nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0882b918 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x093c645a pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aac0555 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c533309 pnfs_generic_search_commit_reqs -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 0x11205cf2 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13e2d10c pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x156ef5f4 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18b8fb06 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c2ea6a5 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f6ce8a1 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22ea7253 __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26bc3017 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2771c2cf pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x28b8b0c5 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a78f742 pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b50f3e7 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b93f274 __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 0x33831d73 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35783558 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39d98a85 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3bf530c9 __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e6d0147 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x40cb8eab pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41609667 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44f60136 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46d136e1 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46e5d830 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b86d73f pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c57f06d pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e49e216 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x506c78c9 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55d949d0 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56ff7a86 nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59ab0bab nfs_remove_bad_delegation -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 0x5ff69fe7 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6283d8c7 __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x65dd7987 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c87fb8d pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73c6ab3f __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7406b79c pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ab7bcc6 __tracepoint_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ee9639a nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83154107 __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x88611107 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a0e0405 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x900d1876 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x90586c1d __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a4d28ce pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e3bccb3 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f9fe544 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa5fed23b pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0b758d6 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb41d05b6 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb42361f8 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb584b7d7 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd6ff476 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc33d07b0 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc69675ff pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce841fac pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf29b95f __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0ecfaad __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd7bbe746 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda660733 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc351340 __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc44cf4c nfs4_setup_sequence -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 0xe908a3c9 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea3f78bd nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeae8522f __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec03013d pnfs_generic_pg_check_range -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 0xf161dc29 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf19b8416 __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf318ca26 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4e6b7a7 __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf59b8c1b pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf90baeb7 __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfafccf1e pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb2d471e pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff7dcdcf nfs4_test_session_trunk -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/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 0x655a6a57 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 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 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 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 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 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 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 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 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 -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4163133b ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9f7c8847 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 0xd04621b2 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x05ac7268 register_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x96a4e7d4 unregister_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x848a9fe2 unregister_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xa36e11e1 register_pstore_zone -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xabd9af6d cifs_arc4_crypt -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xc4c73891 cifs_arc4_setkey -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0x798f3830 cifs_md4_init -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xceecd9e4 cifs_md4_final -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xdef1096d cifs_md4_update -EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x0c303f52 bch_encode -EXPORT_SYMBOL_GPL lib/bch 0x0d3e3481 bch_free -EXPORT_SYMBOL_GPL lib/bch 0x1a267fa8 bch_init -EXPORT_SYMBOL_GPL lib/bch 0x860a2eab bch_decode -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 0x1f02d73c notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xf7308126 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 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 0x6953f9cc lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xd6c06227 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 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 0x007c2302 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0d4c2be6 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0f28caef br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x115133e1 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x20c16e1d br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x20fa8bcc nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3338b202 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4cef20a0 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4cef79af br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x585a46f4 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6051a2c5 br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6442deec br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x70b629e6 br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7b044095 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x828dd31c br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8d19500b br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb7cc0d92 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0xbcdb3b01 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc19f4326 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xdddb0b46 br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe23bf431 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0xfd4f96da br_vlan_get_info_rcu -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 0x0144b21a dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0228d7f2 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x16ff4616 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2e102700 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2fc7b41e dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x38a12087 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x397e09cf dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x406a5ac2 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e4b2b44 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x53bcc03d dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x53ec2727 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59637adb dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59d0c227 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x665a0276 dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0x722630de dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x723fa280 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x745c2401 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7b34067e dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x884a32bd dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8964885b dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8a38989f dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8c277d32 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9648191b dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa0ce6767 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa3607c8e dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xaa4926f2 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb448ef72 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc70fe0a7 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd63e18a5 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd9574e51 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf0b9e815 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf2009e30 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfc810431 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfd4445ea dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0e500905 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1797ff57 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2df5924f dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x46232acf dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8c2e26fc dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe6968a48 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0cfb9ed5 dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x132e7a0f dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1f181f13 dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x202d4a51 dsa_tag_8021q_bridge_tx_fwd_unoffload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2eb4bee9 dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x39225507 dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3cd7719b dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4440974b dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x449de51f dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4649ab29 dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4714ec49 dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x49419d43 dsa_tag_8021q_bridge_tx_fwd_offload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4b06c2e2 dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x51c017e4 dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5441fbde dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x64c2f5fb dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6aeb2652 dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x784b13d1 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7a8f27e0 dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x945ce15b dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9635d86d dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa2a3810c dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa2d7243d dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa3e2c3a1 dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc07581ac dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc141a32a dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc5125757 dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc54c56b0 dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc89a7e91 dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd1a1e659 dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd95b08f6 dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdbb00978 dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xecf52970 dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6352e12 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan -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/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/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 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ife/ife 0xf0517b18 ife_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x30915c14 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x353d6766 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xf84607bd esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/gre 0x0f2d88c9 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x7011efd5 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2e88e439 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x410eb060 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x486410bf inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4ffb6b7e inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x563d754c inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb76472ab inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbf494763 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe877ef99 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xee779211 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x51d975f1 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x01e68c60 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x11eda006 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x168b94c4 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1a9b72bb ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3953b363 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x46696fb6 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4907d261 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5325a58c ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x589ab38e ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5fe39470 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6ffa528d ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x76f514ba ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7e37eca4 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x93d46b7d ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe169be60 ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe8fee3b3 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xed892b39 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x240d1edf arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x0e5b5593 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x0162641f nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xc86fabc2 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xabdbfd44 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x154afeba nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2620168f nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x69ddb5c3 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6b09c40d nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8622b8d5 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb05d0d26 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc310f491 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x4c2455df nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x320b73fb nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x5bd03163 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x7be56b47 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x6b92d565 nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xdb285a01 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x3bf3da04 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x4a1abc26 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x4ea2e774 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x68ee4a5f tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9ff5ed69 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0965a5c5 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5b61eaaa udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x61fbe16f udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x79a21798 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x84ba2419 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb475ae5d udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc93fbf78 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xfa847e26 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x99b44c60 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xb9a4c118 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xe8013945 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x6a20bfe3 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x78bd9731 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xca7e0b23 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x12b6dc0e udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xc078f345 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xab04322f ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6baa8138 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xd527764d nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xf2b9a3bd nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xc2506ca8 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x21855d1a nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x431766a3 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x53ae9aaf nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7143b8af nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb199cc0f nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb77b233f nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xdc9627ae nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xcb43f4b6 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x114142aa nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x2176789b nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x2c6f6871 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xe6659c36 nft_fib6_eval -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xf16d5782 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x22a1028f l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x29c82591 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x31c6011a l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x32d4c7aa l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3b2a1ecc l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x49336544 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4a6fbabb l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x678da1a8 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6c1af2d1 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x72d5add0 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8099511a l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x814769c8 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9d9adcc1 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaefc5b0e l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb6bb1f1d l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd6a3996a l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd72a5844 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdc945355 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe92d46a9 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xef77ea7d l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfbccb7fb l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x5291b780 l2tp_ioctl -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xfbb682bf l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0c86d5b4 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x201148aa ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x24b45ce9 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x279d39fb ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2c407dc0 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x31fcd2d2 ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3eb44cc3 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x41e9241b ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4840ce10 ieee80211_vif_to_wdev -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 0x5d3e9d27 ieeee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x67af5ad9 ieee80211_color_change_finish -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x75dbacd0 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x82ae37c5 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8e96ca24 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x91171d5d ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x917d80ce ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x951d28ed ieee80211_update_mu_groups -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 0xa6e0f9f0 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc5e37c0b ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe42efa81 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x37b4b50b mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x61bb82a9 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x6c83047d mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7f587f9c mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xebafc175 nla_put_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1d15723d ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1def5478 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x201aec9a ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x308ae9d4 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3c9a0dcd ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x505d15cd ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x58484c7a ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6945ce66 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x74585cd8 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7492ef7b ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8437d948 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x923fc80a ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9a11942b ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc4955dc9 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc5ac1c84 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd0f2e127 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd4701118 ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfa08ea44 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfdffba5d ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x295f0b3c register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x5af0abd9 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x73370196 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc5d24376 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x5b53ee41 nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x6bbc1982 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xa7d0f7f6 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xb71ce77f nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf93e8341 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00f08aee nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02eb382d nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0454dd45 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0480caad nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x054c971b nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x055534d9 nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ae20e79 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f0d4123 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10dc4701 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13cfd178 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15666ff7 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x171bf5e3 nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19fbef82 nf_ct_set_auto_assign_helper_warned -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ad1a7af nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b79d528 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20ca5de7 nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x268ef3e5 nf_ct_kill_acct -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 0x2b86034c __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f35048e nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f5ac55f nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31385b14 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36ba7c7c nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d78a47d nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x42a6b33d nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45b416e5 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a72991e nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4aff23f5 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52469074 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x54378eb2 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57ab4735 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5934f092 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b579000 nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f7e4cc9 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5fab1926 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6388af06 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6dc71dc8 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74e5836e nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x77001d00 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x791a097f nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a03777b nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b41a970 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c690052 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f2832a4 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fc9b37e nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8163e1b9 nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8482da66 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x868762f9 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e707661 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f84c110 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9266189d nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9642cc38 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x965713ba nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98b1a222 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b3f66a9 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f96f9d9 nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1928449 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2b500a1 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa583e3e4 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa682c1e4 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa83a741 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaeb41496 nf_connlabels_replace -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 0xb7167919 nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb90db78 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf77e0f0 nf_conntrack_tuple_taken -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 0xc70c0b6f nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc82fb4a3 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcabc0026 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd656fc1e nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8bb0325 nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc853b33 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdca5a524 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde97bc04 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe04b2da3 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe15b8c23 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8cd4883 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf059a94e nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1a4403b nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf678bdc4 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6c94271 nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7af58dc nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff7f6545 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x650d0dcb nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x2151a9dc nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x1d05d156 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0e7b5aee nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3f2e1003 set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6836ebef set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x752798ab nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x79864de2 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7f6a977b nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8cfffb8a nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xaef958fb nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc41888a9 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfc4a2d94 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xbec87d7c nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x47778152 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x532d7a6f nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x9999961a nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc077de73 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0057ccc1 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1c4332aa ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2231dff6 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x50a0926b ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x84228347 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa2fbbe41 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa5966f8b ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xedb48a6e nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xe2661863 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 0x1574ce8d flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x185af8f9 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1d8356cf flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1e1305d2 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1e1e886b nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x29a5d4fe nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x362fe252 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x491bdde8 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x666698f8 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6d9b6229 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8e306f0b nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9408a4c4 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbdddbc14 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc3cec2f0 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf07301b3 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf1e83848 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf8c77a32 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x00028c75 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x35521af0 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x38218f04 nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x51eb3e8b nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x665128d3 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6c5abb57 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6f437741 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x73bb0289 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9288bc5a nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x97c4a818 nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9bb0a6be nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa471c832 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb8abbdc8 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbc1c3203 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc81d9bca 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 0xf61d1f5a nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0555b71f synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x27eb4592 ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x42782b89 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8650b8e8 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x895f49b7 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x91c9d2f1 nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb09ba748 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc9da5c48 synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcc7381f0 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe2a5e613 nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf53c8c0a nf_synproxy_ipv6_init -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 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 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4978f769 nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4ea32fbd nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x56c7e330 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5bb93102 nft_meta_set_destroy -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 0x81d220b8 nft_meta_set_init -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 0x8b5ae838 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8d2cdfc3 nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x92339184 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9803b4b3 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa6591273 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 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 0xd118d9ae nft_meta_set_eval -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 0xde57b5f5 nft_parse_u32_check -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 0xea031f6f nft_meta_get_eval -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 0xf1aa0594 nft_meta_set_dump -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/nfnetlink 0x51d06895 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5a1c5786 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 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_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x44ab57fc nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x9b17acc0 nf_osf_match -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/nft_reject 0x0e8f99f4 nft_reject_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x2d5e777f nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x67fa5399 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0012f25e xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x07ea97c1 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x09e25455 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x23d109e1 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3542102b xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x37be1867 xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x47c6b664 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x48a60be3 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x57446752 xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x60248190 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6193baa4 xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6503493b xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7dd6d36a xt_hook_ops_alloc -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 0x868cccd1 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x87d4f7ef xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8d22feef xt_unregister_template -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 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc165698a xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcae522a1 xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcd35b77b xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcf91d88c xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcfca9464 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe9b23fcc xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeec7cd78 xt_replace_table -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/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 0x0ec554b9 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x45922351 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x697b5938 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xdef78ab4 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf695e6cb ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xfa81f8f3 ovs_vport_free -EXPORT_SYMBOL_GPL net/psample/psample 0x0716d743 psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0x1f42a0a0 psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0xd1d65191 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0xda2e1136 psample_group_get -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x026edb6a 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 0xd9acb137 qrtr_endpoint_post -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xfbafac4b qrtr_endpoint_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x0135c3c3 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x045abf44 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x104bac7f rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x10b955b5 rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x173a7c1f rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x247b80b2 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x2a9bb33a rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x33aa48b8 rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x3908c94a rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x3cb9c64f rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x4fc60d50 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 0x60d46b76 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x788ef4da rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x7c378ff0 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x8e451ca0 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x9caf95ed rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xa894e867 rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xc1d37a8d rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xcbce80e8 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0xcc69b34f rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xce370555 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0xd5f664f4 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xdb941bc1 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xeaf0aea0 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0xeb04d294 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0xec5a2b71 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0xfa39b57e rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xfae23106 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0xfb46037b rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x03241b73 pie_process_dequeue -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xa52153e9 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 0x60cdf2cd sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x6ef5752a sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0xc64d6e3d sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xfe255824 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/smc/smc 0x2d8cefb8 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x4d0fb89c smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x5012cf37 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x6b8cfa9f smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x74f4fc82 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0xb80e6d46 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0xbe90ddd4 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0xd9deda35 smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xe36eb2c8 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xfe083395 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 0x53ba32b2 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x9461d287 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xab5f2624 svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf198a5a3 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x000e5eaf gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0093f5dd rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00e47fda rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x010ee855 svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02a952ab xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0390c9e3 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03f2bf6f xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05edff1f xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06a76410 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08389ebc rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09c7b5b8 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a549840 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bbb284c auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0dc4550c svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e1b2ceb svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11d20fd3 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13aaadb2 xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x147e8e98 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x152a84e8 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1564163d svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16e42802 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x175b8e13 svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177898a0 xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17ba56cd xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19bc0389 svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c84be24 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d77d055 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1df10cd1 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ed99263 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ef09041 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x222f4740 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22d9ed6e xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2437c18d xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25d25341 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26e0a495 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27bceef5 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2810772a xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29cf4c06 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a8a3834 sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b108278 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bc726eb rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e39bc05 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e5d2978 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30b3c8b5 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32411c20 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34009284 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x350b8e67 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x351f503b rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x360301c8 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36f8d664 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3772797a xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37d6c28b cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x382c83e7 xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38d8843a write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3953fd93 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d7d68ac xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dd7c066 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e0cb507 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f2caf3a rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x401a4a6f rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x409f203c rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40ee1d32 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4217ba64 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4282b30d rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4306bdcd rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45100dd3 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4728cb34 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x488df8c5 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a085e7d rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a48c86e rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b8cfb55 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c1d54af sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d550485 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f06af9c rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50938822 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50b80725 xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x526205be svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52dd781d xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5394616d xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x558ed7cb rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55c716c3 xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55ca52b5 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56407682 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5690c78d rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x571103ed rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57eb52b8 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x587c15c8 svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b6f73d2 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b791ad9 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bc26b8d rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5be48eaa svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c86b6c1 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d2ae75e xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d9ab6bc cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60da9558 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x631aa23f xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6485d962 xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x656c5e6c xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67d94106 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69113855 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6be167b2 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c433738 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c8630d1 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cdfbd08 svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6da1d282 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6daf3003 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ed9c51b rpc_queue_upcall -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 0x727a6b93 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74c8e8b7 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76e00b90 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x772e049b rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a1befee cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cf08842 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dff9d14 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e2f5d3f xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e7884e4 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ea0423f rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ee552fe rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7feb7b00 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8100de7c rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81b9e4d1 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x822e3c45 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83853c62 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x838f756a rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85291ea9 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x855e4c46 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85fae3a8 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86cce2e5 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89ba344c rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89eea86a rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a7a771d svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b060856 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b74ac1e rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bb0d502 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d97c61c xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e76d869 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f7efc44 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90f2d03d xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91b9049f rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91f47872 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x923b499e xdr_expand_hole -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x967d0ede rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9685f00f svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x970c53d3 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97420997 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b0c0c2d svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b26f6ec __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b4f1c2e xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9be5b5ea svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c0f06a3 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c368822 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c3badd7 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9eff49be svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fbd1ce0 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa32280c3 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa528f7a3 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5b604a1 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8ad4177 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa719e68 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab36555e rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab7bd6fa cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac64c64c rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae25c399 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf20f460 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafc04eae rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4adcd13 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6e5e699 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8b2f4d6 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc4620ad unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc81966d svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcac13b6 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd33e6ca rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe05b69f xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf19c25a xprt_reserve_xprt_cong -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 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc24ec979 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc909f54e svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc887849 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdb257a6 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdeb5556 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce706e07 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf42eaa1 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf625ede sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd046a6ae cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd06cc678 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d1d5b rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd112b022 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1c289cf xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2eade2a rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3c89f4b rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd51e74e8 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6d96b78 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd745fe32 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7716583 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7cd3ade xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd89e6ab8 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdaafc610 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdacb5607 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb77fe68 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbc4fcdf rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0e3668b svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1638154 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1e65c41 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4c504ae xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe68ec3bc put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6de0ab4 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe993a79e rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec144612 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec7e2dea svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecc58f02 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecea1919 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed38ba34 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed9a06ce xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedba251a rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee731f52 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf03b3d0b xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf120ccc1 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf13fe545 xdr_align_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf31c4e7c xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf43011cd auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4d66283 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf51203f8 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6c4405e svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf780d283 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8f430ca rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa539e66 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfce4cdc0 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfce50ba8 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd03fa10 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd3265ca xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff52ea58 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffa20f94 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/tls/tls 0x2115e273 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0x6adb26dd tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0x82fc4586 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x97243f20 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 0x0b9d8c53 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x18aa0395 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2224727d virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2a0d905b virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x38a1b77d virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4dce9593 virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x552ca832 virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x55b9ca2a virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x64b6cb41 virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x67224341 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7029b168 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x76c338fc virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8cb5793a virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9b0885cb virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9bf698a3 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa96a5503 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xadc2ce33 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaed3812c virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb4c59309 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb93103d7 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbc435a48 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xccde154f virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd367d716 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd99cee6b virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdcf02f82 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdf989109 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe008d56b virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe050f97a virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeafdc864 virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf754a142 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf82b9db1 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfa3be33f virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfc42985a virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfca065bb virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0542a687 vsock_core_unregister -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 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 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 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 0x90aa8549 vsock_find_cid -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 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 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/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 0x3b0eecb2 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xab86e4f9 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xd01e4dd0 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe94ee8d1 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 0xeea1a24f snd_ac97_reset -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe50413d7 snd_seq_client_ioctl_lock -EXPORT_SYMBOL_GPL sound/core/snd 0x00374f4c snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0x02f0a7cc snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0x1aff75c1 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0x1cfb0597 snd_devm_card_new -EXPORT_SYMBOL_GPL sound/core/snd 0x4878c72d snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x541f86da snd_device_get_state -EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free -EXPORT_SYMBOL_GPL sound/core/snd 0x68bcfb81 snd_ctl_register_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x9703a9d7 snd_fasync_helper -EXPORT_SYMBOL_GPL sound/core/snd 0x9c6eb699 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0xa684a03c snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0xabcd055a snd_card_rw_proc_new -EXPORT_SYMBOL_GPL sound/core/snd 0xbd2acafc snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0xc849a591 snd_card_free_on_error -EXPORT_SYMBOL_GPL sound/core/snd 0xe6494fa1 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0xe78f053e snd_power_ref_and_wait -EXPORT_SYMBOL_GPL sound/core/snd 0xf4c96da6 snd_ctl_disconnect_layer -EXPORT_SYMBOL_GPL sound/core/snd 0xf6883f80 snd_ctl_apply_vmaster_followers -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 0xfbddf776 snd_card_ref -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x10a77c9c snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xc2c81ab2 snd_compr_stop_error -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0a1527d6 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1eb3cafe snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x286d962c snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2ca2f72d _snd_pcm_stream_lock_irqsave_nested -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x56a5b2d8 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6bb386ea snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9d34b033 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9ef1a650 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xaa5f5a01 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xad21604d snd_pcm_fill_iec958_consumer -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc1d4d02c snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd0288d84 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd2c2e1fd snd_devm_alloc_pages -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x011def69 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0141f60b snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x109d2366 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1aa860f5 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1da6fd87 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2ca52723 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x38d9cd01 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x716a4fd4 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x761a1e89 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x769233b8 snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xae907993 snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf0af03fa snd_hwparams_to_dma_slave_config -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 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 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 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 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 -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0bcab799 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1144151b snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x14fe46c7 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1cccb050 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1e500e4b snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x265c77fa snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x271ee716 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28d964dc snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x320d124a snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3d705b2a snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x44df6969 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x47d4c5a7 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4d2505ed snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4db45fd1 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x59fac674 snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ab8ce33 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b0f48f5 snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x659ec981 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x68271a26 snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a1bb30b snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ad46fb4 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6e90da7d snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6f66e703 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6fa9e4ed snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73d93b2b snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7615affb snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x773d5a71 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x789ede49 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x79fe7b53 snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7cfc96bc snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7da07021 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7f19a505 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x821d640a snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83085901 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x838bce24 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8682dee7 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ca3a1ef snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e4749db snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x912ab3d6 snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9974adde snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a3c4f5c snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b04eb6b snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa1d64424 snd_hdac_stop_streams_and_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaaf896f4 snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab1083bf snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab7aa253 snd_hdac_stop_streams -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb448e1f9 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb6784584 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb6a21f3e snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb83a5467 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbaf21991 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc6367c4 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe53146a snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc09772e9 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc3561d67 snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc45175b6 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc497543d snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6d3f694 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc825f511 snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc96d6a7a snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcaedd8ef snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcecf056d snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd363233d snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd3e40bf0 snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd66183e0 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd6c28d29 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd7aef70f snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd82df32e snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd891f835 snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd8ddc1ee snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xda5b715b snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb21828f snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb35b85d snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdba7e070 snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xde1faebe snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe2b16344 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4738839 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe5b4499f snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xebb309b1 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0dc2854 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf21de91e snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf602e829 snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf99861b6 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x1d124f38 intel_nhlt_init -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x303d3070 snd_intel_acpi_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e859456 intel_nhlt_free -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x8101b4c1 snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x9e9c86c9 intel_nhlt_get_dmic_geo -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x06e311fa snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x44077800 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8c54cea3 snd_ak4113_build -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 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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x092961a0 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ab68233 snd_hda_enable_beep_device -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 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 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 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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4351d291 snd_hda_spdif_ctls_unassign -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 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 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 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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b7f7c7e snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7cf3dc78 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d0c321d snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x814f88e7 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83b87e59 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x873c97fb snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a0724ad snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ab8974f hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8eb09a8a snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ee754e3 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8fed8ea0 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x907090cf snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94ac4cdc query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94c43d53 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x953f35df snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95f786d0 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96aaa155 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9791277e snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9de75451 snd_hda_codec_amp_stereo -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 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 0xc98fb17e snd_hda_sync_vmaster_hook -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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9057603 snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd974349d snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9930a9a snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdae72c33 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdcba03d7 snd_hda_jack_set_gating_jack -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 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 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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa98bf4d snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe52e7b6 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x05d55cd0 snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x05ee6018 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x10be6ca5 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x403203b6 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4201860c snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x52a093ff snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5adaeefc snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76f44db7 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x810b3d28 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa2eca1ca snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb76d40cf snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbbbc2764 snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc8eb92b8 snd_hda_gen_add_micmute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd686d48b snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xda2d4cbe snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe52684b9 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xec208265 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xef9b22f2 snd_hda_activate_path -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/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 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 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 0x9d0015bb adau17x1_remove -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-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 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7f3a3f37 cs35l41_test_key_unlock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x9d87de3a cs35l41_boost_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xc0d119ed cs35l41_test_key_lock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xdf90a308 cs35l41_set_channels -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf8cccd86 cs35l41_regmap_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xaeb645c9 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xded73783 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x28a969d5 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x491283f9 cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x4f282a51 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xa7d93ff8 cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xc41988c4 cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 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 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-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-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 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xb5bf79be pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xfcfa1b86 pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x4ebe1e58 pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xb3e4ef1f pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x1ceb7cb0 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x60df5122 pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xb394fc75 pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xc54173db pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x1a0c6c9c pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x48822c6f pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7763770f pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xc2444a9f pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0x61ff58e3 rt5514_spi_burst_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0xff87892f rt5514_spi_burst_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 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-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 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 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 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-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-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 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 0x98573f49 wcd938x_sdw_device_get -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 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 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 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 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-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 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/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-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 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 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 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 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 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 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/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 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-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 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/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 -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xe592b6e0 q6adm_open -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x07a54780 q6afe_cdc_dma_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x498d993b q6afe_get_port_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5332304f q6afe_slim_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x63c47a6b q6afe_set_lpass_clock -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7df60063 q6afe_port_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xae809786 q6afe_hdmi_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xb51789a5 q6afe_port_get_from_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd4523c59 q6afe_i2s_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe45246a8 q6afe_port_start -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xfaf22370 q6afe_tdm_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x13b7efd9 q6asm_cmd -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x1b6c77fc q6asm_stream_media_format_block_alac -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x25bfa476 q6asm_open_write -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x2b693eed q6asm_stream_media_format_block_wma_v9 -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4afe6f73 q6asm_read -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4fba2f0c q6asm_run_nowait -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x68db31e2 q6asm_unmap_memory_regions -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x6cec4b17 q6asm_stream_remove_trailing_silence -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7edc22a7 q6asm_audio_client_alloc -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x856b4fdb q6asm_stream_media_format_block_wma_v10 -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x9d0cf85f q6asm_stream_media_format_block_flac -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xa7d3a3a6 q6asm_media_format_block_multi_ch_pcm -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xb37ed108 q6asm_enc_cfg_blk_pcm_format_support -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc0dd8d67 q6asm_open_read -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc1347db0 q6asm_write_async -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc5a116a4 q6asm_get_session_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xcbee5e42 q6asm_stream_remove_initial_silence -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xcc4952e4 q6asm_audio_client_free -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd2cf1a0f q6asm_run -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd38aa312 q6asm_cmd_nowait -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xea75a5dd q6asm_map_memory_regions -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xf47f4b35 q6asm_stream_media_format_block_ape -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x7e52e977 q6core_is_adsp_ready -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x9b02ea0d q6core_get_svc_api_info -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/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/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 0x0210af6c snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0277ce2e snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0316c49b snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09401576 snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d03a7dd snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0edc47a2 snd_soc_lookup_component_nolocked -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 0x1243c9fb snd_soc_dapm_enable_pin_unlocked -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 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 0x19287ebb snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19cee27f snd_soc_add_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 0x1fb11769 snd_soc_get_strobe -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 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 0x26417724 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28b7c27f snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28f8375d snd_soc_unregister_card -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 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 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 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 0x3efaaa7a snd_soc_dapm_get_enum_double -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 0x40a84b46 snd_soc_close_delayed_work -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 0x433e7c4e snd_soc_lookup_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 0x47873b6c snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b2231cc snd_soc_add_dai_controls -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 0x5151948e snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51678320 snd_soc_of_get_dai_name -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 0x53eae365 snd_soc_set_runtime_hwparams -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 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 0x5cc2e24d snd_soc_daifmt_parse_format -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 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 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 0x719f181e snd_soc_dai_compr_get_params -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 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 0x7bf224aa snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ccbb205 snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d1011ce snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 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 0x84360177 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85b81f1d snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8613203e snd_soc_get_pcm_runtime -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 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 0x90142c6f snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9036ad06 snd_soc_of_parse_tdm_slot -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 0x93030178 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 0x95acabfa snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97d8030e snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b6ac2c5 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bae3d28 snd_soc_register_component -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 0x9f352fc4 snd_soc_component_set_jack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa201de94 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa23b6aae snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa289c1ab null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa309d97f snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3495cb0 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5b7b10c snd_soc_add_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa612d8dc snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7a66596 snd_soc_dai_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8665b2c snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9cd0e14 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab19f760 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabf0d3aa snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac088b38 snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacb73710 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacc34e66 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae7f45dc snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae9eacf4 snd_soc_jack_add_zones -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 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 0xb64da315 snd_soc_find_dai_with_mutex -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 0xb9544170 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9bfd6be snd_soc_add_component_controls -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 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 0xbff93832 snd_soc_of_parse_audio_routing -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 0xc2426f23 snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc343b68c snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3b48490 snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc47c5681 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc54bf589 snd_soc_component_initialize -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc74fb437 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9912fe9 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xccd9303b snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce4f26c3 snd_soc_info_enum_double -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 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 0xd2de387b snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3cd5d4e snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd54c7489 snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd61dacc7 snd_soc_dai_is_dummy -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 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 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 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 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 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 0xeff70cb1 snd_soc_unregister_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0ebcd5c snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf20fe3d0 snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf32660a3 snd_soc_of_parse_audio_simple_widgets -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 0xf7d6be5c snd_soc_resume -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 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/snd-soc-core 0xff340fb0 snd_soc_remove_pcm_runtime -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/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 -EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x68b4b311 sprd_mcdt_chan_dma_enable -EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x6c283cec sprd_mcdt_chan_int_enable -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-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 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-tegra20-das 0x0d54c9b9 tegra20_das_connect_dap_to_dac -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xb52cfca4 tegra20_das_connect_dac_to_dap -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xbced7431 tegra20_das_connect_dap_to_dap -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x0427e3da tegra30_ahub_allocate_tx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x55a40206 tegra30_ahub_disable_rx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x5d7237ff tegra30_ahub_set_cif -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x6fe20143 tegra30_ahub_set_rx_cif_source -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb419329b tegra30_ahub_disable_tx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb4a9367d tegra30_ahub_enable_tx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb81bca9d tegra30_ahub_free_rx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xc78c7125 tegra30_ahub_free_tx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xccb67e55 tegra124_ahub_set_cif -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xccc98372 tegra30_ahub_enable_rx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xd01de23b tegra30_ahub_allocate_rx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xe549513a tegra30_ahub_unset_rx_cif_source -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0xe15e6543 edma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x478b1de8 sdma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0xf64d32f6 udma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x10539cba line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x46c39d06 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4dc6abe3 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x80fe1948 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x83705a84 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8621c217 line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9493a967 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9a658d3b line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa6605c9d line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbeeb9071 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc3556fc1 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xca706171 line6_write_data -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 0x0011352a security_file_permission -EXPORT_SYMBOL_GPL vmlinux 0x00153a9b dev_pm_genpd_set_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x00197c5d __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x001eae8c ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x003daa3f irq_domain_disconnect_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x00512ca2 devlink_rate_leaf_destroy -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 0x00626c82 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x0063d2eb srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x008e1455 soc_device_match -EXPORT_SYMBOL_GPL vmlinux 0x009bc1fd pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0x00bdfdba inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x00c9d074 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x00ca7028 crypto_unregister_templates -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 0x00df9837 ioasid_register_allocator -EXPORT_SYMBOL_GPL vmlinux 0x00e6a56f dma_get_slave_channel -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 0x0108976c verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x011fc44d do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x012516e0 fsl_mc_bus_dpmac_type -EXPORT_SYMBOL_GPL vmlinux 0x0128824e gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0x01370896 __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x0148704c tcp_get_info -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 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 0x01b89705 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter -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 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01ea42cf efivar_entry_size -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 0x02394899 play_idle_precise -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 0x0269bcf1 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x026a916e dax_supported -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 0x02a0e1ce __kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x02ae918c mmc_crypto_prepare_req -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 0x02da8b5a nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0x02f19d48 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x02f1f4a8 tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x03116e65 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -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 0x034048a1 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x035dc360 debugfs_remove -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 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 0x03a0d540 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x03a37928 xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0x03b293d9 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x03c07b22 sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -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 0x04070979 crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0x04101dc2 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x041059c8 filemap_read -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 0x046215df fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -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 0x0474673b crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x04748430 meson_clk_dualdiv_ops -EXPORT_SYMBOL_GPL vmlinux 0x04847508 mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x0498a6ce serdev_device_write_buf -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 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 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x05346944 xdp_return_frame_rx_napi -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 0x0558d427 ahci_start_engine -EXPORT_SYMBOL_GPL vmlinux 0x055aeffd skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy -EXPORT_SYMBOL_GPL vmlinux 0x05641313 imx_clk_hw_sscg_pll -EXPORT_SYMBOL_GPL vmlinux 0x056a27ab perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0x056d3ea3 clk_hw_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x056f6221 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x058032f9 devlink_port_unregister -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 0x05a41ab5 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x05aa48ea sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x05b5d9c7 __traceiter_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x05bdffc7 device_rename -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 0x05db6c2c lwtunnel_fill_encap -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 0x063e9296 rpi_firmware_put -EXPORT_SYMBOL_GPL vmlinux 0x06413cf9 md_start -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 0x0657f4ab sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0x066c95b9 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x06707038 dma_buf_dynamic_attach -EXPORT_SYMBOL_GPL vmlinux 0x0675f04c __bio_try_merge_page -EXPORT_SYMBOL_GPL vmlinux 0x06a20d82 fuse_dax_cancel_work -EXPORT_SYMBOL_GPL vmlinux 0x06a36e86 acpi_dev_get_property -EXPORT_SYMBOL_GPL vmlinux 0x06a9e685 fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x06c5de26 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06d5167c udp_abort -EXPORT_SYMBOL_GPL vmlinux 0x06dfe818 of_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode -EXPORT_SYMBOL_GPL vmlinux 0x07076fc4 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x071d26f0 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x0729887a led_set_brightness_sync -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 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 0x07727ce2 gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0x0783b658 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x0787a0b0 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x07a4d8f3 anon_transport_class_unregister -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 0x07b52e38 rtnl_unregister -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 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 0x07ebfee2 trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0x07efb70b vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x07f4acfc debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x07fe3288 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x07fef07e copy_user_highpage -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 0x08187819 lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0x08305573 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x08400f7a wp_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x084e3015 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x08525ab7 pingv6_ops -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 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 0x08c78cf7 offline_and_remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x08c9c031 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0x08e2f1fb inet_unhash -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 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x092c4ce8 dma_need_sync -EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str -EXPORT_SYMBOL_GPL vmlinux 0x093d0f2e uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x095f381b vcpu_load -EXPORT_SYMBOL_GPL vmlinux 0x0974b8d8 apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x0995dc9c device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x09a9222f iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09bdae7f unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x09d63265 list_lru_count_node -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 0x09fb44ba unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x0a115db2 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x0a13f0ec rtnl_get_net_ns_capable -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 0x0a463293 __tracepoint_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x0a4a119e __platform_create_bundle -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 0x0a9c2961 bio_add_zone_append_page -EXPORT_SYMBOL_GPL vmlinux 0x0aa3204c pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0ab058cf __netpoll_free -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 0x0aced6e7 dma_resv_get_fences -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 0x0b05dae2 inet_ehash_nolisten -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 0x0b19569a ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b3a3ed7 zynqmp_pm_fpga_get_status -EXPORT_SYMBOL_GPL vmlinux 0x0b49df92 dst_cache_get_ip4 -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 0x0b56e303 switchdev_handle_fdb_add_to_device -EXPORT_SYMBOL_GPL vmlinux 0x0b5a55f5 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x0b690f04 k3_udma_glue_tx_get_txcq_id -EXPORT_SYMBOL_GPL vmlinux 0x0b730b7d of_pci_dma_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x0b88f9de acpi_storage_d3 -EXPORT_SYMBOL_GPL vmlinux 0x0b8ebeae xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0x0baa4443 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x0baaa80d dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x0baaacea devlink_port_attrs_pci_sf_set -EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x0bb8e5a4 mtk_pinconf_bias_get_combo -EXPORT_SYMBOL_GPL vmlinux 0x0bb90b76 ip_route_output_tunnel -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 0x0bf32478 __SCK__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c14ffd9 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0c2c72d9 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c3e6241 k3_udma_glue_disable_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x0c4bfe7f nf_queue -EXPORT_SYMBOL_GPL vmlinux 0x0c511dd2 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x0c5d2640 of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0c914737 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x0c9e333f imx_pinconf_get_scu -EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister -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 0x0ce3dd73 bman_is_probed -EXPORT_SYMBOL_GPL vmlinux 0x0ce6def5 meson8_pmx_ops -EXPORT_SYMBOL_GPL vmlinux 0x0cf565bb device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0x0cf5694c fscrypt_mergeable_bio_bh -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 0x0d57a943 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x0d6e5ed6 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0x0d809be9 spi_controller_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0d8859d7 phy_package_leave -EXPORT_SYMBOL_GPL vmlinux 0x0d94c3fe ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0d9808ea pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0x0d9c9899 br_ip6_fragment -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 0x0dd6b370 xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0x0dd81d75 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0ddc7050 yield_to -EXPORT_SYMBOL_GPL vmlinux 0x0de3e416 blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0x0df0fb29 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x0df55c88 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x0df64300 led_classdev_notify_brightness_hw_changed -EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -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 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 0x0e56f47f perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0x0e5ade66 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x0e609c12 gpiochip_free_own_desc -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 -EXPORT_SYMBOL_GPL vmlinux 0x0e8a00bd md_find_rdev_rcu -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 0x0ec10a9c perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0x0ec46ef7 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x0ecf95ab xenbus_dev_resume -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 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 0x0f07e57f devlink_params_publish -EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0f1b50ea __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0f3c6212 evm_inode_init_security -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 0x0fa18a39 inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x0fa21e23 __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0fa2bf8c usb_set_device_state -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 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 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 0x0ff67e92 dma_buf_pin -EXPORT_SYMBOL_GPL vmlinux 0x1001b256 fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x10042ca1 clk_regmap_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x100e5a4c tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x100ff26b blk_mq_sched_mark_restart_hctx -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 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 0x109c9800 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x109e8d0a pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0x10cfe21b pci_find_ht_capability -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 0x11112193 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x11124987 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x111745d0 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0x112c5cab tegra210_clk_emc_attach -EXPORT_SYMBOL_GPL vmlinux 0x112e0d1a of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x113d3937 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x1153bf3c security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x1154c376 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x115ddcd3 kvm_get_kvm -EXPORT_SYMBOL_GPL vmlinux 0x1188e31d crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0x118f5968 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x11940e5b vp_modern_map_vq_notify -EXPORT_SYMBOL_GPL vmlinux 0x1198c591 platform_get_mem_or_io -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 0x11cd38eb usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init -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 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 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 0x128ec8be sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x12943d04 regmap_fields_read -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 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 0x132b4a7c devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x1345e975 dprc_get_obj -EXPORT_SYMBOL_GPL vmlinux 0x135ea7d9 usb_hcd_is_primary_hcd -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 0x137723c4 strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x137a4309 iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x137e0922 pci_host_common_remove -EXPORT_SYMBOL_GPL vmlinux 0x138320e3 clk_hw_unregister_mux -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 0x13c38f3e reset_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x13c694cd find_extend_vma -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 0x13dfb86b mmc_get_ext_csd -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 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x141fe7b2 ata_sff_lost_interrupt -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 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 0x146cc88f bpf_master_redirect_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x14737f48 nf_ipv6_ops -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 0x148fd794 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x1493c30b gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0x14b635b0 strp_process -EXPORT_SYMBOL_GPL vmlinux 0x14bc40bb dev_forward_skb -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 -EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x14efbbe8 __trace_array_puts -EXPORT_SYMBOL_GPL vmlinux 0x14ff117c fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x14ff6428 ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node -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 0x150ff604 devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x1522ef99 tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0x15261ecf fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x152a1a42 fib_rules_unregister -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 0x15550226 crypto_unregister_algs -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 0x1583aa23 hwpoison_filter -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 0x15b85c3f inet6_hash -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 0x15fe183b dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0x1605f24e dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0x160c1094 skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0x16107eaa devres_release -EXPORT_SYMBOL_GPL vmlinux 0x16173917 dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x161740e1 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x162c1e88 extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0x16320024 sock_diag_destroy -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 0x167d7113 acpi_bus_register_early_device -EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size -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 0x16b52bb6 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x16b72183 devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x16c4928b watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x16cdef4b lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put -EXPORT_SYMBOL_GPL vmlinux 0x16ded2d9 ip_route_output_key_hash -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 0x16f15139 bind_evtchn_to_irq -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 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 0x174c6274 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x175410a1 gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0x17591ecd zynqmp_pm_write_ggs -EXPORT_SYMBOL_GPL vmlinux 0x175d7c05 led_get_default_pattern -EXPORT_SYMBOL_GPL vmlinux 0x175da0eb __inet_twsk_schedule -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 0x1788b539 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x17962407 lochnagar_update_config -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 0x17c33a76 xfrm_output_resume -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 0x17efdeab ping_unhash -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 0x18137dac trace_array_init_printk -EXPORT_SYMBOL_GPL vmlinux 0x1815d0cf dev_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0x1817b294 pinctrl_utils_reserve_map -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 0x184b16fb trace_event_buffer_lock_reserve -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 0x187a2644 gpiod_set_config -EXPORT_SYMBOL_GPL vmlinux 0x1895f1c0 skb_tstamp_tx -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 0x18bcd7b0 virtqueue_get_vring_size -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 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x19032d6d trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x19071cb2 gnttab_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x19081a9d set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x1926028c zynqmp_pm_reset_assert -EXPORT_SYMBOL_GPL vmlinux 0x194223b5 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x19445d5c pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x195d95cc pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x195fc0bc is_swiotlb_active -EXPORT_SYMBOL_GPL vmlinux 0x19612d5b devm_ti_sci_get_resource -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 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19a39db6 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x19b0112b __traceiter_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x19c831ce netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x19ce2ec6 ip6_local_out -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 0x19f2385f uart_xchar_out -EXPORT_SYMBOL_GPL vmlinux 0x19f6e50a skb_zerocopy -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 0x1a3b5080 skb_append_pagefrags -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 0x1a93dc8b devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x1a9754cf sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0x1ab24b7c cgroup_get_e_css -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 0x1ac062a7 dax_iomap_rw -EXPORT_SYMBOL_GPL vmlinux 0x1acae73b devm_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0x1acb37a5 devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0x1acb41c5 alloc_empty_file -EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -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 0x1b3320f7 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x1b374b99 __dev_forward_skb -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 0x1b7f1062 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1b97d287 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x1ba67562 dev_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0x1baa2d87 to_software_node -EXPORT_SYMBOL_GPL vmlinux 0x1bad8469 sysfs_create_link -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 0x1bee4974 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x1bf783ef netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x1bfe0334 cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x1c0501c9 blk_add_driver_data -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 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c6de606 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x1c75500a usb_disable_lpm -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 0x1c99739f acpi_cppc_processor_exit -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 0x1ca79d91 pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0x1cab3798 nfs_ssc_client_tbl -EXPORT_SYMBOL_GPL vmlinux 0x1cb46c40 raw_abort -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 0x1cd37823 __raw_v4_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1cee9343 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x1d0f1539 skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0x1d14314a mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d309823 devm_phy_package_join -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 0x1d7cb588 dst_blackhole_mtu -EXPORT_SYMBOL_GPL vmlinux 0x1d92551e xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle -EXPORT_SYMBOL_GPL vmlinux 0x1d9c1c7d pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x1d9e7def ip6_flush_pending_frames -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 0x1ddff084 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x1de7a88c fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0x1df664f5 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm -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 0x1e424d61 user_preparse -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 0x1e58217a devlink_port_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x1e5d632b ip6_input -EXPORT_SYMBOL_GPL vmlinux 0x1e716449 umd_unload_blob -EXPORT_SYMBOL_GPL vmlinux 0x1e775a9a devlink_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e83fee6 HYPERVISOR_physdev_op -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 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 0x1ef0dc4a __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x1efeebfc xfrm_dev_resume -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 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 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 0x1f66f1dd sched_trace_rq_avg_dl -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 0x1fa000fe kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fb70eb9 gnttab_end_foreign_transfer_ref -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 -EXPORT_SYMBOL_GPL vmlinux 0x1ff19406 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x1ff8de5a crypto_stats_decompress -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 0x200fcf74 sock_map_destroy -EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_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 0x20c302bf cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x20c625f4 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x20c8afb7 iomap_dio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0x20d339f8 kvm_get_running_vcpu -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 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 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 0x2191715a mtk_mmsys_ddp_disconnect -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -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 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 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 0x22225898 virtio_break_device -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 0x22810267 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x229e4df6 ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x22a1c666 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x22a93a6e otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0x22cc15d7 fwnode_get_nth_parent -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 0x22e23403 __dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x22e2b489 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x22f1f92a __traceiter_neigh_event_send_done -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 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 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -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 0x239480fe fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -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 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 0x24008781 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x2417245b attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const -EXPORT_SYMBOL_GPL vmlinux 0x242afb24 devm_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x2432945c device_create_file -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 0x244d80bb ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x24575d77 pinctrl_lookup_state -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 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 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 0x24923ffc wait_on_page_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0x249aaad3 wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24bc9ef4 addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0x24d6479b perf_event_create_kernel_counter -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 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 0x25137035 bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0x2514444d skb_partial_csum_set -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 0x2541690c udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x2541d65c dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x254d053f devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x2551827d dst_cache_set_ip4 -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 0x25a7a73d sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x25ba4145 spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x25be3f4d skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0x25c0fb06 dev_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x25c4fbc0 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x25c8cc34 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x2600118a init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x260d98dc device_create -EXPORT_SYMBOL_GPL vmlinux 0x262572fe mmc_crypto_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x26301c4d inet_csk_addr2sockaddr -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 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x265aec8b regmap_get_val_endian -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 0x2685c705 user_read -EXPORT_SYMBOL_GPL vmlinux 0x2696fa1d pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x26982638 skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26c0a3db pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26cfb118 iterate_mounts -EXPORT_SYMBOL_GPL vmlinux 0x26d41f66 device_destroy -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 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 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 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 0x276b9ee1 phy_pm_runtime_put -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 0x2788d756 screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0x278e4bd0 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x27921a10 of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x27b1fb21 genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x27dd7e24 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x27e9572b __pm_relax -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 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x283341bd relay_open -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 0x286cc647 async_synchronize_cookie_domain -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 0x2895aded inet_csk_get_port -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 0x28bc9e27 rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x28c081a1 ping_getfrag -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 0x28f71166 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x2900a7c2 __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x290686b9 bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0x290c6539 nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x2914c3ed genphy_c45_read_mdix -EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine -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 0x29d76547 k3_udma_glue_tdown_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x29e7911b devlink_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0x29e853b7 sdio_set_host_pm_flags -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 0x2a293b07 dst_blackhole_redirect -EXPORT_SYMBOL_GPL vmlinux 0x2a37ea11 imx_clk_hw_frac_pll -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 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 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 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2abeadeb clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x2ae1689e zynqmp_pm_clock_getdivider -EXPORT_SYMBOL_GPL vmlinux 0x2b0765ca xen_store_interface -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 0x2b483796 ata_host_start -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 0x2b7e9987 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x2b948ccc mmc_regulator_get_supply -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 0x2b9a7840 gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0x2ba28574 devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0x2bae6958 scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0x2bb7466c ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x2bbf1454 badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0x2bc69f6f regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x2bdaa812 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x2bdca896 proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0x2bee5588 devlink_param_unpublish -EXPORT_SYMBOL_GPL vmlinux 0x2bf1706e devm_nvdimm_memremap -EXPORT_SYMBOL_GPL vmlinux 0x2bfcd7f3 tcp_bpf_update_proto -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 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 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2ca2e9bd devlink_net -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 0x2cbecbfc sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x2cc495c5 rpi_firmware_property_list -EXPORT_SYMBOL_GPL vmlinux 0x2ccf2644 tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0x2cd62d2f inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2cdd33d8 handle_untracked_irq -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 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 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 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 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 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 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 0x2e44bef1 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x2e471f42 blk_mq_flush_busy_ctxs -EXPORT_SYMBOL_GPL vmlinux 0x2e60dc08 devlink_dpipe_table_counter_enabled -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 0x2e6f4758 skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x2e7503f1 led_set_brightness_nopm -EXPORT_SYMBOL_GPL vmlinux 0x2e771069 __traceiter_sched_update_nr_running_tp -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 0x2eab8a03 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x2eb46bd6 kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x2eb9fbf2 __traceiter_sched_util_est_se_tp -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 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 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 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 0x2fea7fc9 ahci_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x2fedcd19 pinctrl_generic_get_group_count -EXPORT_SYMBOL_GPL vmlinux 0x2ff56eda of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x300d5b74 iommu_uapi_cache_invalidate -EXPORT_SYMBOL_GPL vmlinux 0x30118311 nvmem_cell_read_u8 -EXPORT_SYMBOL_GPL vmlinux 0x3020b060 cgrp_dfl_root -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 0x30601a3e platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3072a567 ping_rcv -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 0x30a878fb devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0x30b5cb32 __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x30ccc10a __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x30d5747b srcu_init_notifier_head -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 0x31238146 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x313574c8 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single -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 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 -EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x319c451b usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0x31a18fa7 tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0x31a7b657 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31bab934 blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0x31c079a7 crypto_skcipher_decrypt -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 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 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 0x322be93a dw8250_setup_port -EXPORT_SYMBOL_GPL vmlinux 0x324e364d __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x32542525 ahci_do_softreset -EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0x32704d63 rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x3275c195 synth_event_trace -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 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 0x32de82ac acpi_cppc_processor_probe -EXPORT_SYMBOL_GPL vmlinux 0x32e03da7 ahci_pmp_retry_srst_ops -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 0x32f571d9 sched_trace_rq_nr_running -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 0x333e5b95 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x33742e2d extcon_get_edev_name -EXPORT_SYMBOL_GPL vmlinux 0x3387b84c fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x338e4e42 of_genpd_remove_last -EXPORT_SYMBOL_GPL vmlinux 0x33952fb6 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x339ff68f skb_mpls_push -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 0x341269f9 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x3412eb97 vfs_submount -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 0x34407691 crypto_has_ahash -EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete -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 0x345cb558 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x3461cd16 netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x34670638 acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0x34686baa hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x347f6cf2 pm_genpd_opp_to_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x348d2bdd sdio_retune_crc_enable -EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x34ab5e33 fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0x34b355e5 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x34b96835 mtk_pinconf_drive_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x34f2284f of_property_read_variable_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split -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 0x35136cf9 sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0x351656ff devm_regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x3517a8d1 cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0x3519d401 bgmac_adjust_link -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 -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 0x352b9d4f serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -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 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 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 0x35c5cd59 imx_pinctrl_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x35c96cb0 get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0x35cc0d72 crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x35eb7a2a dbs_update -EXPORT_SYMBOL_GPL vmlinux 0x35ee88a9 i2c_dw_adjust_bus_speed -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 -EXPORT_SYMBOL_GPL vmlinux 0x360a27af blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x360b246f fscrypt_d_revalidate -EXPORT_SYMBOL_GPL vmlinux 0x3621b98d __traceiter_pelt_se_tp -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 0x36521c04 usb_find_alt_setting -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 0x366b8c58 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x3688c50b transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x36925221 mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -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 -EXPORT_SYMBOL_GPL vmlinux 0x373509e6 acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0x3738600c usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x373ef2da tpm_send -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 0x3775c25b k3_udma_glue_tx_cppi5_to_dma_addr -EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state -EXPORT_SYMBOL_GPL vmlinux 0x37882ea4 __udp4_lib_lookup -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 0x37b496e3 rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x37c36f88 devlink_flash_update_timeout_notify -EXPORT_SYMBOL_GPL vmlinux 0x37cedb82 sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0x37dfe705 tegra_xusb_padctl_legacy_remove -EXPORT_SYMBOL_GPL vmlinux 0x37e00980 pci_bridge_emul_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x37e77de4 dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x38045af5 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x381b5333 bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable -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 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 0x38511af7 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x385bc1d8 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x386307ec inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init -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 0x38c3ff30 freq_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x38cb3e3a watchdog_set_last_hw_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x38cf875f int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0x38e02e5e nf_queue_entry_get_refs -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 0x390b7bcb gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x3910df29 sdio_release_host -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 0x392f0803 dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0x394a108a fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0x397b2d9a gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x3991ce19 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x399eda0f sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout -EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 0x39b5d266 i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0x39c00d04 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x39c30489 platform_device_register -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 0x39c906af devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x39e88273 hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x39f8fd71 dev_pm_opp_get_suspend_opp_freq -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 0x3a41e49e transport_destroy_device -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 0x3a65b2bd nf_route -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 0x3a91f407 serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aa50129 sprd_pinctrl_remove -EXPORT_SYMBOL_GPL vmlinux 0x3aac202b ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x3aad35f0 dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -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 0x3b1877cd dma_free_pages -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 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b4cb037 ahci_reset_em -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 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 0x3b94a09a tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x3b9da303 bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3ba54d50 battery_hook_register -EXPORT_SYMBOL_GPL vmlinux 0x3baf9017 qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0x3bc37128 transport_configure_device -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 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 0x3bfb4535 devlink_region_snapshot_id_put -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 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply -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 0x3c4bea2f sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x3c4f401d dma_buf_map_attachment -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 0x3c7b1b9c devm_pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x3c8021e9 skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0x3c82ec68 spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0x3c86dfd1 phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x3c8a87b0 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x3c93e8f7 spi_res_release -EXPORT_SYMBOL_GPL vmlinux 0x3ca1048e __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x3ca3838a alloc_skb_for_msg -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 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 0x3cde21c8 dprc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x3cebeb03 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3cfdfc7e devm_i2c_add_adapter -EXPORT_SYMBOL_GPL vmlinux 0x3d0cb369 governor_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x3d1bf94c __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x3d1cff20 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x3d21d5a6 meson_pmx_get_func_name -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d421ac9 rio_mport_write_config_32 -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 0x3d60e44a usb_clear_halt -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 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 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 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 0x3dc45bbd sock_map_close -EXPORT_SYMBOL_GPL vmlinux 0x3dd6df90 debugfs_create_u32 -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 0x3e1b6aee __traceiter_sched_cpu_capacity_tp -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 0x3e2c1289 iommu_sva_unbind_gpasid -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 0x3e6ee29e __traceiter_pelt_dl_tp -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 0x3e7d045f inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x3e7f8f38 pm_schedule_suspend -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 0x3eaab4ec tty_port_register_device_attr_serdev -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 0x3edacb46 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x3ee21f7b sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x3eee7879 clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x3f36be6b __netpoll_cleanup -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 -EXPORT_SYMBOL_GPL vmlinux 0x3f7e2abf tpm_tis_resume -EXPORT_SYMBOL_GPL vmlinux 0x3f81d08e of_get_required_opp_performance_state -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 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 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 0x3fea029c hisi_clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x3fef496c unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x3ff5cdec pci_epc_init_notify -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 0x40171147 dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x40175f3d mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0x401acfcb switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x4027844d md_account_bio -EXPORT_SYMBOL_GPL vmlinux 0x4029f663 rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0x402e834f thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4044ca16 pkcs7_verify -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 0x40934ef6 serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x40a7bd78 fat_remove_entries -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 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 0x415de3c1 set_task_ioprio -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 -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 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 0x41d47df8 devlink_free -EXPORT_SYMBOL_GPL vmlinux 0x41d4948b uart_try_toggle_sysrq -EXPORT_SYMBOL_GPL vmlinux 0x41debc3a ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x41dfba4c tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -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 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 0x42237d0e ata_wait_register -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 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 0x428bfa03 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x429b5098 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x42a9ed6f device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0x42e9cd37 __traceiter_br_fdb_external_learn_add -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 0x431e15a2 blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x43206baa cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x432563b9 fib_rules_dump -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 0x4338c4a5 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x434f7ad7 rockchip_clk_of_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x43565f1c dm_copy_name_and_uuid -EXPORT_SYMBOL_GPL vmlinux 0x435850ca devm_gpiod_get_index_optional -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 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x43811478 irq_domain_update_bus_token -EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -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 0x43ece779 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x43edfa6c watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0x43f04fa5 phy_get -EXPORT_SYMBOL_GPL vmlinux 0x43f30833 rio_mport_class -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 0x4427ada2 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu -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 0x444f1735 cpu_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4452b510 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0x44533384 free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write -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 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 0x44d2518d bpf_trace_run9 -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 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x450d62bd bdev_disk_changed -EXPORT_SYMBOL_GPL vmlinux 0x451610f0 edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0x451728ff alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x4517484c l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault -EXPORT_SYMBOL_GPL vmlinux 0x4534186f tracing_cond_snapshot_data -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 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 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x457cb659 fsl_mc_bus_dpni_type -EXPORT_SYMBOL_GPL vmlinux 0x459ce3f3 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x45b33869 __traceiter_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x45bc87c6 xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x45bfcdff nfs42_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x45e8abae nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0x45ee0f2f pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x45ef8e79 crypto_stats_skcipher_encrypt -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 0x46182085 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x467c8343 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x467f3c3b device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4689229a devm_platform_get_and_ioremap_resource -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 0x46c5be22 clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x46d8af96 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x46e08c35 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x46e74b8b l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x46e8cf1f wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x470491b9 mtk_pinconf_adv_drive_get -EXPORT_SYMBOL_GPL vmlinux 0x470eae86 nfs_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4714c40c usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x471aa957 kvm_make_all_cpus_request -EXPORT_SYMBOL_GPL vmlinux 0x471c1d9c __traceiter_sched_util_est_cfs_tp -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 0x475855a5 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x47601211 platform_irqchip_probe -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x47774cac ata_bmdma_port_ops -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 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 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 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 0x4843a748 qman_portals_probed -EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier -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 -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 0x48ab4569 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x48adbf6e rpi_firmware_get -EXPORT_SYMBOL_GPL vmlinux 0x48b27902 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x48b27e29 led_update_brightness -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 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 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 0x4964040b crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x49659aca tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0x4977ef9d of_pci_range_parser_one -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 0x49d6adb7 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49eeadbe thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x49f29f90 devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x49f78b7b crypto_skcipher_setkey -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 0x4a1b462d xenbus_alloc_evtchn -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 0x4a5d8589 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x4a78b0aa icc_get_name -EXPORT_SYMBOL_GPL vmlinux 0x4ac30fc3 efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x4ad203ad uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x4aef00dd regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x4afd6f93 lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0x4afe6996 account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x4b008464 skb_segment_list -EXPORT_SYMBOL_GPL vmlinux 0x4b119d41 nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0x4b1ec174 clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x4b39352f iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0x4b4f0740 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x4b5837ac devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0x4b586933 pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x4b70d849 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4b7413ac devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x4b7a27f9 metadata_dst_alloc -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 0x4b99a65b devlink_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4b9bb7d4 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x4bacb91f phy_modify_mmd -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 0x4c0ee725 sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0x4c26a80a posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -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 0x4c685a7e gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x4c6e9ec4 thermal_remove_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x4c797f03 mtk_pinconf_drive_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x4c7e0c81 icc_nodes_remove -EXPORT_SYMBOL_GPL vmlinux 0x4c8a6799 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition -EXPORT_SYMBOL_GPL vmlinux 0x4c95867a firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4cbf7f3b serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4cc08e75 ethnl_cable_test_free -EXPORT_SYMBOL_GPL vmlinux 0x4ce8a9ed dst_cache_set_ip6 -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 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 0x4d3f88f5 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -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 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 0x4d8eed7f amba_bustype -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 0x4dc9e46d gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0x4dca0ced register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x4dcf4b64 sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x4de0d63c modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4de3e026 netdev_rx_handler_register -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 0x4e210170 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x4e269040 led_trigger_blink_oneshot -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 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 0x4e80e14a skb_mpls_dec_ttl -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 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 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 0x4f0f6930 of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update -EXPORT_SYMBOL_GPL vmlinux 0x4f260ddd __class_register -EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4f2e8d14 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x4f43e94c nvdimm_has_flush -EXPORT_SYMBOL_GPL vmlinux 0x4f53da60 dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0x4f57ac07 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x4f5c59e9 addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0x4f5ca226 bpf_prog_put -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 0x4fa1acd1 crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x4fa4eb4b device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x4fbc4b48 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x4fc0ff22 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x4fc7da1f blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x4fcf639a powercap_unregister_control_type -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 0x500c768c apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x502fda0d sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x50338882 blk_ksm_register -EXPORT_SYMBOL_GPL vmlinux 0x5035ce32 path_noexec -EXPORT_SYMBOL_GPL vmlinux 0x506b7b43 dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x506e9b25 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x5078fecc wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x50897585 iptunnel_xmit -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 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 0x510bb6e9 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x510db461 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0x511a6765 check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0x512c4c50 fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x513e7135 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x515b9f89 md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x5169344d k3_udma_glue_pop_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x516caf26 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x51825623 ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x5183271c dma_alloc_pages -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 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 0x52077c5d fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0x520d8178 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x52171a46 dev_pm_genpd_resume -EXPORT_SYMBOL_GPL vmlinux 0x521afc6e fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x5230a9dc fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0x52423f87 preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x524f768c blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0x5260aece vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x5262a817 imx_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0x52630157 fwnode_count_parents -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 0x52c1a283 devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace -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 0x52ffce04 ipv4_redirect -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 0x53556cc7 bpf_prog_inc_not_zero -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 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 0x5391f2c7 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0x53d13415 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x53e73ac1 fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x53ece9d7 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x545a476b free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x5487c115 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x549bcd59 tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put -EXPORT_SYMBOL_GPL vmlinux 0x54be80fa clk_hw_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0x54c656aa i2c_dw_probe_master -EXPORT_SYMBOL_GPL vmlinux 0x54ebaee3 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x54f1fcbd __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x5502e657 elv_unregister -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 0x551de6de iomap_ioend_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x552645c3 __traceiter_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x5527c5d6 fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput -EXPORT_SYMBOL_GPL vmlinux 0x55387233 irq_chip_request_resources_parent -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 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55701cf0 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x557d5c29 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x559d6369 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x55a9a413 device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0x55aa7a3a devm_acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x55af2479 bpf_trace_run3 -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 0x55db1ced skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x55e8f7c5 edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55f56b17 sched_trace_cfs_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0x55fc8d40 rdev_get_dev -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 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 0x5626aafa ahci_handle_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x562d2088 xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x564a908f skb_defer_rx_timestamp -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 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 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 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 0x56dad616 sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0x56db7daf regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x56e56ed1 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x57173f87 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x571828fc tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0x571f20c6 iommu_sva_alloc_pasid -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 0x5740b1fa fscrypt_prepare_new_inode -EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0x5746f35a spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x574a9b9f security_file_ioctl -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 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 0x577f8977 bpf_prog_free -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 0x57bd022c sysfs_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index -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 0x58057f54 serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0x58093631 bus_register -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 0x585e6831 _copy_from_iter_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x585ea56f tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0x5861bf60 usb_get_role_switch_default_mode -EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart -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 -EXPORT_SYMBOL_GPL vmlinux 0x588a5c1e inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0x589528e6 clk_hw_register_composite -EXPORT_SYMBOL_GPL vmlinux 0x589e2c82 fib_nh_common_release -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 0x58b9874e crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x58bea248 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x58d6a46b ipv4_sk_redirect -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 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 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 0x5930496c unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x593ec994 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x594c2224 srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0x597993d8 ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x59843d8b psil_set_new_ep_config -EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -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 0x59d0f386 bpf_prog_get_type_dev -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 -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 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 0x5a5922e2 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x5a640799 devfreq_event_is_enabled -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 0x5a9a85ff iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware -EXPORT_SYMBOL_GPL vmlinux 0x5aa92392 synth_event_gen_cmd_array_start -EXPORT_SYMBOL_GPL vmlinux 0x5ab04d7e crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5ab55d0f devlink_param_publish -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 0x5aced8d1 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x5ae26e06 __traceiter_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x5ae7bc9d ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x5aeac2a8 sched_trace_rq_cpu -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 0x5b03e782 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x5b0500e5 xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0x5b094e06 irq_gc_mask_set_bit -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 0x5b4d385c of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x5b5d6f2f is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b849db0 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x5b8dfa5f usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x5b9e782d trace_event_raw_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 0x5bba6faa i2c_acpi_find_bus_speed -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 0x5bcd6eb3 crypto_hash_walk_first -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 0x5be0a9d9 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x5be32f8b wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0x5bfb5a56 clk_hw_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x5c02cb94 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x5c04a90c power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x5c07cf26 relay_buf_full -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 0x5c169a41 skcipher_register_instance -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 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 0x5c7e7d52 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x5c84f8fc devlink_port_params_register -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 0x5cc2101a perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x5ccc1ac2 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x5cdae80f fscrypt_ioctl_get_nonce -EXPORT_SYMBOL_GPL vmlinux 0x5ce23df2 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5ce8bd0e crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x5cec6a59 __cpuhp_state_remove_instance -EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -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 0x5d340d68 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x5d3eae63 xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0x5d41c3ab ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x5d4b152f of_clk_hw_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x5d6716e8 balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x5d672647 crypto_register_aead -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 0x5dbd4549 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5dc6febf pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x5de412cd k3_ringacc_ring_push -EXPORT_SYMBOL_GPL vmlinux 0x5dfa9176 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x5e01f722 acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x5e069709 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x5e073f99 spi_res_add -EXPORT_SYMBOL_GPL vmlinux 0x5e0ca0ec fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0x5e123af2 vp_modern_config_vector -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 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 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 0x5e7df961 tcp_bpf_sendmsg_redir -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 0x5ef17092 kvm_write_guest_offset_cached -EXPORT_SYMBOL_GPL vmlinux 0x5f0391ed pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x5f0910e3 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x5f0e20f4 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5f0e3187 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x5f14abf3 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f30835d mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x5f331498 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x5f3dae80 of_pci_find_child_device -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 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f724e8f vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0x5f7b7af0 component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0x5f827160 serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0x5f87b22c call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x5f8cb3bf perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0x5f8ef299 blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0x5f927ffb sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point -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 0x5fdfcd57 __tracepoint_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x5fe03d8e usb_wakeup_enabled_descendants -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 0x6032a5ee crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem -EXPORT_SYMBOL_GPL vmlinux 0x60442822 phys_to_mach -EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x605d5bfa cache_line_size -EXPORT_SYMBOL_GPL vmlinux 0x6069ea77 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x606fb405 ti_sci_inta_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x607f8182 tcp_get_syncookie_mss -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 0x60a0ae5a xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60a5a474 gpiochip_irq_unmap -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 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 0x614adcb7 of_overlay_remove_all -EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0x616eef2b rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x617b026c hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x6187924f switchdev_bridge_port_unoffload -EXPORT_SYMBOL_GPL vmlinux 0x618b4b3a adp5520_write -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 0x61aa89eb tcpv6_prot -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 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 0x61f97112 mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x6219647b inet_twsk_put -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 0x6246a629 synchronize_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x624a06bf crypto_grab_spawn -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 0x62c17ce9 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x62d567e9 i2c_of_match_device -EXPORT_SYMBOL_GPL vmlinux 0x62ec26fb nf_hook_entries_insert_raw -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 0x632494c4 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x632b4b78 ahci_init_controller -EXPORT_SYMBOL_GPL vmlinux 0x6332d8e9 __clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x633398b2 iomap_invalidatepage -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 0x63672f31 sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0x636e55c7 device_match_name -EXPORT_SYMBOL_GPL vmlinux 0x637fb7f0 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x6392ce66 bpf_trace_run5 -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 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63d497a8 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63ffec29 devm_regmap_init_vexpress_config -EXPORT_SYMBOL_GPL vmlinux 0x64034667 pci_check_and_unmask_intx -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 0x641fcd11 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x6421436a gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x64255ff1 strp_init -EXPORT_SYMBOL_GPL vmlinux 0x6427572b tegra210_clk_emc_dll_enable -EXPORT_SYMBOL_GPL vmlinux 0x64301323 gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x643484a1 devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0x643b06b0 zynqmp_pm_clock_setrate -EXPORT_SYMBOL_GPL vmlinux 0x643efd35 devm_reset_controller_register -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 0x64661ab0 crypto_enqueue_request_head -EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x647e2f07 lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0x6485cd35 trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x649f3576 skcipher_walk_aead_encrypt -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 0x64c80ff8 iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0x64c84f7c clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x64c96cd5 devlink_remote_reload_actions_performed -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 0x64e27c4f synth_event_delete -EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x64f9086f strp_data_ready -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 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 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 0x65813c12 kvm_arch_ptp_get_crosststamp -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 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 0x65dbb55e aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache -EXPORT_SYMBOL_GPL vmlinux 0x65f7b129 cdrom_multisession -EXPORT_SYMBOL_GPL vmlinux 0x66066037 regulator_bulk_register_supply_alias -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 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 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 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 0x667a2bb9 devm_pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x668ae05d virtqueue_is_broken -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 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66cfedde pinmux_generic_remove_function -EXPORT_SYMBOL_GPL vmlinux 0x66d7b3d0 nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66df8abc power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x670465c9 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x67162b0d devm_phy_optional_get -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 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 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 0x67b195f3 trace_array_put -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 0x68078f6b led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x680a68d7 of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0x68196886 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x681c21b6 fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x6826a2a5 platform_bus -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 0x685a1b07 ip6_dst_lookup_flow -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 0x688cb72e __sock_recv_ts_and_drops -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 -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 0x68dad8f1 ethnl_cable_test_pulse -EXPORT_SYMBOL_GPL vmlinux 0x68f1a3d4 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x69019de9 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x6921a4b3 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x6928f177 bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0x692900e3 genphy_c45_loopback -EXPORT_SYMBOL_GPL vmlinux 0x6961283b trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle -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 0x69aa70a0 pci_epf_destroy -EXPORT_SYMBOL_GPL vmlinux 0x69b67e39 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr -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 0x69ff3ccb housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a0e2a6a css_next_descendant_pre -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 0x6a1bf4a2 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x6a22640e pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x6a282237 rio_request_inb_mbox -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 0x6a4fdd3f put_pid -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a93c9b2 zynqmp_pm_pinctrl_get_function -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 -EXPORT_SYMBOL_GPL vmlinux 0x6ab27578 regulator_list_voltage_pickable_linear_range -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 0x6aeb569f usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x6af28fa8 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x6b004daa __traceiter_devlink_trap_report -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 0x6b1ef048 sk_msg_is_readable -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 0x6b2fe6df imx_unregister_hw_clocks -EXPORT_SYMBOL_GPL vmlinux 0x6b376355 usb_for_each_port -EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0x6b3b8efd rtnl_af_unregister -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 0x6b7a4335 hyperv_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b834121 bman_portals_probed -EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value -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 0x6be06ae8 mtk_pctrl_show_one_pin -EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0x6be42170 gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0x6bec75e0 mmu_notifier_put -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 -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 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 0x6c70bba1 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x6c89bb1d bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0x6c91bbd8 bio_release_pages -EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6cad8cfa crypto_shash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x6cb0ce87 irq_get_percpu_devid_partition -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 0x6d04891d inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x6d04964a crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user -EXPORT_SYMBOL_GPL vmlinux 0x6d099602 bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d122d0d devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0x6d13ae12 __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x6d23b9d9 usb_queue_reset_device -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 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 0x6d5e09b4 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x6d6965dc usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d77f3b5 ip4_datagram_release_cb -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 0x6daf00a4 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dd0ae74 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6dda7361 bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0x6deb795a __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x6df93258 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x6e0985af hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0x6e0fcf51 lwtunnel_get_encap_size -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 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 0x6e9e35c0 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x6e9f203b dev_pm_set_dedicated_wake_irq -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 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 0x6efc732c tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x6f036407 fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0x6f03f307 device_property_read_u32_array -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 0x6f1dbae6 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f3717a3 regulator_unregister_supply_alias -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 0x6f61bf3b pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x6f65e925 cgroup_get_from_id -EXPORT_SYMBOL_GPL vmlinux 0x6f74131a gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x6f7cc47a ip6_sk_redirect -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 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 0x6fcd83db pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fcfc967 pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0x6fe02ea7 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x6fecd965 xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ff6c85a raw_seq_start -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 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 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 0x709cb640 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x709e2f4c dpbp_reset -EXPORT_SYMBOL_GPL vmlinux 0x70a95482 nvdimm_in_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x70ad7013 dm_report_zones -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 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 0x711e163f regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x712cb6eb trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x71327929 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x71447619 sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x714d3424 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x7169f309 sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0x7171e6f2 virtqueue_add_inbuf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x71737e3d pinctrl_select_state -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 -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 0x71e0719f devlink_region_snapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0x71e10986 skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0x71e33e31 irq_gc_set_wake -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 0x721ae182 __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x721bef10 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x72266126 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x7228061d mptcp_pm_get_local_addr_max -EXPORT_SYMBOL_GPL vmlinux 0x722c4d5e blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x72300328 icc_provider_del -EXPORT_SYMBOL_GPL vmlinux 0x723571d5 nf_ip_route -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 0x7256dadf rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x725b554d crypto_stats_aead_encrypt -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 0x726e4c78 firmware_kobj -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 0x7297eab6 irq_set_chip_and_handler_name -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 0x73036d81 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x730e41ea irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x73108d6c ip6_sk_update_pmtu -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 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 0x73465dfe __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x73585c8a dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0x736562db da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x736c9c68 security_path_truncate -EXPORT_SYMBOL_GPL vmlinux 0x737a212c irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0x7387aaf8 imx_check_clk_hws -EXPORT_SYMBOL_GPL vmlinux 0x738d3195 __traceiter_devlink_hwmsg -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 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73e64080 __pci_epf_register_driver -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 0x7433ce2a tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0x7436704d get_dev_pagemap -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 0x745ea89d debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7465e759 xenbus_probe_devices -EXPORT_SYMBOL_GPL vmlinux 0x746ad2bb regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0x747f7ab1 security_path_symlink -EXPORT_SYMBOL_GPL vmlinux 0x7487ec62 __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x74a22bb4 k3_udma_glue_push_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x74a8c74c kick_process -EXPORT_SYMBOL_GPL vmlinux 0x74a9b4f8 debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0x74aecb7e usb_string -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -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 0x74daee7d aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74f17d5e nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0x7501fef0 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x75076fd7 dm_bio_from_per_bio_data -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 0x755408fb udp_tunnel_nic_ops -EXPORT_SYMBOL_GPL vmlinux 0x755ac7f3 usb_hc_died -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 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x75a659fd ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x75a8bf38 fsl_mc_free_irqs -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 0x75f0e875 xas_store -EXPORT_SYMBOL_GPL vmlinux 0x75fa2cb3 mc_send_command -EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter -EXPORT_SYMBOL_GPL vmlinux 0x75fc1cb9 tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x75ff1c2b crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x75ff916c thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0x761e88be devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x7622e9a3 __tcp_send_ack -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 0x76538f6c spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove -EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key -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 0x76a724a0 aead_geniv_alloc -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 0x76c32215 pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x76cc64f1 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76e07631 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x76e26599 __put_net -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 0x7712771a unbind_from_irqhandler -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 0x772b0f64 __wake_up_pollfree -EXPORT_SYMBOL_GPL vmlinux 0x77328519 __netdev_watchdog_up -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 0x7769ddae kvm_irq_has_notifier -EXPORT_SYMBOL_GPL vmlinux 0x77858026 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x77867426 devm_device_remove_group -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 0x77d84a67 mtk_eint_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x77ded0b8 strp_done -EXPORT_SYMBOL_GPL vmlinux 0x77e2e759 perf_event_period -EXPORT_SYMBOL_GPL vmlinux 0x77e38cc1 icc_get -EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put -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 0x780e5502 crypto_stats_ahash_update -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 0x786cc698 fl6_update_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 -EXPORT_SYMBOL_GPL vmlinux 0x7896d6e7 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x78988403 tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x78a17a42 nd_region_dev -EXPORT_SYMBOL_GPL vmlinux 0x78a1cd04 __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x78a4c816 acpi_find_child_device -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 0x78d98ac6 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x78f698c0 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x790a48be alloc_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr -EXPORT_SYMBOL_GPL vmlinux 0x790d0dd5 of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x79214547 sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0x79220cf9 ip6_append_data -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 0x7943b3d9 xfrm_state_afinfo_get_rcu -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 -EXPORT_SYMBOL_GPL vmlinux 0x795afeb9 rockchip_pcie_get_phys -EXPORT_SYMBOL_GPL vmlinux 0x79601d95 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x7971babb acpi_dev_get_memory_resources -EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x798ce4e4 msg_zerocopy_realloc -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 0x79bc842c usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x79d5ab95 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x79d8393d devlink_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0x79d9905b virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e62642 ipv6_bpf_stub -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 0x7a14c853 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0x7a1954ce devlink_param_register -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 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 0x7a944007 rcu_idle_enter -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 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 0x7ad5252e skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x7ad61da4 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7add2d1a hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x7af7ea2a devlink_param_unregister -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 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 0x7b2899f7 fuse_dev_operations -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 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 -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 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 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 0x7bd28cb0 bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x7bd44dfa preempt_notifier_unregister -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 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 0x7c4987d9 __mdiobus_modify_changed -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 0x7c741242 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x7c80e4d9 of_icc_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x7c8ca979 __traceiter_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x7c93e187 of_platform_default_populate -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 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 0x7cb803de btree_grim_visitor -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 0x7cf146f4 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x7cff2483 devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d06f3ec fib_rules_register -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 0x7d471321 zynqmp_pm_pinctrl_release -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 0x7d891763 mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0x7d8e5240 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x7da03abb blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x7dba238a dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x7dbf114a extcon_unregister_notifier_all -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 0x7deaed8d netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x7deefcf4 synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0x7dfe134c device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x7e06fc1b usb_driver_claim_interface -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 0x7e5a7259 fib_alias_hw_flags_set -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 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 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 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 0x7f1e80c6 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x7f2288f4 sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0x7f27002b xdp_master_redirect -EXPORT_SYMBOL_GPL vmlinux 0x7f302c1a device_match_any -EXPORT_SYMBOL_GPL vmlinux 0x7f449422 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x7f63ca95 crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy -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 0x7faed45d gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0x7fb0d7f1 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x7fe16669 fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x7ff19c40 zynqmp_pm_set_requirement -EXPORT_SYMBOL_GPL vmlinux 0x7ffe3871 __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0x800be1f6 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x8011786f nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x80135182 k3_ringacc_ring_pop_tail -EXPORT_SYMBOL_GPL vmlinux 0x801971ac espintcp_queue_out -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 0x806327ea imx_clk_hw_cpu -EXPORT_SYMBOL_GPL vmlinux 0x80652feb rq_flush_dcache_pages -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 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 0x80bae236 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x80bdd7d6 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -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 0x80f23cd5 devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0x80f73ae4 cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8102cb84 acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x811ffa47 devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8120a30f devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x81274479 dpcon_enable -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 0x8180cede asn1_encode_sequence -EXPORT_SYMBOL_GPL vmlinux 0x819a9ea5 devlink_port_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit -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 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 0x81ee5b34 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x81ef78d0 of_get_named_gpio_flags -EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x82009f44 pin_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x8217dda1 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x8220a38e k3_ringacc_get_ring_id -EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings -EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 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 0x8273e6b2 tcp_reno_ssthresh -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 0x828e22f4 hrtimer_forward -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 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 0x82d3e39a ncsi_stop_dev -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 0x82d9b8fa tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x82fa88cb xen_dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0x8313298e __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x83202334 alloc_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0x83263f3b dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0x8328e685 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x832e0307 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x8331b9f9 dst_cache_get -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 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 0x835c7fb6 bgmac_alloc -EXPORT_SYMBOL_GPL vmlinux 0x837b6d8d fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x8381e11d __traceiter_pelt_thermal_tp -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 0x83be654f gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0x83c5044c __dma_request_channel -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 0x83f1405b irq_chip_set_vcpu_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x83f52a34 switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0x840b24d9 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x84141349 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x84153e1d gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x841acc1c kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x842ca5b1 __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x84360386 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x843d99ff phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0x8445108a receive_fd -EXPORT_SYMBOL_GPL vmlinux 0x844cb904 mtk_mutex_remove_comp -EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x84567ebc synth_event_create -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 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 0x84a0108c synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0x84a47f84 dpbp_get_attributes -EXPORT_SYMBOL_GPL vmlinux 0x84a4b372 devlink_port_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x84a7c80b devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert -EXPORT_SYMBOL_GPL vmlinux 0x84b0b5dc devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0x84b38e74 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x84b5aaaf devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0x84bdc1f2 devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x84cd552e fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0x84d2e34b sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x84d34d1f meson_clk_mpll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x84e792f0 regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x8506fd8e sk_attach_filter -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 0x85540ebc nvmem_cell_put -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 0x8581f86b pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find -EXPORT_SYMBOL_GPL vmlinux 0x858eb132 __traceiter_neigh_timer_handler -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 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 0x85d51b6a pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x85e7faab devm_otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial -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 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 0x864b0aef skb_to_sgvec_nomark -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 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 0x8692b616 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x8694e0c3 kobject_create_and_add -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 0x86c961b3 __set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x86d85838 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0x86e78ec1 uhci_check_and_reset_hc -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 0x87020833 pci_pr3_present -EXPORT_SYMBOL_GPL vmlinux 0x8706c31a irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x87157f46 nd_blk_memremap_flags -EXPORT_SYMBOL_GPL vmlinux 0x871dace4 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x871ee8f6 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x87325161 ahci_platform_init_host -EXPORT_SYMBOL_GPL vmlinux 0x87380d10 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x873f471b __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x873fd729 device_show_bool -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 0x876fbe0f nf_nat_hook -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 0x87a7abf0 __skb_get_hash_symmetric -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 0x87e8f70a clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0x87f5d1e3 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x8802cb1e led_classdev_unregister -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 0x8834a77a divider_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x883712cc ahci_print_info -EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -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 0x88a58fc1 skb_consume_udp -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 0x88c0e5c1 devlink_port_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x88cd7a9a k3_ringacc_ring_get_occ -EXPORT_SYMBOL_GPL vmlinux 0x88d1972a mpc8xxx_spi_tx_buf_u32 -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 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 0x891e564f ip_icmp_error_rfc4884 -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -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 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x8962eaa2 devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x896eb630 bd_prepare_to_claim -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 0x899bde25 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x89a4476d HYPERVISOR_multicall -EXPORT_SYMBOL_GPL vmlinux 0x89a4dcb2 pm_clk_remove_clk -EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key -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 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 0x8a177373 percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next -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 -EXPORT_SYMBOL_GPL vmlinux 0x8a4c9112 of_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x8a50ac5f trace_array_set_clr_event -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 0x8a80ad42 __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8a8f871c md_stop -EXPORT_SYMBOL_GPL vmlinux 0x8ab7433a sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8ada45e6 inet6_compat_ioctl -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 0x8b20f92a tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x8b3ab9b8 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x8b50510f extcon_get_extcon_dev -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 0x8b8719aa crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x8b91d0d6 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x8b967785 nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0x8b9cef07 pm_runtime_autosuspend_expiration -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 0x8bd838d6 ahci_platform_resume_host -EXPORT_SYMBOL_GPL vmlinux 0x8bda68ea to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x8bec0085 devlink_dpipe_table_register -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 0x8c0215f2 pm_system_wakeup -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 0x8c0eec82 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x8c262de5 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference -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 0x8c791ae7 crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0x8c8759fc ethnl_cable_test_result -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 0x8cb5a38e k3_udma_glue_rx_flow_disable -EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x8ced9878 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x8cfb4724 serdev_device_wait_until_sent -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 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 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 0x8d88b3fa devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x8d88ee64 sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x8d914cca wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0x8d9853c8 inet6_destroy_sock -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 0x8de6817a acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x8deaf3c2 find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0x8df41328 bgmac_enet_resume -EXPORT_SYMBOL_GPL vmlinux 0x8df93889 dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x8df94742 mmc_cmdq_enable -EXPORT_SYMBOL_GPL vmlinux 0x8e06b06f perf_tp_event -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 0x8e4b63a6 hisi_clk_register_gate_sep -EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free -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 0x8ea31007 pinctrl_find_gpio_range_from_pin_nolock -EXPORT_SYMBOL_GPL vmlinux 0x8ea37e5f rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x8eafc324 extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0x8ebf4234 netdev_rx_handler_unregister -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 0x8edc2c48 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0x8ee3ebbb tegra_bpmp_mrq_is_supported -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 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 0x8f522cc4 mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x8f549b5b blk_queue_set_zoned -EXPORT_SYMBOL_GPL vmlinux 0x8f5cd23a raw_seq_stop -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 0x8faa800d acpi_cpc_valid -EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x8fd4f390 security_inode_permission -EXPORT_SYMBOL_GPL vmlinux 0x8fd8de33 bpf_trace_run1 -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 0x9023ee14 pci_pri_supported -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 0x9058d71f xenbus_dev_fatal -EXPORT_SYMBOL_GPL vmlinux 0x905d346a ehci_suspend -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 0x909e102e serial8250_clear_and_reinit_fifos -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 0x90b763f1 HYPERVISOR_console_io -EXPORT_SYMBOL_GPL vmlinux 0x90ba3248 gnttab_foreach_grant_in_range -EXPORT_SYMBOL_GPL vmlinux 0x90c7edec __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x90d1cdb5 pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x90e64609 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0x90e6608c cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0x90ff4b1e bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x91017857 pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0x9116dae7 mtk_is_virt_gpio -EXPORT_SYMBOL_GPL vmlinux 0x912aae24 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x912e6015 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x913262a3 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x9134b1de dm_suspended -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 0x916d11ee lwtstate_free -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 -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 0x91dbf116 dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0x91df4c91 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist -EXPORT_SYMBOL_GPL vmlinux 0x91e3a68f crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean -EXPORT_SYMBOL_GPL vmlinux 0x91efdc8e devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x9203d3bc of_fwnode_ops -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 0x925444db __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x927487ea zynqmp_pm_read_ggs -EXPORT_SYMBOL_GPL vmlinux 0x9276967b ping_queue_rcv_skb -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 0x9299ef7a tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg -EXPORT_SYMBOL_GPL vmlinux 0x92bebfa3 __phy_modify -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 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 0x92ee10f7 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x92f2d408 tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0x930141d7 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x930ab533 k3_ringacc_request_ring -EXPORT_SYMBOL_GPL vmlinux 0x9313418e __traceiter_napi_poll -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 0x93460602 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9353cc89 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x936596a0 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x937bc75e pci_status_get_and_clear_errors -EXPORT_SYMBOL_GPL vmlinux 0x937d07fe iommu_aux_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x938f5ff8 dpbp_open -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 0x93d1d424 gnttab_free_grant_references -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 0x9425bb34 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack -EXPORT_SYMBOL_GPL vmlinux 0x94312b5e crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x943735ff devlink_resource_register -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 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 0x949b5176 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94a401db vfs_lock_file -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 0x94d8a29a i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0x94dd71af __srcu_read_unlock -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 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 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -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 0x952fb965 udp_destruct_common -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 0x955a7272 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init -EXPORT_SYMBOL_GPL vmlinux 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 0x959b5d87 skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x95af93df cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x95b05e13 bio_alloc_kiocb -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95bcb49d extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x95c9c4b0 __inet_inherit_port -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 0x95fb7503 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0x960019fe adp5520_read -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 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 0x966abe9e __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0x967e084a devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0x9692883c sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x96a8ac5a of_property_read_u64_index -EXPORT_SYMBOL_GPL vmlinux 0x96ad2021 subsys_system_register -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 0x96f9a01b __SCK__tp_func_pelt_thermal_tp -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 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x97168c56 ahci_platform_disable_phys -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 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 0x97b257de crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x97c81efc device_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x97cec52d find_get_pid -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 0x98058a2d fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x9831f649 crypto_unregister_shash -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 0x985df717 securityfs_remove -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 -EXPORT_SYMBOL_GPL vmlinux 0x987d3fcc pci_generic_ecam_ops -EXPORT_SYMBOL_GPL vmlinux 0x987e173b blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0x988e0930 edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0x988f26bf nvmem_cell_read_variable_le_u64 -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 0x98bb5fce devm_bitmap_alloc -EXPORT_SYMBOL_GPL vmlinux 0x98c14950 of_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x98de6d71 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x98e393ac tcp_register_congestion_control -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 0x9923a9d1 devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0x99255d61 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x9933ae87 usb_urb_ep_type_check -EXPORT_SYMBOL_GPL vmlinux 0x993521d8 fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0x9938e446 sch_frag_xmit_hook -EXPORT_SYMBOL_GPL vmlinux 0x993c47fe scsi_free_sgtables -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 0x9996cb4d dprc_open -EXPORT_SYMBOL_GPL vmlinux 0x99a36873 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x99ba705a trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x99db25ff usb_of_get_interface_node -EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x99ecdaf9 acpi_create_platform_device -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 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 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 0x9a987867 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x9aa5c75a of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0x9aa91f4f perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x9aac3e78 irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9acabd14 sched_trace_cfs_rq_avg -EXPORT_SYMBOL_GPL vmlinux 0x9ad66ad7 blk_mq_alloc_sq_tag_set -EXPORT_SYMBOL_GPL vmlinux 0x9ad964b3 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x9ae21c8e tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -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 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 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 0x9b5e0785 bpf_prog_select_runtime -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 -EXPORT_SYMBOL_GPL vmlinux 0x9b7f04e5 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill -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 0x9bc47111 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9bdbdcf0 __traceiter_neigh_update_done -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 0x9c0efe61 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x9c149893 ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x9c234df4 usb_hub_find_child -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 0x9c4eca37 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0x9c51b078 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x9c60c744 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x9c6987e4 input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0x9c6d4d5c skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -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 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 0x9cee993e dev_pm_opp_adjust_voltage -EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -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 0x9d268d8c gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x9d2e4c80 validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x9d3ab31d sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x9d43b9f8 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x9d462cf9 pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0x9d4ac374 sched_setattr_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x9d5eb33d __fsl_mc_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x9d79fd82 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x9d7a4466 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x9d8847b9 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x9d8f8241 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x9db2f108 ata_host_put -EXPORT_SYMBOL_GPL vmlinux 0x9dba1889 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x9dc15364 __devm_clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x9dd827dd debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0x9de23ea8 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL vmlinux 0x9df5574d __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x9df709e3 __traceiter_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps -EXPORT_SYMBOL_GPL vmlinux 0x9e047ec0 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x9e1a4030 pm_generic_resume_noirq -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 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e60dde9 dev_pm_opp_unregister_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x9e76d5f8 dpcon_disable -EXPORT_SYMBOL_GPL vmlinux 0x9e78159f pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x9e8a00f5 dst_blackhole_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x9e9260a0 dax_layout_busy_page_range -EXPORT_SYMBOL_GPL vmlinux 0x9e9a67c7 xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event -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 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 0x9f06d4cf __netif_set_xps_queue -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 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 0x9f66926f of_find_spi_device_by_node -EXPORT_SYMBOL_GPL vmlinux 0x9f6767dc devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0x9f76df61 sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x9fa0c826 __blk_mq_debugfs_rq_show -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 0x9fdc7f83 spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ffbaa6a switchdev_handle_port_obj_add -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 0xa00bac25 xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa026ba92 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xa027526d xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0xa02cb537 iomap_releasepage -EXPORT_SYMBOL_GPL vmlinux 0xa04675e4 synth_event_add_next_val -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 0xa07d80e7 of_phandle_iterator_next -EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xa0923ec5 blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0xa0994a58 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0xa0a07dcd __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0xa0a660b8 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0xa0b972aa mmc_pwrseq_unregister -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 0xa0e1e364 tcp_done -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 0xa137ef9c sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0xa13be21d nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0xa147eb07 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xa149775c device_get_child_node_count -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 -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 0xa1aa55e8 phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0xa1c130f7 set_online_page_callback -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 0xa1da59b8 fwnode_gpiod_get_index -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 0xa276b6e4 usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0xa27a86f4 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0xa27d6511 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0xa29129b4 __traceiter_xdp_exception -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 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 0xa2f7487f hv_is_hibernation_supported -EXPORT_SYMBOL_GPL vmlinux 0xa30d3bb6 generic_device_group -EXPORT_SYMBOL_GPL vmlinux 0xa3167b2f crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0xa31c5b25 l3mdev_table_lookup_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa321fd68 devm_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0xa325f743 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xa3271bad devlink_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa329a8c3 acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0xa3300e5e is_transparent_hugepage -EXPORT_SYMBOL_GPL vmlinux 0xa3462f4b usb_hcd_unlink_urb_from_ep -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 -EXPORT_SYMBOL_GPL vmlinux 0xa3843f71 paste_selection -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 0xa38c43c4 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xa3931c0d usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a3978c kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3bc014c lwtunnel_xmit -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 0xa3fedb86 icc_set_bw -EXPORT_SYMBOL_GPL vmlinux 0xa3ffe468 phy_led_triggers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0xa404af5a md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa4056195 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xa40811c9 crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa42518a0 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0xa4437b6f pid_nr_ns -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 0xa4621d48 switchdev_handle_fdb_del_to_device -EXPORT_SYMBOL_GPL vmlinux 0xa468e0a9 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa46da624 dm_table_set_type -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 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 0xa4ba6ddd tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string -EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0xa4c68995 dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0xa4c80e79 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0xa4df75ee tty_port_link_device -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 0xa517f884 tegra210_plle_hw_sequence_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa522c586 gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa54fa838 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0xa5561cd4 sdio_writesb -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 0xa56bc9dc xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xa57b2c0f ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0xa57cdc1f pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0xa5812037 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0xa59aeb30 meson_eeclkc_probe -EXPORT_SYMBOL_GPL vmlinux 0xa5af45bc scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xa5b1e575 netlink_remove_tap -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 0xa5cc0ea2 ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa5d3f8cc nf_queue_entry_free -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 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 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 0xa66e2337 dpcon_set_notification -EXPORT_SYMBOL_GPL vmlinux 0xa67d5372 badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name -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 -EXPORT_SYMBOL_GPL vmlinux 0xa6afaf3b mptcp_subflow_init_cookie_req -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 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 0xa6d7ec8f ip_fib_metrics_init -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 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 0xa6fb164e devlink_trap_policers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -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 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 0xa760c60e mark_page_dirty_in_slot -EXPORT_SYMBOL_GPL vmlinux 0xa76ee466 rio_add_net -EXPORT_SYMBOL_GPL vmlinux 0xa76f4343 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xa777e724 platform_device_unregister -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 0xa7ac1e94 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0xa7c48ab3 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0xa7c4e143 pci_host_common_probe -EXPORT_SYMBOL_GPL vmlinux 0xa7c6a286 of_reserved_mem_device_init_by_idx -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 0xa81d88ed thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xa835120a meson_clk_mpll_ops -EXPORT_SYMBOL_GPL vmlinux 0xa83628e4 devlink_reload_enable -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -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 0xa896970d pm_genpd_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xa8a5712c rio_mport_write_config_8 -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 0xa8d974cc hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0xa8dc3704 sk_msg_alloc -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 0xa92ffefd regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa94e72ac devm_ti_sci_get_of_resource -EXPORT_SYMBOL_GPL vmlinux 0xa952c337 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0xa9664167 balloon_page_enqueue -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 0xa99b8e70 __SCK__tp_func_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0xa99cf81c inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa99ff233 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0xa9b813be __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0xa9b888e7 crypto_grab_shash -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 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 0xaa3095cd crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xaa36a34c sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0xaa3812ad crypto_stats_get -EXPORT_SYMBOL_GPL vmlinux 0xaa4c1ecb ahci_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xaa508ad1 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xaa5d56c7 __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xaa60273a devm_memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa768eaf __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0xaa825aed of_genpd_add_provider_simple -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 0xaaa918c9 ftrace_dump -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 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 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 0xab23c53d xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xab3f573e uhci_reset_hc -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 0xab57a5f1 inet6_cleanup_sock -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 0xab9bd884 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xababb96d class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xabb7b440 md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0xabbf5fdf bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabd45848 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xabeaaba6 devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0xabf06e66 devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0xac03d8c7 phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0xac4b43c9 devm_tegra_memory_controller_get -EXPORT_SYMBOL_GPL vmlinux 0xac4c934b fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0xac651e8d bio_end_io_acct_remapped -EXPORT_SYMBOL_GPL vmlinux 0xac7481ed fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0xac82e770 inet6_sock_destruct -EXPORT_SYMBOL_GPL vmlinux 0xac859009 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0xac90b60c pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xacca2d17 nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xacd488d2 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0xacde63d0 icmp_build_probe -EXPORT_SYMBOL_GPL vmlinux 0xacf01f5c devm_pinctrl_register -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 0xad18b91c ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0xad1aa4aa blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0xad1bb716 usb_put_hcd -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 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 0xad4e6259 remove_cpu -EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init -EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -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 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 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 0xadc9e589 dev_pm_opp_put_prop_name -EXPORT_SYMBOL_GPL vmlinux 0xadcc268d dpcon_get_attributes -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 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 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 0xae65fcb9 lwtunnel_build_state -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 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae7e8288 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0xae97c841 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0xaeaf9408 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0xaeb92309 ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0xaebdccb9 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0xaec3f747 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0xaec777ed udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xaed04b47 irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xaed0c0e9 strp_stop -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 0xaee02c38 devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0xaeeaf51a skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0xaeeb9a4d xenbus_dev_is_online -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 0xaf348da7 cpu_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xaf3649b7 iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0xaf38bef9 ipv6_recv_error -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 0xaf5b624f __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0xaf603462 regmap_field_read -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 0xaf9ee918 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn -EXPORT_SYMBOL_GPL vmlinux 0xafb07b09 d_walk -EXPORT_SYMBOL_GPL vmlinux 0xafc09279 blkcg_print_blkgs -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 0xb0099f79 topology_clear_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xb00a469d crypto_remove_spawns -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 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 0xb049a294 __SCK__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xb049b8f4 kvm_vcpu_map -EXPORT_SYMBOL_GPL vmlinux 0xb04ed6d1 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0xb05b68d5 zynqmp_pm_reset_get_status -EXPORT_SYMBOL_GPL vmlinux 0xb06a3c30 dm_internal_resume_fast -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 0xb0c23bd0 devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0xb0cabb91 pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0d3a35a __kthread_should_park -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 0xb0fd57fa fib_nl_newrule -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 0xb1192497 apply_to_existing_page_range -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 0xb122a982 devlink_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0xb124de18 ping_err -EXPORT_SYMBOL_GPL vmlinux 0xb13f7c3e sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0xb14032a2 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0xb15e43b8 get_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb16574a9 blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0xb181f878 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb1a5f5f4 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c7319a gpiochip_get_desc -EXPORT_SYMBOL_GPL vmlinux 0xb1d4bf6b devm_mbox_controller_unregister -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 0xb217714d perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -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 -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 0xb28675ff i2c_client_type -EXPORT_SYMBOL_GPL vmlinux 0xb292df2c power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xb2b094f5 acpi_device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb3161ea7 irq_domain_translate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xb31aebc7 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xb331aea0 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb34478d4 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xb3554cbc led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb36a98ff dev_pm_set_dedicated_wake_irq_reverse -EXPORT_SYMBOL_GPL vmlinux 0xb384c532 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0xb3b3c5ae crypto_comp_decompress -EXPORT_SYMBOL_GPL vmlinux 0xb3c3fe4b iommu_present -EXPORT_SYMBOL_GPL vmlinux 0xb3e4d765 i2c_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0xb3fdb1bf device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xb3feae9c clkdev_create -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 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 0xb461b2b0 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xb4638a6b subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0xb4645afb bpf_map_inc_with_uref -EXPORT_SYMBOL_GPL vmlinux 0xb466e367 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xb46b63d7 nl_table -EXPORT_SYMBOL_GPL vmlinux 0xb474bc15 devlink_resource_occ_get_unregister -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 0xb4cb4ee4 fib6_get_table -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 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb4ee4e80 netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0xb4f19a0b nvdimm_bus_unregister -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 0xb54b222b ncsi_start_dev -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 0xb5664cf2 bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0xb56d8b5b usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0xb56f56ca crypto_stats_akcipher_encrypt -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 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 0xb5b94fad __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0xb5dab3fb divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xb5eb9b68 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xb5f8de25 platform_device_add_data -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 -EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device -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 0xb658944a blk_ksm_update_capabilities -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 0xb6904cd6 devlink_param_driverinit_value_get -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 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 0xb71130ac tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0xb71733d1 usb_get_maximum_ssp_rate -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 0xb773efc3 mptcp_pm_get_add_addr_accept_max -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 0xb79b6e49 scmi_protocol_register -EXPORT_SYMBOL_GPL vmlinux 0xb7a2fb7a ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -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 0xb7b196c7 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb7b4196f devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0xb7c22bf1 relay_close -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 0xb7e8cb9e regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xb8039373 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xb8062186 udp_cmsg_send -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 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 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 0xb880451e scmi_protocol_unregister -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 0xb8b8c4f0 ti_sci_release_resource -EXPORT_SYMBOL_GPL vmlinux 0xb8bc8b41 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xb8bf056e kthread_data -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 0xb8f52740 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xb9017567 rio_local_set_device_id -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 0xb9256736 of_icc_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0xb9449b46 regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xb94a8bd7 bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0xb95a5d30 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0xb99f9c9f gov_attr_set_get -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 -EXPORT_SYMBOL_GPL vmlinux 0xb9bf8d05 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index -EXPORT_SYMBOL_GPL vmlinux 0xb9c37d50 fib_info_nh_uses_dev -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 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 0xb9fe6a74 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns -EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xba27275a aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba3b6504 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0xba3c940d call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0xba9c5e99 fuse_get_unique -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 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 0xbae2d34e raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0xbae9a83f usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xbaf19a78 __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu -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 0xbb16d62a xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0xbb2187e0 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xbb3448e3 trace_event_buffer_commit -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 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 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 0xbc0c89f6 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0xbc0df7d8 do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0xbc23bfb3 rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0xbc272e50 class_interface_unregister -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 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 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcd859a9 msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0xbcd93774 bpf_sk_storage_diag_put -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -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 0xbd18e27a pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xbd27a536 do_tcp_sendpages -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 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 0xbd651eba gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0xbd7491a6 platform_msi_domain_free_irqs -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 0xbda9c37e trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported -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 0xbdc8f310 fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0xbdecaa7b efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0xbe04dc54 ip6_route_output_flags_noref -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 0xbe3a0349 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xbe494b96 device_store_ulong -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 0xbe71ddc6 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xbe76136c blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0xbe76450d crypto_alloc_skcipher -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 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 0xbec2066a tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xbec6adec kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xbec89c34 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0xbed1377f wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xbeddf2b1 nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xbeef4dd0 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xbef3ad54 amba_device_put -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 0xbf33df7c kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xbf351e9e gfn_to_memslot -EXPORT_SYMBOL_GPL vmlinux 0xbf3534b6 of_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xbf588625 devm_clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xbf5da26e crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0xbf65ffb3 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xbf8b2936 switchdev_handle_port_attr_set -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 0xbfb80c77 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfc5c0cb sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0xbfc64648 crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0xbfc9b3df meson_clk_pll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xbfe50896 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp -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 0xc022fd30 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0xc024f5f3 cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0xc02dd9ae crypto_unregister_skcipher -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 0xc06b47a9 inet6_sk_rebuild_header -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 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 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 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 -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 0xc0c5ab7f inet6_lookup_listener -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 0xc0e778b9 __skb_tstamp_tx -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 -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 0xc12e8b10 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xc12fd58b pm_runtime_force_resume -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 0xc14f4cfb crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xc14fc6b6 efivar_entry_get -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 0xc18a77cf spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc1968c3a clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xc198e7bf tps6586x_irq_get_virq -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 0xc1d1839f crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0xc1d293fb bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xc1dce028 k3_udma_glue_reset_tx_chn -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 0xc21f0c77 icc_node_create -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -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 0xc268851b mptcp_token_get_sock -EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xc2771758 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xc27d2de4 dev_get_tstats64 -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 0xc2b9773a __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xc2bda5a7 spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0xc2beb847 __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2cf6b0b get_current_tty -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 0xc2e6111a blk_trace_remove -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 0xc308d312 netdev_set_default_ethtool_ops -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 0xc32d7cbb ip6_route_output_flags -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 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 0xc35ff11c __traceiter_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0xc3669826 synth_event_trace_array -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 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 0xc395fc3f pinconf_generic_parse_dt_config -EXPORT_SYMBOL_GPL vmlinux 0xc39ab3a0 usb_control_msg_recv -EXPORT_SYMBOL_GPL vmlinux 0xc3a63ad8 __traceiter_neigh_event_send_dead -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 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 0xc4045e90 perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0xc4249886 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc43ab2f5 rio_attach_device -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 0xc45e920b raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -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 0xc4a72936 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xc4aae833 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0xc4ae4328 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0xc4b5a900 synchronize_srcu_expedited -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 0xc4d9c658 inet_csk_route_child_sock -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 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 0xc51495de trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0xc531a474 fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0xc5409a8f pci_epc_raise_irq -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 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 0xc5797f42 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy -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 0xc5f828f5 devlink_register -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 0xc60441de inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc621bb43 sched_trace_rd_span -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 -EXPORT_SYMBOL_GPL vmlinux 0xc662ecda __tracepoint_br_fdb_external_learn_add -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 0xc6859145 fsnotify_add_mark -EXPORT_SYMBOL_GPL vmlinux 0xc69048a7 dma_buf_vmap -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 0xc6ae7c9b irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0xc6aeb634 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0xc6dd3709 metadata_dst_free_percpu -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 -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 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc7293229 l3mdev_ifindex_lookup_by_table_id -EXPORT_SYMBOL_GPL vmlinux 0xc7359311 tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0xc7401c60 k3_ringacc_ring_cfg -EXPORT_SYMBOL_GPL vmlinux 0xc766e385 __clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xc76f8048 __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0xc775eb81 serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xc78ae4d1 __traceiter_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xc78d2630 crypto_grab_ahash -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 0xc7e64fc2 asn1_encode_integer -EXPORT_SYMBOL_GPL vmlinux 0xc7e70b25 ata_port_wait_eh -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 0xc8121593 dpcon_close -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 0xc846f54a crypto_register_algs -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 0xc86bf03e sk_msg_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xc87dd725 k3_udma_glue_pop_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xc89542e5 fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0xc89e6b3d alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0xc8a9c8c4 trace_get_event_file -EXPORT_SYMBOL_GPL vmlinux 0xc8ad9fbc get_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0xc8c47ed7 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xc8c6902d auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8e45f33 bind_interdomain_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xc8e9556b ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0xc90c330c bgmac_enet_probe -EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero -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 0xc9561772 fb_destroy_modelist -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 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc9973393 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0xc99e3e03 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xc9a88d1f inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xc9aefbc7 proc_create_net_data -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 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 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 0xca2f30f4 iommu_aux_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds -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 0xca8baa65 pci_find_vsec_capability -EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0xca9ee779 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xcaa7a803 ahci_do_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xcaafb0ee fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0xcab213cb mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcacaab95 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcad3217f dprc_set_obj_irq -EXPORT_SYMBOL_GPL vmlinux 0xcae7ce5d fsl_mc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xcae87d5c find_vpid -EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xcaf79a92 ahci_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xcafc8ec7 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcafd1ca5 tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0xcb071c60 vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -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 0xcb458558 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0xcb4e105a gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -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 0xcb922e6b bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0xcb9cdf7c spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0xcbbe46cd ping_close -EXPORT_SYMBOL_GPL vmlinux 0xcbc2b9f3 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0xcbc7d7d4 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xcbcc5827 relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0xcbd68752 ncsi_register_dev -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 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 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 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc67ecdc devm_rpi_firmware_get -EXPORT_SYMBOL_GPL vmlinux 0xcc721d87 blk_trace_setup -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 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 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 0xccdd628b bpf_trace_run8 -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 0xcd025a6a dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0xcd0a139c fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0xcd0c046c inet6_lookup -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 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 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 0xcd7b3807 crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0xcd8070cb sched_trace_rq_avg_irq -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 0xcd993775 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcd9e9aac usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0xcda2aaba k3_udma_glue_tx_dma_to_cppi5_addr -EXPORT_SYMBOL_GPL vmlinux 0xcda68ba2 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xcda7aaee tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0xcdabf365 i2c_dw_validate_speed -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 0xcdcb9fa1 blkdev_zone_mgmt -EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency -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 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 0xce2317be devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0xce316d7e zynqmp_pm_set_sd_tapdelay -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 0xce7b2a80 devm_hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0xce7f6ee2 mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xce84b67b devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0xce948e89 of_irq_to_resource -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 -EXPORT_SYMBOL_GPL vmlinux 0xcec0e6dd ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xceceeb7b xenbus_watch_path -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 0xceed8c16 __set_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xcef6f857 dma_request_chan_by_mask -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 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 0xcf6810d2 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0xcf685782 regulator_sync_voltage -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 0xcfab4160 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xcfba6bfe acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0xcfc7f497 dev_fill_forward_path -EXPORT_SYMBOL_GPL vmlinux 0xcfcfc130 pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xcfecc85e xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0xcff111ec clk_divider_ro_ops -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 0xd004d6db tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xd00cfdea dev_pm_opp_of_find_icc_paths -EXPORT_SYMBOL_GPL vmlinux 0xd023f0d8 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op -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 0xd0484318 pskb_put -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 0xd0741d77 devm_pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd08b2d3e ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type -EXPORT_SYMBOL_GPL vmlinux 0xd09a814a dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0xd0b6cac1 bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xd0d6f1da devlink_trap_groups_unregister -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 0xd0ff648b pinmux_generic_add_function -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 0xd1481de7 mpi_clear -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 0xd17d2a22 phy_basic_features -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 0xd1956c33 lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd1981fc8 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xd1ad7de8 xenbus_unmap_ring_vfree -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 0xd1dc851f bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0xd1f1374b usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1f37687 dax_iomap_fault -EXPORT_SYMBOL_GPL vmlinux 0xd1fac1e9 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xd2035ed5 __traceiter_tcp_send_reset -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 0xd229275b spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xd23b5168 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource -EXPORT_SYMBOL_GPL vmlinux 0xd2485ff4 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd248a8d1 simple_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init -EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0xd2635048 dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0xd267408f pci_epc_set_msi -EXPORT_SYMBOL_GPL vmlinux 0xd270e977 pci_bridge_emul_conf_write -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 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 0xd2f3909c get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0xd2f3dbd3 mtk_hw_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd30d197e fsverity_ioctl_read_metadata -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 0xd326a7f0 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xd32d769e iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xd3314281 unmap_mapping_pages -EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed -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 0xd3a6282d synth_event_trace_start -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 0xd3ecda9c mptcp_pm_get_add_addr_signal_max -EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage -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 0xd426dbc4 erst_get_record_count -EXPORT_SYMBOL_GPL vmlinux 0xd42c55b7 balloon_page_dequeue -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 -EXPORT_SYMBOL_GPL vmlinux 0xd456d16f irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xd467fe17 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xd46ab5af skb_copy_ubufs -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 0xd49126c2 devm_namespace_disable -EXPORT_SYMBOL_GPL vmlinux 0xd491bb12 crypto_unregister_instance -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 0xd4e6d7e0 linear_range_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd4f00dd1 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf -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 0xd55ab707 gnttab_dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -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 0xd582dca9 lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0xd599d181 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -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 0xd5c27b2f bgmac_phy_connect_direct -EXPORT_SYMBOL_GPL vmlinux 0xd5cacd8d led_trigger_read -EXPORT_SYMBOL_GPL vmlinux 0xd5ff5bb4 devm_clk_register -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 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd659287a dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xd6676ea2 __class_create -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 0xd69208eb efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0xd692847e cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd6a0bb31 clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xd6abb5c2 __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd6b10757 crypto_spawn_tfm -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 0xd6f52a5f dpcon_reset -EXPORT_SYMBOL_GPL vmlinux 0xd6f93254 blk_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0xd70dbf3b rio_mport_send_doorbell -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 0xd739923a skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd73b1de5 xfrm_audit_state_icvfail -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 -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -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 0xd7a19088 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0xd7b5dfee xas_split -EXPORT_SYMBOL_GPL vmlinux 0xd7b7fb80 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0xd7b8b808 dst_cache_get_ip6 -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 0xd7cea889 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xd7fddb52 xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0xd81402a5 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xd83140d0 of_css -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 0xd8600960 acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0xd86f85ee skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xd87650aa devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xd87b3c90 devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd887bdf6 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0xd88a475c crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0xd89615d3 badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0xd89f57f0 crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0xd8a4c606 devfreq_cooling_em_register -EXPORT_SYMBOL_GPL vmlinux 0xd8d64f17 fib_rule_matchall -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 0xd8f1b1af fsl_mc_driver_unregister -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 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 0xd936a8ca power_supply_get_property_from_supplier -EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0xd9445914 edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0xd9462b1d xfrm_local_error -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 0xd97b2d51 sched_trace_rq_cpu_capacity -EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0xd9a3d0a3 ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0xd9adc812 ip6_dst_lookup_tunnel -EXPORT_SYMBOL_GPL vmlinux 0xd9aed3fc dax_copy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xd9b60647 pci_dev_trylock -EXPORT_SYMBOL_GPL vmlinux 0xd9d20b8b rio_alloc_net -EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0xd9e343de devm_gpiod_unhinge -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 0xda4cefa6 tcp_sendmsg_locked -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 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 0xdaaae274 spi_controller_dma_unmap_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdad48d19 fuse_direct_io -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 0xdb070944 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xdb2b2ed4 pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0xdb2ccbdf ata_host_suspend -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 0xdb5f1e0d skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb717f0e pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0xdb75900d bpf_prog_destroy -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 0xdbc2a9d5 device_for_each_child -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 -EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency -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 0xdbf48fc8 sk_msg_free -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 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 0xdc4b3dd5 __traceiter_block_split -EXPORT_SYMBOL_GPL vmlinux 0xdc4dbc0e sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0xdc526731 scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -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 0xdc8f5de1 tegra_bpmp_request_mrq -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca7f744 icc_sync_state -EXPORT_SYMBOL_GPL vmlinux 0xdcabc96a lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0xdcc11980 devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdccc9278 imx_obtain_fixed_clk_hw -EXPORT_SYMBOL_GPL vmlinux 0xdcd45189 mptcp_token_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xdcdf9292 of_map_id -EXPORT_SYMBOL_GPL vmlinux 0xdce8029b virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0xdcf7d1e7 acpi_subsys_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xdcfbe376 devm_acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd0b2d85 pm_runtime_suspended_time -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 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 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 0xdd81d8f6 __SCK__tp_func_block_bio_complete -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 0xddbeeecc pci_lock_rescan_remove -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 0xdde4394d perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xddf4ef78 genphy_c45_an_config_aneg -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 0xde25d373 acpi_match_device -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 0xde4d7b90 usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0xde670f09 tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0xde69ae6e powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0xde6c2430 espintcp_push_skb -EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -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 0xdee1623f devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xdeece51a crypto_lookup_template -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 0xdf12eace strp_check_rcv -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 0xdf448d1c fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xdf570f62 l3mdev_table_lookup_register -EXPORT_SYMBOL_GPL vmlinux 0xdf59068c kvm_put_kvm -EXPORT_SYMBOL_GPL vmlinux 0xdf5b7428 __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xdf6d7743 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xdf8126ed tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0xdf8343ed scmi_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xdfa6e51d phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0xdfac16f4 sprd_pinctrl_core_probe -EXPORT_SYMBOL_GPL vmlinux 0xdfbf07c7 dma_alloc_noncontiguous -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 0xdff8f3a8 __traceiter_xdp_bulk_tx -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 0xe0313d71 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xe0389989 fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0xe048156a init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xe058060d spi_res_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe062ae0d of_i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL vmlinux 0xe06a260f sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0xe06a674d bpf_trace_run2 -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 0xe0a01e03 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xe0adfced event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0ba3794 devm_clk_get_optional_prepared -EXPORT_SYMBOL_GPL vmlinux 0xe0c7e93b of_clk_hw_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op -EXPORT_SYMBOL_GPL vmlinux 0xe0f6034f k3_udma_glue_request_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xe0f70d0a led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe11591dd bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe1270802 sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0xe12d0da3 devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xe12e760d ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0xe13e85c8 vfs_inode_has_locks -EXPORT_SYMBOL_GPL vmlinux 0xe1559674 iomap_file_unshare -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 0xe1a8d7c9 net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx -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 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 0xe266b98e perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0xe27eddef acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe2a406b0 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0xe2aad5d2 xfrm_audit_state_replay -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 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 0xe32435c7 __fscrypt_prepare_setattr -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 0xe354530a seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0xe369b1b6 of_led_get -EXPORT_SYMBOL_GPL vmlinux 0xe378f9d9 of_genpd_add_provider_onecell -EXPORT_SYMBOL_GPL vmlinux 0xe37aa333 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0xe37abfb8 rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xe390bf51 i2c_new_scanned_device -EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf -EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit -EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete -EXPORT_SYMBOL_GPL vmlinux 0xe3b41dc1 devlink_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe3bae495 devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0xe3ccebed devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe3d8e79d dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0xe3f1e5c9 evm_verifyxattr -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 0xe41f87f4 dmaengine_desc_attach_metadata -EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print -EXPORT_SYMBOL_GPL vmlinux 0xe42e920e screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe4407c4e spi_mem_dirmap_write -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 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 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 0xe4ef95c9 xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0xe5059299 switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xe508c6c6 __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0xe50ae529 usb_add_hcd -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 0xe526c7d7 mmc_pwrseq_register -EXPORT_SYMBOL_GPL vmlinux 0xe534a149 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0xe546d310 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xe54bf4e7 usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0xe5516728 k3_udma_glue_tx_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xe554ae88 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0xe55d0dc2 devlink_alloc_ns -EXPORT_SYMBOL_GPL vmlinux 0xe57318a5 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0xe57cf3ff regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe59dfd05 trace_array_printk -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 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 0xe5e20717 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0xe5ed01a5 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xe5ee6750 devm_clk_hw_register_fixed_factor -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 0xe64d7f1b msg_zerocopy_alloc -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 0xe68bd3dc genphy_c45_pma_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe6bab91e bgmac_enet_remove -EXPORT_SYMBOL_GPL vmlinux 0xe6bebc56 sk_clear_memalloc -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 -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 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 0xe710e52a ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0xe721f09d dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0xe722bd89 sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0xe73b262e locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0xe742b63e kobject_uevent_env -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 -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 0xe774bc8d xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -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 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7e8126b meson_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0xe7fb2b72 cdrom_read_tocentry -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 0xe8279f5e dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xe828e169 mmu_interval_notifier_remove -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 0xe8581a04 tcp_set_keepalive -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 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 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 0xe89abad9 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xe8b2f3aa pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xe8b9d745 crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static -EXPORT_SYMBOL_GPL vmlinux 0xe8c41547 pm_clk_suspend -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 0xe92523bb irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xe93a26d3 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -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 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 0xe98f55f2 arm_smccc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xe99c1ded iommu_device_link -EXPORT_SYMBOL_GPL vmlinux 0xe9a0c71c fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0xe9c3add3 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0xe9c74898 acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9d63a0d k3_udma_glue_enable_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xe9da9b56 virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0xe9e51739 cpufreq_table_index_unsorted -EXPORT_SYMBOL_GPL vmlinux 0xe9e86959 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xe9ea74ab device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit -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 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 0xea780695 devlink_params_unpublish -EXPORT_SYMBOL_GPL vmlinux 0xea789ce8 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0xea7cdd25 sched_set_fifo -EXPORT_SYMBOL_GPL vmlinux 0xea87f9d6 pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0xea932b48 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0xeab2e7df sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0xeab6c73d of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0xeab8bd5a kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0xeabaa6af event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0xeabc99fe __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xeac46aea trace_array_get_by_name -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 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 0xeb1fbcab devlink_rate_leaf_create -EXPORT_SYMBOL_GPL vmlinux 0xeb3ab743 platform_add_devices -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 0xeb4fd88c crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0xeb57de71 regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xeb74e060 ip6_datagram_send_ctl -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 0xebab9bb8 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xebb684bb extcon_set_state_sync -EXPORT_SYMBOL_GPL vmlinux 0xebbaf94b net_selftest -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 0xebe202c1 nfs_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0xebf36e40 led_init_core -EXPORT_SYMBOL_GPL vmlinux 0xebf54602 amba_apb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0xec076033 pinctrl_count_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0xec144dfd bpf_trace_run6 -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 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 0xec78283b devlink_dpipe_action_put -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 0xece3174c nexthop_select_path -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 0xed5a936c __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0xed6db82f tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xed7cce78 dw_pcie_ep_init -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 0xedd092d5 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xeddb1f34 tpm_chip_stop -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 0xedf73d14 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xee681661 bpf_map_inc -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 0xee7a2a1c dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0xee8e40ad netlink_has_listeners -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 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 0xef07f61d ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef23cf77 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xef2c3656 kill_device -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 0xef3dbf68 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef46e82d kvm_vcpu_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0xef4b84cb mdiobus_modify -EXPORT_SYMBOL_GPL vmlinux 0xef516a81 device_link_add -EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xef69d9eb tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance -EXPORT_SYMBOL_GPL vmlinux 0xef744bb5 sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0xef8fbcf1 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last -EXPORT_SYMBOL_GPL vmlinux 0xef9c52fc switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefa3c0a1 xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0xefce9f29 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0xefdfba2f sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0xefe2c77f vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xefeb93a0 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xeff767e2 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0xf00b8bdb crypto_stats_init -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 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 0xf073faf7 devm_nvmem_device_get -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 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 0xf0df4f54 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0xf0f0c7b8 skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0xf0f1ee6d is_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xf1208601 ip6_push_pending_frames -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 0xf15bfb83 phy_power_on -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 -EXPORT_SYMBOL_GPL vmlinux 0xf17bf584 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xf1820804 tpm_tis_core_init -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 0xf1a36d78 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0xf1a7d261 kvm_vcpu_unmap -EXPORT_SYMBOL_GPL vmlinux 0xf1ab166f sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0xf1ca62c7 nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xf1d01f98 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xf1d151e5 __kernel_write -EXPORT_SYMBOL_GPL vmlinux 0xf1f21856 i2c_acpi_find_adapter_by_handle -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -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 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 0xf2b9be59 fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0xf2bc183b clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xf2cb642b debugfs_create_ulong -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 0xf3067a8f crypto_comp_compress -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 0xf317c742 crypto_register_skciphers -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 0xf32bdc5d unregister_xenstore_notifier -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 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0xf3b9ca97 devm_add_action -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 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 0xf3ff3bfb crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0xf403e9d6 watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0xf406a9b5 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0xf458807a platform_device_register_full -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 0xf4689d50 linkmode_set_pause -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 0xf49a3116 bus_unregister -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 0xf4c720f2 tcp_set_state -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 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 0xf5075821 rtnl_link_unregister -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 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 -EXPORT_SYMBOL_GPL vmlinux 0xf557ba76 gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0xf582fd55 devm_regulator_unregister_notifier -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 0xf5c239a6 mtk_pinconf_bias_set -EXPORT_SYMBOL_GPL vmlinux 0xf5c56c52 serdev_device_write_flush -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 0xf606b45f pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall -EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf6770c26 skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0xf6791378 usb_hcd_start_port_resume -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 0xf6953c8c ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -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 0xf6c913ab gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0xf6cbb0a7 of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0xf6db1bd7 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xf6e085c3 security_path_chmod -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 0xf7074648 noop_direct_IO -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 0xf727f245 devlink_params_register -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 0xf73d652f extcon_set_property -EXPORT_SYMBOL_GPL vmlinux 0xf744f0b5 ata_sff_irq_on -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 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 0xf7afb369 btree_init -EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 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 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 0xf82ee1d1 ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -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 0xf861bd31 rockchip_clk_register_ddrclk -EXPORT_SYMBOL_GPL vmlinux 0xf86e29d0 irq_chip_set_parent_state -EXPORT_SYMBOL_GPL vmlinux 0xf8bb0383 ethnl_cable_test_amplitude -EXPORT_SYMBOL_GPL vmlinux 0xf8bd6fba crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8f40753 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xf8f4457a kvm_write_guest_page -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 0xf91fd6d1 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xf920553e class_find_device -EXPORT_SYMBOL_GPL vmlinux 0xf94a3fc7 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version -EXPORT_SYMBOL_GPL vmlinux 0xf96a9bd4 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL vmlinux 0xf982a81f tcp_ca_openreq_child -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 0xf9c8f6a3 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xf9c9b292 fsl_mc_bus_dpaiop_type -EXPORT_SYMBOL_GPL vmlinux 0xf9d5f43e crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf9d771d8 wm8350_reg_lock -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 0xf9fb3f1b ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0xfa0a6fca kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0xfa0c3b1e devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xfa192ed7 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue -EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0xfa7626c5 __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0xfa848e9e crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0xfa9aa2d1 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0xfaa5289e gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0xfaa7997a sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit -EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line -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 0xfae7c5c5 set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0xfaf00972 vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0xfaf41148 pin_get_name -EXPORT_SYMBOL_GPL vmlinux 0xfaf580e4 gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0xfaf9fa43 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0xfafb0141 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0xfafd5d48 genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0xfb0e697c ehci_init_driver -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 0xfb41b4f4 of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0xfb43b85d bgmac_enet_suspend -EXPORT_SYMBOL_GPL vmlinux 0xfb54aa5e phy_create_lookup -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 0xfb7df73d pci_enable_rom -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 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 0xfbda836d of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features -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 0xfc07b496 phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xfc08deb4 __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xfc17f258 netdev_walk_all_lower_dev -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 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc3dcea7 gnttab_dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xfc746b3c gnttab_page_cache_shrink -EXPORT_SYMBOL_GPL vmlinux 0xfc7bfd2c fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0xfc7e81df task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xfc81524c devm_blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0xfc9477b5 zynqmp_pm_set_pll_frac_data -EXPORT_SYMBOL_GPL vmlinux 0xfc950d2f da903x_read -EXPORT_SYMBOL_GPL vmlinux 0xfca43c1f devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0xfcac36fa regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xfcacbc83 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xfcb358ea ip6_update_pmtu -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 0xfccced2f devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0xfccfd94a efivar_entry_find -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 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfcfbbcfc blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xfd068326 register_kretprobes -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 0xfd36b02d ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0xfd3bcfc1 crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0xfd43c7e1 devm_regmap_field_free -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 0xfd55fddc __root_device_register -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 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 0xfd9121c8 msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0xfd9b753c mtk_build_eint -EXPORT_SYMBOL_GPL vmlinux 0xfd9d9b98 bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0xfdaaf720 crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfdf466bd fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release -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 0xfe3a6de3 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe4ae9aa thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0xfe501883 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0xfe68c032 cpufreq_dbs_governor_exit -EXPORT_SYMBOL_GPL vmlinux 0xfe71d502 crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0xfe77152c crypto_alg_mod_lookup -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 0xfee67add tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0xfee6ff7b scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read -EXPORT_SYMBOL_GPL vmlinux 0xfef62a2e ip6_datagram_recv_ctl -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 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff2b7cbc mmc_send_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0xff2d1b84 __traceiter_tcp_bad_csum -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 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 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 0xffba15b4 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0xffc81a3c of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0xffc8e29f dev_pm_opp_set_prop_name -EXPORT_SYMBOL_GPL vmlinux 0xffd30862 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0xffe422fc iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0xffe639f0 sock_gen_put -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 -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x52b29eb1 adis_init drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x5e07b1d4 __adis_read_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x5ec80ba8 __adis_initial_startup drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x5f324ef9 devm_adis_probe_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x6d22d81b adis_single_conversion drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x73377504 __adis_update_bits_base drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x9a9d6649 adis_update_scan_mode drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xaf672df9 __adis_check_status drivers/iio/imu/adis_lib -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 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 -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 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 -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 0x1e42ab26 nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xa590a7d9 nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xddd62374 nvme_execute_passthru_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xe1c91dcc nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xeaae2f11 nvme_find_get_ns 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 -PMBUS EXPORT_SYMBOL_GPL 0x16211798 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x21dc2242 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x23ca000c pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x374c850e pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x54b5e0e1 pmbus_set_update drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x55ab21ce pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x694e87b6 pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x6c5ca9f3 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x80ccc126 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x86d16b71 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x8c249733 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x8f764d75 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xac04ebd3 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xd2adf8df pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xd66000ab pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xfcd0bf18 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -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 -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 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 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 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 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 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 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 0xdbc439eb usb_stor_disconnect 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 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 reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/arm64/generic-64k.compiler +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/arm64/generic-64k.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/arm64/generic-64k.modules +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/arm64/generic-64k.modules @@ -1,6890 +0,0 @@ -3c59x -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_bcm7271 -8250_exar -8250_men_mcb -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pg86x -88pm800 -88pm800-regulator -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -9pnet_xen -a100u2w -a3d -a53-pll -a7-pll -a8293 -aacraid -aat2870-regulator -aat2870_bl -abp060mg -ac97_bus -acard-ahci -acecad -acenic -acp_audio_dma -acpi-als -acpi_configfs -acpi_ipmi -acpi_power_meter -acpi_tad -acpiphp_ibm -act8865-regulator -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 -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad5110 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5272 -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5686-spi -ad5696-i2c -ad5755 -ad5758 -ad5761 -ad5764 -ad5766 -ad5770r -ad5791 -ad5820 -ad5933 -ad7091r-base -ad7091r5 -ad7124 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7192 -ad7266 -ad7280a -ad7291 -ad7292 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7606_par -ad7606_spi -ad7746 -ad7766 -ad7768-1 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad7949 -ad799x -ad8366 -ad8801 -ad9389b -ad9467 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc-joystick -adc-keys -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adf4371 -adf7242 -adfs -adi -adi-axi-adc -adiantum -adin -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16209 -adis16240 -adis16260 -adis16400 -adis16460 -adis16475 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1177 -adm1266 -adm1275 -adm8211 -adm9240 -adp1653 -adp5061 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adux1020 -adv7170 -adv7175 -adv7180 -adv7183 -adv7343 -adv7393 -adv748x -adv7511_drm -adv7604 -adv7842 -adv_pci1710 -adv_pci1720 -adv_pci1723 -adv_pci1724 -adv_pci1760 -adv_pci_dio -advansys -adxl34x -adxl34x-i2c -adxl34x-spi -adxl372 -adxl372_i2c -adxl372_spi -adxrs290 -adxrs450 -aegis128 -aes-arm64 -aes-ce-blk -aes-ce-ccm -aes-ce-cipher -aes-neon-blk -aes-neon-bs -aes_ti -af9013 -af9033 -af_alg -af_key -af_packet_diag -afe4403 -afe4404 -affs -afs -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 -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airspy -ak7375 -ak881x -ak8974 -ak8975 -al3010 -al3320a -alcor -alcor_pci -algif_aead -algif_hash -algif_rng -algif_skcipher -alim7101_wdt -allegro -altera-ci -altera-cvp -altera-fpga2sdram -altera-freeze-bridge -altera-hps2fpga -altera-msgdma -altera-pr-ip-core -altera-pr-ip-core-plat -altera-ps-spi -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am2315 -am53c974 -am65-cpts -amba-clcd -amba-pl010 -ambakmi -amc6821 -amd -amd-xgbe -amd5536udc_pci -amd8111e -amdgpu -amlogic-gxl-crypto -amlogic_thermal -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams-iaq-core -ams369fg06 -analog -analogix-anx6345 -analogix-anx78xx -analogix_dp -anatop-regulator -ansi_cprng -anx7625 -anybuss_core -ao-cec -ao-cec-g12a -aoe -apbps2 -apcs-msm8916 -apcs-sdx55 -apds9300 -apds9802als -apds990x -apds9960 -apple-dart -apple-mfi-fastcharge -appledisplay -appletalk -appletouch -applicom -apr -apss-ipq-pll -apss-ipq6018 -aptina-pll -aqc111 -aquacomputer_d5next -aquantia -ar1021_i2c -ar5523 -ar7part -ar9331 -arasan-nand-controller -arc-rawmode -arc-rimi -arc_emac -arc_ps2 -arc_uart -arcmsr -arcnet -arcpgu -arcx-anybus -arcxcnn_bl -arizona -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -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 -as102_fe -as370-hwmon -as3711-regulator -as3711_bl -as3722-regulator -as3935 -as5011 -as73211 -asc7621 -ascot2e -ashmem_linux -asix -aspeed-pwm-tacho -aspeed-video -ast -asym_tpm -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -ata_generic -ata_piix -atbm8830 -atc260x-core -atc260x-i2c -atc260x-onkey -atc260x-poweroff -atc260x-regulator -ath -ath10k_core -ath10k_pci -ath10k_sdio -ath10k_snoc -ath10k_usb -ath11k -ath11k_ahb -ath11k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ath9k_pci_owl_loader -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atlantic -atlas-ezo-sensor -atlas-sensor -atm -atmel -atmel-ecc -atmel-flexcom -atmel-hlcdc -atmel-i2c -atmel-sha204a -atmel_captouch -atmel_mxt_ts -atmel_pci -atmtcp -atp870u -atusb -atxp1 -aty128fb -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -auo-pixcir-ts -auth_rpcgss -authenc -authencesn -autofs4 -avmfritz -ax25 -ax88179_178a -ax88796b -axg-audio -axi-fan-control -axis-fifo -axp20x -axp20x-i2c -axp20x-pek -axp20x-regulator -axp20x-rsb -axp20x_ac_power -axp20x_adc -axp20x_battery -axp20x_usb_power -axp288_adc -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -b53_common -b53_mdio -b53_mmap -b53_serdes -b53_spi -b53_srab -ba431-rng -bam_dma -bareudp -batman-adv -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-flexrm-mailbox -bcm-keypad -bcm-pdc-mailbox -bcm-phy-lib -bcm-sba-raid -bcm-sf2 -bcm203x -bcm2711_thermal -bcm2835 -bcm2835-mmal-vchiq -bcm2835-rng -bcm2835-v4l2 -bcm2835_thermal -bcm2835_wdt -bcm3510 -bcm4908_enet -bcm54140 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm63138_nand -bcm6368_nand -bcm63xx_uart -bcm7038_wdt -bcm7xxx -bcm87xx -bcm_crypto_spu -bcm_iproc_adc -bcm_iproc_tsc -bcm_vk -bcma -bcma-hcd -bcmsysport -bd6107 -bd71815-regulator -bd71828-regulator -bd718x7-regulator -bd9571mwv -bd9571mwv-regulator -bd9576-regulator -bd9576_wdt -bd99954-charger -bdc -be2iscsi -be2net -befs -bel-pfe -belkin_sa -berlin2-adc -bfa -bfq -bfs -bfusb -bh1750 -bh1770glc -bh1780 -binder_linux -binfmt_misc -blake2b_generic -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluefield_edac -bluetooth -bluetooth_6lowpan -bma150 -bma220_spi -bma400_core -bma400_i2c -bma400_spi -bman-test -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmc150_magn_i2c -bmc150_magn_spi -bme680_core -bme680_i2c -bme680_spi -bmg160_core -bmg160_i2c -bmg160_spi -bmi088-accel-core -bmi088-accel-spi -bmi160_core -bmi160_i2c -bmi160_spi -bmp280 -bmp280-i2c -bmp280-spi -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bnxt_re -bochs -bonding -bpa-rs600 -bpa10x -bpfilter -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq2515x_charger -bq256xx_charger -bq25890_charger -bq25980_charger -bq27xxx_battery -bq27xxx_battery_hdq -bq27xxx_battery_i2c -br2684 -br_netfilter -brcmfmac -brcmnand -brcmsmac -brcmstb-avs-cpufreq -brcmstb-usb-pinmap -brcmstb_nand -brcmstb_thermal -brcmutil -brd -bridge -broadcom -bsd_comp -bt819 -bt856 -bt866 -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btmtksdio -btmtkuart -btqca -btqcomsmd -btrfs -btrsi -btrtl -btsdio -bttv -btusb -bu21013_ts -bu21029_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -ca8210 -caam -caam_jr -caamalg_desc -caamhash_desc -cachefiles -cadence-nand-controller -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_serial -caif_socket -caif_usb -caif_virtio -camcc-sc7180 -camcc-sdm845 -camcc-sm8250 -camellia_generic -can -can-bcm -can-dev -can-gw -can-isotp -can-j1939 -can-raw -cap11xx -capmode -capsule-loader -carl9170 -carminefb -cassini -cast5_generic -cast6_generic -cast_common -catc -cavium-rng -cavium-rng-vf -cavium_ptp -cb710 -cb710-mmc -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc10001_adc -cc2520 -cc770 -cc770_isa -cc770_platform -ccm -ccp -ccp-crypto -ccree -ccs -ccs-pll -ccs811 -cctrng -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -cdns-csi2rx -cdns-csi2tx -cdns-dphy -cdns-dsi -cdns-mhdp8546 -cdns-pltfrm -cdns-usb-common -cdns3 -cdns3-imx -cdns3-pci-wrap -cdns3-ti -cdnsp-udc-pci -cec -ceph -cfb -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -ch -ch341 -ch7006 -ch7322 -ch9200 -ch_ipsec -ch_ktls -chacha-neon -chacha20poly1305 -chacha_generic -chaoskey -charlcd -chcr -chipone-icn6211 -chipone_icn8318 -chipone_icn8505 -chipreg -chnl_net -chromeos_tbmc -chrontel-ch7033 -ci_hdrc -ci_hdrc_imx -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_tegra -ci_hdrc_usb2 -cicada -cifs -cifs_arc4 -cifs_md4 -cirrus -cirrusfb -clip -clk-axi-clkgen -clk-bcm2711-dvp -clk-bd718x7 -clk-cdce706 -clk-cdce925 -clk-cpu-8996 -clk-cs2000-cp -clk-fsl-flexspi -clk-hi3519 -clk-hi655x -clk-lmk04832 -clk-lochnagar -clk-max77686 -clk-max9485 -clk-palmas -clk-phase -clk-plldig -clk-pwm -clk-qcom -clk-raspberrypi -clk-rk3568 -clk-rk808 -clk-rpm -clk-rpmh -clk-s2mps11 -clk-scmi -clk-scpi -clk-si514 -clk-si5341 -clk-si5351 -clk-si544 -clk-si570 -clk-smd-rpm -clk-spmi-pmic-div -clk-sprd -clk-twl6040 -clk-versaclock5 -clk-wm831x -clk-xlnx-clock-wizard -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm3605 -cm36651 -cma3000_d0x -cma3000_d0x_i2c -cmac -cmdlinepart -cmtp -cnic -cobra -coda -coda-vpu -colibri-vf50-ts -com20020 -com20020-pci -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_example_test -comedi_parport -comedi_pci -comedi_test -comedi_usb -contec_pci_dio -cordic -core -corsair-cpro -corsair-psu -cortina -counter -cp210x -cpcap-adc -cpcap-battery -cpcap-charger -cpcap-pwrbutton -cpcap-regulator -cpia2 -cppc_cpufreq -cpr -cptpf -cptvf -cqhci -cramfs -crc-itu-t -crc32_generic -crc4 -crc64 -crc7 -crct10dif-ce -crg-hi3516cv300 -crg-hi3798cv200 -cros-ec-anx7688 -cros-ec-cec -cros-ec-regulator -cros-ec-sensorhub -cros_ec -cros_ec_accel_legacy -cros_ec_baro -cros_ec_chardev -cros_ec_debugfs -cros_ec_dev -cros_ec_i2c -cros_ec_keyb -cros_ec_lid_angle -cros_ec_light_prox -cros_ec_lightbar -cros_ec_mkbp_proximity -cros_ec_rpmsg -cros_ec_sensors -cros_ec_sensors_core -cros_ec_spi -cros_ec_sysfs -cros_ec_typec -cros_ec_vbc -cros_kbd_led_backlight -cros_peripheral_charger -cros_usbpd-charger -cros_usbpd_logger -cros_usbpd_notify -cryptd -crypto_engine -crypto_safexcel -crypto_simd -crypto_user -cryptoloop -cs3308 -cs5345 -cs53l32a -csiostor -curve25519-generic -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cw2015_battery -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxd2880 -cxd2880-spi -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cxgbit -cxl_acpi -cxl_core -cxl_pci -cxl_pmem -cy8ctma140 -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da280 -da311 -da7280 -da9030_battery -da9034-ts -da903x-regulator -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062-thermal -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9121-regulator -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -dax_hmem -dax_pmem -dax_pmem_compat -dax_pmem_core -db9 -dc395x -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -ddbridge -ddbridge-dummy-fe -de2104x -defxx -denali -denali_dt -denali_pci -des_generic -designware_i2s -device_dax -dfl -dfl-afu -dfl-emif -dfl-fme -dfl-fme-br -dfl-fme-mgr -dfl-fme-region -dfl-n3000-nios -dfl-pci -dht11 -diag -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dib9000 -dibx000_common -digi_acceleport -digicolor-usart -diskonchip -dispcc-sc7180 -dispcc-sc7280 -dispcc-sdm845 -dispcc-sm8250 -display-connector -dl2k -dlhl60d -dlink-dir685-touchkeys -dlm -dln2 -dln2-adc -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 -dm1105 -dm9601 -dma-axi-dmac -dmard06 -dmard09 -dmard10 -dmc520_edac -dme1737 -dmfe -dmi-sysfs -dmm32at -dmx3191d -dnet -dp83640 -dp83822 -dp83848 -dp83867 -dp83869 -dp83tc811 -dpaa2-console -dpaa2-qdma -dpaa2_caam -dpdmai -dpot-dac -dps310 -dps920ab -dpt_i2o -drbd -drivetemp -drm -drm_dp_aux_bus -drm_kms_helper -drm_mipi_dbi -drm_ttm_helper -drm_vram_helper -drm_xen_front -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1803 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds4424 -ds620 -dsa_core -dsbr100 -dst -dst_ca -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-dibusb-mc-common -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_dummy_fe -dvb_usb_v2 -dw-axi-dmac-platform -dw-edma -dw-edma-pcie -dw-hdmi -dw-hdmi-ahb-audio -dw-hdmi-cec -dw-hdmi-i2s-audio -dw-i3c-master -dw-mipi-dsi -dw-xdata-pcie -dw9714 -dw9768 -dw9807-vcm -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_drm_dsi -dw_mmc -dw_mmc-bluefield -dw_mmc-exynos -dw_mmc-hi3798cv200 -dw_mmc-k3 -dw_mmc-pci -dw_mmc-pltfm -dw_mmc-rockchip -dw_wdt -dwc-xlgmac -dwc2_pci -dwc3 -dwc3-haps -dwc3-imx8mp -dwc3-keystone -dwc3-meson-g12a -dwc3-of-simple -dwc3-pci -dwc3-qcom -dwc3-xilinx -dwmac-altr-socfpga -dwmac-dwc-qos-eth -dwmac-generic -dwmac-imx -dwmac-intel-plat -dwmac-ipq806x -dwmac-loongson -dwmac-mediatek -dwmac-meson -dwmac-meson8b -dwmac-qcom-ethqos -dwmac-rk -dwmac-sun8i -dwmac-visconti -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -earth-pt1 -earth-pt3 -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -ec_sys -ecc -ecdh_generic -ecdsa_generic -echainiv -echo -ecrdsa_generic -edt-ft5x06 -ee1004 -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efa -efct -efi-pstore -efi_test -efibc -efs -egalax_ts -egalax_ts_serial -ehci-brcm -ehci-fsl -ehci-platform -ehset -einj -ektf2127 -elan_i2c -elants_i2c -elo -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_ipt -em_meta -em_nbyte -em_text -em_u32 -emac_rockchip -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_usb -emu10k1-gp -emxx_udc -ena -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -ene_ir -eni -enic -envelope-detector -epic100 -eql -erofs -error -esas2r -esd_usb2 -esp4 -esp4_offload -esp6 -esp6_offload -esp_scsi -essiv -et1011c -et131x -et8ek8 -etas_es58x -ethoc -etnaviv -evbug -exc3000 -exfat -extcon-adc-jack -extcon-fsa9480 -extcon-gpio -extcon-max14577 -extcon-max3355 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-ptn5150 -extcon-qcom-spmi-misc -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -extcon-usbc-cros-ec -extcon-usbc-tusb320 -ezusb -f2fs -f71805f -f71882fg -f75375s -f81232 -f81534 -f81601 -failover -fakelb -fan53555 -fan53880 -farsync -fastrpc -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 -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_pci -fdp -fdp_i2c -fealnx -ff-memless -ffa-module -fieldbus_dev -fintek-cir -firedtv -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fixed -fjes -fl512 -flexcan -fm10k -fm801-gp -fm_drv -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fou6 -fpga-bridge -fpga-mgr -fpga-region -freevxfs -fscache -fsi-core -fsi-master-aspeed -fsi-master-gpio -fsi-master-hub -fsi-occ -fsi-sbefifo -fsi-scom -fsia6b -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-mph-dr-of -fsl-qdma -fsl_dpa -fsl_ifc_nand -fsl_imx8_ddr_perf -fsl_linflexuart -fsl_lpuart -fsl_pq_mdio -fsl_ucc_hdlc -fsp-3y -ftdi-elan -ftdi_sio -ftl -ftm-quaddec -ftsteutates -fujitsu_ts -fusb302 -fxas21002c_core -fxas21002c_i2c -fxas21002c_spi -fxls8962af-core -fxls8962af-i2c -fxls8962af-spi -fxos8700_core -fxos8700_i2c -fxos8700_spi -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gateworks-gsc -gb-audio-apbridgea -gb-audio-codec -gb-audio-gb -gb-audio-manager -gb-audio-module -gb-bootrom -gb-es2 -gb-firmware -gb-gbphy -gb-gpio -gb-hid -gb-i2c -gb-light -gb-log -gb-loopback -gb-power-supply -gb-pwm -gb-raw -gb-sdio -gb-spi -gb-spilib -gb-uart -gb-usb -gb-vibrator -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 -gdmtty -gdmulte -ge2d -gemini -gen_probe -generic -generic-adc-battery -genet -geneve -genwqe_card -gf2k -gfs2 -ghash-ce -gianfar_driver -gl518sm -gl520sm -gl620a -gluebi -gm12u320 -gnss -gnss-mtk -gnss-serial -gnss-sirf -gnss-ubx -go7007 -go7007-loader -go7007-usb -goku_udc -goldfish_battery -goodix -gp2ap002 -gp2ap020a00f -gp8psk-fe -gpi -gpio -gpio-74x164 -gpio-74xx-mmio -gpio-adnp -gpio-adp5520 -gpio-adp5588 -gpio-aggregator -gpio-altera -gpio-altera-a10sr -gpio-amd-fch -gpio-amdpt -gpio-arizona -gpio-bd70528 -gpio-bd71815 -gpio-bd71828 -gpio-bd9571mwv -gpio-beeper -gpio-brcmstb -gpio-cadence -gpio-charger -gpio-da9052 -gpio-da9055 -gpio-dln2 -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-kempld -gpio-logicvc -gpio-lp3943 -gpio-lp873x -gpio-lp87565 -gpio-madera -gpio-max3191x -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-max77620 -gpio-max77650 -gpio-mb86s7x -gpio-mc33880 -gpio-menz127 -gpio-mlxbf -gpio-mlxbf2 -gpio-moxtet -gpio-pca953x -gpio-pca9570 -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-regulator -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-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-vibra -gpio-viperboard -gpio-virtio -gpio-visconti -gpio-wcd934x -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio-xgene-sb -gpio-xgs-iproc -gpio-xlp -gpio-xra1403 -gpio-zynq -gpio_backlight -gpio_decoder -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_wdt -gpmi-nand -gpu-sched -gpucc-msm8998 -gpucc-sc7180 -gpucc-sc7280 -gpucc-sdm660 -gpucc-sdm845 -gpucc-sm8150 -gpucc-sm8250 -gr_udc -grace -grcan -gre -greybus -grip -grip_mp -gs1662 -gs_fpga -gs_usb -gsc-hwmon -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtp -gud -guillemot -gunze -gve -habanalabs -hackrf -hamachi -hampshire -hantro-vpu -hanwang -hbmc-am654 -hci -hci_nokia -hci_uart -hci_vhci -hclge -hclgevf -hd3ss3220 -hd44780 -hd44780_common -hdc100x -hdc2010 -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcd -hdlcdrv -hdma -hdma_mgmt -hdpvr -he -helene -hellcreek_sw -hexium_gemini -hexium_orion -hfcmulti -hfcpci -hfcsusb -hfpll -hfs -hfsplus -hi311x -hi3660-mailbox -hi556 -hi6210-i2s -hi6220-mailbox -hi6220_reset -hi6421-pmic-core -hi6421-regulator -hi6421-spmi-pmic -hi6421v530-regulator -hi6421v600-irq -hi6421v600-regulator -hi655x-pmic -hi655x-regulator -hi8435 -hibmc-drm -hid -hid-a4tech -hid-accutouch -hid-alps -hid-apple -hid-appleir -hid-asus -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-bigbenff -hid-cherry -hid-chicony -hid-cmedia -hid-corsair -hid-cougar -hid-cp2112 -hid-creative-sb0540 -hid-cypress -hid-dr -hid-elan -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-ft260 -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-glorious -hid-google-hammer -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-hyperv -hid-icade -hid-ite -hid-jabra -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-led -hid-lenovo -hid-lg-g15 -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-macally -hid-magicmouse -hid-maltron -hid-mcp2221 -hid-mf -hid-microsoft -hid-monterey -hid-multitouch -hid-nti -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-playstation -hid-primax -hid-prodikeys -hid-redragon -hid-retrode -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-semitek -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-custom-intel-hinge -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-humidity -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-temperature -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steam -hid-steelseries -hid-sunplus -hid-thrustmaster -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-u2fzero -hid-uclogic -hid-udraw-ps3 -hid-viewsonic -hid-vivaldi -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hideep -hidp -hih6130 -hinic -hip04_eth -hisi-rng -hisi-sfc -hisi-spmi-controller -hisi-trng-v2 -hisi504_nand -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 -hmc425a -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hms-profinet -hnae -hnae3 -hns-roce-hw-v1 -hns-roce-hw-v2 -hns3 -hns_dsaf -hns_enet_drv -hns_mdio -hopper -horus3a -host1x -hostap -hostap_pci -hostap_plx -hp03 -hp206c -hpfs -hpilo -hpsa -hptiop -hpwdt -hsi -hsi_char -hso -hsr -ht16k33 -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hv_balloon -hv_netvsc -hv_sock -hv_storvsc -hv_utils -hv_vmbus -hwmon-vid -hwpoison-inject -hx711 -hx8357 -hx8357d -hycon-hy46xx -hyperbus-core -hyperv-keyboard -hyperv_drm -hyperv_fb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-altera -i2c-amd756 -i2c-amd8111 -i2c-arb-gpio-challenge -i2c-bcm-iproc -i2c-bcm2835 -i2c-brcmstb -i2c-cbus-gpio -i2c-cp2615 -i2c-cros-ec-tunnel -i2c-demux-pinctrl -i2c-designware-pci -i2c-diolan-u2c -i2c-dln2 -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-kempld -i2c-matroxfb -i2c-meson -i2c-mlxbf -i2c-mt65xx -i2c-mux -i2c-mux-gpio -i2c-mux-gpmux -i2c-mux-ltc4306 -i2c-mux-mlxcpld -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-pinctrl -i2c-mux-reg -i2c-mv64xxx -i2c-nforce2 -i2c-nomadik -i2c-nvidia-gpu -i2c-ocores -i2c-owl -i2c-parport -i2c-pca-platform -i2c-piix4 -i2c-pxa -i2c-qcom-cci -i2c-qcom-geni -i2c-qup -i2c-rcar -i2c-riic -i2c-rk3x -i2c-robotfuzz-osif -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-tiny-usb -i2c-versatile -i2c-via -i2c-viapro -i2c-viperboard -i2c-virtio -i2c-xgene-slimpro -i2c-xiic -i2c-xlp9xx -i3c -i3c-master-cdns -i40e -i5k_amb -i6300esb -i740fb -iavf -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mthca -ib_srp -ib_srpt -ib_umad -ib_uverbs -ibm-cffps -ibmaem -ibmpex -icc-bcm-voter -icc-osm-l3 -icc-rpmh -icc-smd-rpm -ice -ice40-spi -icp -icp10100 -icp_multi -icplus -ics932s401 -idma64 -idmouse -idt77252 -idt_89hpesx -idt_gen2 -idt_gen3 -idtcps -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -ifcvf -ife -ifi_canfd -iforce -iforce-serio -iforce-usb -igb -igbvf -igc -igorplugusb -iguanair -ii_pci20kc -iio-mux -iio-rescale -iio-trig-hrtimer -iio-trig-interrupt -iio-trig-loop -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili9225 -ili922x -ili9320 -ili9341 -ili9486 -ilitek_ts_i2c -img-ascii-lcd -img-i2s-in -img-i2s-out -img-parallel-out -img-spdif-in -img-spdif-out -imon -imon_raw -ims-pcu -imx-audio-rpmsg -imx-bus -imx-common -imx-cpufreq-dt -imx-dcss -imx-dma -imx-dsp -imx-interconnect -imx-mailbox -imx-media-common -imx-pcm-dma -imx-pcm-rpmsg -imx-pxp -imx-sdma -imx208 -imx214 -imx219 -imx258 -imx274 -imx290 -imx2_wdt -imx319 -imx334 -imx335 -imx355 -imx412 -imx6q-cpufreq -imx6ul_tsc -imx7-media-csi -imx7-mipi-csis -imx7d_adc -imx7ulp_wdt -imx8m-ddrc -imx8mm-interconnect -imx8mm_thermal -imx8mn-interconnect -imx8mq-interconnect -imx8mq-mipi-csi2 -imx_keypad -imx_rproc -imx_sc_key -imx_sc_thermal -imx_sc_wdt -imx_thermal -imxfb -ina209 -ina2xx -ina2xx-adc -ina3221 -industrialio -industrialio-buffer-cb -industrialio-buffer-dma -industrialio-buffer-dmaengine -industrialio-configfs -industrialio-hw-consumer -industrialio-sw-device -industrialio-sw-trigger -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -inspur-ipsps -int51x1 -intel-m10-bmc -intel-m10-bmc-hwmon -intel-nand-controller -intel-qep -intel-xway -intel_pmt -intel_th -intel_th_acpi -intel_th_gth -intel_th_msu -intel_th_msu_sink -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -interact -interrupt-cnt -inv-icm42600 -inv-icm42600-i2c -inv-icm42600-spi -inv-mpu6050 -inv-mpu6050-i2c -inv-mpu6050-spi -io-domain -io_edgeport -io_ti -ionic -iosm -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_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_tunnel -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 -ipa -ipack -ipaq -ipcomp -ipcomp6 -iphase -ipheth -ipip -ipmb_dev_int -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -iproc-rng200 -iproc_nand -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 -ipw -ipw2100 -ipw2200 -iqs269a -iqs5xx -iqs620at-temp -iqs621-als -iqs624-pos -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-usb -ir-xmp-decoder -ir35221 -ir36021 -ir38064 -ir_toy -irdma -irps5401 -irq-madera -irq-pruss-intc -iscsi_boot_sysfs -iscsi_ibft -iscsi_target_mod -iscsi_tcp -isdnhdlc -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl29501 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl68137 -isl9305 -isofs -isp116x-hcd -isp1704_charger -isp1760 -it87 -it913x -itd1000 -ite-cir -ite-it66121 -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_cm -iw_cxgb4 -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -k3_bandgap -k3dma -kafs -kalmia -kaweth -kbtab -kcm -kcomedilib -ke_counter -keembay-ocs-aes -keembay-ocs-hcu -keembay_wdt -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khadas-mcu -khadas_mcu_fan -kheaders -kirin-drm -kl5kusb105 -kmb-drm -kmem -kmx61 -kobil_sct -komeda -kpss-xcc -ks0127 -ks7010 -ks8842 -ks8851_common -ks8851_par -ks8851_spi -ksmbd -ksz8795 -ksz8795_spi -ksz884x -ksz8863_smi -ksz9477 -ksz9477_i2c -ksz9477_spi -ksz_common -ktd253-backlight -kvaser_pci -kvaser_pciefd -kvaser_usb -kxcjk-1013 -kxsd9 -kxsd9-i2c -kxsd9-spi -kxtj9 -kyber-iosched -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l4f00242t03 -l64781 -lan743x -lan78xx -lan9303-core -lan9303_i2c -lan9303_mdio -lanai -lantiq_gswip -lapb -lapbether -lattice-ecp3-config -layerscape_edac_mod -lcc-ipq806x -lcc-mdm9615 -lcc-msm8960 -lcd -lcd2s -ldusb -lec -led-class-flash -led-class-multicolor -led_bl -leds-88pm860x -leds-aat1290 -leds-adp5520 -leds-an30259a -leds-as3645a -leds-aw2013 -leds-bcm6328 -leds-bcm6358 -leds-bd2802 -leds-blinkm -leds-cpcap -leds-cr0014114 -leds-da903x -leds-da9052 -leds-dac124s085 -leds-el15203000 -leds-gpio -leds-is31fl319x -leds-is31fl32xx -leds-ktd2692 -leds-lm3530 -leds-lm3532 -leds-lm3533 -leds-lm355x -leds-lm3601x -leds-lm36274 -leds-lm3642 -leds-lm3692x -leds-lm3697 -leds-lp3944 -leds-lp3952 -leds-lp50xx -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max77650 -leds-max77693 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-mlxreg -leds-mt6323 -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-rt4505 -leds-rt8515 -leds-sc27xx-bltc -leds-sgm3140 -leds-spi-byte -leds-tca6507 -leds-ti-lmu-common -leds-tlc591xx -leds-tps6105x -leds-wm831x-status -leds-wm8350 -ledtrig-activity -ledtrig-audio -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-netdev -ledtrig-oneshot -ledtrig-pattern -ledtrig-timer -ledtrig-transient -ledtrig-tty -ledtrig-usbport -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gl5 -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libarc4 -libceph -libchacha -libchacha20poly1305 -libcomposite -libcrc32c -libcurve25519 -libcurve25519-generic -libcxgb -libcxgbi -libdes -libertas -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libpoly1305 -libsas -libsm4 -lightning -lima -lineage-pem -linear -linkstation-poweroff -liquidio -liquidio_vf -lis3lv02d -lis3lv02d_i2c -liteuart -litex_liteeth -litex_soc_ctrl -lkkbd -ll_temac -llc -llc2 -llcc-qcom -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3560 -lm3630a_bl -lm3639_bl -lm363x-regulator -lm3646 -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lmh -lmp91000 -lms283gf05 -lms501kf03 -lnbh25 -lnbh29 -lnbp21 -lnbp22 -lochnagar-hwmon -lochnagar-regulator -lockd -lontium-lt8912b -lontium-lt9611 -lontium-lt9611uxc -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp873x -lp873x-regulator -lp8755 -lp87565 -lp87565-regulator -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpass-gfm-sm8250 -lpasscc-sdm845 -lpasscorecc-sc7180 -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -lt3651-charger -ltc1660 -ltc2471 -ltc2485 -ltc2496 -ltc2497 -ltc2497-core -ltc2632 -ltc2941-battery-gauge -ltc2945 -ltc2947-core -ltc2947-i2c -ltc2947-spi -ltc2978 -ltc2983 -ltc2990 -ltc2992 -ltc3589 -ltc3676 -ltc3815 -ltc4151 -ltc4162-l-charger -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv0104cs -lv5207lp -lvds-codec -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m2m-deinterlace -m52790 -m5mols -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -m_can_pci -m_can_platform -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -mac802154_hwsim -macb -macb_pci -machxo2-spi -macmodes -macsec -macvlan -macvtap -madera -madera-i2c -madera-spi -mag3110 -magellan -mailbox-altera -mailbox-test -mailbox-xgene-slimpro -mali-dp -mantis -mantis_core -map_absent -map_funcs -map_ram -map_rom -marvell -marvell-88x2222 -marvell-cesa -marvell10g -marvell_nand -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max11100 -max1111 -max1118 -max11801_ts -max1241 -max127 -max1363 -max14577-regulator -max14577_charger -max14656_charger_detector -max15301 -max1586 -max16064 -max16065 -max1619 -max16601 -max1668 -max17040_battery -max17042_battery -max1721x_battery -max197 -max20730 -max20751 -max2165 -max2175 -max30100 -max30102 -max3100 -max31722 -max31730 -max31785 -max31790 -max31856 -max3420_udc -max3421-hcd -max34440 -max44000 -max44009 -max517 -max5432 -max5481 -max5487 -max5821 -max63xx_wdt -max6621 -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77620-regulator -max77620_thermal -max77620_wdt -max77650 -max77650-charger -max77650-onkey -max77650-regulator -max77686-regulator -max77693-haptic -max77693-regulator -max77693_charger -max77802-regulator -max77826-regulator -max8649 -max8660 -max8688 -max8893 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997-regulator -max8997_charger -max8997_haptic -max8998 -max8998_charger -max9271 -max9286 -max9611 -maxim_thermocouple -mb1232 -mb862xxfb -mb86a16 -mb86a20s -mc -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc3230 -mc44s803 -mcam-core -mcb -mcb-lpc -mcb-pci -mcba_usb -mceusb -mchp23k256 -mchp48l640 -mcp16502 -mcp251x -mcp251xfd -mcp3021 -mcp320x -mcp3422 -mcp3911 -mcp4018 -mcp41010 -mcp4131 -mcp4531 -mcp4725 -mcp4922 -mcr20a -mcs5000_ts -mcs7830 -mcs_touchkey -mct_u232 -mctp -md-cluster -md4 -mdc800 -mdev -mdio -mdio-bcm-unimac -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 -me4000 -me_daq -mediatek -mediatek-cpufreq -mediatek-cpufreq-hw -mediatek-drm -mediatek-drm-hdmi -mediatek-ge -megachips-stdpxxxx-ge-b850v3-fw -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -melfas_mip4 -memory-notifier-error-inject -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -menz69_wdt -meson-canvas -meson-drm -meson-gx-mmc -meson-gxl -meson-ir -meson-ir-tx -meson-mx-sdio -meson-rng -meson-vdec -meson_dw_hdmi -meson_gxbb_wdt -meson_nand -meson_saradc -meson_wdt -metro-usb -metronomefb -mf6x4 -mgag200 -mhi -mhi_net -mhi_pci_generic -mhi_wwan_ctrl -mhi_wwan_mbim -mi0283qt -michael_mic -micrel -microchip -microchip-tcb-capture -microchip_t1 -microread -microread_i2c -microtek -minix -mip6 -mipi-i3c-hci -mite -mk712 -mkiss -ml86v7667 -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx5_vdpa -mlx90614 -mlx90632 -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 -mma7455_core -mma7455_i2c -mma7455_spi -mma7660 -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_hsq -mmc_spi -mmcc-apq8084 -mmcc-msm8960 -mmcc-msm8974 -mmcc-msm8994 -mmcc-msm8996 -mmcc-msm8998 -mmcc-sdm660 -mms114 -mn88443x -mn88472 -mn88473 -mos7720 -mos7840 -most_cdev -most_core -most_dim2 -most_i2c -most_net -most_snd -most_usb -most_video -motorcomm -motorola-cpcap -moxa -moxtet -mp2629 -mp2629_adc -mp2629_charger -mp2888 -mp2975 -mp5416 -mp8859 -mp886x -mpc624 -mpi3mr -mpl115 -mpl115_i2c -mpl115_spi -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpq7920 -mpr121_touchkey -mpt3sas -mptbase -mptcp_diag -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mr75203 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -mscc -mscc_felix -mscc_ocelot -mscc_ocelot_switch_lib -mscc_seville -msdos -msg2638 -msi001 -msi2500 -msm -msp3400 -mspro_block -mss-sc7180 -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt312 -mt352 -mt6311-regulator -mt6315-regulator -mt6323-regulator -mt6358-regulator -mt6359-accdet -mt6359-regulator -mt6360-adc -mt6360-core -mt6360-regulator -mt6360_charger -mt6380-regulator -mt6397 -mt6397-regulator -mt6577_auxadc -mt6797-mt6351 -mt7530 -mt76 -mt76-connac-lib -mt76-sdio -mt76-usb -mt7601u -mt7603e -mt7615-common -mt7615e -mt7663-usb-sdio-common -mt7663s -mt7663u -mt76x0-common -mt76x02-lib -mt76x02-usb -mt76x0e -mt76x0u -mt76x2-common -mt76x2e -mt76x2u -mt7915e -mt7921e -mt8183-da7219-max98357 -mt8183-mt6358-ts3a227-max98357 -mt8192-mt6359-rt1015-rt5682 -mt8195-mt6359-rt1019-rt5682 -mt9m001 -mt9m032 -mt9m111 -mt9p031 -mt9t001 -mt9t112 -mt9v011 -mt9v032 -mt9v111 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdpstore -mtdram -mtdswap -mtip32xx -mtk-btcvsd -mtk-cir -mtk-cmdq-helper -mtk-cmdq-mailbox -mtk-cqdma -mtk-devapc -mtk-hsdma -mtk-pmic-keys -mtk-pmic-wrap -mtk-rng -mtk-sd -mtk-smi -mtk-uart-apdma -mtk-vpu -mtk_ecc -mtk_nand -mtk_rpmsg -mtk_scp -mtk_scp_ipi -mtk_thermal -mtk_wdt -mtouch -mtu3 -multipath -multiq3 -musb_hdrc -mux-adg792a -mux-adgs1408 -mux-core -mux-gpio -mux-mmio -mv88e6060 -mv88e6xxx -mv_u3d_core -mv_udc -mvmdio -mvneta -mvpp2 -mvsas -mvumi -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc-jpeg-encdec -mxc4005 -mxc6255 -mxc_nand -mxc_w1 -mxcmmc -mxic_nand -mxl-gpy -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxl5xx -mxl692 -mxser -mxsfb -mxuport -myrb -myri10ge -myrs -n5pf -n_gsm -n_hdlc -nand -nandcore -nandsim -national -natsemi -nau7802 -navman -nbd -nci -nci_spi -nci_uart -nct6683 -nct6775 -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -nd_virtio -ne2k-pci -neofb -net1080 -net2272 -net2280 -net_failover -netconsole -netdevsim -netfs -netjet -netlink_diag -netrom -netsec -netup-unidvb -netxen_nic -newtonkbd -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 -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfit -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 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -nhpoly1305 -nhpoly1305-neon -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_labpc -ni_labpc_common -ni_labpc_pci -ni_pcidio -ni_pcimio -ni_routes_test -ni_routing -ni_tio -ni_tiocmd -ni_usb6501 -nicpf -nicstar -nicvf -nilfs2 -niu -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 -noa1305 -noon010pc30 -nosy -notifier-error-inject -nouveau -nozomi -npcm750-pwm-fan -nps_enet -ns-thermal -ns558 -ns83820 -nsh -ntb -ntb_hw_epf -ntb_hw_idt -ntb_hw_switchtec -ntb_netdev -ntb_perf -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -ntfs3 -ntxec -null_blk -nuvoton-cir -nvec -nvec_kbd -nvec_paz00 -nvec_power -nvec_ps2 -nvidiafb -nvme -nvme-core -nvme-fabrics -nvme-fc -nvme-loop -nvme-rdma -nvme-tcp -nvmem-bcm-ocotp -nvmem-imx-iim -nvmem-imx-ocotp -nvmem-imx-ocotp-scu -nvmem-rave-sp-eeprom -nvmem-reboot-mode -nvmem-rmem -nvmem-rockchip-otp -nvmem-sc27xx-efuse -nvmem_meson_mx_efuse -nvmem_qcom-spmi-sdam -nvmem_qfprom -nvmem_rockchip_efuse -nvmem_snvs_lpgpr -nvmem_sprd_efuse -nvmem_sunxi_sid -nvmet -nvmet-fc -nvmet-rdma -nvmet-tcp -nwl-dsi -nxp-c45-tja11xx -nxp-nci -nxp-nci_i2c -nxp-ptn3460 -nxp-tja11xx -nxt200x -nxt6000 -nzxt-kraken2 -objagg -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocmem -ocrdma -octeontx-cpt -octeontx-cptvf -of-fpga-region -of_mmc_spi -of_pmem -of_xilinx_wdt -ofb -ofpart -ohci-platform -omap-mailbox -omap-rng -omap4-keypad -omap_hwspinlock -omfs -omninet -onenand -opencores-kbd -openvswitch -opt3001 -optee -optee-rng -opticon -option -or51132 -or51211 -orangefs -orinoco -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -oti6858 -otm3225a -ov02a10 -ov13858 -ov2640 -ov2659 -ov2680 -ov2685 -ov2740 -ov5640 -ov5645 -ov5647 -ov5648 -ov5670 -ov5675 -ov5695 -ov6650 -ov7251 -ov7640 -ov7670 -ov772x -ov7740 -ov8856 -ov8865 -ov9282 -ov9640 -ov9650 -ov9734 -overlay -owl-dma -owl-emac -owl-mmc -oxu210hp-hcd -p54common -p54pci -p54spi -p54usb -p8022 -pa12203001 -palmas-pwrbutton -palmas-regulator -palmas_gpadc -pandora_bl -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 -parser_trx -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_sis -pata_sl82c105 -pata_triflex -pata_via -pc300too -pc87360 -pc87427 -pca9450-regulator -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-epf-ntb -pci-meson -pci-pf-stub -pci-stub -pci200syn -pcie-brcmstb -pcie-iproc -pcie-iproc-platform -pcie-mediatek-gen3 -pcie-rockchip-host -pcie-tegra194 -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmcia_core -pcmcia_rsrc -pcmda12 -pcmmio -pcmuio -pcnet32 -pcrypt -pcs-lynx -pcs_xpcs -pcwd_pci -pcwd_usb -pda_power -pdc_adma -pdr_interface -peak_pci -peak_pciefd -peak_usb -pegasus -pegasus_notetaker -penmount -pf8x00-regulator -pfuze100-regulator -phantom -phonet -phram -phy-am654-serdes -phy-armada38x-comphy -phy-bcm-kona-usb2 -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-cpcap-usb -phy-exynos-usb2 -phy-fsl-imx8-mipi-dphy -phy-fsl-imx8mq-usb -phy-generic -phy-gmii-sel -phy-gpio-vbus-usb -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-isp1301 -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-pxa-28nm-hsic -phy-pxa-28nm-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-tahvo -phy-tegra-usb -phy-tegra-xusb -phy-tegra194-p2u -phy-tusb1210 -phy-zynqmp -phylink -physmap -pi3usb30532 -pi433 -pim4328 -pinctrl-apq8064 -pinctrl-apq8084 -pinctrl-axp209 -pinctrl-da9062 -pinctrl-imx8ulp -pinctrl-ipq4019 -pinctrl-ipq6018 -pinctrl-ipq8064 -pinctrl-ipq8074 -pinctrl-keembay -pinctrl-lochnagar -pinctrl-lpass-lpi -pinctrl-madera -pinctrl-max77620 -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-spmi-gpio -pinctrl-spmi-mpp -pinctrl-ssbi-gpio -pinctrl-ssbi-mpp -pinctrl-stmfx -pinctrl-zynqmp -ping -pistachio-internal-dac -pixcir_i2c_ts -pkcs7_test_key -pkcs8_key_parser -pktcdvd -pktgen -pl111_drm -pl172 -pl2303 -pl330 -plat-ram -plat_nand -platform_lcd -platform_mhu -platform_profile -plip -plusb -pluto2 -plx_dma -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm6764tr -pm80xx -pm8916_wdt -pm8941-pwrkey -pm8xxx-vibrator -pmbus -pmbus_core -pmc551 -pmcraid -pms7003 -pn532_uart -pn533 -pn533_i2c -pn533_usb -pn544 -pn544_i2c -pn_pep -poly1305-neon -poly1305_generic -port100 -powermate -powr1220 -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_parport -pptp -prestera -prestera_pci -pretimeout_panic -prism2_usb -pru_rproc -pruss -ps2-gpio -ps2mult -psample -psmouse -psnap -pstore_blk -pstore_zone -psxpad-spi -ptp-qoriq -ptp_clockmatrix -ptp_dte -ptp_idt82p33 -ptp_ines -ptp_kvm -ptp_ocp -pulse8-cec -pulsedlight-lidar-lite-v2 -pv88060-regulator -pv88080-regulator -pv88090-regulator -pvcalls-front -pvpanic -pvpanic-mmio -pvpanic-pci -pvrusb2 -pwc -pwm-atmel-hlcdc -pwm-atmel-tcb -pwm-bcm-iproc -pwm-bcm2835 -pwm-beeper -pwm-berlin -pwm-brcmstb -pwm-cros-ec -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-twl -pwm-twl-led -pwm-vibra -pwm-visconti -pwm_bl -pwrseq_emmc -pwrseq_sd8787 -pwrseq_simple -pxa168_eth -pxa27x_udc -pxe1610 -pxrc -q54sj108a2 -q6adm -q6afe -q6afe-clocks -q6afe-dai -q6asm -q6asm-dai -q6core -q6dsp-common -q6routing -q6sstop-qcs404 -qca8k -qca_7k_common -qcaspi -qcauart -qcaux -qcom-apcs-ipc-mailbox -qcom-camss -qcom-coincell -qcom-cpufreq-hw -qcom-cpufreq-nvmem -qcom-emac -qcom-geni-se -qcom-labibb-regulator -qcom-pm8008 -qcom-pmic-typec -qcom-pon -qcom-rng -qcom-rpmh-regulator -qcom-spmi-adc-tm5 -qcom-spmi-adc5 -qcom-spmi-iadc -qcom-spmi-pmic -qcom-spmi-temp-alarm -qcom-spmi-vadc -qcom-vadc-common -qcom-wdt -qcom-wled -qcom_aoss -qcom_common -qcom_edac -qcom_geni_serial -qcom_glink -qcom_glink_rpm -qcom_glink_smem -qcom_gsbi -qcom_hwspinlock -qcom_nandc -qcom_pil_info -qcom_q6v5 -qcom_q6v5_adsp -qcom_q6v5_mss -qcom_q6v5_pas -qcom_q6v5_wcss -qcom_rpm -qcom_rpm-regulator -qcom_smbb -qcom_smd -qcom_smd-regulator -qcom_spmi-regulator -qcom_sysmon -qcom_tsens -qcom_usb_vbus-regulator -qcomsmempart -qcrypto -qcserial -qed -qede -qedf -qedi -qedr -qemu_fw_cfg -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qm1d1b0004 -qm1d1c0042 -qmi_helpers -qmi_wwan -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 -qsemi -qt1010 -qt1050 -qt1070 -qt2160 -qtnfmac -qtnfmac_pcie -quatech2 -quota_tree -quota_v1 -quota_v2 -qwiic-joystick -qxl -r592 -r6040 -r8152 -r8153_ecm -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723bs -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si470x-common -radio-si470x-i2c -radio-si470x-usb -radio-si476x -radio-tea5764 -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid_class -rainshadow-cec -ramoops -raspberrypi-cpufreq -raspberrypi-hwmon -raspberrypi-ts -ravb -rave-sp -rave-sp-backlight -rave-sp-pwrbutton -rave-sp-wdt -raw_diag -raw_gadget -raydium_i2c_ts -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 -rc5t583-regulator -rcar-csi2 -rcar-dmac -rcar-du-drm -rcar-fcp -rcar-vin -rcar_can -rcar_canfd -rcar_cmm -rcar_drif -rcar_dw_hdmi -rcar_fdp1 -rcar_gen3_thermal -rcar_jpu -rcar_lvds -rcar_thermal -rdacm20 -rdacm21 -rdc321x-southbridge -rdma_cm -rdma_rxe -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -realtek-smi -reboot-mode -redboot -redrat3 -reed_solomon -regmap-ac97 -regmap-i3c -regmap-sccb -regmap-sdw -regmap-sdw-mbq -regmap-slimbus -regmap-spi-avmm -regmap-spmi -regmap-w1 -regulator-haptic -reiserfs -renesas-rpc-if -renesas_sdhi_core -renesas_sdhi_internal_dmac -renesas_sdhi_sys_dmac -renesas_usb3 -renesas_usbhs -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 -resistive-adc-touch -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd77402 -rfd_ftl -rfkill-gpio -rio-scan -rio_cm -rio_mport_cdev -rionet -rivafb -rj54n1cb0c -rk3399_dmc -rk805-pwrkey -rk808 -rk808-regulator -rk_crypto -rm3100-core -rm3100-i2c -rm3100-spi -rmd160 -rmi_core -rmi_i2c -rmi_smbus -rmi_spi -rmnet -rmtfs_mem -rn5t618 -rn5t618-adc -rn5t618-regulator -rn5t618_power -rn5t618_wdt -rnbd-client -rnbd-server -rndis_host -rndis_wlan -rockchip -rockchip-dfi -rockchip-isp1 -rockchip-nand-controller -rockchip-rga -rockchip-vdec -rockchip_saradc -rockchip_thermal -rockchipdrm -rocker -rohm-bd70528 -rohm-bd71828 -rohm-bd718x7 -rohm-bd9576 -rohm-regulator -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpi-panel-attiny-regulator -rpmpd -rpmsg_char -rpmsg_core -rpmsg_ns -rpmsg_wwan_ctrl -rpr0521 -rsi_91x -rsi_sdio -rsi_usb -rsmu-i2c -rsmu-spi -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt4801-regulator -rt4831 -rt4831-backlight -rt4831-regulator -rt5033 -rt5033-regulator -rt5033_battery -rt6160-regulator -rt61pci -rt6245-regulator -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab-eoz9 -rtc-abx80x -rtc-armada38x -rtc-as3722 -rtc-bd70528 -rtc-bq32k -rtc-bq4802 -rtc-brcmstb-waketimer -rtc-cadence -rtc-cpcap -rtc-cros-ec -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1302 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-em3027 -rtc-fm3130 -rtc-fsl-ftm-alarm -rtc-ftrtc010 -rtc-goldfish -rtc-hid-sensor-time -rtc-hym8563 -rtc-imx-sc -rtc-imxdi -rtc-isl12022 -rtc-isl12026 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max6916 -rtc-max77686 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-meson-vrtc -rtc-msm6242 -rtc-mt2712 -rtc-mt6397 -rtc-mt7622 -rtc-mxc -rtc-mxc_v2 -rtc-ntxec -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf85363 -rtc-pcf8563 -rtc-pcf8583 -rtc-pl030 -rtc-pl031 -rtc-pm8xxx -rtc-r7301 -rtc-r9701 -rtc-rc5t583 -rtc-rc5t619 -rtc-rk808 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3028 -rtc-rv3029c2 -rtc-rv3032 -rtc-rv8803 -rtc-rx4581 -rtc-rx6110 -rtc-rx8010 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-sc27xx -rtc-sd3078 -rtc-sh -rtc-snvs -rtc-stk17ta8 -rtc-tegra -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-twl -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtc-zynqmp -rtd520 -rti800 -rti802 -rti_wdt -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rtmv20-regulator -rtq2134-regulator -rtq6752-regulator -rtrs-client -rtrs-core -rtrs-server -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rtw88_8723d -rtw88_8723de -rtw88_8821c -rtw88_8821ce -rtw88_8822b -rtw88_8822be -rtw88_8822c -rtw88_8822ce -rtw88_core -rtw88_pci -rtw89_core -rtw89_pci -rvu_af -rvu_cptpf -rvu_cptvf -rvu_mbox -rvu_nicpf -rvu_nicvf -rx51_battery -rxrpc -rz-dmac -rza_wdt -rzg2l_adc -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s3fwrn82_uart -s526 -s5c73m3 -s5h1409 -s5h1411 -s5h1420 -s5h1432 -s5k4ecgx -s5k5baf -s5k6a3 -s5k6aa -s5m8767 -s626 -s6sy761 -s921 -sa2ul -saa6588 -saa6752hs -saa7110 -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7185 -saa7706h -safe_serial -sahara -sample-trace-array -samsung-keypad -samsung-sxgbe -samsung_tty -sata_dwc_460ex -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_rcar -sata_sil -sata_sil24 -sata_sis -sata_svw -sata_sx4 -sata_uli -sata_via -sata_vsc -savagefb -sb1000 -sbp_target -sbrmi -sbs-battery -sbs-charger -sbs-manager -sbsa_gwdt -sbtsi_temp -sc16is7xx -sc2731-regulator -sc2731_charger -sc27xx-poweroff -sc27xx-vibra -sc27xx_adc -sc27xx_fuel_gauge -sc92031 -sc9860-clk -sc9863a-clk -sca3000 -sca3300 -scd30_core -scd30_i2c -scd30_serial -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_iio -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_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_diag -sd_adc_modulator -sdhci -sdhci-acpi -sdhci-brcmstb -sdhci-cadence -sdhci-esdhc-imx -sdhci-iproc -sdhci-milbeaut -sdhci-msm -sdhci-of-arasan -sdhci-of-aspeed -sdhci-of-at91 -sdhci-of-dwcmshc -sdhci-of-esdhc -sdhci-of-sparx5 -sdhci-omap -sdhci-pci -sdhci-pltfm -sdhci-pxav3 -sdhci-sprd -sdhci-tegra -sdhci-xenon-driver -sdhci_am654 -sdhci_f_sdh30 -sdio_uart -sensorhub -serial-tegra -serial_ir -serio_raw -sermouse -serpent_generic -serport -ses -sf-pdma -sfc -sfc-falcon -sfp -sgi_w1 -sgp30 -sgp40 -sh_eth -sh_mmcif -sh_mobile_lcdcfb -sha1-ce -sha2-ce -sha256-arm64 -sha3-ce -sha3_generic -sha512-arm64 -sha512-ce -shark2 -shiftfs -sht15 -sht21 -sht3x -sht4x -shtc1 -si1133 -si1145 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sifive -sii902x -sii9234 -sil-sii8620 -sil164 -silead -simple-bridge -simple-mfd-i2c -simpledrm -simplefb -siox-bus-gpio -siox-core -sir_ir -sis190 -sis5595 -sis900 -sis_i2c -sisfb -sisusbvga -sit -siw -sja1000 -sja1000_isa -sja1000_platform -sja1105 -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl28cpld-hwmon -sl28cpld_wdt -sl811-hcd -slcan -slg51000-regulator -slic_ds26522 -slicoss -slim-qcom-ctrl -slim-qcom-ngd-ctrl -slimbus -slip -slram -sm2_generic -sm3-ce -sm3_generic -sm4-ce -sm4_generic -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smartpqi -smb347-charger -smc -smc_diag -smd-rpm -smem -smipcie -smm665 -smp2p -smsc -smsc47b397 -smsc47m1 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsm -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als300 -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt3328 -snd-bcd2000 -snd-bcm2835 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-compress -snd-cs4281 -snd-cs46xx -snd-cs8427 -snd-ctl-led -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1938 -snd-es1968 -snd-fireface -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-motu -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-cs8409 -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-intel -snd-hda-scodec-cs35l41 -snd-hda-scodec-cs35l41-i2c -snd-hda-scodec-cs35l41-spi -snd-hda-tegra -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel-dspcfg -snd-intel-sdw-acpi -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-lx6464es -snd-maestro3 -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm -snd-pcm-dmaengine -snd-pcxhr -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-63xx -snd-soc-ac97 -snd-soc-acp-da7219mx98357-mach -snd-soc-acp-rt5645-mach -snd-soc-adau-utils -snd-soc-adau1372 -snd-soc-adau1372-i2c -snd-soc-adau1372-spi -snd-soc-adau1701 -snd-soc-adau1761 -snd-soc-adau1761-i2c -snd-soc-adau1761-spi -snd-soc-adau17x1 -snd-soc-adau7002 -snd-soc-adau7118 -snd-soc-adau7118-hw -snd-soc-adau7118-i2c -snd-soc-adi-axi-i2s -snd-soc-adi-axi-spdif -snd-soc-ak4104 -snd-soc-ak4118 -snd-soc-ak4458 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-ak5558 -snd-soc-alc5623 -snd-soc-alc5632 -snd-soc-apq8016-sbc -snd-soc-apq8096 -snd-soc-armada-370-db -snd-soc-audio-graph-card -snd-soc-bcm2835-i2s -snd-soc-bd28623 -snd-soc-bt-sco -snd-soc-core -snd-soc-cpcap -snd-soc-cros-ec-codec -snd-soc-cs35l32 -snd-soc-cs35l33 -snd-soc-cs35l34 -snd-soc-cs35l35 -snd-soc-cs35l36 -snd-soc-cs35l41 -snd-soc-cs35l41-i2c -snd-soc-cs35l41-lib -snd-soc-cs35l41-spi -snd-soc-cs4234 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l42 -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs43130 -snd-soc-cs4341 -snd-soc-cs4349 -snd-soc-cs53l30 -snd-soc-cx2072x -snd-soc-da7213 -snd-soc-da7219 -snd-soc-davinci-mcasp -snd-soc-dmic -snd-soc-es7134 -snd-soc-es7241 -snd-soc-es8316 -snd-soc-es8328 -snd-soc-es8328-i2c -snd-soc-es8328-spi -snd-soc-fsi -snd-soc-fsl-asoc-card -snd-soc-fsl-asrc -snd-soc-fsl-aud2htx -snd-soc-fsl-audmix -snd-soc-fsl-easrc -snd-soc-fsl-esai -snd-soc-fsl-micfil -snd-soc-fsl-mqs -snd-soc-fsl-rpmsg -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-fsl-xcvr -snd-soc-gtm601 -snd-soc-hdmi-codec -snd-soc-ics43432 -snd-soc-imx-audmix -snd-soc-imx-audmux -snd-soc-imx-card -snd-soc-imx-es8328 -snd-soc-imx-hdmi -snd-soc-imx-rpmsg -snd-soc-imx-sgtl5000 -snd-soc-imx-spdif -snd-soc-inno-rk3036 -snd-soc-j721e-evm -snd-soc-kirkwood -snd-soc-kmb_platform -snd-soc-lochnagar-sc -snd-soc-lpass-apq8016 -snd-soc-lpass-cpu -snd-soc-lpass-hdmi -snd-soc-lpass-ipq806x -snd-soc-lpass-platform -snd-soc-lpass-rx-macro -snd-soc-lpass-sc7180 -snd-soc-lpass-tx-macro -snd-soc-lpass-va-macro -snd-soc-lpass-wsa-macro -snd-soc-max9759 -snd-soc-max98088 -snd-soc-max98090 -snd-soc-max98357a -snd-soc-max98373 -snd-soc-max98373-i2c -snd-soc-max98373-sdw -snd-soc-max98390 -snd-soc-max98504 -snd-soc-max9860 -snd-soc-max9867 -snd-soc-max98927 -snd-soc-meson-aiu -snd-soc-meson-axg-fifo -snd-soc-meson-axg-frddr -snd-soc-meson-axg-pdm -snd-soc-meson-axg-sound-card -snd-soc-meson-axg-spdifin -snd-soc-meson-axg-spdifout -snd-soc-meson-axg-tdm-formatter -snd-soc-meson-axg-tdm-interface -snd-soc-meson-axg-tdmin -snd-soc-meson-axg-tdmout -snd-soc-meson-axg-toddr -snd-soc-meson-card-utils -snd-soc-meson-codec-glue -snd-soc-meson-g12a-toacodec -snd-soc-meson-g12a-tohdmitx -snd-soc-meson-gx-sound-card -snd-soc-meson-t9015 -snd-soc-mikroe-proto -snd-soc-msm8916-analog -snd-soc-msm8916-digital -snd-soc-mt6351 -snd-soc-mt6358 -snd-soc-mt6359 -snd-soc-mt6660 -snd-soc-mt6797-afe -snd-soc-mt8183-afe -snd-soc-mt8192-afe -snd-soc-mt8195-afe -snd-soc-mtk-common -snd-soc-nau8315 -snd-soc-nau8540 -snd-soc-nau8810 -snd-soc-nau8822 -snd-soc-nau8824 -snd-soc-pcm1681 -snd-soc-pcm1789-codec -snd-soc-pcm1789-i2c -snd-soc-pcm179x-codec -snd-soc-pcm179x-i2c -snd-soc-pcm179x-spi -snd-soc-pcm186x -snd-soc-pcm186x-i2c -snd-soc-pcm186x-spi -snd-soc-pcm3060 -snd-soc-pcm3060-i2c -snd-soc-pcm3060-spi -snd-soc-pcm3168a -snd-soc-pcm3168a-i2c -snd-soc-pcm3168a-spi -snd-soc-pcm5102a -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-qcom-common -snd-soc-rcar -snd-soc-rk3288-hdmi-analog -snd-soc-rk3328 -snd-soc-rk3399-gru-sound -snd-soc-rk817 -snd-soc-rl6231 -snd-soc-rockchip-i2s -snd-soc-rockchip-max98090 -snd-soc-rockchip-pcm -snd-soc-rockchip-pdm -snd-soc-rockchip-rt5645 -snd-soc-rockchip-spdif -snd-soc-rt1015 -snd-soc-rt1015p -snd-soc-rt1308-sdw -snd-soc-rt1316-sdw -snd-soc-rt5514 -snd-soc-rt5514-spi -snd-soc-rt5616 -snd-soc-rt5631 -snd-soc-rt5640 -snd-soc-rt5645 -snd-soc-rt5659 -snd-soc-rt5663 -snd-soc-rt5677 -snd-soc-rt5677-spi -snd-soc-rt5682 -snd-soc-rt5682-i2c -snd-soc-rt5682-sdw -snd-soc-rt700 -snd-soc-rt711 -snd-soc-rt711-sdca -snd-soc-rt715 -snd-soc-rt715-sdca -snd-soc-rz-ssi -snd-soc-sc7180 -snd-soc-sdm845 -snd-soc-sdw-mockup -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-sigmadsp-regmap -snd-soc-simple-amplifier -snd-soc-simple-card -snd-soc-simple-card-utils -snd-soc-simple-mux -snd-soc-sm8250 -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-sprd-platform -snd-soc-ssm2305 -snd-soc-ssm2518 -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-storm -snd-soc-tas2552 -snd-soc-tas2562 -snd-soc-tas2764 -snd-soc-tas2770 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tas5720 -snd-soc-tas6424 -snd-soc-tda7419 -snd-soc-tegra-audio-graph-card -snd-soc-tegra-machine -snd-soc-tegra-pcm -snd-soc-tegra-wm8903 -snd-soc-tegra186-dspk -snd-soc-tegra20-ac97 -snd-soc-tegra20-das -snd-soc-tegra20-i2s -snd-soc-tegra20-spdif -snd-soc-tegra210-admaif -snd-soc-tegra210-ahub -snd-soc-tegra210-dmic -snd-soc-tegra210-i2s -snd-soc-tegra30-ahub -snd-soc-tegra30-i2s -snd-soc-tfa9879 -snd-soc-tfa989x -snd-soc-ti-edma -snd-soc-ti-sdma -snd-soc-ti-udma -snd-soc-tlv320adcx140 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic32x4 -snd-soc-tlv320aic32x4-i2c -snd-soc-tlv320aic32x4-spi -snd-soc-tlv320aic3x -snd-soc-tlv320aic3x-i2c -snd-soc-tlv320aic3x-spi -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-tscs42xx -snd-soc-tscs454 -snd-soc-uda1334 -snd-soc-wcd-mbhc -snd-soc-wcd9335 -snd-soc-wcd934x -snd-soc-wcd938x -snd-soc-wcd938x-sdw -snd-soc-wm-adsp -snd-soc-wm-hubs -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8524 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8782 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8904 -snd-soc-wm8960 -snd-soc-wm8962 -snd-soc-wm8974 -snd-soc-wm8978 -snd-soc-wm8985 -snd-soc-wm8994 -snd-soc-wm9712 -snd-soc-wsa881x -snd-soc-xlnx-formatter-pcm -snd-soc-xlnx-i2s -snd-soc-xlnx-spdif -snd-soc-xtfpga-i2s -snd-soc-zl38060 -snd-sof -snd-sof-imx8 -snd-sof-imx8m -snd-sof-of -snd-sof-xtensa-dsp -snd-sonicvibes -snd-timer -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-variax -snd-usbmidi-lib -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-ymfpci -snd_xen_front -snic -snps_udc_core -snps_udc_plat -snvs_pwrkey -soc_button_array -socfpga -socfpga-a10 -socinfo -softdog -softing -solo6x10 -solos-pci -sony-btf-mpx -soundcore -soundwire-bus -soundwire-cadence -soundwire-generic-allocation -soundwire-intel -soundwire-qcom -sp2 -sp805_wdt -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -sparx5-switch -sparx5-temp -sparx5_serdes -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -speedfax -speedtch -spi-altera-core -spi-altera-dfl -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-dln2 -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-nor -spi-nxp-fspi -spi-oc-tiny -spi-orion -spi-pl022 -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-qcom-qspi -spi-qup -spi-rockchip -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 -spi_ks8995 -spidev -spinand -spl -spmi -spmi-pmic-arb -sprd-dma -sprd-iommu -sprd-mailbox -sprd-mcdt -sprd-sc27xx-spi -sprd_hwspinlock -sprd_serial -sprd_thermal -sprd_wdt -sps30 -sps30_i2c -sps30_serial -sr-thermal -sr030pc30 -sr9700 -sr9800 -srf04 -srf08 -ssb -ssb-hcd -ssd1307fb -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -sstfb -ssu100 -st -st-mipid02 -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st7586 -st7735r -st95hf -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_lsm6dsx -st_lsm6dsx_i2c -st_lsm6dsx_i3c -st_lsm6dsx_spi -st_lsm9ds0 -st_lsm9ds0_i2c -st_lsm9ds0_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -st_uvis25_core -st_uvis25_i2c -st_uvis25_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -stex -stinger -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stm_ftrace -stm_heartbeat -stm_p_basic -stm_p_sys-t -stmfts -stmfx -stmmac -stmmac-pci -stmmac-platform -stmpe-adc -stmpe-keypad -stmpe-ts -stowaway -stp -stpddc60 -stpmic1 -stpmic1_onkey -stpmic1_regulator -stpmic1_wdt -stratix10-rsu -stratix10-soc -stratix10-svc -streamzap -streebog_generic -stts751 -stusb160x -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv0910 -stv6110 -stv6110x -stv6111 -sun4i-backend -sun4i-csi -sun4i-drm -sun4i-drm-hdmi -sun4i-frontend -sun4i-gpadc -sun4i-ss -sun4i-tcon -sun4i_tv -sun50i-codec-analog -sun50i-cpufreq-nvmem -sun6i-csi -sun6i-dma -sun6i_drc -sun6i_hwspinlock -sun6i_mipi_dsi -sun8i-adda-pr-regmap -sun8i-ce -sun8i-codec -sun8i-codec-analog -sun8i-di -sun8i-drm-hdmi -sun8i-mixer -sun8i-rotate -sun8i-ss -sun8i_tcon_top -sun8i_thermal -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sunxi -sunxi-cedrus -sunxi-cir -sunxi-mmc -sunxi-rsb -sunxi_wdt -sur40 -surface3_spi -surface_acpi_notify -surface_aggregator -surface_aggregator_cdev -surface_aggregator_registry -surface_battery -surface_charger -surface_dtx -surface_gpe -surface_hid -surface_hid_core -surface_hotplug -surface_kbd -surface_platform_profile -svc-i3c-master -svgalib -switchtec -sx8654 -sx9310 -sx9500 -sy8106a-regulator -sy8824x -sy8827n -sym53c8xx -symbolserial -synaptics_i2c -synaptics_usb -synclink_gt -synopsys_edac -syscon-reboot-mode -syscopyarea -sysfillrect -sysimgblt -sysv -t5403 -tag_ar9331 -tag_brcm -tag_dsa -tag_gswip -tag_hellcreek -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 -tc-dwc-g210 -tc-dwc-g210-pci -tc-dwc-g210-pltfrm -tc358743 -tc358762 -tc358764 -tc358767 -tc358768 -tc358775 -tc3589x-keypad -tc654 -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcan4x5x -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -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 -tcpci -tcpci_maxim -tcpci_mt6360 -tcpci_rt1711h -tcpm -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18250 -tda18271 -tda18271c2dd -tda1997x -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda9950 -tda998x -tdfxfb -tdo24m -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tee -tee_bnxt_fw -tef6862 -tegra-aconnect -tegra-bpmp-thermal -tegra-drm -tegra-gmi -tegra-kbc -tegra-vde -tegra-video -tegra-xudc -tegra186-cpufreq -tegra194-cpufreq -tegra210-adma -tegra210-emc -tegra30-devfreq -tegra_cec -tegra_nand -tegra_wdt -tehuti -teranetics -test_blackhole_dev -test_bpf -test_div64 -test_power -tg3 -thc63lvd1024 -thermal-generic-adc -thermal_mmio -thmc50 -ths7303 -ths8200 -thunder_bgx -thunder_xcv -thunderbolt -thunderbolt-net -thunderx-mmc -thunderx2_pmu -thunderx_edac -thunderx_zip -ti-adc081c -ti-adc0832 -ti-adc084s021 -ti-adc108s102 -ti-adc12138 -ti-adc128s052 -ti-adc161s626 -ti-ads1015 -ti-ads124s08 -ti-ads131e08 -ti-ads7950 -ti-ads8344 -ti-ads8688 -ti-am65-cpsw-nuss -ti-cal -ti-dac082s085 -ti-dac5571 -ti-dac7311 -ti-dac7612 -ti-j721e-ufs -ti-lmu -ti-sn65dsi83 -ti-sn65dsi86 -ti-tfp410 -ti-tlc4541 -ti-tpd12s015 -ti-tsc2046 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_k3_dsp_remoteproc -ti_k3_r5_remoteproc -ti_sci_pm_domains -ti_usb_3410_5052 -tidss -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timeriomem-rng -tipc -tlan -tls -tlv320aic23b -tm2-touchkey -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmio_mmc_core -tmp006 -tmp007 -tmp102 -tmp103 -tmp108 -tmp117 -tmp401 -tmp421 -tmp513 -toshsd -touchit213 -touchright -touchwin -tpci200 -tpl0102 -tpm_atmel -tpm_ftpm_tee -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_infineon -tpm_key_parser -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tpm_tis_i2c_cr50 -tpm_tis_spi -tpm_tis_synquacer -tpm_vtpm_proxy -tps23861 -tps40422 -tps51632-regulator -tps53679 -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65086 -tps65086-regulator -tps65090-charger -tps65090-regulator -tps65132-regulator -tps65217 -tps65217-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps65218-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps6598x -tps80031-regulator -tqmx86 -trace-printk -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2591 -tsl2772 -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -ttynull -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -turingcc-qcs404 -turris-mox-rwtm -tvaudio -tveeprom -tvp514x -tvp5150 -tvp7002 -tw2804 -tw5864 -tw68 -tw686x -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6030-regulator -twl6040-vibra -twofish_common -twofish_generic -typec -typec_displayport -typec_nvidia -typec_ucsi -typhoon -u132-hcd -uPD60620 -u_audio -u_ether -u_serial -uacce -uartlite -uas -ubi -ubifs -ubuntu-host -ucan -ucb1400_core -ucb1400_ts -ucc_uart -ucd9000 -ucd9200 -ucs1002_power -ucsi_acpi -ucsi_ccg -uda1342 -udc-core -udc-xilinx -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufs-hisi -ufs-mediatek -ufs_qcom -ufshcd-core -ufshcd-dwc -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dfl -uio_dmem_genirq -uio_hv_generic -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uleds -uli526x -ulpi -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -unix_diag -upd64031a -upd64083 -upd78f0730 -us5182d -usb-conn-gpio -usb-dmac -usb-serial-simple -usb-storage -usb251xb -usb3503 -usb4604 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_tcm -usb_f_uac1 -usb_f_uac1_legacy -usb_f_uac2 -usb_f_uvc -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbip-vudc -usbkbd -usblcd -usblp -usbmisc_imx -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usdhi6rol0 -userio -userspace-consumer -ushc -uss720 -uvcvideo -uvesafb -v4l2-async -v4l2-dv-timings -v4l2-flash-led-class -v4l2-fwnode -v4l2-h264 -v4l2-jpeg -v4l2-mem2mem -v4l2-tpg -vc4 -vcan -vchiq -vcnl3020 -vcnl4000 -vcnl4035 -vctrl-regulator -vdpa -vdpa_sim -vdpa_sim_blk -vdpa_sim_net -vduse -veml6030 -veml6070 -venus-core -venus-dec -venus-enc -versal-fpga -ves1820 -ves1x93 -veth -vexpress-hwmon -vexpress-regulator -vf610_adc -vf610_dac -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 -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_iotlb -vhost_net -vhost_scsi -vhost_vdpa -vhost_vsock -via-rhine -via-sdmmc -via-velocity -via686a -vicodec -video-i2c -video-mux -videobuf-core -videobuf-dma-sg -videobuf-vmalloc -videobuf2-common -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videocc-sc7180 -videocc-sc7280 -videocc-sdm845 -videocc-sm8150 -videocc-sm8250 -videocodec -videodev -vim2m -vimc -viperboard -viperboard_adc -virt_wifi -virtio-gpu -virtio-rng -virtio_blk -virtio_bt -virtio_crypto -virtio_dma_buf -virtio_input -virtio_net -virtio_pmem -virtio_rpmsg_bus -virtio_scsi -virtio_snd -virtio_vdpa -virtiofs -virtual -virtual_ncidev -visconti_wdt -visor -vitesse -vitesse-vsc73xx-core -vitesse-vsc73xx-platform -vitesse-vsc73xx-spi -vivid -vkms -vl53l0x-i2c -vl6180 -vmac -vme_fake -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -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 -vs6624 -vsock -vsock_diag -vsock_loopback -vsockmon -vsp1 -vsxxxaa -vt1211 -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxcan -vxge -vxlan -vz89x -w1-gpio -w1_ds2405 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2430 -w1_ds2431 -w1_ds2433 -w1_ds2438 -w1_ds250x -w1_ds2780 -w1_ds2781 -w1_ds2805 -w1_ds28e04 -w1_ds28e17 -w1_smem -w1_therm -w5100 -w5100-spi -w5300 -w6692 -w83627ehf -w83627hf -w83773g -w83781d -w83791d -w83792d -w83793 -w83795 -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -walkera0701 -wanxl -warrior -wcd934x -wcn36xx -wcnss_ctrl -wd719x -wdat_wdt -wdt87xx_i2c -wdt_pci -wfx -whiteheat -wil6210 -wilc1000 -wilc1000-sdio -wilc1000-spi -winbond-840 -wire -wireguard -wishbone-serial -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994 -wm8994-regulator -wm97xx-ts -wp512 -wwan -wwan_hwsim -x25 -x_tables -xbox_remote -xc4000 -xc5000 -xcbc -xdpe12284 -xen-blkback -xen-evtchn -xen-fbfront -xen-front-pgdir-shbuf -xen-gntalloc -xen-gntdev -xen-kbdfront -xen-netback -xen-privcmd -xen-scsiback -xen-scsifront -xen-tpmfront -xen_wdt -xenfs -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-pci -xhci-pci-renesas -xhci-plat-hcd -xhci-tegra -xilinx-csi2rxss -xilinx-pr-decoupler -xilinx-spi -xilinx-tpg -xilinx-video -xilinx-vtc -xilinx-xadc -xilinx_can -xilinx_dma -xilinx_dpdma -xilinx_emac -xilinx_emaclite -xilinx_gmii2rgmii -xilinx_sdfec -xilinx_uartps -xilinxfb -xillybus_class -xillybus_core -xillybus_of -xillybus_pcie -xillyusb -xiphera-trng -xircom_cb -xlnx_vcu -xor -xor-neon -xpad -xr_serial -xrs700x -xrs700x_i2c -xrs700x_mdio -xsens_mt -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 -xtkbd -xusbatm -xxhash_generic -xz_dec_test -yam -yamaha-yas530 -yealink -yellowfin -yenta_socket -yurex -z3fold -zaurus -zavl -zcommon -zd1201 -zd1211rw -zd1301 -zd1301_demod -zet6223 -zforce_ts -zfs -zhenhua -ziirave_wdt -zinitix -zl10036 -zl10039 -zl10353 -zl6100 -zlua -znvpair -zonefs -zopt2201 -zpa2326 -zpa2326_i2c -zpa2326_spi -zr36016 -zr36050 -zr36060 -zr36067 -zr364xx -zram -zstd -zstd_compress -zunicode -zynqmp-aes-gcm -zynqmp-dpsub -zynqmp-fpga -zynqmp_dma -zzstd reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/arm64/generic-64k.modules.builtin +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/arm64/generic-64k.modules.builtin @@ -1,470 +0,0 @@ -8250 -8250_base -8250_dw -8250_mtk -8250_of -8250_omap -8250_pci -8250_tegra -88pm860x -ac -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 -armmmci -as3722 -as3722-poweroff -asiliantfb -asn1_decoder -asn1_encoder -asymmetric_keys -atkbd -axg -axg-aoclk -backlight -battery -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 -charger-manager -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 -cma_heap -cmd-db -cn -compat_binfmt_elf -configfs -cpufreq-dt -cpufreq_conservative -cpufreq_ondemand -cpufreq_performance -cpufreq_powersave -cpufreq_userspace -crc-ccitt -crc-t10dif -crc16 -crc32 -crc32c_generic -crc8 -crct10dif_common -crct10dif_generic -crypto -crypto_acompress -crypto_algapi -crypto_hash -crypto_null -cryptomgr -ctr -cts -da903x -da9052-core -da9052-i2c -da9052-spi -da9055 -da9063 -davinci_mdio -dax -deflate -dh_generic -digsig -dm-mod -dns_resolver -drbg -drm_mipi_dsi -drm_panel_orientation_quirks -drop_monitor -dwc2 -ecb -ecryptfs -edac_core -efivarfs -ehci-hcd -ehci-orion -ehci-pci -encrypted-keys -evdev -exportfs -ext4 -extcon-core -ezx-pcap -fan -fat -fb -fddi -fec -firmware_class -fixed_phy -font -freq_table -fsl_dpaa_fman -fsl_dpaa_fman_port -fsl_dpaa_mac -fsl_ifc -fuse -fwnode_mdio -g12a -g12a-aoclk -gcm -geniv -gf128mul -ghash-generic -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 -hwmon -hwspinlock_core -i2c-core -i2c-designware-core -i2c-designware-platform -i2c-dev -i2c-omap -i2c-sprd -icc-core -imsttfb -imx -imx-scu -imx-weim -input-core -ioasid -iova -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 -led-class -libaes -libahci -libahci_platform -libata -libblake2s -libnvdimm -libphy -libps2 -libsha256 -linear_ranges -loop -lp8788 -ltc2952-poweroff -lz4_decompress -lzo -lzo-rle -lzo_compress -lzo_decompress -max14577 -max310x -max77686 -max77693 -mbcache -md-mod -md5 -mdio-bitbang -mdio-mux -mdio-mux-bcm-iproc -mdio_devres -meson-aoclk -meson-clk-measure -meson-ee-pwrc -meson-eeclk -meson-gx-pwrc-vpu -meson_uart -mfd-core -mii -mmc_block -mmc_core -mousedev -mpi -mq-deadline -msm_serial -mt6323-poweroff -mtk-eint -mv_xor_v2 -mx3fb -mxc-clk -n_null -nfs_ssc -nls_base -nls_cp437 -nvmem_core -nvmem_zynqmp_nvmem -of_mdio -ohci-hcd -ohci-pci -oid_registry -owl-uart -packing -palmas -pci-aardvark -pci-ep-cfs -pci-epc-core -pci-epc-mem -pci-epf-core -pci-host-common -pci-host-generic -pci-tegra -pcie-altera -pcie-altera-msi -pcie-hisi-error -pcie-histb -pcie-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-amd -pinctrl-as3722 -pinctrl-imx -pinctrl-imx8dxl -pinctrl-imx8mm -pinctrl-imx8mn -pinctrl-imx8mp -pinctrl-imx8mq -pinctrl-imx8qm -pinctrl-imx8qxp -pinctrl-meson -pinctrl-meson-a1 -pinctrl-meson-axg -pinctrl-meson-axg-pmx -pinctrl-meson-g12a -pinctrl-meson-gxbb -pinctrl-meson-gxl -pinctrl-meson8-pmx -pinctrl-msm -pinctrl-mt6765 -pinctrl-mt8192 -pinctrl-mt8365 -pinctrl-mtk-common-v2 -pinctrl-palmas -pinctrl-paris -pinctrl-rockchip -pinctrl-rzg2l -pinctrl-s700 -pinctrl-s900 -pinctrl-scu -pinctrl-single -pinctrl-sprd -pinctrl-sprd-sc9860 -pkcs7_message -pldmfw -power_supply -powercap_sys -ppp_generic -pps_core -pretimeout_noop -processor -pstore -ptp -public_key -qcom-ebi2 -qcom-ipcc -qcom-pdc -qcom-scm -qcom_rpmh -rapidio -raspberrypi -raspberrypi-power -rational -rcar-usb2-clock-sel -regmap-i2c -regmap-mmio -regmap-spi -regulator-poweroff -remoteproc -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 -roles -rpmhpd -rsa_generic -rtc-efi -rtc-mv -rtc-xgene -rzg2l-cpg -sccnxp -scmi-module -scsi_common -scsi_mod -scu-pd -sd_mod -sec-core -sec-irq -selftests -seqiv -serdev -serial_core -serial_mctrl_gpio -serio -sg -sh-sci -sh_cmt -sh_tmu -sha1_generic -sha256_generic -sha512_generic -shpchp -simple-pm-bus -skcipher -slhc -smc91x -spi-fsl-lib -spi-fsl-spi -spi-omap2-mcspi -squashfs -sr_mod -stmpe-i2c -stmpe-spi -sun50i-iommu -sun6i-msgbox -sunxi_sram -syscon-clk -system_heap -t10-pi -tc3589x -tcp_cubic -tegra-ahb -tegra-mc -tegra-tcu -tegra124-cpufreq -tegra186-emc -tegra20-apb-dma -tegra20-cpufreq -thermal -ti-msgmgr -ti_sci -tpm -tpm_crb -tpm_tis -tpm_tis_core -tps65086-restart -tps6586x -tps65912-core -tps65912-i2c -tps65912-spi -trusted -ttyprintk -tun -twl4030-audio -twl6040 -ucs2_string -udmabuf -uhci-hcd -uinput -unicode -unix -usb-common -usbcore -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 -watch_queue -watchdog -x509_key_parser -xen-blkfront -xen-netfront -xenbus -xenbus_probe_frontend -xgmac_mdio -xhci-hcd -xts -xxhash -xz_dec -zbud -zlib_deflate -zlib_inflate -zpool -zsmalloc -zstd_decompress -zswap -zynqmp-ipi-mailbox reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/arm64/generic-64k.retpoline +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/arm64/generic-64k.retpoline @@ -1 +0,0 @@ -# RETPOLINE NOT ENABLED reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/arm64/generic.compiler +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/arm64/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/arm64/generic.modules +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/arm64/generic.modules @@ -1,6893 +0,0 @@ -3c59x -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_bcm7271 -8250_exar -8250_men_mcb -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pg86x -88pm800 -88pm800-regulator -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -9pnet_xen -a100u2w -a3d -a53-pll -a7-pll -a8293 -aacraid -aat2870-regulator -aat2870_bl -abp060mg -ac97_bus -acard-ahci -acecad -acenic -acp_audio_dma -acpi-als -acpi_configfs -acpi_ipmi -acpi_power_meter -acpi_tad -acpiphp_ibm -act8865-regulator -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 -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad5110 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5272 -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5686-spi -ad5696-i2c -ad5755 -ad5758 -ad5761 -ad5764 -ad5766 -ad5770r -ad5791 -ad5820 -ad5933 -ad7091r-base -ad7091r5 -ad7124 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7192 -ad7266 -ad7280a -ad7291 -ad7292 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7606_par -ad7606_spi -ad7746 -ad7766 -ad7768-1 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad7949 -ad799x -ad8366 -ad8801 -ad9389b -ad9467 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc-joystick -adc-keys -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adf4371 -adf7242 -adfs -adi -adi-axi-adc -adiantum -adin -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16209 -adis16240 -adis16260 -adis16400 -adis16460 -adis16475 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1177 -adm1266 -adm1275 -adm8211 -adm9240 -adp1653 -adp5061 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adux1020 -adv7170 -adv7175 -adv7180 -adv7183 -adv7343 -adv7393 -adv748x -adv7511_drm -adv7604 -adv7842 -adv_pci1710 -adv_pci1720 -adv_pci1723 -adv_pci1724 -adv_pci1760 -adv_pci_dio -advansys -adxl34x -adxl34x-i2c -adxl34x-spi -adxl372 -adxl372_i2c -adxl372_spi -adxrs290 -adxrs450 -aegis128 -aes-arm64 -aes-ce-blk -aes-ce-ccm -aes-ce-cipher -aes-neon-blk -aes-neon-bs -aes_ti -af9013 -af9033 -af_alg -af_key -af_packet_diag -afe4403 -afe4404 -affs -afs -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 -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airspy -ak7375 -ak881x -ak8974 -ak8975 -al3010 -al3320a -alcor -alcor_pci -algif_aead -algif_hash -algif_rng -algif_skcipher -alim7101_wdt -allegro -altera-ci -altera-cvp -altera-fpga2sdram -altera-freeze-bridge -altera-hps2fpga -altera-msgdma -altera-pr-ip-core -altera-pr-ip-core-plat -altera-ps-spi -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am2315 -am53c974 -am65-cpts -amba-clcd -amba-pl010 -ambakmi -amc6821 -amd -amd-xgbe -amd5536udc_pci -amd8111e -amdgpu -amlogic-gxl-crypto -amlogic_thermal -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams-iaq-core -ams369fg06 -analog -analogix-anx6345 -analogix-anx78xx -analogix_dp -anatop-regulator -ansi_cprng -anx7625 -anybuss_core -ao-cec -ao-cec-g12a -aoe -apbps2 -apcs-msm8916 -apcs-sdx55 -apds9300 -apds9802als -apds990x -apds9960 -apple-dart -apple-mfi-fastcharge -appledisplay -appletalk -appletouch -applicom -apr -apss-ipq-pll -apss-ipq6018 -aptina-pll -aqc111 -aquacomputer_d5next -aquantia -ar1021_i2c -ar5523 -ar7part -ar9331 -arasan-nand-controller -arc-rawmode -arc-rimi -arc_emac -arc_ps2 -arc_uart -arcmsr -arcnet -arcpgu -arcx-anybus -arcxcnn_bl -arizona -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -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 -as102_fe -as370-hwmon -as3711-regulator -as3711_bl -as3722-regulator -as3935 -as5011 -as73211 -asc7621 -ascot2e -ashmem_linux -asix -aspeed-pwm-tacho -aspeed-video -ast -asym_tpm -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -ata_generic -ata_piix -atbm8830 -atc260x-core -atc260x-i2c -atc260x-onkey -atc260x-poweroff -atc260x-regulator -ath -ath10k_core -ath10k_pci -ath10k_sdio -ath10k_snoc -ath10k_usb -ath11k -ath11k_ahb -ath11k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ath9k_pci_owl_loader -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atlantic -atlas-ezo-sensor -atlas-sensor -atm -atmel -atmel-ecc -atmel-flexcom -atmel-hlcdc -atmel-i2c -atmel-sha204a -atmel_captouch -atmel_mxt_ts -atmel_pci -atmtcp -atp870u -atusb -atxp1 -aty128fb -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -auo-pixcir-ts -auth_rpcgss -authenc -authencesn -autofs4 -avmfritz -ax25 -ax88179_178a -ax88796b -axg-audio -axi-fan-control -axis-fifo -axp20x -axp20x-i2c -axp20x-pek -axp20x-regulator -axp20x-rsb -axp20x_ac_power -axp20x_adc -axp20x_battery -axp20x_usb_power -axp288_adc -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -b53_common -b53_mdio -b53_mmap -b53_serdes -b53_spi -b53_srab -ba431-rng -bam_dma -bareudp -batman-adv -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-flexrm-mailbox -bcm-keypad -bcm-pdc-mailbox -bcm-phy-lib -bcm-sba-raid -bcm-sf2 -bcm203x -bcm2711_thermal -bcm2835 -bcm2835-mmal-vchiq -bcm2835-rng -bcm2835-v4l2 -bcm2835_thermal -bcm2835_wdt -bcm3510 -bcm4908_enet -bcm54140 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm63138_nand -bcm6368_nand -bcm63xx_uart -bcm7038_wdt -bcm7xxx -bcm87xx -bcm_crypto_spu -bcm_iproc_adc -bcm_iproc_tsc -bcm_vk -bcma -bcma-hcd -bcmsysport -bd6107 -bd71815-regulator -bd71828-regulator -bd718x7-regulator -bd9571mwv -bd9571mwv-regulator -bd9576-regulator -bd9576_wdt -bd99954-charger -bdc -be2iscsi -be2net -befs -bel-pfe -belkin_sa -berlin2-adc -bfa -bfq -bfs -bfusb -bh1750 -bh1770glc -bh1780 -binder_linux -binfmt_misc -blake2b_generic -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluefield_edac -bluetooth -bluetooth_6lowpan -bma150 -bma220_spi -bma400_core -bma400_i2c -bma400_spi -bman-test -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmc150_magn_i2c -bmc150_magn_spi -bme680_core -bme680_i2c -bme680_spi -bmg160_core -bmg160_i2c -bmg160_spi -bmi088-accel-core -bmi088-accel-spi -bmi160_core -bmi160_i2c -bmi160_spi -bmp280 -bmp280-i2c -bmp280-spi -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bnxt_re -bochs -bonding -bpa-rs600 -bpa10x -bpfilter -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq2515x_charger -bq256xx_charger -bq25890_charger -bq25980_charger -bq27xxx_battery -bq27xxx_battery_hdq -bq27xxx_battery_i2c -br2684 -br_netfilter -brcmfmac -brcmnand -brcmsmac -brcmstb-avs-cpufreq -brcmstb-usb-pinmap -brcmstb_nand -brcmstb_thermal -brcmutil -brd -bridge -broadcom -bsd_comp -bt819 -bt856 -bt866 -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btmtksdio -btmtkuart -btqca -btqcomsmd -btrfs -btrsi -btrtl -btsdio -bttv -btusb -bu21013_ts -bu21029_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -ca8210 -caam -caam_jr -caamalg_desc -caamhash_desc -cachefiles -cadence-nand-controller -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_serial -caif_socket -caif_usb -caif_virtio -camcc-sc7180 -camcc-sdm845 -camcc-sm8250 -camellia_generic -can -can-bcm -can-dev -can-gw -can-isotp -can-j1939 -can-raw -cap11xx -capmode -capsule-loader -carl9170 -carminefb -cassini -cast5_generic -cast6_generic -cast_common -catc -cavium-rng -cavium-rng-vf -cavium_ptp -cb710 -cb710-mmc -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc10001_adc -cc2520 -cc770 -cc770_isa -cc770_platform -ccm -ccp -ccp-crypto -ccree -ccs -ccs-pll -ccs811 -cctrng -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -cdns-csi2rx -cdns-csi2tx -cdns-dphy -cdns-dsi -cdns-mhdp8546 -cdns-pltfrm -cdns-usb-common -cdns3 -cdns3-imx -cdns3-pci-wrap -cdns3-ti -cdnsp-udc-pci -cec -ceph -cfb -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -ch -ch341 -ch7006 -ch7322 -ch9200 -ch_ipsec -ch_ktls -chacha-neon -chacha20poly1305 -chacha_generic -chaoskey -charlcd -chcr -chipone-icn6211 -chipone_icn8318 -chipone_icn8505 -chipreg -chnl_net -chromeos_tbmc -chrontel-ch7033 -ci_hdrc -ci_hdrc_imx -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_tegra -ci_hdrc_usb2 -cicada -cifs -cifs_arc4 -cifs_md4 -cirrus -cirrusfb -clip -clk-axi-clkgen -clk-bcm2711-dvp -clk-bd718x7 -clk-cdce706 -clk-cdce925 -clk-cpu-8996 -clk-cs2000-cp -clk-fsl-flexspi -clk-hi3519 -clk-hi655x -clk-lmk04832 -clk-lochnagar -clk-max77686 -clk-max9485 -clk-palmas -clk-phase -clk-plldig -clk-pwm -clk-qcom -clk-raspberrypi -clk-rk3568 -clk-rk808 -clk-rpm -clk-rpmh -clk-s2mps11 -clk-scmi -clk-scpi -clk-si514 -clk-si5341 -clk-si5351 -clk-si544 -clk-si570 -clk-smd-rpm -clk-spmi-pmic-div -clk-sprd -clk-twl6040 -clk-versaclock5 -clk-wm831x -clk-xlnx-clock-wizard -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm3605 -cm36651 -cma3000_d0x -cma3000_d0x_i2c -cmac -cmdlinepart -cmtp -cnic -cobra -coda -coda-vpu -colibri-vf50-ts -com20020 -com20020-pci -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_example_test -comedi_parport -comedi_pci -comedi_test -comedi_usb -contec_pci_dio -cordic -core -corsair-cpro -corsair-psu -cortina -counter -cp210x -cpcap-adc -cpcap-battery -cpcap-charger -cpcap-pwrbutton -cpcap-regulator -cpia2 -cppc_cpufreq -cpr -cptpf -cptvf -cqhci -cramfs -crc-itu-t -crc32_generic -crc4 -crc64 -crc7 -crct10dif-ce -crg-hi3516cv300 -crg-hi3798cv200 -cros-ec-anx7688 -cros-ec-cec -cros-ec-regulator -cros-ec-sensorhub -cros_ec -cros_ec_accel_legacy -cros_ec_baro -cros_ec_chardev -cros_ec_debugfs -cros_ec_dev -cros_ec_i2c -cros_ec_keyb -cros_ec_lid_angle -cros_ec_light_prox -cros_ec_lightbar -cros_ec_mkbp_proximity -cros_ec_rpmsg -cros_ec_sensors -cros_ec_sensors_core -cros_ec_spi -cros_ec_sysfs -cros_ec_typec -cros_ec_vbc -cros_kbd_led_backlight -cros_peripheral_charger -cros_usbpd-charger -cros_usbpd_logger -cros_usbpd_notify -cryptd -crypto_engine -crypto_safexcel -crypto_simd -crypto_user -cryptoloop -cs3308 -cs5345 -cs53l32a -csiostor -curve25519-generic -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cw2015_battery -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxd2880 -cxd2880-spi -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cxgbit -cxl_acpi -cxl_core -cxl_pci -cxl_pmem -cy8ctma140 -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da280 -da311 -da7280 -da9030_battery -da9034-ts -da903x-regulator -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062-thermal -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9121-regulator -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -dax_hmem -dax_pmem -dax_pmem_compat -dax_pmem_core -db9 -dc395x -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -ddbridge -ddbridge-dummy-fe -de2104x -defxx -denali -denali_dt -denali_pci -des_generic -designware_i2s -device_dax -dfl -dfl-afu -dfl-emif -dfl-fme -dfl-fme-br -dfl-fme-mgr -dfl-fme-region -dfl-n3000-nios -dfl-pci -dht11 -diag -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dib9000 -dibx000_common -digi_acceleport -digicolor-usart -diskonchip -dispcc-sc7180 -dispcc-sc7280 -dispcc-sdm845 -dispcc-sm8250 -display-connector -dl2k -dlhl60d -dlink-dir685-touchkeys -dlm -dln2 -dln2-adc -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 -dm1105 -dm9601 -dma-axi-dmac -dmard06 -dmard09 -dmard10 -dmc520_edac -dme1737 -dmfe -dmi-sysfs -dmm32at -dmx3191d -dnet -dp83640 -dp83822 -dp83848 -dp83867 -dp83869 -dp83tc811 -dpaa2-console -dpaa2-qdma -dpaa2_caam -dpdmai -dpot-dac -dps310 -dps920ab -dpt_i2o -drbd -drivetemp -drm -drm_dp_aux_bus -drm_kms_helper -drm_mipi_dbi -drm_ttm_helper -drm_vram_helper -drm_xen_front -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1803 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds4424 -ds620 -dsa_core -dsbr100 -dst -dst_ca -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-dibusb-mc-common -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_dummy_fe -dvb_usb_v2 -dw-axi-dmac-platform -dw-edma -dw-edma-pcie -dw-hdmi -dw-hdmi-ahb-audio -dw-hdmi-cec -dw-hdmi-i2s-audio -dw-i3c-master -dw-mipi-dsi -dw-xdata-pcie -dw9714 -dw9768 -dw9807-vcm -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_drm_dsi -dw_mmc -dw_mmc-bluefield -dw_mmc-exynos -dw_mmc-hi3798cv200 -dw_mmc-k3 -dw_mmc-pci -dw_mmc-pltfm -dw_mmc-rockchip -dw_wdt -dwc-xlgmac -dwc2_pci -dwc3 -dwc3-haps -dwc3-imx8mp -dwc3-keystone -dwc3-meson-g12a -dwc3-of-simple -dwc3-pci -dwc3-qcom -dwc3-xilinx -dwmac-altr-socfpga -dwmac-dwc-qos-eth -dwmac-generic -dwmac-imx -dwmac-intel-plat -dwmac-ipq806x -dwmac-loongson -dwmac-mediatek -dwmac-meson -dwmac-meson8b -dwmac-qcom-ethqos -dwmac-rk -dwmac-sun8i -dwmac-visconti -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -earth-pt1 -earth-pt3 -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -ec_sys -ecc -ecdh_generic -ecdsa_generic -echainiv -echo -ecrdsa_generic -edt-ft5x06 -ee1004 -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efa -efct -efi-pstore -efi_test -efibc -efs -egalax_ts -egalax_ts_serial -ehci-brcm -ehci-fsl -ehci-platform -ehset -einj -ektf2127 -elan_i2c -elants_i2c -elo -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_ipt -em_meta -em_nbyte -em_text -em_u32 -emac_rockchip -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_usb -emu10k1-gp -emxx_udc -ena -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -ene_ir -eni -enic -envelope-detector -epic100 -eql -erofs -error -esas2r -esd_usb2 -esp4 -esp4_offload -esp6 -esp6_offload -esp_scsi -essiv -et1011c -et131x -et8ek8 -etas_es58x -ethoc -etnaviv -evbug -exc3000 -exfat -extcon-adc-jack -extcon-fsa9480 -extcon-gpio -extcon-max14577 -extcon-max3355 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-ptn5150 -extcon-qcom-spmi-misc -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -extcon-usbc-cros-ec -extcon-usbc-tusb320 -ezusb -f2fs -f71805f -f71882fg -f75375s -f81232 -f81534 -f81601 -failover -fakelb -fan53555 -fan53880 -farsync -fastrpc -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 -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_pci -fdp -fdp_i2c -fealnx -ff-memless -ffa-module -fieldbus_dev -fintek-cir -firedtv -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fixed -fjes -fl512 -flexcan -fm10k -fm801-gp -fm_drv -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fou6 -fpga-bridge -fpga-mgr -fpga-region -freevxfs -fscache -fsi-core -fsi-master-aspeed -fsi-master-gpio -fsi-master-hub -fsi-occ -fsi-sbefifo -fsi-scom -fsia6b -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-mph-dr-of -fsl-qdma -fsl_dpa -fsl_ifc_nand -fsl_imx8_ddr_perf -fsl_linflexuart -fsl_lpuart -fsl_pq_mdio -fsl_ucc_hdlc -fsp-3y -ftdi-elan -ftdi_sio -ftl -ftm-quaddec -ftsteutates -fujitsu_ts -fusb302 -fxas21002c_core -fxas21002c_i2c -fxas21002c_spi -fxls8962af-core -fxls8962af-i2c -fxls8962af-spi -fxos8700_core -fxos8700_i2c -fxos8700_spi -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gateworks-gsc -gb-audio-apbridgea -gb-audio-codec -gb-audio-gb -gb-audio-manager -gb-audio-module -gb-bootrom -gb-es2 -gb-firmware -gb-gbphy -gb-gpio -gb-hid -gb-i2c -gb-light -gb-log -gb-loopback -gb-power-supply -gb-pwm -gb-raw -gb-sdio -gb-spi -gb-spilib -gb-uart -gb-usb -gb-vibrator -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 -gdmtty -gdmulte -ge2d -gemini -gen_probe -generic -generic-adc-battery -genet -geneve -genwqe_card -gf2k -gfs2 -ghash-ce -gianfar_driver -gl518sm -gl520sm -gl620a -gluebi -gm12u320 -gnss -gnss-mtk -gnss-serial -gnss-sirf -gnss-ubx -go7007 -go7007-loader -go7007-usb -goku_udc -goldfish_battery -goodix -gp2ap002 -gp2ap020a00f -gp8psk-fe -gpi -gpio -gpio-74x164 -gpio-74xx-mmio -gpio-adnp -gpio-adp5520 -gpio-adp5588 -gpio-aggregator -gpio-altera -gpio-altera-a10sr -gpio-amd-fch -gpio-amdpt -gpio-arizona -gpio-bd70528 -gpio-bd71815 -gpio-bd71828 -gpio-bd9571mwv -gpio-beeper -gpio-brcmstb -gpio-cadence -gpio-charger -gpio-da9052 -gpio-da9055 -gpio-dln2 -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-kempld -gpio-logicvc -gpio-lp3943 -gpio-lp873x -gpio-lp87565 -gpio-madera -gpio-max3191x -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-max77620 -gpio-max77650 -gpio-mb86s7x -gpio-mc33880 -gpio-menz127 -gpio-mlxbf -gpio-mlxbf2 -gpio-moxtet -gpio-pca953x -gpio-pca9570 -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-regulator -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-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-vibra -gpio-viperboard -gpio-virtio -gpio-visconti -gpio-wcd934x -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio-xgene-sb -gpio-xgs-iproc -gpio-xlp -gpio-xra1403 -gpio-zynq -gpio_backlight -gpio_decoder -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_wdt -gpmi-nand -gpu-sched -gpucc-msm8998 -gpucc-sc7180 -gpucc-sc7280 -gpucc-sdm660 -gpucc-sdm845 -gpucc-sm8150 -gpucc-sm8250 -gr_udc -grace -grcan -gre -greybus -grip -grip_mp -gs1662 -gs_fpga -gs_usb -gsc-hwmon -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtp -gud -guillemot -gunze -gve -habanalabs -hackrf -hamachi -hampshire -hantro-vpu -hanwang -hbmc-am654 -hci -hci_nokia -hci_uart -hci_vhci -hclge -hclgevf -hd3ss3220 -hd44780 -hd44780_common -hdc100x -hdc2010 -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcd -hdlcdrv -hdma -hdma_mgmt -hdpvr -he -helene -hellcreek_sw -hexium_gemini -hexium_orion -hfcmulti -hfcpci -hfcsusb -hfpll -hfs -hfsplus -hi311x -hi3660-mailbox -hi556 -hi6210-i2s -hi6220-mailbox -hi6220_reset -hi6421-pmic-core -hi6421-regulator -hi6421-spmi-pmic -hi6421v530-regulator -hi6421v600-irq -hi6421v600-regulator -hi655x-pmic -hi655x-regulator -hi8435 -hibmc-drm -hid -hid-a4tech -hid-accutouch -hid-alps -hid-apple -hid-appleir -hid-asus -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-bigbenff -hid-cherry -hid-chicony -hid-cmedia -hid-corsair -hid-cougar -hid-cp2112 -hid-creative-sb0540 -hid-cypress -hid-dr -hid-elan -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-ft260 -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-glorious -hid-google-hammer -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-hyperv -hid-icade -hid-ite -hid-jabra -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-led -hid-lenovo -hid-lg-g15 -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-macally -hid-magicmouse -hid-maltron -hid-mcp2221 -hid-mf -hid-microsoft -hid-monterey -hid-multitouch -hid-nti -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-playstation -hid-primax -hid-prodikeys -hid-redragon -hid-retrode -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-semitek -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-custom-intel-hinge -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-humidity -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-temperature -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steam -hid-steelseries -hid-sunplus -hid-thrustmaster -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-u2fzero -hid-uclogic -hid-udraw-ps3 -hid-viewsonic -hid-vivaldi -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hideep -hidp -hih6130 -hinic -hip04_eth -hisi-rng -hisi-sfc -hisi-spmi-controller -hisi-trng-v2 -hisi504_nand -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 -hmc425a -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hms-profinet -hnae -hnae3 -hns-roce-hw-v1 -hns-roce-hw-v2 -hns3 -hns_dsaf -hns_enet_drv -hns_mdio -hopper -horus3a -host1x -hostap -hostap_pci -hostap_plx -hp03 -hp206c -hpfs -hpilo -hpsa -hptiop -hpwdt -hsi -hsi_char -hso -hsr -ht16k33 -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hv_balloon -hv_netvsc -hv_sock -hv_storvsc -hv_utils -hv_vmbus -hwmon-vid -hwpoison-inject -hx711 -hx8357 -hx8357d -hycon-hy46xx -hyperbus-core -hyperv-keyboard -hyperv_drm -hyperv_fb -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-altera -i2c-amd756 -i2c-amd8111 -i2c-arb-gpio-challenge -i2c-bcm-iproc -i2c-bcm2835 -i2c-brcmstb -i2c-cbus-gpio -i2c-cp2615 -i2c-cros-ec-tunnel -i2c-demux-pinctrl -i2c-designware-pci -i2c-diolan-u2c -i2c-dln2 -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-kempld -i2c-matroxfb -i2c-meson -i2c-mlxbf -i2c-mt65xx -i2c-mux -i2c-mux-gpio -i2c-mux-gpmux -i2c-mux-ltc4306 -i2c-mux-mlxcpld -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-pinctrl -i2c-mux-reg -i2c-mv64xxx -i2c-nforce2 -i2c-nomadik -i2c-nvidia-gpu -i2c-ocores -i2c-owl -i2c-parport -i2c-pca-platform -i2c-piix4 -i2c-pxa -i2c-qcom-cci -i2c-qcom-geni -i2c-qup -i2c-rcar -i2c-riic -i2c-rk3x -i2c-robotfuzz-osif -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-tiny-usb -i2c-versatile -i2c-via -i2c-viapro -i2c-viperboard -i2c-virtio -i2c-xgene-slimpro -i2c-xiic -i2c-xlp9xx -i3c -i3c-master-cdns -i40e -i5k_amb -i6300esb -i740fb -iavf -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mthca -ib_srp -ib_srpt -ib_umad -ib_uverbs -ibm-cffps -ibmaem -ibmpex -icc-bcm-voter -icc-osm-l3 -icc-rpmh -icc-smd-rpm -ice -ice40-spi -icp -icp10100 -icp_multi -icplus -ics932s401 -idma64 -idmouse -idt77252 -idt_89hpesx -idt_gen2 -idt_gen3 -idtcps -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -ifcvf -ife -ifi_canfd -iforce -iforce-serio -iforce-usb -igb -igbvf -igc -igorplugusb -iguanair -ii_pci20kc -iio-mux -iio-rescale -iio-trig-hrtimer -iio-trig-interrupt -iio-trig-loop -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili9225 -ili922x -ili9320 -ili9341 -ili9486 -ilitek_ts_i2c -img-ascii-lcd -img-i2s-in -img-i2s-out -img-parallel-out -img-spdif-in -img-spdif-out -imon -imon_raw -ims-pcu -imx-audio-rpmsg -imx-bus -imx-common -imx-cpufreq-dt -imx-dcss -imx-dma -imx-dsp -imx-interconnect -imx-mailbox -imx-media-common -imx-pcm-dma -imx-pcm-rpmsg -imx-pxp -imx-sdma -imx208 -imx214 -imx219 -imx258 -imx274 -imx290 -imx2_wdt -imx319 -imx334 -imx335 -imx355 -imx412 -imx6q-cpufreq -imx6ul_tsc -imx7-media-csi -imx7-mipi-csis -imx7d_adc -imx7ulp_wdt -imx8m-ddrc -imx8mm-interconnect -imx8mm_thermal -imx8mn-interconnect -imx8mq-interconnect -imx8mq-mipi-csi2 -imx_keypad -imx_rproc -imx_sc_key -imx_sc_thermal -imx_sc_wdt -imx_thermal -imxfb -ina209 -ina2xx -ina2xx-adc -ina3221 -industrialio -industrialio-buffer-cb -industrialio-buffer-dma -industrialio-buffer-dmaengine -industrialio-configfs -industrialio-hw-consumer -industrialio-sw-device -industrialio-sw-trigger -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -inspur-ipsps -int51x1 -intel-m10-bmc -intel-m10-bmc-hwmon -intel-nand-controller -intel-qep -intel-xway -intel_pmt -intel_th -intel_th_acpi -intel_th_gth -intel_th_msu -intel_th_msu_sink -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -interact -interrupt-cnt -inv-icm42600 -inv-icm42600-i2c -inv-icm42600-spi -inv-mpu6050 -inv-mpu6050-i2c -inv-mpu6050-spi -io-domain -io_edgeport -io_ti -ionic -iosm -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_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_tunnel -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 -ipa -ipack -ipaq -ipcomp -ipcomp6 -iphase -ipheth -ipip -ipmb_dev_int -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -iproc-rng200 -iproc_nand -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 -ipw -ipw2100 -ipw2200 -iqs269a -iqs5xx -iqs620at-temp -iqs621-als -iqs624-pos -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-usb -ir-xmp-decoder -ir35221 -ir36021 -ir38064 -ir_toy -irdma -irps5401 -irq-madera -irq-pruss-intc -iscsi_boot_sysfs -iscsi_ibft -iscsi_target_mod -iscsi_tcp -isdnhdlc -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl29501 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl68137 -isl9305 -isofs -isp116x-hcd -isp1704_charger -isp1760 -it87 -it913x -itd1000 -ite-cir -ite-it66121 -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_cm -iw_cxgb4 -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -k3_bandgap -k3dma -kafs -kalmia -kaweth -kbtab -kcm -kcomedilib -ke_counter -keembay-ocs-aes -keembay-ocs-hcu -keembay_wdt -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khadas-mcu -khadas_mcu_fan -kheaders -kirin-drm -kl5kusb105 -kmb-drm -kmem -kmx61 -kobil_sct -komeda -kpss-xcc -ks0127 -ks7010 -ks8842 -ks8851_common -ks8851_par -ks8851_spi -ksmbd -ksz8795 -ksz8795_spi -ksz884x -ksz8863_smi -ksz9477 -ksz9477_i2c -ksz9477_spi -ksz_common -ktd253-backlight -kvaser_pci -kvaser_pciefd -kvaser_usb -kxcjk-1013 -kxsd9 -kxsd9-i2c -kxsd9-spi -kxtj9 -kyber-iosched -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l4f00242t03 -l64781 -lan743x -lan78xx -lan9303-core -lan9303_i2c -lan9303_mdio -lanai -lantiq_gswip -lapb -lapbether -lattice-ecp3-config -layerscape_edac_mod -lcc-ipq806x -lcc-mdm9615 -lcc-msm8960 -lcd -lcd2s -ldusb -lec -led-class-flash -led-class-multicolor -led_bl -leds-88pm860x -leds-aat1290 -leds-adp5520 -leds-an30259a -leds-as3645a -leds-aw2013 -leds-bcm6328 -leds-bcm6358 -leds-bd2802 -leds-blinkm -leds-cpcap -leds-cr0014114 -leds-da903x -leds-da9052 -leds-dac124s085 -leds-el15203000 -leds-gpio -leds-is31fl319x -leds-is31fl32xx -leds-ktd2692 -leds-lm3530 -leds-lm3532 -leds-lm3533 -leds-lm355x -leds-lm3601x -leds-lm36274 -leds-lm3642 -leds-lm3692x -leds-lm3697 -leds-lp3944 -leds-lp3952 -leds-lp50xx -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max77650 -leds-max77693 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-mlxreg -leds-mt6323 -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-rt4505 -leds-rt8515 -leds-sc27xx-bltc -leds-sgm3140 -leds-spi-byte -leds-tca6507 -leds-ti-lmu-common -leds-tlc591xx -leds-tps6105x -leds-wm831x-status -leds-wm8350 -ledtrig-activity -ledtrig-audio -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-netdev -ledtrig-oneshot -ledtrig-pattern -ledtrig-timer -ledtrig-transient -ledtrig-tty -ledtrig-usbport -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gl5 -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libarc4 -libceph -libchacha -libchacha20poly1305 -libcomposite -libcrc32c -libcurve25519 -libcurve25519-generic -libcxgb -libcxgbi -libdes -libertas -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libpoly1305 -libsas -libsm4 -lightning -lima -lineage-pem -linear -linkstation-poweroff -liquidio -liquidio_vf -lis3lv02d -lis3lv02d_i2c -liteuart -litex_liteeth -litex_soc_ctrl -lkkbd -ll_temac -llc -llc2 -llcc-qcom -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3560 -lm3630a_bl -lm3639_bl -lm363x-regulator -lm3646 -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lmh -lmp91000 -lms283gf05 -lms501kf03 -lnbh25 -lnbh29 -lnbp21 -lnbp22 -lochnagar-hwmon -lochnagar-regulator -lockd -lontium-lt8912b -lontium-lt9611 -lontium-lt9611uxc -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp873x -lp873x-regulator -lp8755 -lp87565 -lp87565-regulator -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpass-gfm-sm8250 -lpasscc-sdm845 -lpasscorecc-sc7180 -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -lt3651-charger -ltc1660 -ltc2471 -ltc2485 -ltc2496 -ltc2497 -ltc2497-core -ltc2632 -ltc2941-battery-gauge -ltc2945 -ltc2947-core -ltc2947-i2c -ltc2947-spi -ltc2978 -ltc2983 -ltc2990 -ltc2992 -ltc3589 -ltc3676 -ltc3815 -ltc4151 -ltc4162-l-charger -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv0104cs -lv5207lp -lvds-codec -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m2m-deinterlace -m52790 -m5mols -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -m_can_pci -m_can_platform -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -mac802154_hwsim -macb -macb_pci -machxo2-spi -macmodes -macsec -macvlan -macvtap -madera -madera-i2c -madera-spi -mag3110 -magellan -mailbox-altera -mailbox-test -mailbox-xgene-slimpro -mali-dp -mantis -mantis_core -map_absent -map_funcs -map_ram -map_rom -marvell -marvell-88x2222 -marvell-cesa -marvell10g -marvell_nand -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max11100 -max1111 -max1118 -max11801_ts -max1241 -max127 -max1363 -max14577-regulator -max14577_charger -max14656_charger_detector -max15301 -max1586 -max16064 -max16065 -max1619 -max16601 -max1668 -max17040_battery -max17042_battery -max1721x_battery -max197 -max20730 -max20751 -max2165 -max2175 -max30100 -max30102 -max3100 -max31722 -max31730 -max31785 -max31790 -max31856 -max3420_udc -max3421-hcd -max34440 -max44000 -max44009 -max517 -max5432 -max5481 -max5487 -max5821 -max63xx_wdt -max6621 -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77620-regulator -max77620_thermal -max77620_wdt -max77650 -max77650-charger -max77650-onkey -max77650-regulator -max77686-regulator -max77693-haptic -max77693-regulator -max77693_charger -max77802-regulator -max77826-regulator -max8649 -max8660 -max8688 -max8893 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997-regulator -max8997_charger -max8997_haptic -max8998 -max8998_charger -max9271 -max9286 -max9611 -maxim_thermocouple -mb1232 -mb862xxfb -mb86a16 -mb86a20s -mc -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc3230 -mc44s803 -mcam-core -mcb -mcb-lpc -mcb-pci -mcba_usb -mceusb -mchp23k256 -mchp48l640 -mcp16502 -mcp251x -mcp251xfd -mcp3021 -mcp320x -mcp3422 -mcp3911 -mcp4018 -mcp41010 -mcp4131 -mcp4531 -mcp4725 -mcp4922 -mcr20a -mcs5000_ts -mcs7830 -mcs_touchkey -mct_u232 -mctp -md-cluster -md4 -mdc800 -mdev -mdio -mdio-bcm-unimac -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 -me4000 -me_daq -mediatek -mediatek-cpufreq -mediatek-cpufreq-hw -mediatek-drm -mediatek-drm-hdmi -mediatek-ge -megachips-stdpxxxx-ge-b850v3-fw -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -melfas_mip4 -memory-notifier-error-inject -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -menz69_wdt -meson-canvas -meson-drm -meson-gx-mmc -meson-gxl -meson-ir -meson-ir-tx -meson-mx-sdio -meson-rng -meson-vdec -meson_dw_hdmi -meson_gxbb_wdt -meson_nand -meson_saradc -meson_wdt -metro-usb -metronomefb -mf6x4 -mgag200 -mhi -mhi_net -mhi_pci_generic -mhi_wwan_ctrl -mhi_wwan_mbim -mi0283qt -michael_mic -micrel -microchip -microchip-tcb-capture -microchip_t1 -microread -microread_i2c -microtek -minix -mip6 -mipi-i3c-hci -mite -mk712 -mkiss -ml86v7667 -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx5_vdpa -mlx90614 -mlx90632 -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 -mma7455_core -mma7455_i2c -mma7455_spi -mma7660 -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_hsq -mmc_spi -mmcc-apq8084 -mmcc-msm8960 -mmcc-msm8974 -mmcc-msm8994 -mmcc-msm8996 -mmcc-msm8998 -mmcc-sdm660 -mms114 -mn88443x -mn88472 -mn88473 -mos7720 -mos7840 -most_cdev -most_core -most_dim2 -most_i2c -most_net -most_snd -most_usb -most_video -motorcomm -motorola-cpcap -moxa -moxtet -mp2629 -mp2629_adc -mp2629_charger -mp2888 -mp2975 -mp5416 -mp8859 -mp886x -mpc624 -mpi3mr -mpl115 -mpl115_i2c -mpl115_spi -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpq7920 -mpr121_touchkey -mpt3sas -mptbase -mptcp_diag -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mr75203 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -mscc -mscc_felix -mscc_ocelot -mscc_ocelot_switch_lib -mscc_seville -msdos -msg2638 -msi001 -msi2500 -msm -msp3400 -mspro_block -mss-sc7180 -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt312 -mt352 -mt6311-regulator -mt6315-regulator -mt6323-regulator -mt6358-regulator -mt6359-accdet -mt6359-regulator -mt6360-adc -mt6360-core -mt6360-regulator -mt6360_charger -mt6380-regulator -mt6397 -mt6397-regulator -mt6577_auxadc -mt6797-mt6351 -mt7530 -mt76 -mt76-connac-lib -mt76-sdio -mt76-usb -mt7601u -mt7603e -mt7615-common -mt7615e -mt7663-usb-sdio-common -mt7663s -mt7663u -mt76x0-common -mt76x02-lib -mt76x02-usb -mt76x0e -mt76x0u -mt76x2-common -mt76x2e -mt76x2u -mt7915e -mt7921e -mt8183-da7219-max98357 -mt8183-mt6358-ts3a227-max98357 -mt8192-mt6359-rt1015-rt5682 -mt8195-mt6359-rt1019-rt5682 -mt9m001 -mt9m032 -mt9m111 -mt9p031 -mt9t001 -mt9t112 -mt9v011 -mt9v032 -mt9v111 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdpstore -mtdram -mtdswap -mtip32xx -mtk-btcvsd -mtk-cir -mtk-cmdq-helper -mtk-cmdq-mailbox -mtk-cqdma -mtk-devapc -mtk-hsdma -mtk-pmic-keys -mtk-pmic-wrap -mtk-rng -mtk-sd -mtk-smi -mtk-uart-apdma -mtk-vpu -mtk_ecc -mtk_nand -mtk_rpmsg -mtk_scp -mtk_scp_ipi -mtk_thermal -mtk_wdt -mtouch -mtu3 -multipath -multiq3 -musb_hdrc -mux-adg792a -mux-adgs1408 -mux-core -mux-gpio -mux-mmio -mv88e6060 -mv88e6xxx -mv_u3d_core -mv_udc -mvmdio -mvneta -mvpp2 -mvsas -mvumi -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc-jpeg-encdec -mxc4005 -mxc6255 -mxc_nand -mxc_w1 -mxcmmc -mxic_nand -mxl-gpy -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxl5xx -mxl692 -mxser -mxsfb -mxuport -myrb -myri10ge -myrs -n5pf -n_gsm -n_hdlc -nand -nandcore -nandsim -national -natsemi -nau7802 -navman -nbd -nci -nci_spi -nci_uart -nct6683 -nct6775 -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -nd_virtio -ne2k-pci -neofb -net1080 -net2272 -net2280 -net_failover -netconsole -netdevsim -netfs -netjet -netlink_diag -netrom -netsec -netup-unidvb -netxen_nic -newtonkbd -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 -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfit -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 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -nhpoly1305 -nhpoly1305-neon -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_labpc -ni_labpc_common -ni_labpc_pci -ni_pcidio -ni_pcimio -ni_routes_test -ni_routing -ni_tio -ni_tiocmd -ni_usb6501 -nicpf -nicstar -nicvf -nilfs2 -niu -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 -noa1305 -noon010pc30 -nosy -notifier-error-inject -nouveau -nozomi -npcm750-pwm-fan -nps_enet -ns-thermal -ns558 -ns83820 -nsh -ntb -ntb_hw_epf -ntb_hw_idt -ntb_hw_switchtec -ntb_netdev -ntb_perf -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -ntfs3 -ntxec -null_blk -nuvoton-cir -nvec -nvec_kbd -nvec_paz00 -nvec_power -nvec_ps2 -nvidiafb -nvme -nvme-core -nvme-fabrics -nvme-fc -nvme-loop -nvme-rdma -nvme-tcp -nvmem-bcm-ocotp -nvmem-imx-iim -nvmem-imx-ocotp -nvmem-imx-ocotp-scu -nvmem-rave-sp-eeprom -nvmem-reboot-mode -nvmem-rmem -nvmem-rockchip-otp -nvmem-sc27xx-efuse -nvmem_meson_efuse -nvmem_meson_mx_efuse -nvmem_qcom-spmi-sdam -nvmem_qfprom -nvmem_rockchip_efuse -nvmem_snvs_lpgpr -nvmem_sprd_efuse -nvmem_sunxi_sid -nvmet -nvmet-fc -nvmet-rdma -nvmet-tcp -nwl-dsi -nxp-c45-tja11xx -nxp-nci -nxp-nci_i2c -nxp-ptn3460 -nxp-tja11xx -nxt200x -nxt6000 -nzxt-kraken2 -objagg -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocmem -ocrdma -octeontx-cpt -octeontx-cptvf -of-fpga-region -of_mmc_spi -of_pmem -of_xilinx_wdt -ofb -ofpart -ohci-platform -omap-mailbox -omap-rng -omap4-keypad -omap_hwspinlock -omfs -omninet -onenand -opencores-kbd -openvswitch -opt3001 -optee -optee-rng -opticon -option -or51132 -or51211 -orangefs -orinoco -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -oti6858 -otm3225a -ov02a10 -ov13858 -ov2640 -ov2659 -ov2680 -ov2685 -ov2740 -ov5640 -ov5645 -ov5647 -ov5648 -ov5670 -ov5675 -ov5695 -ov6650 -ov7251 -ov7640 -ov7670 -ov772x -ov7740 -ov8856 -ov8865 -ov9282 -ov9640 -ov9650 -ov9734 -overlay -owl-dma -owl-emac -owl-mmc -oxu210hp-hcd -p54common -p54pci -p54spi -p54usb -p8022 -pa12203001 -palmas-pwrbutton -palmas-regulator -palmas_gpadc -pandora_bl -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 -parser_trx -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_sis -pata_sl82c105 -pata_triflex -pata_via -pc300too -pc87360 -pc87427 -pca9450-regulator -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-epf-ntb -pci-meson -pci-pf-stub -pci-stub -pci200syn -pcie-brcmstb -pcie-iproc -pcie-iproc-platform -pcie-mediatek-gen3 -pcie-rockchip-host -pcie-tegra194 -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmcia_core -pcmcia_rsrc -pcmda12 -pcmmio -pcmuio -pcnet32 -pcrypt -pcs-lynx -pcs_xpcs -pcwd_pci -pcwd_usb -pda_power -pdc_adma -pdr_interface -peak_pci -peak_pciefd -peak_usb -pegasus -pegasus_notetaker -penmount -pf8x00-regulator -pfuze100-regulator -phantom -phonet -phram -phy-am654-serdes -phy-armada38x-comphy -phy-bcm-kona-usb2 -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-cpcap-usb -phy-exynos-usb2 -phy-fsl-imx8-mipi-dphy -phy-fsl-imx8mq-usb -phy-generic -phy-gmii-sel -phy-gpio-vbus-usb -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-isp1301 -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-pxa-28nm-hsic -phy-pxa-28nm-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-tahvo -phy-tegra-usb -phy-tegra-xusb -phy-tegra194-p2u -phy-tusb1210 -phy-zynqmp -phylink -physmap -pi3usb30532 -pi433 -pim4328 -pinctrl-apq8064 -pinctrl-apq8084 -pinctrl-axp209 -pinctrl-da9062 -pinctrl-imx8ulp -pinctrl-ipq4019 -pinctrl-ipq6018 -pinctrl-ipq8064 -pinctrl-ipq8074 -pinctrl-keembay -pinctrl-lochnagar -pinctrl-lpass-lpi -pinctrl-madera -pinctrl-max77620 -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-spmi-gpio -pinctrl-spmi-mpp -pinctrl-ssbi-gpio -pinctrl-ssbi-mpp -pinctrl-stmfx -pinctrl-zynqmp -ping -pistachio-internal-dac -pixcir_i2c_ts -pkcs7_test_key -pkcs8_key_parser -pktcdvd -pktgen -pl111_drm -pl172 -pl2303 -pl330 -plat-ram -plat_nand -platform_lcd -platform_mhu -platform_profile -plip -plusb -pluto2 -plx_dma -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm6764tr -pm80xx -pm8916_wdt -pm8941-pwrkey -pm8xxx-vibrator -pmbus -pmbus_core -pmc551 -pmcraid -pms7003 -pn532_uart -pn533 -pn533_i2c -pn533_usb -pn544 -pn544_i2c -pn_pep -poly1305-neon -poly1305_generic -port100 -powermate -powr1220 -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_parport -pptp -prestera -prestera_pci -pretimeout_panic -prism2_usb -pru_rproc -pruss -ps2-gpio -ps2mult -psample -psmouse -psnap -pstore_blk -pstore_zone -psxpad-spi -ptp-qoriq -ptp_clockmatrix -ptp_dte -ptp_idt82p33 -ptp_ines -ptp_kvm -ptp_ocp -pulse8-cec -pulsedlight-lidar-lite-v2 -pv88060-regulator -pv88080-regulator -pv88090-regulator -pvcalls-front -pvpanic -pvpanic-mmio -pvpanic-pci -pvrusb2 -pwc -pwm-atmel-hlcdc -pwm-atmel-tcb -pwm-bcm-iproc -pwm-bcm2835 -pwm-beeper -pwm-berlin -pwm-brcmstb -pwm-cros-ec -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-twl -pwm-twl-led -pwm-vibra -pwm-visconti -pwm_bl -pwrseq_emmc -pwrseq_sd8787 -pwrseq_simple -pxa168_eth -pxa27x_udc -pxe1610 -pxrc -q54sj108a2 -q6adm -q6afe -q6afe-clocks -q6afe-dai -q6asm -q6asm-dai -q6core -q6dsp-common -q6routing -q6sstop-qcs404 -qca8k -qca_7k_common -qcaspi -qcauart -qcaux -qcom-apcs-ipc-mailbox -qcom-camss -qcom-coincell -qcom-cpufreq-hw -qcom-cpufreq-nvmem -qcom-emac -qcom-geni-se -qcom-labibb-regulator -qcom-pm8008 -qcom-pmic-typec -qcom-pon -qcom-rng -qcom-rpmh-regulator -qcom-spmi-adc-tm5 -qcom-spmi-adc5 -qcom-spmi-iadc -qcom-spmi-pmic -qcom-spmi-temp-alarm -qcom-spmi-vadc -qcom-vadc-common -qcom-wdt -qcom-wled -qcom_aoss -qcom_common -qcom_edac -qcom_geni_serial -qcom_glink -qcom_glink_rpm -qcom_glink_smem -qcom_gsbi -qcom_hwspinlock -qcom_nandc -qcom_pil_info -qcom_q6v5 -qcom_q6v5_adsp -qcom_q6v5_mss -qcom_q6v5_pas -qcom_q6v5_wcss -qcom_rpm -qcom_rpm-regulator -qcom_smbb -qcom_smd -qcom_smd-regulator -qcom_spmi-regulator -qcom_sysmon -qcom_tsens -qcom_usb_vbus-regulator -qcomsmempart -qcrypto -qcserial -qed -qede -qedf -qedi -qedr -qemu_fw_cfg -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qm1d1b0004 -qm1d1c0042 -qmi_helpers -qmi_wwan -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 -qsemi -qt1010 -qt1050 -qt1070 -qt2160 -qtnfmac -qtnfmac_pcie -quatech2 -quota_tree -quota_v1 -quota_v2 -qwiic-joystick -qxl -r592 -r6040 -r8152 -r8153_ecm -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723bs -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si470x-common -radio-si470x-i2c -radio-si470x-usb -radio-si476x -radio-tea5764 -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid_class -rainshadow-cec -ramoops -raspberrypi-cpufreq -raspberrypi-hwmon -raspberrypi-ts -ravb -rave-sp -rave-sp-backlight -rave-sp-pwrbutton -rave-sp-wdt -raw_diag -raw_gadget -raydium_i2c_ts -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 -rc5t583-regulator -rcar-csi2 -rcar-dmac -rcar-du-drm -rcar-fcp -rcar-vin -rcar_can -rcar_canfd -rcar_cmm -rcar_drif -rcar_dw_hdmi -rcar_fdp1 -rcar_gen3_thermal -rcar_jpu -rcar_lvds -rcar_thermal -rdacm20 -rdacm21 -rdc321x-southbridge -rdma_cm -rdma_rxe -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -realtek-smi -reboot-mode -redboot -redrat3 -reed_solomon -regmap-ac97 -regmap-i3c -regmap-sccb -regmap-sdw -regmap-sdw-mbq -regmap-slimbus -regmap-spi-avmm -regmap-spmi -regmap-w1 -regulator-haptic -reiserfs -renesas-rpc-if -renesas_sdhi_core -renesas_sdhi_internal_dmac -renesas_sdhi_sys_dmac -renesas_usb3 -renesas_usbhs -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 -resistive-adc-touch -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd77402 -rfd_ftl -rfkill-gpio -rio-scan -rio_cm -rio_mport_cdev -rionet -rivafb -rj54n1cb0c -rk3399_dmc -rk805-pwrkey -rk808 -rk808-regulator -rk_crypto -rm3100-core -rm3100-i2c -rm3100-spi -rmd160 -rmi_core -rmi_i2c -rmi_smbus -rmi_spi -rmnet -rmtfs_mem -rn5t618 -rn5t618-adc -rn5t618-regulator -rn5t618_power -rn5t618_wdt -rnbd-client -rnbd-server -rndis_host -rndis_wlan -rockchip -rockchip-dfi -rockchip-isp1 -rockchip-nand-controller -rockchip-rga -rockchip-vdec -rockchip_saradc -rockchip_thermal -rockchipdrm -rocker -rohm-bd70528 -rohm-bd71828 -rohm-bd718x7 -rohm-bd9576 -rohm-regulator -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpi-panel-attiny-regulator -rpmpd -rpmsg_char -rpmsg_core -rpmsg_ns -rpmsg_wwan_ctrl -rpr0521 -rsi_91x -rsi_sdio -rsi_usb -rsmu-i2c -rsmu-spi -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt4801-regulator -rt4831 -rt4831-backlight -rt4831-regulator -rt5033 -rt5033-regulator -rt5033_battery -rt6160-regulator -rt61pci -rt6245-regulator -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab-eoz9 -rtc-abx80x -rtc-armada38x -rtc-as3722 -rtc-bd70528 -rtc-bq32k -rtc-bq4802 -rtc-brcmstb-waketimer -rtc-cadence -rtc-cpcap -rtc-cros-ec -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1302 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-em3027 -rtc-fm3130 -rtc-fsl-ftm-alarm -rtc-ftrtc010 -rtc-goldfish -rtc-hid-sensor-time -rtc-hym8563 -rtc-imx-sc -rtc-imxdi -rtc-isl12022 -rtc-isl12026 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max6916 -rtc-max77686 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-meson-vrtc -rtc-msm6242 -rtc-mt2712 -rtc-mt6397 -rtc-mt7622 -rtc-mxc -rtc-mxc_v2 -rtc-ntxec -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf85363 -rtc-pcf8563 -rtc-pcf8583 -rtc-pl030 -rtc-pl031 -rtc-pm8xxx -rtc-r7301 -rtc-r9701 -rtc-rc5t583 -rtc-rc5t619 -rtc-rk808 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3028 -rtc-rv3029c2 -rtc-rv3032 -rtc-rv8803 -rtc-rx4581 -rtc-rx6110 -rtc-rx8010 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-sc27xx -rtc-sd3078 -rtc-sh -rtc-snvs -rtc-stk17ta8 -rtc-tegra -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-twl -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtc-zynqmp -rtd520 -rti800 -rti802 -rti_wdt -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rtmv20-regulator -rtq2134-regulator -rtq6752-regulator -rtrs-client -rtrs-core -rtrs-server -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rtw88_8723d -rtw88_8723de -rtw88_8821c -rtw88_8821ce -rtw88_8822b -rtw88_8822be -rtw88_8822c -rtw88_8822ce -rtw88_core -rtw88_pci -rtw89_core -rtw89_pci -rvu_af -rvu_cptpf -rvu_cptvf -rvu_mbox -rvu_nicpf -rvu_nicvf -rx51_battery -rxrpc -rz-dmac -rza_wdt -rzg2l_adc -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s3fwrn82_uart -s526 -s5c73m3 -s5h1409 -s5h1411 -s5h1420 -s5h1432 -s5k4ecgx -s5k5baf -s5k6a3 -s5k6aa -s5m8767 -s626 -s6sy761 -s921 -sa2ul -saa6588 -saa6752hs -saa7110 -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7185 -saa7706h -safe_serial -sahara -sample-trace-array -samsung-keypad -samsung-sxgbe -samsung_tty -sata_dwc_460ex -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_rcar -sata_sil -sata_sil24 -sata_sis -sata_svw -sata_sx4 -sata_uli -sata_via -sata_vsc -savagefb -sb1000 -sbp_target -sbrmi -sbs-battery -sbs-charger -sbs-manager -sbsa_gwdt -sbtsi_temp -sc16is7xx -sc2731-regulator -sc2731_charger -sc27xx-poweroff -sc27xx-vibra -sc27xx_adc -sc27xx_fuel_gauge -sc92031 -sc9860-clk -sc9863a-clk -sca3000 -sca3300 -scd30_core -scd30_i2c -scd30_serial -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_iio -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_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_diag -sd_adc_modulator -sdhci -sdhci-acpi -sdhci-brcmstb -sdhci-cadence -sdhci-esdhc-imx -sdhci-iproc -sdhci-milbeaut -sdhci-msm -sdhci-of-arasan -sdhci-of-aspeed -sdhci-of-at91 -sdhci-of-dwcmshc -sdhci-of-esdhc -sdhci-of-sparx5 -sdhci-omap -sdhci-pci -sdhci-pltfm -sdhci-pxav3 -sdhci-sprd -sdhci-tegra -sdhci-xenon-driver -sdhci_am654 -sdhci_f_sdh30 -sdio_uart -sensorhub -serial-tegra -serial_ir -serio_raw -sermouse -serpent_generic -serport -ses -sf-pdma -sfc -sfc-falcon -sfp -sgi_w1 -sgp30 -sgp40 -sh_eth -sh_mmcif -sh_mobile_lcdcfb -sha1-ce -sha2-ce -sha256-arm64 -sha3-ce -sha3_generic -sha512-arm64 -sha512-ce -shark2 -shiftfs -sht15 -sht21 -sht3x -sht4x -shtc1 -si1133 -si1145 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sifive -sii902x -sii9234 -sil-sii8620 -sil164 -silead -simple-bridge -simple-mfd-i2c -simpledrm -simplefb -siox-bus-gpio -siox-core -sir_ir -sis190 -sis5595 -sis900 -sis_i2c -sisfb -sisusbvga -sit -siw -sja1000 -sja1000_isa -sja1000_platform -sja1105 -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl28cpld-hwmon -sl28cpld_wdt -sl811-hcd -slcan -slg51000-regulator -slic_ds26522 -slicoss -slim-qcom-ctrl -slim-qcom-ngd-ctrl -slimbus -slip -slram -sm2_generic -sm3-ce -sm3_generic -sm4-ce -sm4_generic -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smartpqi -smb347-charger -smc -smc_diag -smd-rpm -smem -smipcie -smm665 -smp2p -smsc -smsc47b397 -smsc47m1 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsm -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als300 -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt3328 -snd-bcd2000 -snd-bcm2835 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-compress -snd-cs4281 -snd-cs46xx -snd-cs8427 -snd-ctl-led -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1938 -snd-es1968 -snd-fireface -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-motu -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-cs8409 -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-intel -snd-hda-scodec-cs35l41 -snd-hda-scodec-cs35l41-i2c -snd-hda-scodec-cs35l41-spi -snd-hda-tegra -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel-dspcfg -snd-intel-sdw-acpi -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-lx6464es -snd-maestro3 -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm -snd-pcm-dmaengine -snd-pcxhr -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-63xx -snd-soc-ac97 -snd-soc-acp-da7219mx98357-mach -snd-soc-acp-rt5645-mach -snd-soc-adau-utils -snd-soc-adau1372 -snd-soc-adau1372-i2c -snd-soc-adau1372-spi -snd-soc-adau1701 -snd-soc-adau1761 -snd-soc-adau1761-i2c -snd-soc-adau1761-spi -snd-soc-adau17x1 -snd-soc-adau7002 -snd-soc-adau7118 -snd-soc-adau7118-hw -snd-soc-adau7118-i2c -snd-soc-adi-axi-i2s -snd-soc-adi-axi-spdif -snd-soc-ak4104 -snd-soc-ak4118 -snd-soc-ak4458 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-ak5558 -snd-soc-alc5623 -snd-soc-alc5632 -snd-soc-apq8016-sbc -snd-soc-apq8096 -snd-soc-armada-370-db -snd-soc-audio-graph-card -snd-soc-bcm2835-i2s -snd-soc-bd28623 -snd-soc-bt-sco -snd-soc-core -snd-soc-cpcap -snd-soc-cros-ec-codec -snd-soc-cs35l32 -snd-soc-cs35l33 -snd-soc-cs35l34 -snd-soc-cs35l35 -snd-soc-cs35l36 -snd-soc-cs35l41 -snd-soc-cs35l41-i2c -snd-soc-cs35l41-lib -snd-soc-cs35l41-spi -snd-soc-cs4234 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l42 -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs43130 -snd-soc-cs4341 -snd-soc-cs4349 -snd-soc-cs53l30 -snd-soc-cx2072x -snd-soc-da7213 -snd-soc-da7219 -snd-soc-davinci-mcasp -snd-soc-dmic -snd-soc-es7134 -snd-soc-es7241 -snd-soc-es8316 -snd-soc-es8328 -snd-soc-es8328-i2c -snd-soc-es8328-spi -snd-soc-fsi -snd-soc-fsl-asoc-card -snd-soc-fsl-asrc -snd-soc-fsl-aud2htx -snd-soc-fsl-audmix -snd-soc-fsl-easrc -snd-soc-fsl-esai -snd-soc-fsl-micfil -snd-soc-fsl-mqs -snd-soc-fsl-rpmsg -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-fsl-xcvr -snd-soc-gtm601 -snd-soc-hdmi-codec -snd-soc-ics43432 -snd-soc-imx-audmix -snd-soc-imx-audmux -snd-soc-imx-card -snd-soc-imx-es8328 -snd-soc-imx-hdmi -snd-soc-imx-rpmsg -snd-soc-imx-sgtl5000 -snd-soc-imx-spdif -snd-soc-inno-rk3036 -snd-soc-j721e-evm -snd-soc-kirkwood -snd-soc-kmb_platform -snd-soc-lochnagar-sc -snd-soc-lpass-apq8016 -snd-soc-lpass-cpu -snd-soc-lpass-hdmi -snd-soc-lpass-ipq806x -snd-soc-lpass-platform -snd-soc-lpass-rx-macro -snd-soc-lpass-sc7180 -snd-soc-lpass-tx-macro -snd-soc-lpass-va-macro -snd-soc-lpass-wsa-macro -snd-soc-max9759 -snd-soc-max98088 -snd-soc-max98090 -snd-soc-max98357a -snd-soc-max98373 -snd-soc-max98373-i2c -snd-soc-max98373-sdw -snd-soc-max98390 -snd-soc-max98504 -snd-soc-max9860 -snd-soc-max9867 -snd-soc-max98927 -snd-soc-meson-aiu -snd-soc-meson-axg-fifo -snd-soc-meson-axg-frddr -snd-soc-meson-axg-pdm -snd-soc-meson-axg-sound-card -snd-soc-meson-axg-spdifin -snd-soc-meson-axg-spdifout -snd-soc-meson-axg-tdm-formatter -snd-soc-meson-axg-tdm-interface -snd-soc-meson-axg-tdmin -snd-soc-meson-axg-tdmout -snd-soc-meson-axg-toddr -snd-soc-meson-card-utils -snd-soc-meson-codec-glue -snd-soc-meson-g12a-toacodec -snd-soc-meson-g12a-tohdmitx -snd-soc-meson-gx-sound-card -snd-soc-meson-t9015 -snd-soc-mikroe-proto -snd-soc-msm8916-analog -snd-soc-msm8916-digital -snd-soc-mt6351 -snd-soc-mt6358 -snd-soc-mt6359 -snd-soc-mt6660 -snd-soc-mt6797-afe -snd-soc-mt8183-afe -snd-soc-mt8192-afe -snd-soc-mt8195-afe -snd-soc-mtk-common -snd-soc-nau8315 -snd-soc-nau8540 -snd-soc-nau8810 -snd-soc-nau8822 -snd-soc-nau8824 -snd-soc-pcm1681 -snd-soc-pcm1789-codec -snd-soc-pcm1789-i2c -snd-soc-pcm179x-codec -snd-soc-pcm179x-i2c -snd-soc-pcm179x-spi -snd-soc-pcm186x -snd-soc-pcm186x-i2c -snd-soc-pcm186x-spi -snd-soc-pcm3060 -snd-soc-pcm3060-i2c -snd-soc-pcm3060-spi -snd-soc-pcm3168a -snd-soc-pcm3168a-i2c -snd-soc-pcm3168a-spi -snd-soc-pcm5102a -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-qcom-common -snd-soc-rcar -snd-soc-rk3288-hdmi-analog -snd-soc-rk3328 -snd-soc-rk3399-gru-sound -snd-soc-rk817 -snd-soc-rl6231 -snd-soc-rockchip-i2s -snd-soc-rockchip-max98090 -snd-soc-rockchip-pcm -snd-soc-rockchip-pdm -snd-soc-rockchip-rt5645 -snd-soc-rockchip-spdif -snd-soc-rt1015 -snd-soc-rt1015p -snd-soc-rt1308-sdw -snd-soc-rt1316-sdw -snd-soc-rt5514 -snd-soc-rt5514-spi -snd-soc-rt5616 -snd-soc-rt5631 -snd-soc-rt5640 -snd-soc-rt5645 -snd-soc-rt5659 -snd-soc-rt5663 -snd-soc-rt5677 -snd-soc-rt5677-spi -snd-soc-rt5682 -snd-soc-rt5682-i2c -snd-soc-rt5682-sdw -snd-soc-rt700 -snd-soc-rt711 -snd-soc-rt711-sdca -snd-soc-rt715 -snd-soc-rt715-sdca -snd-soc-rz-ssi -snd-soc-sc7180 -snd-soc-sdm845 -snd-soc-sdw-mockup -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-sigmadsp-regmap -snd-soc-simple-amplifier -snd-soc-simple-card -snd-soc-simple-card-utils -snd-soc-simple-mux -snd-soc-sm8250 -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-sprd-platform -snd-soc-ssm2305 -snd-soc-ssm2518 -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-storm -snd-soc-tas2552 -snd-soc-tas2562 -snd-soc-tas2764 -snd-soc-tas2770 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tas5720 -snd-soc-tas6424 -snd-soc-tda7419 -snd-soc-tegra-audio-graph-card -snd-soc-tegra-machine -snd-soc-tegra-pcm -snd-soc-tegra-wm8903 -snd-soc-tegra186-dspk -snd-soc-tegra20-ac97 -snd-soc-tegra20-das -snd-soc-tegra20-i2s -snd-soc-tegra20-spdif -snd-soc-tegra210-admaif -snd-soc-tegra210-ahub -snd-soc-tegra210-dmic -snd-soc-tegra210-i2s -snd-soc-tegra30-ahub -snd-soc-tegra30-i2s -snd-soc-tfa9879 -snd-soc-tfa989x -snd-soc-ti-edma -snd-soc-ti-sdma -snd-soc-ti-udma -snd-soc-tlv320adcx140 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic32x4 -snd-soc-tlv320aic32x4-i2c -snd-soc-tlv320aic32x4-spi -snd-soc-tlv320aic3x -snd-soc-tlv320aic3x-i2c -snd-soc-tlv320aic3x-spi -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-tscs42xx -snd-soc-tscs454 -snd-soc-uda1334 -snd-soc-wcd-mbhc -snd-soc-wcd9335 -snd-soc-wcd934x -snd-soc-wcd938x -snd-soc-wcd938x-sdw -snd-soc-wm-adsp -snd-soc-wm-hubs -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8524 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8782 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8904 -snd-soc-wm8960 -snd-soc-wm8962 -snd-soc-wm8974 -snd-soc-wm8978 -snd-soc-wm8985 -snd-soc-wm8994 -snd-soc-wm9712 -snd-soc-wsa881x -snd-soc-xlnx-formatter-pcm -snd-soc-xlnx-i2s -snd-soc-xlnx-spdif -snd-soc-xtfpga-i2s -snd-soc-zl38060 -snd-sof -snd-sof-imx8 -snd-sof-imx8m -snd-sof-of -snd-sof-xtensa-dsp -snd-sonicvibes -snd-timer -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-variax -snd-usbmidi-lib -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-ymfpci -snd_xen_front -snic -snps_udc_core -snps_udc_plat -snvs_pwrkey -soc_button_array -socfpga -socfpga-a10 -socinfo -softdog -softing -solo6x10 -solos-pci -sony-btf-mpx -soundcore -soundwire-bus -soundwire-cadence -soundwire-generic-allocation -soundwire-intel -soundwire-qcom -sp2 -sp805_wdt -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -sparx5-switch -sparx5-temp -sparx5_serdes -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -speedfax -speedtch -spi-altera-core -spi-altera-dfl -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-dln2 -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-nor -spi-nxp-fspi -spi-oc-tiny -spi-orion -spi-pl022 -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-qcom-qspi -spi-qup -spi-rockchip -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 -spi_ks8995 -spidev -spinand -spl -spmi -spmi-pmic-arb -sprd-dma -sprd-iommu -sprd-mailbox -sprd-mcdt -sprd-sc27xx-spi -sprd_hwspinlock -sprd_serial -sprd_thermal -sprd_wdt -sps30 -sps30_i2c -sps30_serial -sr-thermal -sr030pc30 -sr9700 -sr9800 -srf04 -srf08 -ssb -ssb-hcd -ssd1307fb -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -sstfb -ssu100 -st -st-mipid02 -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st7586 -st7735r -st95hf -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_lsm6dsx -st_lsm6dsx_i2c -st_lsm6dsx_i3c -st_lsm6dsx_spi -st_lsm9ds0 -st_lsm9ds0_i2c -st_lsm9ds0_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -st_uvis25_core -st_uvis25_i2c -st_uvis25_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -stex -stinger -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stm_ftrace -stm_heartbeat -stm_p_basic -stm_p_sys-t -stmfts -stmfx -stmmac -stmmac-pci -stmmac-platform -stmpe-adc -stmpe-keypad -stmpe-ts -stowaway -stp -stpddc60 -stpmic1 -stpmic1_onkey -stpmic1_regulator -stpmic1_wdt -stratix10-rsu -stratix10-soc -stratix10-svc -streamzap -streebog_generic -stts751 -stusb160x -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv0910 -stv6110 -stv6110x -stv6111 -sun4i-backend -sun4i-csi -sun4i-drm -sun4i-drm-hdmi -sun4i-frontend -sun4i-gpadc -sun4i-ss -sun4i-tcon -sun4i_tv -sun50i-codec-analog -sun50i-cpufreq-nvmem -sun6i-csi -sun6i-dma -sun6i_drc -sun6i_hwspinlock -sun6i_mipi_dsi -sun8i-adda-pr-regmap -sun8i-ce -sun8i-codec -sun8i-codec-analog -sun8i-di -sun8i-drm-hdmi -sun8i-mixer -sun8i-rotate -sun8i-ss -sun8i_tcon_top -sun8i_thermal -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sunxi -sunxi-cedrus -sunxi-cir -sunxi-mmc -sunxi-rsb -sunxi_wdt -sur40 -surface3_spi -surface_acpi_notify -surface_aggregator -surface_aggregator_cdev -surface_aggregator_registry -surface_battery -surface_charger -surface_dtx -surface_gpe -surface_hid -surface_hid_core -surface_hotplug -surface_kbd -surface_platform_profile -svc-i3c-master -svgalib -switchtec -sx8654 -sx9310 -sx9500 -sy8106a-regulator -sy8824x -sy8827n -sym53c8xx -symbolserial -synaptics_i2c -synaptics_usb -synclink_gt -synopsys_edac -syscon-reboot-mode -syscopyarea -sysfillrect -sysimgblt -sysv -t5403 -tag_ar9331 -tag_brcm -tag_dsa -tag_gswip -tag_hellcreek -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 -tc-dwc-g210 -tc-dwc-g210-pci -tc-dwc-g210-pltfrm -tc358743 -tc358762 -tc358764 -tc358767 -tc358768 -tc358775 -tc3589x-keypad -tc654 -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcan4x5x -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -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 -tcpci -tcpci_maxim -tcpci_mt6360 -tcpci_rt1711h -tcpm -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18250 -tda18271 -tda18271c2dd -tda1997x -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda9950 -tda998x -tdfxfb -tdo24m -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tee -tee_bnxt_fw -tef6862 -tegra-aconnect -tegra-bpmp-thermal -tegra-drm -tegra-gmi -tegra-kbc -tegra-vde -tegra-video -tegra-xudc -tegra186-cpufreq -tegra194-cpufreq -tegra210-adma -tegra210-emc -tegra30-devfreq -tegra_cec -tegra_nand -tegra_wdt -tehuti -teranetics -test_blackhole_dev -test_bpf -test_div64 -test_power -tg3 -thc63lvd1024 -thermal-generic-adc -thermal_mmio -thmc50 -ths7303 -ths8200 -thunder_bgx -thunder_xcv -thunderbolt -thunderbolt-net -thunderx-mmc -thunderx2_pmu -thunderx_edac -thunderx_zip -ti-adc081c -ti-adc0832 -ti-adc084s021 -ti-adc108s102 -ti-adc12138 -ti-adc128s052 -ti-adc161s626 -ti-ads1015 -ti-ads124s08 -ti-ads131e08 -ti-ads7950 -ti-ads8344 -ti-ads8688 -ti-am65-cpsw-nuss -ti-cal -ti-dac082s085 -ti-dac5571 -ti-dac7311 -ti-dac7612 -ti-j721e-ufs -ti-lmu -ti-sn65dsi83 -ti-sn65dsi86 -ti-tfp410 -ti-tlc4541 -ti-tpd12s015 -ti-tsc2046 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_k3_dsp_remoteproc -ti_k3_r5_remoteproc -ti_sci_pm_domains -ti_usb_3410_5052 -tidss -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timeriomem-rng -tipc -tlan -tls -tlv320aic23b -tm2-touchkey -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmio_mmc_core -tmp006 -tmp007 -tmp102 -tmp103 -tmp108 -tmp117 -tmp401 -tmp421 -tmp513 -toshsd -touchit213 -touchright -touchwin -tpci200 -tpl0102 -tpm_atmel -tpm_ftpm_tee -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_infineon -tpm_key_parser -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tpm_tis_i2c_cr50 -tpm_tis_spi -tpm_tis_synquacer -tpm_vtpm_proxy -tps23861 -tps40422 -tps51632-regulator -tps53679 -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65086 -tps65086-regulator -tps65090-charger -tps65090-regulator -tps65132-regulator -tps65217 -tps65217-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps65218-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps6598x -tps80031-regulator -tqmx86 -trace-printk -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2591 -tsl2772 -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -ttynull -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -turingcc-qcs404 -turris-mox-rwtm -tvaudio -tveeprom -tvp514x -tvp5150 -tvp7002 -tw2804 -tw5864 -tw68 -tw686x -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6030-regulator -twl6040-vibra -twofish_common -twofish_generic -typec -typec_displayport -typec_nvidia -typec_ucsi -typhoon -u132-hcd -uPD60620 -u_audio -u_ether -u_serial -uacce -uartlite -uas -ubi -ubifs -ubuntu-host -ucan -ucb1400_core -ucb1400_ts -ucc_uart -ucd9000 -ucd9200 -ucs1002_power -ucsi_acpi -ucsi_ccg -uda1342 -udc-core -udc-xilinx -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufs-hisi -ufs-mediatek -ufs_qcom -ufshcd-core -ufshcd-dwc -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dfl -uio_dmem_genirq -uio_hv_generic -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uleds -uli526x -ulpi -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -unix_diag -upd64031a -upd64083 -upd78f0730 -us5182d -usb-conn-gpio -usb-dmac -usb-serial-simple -usb-storage -usb251xb -usb3503 -usb4604 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_tcm -usb_f_uac1 -usb_f_uac1_legacy -usb_f_uac2 -usb_f_uvc -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbip-vudc -usbkbd -usblcd -usblp -usbmisc_imx -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usdhi6rol0 -userio -userspace-consumer -ushc -uss720 -uvcvideo -uvesafb -v4l2-async -v4l2-dv-timings -v4l2-flash-led-class -v4l2-fwnode -v4l2-h264 -v4l2-jpeg -v4l2-mem2mem -v4l2-tpg -vc4 -vcan -vchiq -vcnl3020 -vcnl4000 -vcnl4035 -vctrl-regulator -vdpa -vdpa_sim -vdpa_sim_blk -vdpa_sim_net -vduse -veml6030 -veml6070 -venus-core -venus-dec -venus-enc -versal-fpga -ves1820 -ves1x93 -veth -vexpress-hwmon -vexpress-regulator -vf610_adc -vf610_dac -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 -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_iotlb -vhost_net -vhost_scsi -vhost_vdpa -vhost_vsock -via-rhine -via-sdmmc -via-velocity -via686a -vicodec -video-i2c -video-mux -videobuf-core -videobuf-dma-sg -videobuf-vmalloc -videobuf2-common -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videocc-sc7180 -videocc-sc7280 -videocc-sdm845 -videocc-sm8150 -videocc-sm8250 -videocodec -videodev -vim2m -vimc -viperboard -viperboard_adc -virt_wifi -virtio-gpu -virtio-rng -virtio_blk -virtio_bt -virtio_crypto -virtio_dma_buf -virtio_input -virtio_net -virtio_pmem -virtio_rpmsg_bus -virtio_scsi -virtio_snd -virtio_vdpa -virtiofs -virtual -virtual_ncidev -visconti_wdt -visor -vitesse -vitesse-vsc73xx-core -vitesse-vsc73xx-platform -vitesse-vsc73xx-spi -vivid -vkms -vl53l0x-i2c -vl6180 -vmac -vme_fake -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmw_pvrdma -vmw_vmci -vmw_vsock_virtio_transport -vmw_vsock_virtio_transport_common -vmw_vsock_vmci_transport -vmwgfx -vmxnet3 -vp27smpx -vp_vdpa -vport-geneve -vport-gre -vport-vxlan -vpx3220 -vqmmc-ipq4019-regulator -vrf -vringh -vs6624 -vsock -vsock_diag -vsock_loopback -vsockmon -vsp1 -vsxxxaa -vt1211 -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxcan -vxge -vxlan -vz89x -w1-gpio -w1_ds2405 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2430 -w1_ds2431 -w1_ds2433 -w1_ds2438 -w1_ds250x -w1_ds2780 -w1_ds2781 -w1_ds2805 -w1_ds28e04 -w1_ds28e17 -w1_smem -w1_therm -w5100 -w5100-spi -w5300 -w6692 -w83627ehf -w83627hf -w83773g -w83781d -w83791d -w83792d -w83793 -w83795 -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -walkera0701 -wanxl -warrior -wcd934x -wcn36xx -wcnss_ctrl -wd719x -wdat_wdt -wdt87xx_i2c -wdt_pci -wfx -whiteheat -wil6210 -wilc1000 -wilc1000-sdio -wilc1000-spi -winbond-840 -wire -wireguard -wishbone-serial -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994 -wm8994-regulator -wm97xx-ts -wp512 -wwan -wwan_hwsim -x25 -x_tables -xbox_remote -xc4000 -xc5000 -xcbc -xdpe12284 -xen-blkback -xen-evtchn -xen-fbfront -xen-front-pgdir-shbuf -xen-gntalloc -xen-gntdev -xen-kbdfront -xen-netback -xen-privcmd -xen-scsiback -xen-scsifront -xen-tpmfront -xen_wdt -xenfs -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-pci -xhci-pci-renesas -xhci-plat-hcd -xhci-tegra -xilinx-csi2rxss -xilinx-pr-decoupler -xilinx-spi -xilinx-tpg -xilinx-video -xilinx-vtc -xilinx-xadc -xilinx_can -xilinx_dma -xilinx_dpdma -xilinx_emac -xilinx_emaclite -xilinx_gmii2rgmii -xilinx_sdfec -xilinx_uartps -xilinxfb -xillybus_class -xillybus_core -xillybus_of -xillybus_pcie -xillyusb -xiphera-trng -xircom_cb -xlnx_vcu -xor -xor-neon -xpad -xr_serial -xrs700x -xrs700x_i2c -xrs700x_mdio -xsens_mt -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 -xtkbd -xusbatm -xxhash_generic -xz_dec_test -yam -yamaha-yas530 -yealink -yellowfin -yenta_socket -yurex -z3fold -zaurus -zavl -zcommon -zd1201 -zd1211rw -zd1301 -zd1301_demod -zet6223 -zforce_ts -zfs -zhenhua -ziirave_wdt -zinitix -zl10036 -zl10039 -zl10353 -zl6100 -zlua -znvpair -zonefs -zopt2201 -zpa2326 -zpa2326_i2c -zpa2326_spi -zr36016 -zr36050 -zr36060 -zr36067 -zr364xx -zram -zstd -zstd_compress -zunicode -zynqmp-aes-gcm -zynqmp-dpsub -zynqmp-fpga -zynqmp_dma -zzstd reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/arm64/generic.modules.builtin +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/arm64/generic.modules.builtin @@ -1,472 +0,0 @@ -8250 -8250_base -8250_dw -8250_mtk -8250_of -8250_omap -8250_pci -8250_tegra -88pm860x -ac -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 -armmmci -as3722 -as3722-poweroff -asiliantfb -asn1_decoder -asn1_encoder -asymmetric_keys -atkbd -axg -axg-aoclk -backlight -battery -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 -charger-manager -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 -cma_heap -cmd-db -cn -compat_binfmt_elf -configfs -cpufreq-dt -cpufreq_conservative -cpufreq_ondemand -cpufreq_performance -cpufreq_powersave -cpufreq_userspace -crc-ccitt -crc-t10dif -crc16 -crc32 -crc32c_generic -crc8 -crct10dif_common -crct10dif_generic -crypto -crypto_acompress -crypto_algapi -crypto_hash -crypto_null -cryptomgr -ctr -cts -da903x -da9052-core -da9052-i2c -da9052-spi -da9055 -da9063 -davinci_mdio -dax -deflate -dh_generic -digsig -dm-mod -dns_resolver -drbg -drm_mipi_dsi -drm_panel_orientation_quirks -drop_monitor -dwc2 -ecb -ecryptfs -edac_core -efivarfs -ehci-hcd -ehci-orion -ehci-pci -encrypted-keys -evdev -exportfs -ext4 -extcon-core -ezx-pcap -fan -fat -fb -fddi -fec -firmware_class -fixed_phy -font -freq_table -fsl_dpaa_fman -fsl_dpaa_fman_port -fsl_dpaa_mac -fsl_ifc -fuse -fwnode_mdio -g12a -g12a-aoclk -gcm -geniv -gf128mul -ghash-generic -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 -hwmon -hwspinlock_core -i2c-core -i2c-designware-core -i2c-designware-platform -i2c-dev -i2c-omap -i2c-sprd -icc-core -imsttfb -imx -imx-scu -imx-weim -input-core -ioasid -iova -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 -led-class -libaes -libahci -libahci_platform -libata -libblake2s -libnvdimm -libphy -libps2 -libsha256 -linear_ranges -loop -lp8788 -ltc2952-poweroff -lz4_decompress -lzo -lzo-rle -lzo_compress -lzo_decompress -max14577 -max310x -max77686 -max77693 -mbcache -md-mod -md5 -mdio-bitbang -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 -mii -mmc_block -mmc_core -mousedev -mpi -mq-deadline -msm_serial -mt6323-poweroff -mtk-eint -mv_xor_v2 -mx3fb -mxc-clk -n_null -nfs_ssc -nls_base -nls_cp437 -nvmem_core -nvmem_zynqmp_nvmem -of_mdio -ohci-hcd -ohci-pci -oid_registry -owl-uart -packing -palmas -pci-aardvark -pci-ep-cfs -pci-epc-core -pci-epc-mem -pci-epf-core -pci-host-common -pci-host-generic -pci-tegra -pcie-altera -pcie-altera-msi -pcie-hisi-error -pcie-histb -pcie-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-amd -pinctrl-as3722 -pinctrl-imx -pinctrl-imx8dxl -pinctrl-imx8mm -pinctrl-imx8mn -pinctrl-imx8mp -pinctrl-imx8mq -pinctrl-imx8qm -pinctrl-imx8qxp -pinctrl-meson -pinctrl-meson-a1 -pinctrl-meson-axg -pinctrl-meson-axg-pmx -pinctrl-meson-g12a -pinctrl-meson-gxbb -pinctrl-meson-gxl -pinctrl-meson8-pmx -pinctrl-msm -pinctrl-mt6765 -pinctrl-mt8192 -pinctrl-mt8365 -pinctrl-mtk-common-v2 -pinctrl-palmas -pinctrl-paris -pinctrl-rockchip -pinctrl-rzg2l -pinctrl-s700 -pinctrl-s900 -pinctrl-scu -pinctrl-single -pinctrl-sprd -pinctrl-sprd-sc9860 -pkcs7_message -pldmfw -power_supply -powercap_sys -ppp_generic -pps_core -pretimeout_noop -processor -pstore -ptp -public_key -qcom-ebi2 -qcom-ipcc -qcom-pdc -qcom-scm -qcom_rpmh -rapidio -raspberrypi -raspberrypi-power -rational -rcar-usb2-clock-sel -regmap-i2c -regmap-mmio -regmap-spi -regulator-poweroff -remoteproc -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 -roles -rpmhpd -rsa_generic -rtc-efi -rtc-mv -rtc-xgene -rzg2l-cpg -sccnxp -scmi-module -scsi_common -scsi_mod -scu-pd -sd_mod -sec-core -sec-irq -selftests -seqiv -serdev -serial_core -serial_mctrl_gpio -serio -sg -sh-sci -sh_cmt -sh_tmu -sha1_generic -sha256_generic -sha512_generic -shpchp -simple-pm-bus -skcipher -slhc -smc91x -spi-fsl-lib -spi-fsl-spi -spi-omap2-mcspi -squashfs -sr_mod -stmpe-i2c -stmpe-spi -sun50i-iommu -sun6i-msgbox -sunxi_sram -syscon-clk -system_heap -t10-pi -tc3589x -tcp_cubic -tegra-ahb -tegra-mc -tegra-tcu -tegra124-cpufreq -tegra186-emc -tegra20-apb-dma -tegra20-cpufreq -thermal -ti-msgmgr -ti_sci -tpm -tpm_crb -tpm_tis -tpm_tis_core -tps65086-restart -tps6586x -tps65912-core -tps65912-i2c -tps65912-spi -trusted -ttyprintk -tun -twl4030-audio -twl6040 -ucs2_string -udmabuf -uhci-hcd -uinput -unicode -unix -usb-common -usbcore -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 -watch_queue -watchdog -x509_key_parser -xen-blkfront -xen-netfront -xenbus -xenbus_probe_frontend -xgmac_mdio -xhci-hcd -xts -xxhash -xz_dec -zbud -zlib_deflate -zlib_inflate -zpool -zsmalloc -zstd_decompress -zswap -zynqmp-ipi-mailbox reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/arm64/generic.retpoline +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/arm64/generic.retpoline @@ -1 +0,0 @@ -# RETPOLINE NOT ENABLED reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/armhf/generic +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/armhf/generic @@ -1,25305 +0,0 @@ -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 -CXL EXPORT_SYMBOL_GPL 0x3abf0cea devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x41f2fe98 devm_cxl_add_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5751a2af is_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x705e4290 cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x824626c9 cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x89bd518f cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8a6f6fc8 cxl_add_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb1ee6d8b devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb9bded45 to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc461a6a7 cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd7046c1f to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xdbd2aafe to_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe0de1956 is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf2a69cd5 cxl_driver_unregister drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf7a2af79 devm_cxl_add_port drivers/cxl/core/cxl_core -EXPORT_SYMBOL arch/arm/crypto/chacha-neon 0x220b49ab chacha_crypt_arch -EXPORT_SYMBOL arch/arm/crypto/chacha-neon 0xdc94f829 chacha_init_arch -EXPORT_SYMBOL arch/arm/crypto/chacha-neon 0xdd8ec6bd hchacha_block_arch -EXPORT_SYMBOL arch/arm/crypto/curve25519-neon 0x3c74a43e curve25519_base_arch -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 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 -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 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/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 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x62c5adce pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0x738b3fe9 pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0x7bb1279c paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0x8871a55b pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0xa422d359 pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0xabd7f46d pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xb44cb242 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xb95912bb pi_do_claimed -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/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 -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x135475a9 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x21d3e236 ipmi_add_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 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 0xb425c2f9 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf6170d29 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x0059aa55 kcs_bmc_update_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x06d904cb kcs_bmc_remove_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x0b4f485d kcs_bmc_write_data -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x14009b71 kcs_bmc_handle_event -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x24f0af09 kcs_bmc_unregister_driver -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x5286993d kcs_bmc_register_driver -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x641f26bb kcs_bmc_add_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x70b60aef kcs_bmc_read_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x78c9fa4e kcs_bmc_write_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x8317de9b kcs_bmc_enable_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x8765a5f0 kcs_bmc_disable_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x89004b86 kcs_bmc_read_data -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xbdd06cab kcs_bmc_update_event_mask -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x325b8b69 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x9c2b16a2 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc8786b33 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xfc3e81ed st33zp24_probe -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x69dc402f xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xa6865cac xillybus_find_inode -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xcdc32781 xillybus_cleanup_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x09c72032 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x153927a7 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x50f9939b xillybus_endpoint_remove -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 0x059052ba atmel_i2c_enqueue -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x5e9822eb atmel_i2c_probe -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x6c28f9b1 atmel_i2c_init_ecdh_cmd -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 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 0x130fd57c caam_jr_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x34e0f045 gen_split_key -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x3eb18e1a caam_jr_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xb23f825d caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xe4546968 split_key_done -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 -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x46efe449 cnstr_shdsc_skcipher_decap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x4b74fe69 cnstr_shdsc_rfc4106_decap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x4ead8e70 cnstr_shdsc_aead_null_decap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x6de99a64 cnstr_shdsc_rfc4543_encap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x756131a7 cnstr_shdsc_aead_decap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x86089940 cnstr_shdsc_skcipher_encap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x893ab046 cnstr_shdsc_aead_null_encap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x8a8c929e cnstr_shdsc_xts_skcipher_encap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa2ea5326 cnstr_shdsc_gcm_decap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xa970bc2f cnstr_shdsc_xts_skcipher_decap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xbef6ab16 cnstr_shdsc_chachapoly -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xc6c7d14b cnstr_shdsc_rfc4543_decap -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 0x2eed504a caam_ptr_sz -EXPORT_SYMBOL drivers/crypto/caam/error 0x6c34fd0e 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 -EXPORT_SYMBOL drivers/firewire/firewire-core 0x037f33a7 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0c0409df fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1450f032 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x232c0d7d fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x30530648 fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0x340284d8 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x47cc11d9 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5518a58a fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0x556601c3 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5b5f4f55 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6423efb3 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x68c459e5 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x69f08f72 fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7484e31f fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7a91110f fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0x845b4abf fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8806302c fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x88856d2e fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8ec4e37e fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9998d4a2 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa476e6f1 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb211fbcf fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xba0a35b1 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc1d544f4 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe141cd8a fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe49ffbec fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xedf8d80c fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf934d9a6 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0xfb5f456e fw_bus_type -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x84459396 imx_dsp_ring_doorbell -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x874891ff imx_dsp_free_channel -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xfdb1c33b imx_dsp_request_channel -EXPORT_SYMBOL drivers/fpga/dfl 0x6e79066f dfl_driver_unregister -EXPORT_SYMBOL drivers/fpga/dfl 0xce2590b5 __dfl_driver_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0029ac1d drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x009cfcb7 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x017db687 drm_panel_of_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02884b0a drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x045a8f19 drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x046056c7 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04f55c51 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05011a6b drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0543ff73 drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05837feb drmm_kfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06a41033 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06df4343 drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x078488b9 drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0814bb88 drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x085d1680 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09e7b92e drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a3cbe24 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b95a226 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cb6f209 drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f059180 drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f3fb1f2 drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x108e7de3 drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10b96f77 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x124c2a9c drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1282908e drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14d5375f drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15494789 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1566744e drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1570c80a drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15eb63a5 drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1604f0a0 drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16d5a744 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17a07dbe drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x188c5263 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x190bb557 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x191010bb drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1937173c drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a53a83d drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ab7c03c drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b36e6c9 drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b444602 drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c6ca15e drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d7cccc3 drm_atomic_bridge_chain_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2018a275 drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20212cc2 drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x208296ad drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2162c0b8 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2163a046 drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x221c80b8 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22902fc8 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22e72e5c drm_gem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23469380 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23abeccd drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f654d8 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25447593 drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25bd84fe drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25d63160 drm_add_override_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x283c1529 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2895b16e drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2910ccee drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29bdaaf6 drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29ecc0cd drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a19c6f9 drm_gem_cma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a299d21 drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ada5ec8 drm_client_modeset_commit_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b59c0ff drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b94a607 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e364aaa drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f32f192 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fd4916f drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30d0f730 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3146f02c drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31a042ec drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0afd9 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x340e8c00 drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35458a0b drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x359ab697 drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35e31523 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36078737 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x366dfe12 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x369b7421 drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36eba765 drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x380b5fbb __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38325dfb drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38d03d9b drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38d76ce6 drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39069369 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39093b79 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a7aae2e drm_connector_set_panel_orientation -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 0x3c2f710b drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c9bfd24 drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cf621b2 __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d1c5b5e drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e3f8c5c drm_prime_get_contiguous_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fb7e1f9 drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40165016 drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x406c7cd7 drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40783e6b drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41a8fbfc drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41d534ca drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4241792e drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x427b2218 drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42f03633 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a54480 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4526eb27 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45980c93 drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45d44b20 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x466ac593 drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46dd32fa drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4763041b drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4834906a drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4861b027 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48c358d4 drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x497dfdf7 drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4988b43b drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a2a2026 drm_crtc_vblank_helper_get_vblank_timestamp_internal -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 0x4ab8bad3 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ad6c17c drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c2801c4 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cd3d6f5 drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ce3b13d drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d618a24 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d73b36c drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4da8b79a drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4deb720b drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e4791d2 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e5700c4 drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ec57e3b devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f8169e2 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fcad9d0 drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5114852e drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x514be711 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52d81c23 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x534da885 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53d1fb4f drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x540717d4 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5408f6fe drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54d61814 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54debf08 drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55421a55 drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x561048ba drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x562ff617 drm_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56434321 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56a8a5b2 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58eadfea drm_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a552850 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c4174a3 drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c9ae404 drm_prime_sg_to_dma_addr_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd8b3cb drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d3a6952 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f09ac76 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f97e7d2 drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x625c63a6 drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62a1041d drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63b00f9c drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x640af933 drm_crtc_commit_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64b698b7 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x650b4ba1 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66f6612d drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67074922 drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x673de91d drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67bfe510 drm_client_modeset_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6984dc6c drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69db08db drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a17f27f drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b0b9550 drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b62c445 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dc2687b drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e3f73ef drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e49a9fc drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6eb82ea3 drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f6c66f8 drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x705fb2b3 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70f89fb0 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71221d52 drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73317a5b drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7473102c drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74d9d206 drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74eaf26b drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x750b196e drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x758eed1d drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x759d36cb of_drm_get_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75cc51ad drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x775ec656 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x782b812c drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x783b50f9 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ad26856 drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b0628ca drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b32e3c7 drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c0f01fc drm_plane_get_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e016d38 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e606e2c drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f27c1f1 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f74400d drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f7fa483 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fb9e3e2 __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80fdf9e4 drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x819a8d76 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83098178 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x844d3551 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85a6f48a drm_gem_cma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85f72ff3 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x864ed7e8 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x869b80fb drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8703d85f drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87ade3e2 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x897c957d drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8aa86fa0 drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8baebe31 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c638e92 __drmm_add_action_or_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cc54501 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cd1d621 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d27d64d drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dc4aa4b drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ddebe71 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f540ed1 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ffe2c30 drm_connector_attach_dp_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91341e13 drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x929fc5cd __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92a76b65 drm_gem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92bed5fb drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93669390 drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93f4dd5c drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x944186ef drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x947ac34d drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95153eb5 drm_dev_has_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95d1f958 drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95e98a1e drm_hdmi_avi_infoframe_bars -EXPORT_SYMBOL drivers/gpu/drm/drm 0x973a0794 drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x977a651e drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99177900 drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99818904 drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a289560 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ac874d0 drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9af86add drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b0ec856 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b40397a drm_atomic_set_fence_for_plane -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 0x9bd12560 drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c0cc6c6 drm_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dcbe71b __drmm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e398e0a drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e642715 of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e6b1aba drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ebba417 drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fd022b4 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fd3f305 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa061b578 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2c2594f drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2e8189e drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3b41263 drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa52254a6 drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa577aa46 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5eb3f36 drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6b39296 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6d8713e drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8981f78 drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8d06053 drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa91abe26 drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9215f19 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa95db15d drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9695e87 drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9bacdfa drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab00df8b drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xabfcff2f drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacac4cf0 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad51ff43 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf88b537 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0bf3b82 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0fd7d2b drm_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1008d5a drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb166d141 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1f93146 drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb30ab022 drm_warn_on_modeset_not_all_locked -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 0xb52cda4c drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5c0dbd6 drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5cc94b2 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5efc34e drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6286a06 drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb64023b7 drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6510145 drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb65d92c0 drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6631b73 drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6f38de7 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7892ec8 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb809b64b drmm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb83fd76e drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb97a509b __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9f1bef0 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9f85abc drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9fa2a81 drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbfb29fe drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc157ab9 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf667402 __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc023e9de drm_atomic_get_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc02ae36a drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc02be803 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc05fee8e drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0dbd51f drm_hdmi_avi_infoframe_colorspace -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1333af7 drm_gem_fence_array_add_implicit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1615c03 drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2f9c23f drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc36fb36a drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3cf0eb1 drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc517ec15 drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc57b5a50 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5ce9af3 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6881dda drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc71c38c8 drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc74998f3 drm_atomic_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8552eb4 drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc96d6927 drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca384f28 drm_connector_attach_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca42ad05 drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd215b6e drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce58ae47 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce623ce1 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcecbd865 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfb247f8 drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfdf9f0d drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd077b56c drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0e867ea drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0ff397e drm_bridge_chain_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1fc5f14 drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd29a8f22 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4132cc6 drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4776641 drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4d57144 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4e84e8e drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd54034ea drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd56658b0 drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5b28e07 drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5dbc568 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd600e39e drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6763142 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd705d5cf drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7201c0b drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd740fefd drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd763c95f drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd782e782 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd902ed28 drm_vblank_work_schedule -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd928df50 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9a995a1 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9e6e681 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda3a341d drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda7c4572 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb782906 drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc690c87 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc7928eb drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc833fbb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd671fc8 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde6126e6 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdea627cb drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf1c5078 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3ec360 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf4d6e7f drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1008445 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe18bc233 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2c60d69 drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2d0b688 drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5774f94 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5cf963b drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe70735ea drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe70d6d66 drm_of_crtc_port_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7347257 drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe74318b6 drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe78fff8a __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe80c459c drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8b72620 drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8e6d348 drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8f5e726 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9ab4341 drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9f72d7d drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea14cd45 drm_crtc_vblank_helper_get_vblank_timestamp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea45e0f8 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeba9d209 drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed4e67f2 drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee1ae357 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeee50247 drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef15354d drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef1f2361 drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xefd1a62f drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xefd903ba drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0bbbf5f drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0ce8f67 drm_client_modeset_dpms -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 0xf331f44a drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf41e8cbe drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4257586 drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5a2091c drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5ba2222 drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf672fb75 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf69e6c4a drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9833641 drm_prime_sg_to_page_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9a5ebd7 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9e9b7f9 drm_connector_attach_hdr_output_metadata_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa2c2a89 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb122aa7 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc0aa5d2 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd5871d5 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdaa2d43 drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeff5893 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff11be60 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff85e846 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0293c4c3 drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0341c96c drm_dp_set_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x047c3ecb drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04fcc249 __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0501e367 __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06ca9162 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x074d5f9f drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0abdd5a2 drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ba5246f drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ffff562 drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10484977 drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1065ded8 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x113c7352 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11869a03 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12537719 drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x135e65aa __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13a35673 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1420d3e7 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14a6a5e4 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1697373c drm_dp_dpcd_read -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 0x18b421ed drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a1bd2df drm_atomic_helper_plane_destroy_state -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 0x1b37c063 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c2bd3b9 drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d02df6b drm_dp_set_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e20bd1a drm_dp_read_dpcd_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f527a22 __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22b67c5f drm_dp_send_query_stream_enc_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23961837 drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2586c608 drm_dp_lttpr_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2605de78 drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2793a84a drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2829641b drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2832b645 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a97661b devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bd7ad37 drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cb4e499 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d1ac373 drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ed587a9 drm_dp_downstream_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f028267 drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f71ebe8 drm_dp_read_downstream_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30d964e7 __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30e117f8 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32dd6e95 drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x330e6221 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x333af4bb drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35f2273f drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x365825a9 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3702c160 drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3847e0c0 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x389773ee drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c2f5908 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e890cb0 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40a9c38d __drmm_simple_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4522c0af drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45515d60 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45bdd2c5 devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4657973d drm_dp_pcon_frl_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x466361bd drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46932775 drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x470034db drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49e76aa4 drm_dp_read_sink_count_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a142d8d drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a836b53 drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b02be49 drm_dp_pcon_pps_override_param -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b6806b1 drm_dp_get_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c64e4a4 drm_panel_dp_aux_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ed400ce __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f7c4f71 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50f86d6e drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51b7b138 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x521e5b94 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52559127 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53202b5f drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537b8893 drm_fb_blit_rect_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537ffc24 drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54482309 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54e8850b drm_gem_fb_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55174424 drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55e23c84 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56792c97 drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x568b4109 drm_dp_vsc_sdp_log -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56a663e9 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5760bb81 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57be9d32 drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58a41fd3 drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d87481 drm_scdc_set_high_tmds_clock_ratio -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 0x5ad4d5a8 drm_dp_pcon_hdmi_frl_link_error_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b162197 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b50135c drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c2902bd __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f287cea __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f78a78f drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f909ddf drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fb8c714 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x605eea5f drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x623df6e2 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63a477fb drm_dp_downstream_min_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64377a1b drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64790d3a drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65c4b844 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65c891ec drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68268dee drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68c20bab drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68d8dce7 drm_dp_downstream_is_tmds -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69dc72d1 drm_dp_pcon_frl_prepare -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 0x6b820b0c drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c6255ee drm_dp_atomic_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e934746 drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f08e6b2 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x700ff455 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7126fd49 drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x729b8ee8 __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7384b8c1 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7395a555 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7414aa4f drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x743a7a32 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74d20cde drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x763e9d02 drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x765b5074 drm_dp_pcon_frl_configure_2 -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 0x784cad00 drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae669d0 drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b2e0bdf drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bd236ef drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7dba0e05 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x816158bc __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x829b6048 drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8310f920 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x846fcf05 drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x847f1f31 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8527b582 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x868ef87f drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86da5ae6 drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8704defe drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8778b9ab drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87b7a3d5 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88537549 drm_gem_fb_destroy -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 0x8afc0cf1 drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c8ba63b drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c9a38b5 drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d1432da drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f277f80 drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x902a51dc __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x905dd376 drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9069a1da drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90e83efe drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x918640da drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x920bd6be drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x927189ed drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9324379c drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x933083f0 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x948623b3 drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x955408ea drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cdb04c2 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d7330b2 drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d9de888 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e628b7d drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ee5ca41 drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0c16dbe drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa122441b drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1783e1e drm_gem_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1ef2f4a __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2108aed drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa248f369 drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2b5965f drm_edp_backlight_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4e768af __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa59b4f3e drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6960b30 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa75b3685 drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa83f0042 drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa843606e drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa90ae6db drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa99adaa9 drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaad75287 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabdae3ca drm_dp_pcon_convert_rgb_to_ycbcr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad29bdc7 drm_dp_pcon_pps_default -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb08e9ba5 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2533fc1 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2555c7a drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb377677f drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3815ff3 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5a6c432 drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6650530 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb69fe14a drm_gem_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7c43f3f drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb86a21a8 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8956c9e drm_gem_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba3e56c7 drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbd20af8 drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdf501d7 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbefac56f drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc02e9c6a drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1ffb3d3 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2eeea23 drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4174fb4 drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5794d8f drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5ed63e9 __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc63f9cda drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc72ac4a4 drm_atomic_helper_bridge_propagate_bus_fmt -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 0xc86b5b23 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9d99b66 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcacccfd2 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb3e7deb drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc22d1bd drm_edp_backlight_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc552968 drm_gem_simple_kms_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc9b401a drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd227a0e __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdd89135 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf84f37e __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf8bc31b drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfb0599f drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd031e3ed drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd057f143 drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0fb7489 drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd13fbbd8 drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1a09767 drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1cedbfb drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2f97a64 drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd41eaa48 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd55d5ab8 drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd598e18d drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd879db6f drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8da7852 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd96f3824 drm_dp_pcon_pps_override_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9f2fe27 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd821938 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde9e043d drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xded971ac drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe088af3d drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe11a9677 drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2098edf drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2279cde drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2f31e55 drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe32024b8 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4632719 drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe79dc748 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7a89718 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7b56483 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7e75100 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe88fbf17 drm_gem_simple_kms_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8da2f0c drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe91e6098 drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeacddeed drm_edp_backlight_set_level -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecc68cf0 drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecf09d2b drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeed083ed drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef0ceefe drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0e65195 drm_dp_mst_atomic_enable_dsc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0ff72b9 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf17b8f48 drm_dp_read_sink_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1d9aa63 drm_dp_remote_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf31fabbd drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf649d6c0 drm_dp_dual_mode_write -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 0xf74c9b74 drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf83f4b5b drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf88e6d81 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8bab1a9 drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8d21a19 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb565c38 drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb9325be devm_drm_of_get_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb996561 drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc636362 drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd6c6398 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffa1f397 drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffcd7a74 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x006271dd mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x014ce6a4 mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0fce5a1f mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3ef876f3 mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x503b5e6b mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x689acfcb mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6962ccef mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x77de99cd mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x85f7f654 mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8ae44c21 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8e94f06d mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa4f8de03 mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd07226f3 mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdd1c745a mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdd9bad8b mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf27ca6dd mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf68916ba mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x1f8e3d6f drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x23af070a drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x2b318f7f drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x78d2c531 drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xc2aca004 drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x00f9bafd drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x07d24cbf drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x17f0fea3 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x31c2e651 drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x342cfd98 drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3af9305a drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4b55ef72 drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x609e9ef9 drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8904fb92 drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xba22eedb drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc17bbe80 drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc52cd60a drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xde1e6455 drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe2403d26 drm_gem_vram_plane_helper_prepare_fb -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 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 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 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 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 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/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 -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x09209e09 ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0b3dec60 ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0d671480 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x13562ac8 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x142cda82 ttm_pool_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x17295f8b ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x298321c9 ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x298e6ad6 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2aab7e80 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b9c5866 ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f4381b6 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3022409d ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3486455e ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x36b994ce ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x47d8b73d ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x487f0b35 ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4bbb1f1f ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d8a3407 ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x510c624a ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5117025b ttm_range_man_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x522ce35d ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5e36f6ff ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a7ba724 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e3e612e ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ff2b8a0 ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7bc9e1cb ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7c2045c9 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e792050 ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x88bce960 ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x91ecc1e4 ttm_global_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x96b52261 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99c6adbc ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae2772fa ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb0d65f03 ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb0ecf522 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb41bce63 ttm_tt_destroy_common -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb792a24e ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb7c00b9c ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbe5e0cf4 ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc0c9094f ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc7009034 ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc8509b30 ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcfd86055 ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1a0b957 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe452888a ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe53118ac ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xebb3ebd6 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xef861c3c ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf44c403a ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf6abc84a ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfaac22db ttm_range_man_fini -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0385bdc6 tegra_mipi_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0be1a67e host1x_syncpt_read -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1e03d369 host1x_driver_register_full -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 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 -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51de13ce host1x_syncpt_base_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51ec8dc7 host1x_job_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x57553ccd host1x_fence_create -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x61599be2 host1x_syncpt_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6298d39f host1x_device_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x80ac5e40 host1x_syncpt_release_vblank_reservation -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 -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9b2f871c host1x_job_add_gather -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa39cbfd5 host1x_client_suspend -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa459e4dc host1x_syncpt_get_by_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbfdf9416 host1x_job_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc0fbee07 host1x_channel_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcab3a34f __host1x_client_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd04f8aac host1x_client_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd48657f8 host1x_job_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xda9bb890 __host1x_client_register -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xdc00f499 host1x_job_submit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe0cbd9f1 host1x_syncpt_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe63bd2b5 host1x_client_resume -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe70336ff host1x_job_pin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe97cc763 host1x_syncpt_get_by_id_noref -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xea14376b host1x_syncpt_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xeb803e80 host1x_syncpt_incr -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf6dc20c5 host1x_syncpt_read_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xff21ceba host1x_job_add_wait -EXPORT_SYMBOL drivers/hid/hid 0xb3d7fa1f 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 0x96ec3b26 sch56xx_read_virtual_reg12 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xaa17a737 sch56xx_write_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe23be750 sch56xx_watchdog_register -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x2cbf366e i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x5432afda i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x8718ea1a i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xccadb909 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xf8f33db1 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xb1b7fc74 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x249e7cb9 bma400_probe -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x2722fd0a bma400_regmap_config -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x9c749efb bma400_remove -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x5e909446 kxsd9_dev_pm_ops -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x88dbbf56 kxsd9_common_probe -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xf352a739 kxsd9_common_remove -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x08d04ba1 mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0a5ffbb5 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x16cf8f97 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x292ceca0 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41a0786b mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x461c248b mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x646853b3 mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8e349772 mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa19c5e91 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc23d582f mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xca910a5d mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd0d6a1db mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe9eacff7 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xef901d97 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfa19c1fa mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfb3089c4 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x237ed8a4 st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x5295cd90 st_accel_get_settings -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xd4a16e4b st_accel_common_probe -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x12402a0a qcom_vadc_scale -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x47f699dd qcom_adc5_decimation_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x4e64cdb9 qcom_adc5_hw_settle_time_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x53546ecd qcom_adc5_avg_samples_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xc61e7a34 qcom_adc5_prescaling_from_dt -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x68138f09 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xfa4d3581 iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x45d242a5 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x77e8e20c iio_kfifo_free -EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x59de406b bme680_regmap_config -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x1205158d scd30_probe -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x20660143 scd30_suspend -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x9105a06f scd30_resume -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5d609838 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x71581d6b ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x9d8811b0 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb2177f70 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xbefce1c2 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xbf4aacff ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xcc97becf ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xeaff0e21 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfbbda15c ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x2e9f3fdf ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x4dc0c3ba ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x65e55420 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xb30c32ec ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xfc58a8dc ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x2d3d771e ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x973c4e53 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xa4de7c3f ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1cca5547 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4900265a st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4abb4d9e st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x87db75bf st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x97ab6a5e st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x99381bd3 st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa86a9bbb st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xace27d3b st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbdae95a3 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbe4e750e st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc278dd1a st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc545c8c0 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd66f9533 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xebce6bfa st_sensors_get_settings_index -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xec5fdf43 st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xed78174c st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf221d69a st_sensors_dev_name_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf67bd917 st_sensors_verify_id -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xcba8c8f6 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xcd17ad20 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x67d5fd0b mpu3050_common_remove -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x9fad83ed mpu3050_common_probe -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xd4dd552e mpu3050_dev_pm_ops -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x23ac35fc st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x38fa241d st_gyro_get_settings -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xbbd168f0 st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x019886ae hts221_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0xcc08d244 hts221_pm_ops -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x0d1baf6e bmi160_regmap_config -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xac7f6fb4 fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x15496ba3 st_lsm6dsx_pm_ops -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xd6a1b2b6 st_lsm6dsx_probe -EXPORT_SYMBOL drivers/iio/industrialio 0x087a7189 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x12d79fb6 __iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0x138eb30d iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x3b440d05 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x3d7575ec iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0x3eba5b87 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0x4551d08e iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x46bfdc62 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x5a3b62e7 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x7da9b654 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x7f57be84 iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x8436eee6 iio_device_set_clock -EXPORT_SYMBOL drivers/iio/industrialio 0xa3e5fb4b iio_get_time_res -EXPORT_SYMBOL drivers/iio/industrialio 0xad1e3445 iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0xb0ff52d1 iio_device_get_clock -EXPORT_SYMBOL drivers/iio/industrialio 0xb88f27a1 iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0xbb0ed09b iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0xbed5fca3 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xc70e67a3 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xf24dea30 iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0xf4bab849 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0xf602c7c2 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0xfc1f4cff __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x714bbc29 iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x090ac071 iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x94b69be9 iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xb5a64d8d iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xde946415 iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x4e389bfe iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x6476698f iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x953f4f7b iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xe29fa231 iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x4c5c8140 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xc5295ac0 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x316b8a16 st_uvis25_pm_ops -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xd81585fa st_uvis25_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x7980b005 bmc150_magn_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x7c5c0143 bmc150_magn_remove -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xbf590813 bmc150_magn_regmap_config -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xfa6fcd66 bmc150_magn_probe -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x567751fd hmc5843_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x94698c08 hmc5843_common_suspend -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xa1454a35 hmc5843_common_resume -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xe75e1d84 hmc5843_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x29ea279b st_magn_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xa90eefbc st_magn_get_settings -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xfd6d287e st_magn_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x4fce9b4d bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x720b0d59 bmp280_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x988dd03b bmp180_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xd612e367 bmp280_common_probe -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x03afa641 ms5611_remove -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 0x010249cc ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1c8a80cc ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x247af4a1 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x41fd16a1 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4487dce2 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7b894892 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9d7ab771 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa36340cd ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xae0eddbe ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb1e38839 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb8f3a3e7 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc4fecb7f ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xde19fd78 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdf92fa95 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe39f37da ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05c7cad0 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x062b0cf3 ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0798ebb7 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07dfe501 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0942891e rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b0b8647 rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c0a0220 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c0ff568 ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0cb74f1f ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f95c295 rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11c874be __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14230121 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15b17aed ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15d96db6 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x164addb0 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1685bbb1 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x175bd40c rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x176fcada ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18379057 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18432b14 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18e75bca rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b09f1df rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c71ab62 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d4b8b78 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dd5f4c5 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20dd6986 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24853bde rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24f70c69 rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25f99987 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2712ead1 rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27ada433 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29025c25 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a5023e0 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c4daf6b ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2dc3612e ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2efa9f92 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f245d73 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f384613 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32c0775a ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3342048b rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36d91646 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x386ad3e4 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x395f8339 rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3aa6c343 ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b3da9a3 ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b41f5c7 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cce6104 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d797408 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3db20941 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e681a8a ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40c2169a ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41c521ca ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x426c8028 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43d90d3e ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46d2a755 ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47ad4024 ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x485015bf rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4902e8f0 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4acce897 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b3d90fb rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cb7751a rdma_link_unregister -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 0x4f90e9ca rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56d97d1a ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59de4d56 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a213a51 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a372fe5 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a87e6b8 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b564738 ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b656da0 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5bcf6c39 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c78c782 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d6e4f16 ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5db94953 ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6024482f ib_unregister_client -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 0x6251ae97 rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x626073f2 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64e6b212 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6581ca90 ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67dbd4eb ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68618ec7 ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6908186b ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a98e75d ib_rdmacg_try_charge -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 0x6f3989fb rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x704af555 ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70d17599 rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71e865d7 rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x732e1804 rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73f12ff1 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73f5e464 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x744949bc ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x747eb1d4 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76067ded ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76b7f74a rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7744ab80 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x781c32ee rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e5be94e rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81fbb717 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86184c9c ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87aaa29e ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87f98189 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x885e9e1a ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b4dc68d rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e311c53 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fe83b7d rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x911aa0b0 rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92187de1 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94159a8d rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9602ba16 ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x971a5092 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9811872c ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x984fe188 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98e55326 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9907f1b4 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d61ebe4 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f031094 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa382e6a1 rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3fbcb4f ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa63b6426 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7c4c123 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa843727c ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa918b350 rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaaa655f1 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaef7025c rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf47c6e7 rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf9179c0 __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb108c545 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1c1e7ae rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1d2e76c ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb21ef5dd __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2df0989 _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb40ff50c ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7907168 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbfbcc68 ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1edebb9 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc386f007 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3d5d284 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc45e42c0 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4624952 rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc64e7a91 rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6677271 rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6b9a402 ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc90885b3 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc2d4876 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccda4ace ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdd66159 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xced9e72f ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0ffe379 ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1b7e92a rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd20811bd ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd532521c ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd63bc9c5 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7040dc7 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd88484ea rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8a773cd ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9ed3bdb rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbea65c1 ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc4a1ff5 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde46cf12 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf530b6e rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1028832 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe17f0dc8 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe32bfbba rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4ad3ead ibdev_alert -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 0xe62ad4e9 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe67a321e rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe689ad12 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7a20d52 rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7db59d6 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe85e6d20 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe89aca23 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8e89afc ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeac21454 rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb6bbb0f ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec4c3f8e ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec9ff837 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedbae89c ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee7489f7 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef248b7d ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0c0048c rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf11678d1 rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf19a5438 ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf364ff22 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf42c2f10 ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4fbd93a rdma_restrack_count -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 0xf7b4000a ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfac92744 ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc9d383f ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd621830 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe3a0ea2 ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe65424f ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x194f9bab ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1a1726e8 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1ba8ed5f uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x22ee0bd8 uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x265b2afd ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2b0b1dc7 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3c3f4854 ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3c525a08 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3cc66394 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4dae2cbe ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x538192f1 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5cd96f60 ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5d33b1e3 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x677063b8 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6d1bddcf ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x728f4475 uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7e9f9bae ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8dde2aa8 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x911e7e5a uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9460adfc uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x966bf770 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x98352d3c ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9f905bbd _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaa2a522b uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xabb023cc ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbab6c434 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc532f310 _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc5f484a5 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xce189730 uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe1b70e93 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe25d959d ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe7fb4294 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xeac9880e ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf2a4e64b uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf49122cc ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf81e2b7d flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x04ca720f iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x31d2b508 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3ed9d465 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x44b9b208 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x63da55ef iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9195a5a0 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdb19a023 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf04044f1 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x099ef24e rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x19603e70 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1ae4cece rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1e212727 rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2c6e0c8e rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2faa4d0b rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x38c35572 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3e7be592 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x46e5eab4 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x49ad9c40 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4c78addc rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4cbd4cad rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x565ea652 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x588e17ed rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5bc203c2 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5deed063 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x65f3ae8c __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6deb0623 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x73724124 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x73cebf39 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7f2bf978 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x845d0de9 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x84a81fe1 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8f357bce rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8f697cb1 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa016f595 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xabfdfce8 rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xba6fa034 rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbd404075 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc621d9c0 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd082754f rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd3ce4664 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf4b01ea1 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf7fca794 rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x184eb836 rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x32bc41ce rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x4b547313 rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x6797d96a rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x727d48e7 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x9795e933 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa3e0c475 rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x1f40b705 rtrs_rdma_dev_pd_deinit -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 0x6b282711 rtrs_rdma_dev_pd_init -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x926b41e5 rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xa37d2c30 rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xd0fae42d rtrs_ib_dev_put -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x56ab167b rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x68716c3e rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x8013c187 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x83ea8471 rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xaeb89883 rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xf712bf45 rtrs_srv_set_sess_priv -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 -EXPORT_SYMBOL drivers/input/gameport/gameport 0x59947d85 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x5ccf0c42 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x86c0363a gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x8f6a2fef gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x91e9da37 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0xb1b02512 __gameport_register_driver -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x70965ad7 iforce_process_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xc18cf943 iforce_init_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xc80c136b iforce_send_packet -EXPORT_SYMBOL drivers/input/matrix-keymap 0x59b2afb9 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x162aac2b ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x771a6973 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xd0f3c4cf ad714x_probe -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x6ec7cdb6 cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x5c5ba973 rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x2f8eccea sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x3e94317d sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0xb57a3d56 sparse_keymap_setup -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/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 -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd7fae116 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xeb60d21c capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x27c58fd5 isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x4644eea5 isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x5b835a58 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0xef4ee223 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 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/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 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 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 0x50c2230c mISDN_FsmChangeState -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 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 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 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 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 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x42356818 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 0xa049517b ti_lmu_common_get_ramp_params -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness -EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0x6612e89f cmdq_get_shift_pa -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x1e74d376 omap_mbox_enable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x54d733b3 omap_mbox_request_channel -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xed379eac omap_mbox_disable_irq -EXPORT_SYMBOL drivers/md/dm-log 0x12bb1b70 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x52c6622e dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0x5eb9cbac dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0x6595956d dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x28a063f5 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x4d2e83a7 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x659b2b9e dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x7791849b dm_snap_cow -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/cx2341x 0x15ac1bd0 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x66a41a8c cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0x95c649ff cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0xb2b9efb7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 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 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 -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 0xbcae7c07 vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc2d9e090 get_vaddr_frames -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 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-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 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 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e7a8283 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1f29faaa dvb_generic_release -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 0x3acbcd29 dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3d0ab6c7 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3fd96ba7 dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x42d15a1b dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 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 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 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x831bce2d dvb_device_get -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8d3b999b dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8e23619d dvb_remove_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x989a4a69 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x99928fba dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9ccbf2a6 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9df39b36 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb28f27e5 dvb_frontend_detach -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 0xb975810b dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbc175e17 dvb_ca_en50221_frda_irq -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 0xc559e8dc dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc73c1c9c dvb_frontend_resume -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/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 -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x64bcedb6 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7917cc38 au8522_writereg -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/cx24113 0x875a52f6 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xeab58004 cx24123_get_tuner_i2c_adapter -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/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 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x41170848 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x41a8ec21 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x42593be2 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4a68d624 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5041fd08 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6db2ab34 dib0090_get_tune_state -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 0xdbcc7b05 dib0090_set_dc_servo -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 0xc22642b0 dib3000mc_i2c_enumeration -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/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 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 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe7980b2c dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xed22c151 dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xfa947462 dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xfb278a3f dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x0f06515e dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x2e9bde6d dibx000_i2c_set_speed -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/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/lgs8gl5 0x3a6e3f03 lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x1517c544 lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x158d6922 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x0a8515ea s5h1420_get_tuner_i2c_adapter -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/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/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 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xec130d6b bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xee7047bd bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x082354ab bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x0de55658 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x67b41388 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 0x3cf9f210 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x456121a9 write_dst -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 0xe9ad74fc rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfc8b0881 dst_error_recovery -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/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xc46aeddb altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x11072a3c cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3e9da292 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4aec6f74 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x83220051 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa41badd8 cx25821_riscmem_alloc -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/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 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/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 -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x266a7db0 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x30fd64e2 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3fb138dc ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x43376508 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4b3458e2 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x71a0eb68 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x91ebf214 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x95239faa ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9608de33 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9d9d9202 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa5ebbb99 ivtv_udma_prepare -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 0x730c4be3 saa7134_boards -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/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-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 0x3bb6047d 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 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 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 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 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 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 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 -EXPORT_SYMBOL drivers/media/radio/tea575x 0x12c61943 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x637dcf7d snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0x645c1691 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x7e861278 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0xa90f675f snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0xb79862a9 snd_tea575x_exit -EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl -EXPORT_SYMBOL drivers/media/rc/rc-core 0x64b36c6f 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 0xcf09586a ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/rc/rc-core 0xf446074f ir_raw_encode_scancode -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/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/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/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-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-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/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 -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3fe93193 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x57c032d5 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x58673702 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x872eb9ac go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa239eb3c go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc50c79a3 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf0b4e095 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf2c7cc58 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x34c4565f gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6bb2c1b5 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x77ff2ce9 gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7d6a8952 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8c43192a gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb148a3eb gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb33e935c gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb9adb839 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x27aa3ca4 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x65dbc8ee tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xeb8a46cd tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x07712c59 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x2cb62d93 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x10119995 v4l2_async_notifier_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x1016aa08 v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x446ad291 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xb5be1881 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xd2c4acbf v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xe969e9a3 v4l2_async_subdev_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x44334a77 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x52b166d4 v4l2_m2m_buf_done_and_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x81192455 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xa1624feb v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x042612b3 v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x06171059 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x085f326b __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x10399825 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16630c1b __v4l2_ctrl_s_ctrl_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x176861c0 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x177498a4 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x200cf132 v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2682cde2 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2bd99b41 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x308f6247 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x314bb431 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x316077dc v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36309386 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b78d8d7 v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3e29aa96 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3fa29589 video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45795afa v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x490cb7d7 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x49cecc04 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4ebce2ff v4l2_ctrl_new_fwnode_properties -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4ec9398c v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4f863995 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x507a05f6 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5403f267 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5551bb3e v4l2_ctrl_new_std_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x584c17d2 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5be36958 v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x62f21796 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x662cf2ff v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x692bec05 v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6d8aee08 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x74cca032 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7865a4b9 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7b61811c v4l2_try_ext_ctrls -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 0x97c869ed v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99d0153f v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa1c98e9b __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb6890c03 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xba9fcc68 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbfb5f324 v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc46c5996 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc682c21c v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd534da55 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc7e0128 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xebd516da v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xef683ced v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf0450398 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf2e55ad1 video_device_alloc -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 0xf6dab87b v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf925e22f v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf95736b1 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x0c990f7e rpcif_manual_xfer -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x28b37a6c rpcif_prepare -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xada2befd rpcif_hw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xf92830b8 rpcif_sw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xfd664b61 rpcif_dirmap_read -EXPORT_SYMBOL drivers/memstick/core/memstick 0x031b4406 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x07c355b0 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x1f4c97ef memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x31082d2d memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x3ab058a6 memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x62f392cc memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x65e49932 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x6c5bf3ea memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x9cd997d2 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa01bc257 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb02d5f0f memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb7bdf9a2 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd55f0979 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xeb7a307e memstick_unregister_driver -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3e8d0612 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x425d0fc7 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x48900d06 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x491eee68 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x51672daa mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5493f209 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610fbabc mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x618c7ad1 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x68045457 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x723a6511 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7f48d194 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8ae8f2dc mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x959dde6e mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x95d99915 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x98264808 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa29bdf9a mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa695a718 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb5231c59 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb68c69a9 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbd4b3483 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbdf38b74 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc67f2794 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdc539a57 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd8e415f mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdf59e0e8 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister -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 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 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 0xac5d9461 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xad8d41e8 mptscsih_shutdown -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 0xcbed1a0e mptscsih_resume -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 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/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 -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x514bddfe mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x53726d31 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5bfd5179 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x823a78f1 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x877bdcc0 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9808842b mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd52f86b5 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe2015f61 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe733498a mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xebafaa93 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/qcom_rpm 0x832aed94 qcom_rpm_write -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -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 0x059eabe9 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0x3145b773 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0x4a82715b wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x78b8cac2 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xc0534d0f wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xd5e07376 wm1811_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xdf934277 ad_dpot_probe -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xffe72016 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x2fb85933 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x0daaac15 c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0xde5a1bc3 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/tifm_core 0x00586c57 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x03362d6e tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x126a0c27 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x15339e4e tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x68675d92 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x751851bb tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x76133622 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x87b1e219 tifm_unmap_sg -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 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/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 -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3ee4f1be cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x69c41182 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb4c36836 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc4bedbf9 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xcbe67c79 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd2d8d396 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x691297b2 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xac23c1b5 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x272e1fc8 flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x8bd6876e onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x69846a2a denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x9cecb545 denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x102603bc mtk_ecc_get_parity_bits -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x24351100 mtk_ecc_enable -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x2b527c93 of_mtk_ecc_get -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5437e775 mtk_ecc_disable -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5de55d81 mtk_ecc_get_stats -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x6df58afb mtk_ecc_release -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x76e53683 mtk_ecc_wait_done -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x7eb47fa9 mtk_ecc_encode -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xda64ef4a mtk_ecc_adjust_strength -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x398d945a arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x45d9279d arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5b5a392d arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x70623cc5 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x860493e9 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x960fb687 free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa6fc4b75 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb5143c36 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc1a98de3 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf1489f3c arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf2e85aea arcnet_open -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 0x01e72267 b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x01f31db9 b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x02ae2902 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0a23e4bd b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x10187acc b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x166e6b9c b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x24099c8f b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x29cb54db b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2b6e6081 b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x34c883e6 b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x40a89132 b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x57d27244 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6892529a b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6c6e9ff7 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6fb2ef0a b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x792cd58d b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7c1997ce b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x81c5c2d6 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x82bddf1a b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x88d30cab b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8b319eec b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x97d357e0 b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x99367916 b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa5ec46e2 b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa90775cb b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xadad046e b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xae4b25d1 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb1079d06 b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb22350e6 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbace7803 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc1149e9b b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd18753f7 b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd513209e b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd6179c27 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd9021834 b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe5fa07c1 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe62a4757 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf04cc566 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf16f64a1 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf46c6cd8 b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf9bc6b7b b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x1885000c b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x269790df b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x4a56b093 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x5505e2d9 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x7830c8b7 b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xcc0047cd b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x357a253c lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xcc50d7b0 lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xd941db82 lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x923ac866 ksz8_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x07816c75 ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x41737a5a ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x9e5ce6bd ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xdb059f94 ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x242beda7 vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x75140d92 vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x9908b50c vsc73xx_probe -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x16094cf8 xrs700x_switch_remove -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x27f9bb0a xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xba2c5b83 xrs700x_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xd79a220c 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/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 0xdb0689d3 bnxt_ulp_probe -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x3e8c9f2a cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x10049b6c cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x26a51bd2 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2ed6c9bc t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x47bb0bc5 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4a6ea184 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5f7c6c56 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x62ff8b9d cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6b434eff t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x77339ba3 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x805ed4bc cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x819cec62 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8709cf14 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa6b2a3c2 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd45c701d cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xec748c52 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfe756d63 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x04f49c4b cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f46420a cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x11e4e1ac cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1d4603aa cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1f3fc7ce cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x23f44da7 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x259ae3e6 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2840b106 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2aaa274f cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x30c6c9c9 cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3590793b cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4cb6edf6 cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5aa67189 cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x68ba9dab cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6b2e161e cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x75c89e1f cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x78d9b5e2 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7b9a411f cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7f8157af cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8ed10cfe cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x91dd5b0f cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x937dcc28 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa028d605 cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa4db9d3f t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8a58fd2 cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaf87c9b9 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbaaa576c cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc132e5c8 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc18d7336 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc3ba97f4 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc6c9de70 cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc6d5517f cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcfaa4a36 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd37b9505 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd98b2f4b cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdaf2c709 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdcd9c28b cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xded2869b cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe0e00de0 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe44b838c cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe797cf17 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xea3758a8 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xecb3db1d cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xede6ec08 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xee6225a6 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf752d8c9 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf77f44b6 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x02b90e79 cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x15f676ab 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 0x2acb5514 cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x47bb2468 cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x70db8b30 cxgbi_ppm_ppod_release -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/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xb993c543 be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xd2715750 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/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 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 0x0f628081 hnae3_register_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x471cac64 hnae3_unregister_ae_algo_prepare -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x5cfc8445 hnae3_set_client_init_flag -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x6caab96b hnae3_unregister_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x8d8bec1c hnae3_register_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xc1463a4b hnae3_register_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xecc7e9d3 hnae3_unregister_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xee43d5f6 hnae3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xb2729da1 iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xec2b7208 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/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 0x00bdd9af mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02d911fc mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x048f5713 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x063a5c60 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x068be81d mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dddf82a mlx5_core_query_mkey -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 0x1464683f mlx5_fpga_sbu_conn_create -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 0x1ae8796f mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b90a506 mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e464d99 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f77788b __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x227db8ab mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24bae067 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25676e35 mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2886decf mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cd94655 mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d00ca81 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2dafdddf mlx5_fpga_sbu_conn_sendmsg -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 0x3475821f __SCK__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35db424c mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36284476 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3676cb94 mlx5_core_dealloc_pd -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 0x3aad9873 mlx5_rl_add_rate_raw -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 0x3e8fe3c6 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f766bd7 mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42ca984a mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x454b01a9 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46701f32 mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49042890 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a3f55d6 mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b07e9e0 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b5d5c9a mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50467acb mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51439557 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5195a2c7 mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5346a3a3 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5414832f mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54825cc6 mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x553b283b mlx5_cmd_destroy_vport_lag -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 0x563bae2f mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57313342 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x585a9f73 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x594463e0 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ebda469 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fc7f008 mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62841f2d mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x635d432f mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68f7ea34 mlx5_packet_reformat_dealloc -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 0x696af8f0 mlx5_core_destroy_tis -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 0x722cbbe6 mlx5_put_uars_page -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 0x764de790 __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76a6c472 mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76cce22e mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x775c4653 mlx5_modify_header_alloc -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 0x79a413dc mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ac6f226 mlx5_vector2eqn -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 0x7d9a0249 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x806f9621 mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80a9fa51 mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8207c2c7 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85ec1943 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86ba47d2 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a369ee2 mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ce40b13 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d86db84 mlx5_rl_remove_rate_raw -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 0x95851734 mlx5_eq_enable -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 0x96f8769f mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98115e47 mlx5_qp_debugfs_cleanup -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 0x9d1c19e7 __traceiter_mlx5_fw -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 0x9d82b2a5 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1464359 mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa299879f __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa51b5776 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8d2cbf4 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9772012 mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9e35554 mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab22ce97 mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab491a21 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac362684 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 0xad6ea092 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadc9ee16 mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadd61d93 mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf92aa49 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0783646 mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6115464 mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb631ebfb __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7008f61 mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb87edb87 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb92aec72 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9fc6b23 mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba01fea8 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd7abc3f mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbdae9f17 mlx5_eq_create_generic -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 0xbf4aa549 mlx5_eswitch_get_vport_metadata_for_match -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 0xc6103279 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6b53e35 mlx5_eswitch_uplink_get_proto_dev -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 0xca433015 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca9b0c60 mlx5_debug_qp_add -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 0xccc28c5d mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfd02723 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd34cafce mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd792c4bd mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7ec80e3 mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9447e7c mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdabd114c mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcdd6907 mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde31032d mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde34bce9 mlx5_qp_debugfs_init -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 0xe14b748f mlx5_core_create_tir -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 0xe3fe271f mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe48da3c3 mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb67e530 mlx5_lag_get_slave_port -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 0xecff5c75 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf30b06bd mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf46a87c9 mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4879632 mlx5_lag_get_peer_mdev -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 0xf722382a mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf73abe3e mlx5_notifier_register -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 0xfb5e6a01 mlx5_core_detach_mcg -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 0xff6b8e78 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x4cbe2301 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 0x1113c0a5 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x120a1738 mlxsw_core_port_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 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 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 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 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 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 0x71e1d813 mlxsw_core_port_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x74eb7c9e mlxsw_core_res_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77768221 mlxsw_core_module_max_width -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f659d4c mlxsw_afa_block_append_vlan_modify -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 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 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 -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 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 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 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 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 0x0c723540 ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0d1484cc ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x10a3e7a5 ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x10e488a3 ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x11003112 ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x12d7ad1e ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1ac8444e ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1af533d6 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1de07aa2 ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x215659ad ocelot_apply_bridge_fwd_mask -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 0x2b3d0059 ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2bb60095 ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34b6e728 ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x377545ed ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3a6e971f ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4984ad71 ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4c471a7d ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4ca518f4 ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4dcd5ce6 ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x52a92b73 ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5e051274 ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5f0d4019 ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x633fe118 ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x76a06c9d ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7c314a8a ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8167941d ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x82679eb6 ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8360abf7 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x84df26b5 ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x880f18ec ocelot_get_strings -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 0x8e79e3f2 ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x926f0f7a ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9745a378 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9a01ba6c ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9cfc10bb ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9f8bb078 ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa47a961f ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa85d92ce ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8a61bb5 ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xac292ce6 ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb1d1caf2 ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb6c5b7dd ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb74e4afe ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc19105a5 ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc19bff36 ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc9414ea8 ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcf85b5c1 ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd04acd32 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd3b8d92a ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd42fe89e ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd4af11c4 ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd83b2648 ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdb1dd1fb ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdcd0c723 ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdef8dbeb ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe29d1433 ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe3110ba2 ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe5848bbb ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe8222d7c ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeaf65772 ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xede15a0f ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf44d0b34 ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf4dda68b ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf6de2c3f ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfa68ae33 ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfeca0b49 ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xffdf4f4f ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x93b2e730 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 0xe46b4b88 qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xe6214279 qed_get_iscsi_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/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/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/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/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x3508b7e0 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x2c50bed0 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x33d4b22a team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x6b43b6a2 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x979f9d68 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x984ca470 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x9ebef588 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0xb30b51cd team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xdbaba18b team_option_inst_set_change -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/wireless/ath/ath 0x0f673f18 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x192d5200 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2bc09433 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3dd86d54 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x423f5275 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x57151794 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x606e3927 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6954ee4c ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9bbe6287 ath_hw_keysetmac -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9d3ed19d 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 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb80e68ca ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xefb38bea ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf1c53e1f 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 0x0fcc8bc7 ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1b02c429 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x22cbb94d ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2540428f ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3082cdc3 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x37c63298 ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3a07c3ee ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x42b54695 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x43ca986b __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4609f458 ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x46ca8212 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4a7e50d5 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4ddda165 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5302cd2d ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5d5dd26b ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5e219dab ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x64fa0b98 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x671d85ad ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x676a9b33 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6f3dd716 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7344cf20 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x742d7e33 ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x771eb82a ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7783213f ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7c95dec0 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8012f36d ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x805a7ca6 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x84812ffc ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8a6c7dee ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x91af6314 ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x954a99dd ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9cebd384 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9e6f8497 ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa0d65fb0 ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaae13c3f ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb47d23a1 ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb93567c8 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbc5a3c18 ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbd48119f ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc45d1f35 ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc4eab92b ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc553323d ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc708eb5f ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc9912b66 __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcb3d9b06 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd07a0150 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdac440a6 ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdc43c13a ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xddd45273 ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe853326d ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe9865c23 ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xecf2fe18 ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf25fb760 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf8b49469 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf91e5f61 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfd5ea3fa ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xff28f847 ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x01649055 ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0bdc8dd1 ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0e8a6f8c ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x19c523a0 ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1c29ebc3 ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4136b5b4 ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x41c1c34e ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4d571784 ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x595c3643 ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6c2e11eb ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9fa237a1 ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa3158c79 ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa3d59134 ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa94ad3b5 ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb6399707 ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc569f294 ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc8875185 ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc8b716e4 ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd1067f41 ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd8c9daa8 ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdf69f51e ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe41bf2da ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -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 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 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 0x088de238 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0a12c8be ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0d9ceb91 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x23ab7d00 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x23df2ec2 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2a14f621 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3f6e49cc ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x40a57153 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x428cde09 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x55c30334 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5d67b7a2 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x67ee1c79 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x67f710a1 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x67fa0663 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x89461408 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8adbb683 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa0ca8976 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xacae2f3f ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb8bc4f2c ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc836bf7d ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe756ca35 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe94c95ee ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfaba61b8 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x072fdf26 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b314b64 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0bf4c304 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e0ebf59 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e9c75cd ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0fceb1f5 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1017a00e ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x140d7ab0 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a4092f5 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b890944 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2236f199 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x240800e3 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26927c2a ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27597964 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27f46c32 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a88a2d4 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ac18017 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33543819 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35e97e1d ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38e63174 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39179b08 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3acf5fcc ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d09d16e ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e68b64f ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f79f10e ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40b7b234 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43121cfb ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x454bece4 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45ae0d3a ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47a9d4dc ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48161f63 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48c9314c ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49396def ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x537141b8 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55a473b9 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56a9b4af ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59d1e92b ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a05c1d6 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c8d7e7a ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5eff67f3 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6085e4cd ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60da8baf ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x625c498b ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6480159b ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6779de7c ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6803fe7a ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d82a0c5 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e617827 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f27a3ad ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7331d05d ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7726538c ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x775cffe0 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e395ec5 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8381f3e6 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x838f35a3 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x862a6ecf ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8bf3b1b2 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c261144 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d0ade2b ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d74b762 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99e6a725 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9cc74635 ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9de7c913 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa148701a ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2370543 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6a4b323 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa8291362 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab4f2b01 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf20007a ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1543f5d ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb36e4843 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6bead32 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb763ab62 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7683f54 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb896df1a ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbcc306ec ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1725a1f ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc23001bf ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc28d4729 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3fd1287 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4bed0d6 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc52962b2 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6799644 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8498837 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca222b5d ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc023910 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xccbe0cd7 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf890e28 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2fcba56 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd76d4dc9 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8330059 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9c4625a ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde7dfb5b ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdeda2cf3 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf26d0a4 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe17f313b ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe29eb940 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe75eaa8c ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8b6f41b ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9a8b144 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea578fcd ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeafae022 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0e837a9 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf31ff21b ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf43acaa1 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc2cd1b5 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfdf390b4 ath9k_hw_init -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/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 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 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/intel/iwlegacy/iwlegacy 0x021308cc il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02541708 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0261e4d9 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04ee3cbb il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04f92714 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f69b1df il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x126d90ed il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x149e15af il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1640534c il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x187558a1 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1923fb4a il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a51485f il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b2bd88f il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1bd673ea il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d224385 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x21e5d073 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x22197dd4 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x23416c98 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2709acd7 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x27379011 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x27b78c9c il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b6146b9 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2ead081b il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2f800691 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2fe8aeae il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30ed3358 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x315fcf27 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33226e3e il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x337e6e19 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x346a80d6 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x35045fbd il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x35308447 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36044322 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c1c4272 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3ec42028 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x455fa462 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46be033d il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4b623364 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x50d3dcd9 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5492ed46 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5756097a il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x57f42fac il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5aafe2f9 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f4400b3 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x60b7c271 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64084a14 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64843364 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x68115807 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a3e29de il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x737918aa il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x77613f79 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x77a89bca il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c16528e il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7cc52230 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x889b06e6 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89221e64 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ca3a275 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9271dad9 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9274d4e6 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x931a405a il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x937d9813 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x961fbcd9 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9705f172 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x985b64fa _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9e44a3d6 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9f6ea439 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa17d0b92 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa6888f4f il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xacea2b77 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb09ad571 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb1309752 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb62265d5 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb68b5322 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb8674e2a il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xba5af596 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbbfe10e9 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbe3cca24 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbef48f1b il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc01b7041 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc388cf1c il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc9729f11 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xce70f955 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcf09fdb6 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd08a471c il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd5c4d8d4 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7ae2170 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdb9edc8d il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdff66795 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe2bccb69 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe44bad01 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe4904e37 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe6cc8cd8 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xebfd867c il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xee107a06 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xee8cd829 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf3f6ccc3 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4ef456a il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf9f03fc1 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa8b7392 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x143365d7 __traceiter_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1c5036c0 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x466ae44d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5f0647ff __traceiter_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 0x76de0168 __traceiter_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8bdc4afa __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x970bf4ef __SCK__tp_func_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/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 0x0ad69602 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 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 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 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/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 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xed5b7815 mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x2bd922cd rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0622af9b rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x073fa03f _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x167d0aad _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x23501696 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2a3a6f8c rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2e774bc9 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x31f9283f rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x36b25a90 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3a8ae0bb rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5b90b4fc rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x68347a7e rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x685013e5 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6dd3bb54 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7092548e rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x70cdeba9 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x74443ad1 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x78e29063 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7df842ac _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x877486cb rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x88716915 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x937c8e36 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9b6ce938 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9d0fbeff rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaa5ba619 _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xadc696dd rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbb31a249 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbc7e9729 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbd9012a9 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc1fcaefa rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc8c2703a _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd5b03352 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xda70ce4b rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdbc09d04 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdd2156ee _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe1578342 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe6b02e7b rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xed3edf1c rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xed9aea52 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf0ca87ce rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf32674f3 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfbe72e2b rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x15b116f7 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x334fd739 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xbe968d23 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xf4b84b85 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x123e3bdd rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x7a79fc17 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xd06cdefb rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xdc72984a rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x06b2abfb rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10114c80 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1666a51a rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1c7277f6 rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1e617edc rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1edf97e4 efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d794477 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2dcf39e3 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3902d010 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x436933c7 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x44005241 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5a599470 rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5ad16923 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x684f98bf efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x82d0f91a rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8d470dbe rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa12cfb80 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa82d279e rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaaa99e68 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb3bfe3ed rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb4aa31dc rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xba0ef783 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc8a18860 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd4b9cf6a rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd5873508 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdc2ffbd7 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdd5b7662 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe28d4826 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe4f83539 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe5642c4b rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xee1281cd efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfbf5aa55 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x8cad28cd rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x116d5f40 rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x674d527f rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x888f3941 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x01504e3d rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x037665c3 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x136a8d74 rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1818aa51 rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x23f00ba9 rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2ab65b8e rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33698b67 rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x35c9b569 rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x38063a46 rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3a918a7e rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3a9f26cb rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3ee22e99 rtw_tx_report_enqueue -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 0x449ed23f rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x45a13c51 rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4ad5dcdc rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4bd5c7a8 rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x52a79311 rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x55b1f1fb rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58347d82 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5a1dd4e3 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5a574346 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5b5f09c2 rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x64359c7b rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x65d20070 rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7ff39572 rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8ba1baff rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8fb6d2a7 rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x939f7cf4 rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9730e6f1 rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9ca3fc08 rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9cbbe590 rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9dcfa81e rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa61283b4 rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xae442caa rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xafa78c63 rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb1f92b92 rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb348b5ed rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb7ca4008 rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc2a08edf rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc426d334 rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc6915472 rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc8967e24 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc9cf12f4 rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd0bb1096 rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd2013a54 rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd23d615d rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd4674ce6 rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdaa69584 rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdf78c997 rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe1d1edee rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe45d35a1 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe5d8c590 check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf15b5d53 rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf2606db7 rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf446610e rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfc1fe0cf rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xff085b99 rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x103172d3 rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x6bc27850 rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x8474f5a3 rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xbde6dbab rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x07cac8c2 rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x23c1f5af rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x48ba40da rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x558a8e19 rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x61f35a7a rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x86f4951f rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8f109370 rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x934132e8 rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x93c2b2fd __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x982c52ff rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9becee9f rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9f244985 rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9fb532b2 rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb319b9e1 rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcd636539 rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd3214a96 rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdcd9f18c rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf73cbf82 rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfeab1f16 rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xffd08c55 rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe56aa3f3 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x5c6bdec1 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x05bb81e1 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x8ce5094b wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x8f19d57b wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xc4017f33 wlcore_calc_packet_alignment -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 -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/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 -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x4fde786d s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -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 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 -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x73857e76 st_nci_se_deinit -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 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 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 -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfa9f2d38 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/ntb/ntb 0x0000a252 ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0x09ce8d90 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x11af7587 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x16482c16 ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0x1bc00fdb ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x28854e69 ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x555e3c98 ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x6e9afa26 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x708e1487 ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x79bf99ae ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x9b70eb42 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x9ef67c44 ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0xb8beae1e ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xb8eec44f __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0xbe3d9969 ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0xbe769c97 ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0xd591f17d ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0xf2c76f33 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xf5bc32b4 ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xfedfb79c ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/parport/parport 0x01c55cef parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x076611c5 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x1ba45f90 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x3af2d866 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x3e366057 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x3ff45608 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x423ad79e parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x4c979284 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x500b8785 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x61d10155 parport_read -EXPORT_SYMBOL drivers/parport/parport 0x689383f7 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x6e514a30 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x70a707ba parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x7ae53c71 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x81ba2c0a parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x8ba1e4b2 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x92dbb97f parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x971f0680 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xa087b734 parport_release -EXPORT_SYMBOL drivers/parport/parport 0xb4c4d39a parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0xc1a2a688 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0xcb26fb2f parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0xd273488c parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xd9bf5343 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0xda396ee5 parport_write -EXPORT_SYMBOL drivers/parport/parport 0xdc109b96 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0xdca9b5d2 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xe296bf47 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xf1ba031a parport_announce_port -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 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 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 0xef089a06 rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0xe597cecb rpmsg_ns_register_device -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -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 0x07cece16 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x40918e35 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x535d019c fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6ae3b65f fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x88be1b16 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x98e7a7ff fcoe_ctlr_init -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 0xe1ffc1cb fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xedfb178f fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf4ddab8d fcoe_ctlr_recv -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 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 0x22b90986 fc_exch_mgr_del -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 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 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 0x7f3407a7 fc_seq_start_next -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done -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 0xa1bcd198 fc_cpu_mask -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 0xb0ddd5a1 fc_rport_flush_queue -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 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 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 0xfa4667d1 fc_seq_release -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 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 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 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 0x375f8bbd fc_get_event_number -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 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 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 0x2a4c9a62 scsi_is_sas_rphy -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 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 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 -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 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 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 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 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 -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x29537aaa cmdq_pkt_destroy -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x29cfe8c0 cmdq_pkt_write_s -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x31b45f26 cmdq_pkt_poll -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3e261130 cmdq_pkt_flush_async -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x437bfc1a cmdq_pkt_assign -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x47a7ad1c cmdq_dev_get_client_reg -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x47ef9293 cmdq_pkt_poll_mask -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x60db9531 cmdq_pkt_wfe -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x64a280fd cmdq_pkt_read_s -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7525fb04 cmdq_pkt_set_event -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x99221591 cmdq_mbox_destroy -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x99c187ae cmdq_pkt_write -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xbde36e23 cmdq_pkt_create -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xc506c814 cmdq_mbox_create -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xc7540ddc cmdq_pkt_clear_event -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xdc80e661 cmdq_pkt_write_s_value -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xdd772c11 cmdq_pkt_jump -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xeda81fb3 cmdq_pkt_write_s_mask_value -EXPORT_SYMBOL drivers/soc/qcom/ocmem 0x736b7458 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 0x03ccd4a3 geni_icc_set_bw -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x0c59406d geni_se_resources_off -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x203a4f1c geni_se_config_packing -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2bff96aa geni_se_tx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x41eaf840 geni_se_rx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4edd2894 geni_se_clk_tbl_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x57b7d87e geni_se_select_mode -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7736134b geni_se_init -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7ec7f985 geni_icc_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x87e2a467 geni_icc_enable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x9034a862 geni_se_get_qup_hw_version -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb0e5424a geni_icc_set_tag -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xbcfddcf3 geni_se_tx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd2fd0a6d geni_icc_disable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xe1e34be4 geni_se_rx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xe63838f0 geni_se_clk_freq_match -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf0be5608 geni_se_resources_on -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 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 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/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/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 -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 0x20fc6bfb sdw_bus_master_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3577332c sdw_write_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4146e7b5 sdw_stream_add_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x49f348a4 sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4ab6f0ed sdw_stream_remove_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5b5f63ff sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5c86cd16 sdw_read -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6864cc19 sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6882c3c3 sdw_bus_prep_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x74f5e56b sdw_bus_exit_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7ca57f9b sdw_clear_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x80a94246 sdw_update -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8707bf05 sdw_nwrite -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8b41d93a sdw_slave_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x93f5f6c4 sdw_stream_add_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9b6a163d sdw_compare_devid -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb2dc31a7 sdw_extract_slave_id -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcd1f6a2f sdw_nread -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd4cf8229 sdw_bus_master_delete -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdcf3fc06 sdw_bwrite_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdfe0d76a sdw_bread_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe757a1b5 sdw_read_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfa4df93e sdw_update_no_pm -EXPORT_SYMBOL drivers/ssb/ssb 0x095c4b4d ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x143af52b ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x1b9b673d ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x21fa1352 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x267788e3 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x2a9323b9 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x2ac1a724 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x39759033 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x7821c397 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x783ab815 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0xa772f970 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0xa98bbcb1 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0xaf8e1e1e __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0xc3573bed ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xc4e64368 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0xc5eb98e6 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xd12ef988 ssb_bus_resume -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 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 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 0x896448fb fbtft_framebuffer_release -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 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/iio/addac/adt7316 0xc49d0e1e adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x29035512 ade7854_probe -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 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 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/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 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 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 0x0139af0d iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x09970861 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0bfeb19b iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0deddb34 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x18cb0ad1 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1a5e82ce iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x20b33275 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x308a7f78 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3d099b36 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x48060b29 iscsit_find_cmd_from_itt -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 0x54c32ec6 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5645058b iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x618245ac iscsit_setup_text_cmd -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 0x6f7e800e iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x83bde3e5 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x85ff4927 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x89922e45 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9199f7c9 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x978db5a0 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x99b4f589 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xabad9bcc iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb439fa4b iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb778c058 iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb9a92933 iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbbdd2520 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbcb36771 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbe4086b8 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbfd68bb0 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcb5fabaf iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcfddc86a iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd21b40a9 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd417faef iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd739c357 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdaac7cb3 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe865ad59 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeea15a13 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf55dab78 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfc551140 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xff00cddf iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xff329880 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/target_core_mod 0x00a8197d target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x02ec6f31 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0ab3835e target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x0cc9e3ab target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x0ecb6932 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x1b42c411 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x1ba7e967 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x1d8cdf9b target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x243fa8df spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x27f504db target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x28a41fe4 target_put_sess_cmd -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 0x33a9a761 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x341597d7 target_configure_unmap_from_queue -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 0x3ccb3595 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x3d69e620 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x3e2e1e7b target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x416f76e2 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x42b060f8 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x4f0a7419 target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x55559aa0 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x57cdc962 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x5991a007 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x5ff324f8 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x64027302 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x677f4a30 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x6b7600a2 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x77452a2c passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x78d47726 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x7b10812a target_cmd_parse_cdb -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 0x80081805 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x87abbcd9 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x88379243 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x885ff45c passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x8b0013c7 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x8dd407e0 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x8e529d31 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x8eee35c3 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x934cf5e4 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x9a6ff6e3 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x9c4ca2ad core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x9e339686 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xa1dbf9ad transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xa2f73ba8 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xa548bd62 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xa54de7e9 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xabca333e sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xaf9d837e target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0xb352eaf6 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xbcdd25c2 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc45c08eb target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xc916de60 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xcbe6fbad target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0xcbf60b2b passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xcd05b7ea transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xd063be31 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xd25d17b1 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xd9e48bbc transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xdceab035 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0xddff099f transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xe3848642 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xe7332f31 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xe8139572 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xe8d353c2 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xeb7f7ad3 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xecb590fb target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xf37f81d4 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf6f8278b transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf8529b68 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xf9722647 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0xfd4de786 transport_alloc_session -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x7ce7c0de 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/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 -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa34e3849 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa5ad0d2a usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb3c78622 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbf01a1de usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc225d0d2 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc7b2fce4 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe814977e usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf2f491f5 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x55b37f8f usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xf9b96963 usb_serial_resume -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x100ae5ff mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x233b3946 mdev_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x30a9e5ed mdev_unregister_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5fffd31a mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x61c8cffc mtype_get_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x9bd78c9f mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa72ed720 mtype_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xbee590ca mdev_register_device -EXPORT_SYMBOL drivers/vfio/vfio 0x05b8cfda vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL drivers/vfio/vfio 0x0beb34b2 vfio_dma_rw -EXPORT_SYMBOL drivers/vfio/vfio 0x0f655355 vfio_info_add_capability -EXPORT_SYMBOL drivers/vfio/vfio 0x32423922 vfio_unpin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0x3451c7fd vfio_unregister_notifier -EXPORT_SYMBOL drivers/vfio/vfio 0x48a81d7e vfio_group_pin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0x51f16cdb vfio_info_cap_shift -EXPORT_SYMBOL drivers/vfio/vfio 0x7834defd vfio_group_unpin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0xb62b2ca6 vfio_pin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0xf92b0d2b vfio_register_notifier -EXPORT_SYMBOL drivers/vhost/vhost 0xae516d7d vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vhost 0xd337efc9 vhost_chr_write_iter -EXPORT_SYMBOL drivers/vhost/vringh 0x102c8234 vringh_iov_push_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x140ceb39 vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x221d4624 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x261fea85 vringh_set_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x26c60a08 vringh_notify_disable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4164520a vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x5dfbeba4 vringh_need_notify_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x723ab668 vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x79b927f7 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x79c86ceb vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x7c007927 vringh_complete_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x7c2e8833 vringh_iov_pull_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x8aeeecb8 vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x915490a3 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x9537eb76 vringh_abandon_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xa04abd3a vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xa37c8cbf vringh_notify_enable_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xa924b2e0 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xacf68b37 vringh_notify_disable_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xb061dd9f vringh_getdesc_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xb5411ba6 vringh_kiov_advance -EXPORT_SYMBOL drivers/vhost/vringh 0xbe7e011e vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0xc4721ac7 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0xcef0e131 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd8ac74e0 vringh_init_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xff44dbd9 vringh_need_notify_user -EXPORT_SYMBOL drivers/video/backlight/lcd 0x2352d080 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x5294db3d devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x6edda8ba devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xd46cb3e9 lcd_device_unregister -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x29e67b9b svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5d917097 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5da95268 svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x611c9339 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x73a08ad2 svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xaa46d493 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xbddad8b6 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x7b16682e sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x67e8e6b7 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x13ffe16d sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x6f6e67e1 cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x632fbd30 mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x56d0911f g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x5d0458cc matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x6492c43c matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x3763b6b6 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x5df868ef DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x95a9c57b DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xd5d0cf38 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x4f98984b matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xc233909e matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x4a48cc2d matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x878c77ee matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xed929b7d matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xf545a27d matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x18c030fd matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x804356b0 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1263046f matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x3fffb027 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x4ad31d7f matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xa3f93c60 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xbe04bf50 matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x01ea132e dispc_runtime_put -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x028b58b7 omap_dss_find_output_by_port_node -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x03005606 omapdss_get_version -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x05e11465 dss_mgr_connect -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x0729fd68 dss_mgr_set_lcd_config -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x1299b317 dss_mgr_disable -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x1a96b254 omapdss_unregister_display -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x1e5fa573 omap_dss_get_overlay -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x1e8d4516 omap_dss_find_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2423d741 dispc_ovl_setup -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3082a0b3 dss_feat_get_supported_color_modes -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3ba34c2b omap_dss_get_next_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3d36d54d dispc_mgr_set_lcd_config -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4045fd3d dss_mgr_disconnect -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x42912b0c dispc_clear_irqstatus -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x45d74ef6 dispc_mgr_enable -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4bd67a8d dispc_write_irqenable -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4c33081d omapdss_compat_uninit -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x51988873 omap_dss_put_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x54f6830a omapdss_get_default_display_name -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x5689afe7 dispc_ovl_enable -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x5c2e4a1b omapdss_unregister_output -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x5f13a90f omapdss_output_set_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x636b3461 omap_dss_get_num_overlays -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x66cdd3c9 dispc_mgr_setup -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x68185cd4 dss_mgr_enable -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6b1a3090 omap_dss_ntsc_timings -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6e3bbb21 omap_dss_find_output -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x70e39dae dss_uninstall_mgr_ops -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x73769087 omap_dss_get_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x827143a1 omap_dispc_unregister_isr -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x83afca62 dss_install_mgr_ops -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x87fdb051 dispc_mgr_go -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x8abc5863 omapdss_output_unset_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x8b016af2 dss_mgr_set_timings -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x93963a85 dss_feat_get_num_mgrs -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x967734ae omapdss_find_mgr_from_display -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x967cb4e8 dispc_ovl_set_channel_out -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x9cce98a1 dss_mgr_register_framedone_handler -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa13d27f5 dispc_read_irqenable -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa3dbd23e dss_mgr_unregister_framedone_handler -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa4f6a175 dispc_mgr_get_sync_lost_irq -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa9720b0b omap_dss_get_overlay_manager -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb0b50a93 omapdss_register_output -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb3ed5aa9 dispc_mgr_is_enabled -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb7f94a15 dispc_mgr_set_timings -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb8a8a54e omapdss_find_output_from_display -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xba8ddcea dispc_mgr_get_vsync_irq -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbafeee36 dispc_runtime_get -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbe0d4752 omap_video_timings_to_videomode -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xc45105c3 dispc_mgr_go_busy -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xc479c400 omap_dss_get_output -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xcc197296 omap_dispc_register_isr -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xce466b8f dispc_ovl_check -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd1067ba7 dispc_ovl_enabled -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd70adbc1 videomode_to_omap_video_timings -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd8ed186b omap_dss_pal_timings -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xda3c03e5 omapdss_default_get_recommended_bpp -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xdb93b838 dispc_free_irq -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xe24042c6 omapdss_default_get_timings -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xe544ea7b dss_mgr_start_update -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xee2bc2d0 omapdss_is_initialized -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xef3b2795 dispc_mgr_get_framedone_irq -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf1b221db omapdss_default_get_resolution -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf4a7fc6d omapdss_compat_init -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf4f63234 dispc_read_irqstatus -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf9192206 omapdss_register_display -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf9427374 dispc_request_irq -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xfe40bf95 dss_feat_get_num_ovls -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xffd2cf99 omap_dss_get_num_overlay_managers -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x2232ad82 virtio_dma_buf_attach -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x6a4627ac virtio_dma_buf_export -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x753049b9 virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x756d881b is_virtio_dma_buf -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 0x2367bde8 w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0x8204a306 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 -EXPORT_SYMBOL fs/fscache/fscache 0x089c0f55 __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0x0ad78e71 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x0d7ae459 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x12ddfb69 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x1d41c576 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x23cbd19a __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x2aa37f06 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0x3014d2ca __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x35d5cf0d fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0x36ea891a __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x3885a513 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x43c644cb __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x47537904 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x4760ce1e fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x562000b5 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x611a88c9 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0x645fae7a fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x6c18a098 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x7000ec36 __fscache_begin_read_operation -EXPORT_SYMBOL fs/fscache/fscache 0x742f995a __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x7700800f __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x77bf9d16 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x7eb5046a fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x7fec5c06 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x81041e87 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0xaafbc4a4 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xb3137a30 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xb34b60bd fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0xc41fcad8 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0xcc517db0 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xcf6f4db0 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0xdcc33ae6 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0xde295068 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xe5369207 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0xeb8042e3 fscache_operation_init -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 0x4b91c42b netfs_subreq_terminated -EXPORT_SYMBOL fs/netfs/netfs 0x4d00c632 netfs_stats_show -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 -EXPORT_SYMBOL fs/quota/quota_tree 0x3a771a11 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x5f7c866d qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x70db3ff8 qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0x87a832ad qtree_write_dquot -EXPORT_SYMBOL lib/crc-itu-t 0xa2048e95 crc_itu_t -EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table -EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc7 0xba95c5c0 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 0x4c9268e1 xchacha20poly1305_decrypt -EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x635b1a76 chacha20poly1305_decrypt -EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x64375eb4 chacha20poly1305_encrypt -EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x738d84bf xchacha20poly1305_encrypt -EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xb1ec48ec chacha20poly1305_decrypt_sg_inplace -EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xf0dbf797 chacha20poly1305_encrypt_sg_inplace -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 0x03f599c7 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0x1f52b700 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create -EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put -EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed -EXPORT_SYMBOL lib/lru_cache 0x8f9a3e09 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set -EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset -EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy -EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get -EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del -EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of -EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find -EXPORT_SYMBOL lib/lz4/lz4_compress 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 0x4cc636f2 LZ4_loadDictHC -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x765fd165 LZ4_saveDictHC -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xd02774b1 LZ4_compress_HC_continue -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 0x067fa594 objagg_create -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 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 0x13d24f16 ZSTD_compressBegin_advanced -EXPORT_SYMBOL lib/zstd/zstd_compress 0x1de3f19a ZSTD_endStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x2a0fd0d0 ZSTD_getCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0x2eacbe22 ZSTD_compressBlock -EXPORT_SYMBOL lib/zstd/zstd_compress 0x3281fb74 ZSTD_compress_usingDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x3545701d ZSTD_compressBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0x35bdc817 ZSTD_getBlockSizeMax -EXPORT_SYMBOL lib/zstd/zstd_compress 0x3b209a35 ZSTD_compressBegin -EXPORT_SYMBOL lib/zstd/zstd_compress 0x41e56a18 ZSTD_checkCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0x51022053 ZSTD_compressBegin_usingDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x58f4c817 ZSTD_adjustCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0x63230633 ZSTD_initCStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x6443babd ZSTD_compressContinue -EXPORT_SYMBOL lib/zstd/zstd_compress 0x66dbb4d2 ZSTD_initCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x6cbcd95e ZSTD_compressStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x71432c37 ZSTD_CCtxWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0x78431876 ZSTD_compressBegin_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x7aba5c0b ZSTD_getParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0x7b51b66c ZSTD_resetCStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x910096b6 ZSTD_compressEnd -EXPORT_SYMBOL lib/zstd/zstd_compress 0x9e0ec162 ZSTD_CStreamOutSize -EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel -EXPORT_SYMBOL lib/zstd/zstd_compress 0xa9eb465f ZSTD_CStreamInSize -EXPORT_SYMBOL lib/zstd/zstd_compress 0xb7872388 ZSTD_copyCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0xba2ffeea ZSTD_initCStream_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0xc04b3f8c ZSTD_compressCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0xcdfa135d ZSTD_CDictWorkspaceBound -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 0x00e350e4 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x71a99061 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xa9d58bc1 lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xc04d959a lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0xceb1bea2 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xd11cea2a lowpan_unregister_netdev -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/9p/9pnet 0x03f41223 p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x05292d8b v9fs_get_default_trans -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 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 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x3d986cf9 p9dirent_read -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 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 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 0xcd81c939 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -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 0xf0c3c63c p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xf1fe39e4 p9_client_getlock_dotl -EXPORT_SYMBOL net/appletalk/appletalk 0x57dcd1e2 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xa5475057 atalk_find_dev_addr -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/atm/atm 0x2cc2d52d vcc_hash -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 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 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 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xbcb9191d atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xf535c87a register_atm_ioctl -EXPORT_SYMBOL net/ax25/ax25 0x0f03db48 ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0x14893b33 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 0x5bdd3b66 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x7c9e0483 ax25_listen_register -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 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xdc3538a5 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0223ea14 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 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 0x7aad008b bt_to_errno -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 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 0xd7613212 bt_err_ratelimited -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 0x5a66ad78 ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x6f441702 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x6fbe3ced ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7236c5b9 ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x75ceb002 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x883697fb ebt_register_template -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 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 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x8a5506e5 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 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/ceph/libceph 0x0a3c60e0 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0x0b83624e ceph_msg_new -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 0x1cba3f20 ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0x1db067b7 ceph_msg_data_add_pagelist -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 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 0x2ff577c6 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x317ac0ee ceph_oloc_copy -EXPORT_SYMBOL net/ceph/libceph 0x3522979c ceph_buffer_new -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 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3cca0b2d ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x3d0f2a7c ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x3e2bffd5 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x3ec2f6b8 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x3ee919e9 ceph_msg_get -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 0x45044d94 ceph_find_or_create_string -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 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 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 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x63de9fb8 ceph_osdc_call -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 0x69efb6b1 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6b54a955 ceph_msg_put -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 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 0x7e7921a6 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x80adab46 ceph_msg_data_add_pages -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 0x830a33d3 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x8448c63e ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x8b8575ab ceph_monc_renew_subs -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 0x9304dccd ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x96f4473a ceph_msg_new2 -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 0x9ca95932 ceph_create_snap_context -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 0xa6a242f7 ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0xa8ea3d97 ceph_osdc_sync -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 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 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 0xc20c8ca8 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xc4ea4020 ceph_monc_validate_auth -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 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcba96e1c ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0xce9cdcb2 ceph_con_keepalive -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 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 0xdf6ef4a1 ceph_oid_printf -EXPORT_SYMBOL net/ceph/libceph 0xdfa8db33 ceph_con_close -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 0xe07054b4 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xe28ee217 ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0xe90ed3b9 ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0xea264041 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0xea73a360 ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0xed347f28 ceph_msg_data_add_bvecs -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 0xf562aab7 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xfa9e99e9 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0xfaeee844 ceph_con_init -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 0xc1f7fd32 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xf7bf7e8d dccp_req_err -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/ipv4/fou 0x00b9ceed __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0x19741ae4 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x9bff8fc9 __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xff1adff3 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0xbc4d69ef gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x14aa3a6f ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x22067f5f ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xfacd56a5 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xfec6869e ip_tunnel_get_link_net -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 0x0013b8e8 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x3b1f5e99 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb916be37 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xff088ce7 ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/tunnel4 0xb80d906e xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0xdf56c46f xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xec13a23d udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x010b7c68 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1a015085 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3f67e0da ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x40f1aaa3 ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5b4b4fc9 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x77f52e47 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc2832770 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcd052920 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xeebfa90c ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x37a96ace ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x3d2cb93d ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x80d0c7ad ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x925bb39e ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x5f97605b xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0xe0d8a4d9 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x0dc2172f xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xb9ea1063 xfrm6_tunnel_spi_lookup -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/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 0x03754e35 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x06418420 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x07d9d87a ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x0ad184af ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x0b22d1c0 ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x0d14b7ab ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x101d0c51 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x10687c4e ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x1349f809 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x139c7ac2 ieee80211_return_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x146f73d1 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x1912e687 ieee80211_beacon_get_tim -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 0x1c4a2b6b ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0x1c68371b ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x1cf129f6 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x1d2a94d4 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x20fe61a2 ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x216774d7 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x242e41f0 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x286d14be ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x291c717f __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x298ff5ab ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x2bea13e9 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x2cb666a5 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x2d8166da ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x34387b57 ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0x389c004a ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x3ad09944 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x41cf3e35 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x44aae7bc ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x45217a98 ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0x452bab53 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x4621ed86 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x4b514cff ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0x4b821404 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x4bb88fb8 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x4e946b16 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x4f4b636e __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x4f86a38e __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x562325c6 ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x593c9ca5 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x61456672 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x61c2119f ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x61f99c6e ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x6b46e874 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x6b866a56 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x6bffbca6 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x6c30348f ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0x6d832bed ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x722f46af ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x775c223e rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x7a34c9f6 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x7aabc44f ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x7ed17cb2 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x81033b8a ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x821648a1 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x86c689bb ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x8a1e63fa ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x8b5277c8 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x8e3c15d3 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x9113392e ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x962ea2b0 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x9c31c69d ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0x9e481082 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0x9e800755 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xa18dce69 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0xb12cedfb ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0xb36a08ca ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0xb3ae7575 ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xb5ce93ab ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0xbba3ba8b ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0xbe653bb2 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0xc892cd13 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xcc8c1538 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xcd12518c ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xcdd02244 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0xce620f32 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0xcf88ee62 ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0xd81164b4 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xd9ba73a1 ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0xdbdb2efb ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0xde4ff2e3 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xdeca4634 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xe03d6041 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0xe0b441ec __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xe1af43e4 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xe3d10887 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0xe42a4737 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0xe64beb15 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0xe7a991de ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0xe9786add ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xede36497 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xeed5f8e2 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xf0584469 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xf32a9840 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xf5b28aa8 ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xf62a704a ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0xfa04187e ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xfce4d922 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xfd0fe772 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac802154/mac802154 0x05aaf794 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x1945f589 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x287e7546 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x349b4964 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x7013b264 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0xd03bc202 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xe874e391 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xf40e3bb8 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0635c4a5 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x36eca402 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4e239ad3 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x53d217e6 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x589853a8 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5dd05030 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6e0fb20d ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x736c3fa3 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x99bda7a8 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa52d8fb1 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb0a76710 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb9a0963f ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc620ae1d ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe53ed64f ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe6673874 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x01bb0179 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 0x063c8030 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x38c33ce4 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0xa96a3538 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xcd45b797 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 0x2509e43f xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x30a6708e xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks -EXPORT_SYMBOL net/netfilter/x_tables 0x3ef8c4f6 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name -EXPORT_SYMBOL net/netfilter/x_tables 0x63d434a0 xt_find_table -EXPORT_SYMBOL net/netfilter/x_tables 0x6b07a920 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x876108a4 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x89867399 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x97566ecd xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xc0a5b8bf xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xde1bd8f6 xt_unregister_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 0x03f71c62 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x07336b07 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x0d265ee8 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x0e46c6dc nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x21e192de nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x2526beda nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x2b5cd9bc nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x350dee23 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x3aa14db9 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x4993b70a nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0x57c6fe06 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x5a241d8c nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0x5d2cabe2 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x63167a83 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x697fa630 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x7aafee01 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x8f246a4b nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xa8319d8a nfc_hci_reset_pipes -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 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/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 0x00c628f0 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x02be7d90 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x0a54386f rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x10c0a7f6 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x354f75bc rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0x41766ace rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5f865fdb rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6375f52a rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x706d0d12 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x7c2ad02f rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x924cef14 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x93007977 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x984c53c7 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa6bfcc4f rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd39f5007 rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd4f25256 rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0xee0bb14b rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf3bc0e5b rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/sctp/sctp 0xd0eb7e41 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x362313b6 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7dc853f5 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb9bc0403 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x3aedd287 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0x8922e166 get_srcport -EXPORT_SYMBOL net/sunrpc/sunrpc 0xba7a7f9e svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xf467a19f xdr_truncate_encode -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 0xff6536b7 tls_get_record -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 0x10959ce5 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x14cd8377 cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x15b5a3a8 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x196b8208 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x1c1a572d cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x21585f3c cfg80211_bss_color_notify -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 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 0x2a5d816f cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x2acf0be6 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x38ad9650 ieee80211_get_hdrlen_from_skb -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 0x430c109c ieee80211_get_num_supported_channels -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 0x4a0570d7 ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0x4d2b717d cfg80211_pmksa_candidate_notify -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 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 0x64d86187 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x64e147e9 cfg80211_del_sta_sinfo -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 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 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 0x79760671 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x80b41ac8 cfg80211_report_obss_beacon_khz -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 0x8b24e88f cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x8c8149a8 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x8f2cdeb3 cfg80211_notify_new_peer_candidate -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 0x9c54c1d8 cfg80211_put_bss -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 0xae5af223 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xae68e7fc cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0xaebcd5f3 wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0xafa620fe cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0xb3b755ad cfg80211_iftype_allowed -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 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 0xc1b99792 ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xc480985c cfg80211_rx_control_port -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 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 0xd1d2d269 ieee80211_get_channel_khz -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 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 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 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 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 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 -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x32422e20 snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xd686db57 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe957f2f5 snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf912f0c8 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x1724fb56 snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x17fcf66b snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x1cff6e14 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2f853c43 snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5f7f98 snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x56efbc6b snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdaf3383a snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xd4e8143a snd_virmidi_new -EXPORT_SYMBOL sound/core/snd-hwdep 0xc3c53da9 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x093d179f snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2806b5c6 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2b0d4cf0 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2f67c936 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3b96e108 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5a56ec23 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x68efc9e4 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6ce22786 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x70b2c698 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x749381fc __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x764e162e snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7b0c27f7 snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9b66ff74 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb3ae5f44 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0xbb7d7aee snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc8917f62 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xce0c2419 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd399b3de snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe2c9dfe8 snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0xfc00c38d snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/snd-seq-device 0x47b0e750 snd_seq_device_new -EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x912c5d00 snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x165f6631 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x2654bef3 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x38ec1f57 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4349cde1 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6b0dfe2e snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7df3a116 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9b8c82c0 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb6417bdf snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xdb070b61 snd_opl3_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1c57d39e snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2c191d64 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6c9574be snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x74a73d04 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x761dfbc8 snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8f397745 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x984bb8f0 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xaa508472 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb8cebf64 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x056075b3 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x07af1ddb iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x112dbe98 cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1a6ad517 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1dc766ee fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x40f24185 avc_general_get_plug_info -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 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 0x86fa3b0e amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9b643be7 cmp_connection_break -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 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 -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x32c481ef snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x47803f87 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x50185d7d snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x713e35e5 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x84a3c815 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xcf6197cd snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xdeb8634f snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf211ba8e snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x00756e88 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x60d9d87e snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x794c2a09 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xdfc18114 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x418187cb snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xb58b87fc snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/snd-i2c 0x1119bc02 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x4a5ff3fc snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x4c85d901 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x6a967208 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0x8de757d6 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0xee1c6b0b snd_i2c_readbytes -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x037afbd9 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x16b12fa5 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2064659d snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2c834471 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4a0c8e37 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x554062e6 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5ca02666 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x62efd1ba snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6a79e0d7 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9538ed67 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x96b17f11 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9adc45f0 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa8935707 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb31ac0df snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbd21a898 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbf74a4a9 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc0767f52 snd_ac97_read -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x9ba621da snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xdf19e9a9 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xe437c413 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x06dfdeb3 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0ee9f3f0 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x10947116 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2093ab9c oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2cfcb61b oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x34b697a9 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x42bbde9c oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x49648e5a oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x526a940d oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x53d1a974 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x54606d20 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5ff41f67 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x759697bb oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7f79242a oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x90396e7a oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbc375d4d oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcf4e38b4 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdab6a7b8 oxygen_write32 -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-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 -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xb59223d5 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xdac260b2 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x5eddef51 aic32x4_regmap_config -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 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 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/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 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 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 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 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 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 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 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 0xec0a56fd snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfcb5afc9 snd_sof_ipc_reply -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/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 0x001ee95a imx_ssi_fiq_base -EXPORT_SYMBOL vmlinux 0x002efd55 touch_atime -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 0x008ae22d jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x008b8572 tcf_em_register -EXPORT_SYMBOL vmlinux 0x0091e744 fs_param_is_bool -EXPORT_SYMBOL vmlinux 0x009e2da2 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x009e4750 clk_get -EXPORT_SYMBOL vmlinux 0x00a813ec fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0x00ad5e25 tso_build_data -EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00d4a4d0 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00f1000d ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x00f4f859 pci_map_rom -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x010ae4fe scsi_print_command -EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr -EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 -EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set -EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc -EXPORT_SYMBOL vmlinux 0x015af7f4 system_state -EXPORT_SYMBOL vmlinux 0x015c58da proc_symlink -EXPORT_SYMBOL vmlinux 0x0162df05 buffer_migrate_page -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 0x018a9853 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x019c234d xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x01a1249a skb_checksum_help -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 0x01b9c8f6 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x01bf78b5 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x01bff916 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x01d437cb pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x0214b4dc shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv -EXPORT_SYMBOL vmlinux 0x021a1b8c mdio_device_create -EXPORT_SYMBOL vmlinux 0x024aca0a seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0x02712e41 brioctl_set -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 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x0297016b __breadahead -EXPORT_SYMBOL vmlinux 0x029f9ed0 flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x02a74bd6 fs_param_is_enum -EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng -EXPORT_SYMBOL vmlinux 0x02cf2e58 vme_irq_handler -EXPORT_SYMBOL vmlinux 0x02df50b0 jiffies -EXPORT_SYMBOL vmlinux 0x02ed01ad unregister_filesystem -EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact -EXPORT_SYMBOL vmlinux 0x02f95503 vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0x031244d7 sock_i_uid -EXPORT_SYMBOL vmlinux 0x0326ba97 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x033c314e vfs_get_super -EXPORT_SYMBOL vmlinux 0x035cd2ff ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x036f204c cookie_timestamp_decode -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 -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 0x03a91de7 mmc_can_trim -EXPORT_SYMBOL vmlinux 0x03b0a201 __alloc_pages -EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all -EXPORT_SYMBOL vmlinux 0x03bdbd33 ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x03bee0de vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0x03c127e5 cros_ec_prepare_tx -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 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 0x043f00db sock_init_data -EXPORT_SYMBOL vmlinux 0x04426f14 mem_section -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x044fb722 dev_base_lock -EXPORT_SYMBOL vmlinux 0x0452dcc5 netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu -EXPORT_SYMBOL vmlinux 0x04925171 xp_raw_get_data -EXPORT_SYMBOL vmlinux 0x04939b11 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x04ac88ee balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x04ae0988 sg_zero_buffer -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 0x04fd85b4 set_security_override -EXPORT_SYMBOL vmlinux 0x0508088e ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x0508b853 sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0x0513111f sock_alloc_file -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x055bd4f9 fb_blank -EXPORT_SYMBOL vmlinux 0x055ca6fa pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x0561fcc3 netdev_crit -EXPORT_SYMBOL vmlinux 0x0575d3a6 dev_disable_lro -EXPORT_SYMBOL vmlinux 0x05a30ec6 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x05b0caa0 hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x05b91627 vif_device_init -EXPORT_SYMBOL vmlinux 0x05bf1e85 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x05c75bde mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0x05e13eb9 ZSTD_initDDict -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x061b7190 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x0637bba8 migrate_page_states -EXPORT_SYMBOL vmlinux 0x06482941 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x0654cdab find_inode_rcu -EXPORT_SYMBOL vmlinux 0x0659d954 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x065b98e9 snd_timer_interrupt -EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x06724b38 ZSTD_getFrameParams -EXPORT_SYMBOL vmlinux 0x067e66b7 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x0687071f __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x0691b75e input_get_keycode -EXPORT_SYMBOL vmlinux 0x06adf51a vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x06b4c404 blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0x06edb0c8 genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x070692c5 seq_escape_mem -EXPORT_SYMBOL vmlinux 0x07167142 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0x07170009 tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0x071809e5 __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x072a8f8d __set_fiq_regs -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x075a2c33 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x076c824b iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x076f913a blk_mq_free_tag_set -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 0x078c1c0c xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x079f8198 netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0x07a4c59b tso_count_descs -EXPORT_SYMBOL vmlinux 0x07a52dc9 locks_free_lock -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07b39d76 __mod_lruvec_page_state -EXPORT_SYMBOL vmlinux 0x07b9b0c9 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07e2c085 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x07f2ed94 phy_advertise_supported -EXPORT_SYMBOL vmlinux 0x07f4086f tc_setup_cb_reoffload -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 0x08249512 iwe_stream_add_point -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x08317483 set_user_nice -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 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x08c4fd32 omap_disable_dma_irq -EXPORT_SYMBOL vmlinux 0x08d08e96 vme_irq_generate -EXPORT_SYMBOL vmlinux 0x08d66d4b _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr -EXPORT_SYMBOL vmlinux 0x09015c7d tcf_exts_change -EXPORT_SYMBOL vmlinux 0x0926a555 snd_timer_global_free -EXPORT_SYMBOL vmlinux 0x0936e296 get_unmapped_area -EXPORT_SYMBOL vmlinux 0x095face3 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x097104bc __kfree_skb -EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09980086 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x09b05898 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x09b152e2 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x09c67010 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x09cdcb6d ethtool_get_phc_vclocks -EXPORT_SYMBOL vmlinux 0x09ce538d drop_nlink -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09e13d76 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0a09bef4 register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x0a1119bf user_path_create -EXPORT_SYMBOL vmlinux 0x0a19299f serio_rescan -EXPORT_SYMBOL vmlinux 0x0a20d621 ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr -EXPORT_SYMBOL vmlinux 0x0a429f45 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x0a4d65df ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x0a6e4a46 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x0a7dc4d3 dcb_ieee_getapp_prio_dscp_mask_map -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 0x0ae547ed xxh64_update -EXPORT_SYMBOL vmlinux 0x0aea8759 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x0aed3121 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x0b007b5a input_set_abs_params -EXPORT_SYMBOL vmlinux 0x0b02bfea kern_unmount -EXPORT_SYMBOL vmlinux 0x0b092640 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x0b0c65a4 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x0b0c8a2c filemap_check_errors -EXPORT_SYMBOL vmlinux 0x0b18bfcd vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x0b1b939e kmemdup -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b21b847 t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x0b24e925 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x0b39f723 page_get_link -EXPORT_SYMBOL vmlinux 0x0b3dc608 ether_setup -EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init -EXPORT_SYMBOL vmlinux 0x0b515e05 mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0x0b617520 dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0x0b6a5ceb tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x0b6de215 security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0x0b709411 omap_vrfb_release_ctx -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -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 0x0bfc08d1 lookup_one_positive_unlocked -EXPORT_SYMBOL vmlinux 0x0c16b899 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x0c25dd8f clk_bulk_get -EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c2894bc tcp_release_cb -EXPORT_SYMBOL vmlinux 0x0c36d0bb flow_rule_match_ct -EXPORT_SYMBOL vmlinux 0x0c4b8b75 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x0c53c86c pci_read_config_dword -EXPORT_SYMBOL vmlinux 0x0c63e2bb unregister_mtd_chip_driver -EXPORT_SYMBOL vmlinux 0x0c79b713 snd_pcm_hw_rule_add -EXPORT_SYMBOL vmlinux 0x0c8916cc fscrypt_put_encryption_info -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 0x0cc1f46e dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x0cc53502 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x0cced82b md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason -EXPORT_SYMBOL vmlinux 0x0cf98a52 ram_aops -EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d09ee12 param_get_bool -EXPORT_SYMBOL vmlinux 0x0d172ac9 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x0d1b54c1 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0x0d2f04b5 mmc_card_alternative_gpt_sector -EXPORT_SYMBOL vmlinux 0x0d30ac2f sock_release -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 0x0dba5e9a radix_tree_delete -EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex -EXPORT_SYMBOL vmlinux 0x0dd34946 sock_wmalloc -EXPORT_SYMBOL vmlinux 0x0de1517d snd_compr_malloc_pages -EXPORT_SYMBOL vmlinux 0x0de1ef48 cont_write_begin -EXPORT_SYMBOL vmlinux 0x0de76e06 tcf_idr_release -EXPORT_SYMBOL vmlinux 0x0ded2662 __netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x0df3709d devm_ioremap_np -EXPORT_SYMBOL vmlinux 0x0df784bb snd_info_create_module_entry -EXPORT_SYMBOL vmlinux 0x0e0ae056 seq_printf -EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e1c8804 dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x0e22421a xsk_get_pool_from_qid -EXPORT_SYMBOL vmlinux 0x0e3ddc5c skb_unlink -EXPORT_SYMBOL vmlinux 0x0e5f96c9 fb_set_suspend -EXPORT_SYMBOL vmlinux 0x0e80f248 ipv6_sock_mc_join -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 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 0x0ed17968 d_set_d_op -EXPORT_SYMBOL vmlinux 0x0ede109c snd_ctl_notify -EXPORT_SYMBOL vmlinux 0x0edfcd01 dev_close -EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy -EXPORT_SYMBOL vmlinux 0x0eebafa0 nf_log_trace -EXPORT_SYMBOL vmlinux 0x0f02e864 sync_file_create -EXPORT_SYMBOL vmlinux 0x0f06957f allocate_resource -EXPORT_SYMBOL vmlinux 0x0f082257 netif_device_detach -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 0x0f5ddf2e param_ops_uint -EXPORT_SYMBOL vmlinux 0x0f6ac4b3 input_event -EXPORT_SYMBOL vmlinux 0x0f6ba1c9 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f92f005 netif_receive_skb -EXPORT_SYMBOL vmlinux 0x0f95f2ce init_task -EXPORT_SYMBOL vmlinux 0x0fa749cb pcie_get_mps -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fc1ed02 ip_mc_check_igmp -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 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 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 0x1035a889 of_device_is_available -EXPORT_SYMBOL vmlinux 0x103c23d4 mmc_of_parse -EXPORT_SYMBOL vmlinux 0x10428369 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x104c477d netif_rx -EXPORT_SYMBOL vmlinux 0x104d5c52 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x106588e5 jbd2_journal_finish_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x106ec456 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x10739f1e swake_up_locked -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10897e69 fget_raw -EXPORT_SYMBOL vmlinux 0x108b1925 inode_nohighmem -EXPORT_SYMBOL vmlinux 0x10aed096 blk_queue_physical_block_size -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 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x10e8a4cf pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x10ea6a05 tcf_qevent_init -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x110bb0b7 fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0x1113086c skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x11231e24 rdmacg_try_charge -EXPORT_SYMBOL vmlinux 0x113c50d2 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x114255f0 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x1161259e inet_shutdown -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x1186bad3 __mdiobus_write -EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch -EXPORT_SYMBOL vmlinux 0x11a3c865 get_tree_keyed -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 0x11d9b0a4 flow_block_cb_free -EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg -EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic -EXPORT_SYMBOL vmlinux 0x11ea3f6a ip_setsockopt -EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp -EXPORT_SYMBOL vmlinux 0x11fa2a50 cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x1210fb32 _raw_read_lock_irqsave -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 0x123ecf0e jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x1249c5cf phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x1273a345 tegra_dfll_register -EXPORT_SYMBOL vmlinux 0x12959a42 vmf_insert_mixed_prot -EXPORT_SYMBOL vmlinux 0x12b33340 flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x12bb7f87 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x12be9486 get_ipc_ns_exported -EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12d94a5e d_add_ci -EXPORT_SYMBOL vmlinux 0x12e9d78b netdev_state_change -EXPORT_SYMBOL vmlinux 0x12eba6fc skb_headers_offset_update -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 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 0x133b3099 napi_schedule_prep -EXPORT_SYMBOL vmlinux 0x1347162b ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x1378c6b7 __traceiter_kmalloc -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 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x13dd1946 netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0x13de6d2b vfs_mkdir -EXPORT_SYMBOL vmlinux 0x13e61997 __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x13eb3031 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x13ee9e07 ip_ct_attach -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 0x140ad9c1 ip_check_defrag -EXPORT_SYMBOL vmlinux 0x140b2e05 netpoll_setup -EXPORT_SYMBOL vmlinux 0x140cef8e cmxgcr_lock -EXPORT_SYMBOL vmlinux 0x14167b85 devm_clk_put -EXPORT_SYMBOL vmlinux 0x141e5666 sock_pfree -EXPORT_SYMBOL vmlinux 0x14207c8c jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x143344c2 ip_frag_next -EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node -EXPORT_SYMBOL vmlinux 0x1438af3f inet_stream_ops -EXPORT_SYMBOL vmlinux 0x1451e8e5 vm_zone_stat -EXPORT_SYMBOL vmlinux 0x14528b9f ip_options_compile -EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc -EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x146ffde9 sg_miter_skip -EXPORT_SYMBOL vmlinux 0x148b7b67 skb_ext_add -EXPORT_SYMBOL vmlinux 0x14ac0d90 rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0x14b231c3 inet_sendpage -EXPORT_SYMBOL vmlinux 0x14bf72a7 genphy_read_status -EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit -EXPORT_SYMBOL vmlinux 0x14e3daf4 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL vmlinux 0x14eabb26 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x14f44b5f __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x14fc3049 __phy_write_mmd -EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x152e0ff4 __frontswap_store -EXPORT_SYMBOL vmlinux 0x1549d7d3 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x154cb45c tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0x155781f9 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x157c7ee4 sock_register -EXPORT_SYMBOL vmlinux 0x158bb5cb cqhci_init -EXPORT_SYMBOL vmlinux 0x159db801 mpage_writepage -EXPORT_SYMBOL vmlinux 0x15ab13e5 pci_match_id -EXPORT_SYMBOL vmlinux 0x15b0c3a7 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial -EXPORT_SYMBOL vmlinux 0x15c376e7 configfs_depend_item -EXPORT_SYMBOL vmlinux 0x15cc97b6 dev_remove_pack -EXPORT_SYMBOL vmlinux 0x15d433c0 ZSTD_decompressStream -EXPORT_SYMBOL vmlinux 0x15e5c13a flow_rule_alloc -EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init -EXPORT_SYMBOL vmlinux 0x160bc73b fs_param_is_u64 -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 0x163d2417 tegra_io_rail_power_off -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 0x16525cc4 xa_find -EXPORT_SYMBOL vmlinux 0x165c38cb pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x165ce34e devm_of_find_backlight -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 0x168fd750 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x16965b86 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x1698660e generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x16a206cc imx_scu_enable_general_irq_channel -EXPORT_SYMBOL vmlinux 0x16a35bd4 lock_page_memcg -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 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e48227 mroute6_is_socket -EXPORT_SYMBOL vmlinux 0x17205e2c generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x1725c46b ipv6_dev_find -EXPORT_SYMBOL vmlinux 0x172b5482 dma_fence_array_create -EXPORT_SYMBOL vmlinux 0x17320f35 tcp_v4_mtu_reduced -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 0x17d7574b bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0x17e28033 pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0x17e79d97 alloc_fcdev -EXPORT_SYMBOL vmlinux 0x17f21e0d generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0x17f29555 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0x17f6a010 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x17fcc052 dquot_operations -EXPORT_SYMBOL vmlinux 0x18080bc8 mmc_release_host -EXPORT_SYMBOL vmlinux 0x1820e6fc ip_local_deliver -EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x1835f1cf blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x185c32cf sgl_free -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 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18e6f6c5 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0x18fa4a6d flow_indr_dev_setup_offload -EXPORT_SYMBOL vmlinux 0x18fee0e4 pci_claim_resource -EXPORT_SYMBOL vmlinux 0x1905ea90 uart_resume_port -EXPORT_SYMBOL vmlinux 0x1944a87d __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0x195c8596 cpu_rmap_update -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 -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 0x199be140 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a0bcbf remove_proc_entry -EXPORT_SYMBOL vmlinux 0x19bd2ec3 pskb_extract -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19f5d541 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x1a20c540 omap_vrfb_supported -EXPORT_SYMBOL vmlinux 0x1a21d691 __ksize -EXPORT_SYMBOL vmlinux 0x1a276df0 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x1a2a77cd map_destroy -EXPORT_SYMBOL vmlinux 0x1a33e2bc phy_device_remove -EXPORT_SYMBOL vmlinux 0x1a4d97c8 dev_get_by_name_rcu -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 0x1a679246 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x1a7bc9ef xxh32 -EXPORT_SYMBOL vmlinux 0x1a974a0d amba_request_regions -EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1aa5c31d dev_set_alias -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 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b1663ba _dev_alert -EXPORT_SYMBOL vmlinux 0x1b25f187 __xa_store -EXPORT_SYMBOL vmlinux 0x1b3703d0 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x1b4851e7 __sock_i_ino -EXPORT_SYMBOL vmlinux 0x1b5259be free_netdev -EXPORT_SYMBOL vmlinux 0x1b55646f __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x1b5a48aa security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b631cbd rproc_free -EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b88adc7 watchdog_register_governor -EXPORT_SYMBOL vmlinux 0x1b965a53 kunmap_local_indexed -EXPORT_SYMBOL vmlinux 0x1b966f28 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x1b96c3bd max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x1bb4241a snd_pcm_suspend_all -EXPORT_SYMBOL vmlinux 0x1bdc5d5f pci_pme_capable -EXPORT_SYMBOL vmlinux 0x1be21e0f bio_split -EXPORT_SYMBOL vmlinux 0x1bebc702 dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x1bf53b8a eth_gro_receive -EXPORT_SYMBOL vmlinux 0x1c0115b6 dev_trans_start -EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states -EXPORT_SYMBOL vmlinux 0x1c2caded blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0x1c2f9fab arp_tbl -EXPORT_SYMBOL vmlinux 0x1c38026c mdio_device_remove -EXPORT_SYMBOL vmlinux 0x1c4b8d29 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c5e3aa8 inode_needs_sync -EXPORT_SYMBOL vmlinux 0x1c6e9ade block_read_full_page -EXPORT_SYMBOL vmlinux 0x1c70a9b9 sock_set_reuseport -EXPORT_SYMBOL vmlinux 0x1c777c5c dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x1c7da2ef pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x1c8e570e km_state_notify -EXPORT_SYMBOL vmlinux 0x1c8e8389 dquot_destroy -EXPORT_SYMBOL vmlinux 0x1c914971 blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0x1ca7a54b sock_init_data_uid -EXPORT_SYMBOL vmlinux 0x1caeb0b8 invalidate_bdev -EXPORT_SYMBOL vmlinux 0x1cb58017 ilookup -EXPORT_SYMBOL vmlinux 0x1cc04819 can_nice -EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x1cc34643 pci_scan_single_device -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 0x1d13c924 pci_write_config_byte -EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x1d2e4084 free_mdio_bitbang -EXPORT_SYMBOL vmlinux 0x1d563684 scsi_scan_host -EXPORT_SYMBOL vmlinux 0x1d64ed68 cqhci_irq -EXPORT_SYMBOL vmlinux 0x1d685e39 jbd2_journal_init_jbd_inode -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 0x1dc94947 netdev_emerg -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 0x1de037f2 nf_log_unset -EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x1de59c22 qcom_scm_ice_invalidate_key -EXPORT_SYMBOL vmlinux 0x1de73602 ip_tunnel_header_ops -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 0x1e0b179d tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0x1e17e46a devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x1e1951f7 snd_register_device -EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1e41418e __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x1e69337d nand_ecc_sw_hamming_init_ctx -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e76babc _dev_crit -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 0x1ec57ccd udp_seq_start -EXPORT_SYMBOL vmlinux 0x1ed23cbf xfrm_input -EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1f25559d netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x1f2b1e01 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x1f3ee6d6 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x1f3f8cb8 fput -EXPORT_SYMBOL vmlinux 0x1f4d5778 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x1f74edde pci_scan_slot -EXPORT_SYMBOL vmlinux 0x1f7b8a70 simple_release_fs -EXPORT_SYMBOL vmlinux 0x1f8d1a30 pci_write_config_dword -EXPORT_SYMBOL vmlinux 0x1f990b16 vmap -EXPORT_SYMBOL vmlinux 0x1fa5082a mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0x1fb7502f uart_suspend_port -EXPORT_SYMBOL vmlinux 0x1fbb76e1 fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fc038f1 sk_free -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd4e727 trace_event_printf -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 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 0x2012007b pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x2012e4a8 dma_set_mask -EXPORT_SYMBOL vmlinux 0x202622e1 truncate_pagecache -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 0x2072b8b4 unregister_sysctl_table -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 0x20ee5fad inet6_offloads -EXPORT_SYMBOL vmlinux 0x20ee6035 tcf_idr_search -EXPORT_SYMBOL vmlinux 0x20fbe036 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x2102bd7b ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context -EXPORT_SYMBOL vmlinux 0x21110dbf mmioset -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 0x212d1015 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x2138fb30 of_chosen -EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x21440bc4 regset_get -EXPORT_SYMBOL vmlinux 0x215b3ab8 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy -EXPORT_SYMBOL vmlinux 0x2170c84a mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0x21a8351b dma_set_coherent_mask -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 0x21df9abb xfrm_policy_delete -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 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 0x223b033e __devm_of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x2248f113 __serio_register_driver -EXPORT_SYMBOL vmlinux 0x225a6bea inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x2277d558 mx53_revision -EXPORT_SYMBOL vmlinux 0x22897e82 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x2290921d mmc_erase_group_aligned -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 0x22c331b6 scsi_host_put -EXPORT_SYMBOL vmlinux 0x22cbfb22 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x22d2fb12 sync_filesystem -EXPORT_SYMBOL vmlinux 0x22dacded jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x22ebedf0 pneigh_lookup -EXPORT_SYMBOL vmlinux 0x230327c3 security_tun_dev_attach -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 0x23705ae3 page_pool_put_page -EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x238bb6d3 contig_page_data -EXPORT_SYMBOL vmlinux 0x239771fb xfrm_register_km -EXPORT_SYMBOL vmlinux 0x23991bdf udp6_csum_init -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c3c74e __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x23c6105e security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -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 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x244456d2 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x2447bd7f amba_device_unregister -EXPORT_SYMBOL vmlinux 0x244e1fa4 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x24511f75 kill_anon_super -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -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 0x24721b90 mmc_is_req_done -EXPORT_SYMBOL vmlinux 0x248521c3 rproc_report_crash -EXPORT_SYMBOL vmlinux 0x2491ff64 sock_gettstamp -EXPORT_SYMBOL vmlinux 0x249af3dd mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL vmlinux 0x24acef9b inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x24c28653 inet_addr_type -EXPORT_SYMBOL vmlinux 0x24ca002b ppp_register_compressor -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 0x24f7e70a sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer -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 0x2536e9bc tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x254b4402 dget_parent -EXPORT_SYMBOL vmlinux 0x2558658f md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x255f8bd3 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x2573b3c0 tcp_get_md5sig_pool -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 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 0x25ece562 __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0x25f01970 tcp_mmap -EXPORT_SYMBOL vmlinux 0x25f01edb unpin_user_page_range_dirty_lock -EXPORT_SYMBOL vmlinux 0x25f5e7bc inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x25f7551a __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0x260a0170 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x26171667 scm_fp_dup -EXPORT_SYMBOL vmlinux 0x26293493 param_ops_long -EXPORT_SYMBOL vmlinux 0x263ba925 dquot_resume -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x2658c4ab nexthop_set_hw_flags -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 0x26a440a8 block_write_end -EXPORT_SYMBOL vmlinux 0x26a6bc66 tcf_register_action -EXPORT_SYMBOL vmlinux 0x26ae6807 fqdir_init -EXPORT_SYMBOL vmlinux 0x26b21037 write_one_page -EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0x26c84084 __alloc_skb -EXPORT_SYMBOL vmlinux 0x26cd1ab8 phy_attach_direct -EXPORT_SYMBOL vmlinux 0x26e054e1 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x270222a9 __sk_receive_skb -EXPORT_SYMBOL vmlinux 0x2706f9ad elevator_alloc -EXPORT_SYMBOL vmlinux 0x270ac400 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x270bb784 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x271587be end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x271938c9 security_task_getsecid_subj -EXPORT_SYMBOL vmlinux 0x271b165c phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0x271c0dce kernel_connect -EXPORT_SYMBOL vmlinux 0x27211321 fd_install -EXPORT_SYMBOL vmlinux 0x2721b31b unix_attach_fds -EXPORT_SYMBOL vmlinux 0x27223293 pldmfw_op_pci_match_record -EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x27369e59 devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0x273e5c0b nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x27450f9a neigh_ifdown -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274cc39f __dev_set_mtu -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 0x2782b393 xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x2793c6bf lease_get_mtime -EXPORT_SYMBOL vmlinux 0x27959848 file_modified -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27f2f401 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x27f30bde mdiobus_register_device -EXPORT_SYMBOL vmlinux 0x27f6751d unregister_framebuffer -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 0x282b9ca2 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x285148c1 devm_extcon_unregister_notifier_all -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 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 0x28cd3700 tcf_qevent_handle -EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -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 0x293de110 __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0x2950e3e2 kobject_get -EXPORT_SYMBOL vmlinux 0x295900af ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x299b5d5c alloc_fddidev -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 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 0x29e35ebf vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x29ea4f0b phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0x29f3f5f0 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x2a08b8c8 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x2a2202f0 cfb_copyarea -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a38f664 shmem_aops -EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit -EXPORT_SYMBOL vmlinux 0x2a851f6f netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free -EXPORT_SYMBOL vmlinux 0x2a93c260 eth_header_parse -EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get -EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp -EXPORT_SYMBOL vmlinux 0x2abca035 irq_domain_set_info -EXPORT_SYMBOL vmlinux 0x2b0272ec nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x2b0a0dc2 phy_validate_pause -EXPORT_SYMBOL vmlinux 0x2b16d1bc __scsi_execute -EXPORT_SYMBOL vmlinux 0x2b294f71 udp_gro_complete -EXPORT_SYMBOL vmlinux 0x2b2bbdd2 netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0x2b2e1aa6 pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x2b328f4a dm_table_event -EXPORT_SYMBOL vmlinux 0x2b5fe457 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x2b99722a __cpu_active_mask -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba4edba unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x2bb2d5d3 seq_file_path -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 0x2c06b74b write_inode_now -EXPORT_SYMBOL vmlinux 0x2c15d492 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up -EXPORT_SYMBOL vmlinux 0x2c42a97b _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x2c5065d0 mmc_erase -EXPORT_SYMBOL vmlinux 0x2c6b6974 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x2c76dba5 blk_pre_runtime_suspend -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 0x2cded9a3 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x2ce6a144 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x2cf6927b tcp_prot -EXPORT_SYMBOL vmlinux 0x2cfa2bda generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x2cfde9a2 warn_slowpath_fmt -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -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 -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 0x2d6fcc06 __kmalloc -EXPORT_SYMBOL vmlinux 0x2d7964bc seq_vprintf -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 0x2dc1b2c2 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x2dcae6bc vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0x2dd68817 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2df0f5d9 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x2dfbb14f vlan_vid_del -EXPORT_SYMBOL vmlinux 0x2dfbcc4b pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e2975dc mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x2e332c11 pps_register_source -EXPORT_SYMBOL vmlinux 0x2e3423f6 unregister_shrinker -EXPORT_SYMBOL vmlinux 0x2e3a05ef mmc_retune_pause -EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL vmlinux 0x2e49ac67 md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0x2e4faf09 scsi_device_put -EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2e91884b tegra_ivc_reset -EXPORT_SYMBOL vmlinux 0x2e9fb49a rproc_coredump_set_elf_info -EXPORT_SYMBOL vmlinux 0x2eabc9e1 blk_cleanup_queue -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 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f109d27 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x2f16b585 iput -EXPORT_SYMBOL vmlinux 0x2f1a9385 __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x2f1b0d62 ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x2f1baff9 skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security -EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle -EXPORT_SYMBOL vmlinux 0x2f366c20 module_refcount -EXPORT_SYMBOL vmlinux 0x2f42f002 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x2f50cbf5 proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x2f5b0fdb gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2f743d4f __put_user_ns -EXPORT_SYMBOL vmlinux 0x2f7e4b3d nand_monolithic_read_page_raw -EXPORT_SYMBOL vmlinux 0x2f9e15ee configfs_undepend_item -EXPORT_SYMBOL vmlinux 0x2fb89d55 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x2fc5b109 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x2fd8a7ce mmc_request_done -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x3011cfa9 request_partial_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x3015efae tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x3018684b dcache_readdir -EXPORT_SYMBOL vmlinux 0x301c4d59 __block_write_begin -EXPORT_SYMBOL vmlinux 0x3044f732 bdi_put -EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp -EXPORT_SYMBOL vmlinux 0x306eedab fsync_bdev -EXPORT_SYMBOL vmlinux 0x3071eeca tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x30745185 wait_for_completion_interruptible -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 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 0x312b8eb4 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x31306cdb sock_alloc -EXPORT_SYMBOL vmlinux 0x314b20c8 scnprintf -EXPORT_SYMBOL vmlinux 0x314d5d88 cqhci_resume -EXPORT_SYMBOL vmlinux 0x3164fbbc bioset_exit -EXPORT_SYMBOL vmlinux 0x316efc63 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x3177b608 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x3179d502 __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0x317a58a4 tcf_exts_terse_dump -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 0x31b59999 ps2_sliced_command -EXPORT_SYMBOL vmlinux 0x31bc186a __SetPageMovable -EXPORT_SYMBOL vmlinux 0x31cad23e passthru_features_check -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 0x32075d18 __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0x320f07ca _copy_to_iter -EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd -EXPORT_SYMBOL vmlinux 0x32430023 _totalhigh_pages -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 0x327c84bf vme_lm_attach -EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy -EXPORT_SYMBOL vmlinux 0x32985d75 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x32a8c1f6 tcp_check_req -EXPORT_SYMBOL vmlinux 0x32b19126 mmput_async -EXPORT_SYMBOL vmlinux 0x32ba6c53 snd_pcm_hw_refine -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 0x32e42d51 tcp_parse_options -EXPORT_SYMBOL vmlinux 0x32ee1630 cred_fscmp -EXPORT_SYMBOL vmlinux 0x33022620 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x3309c761 qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0x330dbe75 blk_queue_split -EXPORT_SYMBOL vmlinux 0x330fad4e page_readlink -EXPORT_SYMBOL vmlinux 0x33220baa pci_iomap -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 0x334e94c4 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x3369f0fb lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0x33830daa rt6_lookup -EXPORT_SYMBOL vmlinux 0x33839bad pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x33b9a4f0 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x33c49ac4 arm_coherent_dma_ops -EXPORT_SYMBOL vmlinux 0x33d2bed1 irq_set_chip -EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x33e4c6d8 dev_set_threaded -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 0x341dbfa3 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x342e1f9f netif_carrier_off -EXPORT_SYMBOL vmlinux 0x342e97ea inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x344562af security_path_rename -EXPORT_SYMBOL vmlinux 0x3448ef79 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x3479aff6 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x349b4277 xa_clear_mark -EXPORT_SYMBOL vmlinux 0x349ca8ae skb_put -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34a04d71 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x34a6e914 get_phy_device -EXPORT_SYMBOL vmlinux 0x34b061f7 __invalidate_device -EXPORT_SYMBOL vmlinux 0x34b6c787 netdev_printk -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 -EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34ca145c kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x34cc0e94 tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0x34e912fa blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x351448fb sg_miter_next -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -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 0x354a7c8b udp_ioctl -EXPORT_SYMBOL vmlinux 0x355991f8 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x3560e651 kmemdup_nul -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35afb28d kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0x35b33726 __blk_alloc_disk -EXPORT_SYMBOL vmlinux 0x35b73a07 __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x35c9533b nf_reinject -EXPORT_SYMBOL vmlinux 0x35d4dd64 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0x35ea78f5 atomic_io_modify_relaxed -EXPORT_SYMBOL vmlinux 0x35ffb617 sock_no_listen -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 0x3627fc1b component_match_add_release -EXPORT_SYMBOL vmlinux 0x3644f473 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x36588e6a tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x36607cc7 follow_down -EXPORT_SYMBOL vmlinux 0x3675cd26 account_page_redirty -EXPORT_SYMBOL vmlinux 0x367a14de serio_unregister_port -EXPORT_SYMBOL vmlinux 0x3682dd01 iunique -EXPORT_SYMBOL vmlinux 0x368a7c15 udplite_prot -EXPORT_SYMBOL vmlinux 0x36af5e35 bpf_sk_lookup_enabled -EXPORT_SYMBOL vmlinux 0x36c36f53 of_graph_get_endpoint_count -EXPORT_SYMBOL vmlinux 0x36d69557 ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x36dc8c69 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x36df299d mdiobus_free -EXPORT_SYMBOL vmlinux 0x36ee2ed8 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x36f7f9fb devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0x371ac1cd kset_register -EXPORT_SYMBOL vmlinux 0x372696e7 skb_clone -EXPORT_SYMBOL vmlinux 0x372be006 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x373feb42 sk_stream_error -EXPORT_SYMBOL vmlinux 0x3742bf82 nonseekable_open -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x374b47eb ZSTD_findDecompressedSize -EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x3782b214 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL vmlinux 0x37aa72e9 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x37b0aa04 config_item_put -EXPORT_SYMBOL vmlinux 0x37b14392 inetdev_by_index -EXPORT_SYMBOL vmlinux 0x37ba2f69 vme_lm_request -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37e373df sock_no_accept -EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r -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 0x38299311 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x3842b3a6 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x386381fd ip6_dst_alloc -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 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 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 0x38f48af7 put_user_ifreq -EXPORT_SYMBOL vmlinux 0x38f4e6a0 register_framebuffer -EXPORT_SYMBOL vmlinux 0x3914ffc7 devm_clk_get -EXPORT_SYMBOL vmlinux 0x392c294b km_new_mapping -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x3944e93c import_iovec -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach -EXPORT_SYMBOL vmlinux 0x394c845e dev_loopback_xmit -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 0x39892e1e nlmsg_notify -EXPORT_SYMBOL vmlinux 0x398f2e61 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x3992bc63 __xa_set_mark -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -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 0x39e043cc mr_fill_mroute -EXPORT_SYMBOL vmlinux 0x39e422c1 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x39f663ad mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x39f8c3fe iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x39fe5196 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x3a058791 mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0x3a1b5f8a netdev_update_features -EXPORT_SYMBOL vmlinux 0x3a3d2e94 sock_create -EXPORT_SYMBOL vmlinux 0x3a3dcb60 tty_port_close -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 0x3a9b71ef kernel_read -EXPORT_SYMBOL vmlinux 0x3aa900f1 of_device_alloc -EXPORT_SYMBOL vmlinux 0x3ab03013 register_netdev -EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3abbbc22 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x3ac03191 vfs_rename -EXPORT_SYMBOL vmlinux 0x3ac73f4c seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0x3ad6fd8e krait_get_l2_indirect_reg -EXPORT_SYMBOL vmlinux 0x3af41aa6 netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0x3b0f66d3 param_ops_charp -EXPORT_SYMBOL vmlinux 0x3b15598f pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0x3b299067 percpu_counter_set -EXPORT_SYMBOL vmlinux 0x3b345f81 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x3b40879d check_zeroed_user -EXPORT_SYMBOL vmlinux 0x3b4c0201 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x3b59563f inc_nlink -EXPORT_SYMBOL vmlinux 0x3b59b2ee __skb_warn_lro_forwarding -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 0x3b7ced95 sound_class -EXPORT_SYMBOL vmlinux 0x3b868c47 unix_destruct_scm -EXPORT_SYMBOL vmlinux 0x3b901f9d gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x3bbc9515 pci_get_slot -EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base -EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3bf0d48e i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0x3c009fd9 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x3c080ae4 dqget -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 0x3c5e3246 serio_close -EXPORT_SYMBOL vmlinux 0x3c70140b uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x3c7e65ff blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x3c8f6ef0 __xa_insert -EXPORT_SYMBOL vmlinux 0x3c8f957f phy_device_free -EXPORT_SYMBOL vmlinux 0x3cb7a884 __scm_destroy -EXPORT_SYMBOL vmlinux 0x3cc179e9 vfs_create -EXPORT_SYMBOL vmlinux 0x3cd03088 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3cfd1574 fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0x3d03d131 kthread_bind -EXPORT_SYMBOL vmlinux 0x3d1c38ba key_revoke -EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap -EXPORT_SYMBOL vmlinux 0x3d404ceb __vmalloc_array -EXPORT_SYMBOL vmlinux 0x3d45b793 mdio_device_free -EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d62407c mfd_remove_devices_late -EXPORT_SYMBOL vmlinux 0x3d74d2b4 napi_build_skb -EXPORT_SYMBOL vmlinux 0x3d8a6b06 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x3d91a178 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x3d931d9d seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0x3d93bb46 snd_dma_buffer_mmap -EXPORT_SYMBOL vmlinux 0x3d9c8f9f kernel_param_lock -EXPORT_SYMBOL vmlinux 0x3da11a03 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x3da1cff1 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x3da6aa54 uart_register_driver -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 0x3dcdeeae zap_page_range -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 0x3de4395a generic_file_open -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e01de09 pcibios_fixup_bus -EXPORT_SYMBOL vmlinux 0x3e1e208a d_instantiate -EXPORT_SYMBOL vmlinux 0x3e27cc38 bdev_read_only -EXPORT_SYMBOL vmlinux 0x3e3182eb inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e4a9244 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x3e74d81b xsk_set_tx_need_wakeup -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 0x3ea5f301 qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0x3eacbe70 tcp_child_process -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 0x3eff4083 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x3f056227 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x3f1dc04e pci_enable_device -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f4af46f gen_pool_first_fit_order_align -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 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f92bc51 kernel_write -EXPORT_SYMBOL vmlinux 0x3fabfd94 netif_schedule_queue -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 0x40306070 sk_alloc -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 0x4063dcb2 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 -EXPORT_SYMBOL vmlinux 0x4079fe18 bmap -EXPORT_SYMBOL vmlinux 0x407a3275 omap_start_dma -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40b51c05 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x40b6b7af pid_task -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d402ad do_wait_intr -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40eed0df current_in_userns -EXPORT_SYMBOL vmlinux 0x40efa5c3 flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 -EXPORT_SYMBOL vmlinux 0x4111bd48 pipe_unlock -EXPORT_SYMBOL vmlinux 0x411fca8f pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0x412b4250 devfreq_update_status -EXPORT_SYMBOL vmlinux 0x412cf11f rproc_add -EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x414975dd __genradix_prealloc -EXPORT_SYMBOL vmlinux 0x4165fd25 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command -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 0x41db337f of_get_cpu_node -EXPORT_SYMBOL vmlinux 0x41e69844 skb_dequeue -EXPORT_SYMBOL vmlinux 0x41e91515 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x41fa2e2f genphy_check_and_restart_aneg -EXPORT_SYMBOL vmlinux 0x420405f9 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse -EXPORT_SYMBOL vmlinux 0x420e7e7c xp_dma_sync_for_cpu_slow -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x421d4dcf krealloc -EXPORT_SYMBOL vmlinux 0x422f6d61 pcim_pin_device -EXPORT_SYMBOL vmlinux 0x423ee6d0 mmc_retune_release -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 0x4261557c ip6tun_encaps -EXPORT_SYMBOL vmlinux 0x428806ec pcim_iounmap -EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all -EXPORT_SYMBOL vmlinux 0x429dc46b twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x42a47e45 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x42c5a1a9 mpage_readpage -EXPORT_SYMBOL vmlinux 0x42dd9cef netlink_capable -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 0x432c077b __pagevec_release -EXPORT_SYMBOL vmlinux 0x43366eb9 get_task_cred -EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0x43479b21 try_to_release_page -EXPORT_SYMBOL vmlinux 0x4350caee kobject_put -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x435e69dd mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x43641f91 igrab -EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x437e716d devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x4384eb42 __release_region -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x438ec95f tcp_connect -EXPORT_SYMBOL vmlinux 0x439fc9be dev_addr_flush -EXPORT_SYMBOL vmlinux 0x43a0e36d hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x43a2b7cb rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0x43c90aef netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43e57231 commit_creds -EXPORT_SYMBOL vmlinux 0x43e6aed4 mod_node_page_state -EXPORT_SYMBOL vmlinux 0x43f18d43 arp_send -EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember -EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control -EXPORT_SYMBOL vmlinux 0x440bf253 skb_push -EXPORT_SYMBOL vmlinux 0x441161cf jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0x4412c173 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume -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 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 0x44940616 get_tz_trend -EXPORT_SYMBOL vmlinux 0x4498ce97 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x4499980c noop_qdisc -EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x44c5a6f3 dm_table_get_size -EXPORT_SYMBOL vmlinux 0x44c9dc6c percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0x44cdf7ba lock_rename -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 0x44f1ba5b skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x44f50c1b scsi_host_get -EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id -EXPORT_SYMBOL vmlinux 0x450de827 phy_sfp_probe -EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x4532f693 inode_insert5 -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x457ab720 dm_put_device -EXPORT_SYMBOL vmlinux 0x45911aa4 snd_info_free_entry -EXPORT_SYMBOL vmlinux 0x45b33f42 edac_mc_find -EXPORT_SYMBOL vmlinux 0x45bd19de nla_strscpy -EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low -EXPORT_SYMBOL vmlinux 0x45e5d792 xp_dma_unmap -EXPORT_SYMBOL vmlinux 0x45fdee7f dma_fence_signal_timestamp -EXPORT_SYMBOL vmlinux 0x46025ff1 of_parse_phandle -EXPORT_SYMBOL vmlinux 0x460adbc9 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x460d62bb napi_consume_skb -EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x46244c03 ns_capable -EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy -EXPORT_SYMBOL vmlinux 0x463c8e5f load_nls -EXPORT_SYMBOL vmlinux 0x464a469d neigh_destroy -EXPORT_SYMBOL vmlinux 0x4659dea2 seg6_push_hmac -EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size -EXPORT_SYMBOL vmlinux 0x46732633 vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0x46812028 pci_remove_bus -EXPORT_SYMBOL vmlinux 0x46897e2c put_ipc_ns -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 -EXPORT_SYMBOL vmlinux 0x46d5c668 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x46d97911 dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0x46df6e41 d_splice_alias -EXPORT_SYMBOL vmlinux 0x46e1ab09 phy_write_paged -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 0x47065c73 cpm_muram_offset -EXPORT_SYMBOL vmlinux 0x470777f2 iterate_fd -EXPORT_SYMBOL vmlinux 0x47080ddd dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x470bc1a1 bio_devname -EXPORT_SYMBOL vmlinux 0x4713641e stream_open -EXPORT_SYMBOL vmlinux 0x47304d56 scsi_add_device -EXPORT_SYMBOL vmlinux 0x47488396 __dquot_transfer -EXPORT_SYMBOL vmlinux 0x4756260d ida_destroy -EXPORT_SYMBOL vmlinux 0x475d84ef gen_pool_dma_alloc_algo -EXPORT_SYMBOL vmlinux 0x47630234 netif_napi_add -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 0x479d89aa netif_device_attach -EXPORT_SYMBOL vmlinux 0x47b0eaa6 devm_rproc_alloc -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 0x47e70229 v7_flush_user_cache_range -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 0x4813eb3f netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x4839fb4c inet_sendmsg -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 0x48571784 dma_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x485ff32b mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0x4862a915 param_set_charp -EXPORT_SYMBOL vmlinux 0x4871d75d clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x48803b6e twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x4895e9dd mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type -EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48b58ed8 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x48b8e98b inet_csk_clear_xmit_timers -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 0x48eaf9ba devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x48f5f8f9 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x48f69ab7 udp_pre_connect -EXPORT_SYMBOL vmlinux 0x48f8e82a iov_iter_init -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x4935c7ec ip6_frag_next -EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 -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 0x49970de8 finish_wait -EXPORT_SYMBOL vmlinux 0x49ac3352 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x49b66721 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x49c5b7b4 vlan_ioctl_set -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 0x4a264d02 inet_csk_destroy_sock -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 0x4a4d43b0 sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0x4a5c1b17 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x4a61abf0 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x4a7e3738 dev_mc_flush -EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4ac047c8 max8925_bulk_read -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 0x4af6ddf0 kstrtou16 -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 0x4b112c88 follow_down_one -EXPORT_SYMBOL vmlinux 0x4b123382 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x4b1b9e5f pci_disable_link_state -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 0x4b72edc8 tcf_block_get -EXPORT_SYMBOL vmlinux 0x4b7ae484 snd_seq_root -EXPORT_SYMBOL vmlinux 0x4ba5ef6d zpool_register_driver -EXPORT_SYMBOL vmlinux 0x4be85a03 memweight -EXPORT_SYMBOL vmlinux 0x4be8e9e9 lookup_one_unlocked -EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4bfa6dca blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x4bfd10b8 kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x4bfdcefa __memset32 -EXPORT_SYMBOL vmlinux 0x4c05e564 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x4c0f4406 setattr_should_drop_sgid -EXPORT_SYMBOL vmlinux 0x4c0fb335 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL vmlinux 0x4c1cca3b cpumask_next_wrap -EXPORT_SYMBOL vmlinux 0x4c1ddb5b seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr -EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x4c3f88d0 inet_listen -EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c4a6839 tcp_poll -EXPORT_SYMBOL vmlinux 0x4c4f353d d_add -EXPORT_SYMBOL vmlinux 0x4c4fd9c3 phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0x4c731d6a prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x4c75be14 block_commit_write -EXPORT_SYMBOL vmlinux 0x4c75c0a5 pci_read_config_word -EXPORT_SYMBOL vmlinux 0x4c8bafc4 vfs_setpos -EXPORT_SYMBOL vmlinux 0x4cb3293f xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x4cbb2957 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x4cc2854d tegra114_clock_assert_dfll_dvco_reset -EXPORT_SYMBOL vmlinux 0x4cd94b5b configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x4cecc113 __netdev_alloc_skb -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 0x4d055da5 tcp_rtx_synack -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 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 0x4d57964f jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x4d6ae35f rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x4d7b9309 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x4d865182 blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size -EXPORT_SYMBOL vmlinux 0x4d9ca328 sk_stop_timer -EXPORT_SYMBOL vmlinux 0x4da36924 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x4db6ddd3 of_get_property -EXPORT_SYMBOL vmlinux 0x4dc8b5d8 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x4dc9baac inet_frags_fini -EXPORT_SYMBOL vmlinux 0x4dce47d8 _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x4dec6038 memscan -EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read -EXPORT_SYMBOL vmlinux 0x4dff0ca3 xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0x4e05bdec mempool_init_node -EXPORT_SYMBOL vmlinux 0x4e15e4d9 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0x4e162fa9 redraw_screen -EXPORT_SYMBOL vmlinux 0x4e22d59b memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow -EXPORT_SYMBOL vmlinux 0x4e435be0 vfs_fsync -EXPORT_SYMBOL vmlinux 0x4e5458d5 framebuffer_release -EXPORT_SYMBOL vmlinux 0x4e616671 __netif_napi_del -EXPORT_SYMBOL vmlinux 0x4e673dc7 arp_xmit -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e80d27c ucc_fast_enable -EXPORT_SYMBOL vmlinux 0x4e81d03b tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x4e8a35c5 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x4e8e5fef kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x4e945a6b phy_ethtool_get_stats -EXPORT_SYMBOL vmlinux 0x4e95cbef find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0x4e963dfa skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x4e9ef354 input_release_device -EXPORT_SYMBOL vmlinux 0x4eaa0535 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0x4eb6abb0 mr_table_dump -EXPORT_SYMBOL vmlinux 0x4eb6f77f generic_read_dir -EXPORT_SYMBOL vmlinux 0x4eb84102 blk_sync_queue -EXPORT_SYMBOL vmlinux 0x4ec8d8a1 snd_ctl_notify_one -EXPORT_SYMBOL vmlinux 0x4ee0e846 ZSTD_initDCtx -EXPORT_SYMBOL vmlinux 0x4ee98ebd tcp_have_smc -EXPORT_SYMBOL vmlinux 0x4f12093e __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x4f1452e8 ipv6_push_frag_opts -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 0x4f2fec30 __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x4f356a64 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x4f3b155b jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0x4f57fd47 generic_perform_write -EXPORT_SYMBOL vmlinux 0x4f58b9a5 __of_get_address -EXPORT_SYMBOL vmlinux 0x4f6e5a56 bioset_init_from_src -EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL vmlinux 0x4f858606 mptcp_subflow_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x4f886af9 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free -EXPORT_SYMBOL vmlinux 0x4faed07a twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x4fbce4b9 iov_iter_revert -EXPORT_SYMBOL vmlinux 0x4fbeb307 generic_delete_inode -EXPORT_SYMBOL vmlinux 0x4fc621a8 __break_lease -EXPORT_SYMBOL vmlinux 0x4fddc116 path_has_submounts -EXPORT_SYMBOL vmlinux 0x4fdef8ec seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x4fef3ef4 completion_done -EXPORT_SYMBOL vmlinux 0x4ff694b0 kobject_set_name -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 0x501b1004 mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0x5022787e tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x502b6647 mempool_create_node -EXPORT_SYMBOL vmlinux 0x50330320 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges -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 0x5056423e default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x50624917 sha1_init -EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x50896c71 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check -EXPORT_SYMBOL vmlinux 0x508db09a put_cmsg_scm_timestamping64 -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 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 0x50db6d52 dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0x50e67a56 scsi_ioctl -EXPORT_SYMBOL vmlinux 0x50f3d8c0 sock_bindtoindex -EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc -EXPORT_SYMBOL vmlinux 0x50fa0fea phy_trigger_machine -EXPORT_SYMBOL vmlinux 0x50fd6103 dma_fence_signal -EXPORT_SYMBOL vmlinux 0x51109cc1 blk_integrity_register -EXPORT_SYMBOL vmlinux 0x51208e52 kill_block_super -EXPORT_SYMBOL vmlinux 0x5128fc0e skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x513014b5 skb_vlan_push -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 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 0x518f14ec dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x5197393d inet_offloads -EXPORT_SYMBOL vmlinux 0x51a8a6a8 napi_get_frags -EXPORT_SYMBOL vmlinux 0x51a910c0 arm_copy_to_user -EXPORT_SYMBOL vmlinux 0x51b5ad76 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x51c11e16 udp_seq_next -EXPORT_SYMBOL vmlinux 0x51c9dc10 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x51d8b927 vfs_ioctl -EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid -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 0x520af95f tcf_qevent_destroy -EXPORT_SYMBOL vmlinux 0x5216c317 max8998_update_reg -EXPORT_SYMBOL vmlinux 0x521b0144 unregister_netdev -EXPORT_SYMBOL vmlinux 0x522fb0e4 __hsiphash_unaligned -EXPORT_SYMBOL vmlinux 0x523cdabc qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x523e57aa ZSTD_getDictID_fromDict -EXPORT_SYMBOL vmlinux 0x52451b9d sock_create_kern -EXPORT_SYMBOL vmlinux 0x5258ad1a __put_page -EXPORT_SYMBOL vmlinux 0x5259f392 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x525fd8d2 dma_sync_single_for_cpu -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 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 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 0x530644a7 inet_pton_with_scope -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 0x53227d33 xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x535d2ca9 ___pskb_trim -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 0x539891c4 param_set_hexint -EXPORT_SYMBOL vmlinux 0x53abcc34 build_skb -EXPORT_SYMBOL vmlinux 0x53ac009f tcp_make_synack -EXPORT_SYMBOL vmlinux 0x53aeb013 hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x53c5ea06 netlink_unicast -EXPORT_SYMBOL vmlinux 0x53c5f44d sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x53cb95b0 __getblk_gfp -EXPORT_SYMBOL vmlinux 0x53ebf04e sock_set_mark -EXPORT_SYMBOL vmlinux 0x541524da cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x5422f1ca __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x542442e6 save_stack_trace_tsk -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x545a9623 mmc_can_erase -EXPORT_SYMBOL vmlinux 0x546a6edd backlight_force_update -EXPORT_SYMBOL vmlinux 0x54906d8b phy_get_internal_delay -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 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 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x551809d9 dm_io -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -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 0x55a51e85 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x55c56985 put_cmsg -EXPORT_SYMBOL vmlinux 0x55d1df87 ppp_register_channel -EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55e76c35 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0x55eb869a _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x55ef89ba write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x55f9077b get_acl -EXPORT_SYMBOL vmlinux 0x560897b8 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x561a341b __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x562dc75c tcf_block_put -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x56479742 generic_write_checks -EXPORT_SYMBOL vmlinux 0x56498087 paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x565293e0 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x5655577e mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x565aa49f dump_skip -EXPORT_SYMBOL vmlinux 0x566b181c mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x566e7c1f xfrm_find_acq_byseq -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 0x56afbd6e mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56e3547c fb_find_mode -EXPORT_SYMBOL vmlinux 0x56ec5c93 vm_map_ram -EXPORT_SYMBOL vmlinux 0x56f72161 dm_kobject_release -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 0x5739fd89 mdiobus_scan -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 0x575e90e6 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x577c163c tegra_dfll_runtime_resume -EXPORT_SYMBOL vmlinux 0x57a3fc06 is_firmware_framebuffer -EXPORT_SYMBOL vmlinux 0x57ceedb1 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x57d9449d devm_rproc_add -EXPORT_SYMBOL vmlinux 0x57e5170c qcom_scm_iommu_secure_ptbl_size -EXPORT_SYMBOL vmlinux 0x57e96d58 skb_checksum_trimmed -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 0x57ff23f0 ZSTD_getFrameContentSize -EXPORT_SYMBOL vmlinux 0x57ff3d5d __kmap_local_page_prot -EXPORT_SYMBOL vmlinux 0x580525e2 devm_ioremap_resource -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 0x58516557 omap_set_dma_src_data_pack -EXPORT_SYMBOL vmlinux 0x58540bf0 rawnand_sw_hamming_init -EXPORT_SYMBOL vmlinux 0x5855b740 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0x58674049 dev_get_by_name -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 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58fad869 __var_waitqueue -EXPORT_SYMBOL vmlinux 0x59155abc jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x59281c95 tc6393xb_lcd_mode -EXPORT_SYMBOL vmlinux 0x592b5bd9 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0x59403bc8 page_symlink_inode_operations -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 0x5966f1c4 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x596a1261 bioset_init -EXPORT_SYMBOL vmlinux 0x598e7849 mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg -EXPORT_SYMBOL vmlinux 0x59a17bfc tegra114_clock_tune_cpu_trimmers_high -EXPORT_SYMBOL vmlinux 0x59b1d17c pci_add_resource -EXPORT_SYMBOL vmlinux 0x59b54845 mmc_set_data_timeout -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 0x59c9a867 mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area -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 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a14de15 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -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 0x5a99a0d7 flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x5a9e9735 __scsi_add_device -EXPORT_SYMBOL vmlinux 0x5aa89f21 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x5ab6557c iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x5ac7b987 jbd2_trans_will_send_data_barrier -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 0x5b18b44b __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x5b2475f7 nla_put_64bit -EXPORT_SYMBOL vmlinux 0x5b2a8b90 snd_unregister_oss_device -EXPORT_SYMBOL vmlinux 0x5b2ce32c snd_jack_new -EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax -EXPORT_SYMBOL vmlinux 0x5b71c4c9 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x5b764d3c unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x5b91a4c7 tcf_idr_create -EXPORT_SYMBOL vmlinux 0x5b95d3d4 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x5bbe49f4 __init_waitqueue_head -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 0x5be4de28 file_remove_privs -EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5bf8b8e8 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x5c12dad4 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c40b4f0 iov_iter_xarray -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 0x5c8fbe06 input_close_device -EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id -EXPORT_SYMBOL vmlinux 0x5c9b4338 __vfs_setxattr -EXPORT_SYMBOL vmlinux 0x5cb1492a of_get_next_cpu_node -EXPORT_SYMBOL vmlinux 0x5cbd8e69 __crc32c_le -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 0x5cf6beec tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x5d194384 d_tmpfile -EXPORT_SYMBOL vmlinux 0x5d37562d dev_activate -EXPORT_SYMBOL vmlinux 0x5d37d658 dim_park_tired -EXPORT_SYMBOL vmlinux 0x5d3ac32d get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d4c6e9e dma_resv_fini -EXPORT_SYMBOL vmlinux 0x5d6044e2 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x5d7edf88 of_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0x5d81f6e2 pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0x5d8a6ca9 refresh_frequency_limits -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 0x5dcf6341 outer_cache -EXPORT_SYMBOL vmlinux 0x5dd19430 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x5dd2eb8a tcp_recvmsg -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 0x5dea710a __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x5df74c55 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x5dfcb1b9 param_set_int -EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e38c830 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x5e4a05fc mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x5e54764a pskb_expand_head -EXPORT_SYMBOL vmlinux 0x5e59338b __skb_ext_del -EXPORT_SYMBOL vmlinux 0x5e5d6202 dev_open -EXPORT_SYMBOL vmlinux 0x5e5fbfd0 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x5e6a2a16 md_done_sync -EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping -EXPORT_SYMBOL vmlinux 0x5e7cea8b bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL vmlinux 0x5e828508 tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5ea6e22c xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ec4a196 generic_file_mmap -EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x5eca972c netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed05bf6 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5ed40e76 netlink_broadcast_filtered -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 0x5f3545df neigh_direct_output -EXPORT_SYMBOL vmlinux 0x5f3e1f28 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x5f3ef22d devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption -EXPORT_SYMBOL vmlinux 0x5f7125ba mr_dump -EXPORT_SYMBOL vmlinux 0x5f721b18 sk_capable -EXPORT_SYMBOL vmlinux 0x5f754e5a memset -EXPORT_SYMBOL vmlinux 0x5f9c4b42 phy_find_first -EXPORT_SYMBOL vmlinux 0x5fb01358 alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fb9b2d7 t10_pi_type3_ip -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 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 0x604d1a71 config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x605f5bf9 skb_checksum -EXPORT_SYMBOL vmlinux 0x60769546 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x6098f7ed cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60bffe6d div64_u64 -EXPORT_SYMBOL vmlinux 0x60c0e799 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x60c4572b input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x60d3631b tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60e65830 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x60f59c6d scm_detach_fds -EXPORT_SYMBOL vmlinux 0x6107a7a4 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x610b507d skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x61175f97 snd_timer_instance_new -EXPORT_SYMBOL vmlinux 0x6121bd54 dql_init -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 0x61409961 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x6144ee67 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x6156c7f4 net_dim -EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge -EXPORT_SYMBOL vmlinux 0x61b24cc6 call_fib_notifiers -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 0x61df4967 vfs_mknod -EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final -EXPORT_SYMBOL vmlinux 0x61e4dbe4 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x620227fe eth_mac_addr -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x621dce67 mmc_add_host -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x623f79a7 mntput -EXPORT_SYMBOL vmlinux 0x6250f87c sockfd_lookup -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x6291ab90 udp_read_sock -EXPORT_SYMBOL vmlinux 0x6291f353 sock_from_file -EXPORT_SYMBOL vmlinux 0x62b756a7 softnet_data -EXPORT_SYMBOL vmlinux 0x62b9567c override_creds -EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62d971ab udp6_seq_ops -EXPORT_SYMBOL vmlinux 0x62e97824 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x62f576d9 trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0x6303c687 generic_fillattr -EXPORT_SYMBOL vmlinux 0x6303c6b1 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x6311a0b7 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x63179583 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x63231d35 omap_get_dma_src_pos -EXPORT_SYMBOL vmlinux 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 0x63551b66 of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0x636fa8c0 flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0x638f8dca param_get_uint -EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy -EXPORT_SYMBOL vmlinux 0x63a722e7 skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -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 0x63caff35 mmc_wait_for_req_done -EXPORT_SYMBOL vmlinux 0x63d97db5 d_delete -EXPORT_SYMBOL vmlinux 0x63e72f29 scsi_unblock_requests -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 0x63fbe5a1 padata_free_shell -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x6428f2b3 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x643a2581 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x643be015 dev_get_by_index -EXPORT_SYMBOL vmlinux 0x64419840 md_handle_request -EXPORT_SYMBOL vmlinux 0x64459fda pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x64527f7d phy_start_aneg -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 0x64955049 __module_get -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x649b2ad5 rproc_elf_load_segments -EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64fbd6ba pcibios_resource_to_bus -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 0x652c2bf3 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x6536a5b9 dev_add_offload -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x65464c16 clkdev_drop -EXPORT_SYMBOL vmlinux 0x65511378 nand_read_oob_std -EXPORT_SYMBOL vmlinux 0x6558878c __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0x655b383c of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0x655bfcc1 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x6561f618 sock_setsockopt -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 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65a67dfa security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x65be854e thermal_zone_device_critical -EXPORT_SYMBOL vmlinux 0x65c6ff64 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x65cec3d9 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x65d248f5 fib_notifier_ops_register -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 0x65f32ba1 rt_dst_clone -EXPORT_SYMBOL vmlinux 0x65faebb8 pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0x6614c1ca of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0x661793c5 snd_timer_instance_free -EXPORT_SYMBOL vmlinux 0x661cdf99 xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0x6623a902 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x66474aa4 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x665767f4 netdev_has_upper_dev -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 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 0x6690f760 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x66966eba sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x66a63949 nla_reserve -EXPORT_SYMBOL vmlinux 0x66aed8c5 csum_partial_copy_from_user -EXPORT_SYMBOL vmlinux 0x66d69447 done_path_create -EXPORT_SYMBOL vmlinux 0x66e21a61 unregister_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x66e225b4 unlock_buffer -EXPORT_SYMBOL vmlinux 0x66f2dca6 phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x66f9ff55 alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0x6706d9b2 iov_iter_pipe -EXPORT_SYMBOL vmlinux 0x67092819 resource_list_create_entry -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 0x67612af9 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x6766bcd1 thaw_super -EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit -EXPORT_SYMBOL vmlinux 0x679856f5 sort_r -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b60453 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67c557ef unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x67e2d12b tty_port_put -EXPORT_SYMBOL vmlinux 0x67e3b10a readahead_expand -EXPORT_SYMBOL vmlinux 0x67e7f263 dup_iter -EXPORT_SYMBOL vmlinux 0x67ea6e61 trace_print_hex_dump_seq -EXPORT_SYMBOL vmlinux 0x67f2ce98 vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0x682bc509 pci_assign_resource -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -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 0x68dda69e configfs_unregister_group -EXPORT_SYMBOL vmlinux 0x68de6289 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x68f686b0 __dec_node_page_state -EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s -EXPORT_SYMBOL vmlinux 0x690126a7 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x692ec314 security_sb_remount -EXPORT_SYMBOL vmlinux 0x694e4b33 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x697a60a4 of_node_name_prefix -EXPORT_SYMBOL vmlinux 0x698a3e1e jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x699b696b ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x69a8b8db tcp_seq_next -EXPORT_SYMBOL vmlinux 0x69adbb0e tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0x69b6f8d9 omap_set_dma_transfer_params -EXPORT_SYMBOL vmlinux 0x69bef1b9 netlink_kernel_release -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 0x69f8a4dd devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a07194f simple_transaction_read -EXPORT_SYMBOL vmlinux 0x6a09b4c4 kern_path -EXPORT_SYMBOL vmlinux 0x6a16c190 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x6a2e174a scsi_partsize -EXPORT_SYMBOL vmlinux 0x6a4eda37 cdev_device_del -EXPORT_SYMBOL vmlinux 0x6a51f6b1 __task_pid_nr_ns -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 0x6a74ab01 nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x6a8eacdd md_error -EXPORT_SYMBOL vmlinux 0x6a93372e param_ops_hexint -EXPORT_SYMBOL vmlinux 0x6a96755f sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x6a9b08d1 rpmh_write -EXPORT_SYMBOL vmlinux 0x6aa3363e udp_seq_ops -EXPORT_SYMBOL vmlinux 0x6aac8e54 devm_backlight_device_register -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 0x6aead76b xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6af07087 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x6af7b21a packing -EXPORT_SYMBOL vmlinux 0x6b0b679e mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b4d181b tty_unregister_device -EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b604710 lockref_get_not_zero -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 0x6bac0f4d pci_remap_iospace -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 0x6bded2a8 skb_store_bits -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 0x6c1b1400 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn -EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x6c3ff810 kfree_skb_reason -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 0x6c7daf7c mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x6c810e42 __xa_clear_mark -EXPORT_SYMBOL vmlinux 0x6c9cc438 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x6ca22246 vfs_get_tree -EXPORT_SYMBOL vmlinux 0x6cac6bdf skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x6cb3c650 __inet_hash -EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cca8665 xsk_clear_tx_need_wakeup -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 0x6cf0d67d qe_get_num_of_snums -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 0x6d50aa2e ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x6d529591 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x6d53292b __skb_checksum -EXPORT_SYMBOL vmlinux 0x6d54428b tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0x6d5f06e1 ucc_fast_transmit_on_demand -EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le -EXPORT_SYMBOL vmlinux 0x6d6669c7 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d89b199 proc_dointvec_minmax -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 0x6ddd6257 tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0x6de0f510 amba_find_device -EXPORT_SYMBOL vmlinux 0x6dedb29a key_task_permission -EXPORT_SYMBOL vmlinux 0x6dee251c jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -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 0x6e14bd31 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x6e1f33bc __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0x6e2996af get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x6e4cdf30 security_path_unlink -EXPORT_SYMBOL vmlinux 0x6e4e7714 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x6e634fa9 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x6e709868 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6eb4ac71 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x6eb99967 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x6ec0ff55 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x6ec9e9e2 tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0x6ecdb792 __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x6ed18ad8 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x6ee78ae0 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x6eee4b9b copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL vmlinux 0x6f013ecd __init_rwsem -EXPORT_SYMBOL vmlinux 0x6f15b253 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x6f15eb90 dev_change_proto_down_reason -EXPORT_SYMBOL vmlinux 0x6f25a25e input_get_poll_interval -EXPORT_SYMBOL vmlinux 0x6f68a04e blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x6f7f97d1 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x6f83fba8 hex2bin -EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func -EXPORT_SYMBOL vmlinux 0x6fa18ee0 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x6fa6597c set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x6fb374e6 down_write_killable -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 0x6fe001d6 mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x6fe2fce0 __frontswap_test -EXPORT_SYMBOL vmlinux 0x6fe635d8 devm_register_netdev -EXPORT_SYMBOL vmlinux 0x6ff91696 __ip_select_ident -EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x7014a289 sg_alloc_append_table_from_pages -EXPORT_SYMBOL vmlinux 0x701cd7da fb_class -EXPORT_SYMBOL vmlinux 0x7028540d nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x7038376c __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0x7047d54d dquot_get_state -EXPORT_SYMBOL vmlinux 0x70595112 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x70703993 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x7091fb19 of_parse_phandle_with_args_map -EXPORT_SYMBOL vmlinux 0x70a3cfde snd_ctl_remove_id -EXPORT_SYMBOL vmlinux 0x70c8cdb4 snd_compr_free_pages -EXPORT_SYMBOL vmlinux 0x70e384b0 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x70ed5531 unload_nls -EXPORT_SYMBOL vmlinux 0x70f11aca simple_link -EXPORT_SYMBOL vmlinux 0x70f77678 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x7102191c blk_queue_max_discard_sectors -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 0x7135e451 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x713c28d1 dquot_release -EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x715f33fb phy_attached_info -EXPORT_SYMBOL vmlinux 0x716b58cb ioport_resource -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x71718503 of_get_nand_ecc_user_config -EXPORT_SYMBOL vmlinux 0x7195cb78 is_subdir -EXPORT_SYMBOL vmlinux 0x71972037 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71b73181 clear_bdi_congested -EXPORT_SYMBOL vmlinux 0x71b92060 nf_hook_slow -EXPORT_SYMBOL vmlinux 0x71bf0e9e input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x71c1bd77 mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0x71c90087 memcmp -EXPORT_SYMBOL vmlinux 0x71d0fe8e pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x71d236f5 xfrm4_udp_encap_rcv -EXPORT_SYMBOL vmlinux 0x71f3f1c8 rfkill_alloc -EXPORT_SYMBOL vmlinux 0x71f7de4f proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x72005410 hdmi_infoframe_pack -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 0x722d0d78 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x722dd15c sk_mc_loop -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 0x7266363a iget_locked -EXPORT_SYMBOL vmlinux 0x72749fed devm_memremap -EXPORT_SYMBOL vmlinux 0x7274aa8d tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0x7274b55c pipe_lock -EXPORT_SYMBOL vmlinux 0x72753780 xfrm_lookup -EXPORT_SYMBOL vmlinux 0x72a32d26 snd_timer_new -EXPORT_SYMBOL vmlinux 0x72b25ef2 xsk_tx_peek_release_desc_batch -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 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 0x7321f69a free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x73482027 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x735a1726 tty_port_open -EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x738aed69 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x738e8658 udp_lib_unhash -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 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 0x73e60bd3 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x73e8ef42 nand_ecc_is_strong_enough -EXPORT_SYMBOL vmlinux 0x73f1cc16 ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0x73f4842a jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x740fdf8a security_inode_init_security -EXPORT_SYMBOL vmlinux 0x74101379 sock_kfree_s -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 0x742fc1e7 fault_in_safe_writeable -EXPORT_SYMBOL vmlinux 0x7446fc49 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x7448bc04 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x74615556 bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0x746e18f5 sk_net_capable -EXPORT_SYMBOL vmlinux 0x74710fde flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0x747291bb fb_set_var -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 -EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss -EXPORT_SYMBOL vmlinux 0x74bea416 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c56701 cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x74cbb4ee seq_lseek -EXPORT_SYMBOL vmlinux 0x74d08289 vfs_tmpfile -EXPORT_SYMBOL vmlinux 0x74d2db86 snd_ctl_free_one -EXPORT_SYMBOL vmlinux 0x74e46dac imx_ssi_fiq_tx_buffer -EXPORT_SYMBOL vmlinux 0x74e5ec0e mdio_driver_register -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74e69df8 arp_create -EXPORT_SYMBOL vmlinux 0x74e9d5eb pin_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x74e9df33 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x74ec2d20 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x74ecb850 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x74fbe5c0 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x74fc5de0 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv -EXPORT_SYMBOL vmlinux 0x750c8836 tcp_v4_conn_request -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 0x75333ab4 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x7538bc33 cad_pid -EXPORT_SYMBOL vmlinux 0x7567d381 __get_fiq_regs -EXPORT_SYMBOL vmlinux 0x757b81b9 udp_prot -EXPORT_SYMBOL vmlinux 0x75882a2c pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0x7588b00e dev_load -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 0x75c65483 tcp_v4_syn_recv_sock -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 0x75e71c94 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x75ebe96f dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x7605b427 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x760c5aa1 register_mtd_chip_driver -EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0x762daeeb page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0x76420563 dma_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x765352a1 eth_header_cache -EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x766e7d77 rproc_alloc -EXPORT_SYMBOL vmlinux 0x7680d389 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x76935328 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x7698cadb complete_request_key -EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76a487ad xfrm6_protocol_deregister -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 0x76c96d7e poll_initwait -EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl -EXPORT_SYMBOL vmlinux 0x76d2b14f tegra_dfll_suspend -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d57279 mmc_sw_reset -EXPORT_SYMBOL vmlinux 0x76dcb041 sock_bind_add -EXPORT_SYMBOL vmlinux 0x76e32199 neigh_event_ns -EXPORT_SYMBOL vmlinux 0x76e8b71f inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x76e9ad8f unregister_nexthop_notifier -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 0x7732159c free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x7743688b dma_sync_wait -EXPORT_SYMBOL vmlinux 0x77485fc7 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x775edc39 inet_frags_init -EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 -EXPORT_SYMBOL vmlinux 0x777d0088 registered_fb -EXPORT_SYMBOL vmlinux 0x778702ff ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x7799211b netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0x77a4c059 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77cc9802 proto_unregister -EXPORT_SYMBOL vmlinux 0x77e357da kthread_blkcg -EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77f6f183 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x781c8abe tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x78293778 pldmfw_flash_image -EXPORT_SYMBOL vmlinux 0x782d294c twl6040_power -EXPORT_SYMBOL vmlinux 0x78310ec0 uart_match_port -EXPORT_SYMBOL vmlinux 0x7860a707 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x7868e3ae nf_getsockopt -EXPORT_SYMBOL vmlinux 0x78731d5c dput -EXPORT_SYMBOL vmlinux 0x78779c0b set_fiq_handler -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x78865abc mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x78873083 try_module_get -EXPORT_SYMBOL vmlinux 0x7897e9a1 flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x789a065a of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78b84490 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78d71295 neigh_connected_output -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 0x791019a3 km_report -EXPORT_SYMBOL vmlinux 0x7915b1a1 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0x79243218 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x793f500c kset_unregister -EXPORT_SYMBOL vmlinux 0x794765d1 mempool_free -EXPORT_SYMBOL vmlinux 0x7976a65b netdev_err -EXPORT_SYMBOL vmlinux 0x798393d2 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x79912f9e key_put -EXPORT_SYMBOL vmlinux 0x79988b2d key_alloc -EXPORT_SYMBOL vmlinux 0x79ac03fe neigh_for_each -EXPORT_SYMBOL vmlinux 0x79d2aa7e dns_query -EXPORT_SYMBOL vmlinux 0x79d86546 ppp_unit_number -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 0x7a045134 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x7a19d527 nand_read_page_raw -EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a1f1eda from_kgid_munged -EXPORT_SYMBOL vmlinux 0x7a362c1e dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x7a3e8a42 radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x7a44c000 bitmap_print_list_to_buf -EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists -EXPORT_SYMBOL vmlinux 0x7a76d2dc skb_flow_dissect_hash -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 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ac4d2aa xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x7ac8b929 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7ad77825 snd_register_oss_device -EXPORT_SYMBOL vmlinux 0x7ad815f0 skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0x7ad981cf mem_cgroup_from_task -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 0x7aed1d6c devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL vmlinux 0x7b1efd9a add_to_pipe -EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0x7b287d97 km_query -EXPORT_SYMBOL vmlinux 0x7b2f390e param_ops_bool -EXPORT_SYMBOL vmlinux 0x7b2fb85d __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0x7b55ecde pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap -EXPORT_SYMBOL vmlinux 0x7b5d270f netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x7b60680c md_bitmap_free -EXPORT_SYMBOL vmlinux 0x7b652c72 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x7b7ebdca touch_buffer -EXPORT_SYMBOL vmlinux 0x7ba0a5f2 tcp_ioctl -EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off -EXPORT_SYMBOL vmlinux 0x7bd0eca5 bio_advance -EXPORT_SYMBOL vmlinux 0x7bdcf6f6 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x7bdf0481 file_path -EXPORT_SYMBOL vmlinux 0x7becc454 udp_seq_stop -EXPORT_SYMBOL vmlinux 0x7c078461 sock_create_lite -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c26b561 phy_attached_print -EXPORT_SYMBOL vmlinux 0x7c26fd51 sgl_free_order -EXPORT_SYMBOL vmlinux 0x7c27a0f2 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x7c2eaa96 netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x7c379a9b inode_set_flags -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c647e36 input_flush_device -EXPORT_SYMBOL vmlinux 0x7c704b1a of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x7c70f43e pci_enable_msi -EXPORT_SYMBOL vmlinux 0x7c7a5be8 rproc_set_firmware -EXPORT_SYMBOL vmlinux 0x7c7acdae __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x7c7c7a80 iptun_encaps -EXPORT_SYMBOL vmlinux 0x7c7d86a3 mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0x7c857ab3 neigh_table_init -EXPORT_SYMBOL vmlinux 0x7c8cea9e key_create_or_update -EXPORT_SYMBOL vmlinux 0x7ca24a34 fs_lookup_param -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 0x7ce63985 __xfrm_init_state -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 0x7d09596b dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d0f62b3 __neigh_create -EXPORT_SYMBOL vmlinux 0x7d1376dc console_stop -EXPORT_SYMBOL vmlinux 0x7d1d952b _dev_printk -EXPORT_SYMBOL vmlinux 0x7d1da946 par_io_of_config -EXPORT_SYMBOL vmlinux 0x7d1e9614 d_invalidate -EXPORT_SYMBOL vmlinux 0x7d2ef2b0 down_read_interruptible -EXPORT_SYMBOL vmlinux 0x7d2f35bc pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x7d306b3d vfs_get_link -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 0x7d6c2636 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0x7d6f1dc3 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x7d79e136 param_set_long -EXPORT_SYMBOL vmlinux 0x7d808502 tcp_filter -EXPORT_SYMBOL vmlinux 0x7dab5c43 phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7dcaf89a phy_disconnect -EXPORT_SYMBOL vmlinux 0x7de49518 lookup_one -EXPORT_SYMBOL vmlinux 0x7de89b8b elm_decode_bch_error_page -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7dfa0aa3 nand_ecc_sw_hamming_get_engine -EXPORT_SYMBOL vmlinux 0x7e09df96 netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0x7e0ce0c3 up_write -EXPORT_SYMBOL vmlinux 0x7e0ef06f key_link -EXPORT_SYMBOL vmlinux 0x7e148610 __traceiter_module_get -EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -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 0x7e986abe try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x7ea34692 devfreq_monitor_start -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 0x7ecb8b60 dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0x7ed2330c __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x7ed2f262 scsi_remove_device -EXPORT_SYMBOL vmlinux 0x7ed9689e __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0x7eeb6d1d mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0x7eefd6c6 tcp_add_backlog -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 0x7f3d1cb1 get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0x7f3e8eb7 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x7f46fafc kmem_cache_size -EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio -EXPORT_SYMBOL vmlinux 0x7f70b757 snd_pcm_open_substream -EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f87be57 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x7f894ca5 inet_frag_kill -EXPORT_SYMBOL vmlinux 0x7f8a8ff6 dev_lstats_read -EXPORT_SYMBOL vmlinux 0x7f93d84b sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0x7f9ff5e7 put_watch_queue -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 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 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 0x8039b3fd _totalram_pages -EXPORT_SYMBOL vmlinux 0x803a5599 input_unregister_device -EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x8046a22f uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x804b3e6c generic_set_encrypted_ci_d_ops -EXPORT_SYMBOL vmlinux 0x804f02a4 dev_change_flags -EXPORT_SYMBOL vmlinux 0x8055aac3 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x808b8581 find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0x80b33ab3 audit_log_start -EXPORT_SYMBOL vmlinux 0x80be59df xp_free -EXPORT_SYMBOL vmlinux 0x80c3c166 dcb_ieee_getapp_mask -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 0x8108ac7a down_read_trylock -EXPORT_SYMBOL vmlinux 0x810c7e87 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x811b91f0 __sock_create -EXPORT_SYMBOL vmlinux 0x81259c2b dentry_path_raw -EXPORT_SYMBOL vmlinux 0x812e8ee0 PageMovable -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc -EXPORT_SYMBOL vmlinux 0x81901d3b tty_unlock -EXPORT_SYMBOL vmlinux 0x81910dd2 remove_watch_from_object -EXPORT_SYMBOL vmlinux 0x8197ca60 skb_copy_datagram_from_iter -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 0x81fd14a1 __bforget -EXPORT_SYMBOL vmlinux 0x822137e2 arm_heavy_mb -EXPORT_SYMBOL vmlinux 0x82263c19 copy_string_kernel -EXPORT_SYMBOL vmlinux 0x822f7616 reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0x8244780f ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0x8249cab4 lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr -EXPORT_SYMBOL vmlinux 0x825c7087 flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0x8279426f jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x827f924e vmalloc_array -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x828ce6bb mutex_lock -EXPORT_SYMBOL vmlinux 0x82abcf52 tty_write_room -EXPORT_SYMBOL vmlinux 0x82b24660 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x82c1336f pci_set_mwi -EXPORT_SYMBOL vmlinux 0x82c7bc47 mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0x82dfb0c0 param_get_byte -EXPORT_SYMBOL vmlinux 0x82dfd1e7 __dev_get_by_index -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 0x830acce3 napi_disable -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 0x832b58f9 inet_ioctl -EXPORT_SYMBOL vmlinux 0x834aeb2f phy_config_aneg -EXPORT_SYMBOL vmlinux 0x8351f2dc seqno_fence_ops -EXPORT_SYMBOL vmlinux 0x8352adbb inet_register_protosw -EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x835adb5d __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x837ed04b dev_uc_add -EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x83995d6c datagram_poll -EXPORT_SYMBOL vmlinux 0x83ba463f blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0x83be22d7 dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x83c8d070 seq_release -EXPORT_SYMBOL vmlinux 0x83cd0e6f atomic_io_modify -EXPORT_SYMBOL vmlinux 0x83ed8026 rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x84369595 iget5_locked -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 0x84591661 skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0x846c7bbb scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x84769e60 inet6_getname -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 0x84a3c5a8 tcf_generic_walker -EXPORT_SYMBOL vmlinux 0x84af2f42 __devm_mdiobus_register -EXPORT_SYMBOL vmlinux 0x84b183ae strncmp -EXPORT_SYMBOL vmlinux 0x84b4c5a7 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x84bfbca7 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x84cd78a7 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x84e0b5ee clk_add_alias -EXPORT_SYMBOL vmlinux 0x84e5728b sock_no_mmap -EXPORT_SYMBOL vmlinux 0x8502d44e jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x850a210b rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x851b8558 devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x85255a1f iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x85369282 vme_slot_num -EXPORT_SYMBOL vmlinux 0x853eca54 input_match_device_id -EXPORT_SYMBOL vmlinux 0x854fec83 tegra_sku_info -EXPORT_SYMBOL vmlinux 0x8551dc4c napi_enable -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x857b3310 of_n_size_cells -EXPORT_SYMBOL vmlinux 0x857c0920 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x8582ebff cpu_all_bits -EXPORT_SYMBOL vmlinux 0x858fa227 napi_gro_receive -EXPORT_SYMBOL vmlinux 0x8591076b md_finish_reshape -EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85cb6af2 tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0x85d874ae flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0x85dbbbd7 mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85e12420 wake_up_process -EXPORT_SYMBOL vmlinux 0x85e15fa7 inet_frag_find -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x860a0a1a alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x862bc663 memset16 -EXPORT_SYMBOL vmlinux 0x862fc086 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x86395c28 elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x863e19c9 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x86543b74 neigh_update -EXPORT_SYMBOL vmlinux 0x865ae279 km_policy_notify -EXPORT_SYMBOL vmlinux 0x865e34b4 security_inode_invalidate_secctx -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 0x86759b87 dev_get_port_parent_id -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 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 0x86f5ffe1 tty_port_init -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x86fbf1ca tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x8705a746 dump_emit -EXPORT_SYMBOL vmlinux 0x870d5a1c __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x87256b2b udp_poll -EXPORT_SYMBOL vmlinux 0x872e38ea devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x87380f5e address_space_init_once -EXPORT_SYMBOL vmlinux 0x873c13dd dec_node_page_state -EXPORT_SYMBOL vmlinux 0x87405890 __skb_recv_udp -EXPORT_SYMBOL vmlinux 0x87426741 jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0x87510c97 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x876254f5 fs_param_is_string -EXPORT_SYMBOL vmlinux 0x877037ca read_cache_pages -EXPORT_SYMBOL vmlinux 0x8799809d skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x87a02c0f submit_bh -EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds -EXPORT_SYMBOL vmlinux 0x881119ae max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate -EXPORT_SYMBOL vmlinux 0x8824487c pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x8863fbb6 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x88666839 jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x88a67db7 forget_all_cached_acls -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 0x88f36712 filp_close -EXPORT_SYMBOL vmlinux 0x88f8a546 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL vmlinux 0x8905b686 mmc_can_secure_erase_trim -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 0x895a753c security_sk_clone -EXPORT_SYMBOL vmlinux 0x898b5d69 __phy_read_mmd -EXPORT_SYMBOL vmlinux 0x89929c36 __blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x899c2472 skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0x89be6c96 tty_unthrottle -EXPORT_SYMBOL vmlinux 0x89c1bccc d_instantiate_new -EXPORT_SYMBOL vmlinux 0x89ca683f serio_bus -EXPORT_SYMBOL vmlinux 0x89cb6a82 path_put -EXPORT_SYMBOL vmlinux 0x89e8c1f4 textsearch_register -EXPORT_SYMBOL vmlinux 0x8a13a043 pci_dev_put -EXPORT_SYMBOL vmlinux 0x8a1a7ff4 rproc_add_carveout -EXPORT_SYMBOL vmlinux 0x8a251bcb tty_check_change -EXPORT_SYMBOL vmlinux 0x8a2b0787 genl_register_family -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 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 0x8a8cd275 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aa0402b _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x8aa30959 ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control -EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8accece3 send_sig -EXPORT_SYMBOL vmlinux 0x8acfe066 vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0x8ad5e233 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x8ade3fe2 padata_alloc -EXPORT_SYMBOL vmlinux 0x8aeca3dd submit_bio_noacct -EXPORT_SYMBOL vmlinux 0x8aeeb881 mmc_detect_change -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 0x8b09200c xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x8b288dbb neigh_parms_release -EXPORT_SYMBOL vmlinux 0x8b5927a0 down_timeout -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b62cf0c kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x8b68d4b2 mmc_start_request -EXPORT_SYMBOL vmlinux 0x8b6f9f76 blake2s_compress -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8b91e28f vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx -EXPORT_SYMBOL vmlinux 0x8ba56fe2 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x8bb55681 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x8bcc7b9f bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x8bd999c1 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x8bda3c8e xp_alloc -EXPORT_SYMBOL vmlinux 0x8bdd80c8 freeze_super -EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x8bee75d7 proc_dostring -EXPORT_SYMBOL vmlinux 0x8bffd44c dquot_commit -EXPORT_SYMBOL vmlinux 0x8c0ac2cc ptp_clock_event -EXPORT_SYMBOL vmlinux 0x8c1f00d5 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0x8c3afa36 sget_fc -EXPORT_SYMBOL vmlinux 0x8c3c7540 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x8c3e83b3 vfs_unlink -EXPORT_SYMBOL vmlinux 0x8c515532 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x8c5d254a dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0x8c690629 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x8c6bb37b scsi_register_driver -EXPORT_SYMBOL vmlinux 0x8c704a04 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x8c7ba708 flush_signals -EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -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 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 0x8ce13cc5 udplite_table -EXPORT_SYMBOL vmlinux 0x8ce2e5f1 md_write_end -EXPORT_SYMBOL vmlinux 0x8cf09497 sock_sendmsg -EXPORT_SYMBOL vmlinux 0x8cf9a3e8 phy_attach -EXPORT_SYMBOL vmlinux 0x8d0ba395 misc_register -EXPORT_SYMBOL vmlinux 0x8d28e71d rtnl_kfree_skbs -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 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 0x8daa36ce rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x8dc76f9c input_reset_device -EXPORT_SYMBOL vmlinux 0x8dcaa7f4 netdev_lower_dev_get_private -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 0x8ddce747 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8de1616c bd_abort_claiming -EXPORT_SYMBOL vmlinux 0x8de8ebc4 mnt_drop_write_file -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 0x8e0b77f6 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x8e19c26c submit_bio_wait -EXPORT_SYMBOL vmlinux 0x8e254967 phy_attached_info_irq -EXPORT_SYMBOL vmlinux 0x8e3665e6 sg_free_append_table -EXPORT_SYMBOL vmlinux 0x8e452fdc tcp_read_sock -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 0x8e721124 netif_carrier_on -EXPORT_SYMBOL vmlinux 0x8e82527c skb_queue_head -EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops -EXPORT_SYMBOL vmlinux 0x8e876807 rps_needed -EXPORT_SYMBOL vmlinux 0x8e89bf74 phy_support_asym_pause -EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8ea05f81 nf_log_packet -EXPORT_SYMBOL vmlinux 0x8ea998c6 update_devfreq -EXPORT_SYMBOL vmlinux 0x8eb4208a __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL vmlinux 0x8ed0d94d bio_chain -EXPORT_SYMBOL vmlinux 0x8edbfffb hdmi_spd_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x8efdb2ff snd_jack_report -EXPORT_SYMBOL vmlinux 0x8efdb866 xfrm_state_delete_tunnel -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 0x8f22a027 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x8f329678 default_llseek -EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major -EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard -EXPORT_SYMBOL vmlinux 0x8f72b232 phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0x8f72b348 netdev_name_node_alt_destroy -EXPORT_SYMBOL vmlinux 0x8f7b37f8 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x8f7be8c3 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x8f8f657f bsearch -EXPORT_SYMBOL vmlinux 0x8f96ca43 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8f9f8483 ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x8fbcf685 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x8fd07d49 skb_seq_read -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 0x8fe6dc15 inet_reqsk_alloc -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 0x900d4bd9 finish_swait -EXPORT_SYMBOL vmlinux 0x9020f2af dev_mc_del -EXPORT_SYMBOL vmlinux 0x904168d1 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x9042344f flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x9043fbb8 phy_device_register -EXPORT_SYMBOL vmlinux 0x904b363c snd_jack_set_parent -EXPORT_SYMBOL vmlinux 0x904d2fdb i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x9058d8ab dst_dev_put -EXPORT_SYMBOL vmlinux 0x905a0874 tcf_action_exec -EXPORT_SYMBOL vmlinux 0x90609db6 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x90636719 netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0x906f5252 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x9082815f mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0x909332ca register_sysctl -EXPORT_SYMBOL vmlinux 0x9093f972 sock_edemux -EXPORT_SYMBOL vmlinux 0x90961275 neigh_carrier_down -EXPORT_SYMBOL vmlinux 0x909d45fb gro_cells_init -EXPORT_SYMBOL vmlinux 0x90b630c0 __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x90c96cc9 blk_get_request -EXPORT_SYMBOL vmlinux 0x9107eb06 sock_wake_async -EXPORT_SYMBOL vmlinux 0x910f6878 finish_no_open -EXPORT_SYMBOL vmlinux 0x9124653c filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x9126f7b4 nvmem_get_mac_address -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 0x913c91d0 reuseport_alloc -EXPORT_SYMBOL vmlinux 0x91458f85 pci_free_irq -EXPORT_SYMBOL vmlinux 0x915bd2ec _dev_info -EXPORT_SYMBOL vmlinux 0x91667220 security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0x91872199 _page_poisoning_enabled -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 0x91a9c232 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x91aaa89c dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x91b1810c crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x91be0765 dst_release -EXPORT_SYMBOL vmlinux 0x91c091f4 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91d69003 __kmap_to_page -EXPORT_SYMBOL vmlinux 0x91df5374 ppp_input -EXPORT_SYMBOL vmlinux 0x91e57853 inet6_del_offload -EXPORT_SYMBOL vmlinux 0x91e7fbdb param_ops_int -EXPORT_SYMBOL vmlinux 0x91ebb1e7 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x91f915be kmalloc_caches -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 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x9232014f inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x9251f7d8 input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x92837b2e _dev_notice -EXPORT_SYMBOL vmlinux 0x9292ec07 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x92997ed8 _printk -EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -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 0x92e84367 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -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 0x934dd2e0 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x935fcd70 register_fib_notifier -EXPORT_SYMBOL vmlinux 0x93637f40 netdev_notice -EXPORT_SYMBOL vmlinux 0x93677b5d __netif_schedule -EXPORT_SYMBOL vmlinux 0x93713086 sg_split -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93ab0210 mmc_of_parse_clk_phase -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93bdaa1f dma_pool_free -EXPORT_SYMBOL vmlinux 0x93cfc1f8 mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0x93d547d0 __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0x93d95b3a vme_slave_set -EXPORT_SYMBOL vmlinux 0x93dc8626 inet_protos -EXPORT_SYMBOL vmlinux 0x93eede98 inode_add_bytes -EXPORT_SYMBOL vmlinux 0x940977e5 ptp_clock_register -EXPORT_SYMBOL vmlinux 0x94098ff8 snd_interval_list -EXPORT_SYMBOL vmlinux 0x9421c978 ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0x9426514b ptp_clock_index -EXPORT_SYMBOL vmlinux 0x943820a4 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x943dc8aa crc32_be -EXPORT_SYMBOL vmlinux 0x943f29cb d_mark_dontcache -EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -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 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94bf4423 bdi_alloc -EXPORT_SYMBOL vmlinux 0x94c3ba75 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x94d7334d snd_card_set_id -EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier -EXPORT_SYMBOL vmlinux 0x94f58f8b netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x9510e110 rawnand_sw_bch_init -EXPORT_SYMBOL vmlinux 0x95246e37 reuseport_add_sock -EXPORT_SYMBOL vmlinux 0x95368d33 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x954f1f7a sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x95506f48 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x95553f0b xfrm_state_free -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 0x958ea593 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x95af9d82 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL vmlinux 0x95baa3a4 vm_insert_page -EXPORT_SYMBOL vmlinux 0x95c12a02 vme_slave_request -EXPORT_SYMBOL vmlinux 0x95c149c6 param_set_byte -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 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 0x96203703 __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x962c4977 clkdev_add -EXPORT_SYMBOL vmlinux 0x96300e19 devfreq_update_target -EXPORT_SYMBOL vmlinux 0x964932b4 rawnand_sw_hamming_calculate -EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x965a98b5 noop_llseek -EXPORT_SYMBOL vmlinux 0x96683b50 rtnl_nla_parse_ifinfomsg -EXPORT_SYMBOL vmlinux 0x9672249b __devm_request_region -EXPORT_SYMBOL vmlinux 0x9672f5d8 dev_deactivate -EXPORT_SYMBOL vmlinux 0x96771651 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x96779235 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x967a99c3 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x968927aa generic_permission -EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x968b7b44 d_find_alias -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 0x96d6d3e3 vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0x96fcc9fa elv_rb_find -EXPORT_SYMBOL vmlinux 0x97005f8a blk_mq_run_hw_queues -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 0x97255bdf strlen -EXPORT_SYMBOL vmlinux 0x973e96e0 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x975f1f56 dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x975f73e5 inet6_release -EXPORT_SYMBOL vmlinux 0x9760bd11 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x976d4438 param_set_ullong -EXPORT_SYMBOL vmlinux 0x976ecea7 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x97776418 pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0x9795b81a mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97c021a8 dev_remove_offload -EXPORT_SYMBOL vmlinux 0x97c07542 d_drop -EXPORT_SYMBOL vmlinux 0x97d0a93a dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x97dd6be5 freezing_slow_path -EXPORT_SYMBOL vmlinux 0x97de2793 blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0x97f04c9d clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0x9803b339 unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0x9828315a d_rehash -EXPORT_SYMBOL vmlinux 0x982aaa20 eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0x983171d6 kobject_get_unless_zero -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 0x9857081c blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x9858f589 __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x985fe92a clear_inode -EXPORT_SYMBOL vmlinux 0x98719be1 vme_bus_num -EXPORT_SYMBOL vmlinux 0x987942eb simple_empty -EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset -EXPORT_SYMBOL vmlinux 0x98832da8 utf8ncursor -EXPORT_SYMBOL vmlinux 0x9891d82e ucc_slow_stop_tx -EXPORT_SYMBOL vmlinux 0x98a21b5a neigh_proc_dointvec_ms_jiffies -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 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 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x993b03df percpu_counter_add_batch -EXPORT_SYMBOL vmlinux 0x994754b7 inet_accept -EXPORT_SYMBOL vmlinux 0x9948a138 ucc_slow_disable -EXPORT_SYMBOL vmlinux 0x994f6322 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x996829ea swake_up_all -EXPORT_SYMBOL vmlinux 0x9969944b consume_skb -EXPORT_SYMBOL vmlinux 0x996d7bd6 rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0x99704ac1 tcp_time_wait -EXPORT_SYMBOL vmlinux 0x99720cbb inet_stream_connect -EXPORT_SYMBOL vmlinux 0x99733599 create_empty_buffers -EXPORT_SYMBOL vmlinux 0x9980708b of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0x998c3c6f tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99b94e75 amba_driver_register -EXPORT_SYMBOL vmlinux 0x99bb8806 memmove -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 0x99caecb4 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99d7c5ee tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0x99df88ea devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0x99e14671 skb_append -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 0x9a188c7c open_with_fake_path -EXPORT_SYMBOL vmlinux 0x9a1aa44b __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a2f5c8e mdiobb_read -EXPORT_SYMBOL vmlinux 0x9a43f58b vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x9a4ed32e skb_dump -EXPORT_SYMBOL vmlinux 0x9a576885 sk_reset_timer -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 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 0x9ac33506 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9ae5dab5 netdev_warn -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 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 0x9b53d139 xsk_tx_release -EXPORT_SYMBOL vmlinux 0x9b6e7ad4 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize -EXPORT_SYMBOL vmlinux 0x9b7b6ac1 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x9b801d35 nf_setsockopt -EXPORT_SYMBOL vmlinux 0x9b9327a0 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x9b94199e pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x9bb602e0 tcf_block_netif_keep_dst -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 0x9bce422b kernel_bind -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 0x9bf722cb netdev_features_change -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 0x9c4de4e6 vfs_readlink -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 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9c903ffe udp_sendmsg -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cbc7961 inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0x9ccdac8d xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9cf48f33 elm_config -EXPORT_SYMBOL vmlinux 0x9d06ac33 free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d122cc1 pin_user_pages_remote -EXPORT_SYMBOL vmlinux 0x9d13f6c8 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d2f41fc xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x9d37cbb9 md_bitmap_cond_end_sync -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 0x9d5cd559 reservation_ww_class -EXPORT_SYMBOL vmlinux 0x9d669763 memcpy -EXPORT_SYMBOL vmlinux 0x9d78013a blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x9d7e2502 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context -EXPORT_SYMBOL vmlinux 0x9dc08a71 pgprot_kernel -EXPORT_SYMBOL vmlinux 0x9de024e0 mipi_dsi_compression_mode -EXPORT_SYMBOL vmlinux 0x9deeb94c tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x9def0586 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x9dfe2130 mini_qdisc_pair_init -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 0x9e3aa31b __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e575e0b bio_init -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 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 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 0x9ee1ac8b release_pages -EXPORT_SYMBOL vmlinux 0x9ee867e9 kfree_skb_list -EXPORT_SYMBOL vmlinux 0x9ef28453 pagecache_isize_extended -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 0x9f7ae060 node_states -EXPORT_SYMBOL vmlinux 0x9f90b44a mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x9f92390e inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fbbe8cb simple_rmdir -EXPORT_SYMBOL vmlinux 0x9fc10bb8 page_pool_return_skb_page -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fe32df1 flow_rule_match_enc_ip -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 0xa012849a eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0xa0133f9a cpumask_any_and_distribute -EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 -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 0xa033d747 next_arg -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa043b3bd tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0xa04581ee dqput -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 0xa06df9e1 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa08faba4 __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0xa093f258 neigh_table_clear -EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -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 0xa0cae22c devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xa0ccef8e phy_do_ioctl_running -EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -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 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa102dc48 of_get_next_parent -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa10cdb78 blk_get_queue -EXPORT_SYMBOL vmlinux 0xa1213228 dev_change_proto_down_generic -EXPORT_SYMBOL vmlinux 0xa123440b nand_ecc_sw_hamming_calculate -EXPORT_SYMBOL vmlinux 0xa127b416 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0xa12ea604 skb_eth_push -EXPORT_SYMBOL vmlinux 0xa1311161 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xa144a6c5 nand_ecc_sw_hamming_cleanup_ctx -EXPORT_SYMBOL vmlinux 0xa14c2409 __mmap_lock_do_trace_start_locking -EXPORT_SYMBOL vmlinux 0xa15939d4 no_llseek -EXPORT_SYMBOL vmlinux 0xa15d0131 cancel_delayed_work -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 0xa19a73c4 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0xa1bacd91 qcom_scm_set_cold_boot_addr -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 0xa22039b4 devfreq_monitor_resume -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 0xa25b90ab utf8byte -EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa268c078 proc_create -EXPORT_SYMBOL vmlinux 0xa26c37e0 __i2c_transfer -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 0xa29cbbbd __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0xa2ad1eaa i2c_del_adapter -EXPORT_SYMBOL vmlinux 0xa2b07072 flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0xa2b6ef10 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xa2ca0a62 rpmh_invalidate -EXPORT_SYMBOL vmlinux 0xa2ca2d90 alloc_mdio_bitbang -EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa2ef7dc3 io_uring_get_socket -EXPORT_SYMBOL vmlinux 0xa2f222c4 dma_map_sg_attrs -EXPORT_SYMBOL vmlinux 0xa3044cd5 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0xa30e409d free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xa333d83a thaw_bdev -EXPORT_SYMBOL vmlinux 0xa3581d19 snd_ctl_replace -EXPORT_SYMBOL vmlinux 0xa36fc6e4 input_unregister_handle -EXPORT_SYMBOL vmlinux 0xa3719258 mdio_device_register -EXPORT_SYMBOL vmlinux 0xa37aca3a blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0xa38878f8 pci_unmap_iospace -EXPORT_SYMBOL vmlinux 0xa389267d netdev_rx_csum_fault -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 0xa3cb57ac tcp_sync_mss -EXPORT_SYMBOL vmlinux 0xa3dd7dd1 ip_getsockopt -EXPORT_SYMBOL vmlinux 0xa3e4b17d scsi_host_busy -EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits -EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final -EXPORT_SYMBOL vmlinux 0xa40b2c04 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0xa425a92f netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0xa4264b2e rproc_del -EXPORT_SYMBOL vmlinux 0xa426cecf send_sig_mceerr -EXPORT_SYMBOL vmlinux 0xa42e3186 scsi_device_get -EXPORT_SYMBOL vmlinux 0xa43799a8 rfs_needed -EXPORT_SYMBOL vmlinux 0xa43ed44b tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0xa4423fb0 param_set_bool -EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key -EXPORT_SYMBOL vmlinux 0xa4552208 init_on_alloc -EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev -EXPORT_SYMBOL vmlinux 0xa48a499d get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xa48b1b03 __do_once_slow_done -EXPORT_SYMBOL vmlinux 0xa492a43a __skb_pad -EXPORT_SYMBOL vmlinux 0xa4a1de06 rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0xa4ab00d9 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xa4b42c55 omap_set_dma_priority -EXPORT_SYMBOL vmlinux 0xa4b54178 nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0xa4b7f2cc sync_file_get_fence -EXPORT_SYMBOL vmlinux 0xa4e726b1 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0xa4e7cd0a tso_build_hdr -EXPORT_SYMBOL vmlinux 0xa4e9556a configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0xa4edd563 genphy_loopback -EXPORT_SYMBOL vmlinux 0xa4fbc7aa pci_request_regions -EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock -EXPORT_SYMBOL vmlinux 0xa5040399 file_update_time -EXPORT_SYMBOL vmlinux 0xa5044f83 sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit -EXPORT_SYMBOL vmlinux 0xa521141c pci_unmap_rom -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 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa55e3182 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xa5684076 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xa56fde1c __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xa571a63f get_thermal_instance -EXPORT_SYMBOL vmlinux 0xa577ac5f vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0xa577ed66 xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0xa578af86 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xa57ee9bf flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0xa5a17b75 seq_bprintf -EXPORT_SYMBOL vmlinux 0xa5a91711 _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0xa5aafa78 load_nls_default -EXPORT_SYMBOL vmlinux 0xa5bcfdda snd_sgbuf_get_chunk_size -EXPORT_SYMBOL vmlinux 0xa5c11c7e reuseport_has_conns_set -EXPORT_SYMBOL vmlinux 0xa5d43ade configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0xa5d91de9 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xa5e223bb pci_enable_atomic_ops_to_root -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 0xa62be861 udp_lib_rehash -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 0xa64dc4f7 netif_skb_features -EXPORT_SYMBOL vmlinux 0xa6641c6d md_update_sb -EXPORT_SYMBOL vmlinux 0xa678bcbf inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0xa678c738 proto_register -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 0xa69e2abc netdev_next_lower_dev_rcu -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 0xa6a8752d netdev_change_features -EXPORT_SYMBOL vmlinux 0xa6b7b4a3 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xa6bb31d3 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0xa6d89e56 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0xa6f99501 snd_ctl_rename_id -EXPORT_SYMBOL vmlinux 0xa700f4fe tty_vhangup -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 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 0xa73ee62b _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa7604422 of_get_next_child -EXPORT_SYMBOL vmlinux 0xa76e1b2b inet_del_offload -EXPORT_SYMBOL vmlinux 0xa77702e3 config_group_init -EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa7b3181c up_read -EXPORT_SYMBOL vmlinux 0xa7b7a57d __skb_flow_get_ports -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 0xa7fc446b of_find_compatible_node -EXPORT_SYMBOL vmlinux 0xa80acb56 lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xa820a8b5 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xa822600a netdev_set_sb_channel -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 0xa85c05b0 __napi_schedule -EXPORT_SYMBOL vmlinux 0xa868e1d1 snd_timer_start -EXPORT_SYMBOL vmlinux 0xa86a18a2 finalize_exec -EXPORT_SYMBOL vmlinux 0xa87b54c4 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0xa88b374d register_qdisc -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 0xa8b05a96 vfs_rmdir -EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8d0c85f __skb_recv_datagram -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 0xa91dbb64 ptp_find_pin_unlocked -EXPORT_SYMBOL vmlinux 0xa91dcecc sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0xa95813d9 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request -EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa9a7432f qcom_scm_pas_mem_setup -EXPORT_SYMBOL vmlinux 0xa9cc49e9 tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0xa9d15c44 vfs_path_lookup -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 0xaa00b880 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0xaa15e41f snd_power_wait -EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa1e29cb filemap_map_pages -EXPORT_SYMBOL vmlinux 0xaa24f748 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xaa29f7be serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xaa42e16a gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0xaa433bb1 tcp_splice_read -EXPORT_SYMBOL vmlinux 0xaa57a5d1 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb -EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic -EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change -EXPORT_SYMBOL vmlinux 0xaacc9e27 sort -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad6cfae ip6_xmit -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 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab1d21ec kstrtoull_from_user -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 0xab713e41 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0xab734a73 inet_csk_accept -EXPORT_SYMBOL vmlinux 0xab7603e7 imx_ssi_fiq_start -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab79b38f sock_no_sendpage -EXPORT_SYMBOL vmlinux 0xab9ea0f5 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0xabd727bf dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xabfcab2a snd_mixer_oss_notify_callback -EXPORT_SYMBOL vmlinux 0xac046aa5 configfs_register_group -EXPORT_SYMBOL vmlinux 0xac0da1eb dst_discard_out -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac1ac924 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0xac1b3ce0 device_match_acpi_dev -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 0xac861c3b simple_unlink -EXPORT_SYMBOL vmlinux 0xac92a062 bio_put -EXPORT_SYMBOL vmlinux 0xacaa17e9 kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacb535a1 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0xacc16285 __skb_get_hash -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacdc866a genphy_resume -EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index -EXPORT_SYMBOL vmlinux 0xacee14bc skb_vlan_pop -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 0xad1a2e96 __scm_send -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 0xad5e27b9 sock_rfree -EXPORT_SYMBOL vmlinux 0xad60f5bf xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xad6a6947 sock_i_ino -EXPORT_SYMBOL vmlinux 0xad6f7a3a mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad7a9528 snd_ctl_unregister_ioctl -EXPORT_SYMBOL vmlinux 0xad8a30d4 vfs_statfs -EXPORT_SYMBOL vmlinux 0xad8bbba6 skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0xad906d80 pci_set_master -EXPORT_SYMBOL vmlinux 0xad9df962 fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0xadaa9a89 get_tree_single -EXPORT_SYMBOL vmlinux 0xadad9d35 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final -EXPORT_SYMBOL vmlinux 0xadb7e2fe truncate_setsize -EXPORT_SYMBOL vmlinux 0xadb8ef6c nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xadbc630b __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0xadcecb88 dst_alloc -EXPORT_SYMBOL vmlinux 0xadd22e70 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0xadd2747a sock_no_getname -EXPORT_SYMBOL vmlinux 0xadd3d90b __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xadd69986 __tracepoint_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xadecc69e netdev_alert -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 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae116bbf dmam_free_coherent -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 0xae4a1ccc xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0xae577d60 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xae675b28 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0xae8cf261 dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0xae9849dd __request_region -EXPORT_SYMBOL vmlinux 0xae9e68b8 blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid -EXPORT_SYMBOL vmlinux 0xaed9251c bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0xaedac684 pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0xaee95991 ZSTD_getDictID_fromFrame -EXPORT_SYMBOL vmlinux 0xaeedafe7 phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xaef7a13e nand_ecc_finish_io_req -EXPORT_SYMBOL vmlinux 0xaf0c74e9 ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xaf135dec __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xaf16f615 ZSTD_DStreamOutSize -EXPORT_SYMBOL vmlinux 0xaf31e5b9 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf402fe6 ilookup5 -EXPORT_SYMBOL vmlinux 0xaf447135 xp_can_alloc -EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality -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 0xaff0a99b param_set_short -EXPORT_SYMBOL vmlinux 0xaff7147a register_mii_tstamp_controller -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 0xb0392954 locks_copy_lock -EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats -EXPORT_SYMBOL vmlinux 0xb058fe75 kmem_cache_create -EXPORT_SYMBOL vmlinux 0xb05a2f2b ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xb05b5735 input_set_capability -EXPORT_SYMBOL vmlinux 0xb05d2612 unlock_page -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 0xb09384a7 tcp_peek_len -EXPORT_SYMBOL vmlinux 0xb0963e6a mmc_wait_for_req -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 0xb0bf8bbe xfrm_state_flush -EXPORT_SYMBOL vmlinux 0xb0c24327 mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0xb0d5dae2 sk_stop_timer_sync -EXPORT_SYMBOL vmlinux 0xb0d9678f pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e172f1 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0xb0ee61e4 tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0xb0f6cdee __module_put_and_exit -EXPORT_SYMBOL vmlinux 0xb0f8a1fb vm_get_page_prot -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -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 0xb14ab1ef hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 -EXPORT_SYMBOL vmlinux 0xb1558944 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0xb1937000 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0xb1a3f69e misc_deregister -EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc -EXPORT_SYMBOL vmlinux 0xb1b3b78a mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0xb1b40313 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0xb1b71cbe snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL vmlinux 0xb1b7e126 xfrm_policy_walk_done -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 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1ea0129 set_cached_acl -EXPORT_SYMBOL vmlinux 0xb204a2fd fqdir_exit -EXPORT_SYMBOL vmlinux 0xb2088583 jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0xb211c1d1 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0xb216d331 sgl_free_n_order -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 0xb286c477 qcom_scm_set_warm_boot_addr -EXPORT_SYMBOL vmlinux 0xb28a6bba genphy_handle_interrupt_no_ack -EXPORT_SYMBOL vmlinux 0xb28d325d ucc_slow_init -EXPORT_SYMBOL vmlinux 0xb28e4d0c bdev_dax_pgoff -EXPORT_SYMBOL vmlinux 0xb29e9caf devm_clk_release_clkdev -EXPORT_SYMBOL vmlinux 0xb2af3ded posix_test_lock -EXPORT_SYMBOL vmlinux 0xb2bdfc3b wireless_send_event -EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on -EXPORT_SYMBOL vmlinux 0xb2e5ae4a snd_lookup_minor_data -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 0xb32bfabf vlan_vid_add -EXPORT_SYMBOL vmlinux 0xb3396b9a cdev_alloc -EXPORT_SYMBOL vmlinux 0xb34448c1 find_vma -EXPORT_SYMBOL vmlinux 0xb35a38f4 follow_up -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 0xb36dafb3 request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0xb39e5d91 of_find_device_by_node -EXPORT_SYMBOL vmlinux 0xb3b552b3 fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb409a0fc dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0xb40e4693 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb42df198 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0xb444fc61 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0xb4471bfe down_trylock -EXPORT_SYMBOL vmlinux 0xb4513579 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem -EXPORT_SYMBOL vmlinux 0xb475c99a pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xb476c8f4 ZSTD_decompress_usingDict -EXPORT_SYMBOL vmlinux 0xb48ce51f mr_table_alloc -EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb492e7a1 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xb49f8f64 __d_lookup_done -EXPORT_SYMBOL vmlinux 0xb4b1e6d1 __xa_alloc -EXPORT_SYMBOL vmlinux 0xb4b99db3 cdrom_open -EXPORT_SYMBOL vmlinux 0xb4cf7491 do_clone_file_range -EXPORT_SYMBOL vmlinux 0xb4d88a0d __vfs_getxattr -EXPORT_SYMBOL vmlinux 0xb4dfca50 qdisc_put -EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb4f2f335 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0xb4fbccf9 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0xb4fdd70d end_page_writeback -EXPORT_SYMBOL vmlinux 0xb511bac2 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xb52ad7ce scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0xb539ed0e locks_delete_block -EXPORT_SYMBOL vmlinux 0xb5421547 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb576cb12 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0xb577a55b param_get_invbool -EXPORT_SYMBOL vmlinux 0xb589b712 fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5ab8cb3 reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0xb5b13753 fb_validate_mode -EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5b77989 sock_wfree -EXPORT_SYMBOL vmlinux 0xb5c1596c fb_set_cmap -EXPORT_SYMBOL vmlinux 0xb5c1a282 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xb5d8aeb2 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0xb5fdc18f mutex_is_locked -EXPORT_SYMBOL vmlinux 0xb61b3e92 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb6564f70 remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xb6598bc4 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xb664a4e8 kvrealloc -EXPORT_SYMBOL vmlinux 0xb67103f2 sched_autogroup_detach -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 0xb6896671 crc_t10dif -EXPORT_SYMBOL vmlinux 0xb68bc5d3 snd_pcm_mmap_data -EXPORT_SYMBOL vmlinux 0xb68c9279 seq_release_private -EXPORT_SYMBOL vmlinux 0xb68f1f9a nf_hook_slow_list -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6969130 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xb6a0f573 kill_litter_super -EXPORT_SYMBOL vmlinux 0xb6ab65b5 sock_no_bind -EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6b0d93d tcf_qevent_dump -EXPORT_SYMBOL vmlinux 0xb6b6284e xz_dec_run -EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6f5aed3 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xb6f859f4 _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd -EXPORT_SYMBOL vmlinux 0xb709f23d eth_type_trans -EXPORT_SYMBOL vmlinux 0xb70d46df start_tty -EXPORT_SYMBOL vmlinux 0xb7114053 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0xb7130185 sock_recv_errqueue -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 0xb7362c90 do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0xb73f6614 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0xb7494848 kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0xb74d233d rproc_get_by_phandle -EXPORT_SYMBOL vmlinux 0xb7566933 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xb759c93c ihold -EXPORT_SYMBOL vmlinux 0xb768099b pci_find_capability -EXPORT_SYMBOL vmlinux 0xb7680e6d dentry_open -EXPORT_SYMBOL vmlinux 0xb77d0191 of_phy_get_and_connect -EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash -EXPORT_SYMBOL vmlinux 0xb7898549 ip_mc_inc_group -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 0xb79b0c50 inet_del_protocol -EXPORT_SYMBOL vmlinux 0xb7a3b5b4 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0xb7c5d486 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7ca7246 prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0xb7df0e97 ZSTD_DDictWorkspaceBound -EXPORT_SYMBOL vmlinux 0xb7dfb0aa __pci_register_driver -EXPORT_SYMBOL vmlinux 0xb7ff182f down_read_killable -EXPORT_SYMBOL vmlinux 0xb8401011 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0xb8424a22 nf_log_register -EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available -EXPORT_SYMBOL vmlinux 0xb85b4c68 proc_mkdir -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 0xb8e47077 mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0xb8ea7f59 bio_uninit -EXPORT_SYMBOL vmlinux 0xb90674f6 pci_clear_master -EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb91252cd tegra_ivc_write_get_next_frame -EXPORT_SYMBOL vmlinux 0xb9247d84 rt_dst_alloc -EXPORT_SYMBOL vmlinux 0xb9274650 xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0xb931acb9 d_prune_aliases -EXPORT_SYMBOL vmlinux 0xb933e9b8 devm_nvmem_cell_put -EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -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 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb9975d25 __traceiter_kmem_cache_alloc_node -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 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 0xba18fb43 jbd2_fc_release_bufs -EXPORT_SYMBOL vmlinux 0xba221175 close_fd_get_file -EXPORT_SYMBOL vmlinux 0xba2ed347 dquot_file_open -EXPORT_SYMBOL vmlinux 0xba3e685f inode_dio_wait -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 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 0xba8aff13 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0xba8c609d __next_node_in -EXPORT_SYMBOL vmlinux 0xba969315 xattr_supported_namespace -EXPORT_SYMBOL vmlinux 0xba9d6475 __neigh_event_send -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 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb057831 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0xbb0d6f36 __snd_pcm_lib_xfer -EXPORT_SYMBOL vmlinux 0xbb14eb31 bcmp -EXPORT_SYMBOL vmlinux 0xbb1e294a reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -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 0xbb61665d nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0xbb634c2e gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0xbb6a6518 dev_uc_flush -EXPORT_SYMBOL vmlinux 0xbb6df778 sg_nents -EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 -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 0xbb9e3715 omap_rtc_power_off_program -EXPORT_SYMBOL vmlinux 0xbb9ea2ba page_pool_release_page -EXPORT_SYMBOL vmlinux 0xbba43655 xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0xbbacd60b empty_aops -EXPORT_SYMBOL vmlinux 0xbbb2a777 iterate_dir -EXPORT_SYMBOL vmlinux 0xbbe0360a pci_choose_state -EXPORT_SYMBOL vmlinux 0xbbe1e16c security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xbbfc3b68 rproc_elf_find_loaded_rsc_table -EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 -EXPORT_SYMBOL vmlinux 0xbc383efb blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0xbc394fd2 uart_add_one_port -EXPORT_SYMBOL vmlinux 0xbc45833b rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0xbc6692a3 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xbc6ad67f param_ops_short -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 0xbc8f9f91 mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcb17d38 rawnand_sw_hamming_correct -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 0xbcdfeb90 eth_validate_addr -EXPORT_SYMBOL vmlinux 0xbcf8db21 ps2_drain -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 0xbd1713a0 sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0xbd19d05d reuseport_select_sock -EXPORT_SYMBOL vmlinux 0xbd1b4950 __cpu_dying_mask -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 0xbd44cda3 qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0xbd5e1d9c __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0xbd61492d dev_addr_add -EXPORT_SYMBOL vmlinux 0xbd807842 __udp_disconnect -EXPORT_SYMBOL vmlinux 0xbd820297 rtc_lock -EXPORT_SYMBOL vmlinux 0xbd83dabf skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0xbd93eaaf blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0xbda016a9 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xbda186cc phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0xbda9efcd ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0xbdb8a057 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xbdbeafbd tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0xbddb9012 mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0xbde5b4ea block_write_begin -EXPORT_SYMBOL vmlinux 0xbded4c9a fc_mount -EXPORT_SYMBOL vmlinux 0xbdf0c0b0 netlink_set_err -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 0xbe14f7c1 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xbe169e15 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0xbe2070c0 pci_read_vpd -EXPORT_SYMBOL vmlinux 0xbe2e15b2 phy_error -EXPORT_SYMBOL vmlinux 0xbe2f6fa0 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe5cbdcc ip_defrag -EXPORT_SYMBOL vmlinux 0xbe60f282 register_netdevice_notifier_dev_net -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 0xbe9b3d1d dev_get_stats -EXPORT_SYMBOL vmlinux 0xbea48c66 tegra_dfll_runtime_suspend -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 0xbf3b3776 icmp_ndo_send -EXPORT_SYMBOL vmlinux 0xbf4d4539 udp_table -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 0xbf7e8efa unlock_rename -EXPORT_SYMBOL vmlinux 0xbf817994 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xbf81a4a6 tcf_classify -EXPORT_SYMBOL vmlinux 0xbf86ed6f tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbf9ccf58 genphy_c37_config_aneg -EXPORT_SYMBOL vmlinux 0xbfa28a93 napi_gro_flush -EXPORT_SYMBOL vmlinux 0xbfb19d90 vfs_mkobj -EXPORT_SYMBOL vmlinux 0xbfb48583 snd_dma_alloc_pages -EXPORT_SYMBOL vmlinux 0xbfbdb133 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0xbfc96afd __of_mdiobus_register -EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block -EXPORT_SYMBOL vmlinux 0xbfd60fe7 genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0xbfdf7bc3 mempool_create -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 0xc0314815 block_truncate_page -EXPORT_SYMBOL vmlinux 0xc0433cd9 __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -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 0xc0a1c860 xfrm4_rcv -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 0xc0acb28c nf_register_net_hook -EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL vmlinux 0xc0da0e99 dim_on_top -EXPORT_SYMBOL vmlinux 0xc0dadbac scsi_target_resume -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 0xc112e42b xfrm6_rcv_encap -EXPORT_SYMBOL vmlinux 0xc1304605 pm8606_osc_enable -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 0xc17c9673 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0xc188bf5b page_pool_alloc_frag -EXPORT_SYMBOL vmlinux 0xc1957aad udp6_set_csum -EXPORT_SYMBOL vmlinux 0xc19ba51c vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0xc1b9c7d5 secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0xc1bcb39f empty_zero_page -EXPORT_SYMBOL vmlinux 0xc1bdd179 scsi_remove_host -EXPORT_SYMBOL vmlinux 0xc1c0714a tcp_v4_destroy_sock -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 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 0xc2063f42 fget -EXPORT_SYMBOL vmlinux 0xc207ee07 complete_and_exit -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 0xc234d749 xattr_full_name -EXPORT_SYMBOL vmlinux 0xc2480e05 file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xc25f37fc dst_destroy -EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc276fcae skb_copy -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 0xc2b7ff5b eth_header_cache_update -EXPORT_SYMBOL vmlinux 0xc2c742c1 vme_master_request -EXPORT_SYMBOL vmlinux 0xc2cae53e refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0xc2cf2dde ZSTD_decompress_usingDDict -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2ede9c5 gen_pool_destroy -EXPORT_SYMBOL vmlinux 0xc303b182 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state -EXPORT_SYMBOL vmlinux 0xc3135985 xfrm_init_state -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 0xc343dbf1 watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0xc358aaf8 snprintf -EXPORT_SYMBOL vmlinux 0xc35feb32 get_user_pages -EXPORT_SYMBOL vmlinux 0xc37335b0 complete -EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc3820353 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xc386da20 vm_map_pages -EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc3b3b3a7 serio_interrupt -EXPORT_SYMBOL vmlinux 0xc3c05382 phy_suspend -EXPORT_SYMBOL vmlinux 0xc3c74b47 phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb -EXPORT_SYMBOL vmlinux 0xc3da1346 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0xc3dccb1c vfs_link -EXPORT_SYMBOL vmlinux 0xc3ec7dc1 __gnet_stats_copy_basic -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 0xc43812db neigh_seq_start -EXPORT_SYMBOL vmlinux 0xc4458a05 pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0xc44c3689 ucc_tdm_init -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 0xc479a81c generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0xc4864364 skb_queue_tail -EXPORT_SYMBOL vmlinux 0xc49a0c23 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0xc49d0e24 input_register_handler -EXPORT_SYMBOL vmlinux 0xc4d4fdfd ip6_frag_init -EXPORT_SYMBOL vmlinux 0xc4ddefbd ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0xc4df2b3f devm_nvmem_unregister -EXPORT_SYMBOL vmlinux 0xc4e3aed0 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0xc4ed6273 netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0xc4ed9d9f fb_get_mode -EXPORT_SYMBOL vmlinux 0xc5058920 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0xc50fcb6e mdio_bus_type -EXPORT_SYMBOL vmlinux 0xc52a4aa7 dst_init -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 0xc546b787 __ip_dev_find -EXPORT_SYMBOL vmlinux 0xc54df713 __nla_reserve -EXPORT_SYMBOL vmlinux 0xc5693f42 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0xc5781eee jbd2_journal_submit_inode_data_buffers -EXPORT_SYMBOL vmlinux 0xc57f940e unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xc581500f ZSTD_resetDStream -EXPORT_SYMBOL vmlinux 0xc58354ac ip_frag_init -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5a7ffd0 tso_start -EXPORT_SYMBOL vmlinux 0xc5baba06 vcalloc -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 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc613744d setattr_prepare -EXPORT_SYMBOL vmlinux 0xc61511de pci_restore_state -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc6556b29 mdiobus_write -EXPORT_SYMBOL vmlinux 0xc65e2327 phy_detach -EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc667bf92 unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xc674015c __block_write_full_page -EXPORT_SYMBOL vmlinux 0xc692abc9 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0xc697723e get_fs_type -EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle -EXPORT_SYMBOL vmlinux 0xc6a39569 sock_efree -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6da5f8c kern_path_create -EXPORT_SYMBOL vmlinux 0xc6e1cac4 __neigh_for_each_release -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 0xc7167d07 skb_copy_bits -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc763e06b mtd_concat_create -EXPORT_SYMBOL vmlinux 0xc764db66 inet6_add_offload -EXPORT_SYMBOL vmlinux 0xc7691c4a devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xc770da42 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0xc774780b xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0xc7815f12 udp_gro_receive -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc795db6b udp_disconnect -EXPORT_SYMBOL vmlinux 0xc799f1f4 dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7a5021a inet_getname -EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7cc2c46 ps2_end_command -EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xc7d3fbb9 param_get_string -EXPORT_SYMBOL vmlinux 0xc7eb595b blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn -EXPORT_SYMBOL vmlinux 0xc7ff7acb tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xc8082dc5 mode_strip_sgid -EXPORT_SYMBOL vmlinux 0xc80cd9b9 dma_resv_reserve_shared -EXPORT_SYMBOL vmlinux 0xc817fbce mdiobus_read -EXPORT_SYMBOL vmlinux 0xc81e4edd rawnand_dt_parse_gpio_cs -EXPORT_SYMBOL vmlinux 0xc81f8e0c dev_uc_sync -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 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc887e717 skb_free_datagram -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc8a5d008 page_symlink -EXPORT_SYMBOL vmlinux 0xc8a8042a qdisc_reset -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8aa30a5 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0xc8b25e82 tegra_ivc_notified -EXPORT_SYMBOL vmlinux 0xc8b58a25 __memset64 -EXPORT_SYMBOL vmlinux 0xc8b6765a devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0xc8be4de4 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0xc8cbdbfa padata_do_serial -EXPORT_SYMBOL vmlinux 0xc8ce25f5 ucc_fast_dump_regs -EXPORT_SYMBOL vmlinux 0xc8e2cf6b ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0xc9070c1e fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0xc90b4334 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xc90df8ca simple_transaction_release -EXPORT_SYMBOL vmlinux 0xc91161e4 netif_rx_any_context -EXPORT_SYMBOL vmlinux 0xc9147e54 setattr_copy -EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc -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 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 0xc99cbe18 dquot_acquire -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -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 0xc9ca3698 register_sysctl_table -EXPORT_SYMBOL vmlinux 0xc9ca9995 genl_unregister_family -EXPORT_SYMBOL vmlinux 0xc9cfa28e from_kuid_munged -EXPORT_SYMBOL vmlinux 0xc9dd2119 udp_lib_setsockopt -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 0xc9f89180 dma_find_channel -EXPORT_SYMBOL vmlinux 0xca1e71c1 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca37a96b ip_sock_set_recverr -EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca5a7528 down_interruptible -EXPORT_SYMBOL vmlinux 0xca675638 skb_eth_pop -EXPORT_SYMBOL vmlinux 0xca7137cf vme_register_driver -EXPORT_SYMBOL vmlinux 0xca774bc5 qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0xca7ee9b2 fault_in_writeable -EXPORT_SYMBOL vmlinux 0xca813ce6 LZ4_decompress_safe_continue -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca95d467 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0xca981fab build_skb_around -EXPORT_SYMBOL vmlinux 0xcab3b533 unlock_page_memcg -EXPORT_SYMBOL vmlinux 0xcabb48d8 skb_copy_expand -EXPORT_SYMBOL vmlinux 0xcacc62ee of_get_compatible_child -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 0xcb36a5aa dev_mc_add -EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb3cabaa __mdiobus_read -EXPORT_SYMBOL vmlinux 0xcb510bc2 complete_all -EXPORT_SYMBOL vmlinux 0xcb606eb9 xa_load -EXPORT_SYMBOL vmlinux 0xcb8c753b mempool_exit -EXPORT_SYMBOL vmlinux 0xcb8c852c may_setattr -EXPORT_SYMBOL vmlinux 0xcbc3189c scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0xcbce3959 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbe4d8c5 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0xcbe7649c sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0xcbeb5b1a bio_add_page -EXPORT_SYMBOL vmlinux 0xcbf1dbd0 utf8len -EXPORT_SYMBOL vmlinux 0xcbfa6ff4 tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0xcc021d23 cqhci_pltfm_init -EXPORT_SYMBOL vmlinux 0xcc032262 from_kprojid -EXPORT_SYMBOL vmlinux 0xcc0e35c4 unregister_key_type -EXPORT_SYMBOL vmlinux 0xcc1798ca sock_alloc_send_skb -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 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc620285 register_mii_timestamper -EXPORT_SYMBOL vmlinux 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL vmlinux 0xcc6cc87d inet_recvmsg -EXPORT_SYMBOL vmlinux 0xccb29321 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0xccb8a09b sg_miter_stop -EXPORT_SYMBOL vmlinux 0xccd0fa72 netdev_info -EXPORT_SYMBOL vmlinux 0xccd1ba0f rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0xccd5fb81 seq_write -EXPORT_SYMBOL vmlinux 0xccd7ef5c phy_mac_interrupt -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 0xccfd2ebc scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0xcd00abbc add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div -EXPORT_SYMBOL vmlinux 0xcd347b71 dev_get_mac_address -EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr -EXPORT_SYMBOL vmlinux 0xcd6951b0 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0xcd93abe5 tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0xcd99d6b5 ip_fraglist_prepare -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 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcde37e4f of_get_mac_address -EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcdff2885 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0xce0050dc register_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0xce0267e7 put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0xce07c0a8 tcp_mtu_to_mss -EXPORT_SYMBOL vmlinux 0xce09d490 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0xce174b98 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0xce21d024 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0xce273a17 mmc_can_discard -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce2bd797 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0xce3ca308 copy_from_user_toio -EXPORT_SYMBOL vmlinux 0xce4af641 mmc_run_bkops -EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce70db04 migrate_page -EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0xce7657e0 generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0xce767840 ip_sock_set_tos -EXPORT_SYMBOL vmlinux 0xce7c2630 __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xce8c9d92 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xce8d9a62 kernel_accept -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 0xceaff319 prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0xcec4bcc1 notify_change -EXPORT_SYMBOL vmlinux 0xced0b34c netif_rx_ni -EXPORT_SYMBOL vmlinux 0xced7ca89 __ClearPageMovable -EXPORT_SYMBOL vmlinux 0xcedc99af mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xcedffc34 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0xcee43dcf kmap_high -EXPORT_SYMBOL vmlinux 0xceeca906 dev_alloc_name -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf01f610 panic_notifier_list -EXPORT_SYMBOL vmlinux 0xcf063f10 pci_get_class -EXPORT_SYMBOL vmlinux 0xcf07d333 vfs_get_fsid -EXPORT_SYMBOL vmlinux 0xcf15d3ea inet_add_protocol -EXPORT_SYMBOL vmlinux 0xcf32dba3 ps2_handle_response -EXPORT_SYMBOL vmlinux 0xcf4923d2 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0xcf62f20b skb_expand_head -EXPORT_SYMBOL vmlinux 0xcf67aae9 dev_uc_init -EXPORT_SYMBOL vmlinux 0xcf774ab4 rtnl_unicast -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 0xcf97a1e2 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcfa69a7e atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xcfb9e0e3 ioremap_page -EXPORT_SYMBOL vmlinux 0xcfc1bc6f alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0xcfc7c3c5 tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0xcfde4b10 __post_watch_notification -EXPORT_SYMBOL vmlinux 0xcfecc695 param_ops_byte -EXPORT_SYMBOL vmlinux 0xd007549e key_invalidate -EXPORT_SYMBOL vmlinux 0xd0124f7e skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0xd031df6f neigh_app_ns -EXPORT_SYMBOL vmlinux 0xd03f786c __icmp_send -EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd04febe9 arm_elf_read_implies_exec -EXPORT_SYMBOL vmlinux 0xd05b50ad reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd079a134 timestamp_truncate -EXPORT_SYMBOL vmlinux 0xd0a98cd5 phy_start -EXPORT_SYMBOL vmlinux 0xd0ad5303 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock -EXPORT_SYMBOL vmlinux 0xd0b4144c xsk_tx_peek_desc -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 0xd0cdf1b1 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0xd0df6eae neigh_lookup -EXPORT_SYMBOL vmlinux 0xd0e9fb09 release_firmware -EXPORT_SYMBOL vmlinux 0xd0eb5402 has_capability -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 0xd1569346 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xd166528f netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0xd16e2dd2 simple_nosetlease -EXPORT_SYMBOL vmlinux 0xd175ab71 dst_release_immediate -EXPORT_SYMBOL vmlinux 0xd17fc56a zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd1929805 ndo_dflt_fdb_del -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 0xd1bda3bc cdrom_check_events -EXPORT_SYMBOL vmlinux 0xd1cac988 udp_skb_destructor -EXPORT_SYMBOL vmlinux 0xd1d15937 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1dd865a km_policy_expired -EXPORT_SYMBOL vmlinux 0xd1e48e16 fscrypt_fname_disk_to_usr -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 0xd21b831a ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0xd2215195 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0xd22b8660 of_lpddr3_get_ddr_timings -EXPORT_SYMBOL vmlinux 0xd22ca0b2 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0xd22d9df9 d_exact_alias -EXPORT_SYMBOL vmlinux 0xd232f643 param_get_hexint -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 0xd273f580 tty_port_carrier_raised -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 0xd28c0038 bio_free_pages -EXPORT_SYMBOL vmlinux 0xd28e4423 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0xd28e6061 release_sock -EXPORT_SYMBOL vmlinux 0xd29bfbbc snd_soc_alloc_ac97_component -EXPORT_SYMBOL vmlinux 0xd2b60e66 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0xd2bc93f5 cpu_tlb -EXPORT_SYMBOL vmlinux 0xd2c0a4eb sock_no_ioctl -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 0xd31629f8 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd32d6c08 lockref_get -EXPORT_SYMBOL vmlinux 0xd33077ae vfs_iter_write -EXPORT_SYMBOL vmlinux 0xd3436793 mmc_put_card -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 0xd36dc10c get_random_u32 -EXPORT_SYMBOL vmlinux 0xd36fcd59 ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0xd38dc12a tcf_action_update_stats -EXPORT_SYMBOL vmlinux 0xd390ba86 f_setown -EXPORT_SYMBOL vmlinux 0xd391c25b __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xd39fa6ab __kfifo_alloc -EXPORT_SYMBOL vmlinux 0xd3b2ea53 dm_get_device -EXPORT_SYMBOL vmlinux 0xd3b409a3 netlink_net_capable -EXPORT_SYMBOL vmlinux 0xd3b756ce md_cluster_ops -EXPORT_SYMBOL vmlinux 0xd3d0edd9 rproc_resource_cleanup -EXPORT_SYMBOL vmlinux 0xd3e75f38 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -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 0xd42726b8 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0xd4363898 inet_release -EXPORT_SYMBOL vmlinux 0xd43dbc31 filemap_fault -EXPORT_SYMBOL vmlinux 0xd45ddb66 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xd4653a9e snd_pcm_hw_constraint_step -EXPORT_SYMBOL vmlinux 0xd465f643 tcp_sock_set_keepidle -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 0xd481ce08 tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed -EXPORT_SYMBOL vmlinux 0xd498fda8 user_path_at_empty -EXPORT_SYMBOL vmlinux 0xd4ace844 blkdev_put -EXPORT_SYMBOL vmlinux 0xd4ad0556 rpmh_write_batch -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 0xd4d90d3e nf_ct_get_tuple_skb -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 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd52cda9f flow_rule_match_control -EXPORT_SYMBOL vmlinux 0xd539f6fd inet_sock_destruct -EXPORT_SYMBOL vmlinux 0xd53d4c6d twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0xd540ec7e input_register_device -EXPORT_SYMBOL vmlinux 0xd576c707 uart_update_timeout -EXPORT_SYMBOL vmlinux 0xd57a2577 pci_find_resource -EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise -EXPORT_SYMBOL vmlinux 0xd592c94b netdev_pick_tx -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 0xd5c3fb6e ppp_dev_name -EXPORT_SYMBOL vmlinux 0xd5dd27a0 ucc_of_parse_tdm -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 0xd5f5fb62 phy_init_hw -EXPORT_SYMBOL vmlinux 0xd600ae92 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd611ca17 snd_jack_set_key -EXPORT_SYMBOL vmlinux 0xd620a910 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0xd627480b strncat -EXPORT_SYMBOL vmlinux 0xd631a13c seq_read_iter -EXPORT_SYMBOL vmlinux 0xd63fafc2 div64_u64_rem -EXPORT_SYMBOL vmlinux 0xd6582ab0 xa_extract -EXPORT_SYMBOL vmlinux 0xd66327a1 dump_page -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -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 0xd6bc04ff cmd_db_read_aux_data -EXPORT_SYMBOL vmlinux 0xd6e3c071 path_get -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 0xd72c1046 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd73bf5e2 mipi_dsi_attach -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 0xd77e6425 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write -EXPORT_SYMBOL vmlinux 0xd79bafe0 udp_flush_pending_frames -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 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7d31b4a fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd8073bfd scsicam_bios_param -EXPORT_SYMBOL vmlinux 0xd8092eff zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0xd80eada7 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0xd8117294 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0xd8178238 __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0xd81dcd67 bdi_register -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 0xd86eb2bf pci_set_power_state -EXPORT_SYMBOL vmlinux 0xd875584a __genradix_ptr -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 0xd8b61304 get_default_font -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 0xd9071cbb tcp_close -EXPORT_SYMBOL vmlinux 0xd908542c init_pseudo -EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd932ba94 tcp_sock_set_user_timeout -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 0xd9694f07 ip6_output -EXPORT_SYMBOL vmlinux 0xd981bf83 __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0xd983a543 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen -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 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 0xda0f3144 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0xda179385 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0xda19aeab xfrm_state_add -EXPORT_SYMBOL vmlinux 0xda2330b5 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0xda349483 xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0xda3974b7 lookup_one_len -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda4ec511 xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0xda6fc0b3 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda74c73b mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0xda81d5dc of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -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 0xdab87857 udp_push_pending_frames -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 0xdae863de jbd2_journal_load -EXPORT_SYMBOL vmlinux 0xdaf5e624 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xdaf65445 vsnprintf -EXPORT_SYMBOL vmlinux 0xdb0b31fc __mmap_lock_do_trace_released -EXPORT_SYMBOL vmlinux 0xdb14513a dm_unregister_target -EXPORT_SYMBOL vmlinux 0xdb323ff7 mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0xdb54b2b5 ps2_command -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 0xdbce737a nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0xdbd0f900 icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0xdbd650f6 of_mdiobus_child_is_phy -EXPORT_SYMBOL vmlinux 0xdbdee8e0 netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0xdbf0f21a tty_lock -EXPORT_SYMBOL vmlinux 0xdbff4f86 jbd2_journal_grab_journal_head -EXPORT_SYMBOL vmlinux 0xdbff7144 sock_set_reuseaddr -EXPORT_SYMBOL vmlinux 0xdc049e13 reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc23a5bd skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0xdc258d02 cpumask_next_and -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 0xdc88ff6a inet_put_port -EXPORT_SYMBOL vmlinux 0xdc94e197 security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xdcb17edb validate_slab_cache -EXPORT_SYMBOL vmlinux 0xdcb4131a nexthop_bucket_set_hw_flags -EXPORT_SYMBOL vmlinux 0xdcc451c0 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0xdcda6df8 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress -EXPORT_SYMBOL vmlinux 0xdcde7315 ucc_fast_free -EXPORT_SYMBOL vmlinux 0xdcf34a26 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0xdcf6d045 radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat -EXPORT_SYMBOL vmlinux 0xdd0e2bc7 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xdd14a8ab tty_register_device -EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw -EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr -EXPORT_SYMBOL vmlinux 0xdd2a4403 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xdd2aabda secpath_set -EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd553c4c phy_ethtool_get_sset_count -EXPORT_SYMBOL vmlinux 0xdd5620aa remap_pfn_range -EXPORT_SYMBOL vmlinux 0xdd5bb9aa mmc_get_card -EXPORT_SYMBOL vmlinux 0xdd61b281 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0xdd6afae5 read_cache_page -EXPORT_SYMBOL vmlinux 0xdd6dca3e find_get_pages_contig -EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset -EXPORT_SYMBOL vmlinux 0xdd81421f trace_print_symbols_seq_u64 -EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd8a0a34 of_n_addr_cells -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 0xddd82a43 skb_trim -EXPORT_SYMBOL vmlinux 0xdde4fa17 pci_request_irq -EXPORT_SYMBOL vmlinux 0xdded9d00 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0xde4bf88b __mutex_init -EXPORT_SYMBOL vmlinux 0xde55e795 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0xde59092a lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xde5ae857 vme_slave_get -EXPORT_SYMBOL vmlinux 0xde6bb6ff ppp_input_error -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 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdeee7f0c twl6040_reg_write -EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdf00e3d2 sk_error_report -EXPORT_SYMBOL vmlinux 0xdf1897d2 mutex_lock_killable -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 0xdf32b62c seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update -EXPORT_SYMBOL vmlinux 0xdf52def1 ZSTD_DStreamInSize -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf7872a6 wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0xdf85ffb5 snd_pcm_hw_param_first -EXPORT_SYMBOL vmlinux 0xdf924a59 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -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 0xdfd91ce9 omap_type -EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi -EXPORT_SYMBOL vmlinux 0xdfe242c2 sock_no_linger -EXPORT_SYMBOL vmlinux 0xdfe6e33a ptp_cancel_worker_sync -EXPORT_SYMBOL vmlinux 0xdfec44c1 nand_ecc_cleanup_ctx -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe001daed blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0xe00a3130 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xe0105cac xsk_tx_completed -EXPORT_SYMBOL vmlinux 0xe01e0fee flow_rule_match_meta -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 0xe080e8f0 set_current_groups -EXPORT_SYMBOL vmlinux 0xe08a0873 cqhci_deactivate -EXPORT_SYMBOL vmlinux 0xe08b3b75 register_sound_special -EXPORT_SYMBOL vmlinux 0xe091c977 list_sort -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 0xe0fe8821 always_delete_dentry -EXPORT_SYMBOL vmlinux 0xe101320b pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -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 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 0xe167f6e4 inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0xe19ce104 tcp_seq_start -EXPORT_SYMBOL vmlinux 0xe1a0b5a1 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0xe1a4603d dma_map_resource -EXPORT_SYMBOL vmlinux 0xe1a9b2ff dma_fence_match_context -EXPORT_SYMBOL vmlinux 0xe1ba9b12 ipv6_chk_custom_prefix -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 0xe1f4af6f dev_set_group -EXPORT_SYMBOL vmlinux 0xe1f60185 may_umount_tree -EXPORT_SYMBOL vmlinux 0xe2000874 vga_get -EXPORT_SYMBOL vmlinux 0xe20d8b53 snd_sgbuf_get_page -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 0xe245e405 ip_do_fragment -EXPORT_SYMBOL vmlinux 0xe24d5a5a mdio_find_bus -EXPORT_SYMBOL vmlinux 0xe251d5aa ip_fraglist_init -EXPORT_SYMBOL vmlinux 0xe266f098 xa_get_mark -EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe280cb3b xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0xe282fe18 register_md_personality -EXPORT_SYMBOL vmlinux 0xe2b24a75 textsearch_unregister -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 0xe2e266cf simple_get_link -EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user -EXPORT_SYMBOL vmlinux 0xe2f3d99f rename_lock -EXPORT_SYMBOL vmlinux 0xe2f9da69 netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0xe327ca87 kill_pgrp -EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe333fbfb vfs_create_mount -EXPORT_SYMBOL vmlinux 0xe3481bc2 dquot_free_inode -EXPORT_SYMBOL vmlinux 0xe3482046 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0xe34a0bfe xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0xe34b25c1 eth_header -EXPORT_SYMBOL vmlinux 0xe3556635 thread_group_exited -EXPORT_SYMBOL vmlinux 0xe369c618 register_sound_mixer -EXPORT_SYMBOL vmlinux 0xe37d6a6b ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0xe3824f77 seq_open_private -EXPORT_SYMBOL vmlinux 0xe3830f0a snd_device_free -EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe3a300fa rproc_remove_subdev -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 0xe3bcaada scsi_print_result -EXPORT_SYMBOL vmlinux 0xe3ca382b fs_context_for_mount -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 0xe3f4606c rtnl_create_link -EXPORT_SYMBOL vmlinux 0xe3f6c1e6 simple_pin_fs -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 0xe410e2d5 xfrm_find_acq -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 0xe43a3047 __tracepoint_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0xe443278a set_blocksize -EXPORT_SYMBOL vmlinux 0xe4436874 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0xe455f85b fs_param_is_fd -EXPORT_SYMBOL vmlinux 0xe45efd88 tcp_sendpage -EXPORT_SYMBOL vmlinux 0xe46d679e udp_sk_rx_dst_set -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 0xe4a658c2 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid -EXPORT_SYMBOL vmlinux 0xe4effcd5 sg_init_one -EXPORT_SYMBOL vmlinux 0xe4f1ed2c bh_submit_read -EXPORT_SYMBOL vmlinux 0xe5137c7b netdev_reset_tc -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe52ffc85 free_buffer_head -EXPORT_SYMBOL vmlinux 0xe53acb39 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xe54ecd64 mmc_command_done -EXPORT_SYMBOL vmlinux 0xe561cc5f fddi_type_trans -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 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe59bf3ed phy_register_fixup -EXPORT_SYMBOL vmlinux 0xe59e72b0 clk_hw_get_clk -EXPORT_SYMBOL vmlinux 0xe5a85e2f __inet_stream_connect -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 0xe5e3d75e copy_page_from_iter -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 0xe61fc31c dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0xe62426d3 ping_prot -EXPORT_SYMBOL vmlinux 0xe625e9c5 param_get_ullong -EXPORT_SYMBOL vmlinux 0xe62cdb0e memcpy_and_pad -EXPORT_SYMBOL vmlinux 0xe637d013 file_fdatawait_range -EXPORT_SYMBOL vmlinux 0xe63ec64a md_flush_request -EXPORT_SYMBOL vmlinux 0xe64a2ddf dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0xe64f27de jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0xe6548e5a pps_unregister_source -EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size -EXPORT_SYMBOL vmlinux 0xe696d36a generic_ro_fops -EXPORT_SYMBOL vmlinux 0xe697ba14 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xe6c12bd7 snd_pcm_period_elapsed_under_stream_lock -EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6daee5b vga_put -EXPORT_SYMBOL vmlinux 0xe6db989b ecc_sw_hamming_correct -EXPORT_SYMBOL vmlinux 0xe6eeeb34 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0xe6febe83 pci_irq_vector -EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv -EXPORT_SYMBOL vmlinux 0xe721ae15 set_disk_ro -EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe76720eb ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0xe77647cb of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0xe77ed574 rtnl_notify -EXPORT_SYMBOL vmlinux 0xe7a72c71 scsi_dma_map -EXPORT_SYMBOL vmlinux 0xe7b0cc83 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7e4d52a _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xe7e82c61 snd_ctl_find_numid -EXPORT_SYMBOL vmlinux 0xe7f1b90f netdev_name_node_alt_create -EXPORT_SYMBOL vmlinux 0xe7f2e3a2 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0xe7f331a1 skb_split -EXPORT_SYMBOL vmlinux 0xe813df30 kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0xe842dc8c dma_fence_get_stub -EXPORT_SYMBOL vmlinux 0xe84eb32f con_is_visible -EXPORT_SYMBOL vmlinux 0xe85fd068 dma_free_attrs -EXPORT_SYMBOL vmlinux 0xe86aaa24 set_anon_super_fc -EXPORT_SYMBOL vmlinux 0xe87ba26c devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0xe888848e ip_output -EXPORT_SYMBOL vmlinux 0xe8947aea mmc_register_driver -EXPORT_SYMBOL vmlinux 0xe894a8f8 d_alloc_anon -EXPORT_SYMBOL vmlinux 0xe8a568ec mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0xe8a7456c vfs_iter_read -EXPORT_SYMBOL vmlinux 0xe8b9a3d4 mx51_revision -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 0xe8e68556 md_register_thread -EXPORT_SYMBOL vmlinux 0xe8f6443a input_set_min_poll_interval -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 0xe936497f netdev_sk_get_lowest_dev -EXPORT_SYMBOL vmlinux 0xe940aa1b page_mapped -EXPORT_SYMBOL vmlinux 0xe947893d update_region -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe962374e vfs_parse_fs_string -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 0xe9996e59 inet6_bind -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 0xe9ace6ac tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0xe9b9c800 register_key_type -EXPORT_SYMBOL vmlinux 0xe9c5359c __check_sticky -EXPORT_SYMBOL vmlinux 0xe9c69f2c neigh_resolve_output -EXPORT_SYMBOL vmlinux 0xe9c96c80 inode_permission -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 0xea12b2a3 dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0xea288517 udp_set_csum -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 0xea6e2b4f pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea73963d pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0xea73c29d sock_no_connect -EXPORT_SYMBOL vmlinux 0xea74cf29 tcp_shutdown -EXPORT_SYMBOL vmlinux 0xea7987f1 key_update -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 0xea9e2bd1 skb_copy_header -EXPORT_SYMBOL vmlinux 0xeaa08229 seq_putc -EXPORT_SYMBOL vmlinux 0xeac05a69 ucc_slow_enable -EXPORT_SYMBOL vmlinux 0xead75a79 fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0xead7687a inet_select_addr -EXPORT_SYMBOL vmlinux 0xeaee4208 __lock_page -EXPORT_SYMBOL vmlinux 0xeaf45ad5 security_path_mknod -EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xeb00abd5 xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl -EXPORT_SYMBOL vmlinux 0xeb0c5f50 pcie_print_link_status -EXPORT_SYMBOL vmlinux 0xeb0d73b3 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0xeb15ebd6 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xeb1eb8a6 pagevec_lookup_range -EXPORT_SYMBOL vmlinux 0xeb281ff6 netdev_lower_get_next_private -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 0xeb5ce8dd end_page_private_2 -EXPORT_SYMBOL vmlinux 0xeb608824 param_ops_ulong -EXPORT_SYMBOL vmlinux 0xeb6e39a0 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0xeb70aba9 sk_dst_check -EXPORT_SYMBOL vmlinux 0xeb72ce47 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xeb7883bf tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0xeb78a42d would_dump -EXPORT_SYMBOL vmlinux 0xeb926ff9 mdiobus_get_phy -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 0xebb2ed5a no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0xebb9056a find_inode_nowait -EXPORT_SYMBOL vmlinux 0xebd4fe65 __breadahead_gfp -EXPORT_SYMBOL vmlinux 0xebdb9683 snd_ctl_boolean_mono_info -EXPORT_SYMBOL vmlinux 0xebee9894 key_unlink -EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high -EXPORT_SYMBOL vmlinux 0xec0240e4 rtc_add_group -EXPORT_SYMBOL vmlinux 0xec07c5dc inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xec0ce2c1 setup_arg_pages -EXPORT_SYMBOL vmlinux 0xec0f19fc tc6393xb_lcd_set_power -EXPORT_SYMBOL vmlinux 0xec1ae09d of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0xec2b9abb param_get_ushort -EXPORT_SYMBOL vmlinux 0xec2d3ced skb_clone_sk -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 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec502fd6 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xec5b660e proc_create_data -EXPORT_SYMBOL vmlinux 0xec5d6f19 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0xec658613 dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0xec957097 cdev_add -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 0xecb64a06 input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0xecbaffc0 mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0xeccd4753 dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecebc3c1 vm_mmap -EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl -EXPORT_SYMBOL vmlinux 0xed141db8 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0xed394bf3 rproc_of_parse_firmware -EXPORT_SYMBOL vmlinux 0xed3c255b neigh_seq_stop -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 0xeda01e16 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0xeda77a59 d_alloc -EXPORT_SYMBOL vmlinux 0xedaa4f59 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0xedac404a xp_dma_map -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc457e7 dev_change_proto_down -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 0xedee740b bio_kmalloc -EXPORT_SYMBOL vmlinux 0xedfd39c4 tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0xee02a44f gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xee0fbd66 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0xee11ae33 devm_request_resource -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee32de0e dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xee3a80f0 finish_open -EXPORT_SYMBOL vmlinux 0xee43fd9b ___ratelimit -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 0xee5dba58 phy_init_eee -EXPORT_SYMBOL vmlinux 0xee5e93a0 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0xee6e57d8 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0xee6eb53a ip_route_input_noref -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 0xee916b3a mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeb8bbff d_obtain_root -EXPORT_SYMBOL vmlinux 0xeed57179 dev_printk_emit -EXPORT_SYMBOL vmlinux 0xeeeb3996 vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0xef00eefb single_release -EXPORT_SYMBOL vmlinux 0xef219999 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xef3d8319 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0xef459966 icmp6_send -EXPORT_SYMBOL vmlinux 0xef4b3e41 eth_gro_complete -EXPORT_SYMBOL vmlinux 0xef4cad92 trace_print_flags_seq -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 0xef833424 pci_find_bus -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 0xef9b4bb5 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0xefad0245 snd_timer_global_register -EXPORT_SYMBOL vmlinux 0xefb4f4f0 tcp_setsockopt -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 0xf000fb7b xfrm_policy_register_afinfo -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 0xf0521ec7 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xf0527285 tty_register_driver -EXPORT_SYMBOL vmlinux 0xf068611f drop_super -EXPORT_SYMBOL vmlinux 0xf06cee2c radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0xf07eabfd __traceiter_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xf083a0cb drop_super_exclusive -EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0a343ed release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf0aefc8c mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0xf0b3bd5a sock_set_keepalive -EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb -EXPORT_SYMBOL vmlinux 0xf0ef52e8 down -EXPORT_SYMBOL vmlinux 0xf0fb7e0c netlink_ack -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 0xf113ec66 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0xf11dae34 file_ns_capable -EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf1455cba of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0xf1523d62 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xf154dbe6 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0xf1610bda devm_memunmap -EXPORT_SYMBOL vmlinux 0xf1657f6e vfs_symlink -EXPORT_SYMBOL vmlinux 0xf1687314 inet_sk_set_state -EXPORT_SYMBOL vmlinux 0xf175cd6c fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf19c25de i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0xf1a18d4a poll_freewait -EXPORT_SYMBOL vmlinux 0xf1ad9c4b tegra_ivc_align -EXPORT_SYMBOL vmlinux 0xf1b332c4 snd_timer_pause -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1de454f mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xf1e046cc panic -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1ea6f1c __bswapsi2 -EXPORT_SYMBOL vmlinux 0xf1efb81e inet_add_offload -EXPORT_SYMBOL vmlinux 0xf1f865ca tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0xf1fdfa3c pci_select_bars -EXPORT_SYMBOL vmlinux 0xf1fe94fd vme_init_bridge -EXPORT_SYMBOL vmlinux 0xf2003fc4 neigh_seq_next -EXPORT_SYMBOL vmlinux 0xf217efb9 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xf22ba311 nf_log_set -EXPORT_SYMBOL vmlinux 0xf232a581 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0xf236c75e swake_up_one -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf24da146 phy_modify_paged_changed -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 0xf28404cf devlink_dpipe_header_ipv6 -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 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2da52cf blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf300d496 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0xf302b8a0 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf312c88a page_address -EXPORT_SYMBOL vmlinux 0xf31ed4a2 sg_miter_start -EXPORT_SYMBOL vmlinux 0xf321ae43 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0xf33d67a1 __dev_direct_xmit -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 0xf34f5d42 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf360cd3d __dev_remove_pack -EXPORT_SYMBOL vmlinux 0xf362dc7f arm_clear_user -EXPORT_SYMBOL vmlinux 0xf36a52ee set_nlink -EXPORT_SYMBOL vmlinux 0xf36a6e7b dev_mc_unsync -EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xf3761a22 path_is_under -EXPORT_SYMBOL vmlinux 0xf3805bfa skb_find_text -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 0xf3acca73 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3cac714 ucc_fast_init -EXPORT_SYMBOL vmlinux 0xf3d0b495 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -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 0xf44a3ad4 __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf4681bae __nlmsg_put -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf4823fd9 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0xf496fbd2 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xf4a04498 nmi_panic -EXPORT_SYMBOL vmlinux 0xf4aa8459 textsearch_destroy -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 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf508f63a km_state_expired -EXPORT_SYMBOL vmlinux 0xf50bf212 phy_print_status -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 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf54f4006 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xf55cdb5d sk_common_release -EXPORT_SYMBOL vmlinux 0xf55d2b67 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp -EXPORT_SYMBOL vmlinux 0xf56986f3 inet6_protos -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 0xf5b441d6 xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0xf5b4cacf __remove_inode_hash -EXPORT_SYMBOL vmlinux 0xf5b666ef __cond_resched_lock -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 0xf6033db9 neigh_xmit -EXPORT_SYMBOL vmlinux 0xf610bf0e tegra_dfll_resume -EXPORT_SYMBOL vmlinux 0xf61c486c ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0xf62654f8 ucc_fast_disable -EXPORT_SYMBOL vmlinux 0xf63270a1 ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0xf63ed0fe blk_rq_init -EXPORT_SYMBOL vmlinux 0xf642e722 __xfrm_state_delete -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 0xf652d359 __wake_up_bit -EXPORT_SYMBOL vmlinux 0xf652e3f7 request_key_tag -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 0xf68285c0 register_inetaddr_notifier -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 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 0xf6ee2404 tcp_req_err -EXPORT_SYMBOL vmlinux 0xf6efa58b sock_set_priority -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 0xf70fe68d devm_release_resource -EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb -EXPORT_SYMBOL vmlinux 0xf72085e8 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0xf72cb12c dma_async_device_register -EXPORT_SYMBOL vmlinux 0xf72faf56 pci_disable_msi -EXPORT_SYMBOL vmlinux 0xf733716d sock_recvmsg -EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf73cbb48 kernel_sendmsg -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 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 0xf7802486 __aeabi_uidivmod -EXPORT_SYMBOL vmlinux 0xf7833a2a request_firmware -EXPORT_SYMBOL vmlinux 0xf78ce5f4 inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0xf79aa3dc security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xf79cc601 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xf7a387ef tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0xf7b9462b snd_pcm_hw_constraint_integer -EXPORT_SYMBOL vmlinux 0xf7ba27ec vfs_llseek -EXPORT_SYMBOL vmlinux 0xf7cbbef3 sk_wait_data -EXPORT_SYMBOL vmlinux 0xf7dc6e17 __page_symlink -EXPORT_SYMBOL vmlinux 0xf7e2da8a tcp_disconnect -EXPORT_SYMBOL vmlinux 0xf7ef1aab __lock_sock_fast -EXPORT_SYMBOL vmlinux 0xf7f85aef dev_set_mtu -EXPORT_SYMBOL vmlinux 0xf8029f33 config_item_get -EXPORT_SYMBOL vmlinux 0xf80a9d49 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf828c858 xfrm_trans_queue_net -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf8318527 pci_request_region -EXPORT_SYMBOL vmlinux 0xf838fd97 dim_park_on_top -EXPORT_SYMBOL vmlinux 0xf84c3647 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0xf85c54ed netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xf85ecd18 snd_info_create_card_entry -EXPORT_SYMBOL vmlinux 0xf866b00c tegra_io_pad_power_enable -EXPORT_SYMBOL vmlinux 0xf8692aa6 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xf86df7a9 ipmr_rule_default -EXPORT_SYMBOL vmlinux 0xf86f27cd idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xf8724cc3 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0xf881a03e __find_get_block -EXPORT_SYMBOL vmlinux 0xf884e966 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0xf89e6f28 __skb_gro_checksum_complete -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 0xf8fa2e43 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0xf902a573 __inc_node_page_state -EXPORT_SYMBOL vmlinux 0xf904785e security_d_instantiate -EXPORT_SYMBOL vmlinux 0xf91e5161 register_netdevice -EXPORT_SYMBOL vmlinux 0xf9255c7a flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc -EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf9696ebb netpoll_send_skb -EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf978d5d7 security_unix_may_send -EXPORT_SYMBOL vmlinux 0xf97f5bf6 rproc_get_by_child -EXPORT_SYMBOL vmlinux 0xf990069a tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xf997f22e tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9dc9d13 proc_dobool -EXPORT_SYMBOL vmlinux 0xf9e30802 devm_of_iomap -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 0xfa0bfe1c __ip_options_compile -EXPORT_SYMBOL vmlinux 0xfa19a642 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xfa1b37ce tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0xfa1b6413 discard_new_inode -EXPORT_SYMBOL vmlinux 0xfa371eac inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0xfa4c92fd seq_escape -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa6f3544 __register_nls -EXPORT_SYMBOL vmlinux 0xfa785316 clear_nlink -EXPORT_SYMBOL vmlinux 0xfa8596c6 vme_master_mmap -EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfaa437b8 napi_complete_done -EXPORT_SYMBOL vmlinux 0xfaa54453 __mdiobus_register -EXPORT_SYMBOL vmlinux 0xfaa7f31d scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0xfabe8247 of_get_ethdev_address -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfadc8d91 __fs_parse -EXPORT_SYMBOL vmlinux 0xfaebbf47 skb_tunnel_check_pmtu -EXPORT_SYMBOL vmlinux 0xfb0200da sync_blockdev -EXPORT_SYMBOL vmlinux 0xfb0a81a1 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0xfb12949c mmc_gpiod_request_cd_irq -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 0xfb3ef15b xfrm_state_update -EXPORT_SYMBOL vmlinux 0xfb49a183 genphy_suspend -EXPORT_SYMBOL vmlinux 0xfb4d85af gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -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 0xfbea611e _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0xfbfd7e4c set_groups -EXPORT_SYMBOL vmlinux 0xfc01a73b __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0xfc0d3521 dquot_scan_active -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 0xfc3f3589 strscpy_pad -EXPORT_SYMBOL vmlinux 0xfc48ba39 __cancel_dirty_page -EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown -EXPORT_SYMBOL vmlinux 0xfc6578c7 sock_kmalloc -EXPORT_SYMBOL vmlinux 0xfc7396a1 dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available -EXPORT_SYMBOL vmlinux 0xfca36b79 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0xfcc94400 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfce21273 skb_tx_error -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf8613b ppp_register_net_channel -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 0xfd4c6bf0 __sk_dst_check -EXPORT_SYMBOL vmlinux 0xfd53b6a4 inet_bind -EXPORT_SYMBOL vmlinux 0xfd6f1549 iov_iter_get_pages_alloc -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 0xfd8dd029 audit_log -EXPORT_SYMBOL vmlinux 0xfd9eb39c netlink_broadcast -EXPORT_SYMBOL vmlinux 0xfda3c2de jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xfda93647 tegra_dfll_unregister -EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 -EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfdce0e74 tty_hangup -EXPORT_SYMBOL vmlinux 0xfdec43c8 phy_resume -EXPORT_SYMBOL vmlinux 0xfdf4cff0 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xfdff94e0 ZSTD_initDStream -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe17ce2b jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0xfe243751 dev_get_flags -EXPORT_SYMBOL vmlinux 0xfe30d5f4 mmc_free_host -EXPORT_SYMBOL vmlinux 0xfe3209a5 dev_graft_qdisc -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 0xfe52a4c3 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0xfe5789b6 devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -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 0xfe97039f mntget -EXPORT_SYMBOL vmlinux 0xfea39415 unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0xfeb26c80 dev_add_pack -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 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff04c351 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0xff10b02b neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0xff192916 msm_pinctrl_dev_pm_ops -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff214ea0 i2c_transfer -EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff36cd9e skb_pull -EXPORT_SYMBOL vmlinux 0xff370baa nf_log_unregister -EXPORT_SYMBOL vmlinux 0xff4351b0 ecc_sw_hamming_calculate -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 0xff6cf06d mipi_dsi_dcs_get_display_brightness_large -EXPORT_SYMBOL vmlinux 0xff8c2e5a radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xffaab707 kernel_listen -EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit -EXPORT_SYMBOL vmlinux 0xffbd3ab3 ipv4_specific -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_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 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_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 -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x494f06c8 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x8a53470a async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x62e701d6 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x83f1a8e1 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x0f216f58 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x3fe9f9ef __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xa4dbae60 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xad25a916 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x44d542f4 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x9e1029bf async_xor_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xb86c6fd3 async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xccd87cba async_xor_val_offs -EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x866cecdb blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x9fd748ac cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x9878e817 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 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 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 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 -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 0x68bfc9db 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 0x2a28ddd4 twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x00f2a92b spk_var_show -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x03fe06e4 synth_remove -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x084bca8a spk_synth_flush -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x22c5af79 spk_synth_get_index -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2af8f064 spk_ttyio_synth_immediate -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2e7e21d7 speakup_event -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x302b5406 spk_ttyio_release -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x466f5eb7 synth_putwc -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x618bb0e4 synth_current -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7a81af24 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fca7c59 spk_do_catch_up_unicode -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8181ceec speakup_info -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x84dad068 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8a936491 spk_synth_is_alive_nop -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 0xaea38e27 spk_var_store -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc319c604 synth_putws_s -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc6a06d16 spk_get_var -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd8fd86cf synth_release_region -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe194d0ef synth_printf -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe1c13aba spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe3f67c4d synth_add -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xf274e30b spk_ttyio_synth_probe -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xf42fd07d spk_ttyio_ops -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xe79c4148 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xb20f3edc sis_info133_for_sata -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x09917359 charlcd_poke -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x6fd9cc4a charlcd_register -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x8b45326c charlcd_alloc -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-ac97 0x873d1bf7 regmap_ac97_default_volatile -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xe29ed1c2 __devm_regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xe440ddbb __regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xd8d0530e __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x0762cf7c __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x63e4c529 __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x2c85b5fa __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xa295966d __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x1f6e19e3 __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x45308431 __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x1526d897 __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x59a28230 __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x6896f010 __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xa22135a5 __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4dc77fb0 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xa46f7a57 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xcc20b393 __regmap_init_spmi_base -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/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/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 -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x14da12f5 mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1bb7d7d9 mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x24a0d189 mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2d14edbe mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x31205c9a mhi_poll -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3a510dfa mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x54099f2c mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x83e58549 mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8cc1cfd0 mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x90c3ccb6 mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x943514ab mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x99e48a82 mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa7b1d65a mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa931e262 mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xac734ed8 mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb193469a mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb2a1fd7f mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbc4f7472 mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbe4ea8a8 __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc0b78dcc mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc34e7190 mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc3ede2f7 mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd0a2f2c6 mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xdeee429d mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe12757b2 mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf7ef01ce mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xfbb0aa49 mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x063e54fe __moxtet_register_driver -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 -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 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 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 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 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 0x5e6abb22 mux_div_set_src_div -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6029708c gdsc_gx_do_nothing_enable -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 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 0x6c069db2 qcom_find_src_index -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7019378d clk_pll_configure_sr_hpm_lp -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x73172612 devm_clk_register_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x766e9f87 clk_regmap_div_ro_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x787e8234 qcom_find_freq -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x78b81ea0 clk_rcg2_floor_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7e66fd9e clk_regmap_mux_div_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8515663c clk_alpha_pll_regs -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 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 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 0x9a6aa2c3 qcom_cc_register_sleep_clk -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 0x9dc41abb krait_div2_clk_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9e6c0ae7 clk_trion_pll_configure -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9f1bf2e0 clk_alpha_pll_trion_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9f241baa clk_rcg_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 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 -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc037091a krait_mux_clk_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 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 0xd7ab6782 clk_alpha_pll_postdiv_lucid_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd87ee67b qcom_cc_register_board_clk -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/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 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1d394aea comedi_timeout -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x25f7a80e comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x263fa61b comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x44d6a70b comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x48208f18 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x487413d1 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4ad67a9a comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4d078c42 comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4e1206ef comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x531c3746 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5b7d9ef5 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x62d15b56 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x64744ce4 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7a34e1b2 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7b3bc9d0 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8512e1ae comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x858ac75e comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x89dd2715 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8afc2f3f comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9e8b05f5 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa52d7276 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb1acc863 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb59d56b0 comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb9eb76ce comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb74ad97 comedi_event -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc43d5309 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc5c0735d comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcc24144f comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdae83acd comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf162ef16 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf16d5745 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf655feca comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf84697b5 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfb2913ea comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x0c120d39 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x19717a20 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x20e7fb31 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x483f5c3d comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x53bf0616 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x84f94c3f comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x99282d0d comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xae9261e1 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x013e32c5 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x3ee74ff5 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x43677ffb comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xc9129a9c comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xf1e037e9 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xfcf5d37d comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x601766d3 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x41a7f0d5 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x8100e7a8 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x5842d79a amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x07b13969 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x301e5f2a comedi_8254_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x3c38c581 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x3dd0629c comedi_8254_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x407e8ed4 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5ce398fc comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6f4cac95 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7a82939b comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x85aa74de comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x8d5b514c comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xaf69e2f4 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf2f9cc1b comedi_8254_load -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xfaafdb81 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x5a4b5652 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xedfa5696 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xf1860f0a subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0xc01e7b91 das08_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0def88cc mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1dd7554c mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x226865e8 mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2771103e mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x64a8c032 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6bf38f3d mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6ee7b75f mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7f4b066a mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x97fe3cba mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa24273df mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa4cfc2bd mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa82cdf55 mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa9294f97 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa985ebe6 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb1501c1c mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc2fe4b22 mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xdfec678b labpc_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xe4ca2f1a labpc_common_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x85e75c94 ni_assign_device_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x01aae0d0 ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x09295b39 ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x0df69474 ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x28ad7105 ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x386efd9d ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3bed5813 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x42648941 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x45121fef ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6257cbe6 ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x641336fa ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x67989cff ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xbcd32f86 ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd5d1bd8d ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xefa390ba ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf08fa725 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xfd2dab81 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x438c301e ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x6088c8ed ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x71390d4b ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x725e23c9 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x9fa9a329 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xd4a860ce ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x152ff007 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x5340f275 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x576aafb7 comedi_open -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x95b620e8 comedi_close -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xd31ea2fe comedi_dio_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xdecc6882 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xf8948f08 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/counter/counter 0x1d3519fa counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0xac651b5a devm_counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0xc28289b5 counter_register -EXPORT_SYMBOL_GPL drivers/crypto/omap-crypto 0x701db540 omap_crypto_align_sg -EXPORT_SYMBOL_GPL drivers/crypto/omap-crypto 0xd5328478 omap_crypto_cleanup -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xd46435b3 dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xed0368b2 dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4f70a121 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x58adf02e do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5c6537f9 dw_dma_remove -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 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 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 -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/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 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 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 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 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 0x94e794a0 dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb3ddbf32 dfl_fpga_check_port_id -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/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 -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x31e56dcf devm_fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x6575abb3 fpga_bridge_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x67565b99 fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x698a49f7 fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x8d145d69 fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x92d5c7d1 fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x9ca71eae fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xbbaf8dc5 of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe0e6d307 of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe4c8ddcc fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf14197b4 fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x01a7d00b fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x11714f1c fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x28272a04 fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x389569b3 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3a3d523e fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x53af7fde devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6771ce17 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x725240fa fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7a7148ea fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9f853201 fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xabc9e056 fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc25285b8 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc8ba1d12 devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfd6dcfa0 fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x04288021 fpga_region_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x6c40c2c0 fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x70ca9211 fpga_region_class_find -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 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 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 0xe4ac7aa2 fsi_slave_read -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 -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x491a22c3 gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x66bbd9b9 gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x7826eb51 gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xa71e3030 gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xd097d2cd gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x002b55c7 gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x64a3fc5b gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x87b41c82 gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x9af3fcfd gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xfaff277f gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x35d6a04a aspeed_gpio_copro_grab_gpio -EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x5dcbe46c aspeed_gpio_copro_set_ops -EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0xc1d947c6 aspeed_gpio_copro_release_gpio -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xd57ff426 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xfea50cb4 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x212b1124 analogix_dp_stop_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x2a0ff135 analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x4e39ee6e analogix_dp_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7c76a8e3 analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x80613608 analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x94aecea5 analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xa969c7ff analogix_dp_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe28569d0 analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe4978c9d anx_dp_aux_transfer -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 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 0x63894e6c 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 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/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 -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1a95ff47 drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1b969809 drm_gem_cma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x21d98a6a drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x278e75da drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2d90cda6 drm_gem_shmem_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x311aa3c3 drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x32d26914 drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4b0c9549 drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5708115e drmm_kstrdup -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x59009a0b drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x59b1adb8 drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5c7f62d4 drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x733b0f15 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x77e8a6f5 drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7cef22a5 drm_gem_cma_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x80631638 drm_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x90ea6b21 drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa1a38957 drm_of_encoder_active_endpoint -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaba0e96f drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb9d688a7 drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc4c7d5a6 drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc7965ffa drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xccd19313 drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xce81f336 drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd2a5136a of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd914dcf4 drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe65695d7 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xec4332b2 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf1660b7d drm_of_component_match_add -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf19c4fd9 drm_of_lvds_get_dual_link_pixel_order -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf8485716 drm_of_find_panel_or_bridge -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf893bf81 drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x19b71fac dp_aux_dp_driver_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x2007e2a4 of_dp_aux_populate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xce66edb5 devm_of_dp_aux_populate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xd0cfc876 of_dp_aux_depopulate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xd863a3f1 __dp_aux_dp_driver_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x10279cbc drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x11e7203e drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x13f229b7 drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3febb184 drm_bridge_connector_enable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x478fe41c drm_fb_cma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x67e42345 drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7139e477 drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x769bf8a7 drm_fb_cma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8534643f drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x87c4127f drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd0340340 drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe8538339 drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf0a0592e drm_bridge_connector_disable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xbf40761f imx_drm_encoder_parse_of -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xede41397 imx_drm_connector_destroy -EXPORT_SYMBOL_GPL drivers/gpu/drm/mcde/mcde_drm 0xd676afb7 mcde_display_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x25fb57ba meson_vclk_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x70740c8d meson_vclk_dmt_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x94a785f8 meson_venc_hdmi_supported_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xbdd0f148 meson_vclk_vic_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xfcae05b1 meson_venc_hdmi_mode_set -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_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 -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xe128889b rcar_lvds_is_connected -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x55b1d854 rockchip_rgb_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x7a5f3a02 vop_component_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x003a38b8 ipu_cpmem_set_burstsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x019ce366 ipu_set_csi_src_mux -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x01c9d7c0 ipu_idmac_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x01f4ee1f ipu_image_convert_adjust -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x050f0d7b ipu_di_adjust_videomode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x07036df2 ipu_ic_calc_csc -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0728116a ipu_csi_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0e42bd95 ipu_csi_set_dest -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x106d2a5f ipu_module_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x118160e1 ipu_ic_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x12c3b548 ipu_vdi_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x13952dfe ipu_dmfc_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x15ec2ba5 ipu_di_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x17d69696 ipu_dmfc_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x18435486 ipu_cpmem_set_format_passthrough -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x18730251 ipu_rot_mode_to_degrees -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x18aa0dcd ipu_image_convert_abort -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1e913d9f ipu_csi_get_window -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2424c9a6 ipu_csi_is_interlaced -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x24e63da6 ipu_cpmem_set_high_priority -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x25059b8f ipu_prg_channel_configure_pending -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x258a4439 ipu_image_convert_queue -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2b87a66a ipu_idmac_set_double_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2cf7ed72 ipu_dc_init_sync -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2d0eb6aa ipu_idmac_channel_busy -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2e825a67 ipu_smfc_set_watermark -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2f92d651 ipu_ic_task_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3020d65c ipu_prg_max_active_channels -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x30cafad3 ipu_prg_channel_configure -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3166aec7 ipu_dmfc_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x32ad13c7 ipu_idmac_lock_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x347fdb1e ipu_smfc_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x34ad9fe3 ipu_idmac_unlink -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x35e19aaa ipu_dc_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3d8f18f6 __ipu_ic_calc_csc -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3e86ea72 ipu_di_get_num -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x418a282f ipu_drm_fourcc_to_colorspace -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4215178d ipu_idmac_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x42b359cd ipu_image_convert_prepare -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x42d3d500 ipu_image_convert_unprepare -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4917f47a ipu_ic_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x492a422d ipu_csi_set_mipi_datatype -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x498b4c7b ipu_image_convert_enum_format -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4a14ada7 ipu_image_convert_sync -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4c179b49 ipu_dp_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x505b4e73 ipu_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5133a337 ipu_dp_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x51475e87 ipu_dmfc_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x527f3b94 ipu_smfc_set_burstsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5327e606 ipu_ic_task_idma_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x53de277c ipu_di_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x55767280 ipu_vdi_set_motion -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x56d6c412 ipu_dp_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x580d2f81 ipu_vdi_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5a3f0243 ipu_cpmem_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5b0094da ipu_cpmem_set_uv_offset -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5b15aea8 ipu_dp_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5b5b6cab ipu_image_convert -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5c442e5c ipu_prg_format_supported -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5c5d49dc ipu_module_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5cae270a ipu_vdi_unsetup -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5cd3c1fa ipu_idmac_select_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x60bdf2ec ipu_csi_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x61141e37 ipu_ic_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x61c72515 ipu_cpmem_set_resolution -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x623722e2 ipu_ic_task_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x635c154e ipu_dp_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x66c50008 ipu_dc_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6a451c6a ipu_idmac_enable_watermark -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6c317767 ipu_cpmem_set_rotation -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6cf9f774 ipu_cpmem_set_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7068e939 ipu_dc_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x747eaf4e ipu_image_convert_verify -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x76bbd43e ipu_cpmem_set_axi_id -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x79ab0a12 ipu_cpmem_set_format_rgb -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8497c7d4 ipu_degrees_to_rot_mode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8561eae5 ipu_prg_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x85f590cb ipu_idmac_get_current_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x86940cfe ipu_idmac_link -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x886c35aa ipu_smfc_map_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8b15038c ipu_cpmem_set_stride -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8eb22643 ipu_dp_set_global_alpha -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9058e289 ipu_smfc_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x91169037 ipu_cpmem_zero -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x91ce1a04 ipu_dp_set_window_pos -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9234d889 ipu_idmac_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x92cac605 ipu_cpmem_skip_odd_chroma_rows -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x94e605a3 ipu_csi_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x951a09d5 ipu_csi_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x978aa735 ipu_prg_channel_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x97f08d2f ipu_ic_task_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9f38e177 ipu_dp_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa1832a8e ipu_srm_dp_update -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa2adc346 ipu_dc_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa4b0cabd ipu_dc_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa60b144b ipu_csi_set_window -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa7313332 ipu_idmac_channel_irq -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa8adc101 ipu_pixelformat_to_colorspace -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa96882d8 ipu_ic_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb5b0802d ipu_di_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb9ea6823 ipu_dp_setup_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xba458b8f ipu_csi_set_test_generator -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbc07173e ipu_cpmem_set_yuv_planar_full -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbf4b96d9 ipu_cpmem_interlaced_scan -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbf983ba6 ipu_vdi_set_field_order -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc3c2cdb0 ipu_smfc_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc4af2e81 ipu_dmfc_config_wait4eot -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc4b15642 ipu_csi_set_skip_smfc -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc6675aa9 ipu_csi_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc677177d ipu_smfc_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc6f88fa2 ipu_get_num -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc73e79a0 ipu_cpmem_set_image -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc7af3032 ipu_idmac_wait_busy -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc97e7a0f ipu_di_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcbea3eec ipu_di_init_sync_panel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcd7fbaa4 ipu_ic_task_graphics_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xce3e0027 ipu_csi_init_interface -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd1dc6194 ipu_cpmem_get_burstsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd8f285f0 ipu_vdi_setup -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xdbf91e72 ipu_prg_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xdd89cd30 ipu_idmac_clear_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe3602757 ipu_idmac_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe6243c52 ipu_dc_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe9b28c2f ipu_map_irq -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xee51bca0 ipu_set_ic_src_mux -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xee682062 ipu_idmac_buffer_is_ready -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xeea12b31 ipu_vdi_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1440dc1 ipu_ic_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1abac7e ipu_csi_set_downsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf4399287 ipu_prg_present -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf4456b90 ipu_fsu_link -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf4ac0de8 ipu_cpmem_set_fmt -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf4f35e60 ipu_cpmem_set_block_mode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf541df2d ipu_vdi_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf6407c53 ipu_cpmem_set_yuv_interleaved -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf94cac13 ipu_fsu_unlink -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x054b3c6e gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x10b18b75 gb_connection_destroy -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x11f2ce71 gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x122b9d43 gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14028e17 __SCK__tp_func_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14f02fd4 __traceiter_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x158a8186 __tracepoint_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x158db6ea gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x17d2e4df gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x188a7744 gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x19c8e4e0 __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1c27167e gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2b0c65c5 gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2caf19b9 gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x329d23bc __traceiter_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x42a3861c gb_operation_get -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 -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x720ddbd4 gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x72497941 gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7bfa420b __tracepoint_gb_hd_release -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 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 -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae9a0d17 gb_operation_request_send_sync_timeout -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 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 -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd98abe05 gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xda2eb021 gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xda8b83e0 __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdad7c06a gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeb4f918b __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf49ba998 gb_connection_disable -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 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 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 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 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 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfdb542c1 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 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/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/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 -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1b534ceb hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1e5df763 hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x24148084 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2a37bf98 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3a05c7dd hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x44d5b2c5 hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4c65f988 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7342d373 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7a54efc7 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8531d60c hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x994d5aa6 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb457c360 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcf91e830 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd27e1783 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd7e5b858 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe9a8e07c hsi_release_port -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x2a58abcf adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x515f13fb adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xc5d7fe95 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x61412f40 ltc2947_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0f92bb5f intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x460d566c intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5dd90a48 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x61b7b4b1 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7944f186 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa83cfac4 intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc5337ad7 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd7218354 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe31408d5 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x666cbe7f intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x84913604 intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xc501c0fc intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x0d913d4d stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3e7bff05 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x51d3b00e to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5c60e885 stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8184e700 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x84ea75d0 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x89300acc stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xaf7c4f06 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb1262acd stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x406da737 i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x41870391 i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x6d04f010 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xec35cb37 i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x187795ba i2c_register_spd -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x675d404b i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x945d7cf7 i2c_free_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xc97b4210 i2c_new_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x00c0ab89 i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x078f523e i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x07b8692f i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x224af703 i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x24386010 i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x251fd15a i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x36aaaff9 i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3b440f5f i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4ea339bb i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5fa43698 i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6370faa1 i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x70dff088 i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x711f50ad i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fee5adc i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x93e6b2cf i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9516d415 i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x98b7eecd i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9cd62c06 i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xac5f8705 i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xad398089 i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb35ccce1 i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbacee0c0 i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbd3d73cd i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbf0115d7 i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc1fecae5 dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x99ce4d36 adxl372_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xdc476542 adxl372_readable_noinc_reg -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x4db68761 bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x50a3145c bmc150_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x95316110 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xe51d8caf bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x21350cba bmi088_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x221336e8 bmi088_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xafa7c929 bmi088_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xf8d62a48 bmi088_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x042e60f1 fxls8962af_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x5e087266 fxls8962af_spi_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xed1dc228 fxls8962af_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xfcd6e6a3 fxls8962af_i2c_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x40d6d9ef mma7455_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x534eb986 mma7455_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xe6b4602b mma7455_core_regmap -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x32a1b04b ad7091r_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xd4b5fa1d ad7091r_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x3571c927 ad7606_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x84187d19 ad7606_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0f2bbbea ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x14bac185 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1af09c68 devm_ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x593a1124 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5d18668b ad_sd_calibrate -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6753139f ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6b06dcf0 ad_sd_reset -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa1ec4706 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa9136767 ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf199c3ff ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x6ac7a0cf devm_adi_axi_adc_conv_register -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0xc350b11c adi_axi_adc_conv_priv -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x4bce095f iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x6bf240e7 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xb9158bb2 iio_channel_cb_get_iio_dev -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xfff2647d iio_channel_cb_set_buffer_watermark -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x028458d8 iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x07c6552a iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x1fe6ad55 iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x3a5c9078 iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5f1cc2f9 iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7b3a568a iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7cbb45bd iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x8291f65d iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x9e66dc56 iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xce1a2712 iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe6858297 iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xebe89f5b iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x0cea2f4b devm_iio_dmaengine_buffer_setup -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x367a154a devm_iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xdd78087d iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x23c4317a devm_iio_triggered_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x5969ef91 devm_iio_kfifo_buffer_setup_ext -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 0x8e3f7ef9 cros_ec_sensors_read_lpc -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9971dac4 cros_ec_sensors_capture -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xa2b4b617 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 -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x63cc1c2b ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x7ee86ae4 ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x992568b3 ad5686_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xa465c693 ad5686_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x5f4e6059 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x6cbca791 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xc89c09a0 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x0efc2714 fxas21002c_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x2ab54f7b fxas21002c_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xbeafb108 fxas21002c_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xe8667e80 bmi160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x464bca89 fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x025e472d inv_icm42600_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x0cc131e1 inv_icm42600_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xfea92d7c inv_icm42600_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xa1dd5fef inv_mpu_pmops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xb713d0c6 inv_mpu_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xb7dda6c5 st_lsm9ds0_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xe68f7436 st_lsm9ds0_probe -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0608e07a iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c7f0da5 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0da5ca7c __devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0f8dfa47 iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x122c661c iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x144d87c6 iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x15948360 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x15f2aa01 devm_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 0x2770e121 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x27949564 iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3da9993a iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x42096cc5 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x420a32ad iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x42b49ce4 iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4870b38a devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x48ed3d1d devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4f27d6a5 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x510086b3 iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x56f3f27e iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x57ca808a iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x59db4429 iio_device_id -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5ad3dbcb iio_get_debugfs_dentry -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x71578e05 iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x76de220a iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x79448962 iio_get_channel_ext_info_count -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 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 -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9f3e362a iio_map_array_register -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 0xbe07fddd iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbe77f179 __devm_iio_device_register -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 -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd42ba9e7 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd6e1b1db iio_read_channel_scale -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/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 -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table -EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0x275e87b5 mpl115_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x361dc7a5 zpa2326_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x3bc5c225 zpa2326_isreg_writeable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x4d9b9d6b zpa2326_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x4f8e27f4 zpa2326_isreg_precious -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 0x0b751ec2 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0d6e805d rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2b84e19c rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3cc296fa rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6e4d3e16 rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x79730e25 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x878bc7e4 rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9792ed7e rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9faf435a rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc793e30c rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd3cc1ee4 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd927f1b7 rtrs_iu_post_rdma_write_imm -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 -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xb55a5259 adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x033576b9 rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0f47728b rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x15623dd3 rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5db2283e rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x66308135 rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x79f83a7e rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x979a92aa rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb0d1ee39 rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb1e102db rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb26d4578 __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc83d1daa rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd2f07b4e rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf519bf79 rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x1f91cf4d cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xafa789b4 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xcfc6dbe6 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x4d4b9411 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x62f1031c cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xd21d4213 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xfd249e49 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x003b688e tsc200x_remove -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/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 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 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 -EXPORT_SYMBOL_GPL drivers/iommu/iova 0x1c277593 free_iova_fast -EXPORT_SYMBOL_GPL drivers/iommu/iova 0x2dfd9690 reserve_iova -EXPORT_SYMBOL_GPL drivers/iommu/iova 0x3df3928c __free_iova -EXPORT_SYMBOL_GPL drivers/iommu/iova 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL drivers/iommu/iova 0x6b8f8617 free_iova -EXPORT_SYMBOL_GPL drivers/iommu/iova 0x7497e72c init_iova_domain -EXPORT_SYMBOL_GPL drivers/iommu/iova 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL drivers/iommu/iova 0xcb8c4eb0 alloc_iova -EXPORT_SYMBOL_GPL drivers/iommu/iova 0xe2908238 find_iova -EXPORT_SYMBOL_GPL drivers/iommu/iova 0xfb845e71 alloc_iova_fast -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0aa7c7fd ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x176971b8 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1d6b9e80 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1fa0ca3d ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5ccc4cd4 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9b7751fb ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9eb05fd7 ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbf60a0f6 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xdf8139bc ipack_bus_register -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x31a800a5 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x46dd96cf devm_led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x63d67c58 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9c397679 led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa39007de led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb42aa34c led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe5bc2b9a devm_led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xfee90f5a led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x215ece86 led_mc_calc_color_components -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x2b988f86 devm_led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x6fe0563d led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xa7178921 devm_led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xc802e403 led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3573ffc8 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x45931d70 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5201816a lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5a61b59c lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x77e80ee1 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8fb5a057 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa080b9b3 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb9868aea lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcaf65b3f lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf24a35e9 lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 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 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 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 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 0x5a227cbf __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 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 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 0x803c2c0b __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80e3881d __SCK__tp_func_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x82fa505e __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ae53615 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8f8604ba __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92662b95 __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 -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 0xa187023e __SCK__tp_func_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy -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 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 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 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 -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 0xf7fba67a __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd6b5d80 __SCK__tp_func_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfda8097f __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x245cad6e dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x343f3647 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x344c6edc dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5ba4549d dm_cell_quiesce_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5be8031b dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x764d0627 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7daf2f4f dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x82df5961 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x85c169b7 dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x89294d20 dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa6ac93af dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa6b75b15 dm_cell_put_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa89811c4 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb9f82a9c dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdb83a7c0 dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe3a1ba93 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf12ddc60 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 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 0xe04b480e dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xed3283a4 dm_bufio_set_sector_offset -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xf241a6eb dm_bufio_forget_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x03bb93e0 dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5730f8ae dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5b3dc349 dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8f647e48 dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x90136207 dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc7355ebf dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xebd4d5b3 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x30d07158 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x54a1bf1e 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 0x032852e4 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5dbbfb58 dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x62f4ef88 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7e8837e6 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa14b619f dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd130ff3d dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -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 0x29c25d50 dm_bm_write_lock_zero -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 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 0x46af8087 dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x46eff63a dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -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 0x64976f82 dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6755b753 dm_block_manager_create -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 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 0x7bc7621f dm_btree_cursor_end -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7e29c59d dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x807c17a2 dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 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 0x8a56150c dm_tm_read_lock -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 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 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 0xa433adbc dm_bm_write_lock -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 0xcd28942d dm_tm_create_with_sm -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 0xe41c4f79 dm_tm_open_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 0xf3e25192 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf82dba90 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfce51d79 dm_array_empty -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x13ff5449 cec_unregister_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1a490a52 cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1bf2bfd9 cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1f23bf87 cec_s_conn_info -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4b6fedba cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x52e9ddfe cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x566ba8cb cec_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x58a4c8bd cec_transmit_msg -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7a9de98c cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7b1da822 cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8f8f252d cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x93fa52d5 cec_register_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9a351da0 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 0xa1518774 cec_transmit_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaf7d8b81 cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc849579e cec_s_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd278bf8a cec_s_log_addrs -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xdea1b88e cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe8984e64 cec_received_msg_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf957458b cec_notifier_conn_register -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x011675de saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x08ce9097 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x433c35b0 saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6bd9c5d8 saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x73c78bf1 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x759070ee saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7a188246 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa30b1fe1 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbc419d78 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfee83ad7 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x024120c5 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x06dfc793 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x09e02be4 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0a1b3d96 saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3afd6cdb saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xdb1299da saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xdf9c4a5c saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x06e6fee7 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x22f8c362 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x526ad9fa smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x605003ba smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x62a6e3cb smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x64dd17bd smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8cb44fab smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9b05531f sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9cd3331a smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9d13b748 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa51972ed smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa934176c sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xaa40f7e4 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xba03e8a9 sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbd69c3e6 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc070b8c7 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf1133972 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init -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 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 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 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 -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fc46ff3 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8d8f7cfd __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x91a6bc18 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x94dbfa0f vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xafaa7af3 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb6f4b031 __SCK__tp_func_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb85ad0a8 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb9d2df39 __SCK__tp_func_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbe1a1f6e 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 0xcb60caae vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd1ec0864 vb2_write -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 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 -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x5dd1ada2 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x735cec81 vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x4372e142 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x9fef7700 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0256438c _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0fc448e6 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1aa6a8e0 vb2_find_timestamp -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1d5e3866 vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x22956c12 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2cfed8a4 vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3b649fce vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4a875e15 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4adc985b vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4d148b34 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4f89a19a vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5814adf7 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5fdebaaf vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6d0456a5 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6d91f525 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x706ca510 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7c7e9d96 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8647943c vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x868783d5 vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x879e7f54 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9930ffc6 vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa15a3497 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa1fc6849 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbe4d885b vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcf0f3f4a vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd168079e vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd30e9046 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd8b47e90 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdb182c6b vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xde564e95 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe13d9154 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xed4529fd vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf105d091 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf2c550c4 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0xe14c2860 vb2_vmalloc_memops -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 -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1d5a64fd max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x294bdd95 max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5768dfe6 max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6cbe3bff max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x74ac2786 max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7c96b87b max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x814f8754 max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa50b9694 max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xafb1b1b1 max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc2dc1f81 max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe6e1cc2b max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf687c1b4 max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0432beb3 media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x07386860 media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0cc6a337 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0e6a80a2 media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1ded4f6b media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1e3196e2 media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x23b12be1 media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x252c7741 media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x26cd2df9 media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2ee547d3 media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2fa87ed1 media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x36ce2f52 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4261d5f9 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5141eee6 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x53756e43 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5b25fa9f media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x70b77b74 media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x74c2f0ab media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7f704d8c __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x84865520 __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x86223659 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x884fd070 media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8876f510 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9106304a media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x95ca4910 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa35322db media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa89bc941 media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaeea4d0e media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbcf5be41 __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbf3c82ba media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc00c3bae media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc3188a90 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd0ea2d55 media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd199f49a media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd27459f4 media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd3e9fdaa media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd6b183d0 media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd6ba41e2 media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd7538c34 __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd949174d __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe24faa18 media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xee35a3d7 __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf1a21d51 __media_remove_intf_link -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/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 0xdfd0d99b 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 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/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/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/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 -EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x3739df24 omap_vout_new_window -EXPORT_SYMBOL_GPL drivers/media/platform/omap/omap-vout 0x6e8a3074 omap_vout_new_crop -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x3d858696 rcar_fcp_put -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x3f14bc76 rcar_fcp_get_device -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x4ad5d888 rcar_fcp_enable -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x5fe6f6e8 rcar_fcp_disable -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x9877c29f rcar_fcp_get -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x29f803e9 vsp1_du_init -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x370932c3 vsp1_du_atomic_begin -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xa9be3551 vsp1_du_unmap_sg -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xb338d4f4 vsp1_du_atomic_flush -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xc746459d vsp1_du_atomic_update -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xd4590dba vsp1_du_setup_lif -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xf6617638 vsp1_du_map_sg -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7f03e442 xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x855de1de xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x99e1a0b3 xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa6ab2e64 xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xc374191e xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xcd332826 xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xdc687610 xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xc8071dba xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x02d7ab0f radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x549dd886 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x193273cf si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x228267d5 si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x4a5ca691 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xed1f4322 si470x_start -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xf37f79b6 si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x28af3c3f rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x33f45a92 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4e76f7e6 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x513efd5b rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5c2aab8c ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x659361e0 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7bc5c42b ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7d5d95cc rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7dd2bbe0 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9063398e rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x91dae173 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa6ba0798 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa93fd63a devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb9f772cb ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc5d16335 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcff54199 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd7206ddc lirc_scancode_event -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 -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xa2ae40b0 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xbff5de17 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x16a8ce8a tea5761_attach -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 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x271bea06 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x30ee2c28 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3fc90f8a cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x43256c99 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5417652f cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7af6a022 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7ca038d4 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8836e98a cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x88a64068 cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8b3a6ff2 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x993ca6cf cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9b0dce12 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa45d8b28 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xacb77233 cx231xx_demod_reset -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/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 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x42749de4 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5a7fadfc em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5b0f51f3 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5c1a7236 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6341eb62 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x735d466f em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x79bd4ac7 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7a7bb191 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8b267713 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xadc2dccd em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb39b403e em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc65d9a5b em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xccf6ac11 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xde0c9286 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdeb44b1f em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x171bb1ab tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x3bac47a2 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x5634d3e6 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x9fafcece tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x12b2ec22 v4l2_async_notifier_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x6ed4fcb4 __v4l2_async_notifier_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x823ef7f3 __v4l2_async_notifier_add_fwnode_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x9a6116f8 __v4l2_async_notifier_add_i2c_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xe61bb39e __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-flash-led-class 0x65c85068 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x892e459d v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xbca725cb v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x02d905b4 v4l2_async_notifier_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x139f1d23 v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x17fde770 v4l2_fwnode_connector_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x44582e97 v4l2_async_register_subdev_sensor -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x50d80899 v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5bc896de v4l2_fwnode_device_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x6b205c4d v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x87d6edfb v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd29cb722 v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xffd7ed20 v4l2_fwnode_endpoint_free -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 0x4c847e31 v4l2_jpeg_parse_huffman_tables -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0x5e92a994 v4l2_jpeg_parse_scan_header -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xa24bdf6d v4l2_jpeg_parse_header -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xd8c706cb v4l2_jpeg_parse_frame_header -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xdc58b7d5 v4l2_jpeg_parse_quantization_tables -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0084ea4b v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x09bfd9cb v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x13eb08af v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1645b629 v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x22d2cbde v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x23d436ac v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x28cb421e v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2d3d3819 v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x33863db6 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x35a8ce4e v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x387ab130 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3a44ef82 v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x426e5663 v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x44be88ff v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x524eaf16 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x60c7a7bb v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6d148e77 v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7b3813b6 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7bfe846f v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7c81339e v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7e63ba6f v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fcf2f4c v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x84fc0b5d v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8f4fe434 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x90a4c58e v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x90fd788c v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9255d1e5 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x92abd0a1 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9784992f v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9afc2be3 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaba15beb v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb156d89f v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb40d3b5b v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6642b0e v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd13a56f8 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd2073d0f v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd43b786e v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd6271c8b v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdb555654 v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe3477f10 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe4ff569c v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe9ab446b v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf1e364af v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf8fa343f v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x01d7d1a3 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x11bce83e __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x15f25d83 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1cab2dc5 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2b83a8ef videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4d1a5282 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6580d5c0 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6a79df53 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6bb936e3 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x727995bd videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7a4ca310 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x82089e86 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x90c797bd videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9af354e9 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9f73e4ec videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa6aee0d4 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xacd73968 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb0150424 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb7c0d1dc videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbc3b4a4d videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbda775f2 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe2b4c446 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeb804d3a videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf93f468f videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x01372c8a videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x652fbe99 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x91992bc5 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xb3c75416 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x55677df6 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x5a2d256a videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x8acd2ddf videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x04cee616 v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0586af05 __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x080d4b25 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0965b338 v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0b965bea v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0bb5fd3f v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x118cf794 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 0x12c99f23 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1e6deef5 v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x24fbdd59 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 0x2ed9acd3 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x379692f7 v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x37d256da v4l_enable_media_source -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 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 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6f5ed23a __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x784ddb80 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7926b1d0 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f4fc5fe v4l2_pipeline_pm_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8135262f v4l2_ctrl_request_hdl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x894a4c67 v4l2_create_fwnode_links_to_pad -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x90293fde v4l2_event_unsubscribe -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 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 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa3d66674 v4l2_get_link_freq -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa714ad99 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa74c50c0 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa7ed2245 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa9b30fd8 v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xacea91a8 __v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb7d97c56 v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbfe73d31 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc3e316fe v4l2_pipeline_link_notify -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xca9c9ec0 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xccc16d21 v4l_disable_media_source -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 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe894b42c v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xed7de5ac v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeeafe314 v4l2_device_register -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 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 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 -EXPORT_SYMBOL_GPL drivers/memory/ti-emif-sram 0x49a8a623 ti_emif_get_mem_type -EXPORT_SYMBOL_GPL drivers/memory/ti-emif-sram 0xbcf322c5 ti_emif_copy_pm_function_table -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x1901e6bd pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xc10afd0a pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xc4dda8b5 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0f57a766 arizona_clk32k_enable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3780df12 arizona_set_irq_wake -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3b3b315e wm5110_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x48b03ef8 arizona_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x514ff489 cs47l24_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5b1e978e arizona_clk32k_disable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7803f012 wm5110_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8550a42f wm5102_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8b27a4be arizona_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x94a272db wm8998_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa6b70564 wm8997_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa727bd3b cs47l24_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xaaf78759 wm5110_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb3d2a7ee wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb6bf4b6b arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbae14190 wm5110_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc6686563 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq -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/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 -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x86031e56 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb3e8e76f da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb7fa5081 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc682f73a da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xa142a524 gsc_read -EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xb7abd1c4 gsc_write -EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x128f92fe kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x48a5f233 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7ceadf1b kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xcab3b384 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf4292132 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf436e186 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf719331d kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf8a22058 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x2b0e90e5 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x4641bd26 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x535eb3da lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1ebe9306 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2bab0c5b lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x86e924f9 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe9ff13d9 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf19d8202 lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf63c8c50 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xfd117266 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x219220f8 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x247b0616 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x6ee9980d lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0a53129b cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0a5ecedb cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1775e5ae cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x177839ee cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x20f4fe53 cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x20f92213 cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x382189e3 cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x382c55a3 cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x49660f97 cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x496bd3d7 cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5440f8a2 cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x544d24e2 cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5809ac87 cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5a18aaf9 cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5fcd7fdd madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x63c1e35f cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x63cc3f1f cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7b1494ef cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7b1948af cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x83a5a55b cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x83a8791b cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x893b39fe cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8f71abd5 cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa89de0e2 madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbb363c1c cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc090b857 cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc09d6417 cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd04f2477 madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2d50fca7 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6ad28a88 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x82c818a2 mc13xxx_variant_mc34708 -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/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/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/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 -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x314b0cba ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x121c11b6 alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x5c5ff991 alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x63fb9feb alcor_read32 -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_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 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x86659d8a rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8679a582 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8bc5826d rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8d920e95 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa2f8cc14 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xab430d8e rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb2b4e76d rtsx_usb_switch_clock -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 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 -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x296a8983 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3115970d oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x4b711f77 oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x5909e701 oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x780d3f01 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x84eba96d oslec_free -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 0x132405f6 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x402000a8 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6e7a268d enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7d3dd224 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8a3dce6b enclosure_component_register -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/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/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 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/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/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 -EXPORT_SYMBOL_GPL drivers/most/most_core 0x621d23c6 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0x650d575f most_put_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x6a17626a most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x77fd80b6 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x7e3cd820 most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0x9fb2e194 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa92eb396 most_start_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0xb12419e6 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0xbdd296da most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0xbea2ba47 most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xbff08861 most_deregister_component -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x4ac02567 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x75e9008f cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x88f72519 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x142fd9ab cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x6a7d927b cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x99845dfd cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xfbbaf4fc cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x671ab467 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x900c889f cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xbd0f79b2 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xc9f05bdf hyperbus_register_device -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 0x87aceb52 brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x91ec4bb0 brcmnand_pm_ops -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 -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x38077576 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x002a7d4e ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0fc00614 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1039217e ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1eb599b7 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x22c3c4fb ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x393910f5 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3e117aac ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x478518bc ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6306356d ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x71706052 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7ad2ea78 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7b192873 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7be14318 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x993f223c ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x153beb6a mux_control_states -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1d04f0fe devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x3e64806e devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x4de49805 devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x513c2068 mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x51828f53 mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x71ec09cd mux_control_try_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb2072673 mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc17d059c mux_control_get -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 0x1a5e2f74 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xd8ced426 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/bareudp 0xa26bcba3 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/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 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 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/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 0x44645239 lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x00cc8bd2 ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0fbbd22f ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x22a6e0cd ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2f8a7d5c ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2ff1953f ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3d390b17 ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x58175d45 ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x77359b39 ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x858ca91e ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x92171502 ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x94e9f507 ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc48ce000 ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xec7c8e1e ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xed304d8a ksz_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x022eb31a rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x03d63ea9 rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1b0247bb rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3d8bad0f rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3dd5fd00 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x47036232 rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4e92f62e rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x71900c4c rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x773fad78 rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9c12953a rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb6b5744e rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbd0a3541 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc2dd46b4 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc47196e0 realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xde074df8 rtl8366_vlan_add -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/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 0xde08b9e6 i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xf95ff9c3 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x9bd22a2b ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc1a9cb94 ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc5e2e9d2 ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xf068bcda ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xf0fa300b ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x011fa7c0 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0160aa65 mlx4_get_slave_default_vlan -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 0x0450d4cf __mlx4_replace_mac -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 0x110bc53b mlx4_phys_to_slaves_pport -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 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 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 0x2865f15b mlx4_phys_to_slaves_pport_actv -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 0x35c303fe mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3db684a0 mlx4_INIT_PORT -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 0x45302a0a mlx4_set_vf_rate -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 0x53b3e25e mlx4_vf_set_enable_smi_admin -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 0x588c4dd5 mlx4_get_vf_stats -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 0x7044e823 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70900293 mlx4_free_cmd_mailbox -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 0x7529af9b mlx4_set_vf_spoofchk -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 0x9286d285 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92edb3da mlx4_get_vf_config -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 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 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 0xbd0b02e3 __mlx4_cmd -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 0xc83497fb mlx4_set_vf_mac -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 0xcfbca5c3 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd05dbdb5 mlx4_qp_modify -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 0xd3d69cf2 mlx4_slave_convert_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 0xdfd5c863 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0fecf6d mlx4_vf_get_enable_smi_admin -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 0xe8ccf505 mlx4_phys_to_slave_port -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 0xf2425254 mlx4_set_vf_link_state -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 0xf9340f83 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb0211e9 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x055c3721 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09162c2b mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b421087 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x118c835e mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13a54a76 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e497b36 mlx5_nic_vport_enable_roce -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 0x20701d90 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2187fd29 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2276b3b5 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c168b6c mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d9eef36 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x349dfd81 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ec174f9 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44009598 mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49b67d64 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b7c8c2b mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5296ce82 mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55111d5e mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x551f0f80 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x570ac8fe mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5787936e mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b625750 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d1a9887 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5eb522f0 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62dd80f9 mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cb56ab6 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6df311de mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x714f958c mlx5_set_port_pfc -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 0x74504875 mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75b5f83c mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x781c30f3 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80958d7b mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d4103e4 mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ecdf862 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x928358bd mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94a1ce61 mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96cd5636 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b85b5cb mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d9436de mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e14669d mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa408e000 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa636606e mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa5992b7 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab6746e5 mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaba35b65 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb127a390 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2369431 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb50e5089 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb64ddb53 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb67c3398 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7d09555 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba894e5a mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb45dd82 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbdb8c21d mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf0ca0b9 mlx5_set_port_tc_group -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 0xd019ef95 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2ba8aff mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc79695a mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd571e0a mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe07a9448 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0911391 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe762a472 mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed53de9a mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed63ae38 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf018ac96 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1e85c37 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3b887eb mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3c37aa7 mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf435dfa6 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5c4861c mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7cc7b5d mlx5_dm_sw_icm_dealloc -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/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 0x081716b7 __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1c4c621d __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ecf3ba3 ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x33526569 ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x70b42745 ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x74252d2d ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x95e6d4f3 ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb483f6a6 ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbace99f9 ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcf4fe313 __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd326705e ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf44a9048 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfb988e5f 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 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 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 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 0x61c95eff geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x0e9e7e9b ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x324a9a51 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x35b07a8e ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x76ea9a86 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xfa5b1dc5 ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/macsec 0x3e2b72cd macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x1c448a88 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x852d4f01 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc57fb235 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc60e6d3b macvlan_link_register -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/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 -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/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 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 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 0x6831eccf phylink_ethtool_ksettings_get -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 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 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 0x90fe498f 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 0x0ec00d74 vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x6dee6562 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xa65cdbc0 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xb39b11fd vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x285c70b4 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x862ed95e il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x864d6c97 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc8620637 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd67c25f9 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe3f67101 _il_grab_nic_access -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/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 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 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 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 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 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 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 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 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 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 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 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 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 0x4d407a03 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x71bf09e8 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x843f2212 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x850f6be1 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x90ff84e4 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc880b186 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd32128c5 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd9649be2 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe9b1de63 p54_parse_eeprom -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/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 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 0x35298c74 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7cac671f lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x82c7e3a4 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x98922bd0 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa7ca14f8 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xb21f1398 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xbacb4fd4 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 0xfdb82f6a lbtf_bcn_sent -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/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 0x00c26809 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x03942d2f mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x04064e19 mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x05d30531 mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0fe24fce mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1414d4c7 mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1550b85b mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x15774a5f mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x18c5d4df __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1b65a0dd mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x26d0ce77 mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2a52cbdc mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2b1a181d mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2fbc313c mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x31fc258e mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3960c16b mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3c2156e3 mt76_get_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3dabf4b0 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3f7fd853 mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41387653 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x431e8be2 mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x46527584 mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x48a2e56b mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4c611193 mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d27092c mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d5bb0c8 __tracepoint_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4ee78056 mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x504769db mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5100b5c9 mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5740abdd mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x58ce09f3 mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5de1c99d mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5de97a45 mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x684dd6c1 mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6b6ca4d1 mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6e362da6 mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x70a9b544 mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x71efccbe mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7268f316 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7302be74 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x75a63f43 mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x782ab186 mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x790f5dad mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7efbd38f __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7ff9c207 mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x811dafb2 mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x832bcc84 __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8b06b2d8 mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8da1ba7d mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8e9d7445 mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9059ca51 mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x909c4a7e mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x973eb7d5 mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x992e3586 mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a5471af mt76_sar_capa -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9ccde9f5 mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa3e19b98 __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa7671de0 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa869c2c4 mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb2b1bc28 mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbdaded08 __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbe361a02 mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc1ec8763 mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc4912803 mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc525ef04 mt76_has_tx_pending -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 0xc9377eea mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcb12d552 mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcbb58c60 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcc6a1f3d mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd9afa289 mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xda0e8ee3 mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdc0fa748 mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdf42fbca __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe1caebdb 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 0xe613d803 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xec665804 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xef522cc3 ____mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf0ea1d80 mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf1af113a mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf8773805 mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0e0c8968 mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0eee8c18 mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1025540d mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x145b9616 mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1f718b41 mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x212ca118 mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x21945dff mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2cf43476 mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2f7d605e mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x30de3844 mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x38056053 mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3d1fe376 mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3f374159 mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x412891c2 mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4460790c mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x48a8c049 mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4b43569a mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4e1403be mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5789972d mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x62bdda9f mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x68bf85f1 mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x74340ef8 mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7597bcb1 mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x791617cf mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7c3d346b mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7c93944a mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8746c2e8 mt76_connac_mcu_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 0x94e91f04 mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x986ba6bf mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xab7e7fc6 mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb049b331 mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb921a805 mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbb84607f mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbd6e089e mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc2407e74 mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcae0e898 mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcdb916e8 mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd00597f0 mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd250978f mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd2c84027 mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd89dd7ba mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdf2ce51d mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xeea875e7 mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x0311fe48 mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x68629344 mt76s_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xc7ea6ca0 mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x433e9700 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x457f1f2f mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x599032fb mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7cab2107 mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7d80a717 mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x829ecc77 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8868ce6f mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf650535a mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf85e6bdd mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x05b47df3 mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x08791bdf mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0a8dfbe7 mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x14a6fbbf mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1e35dc42 mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x231cbd35 mt7615_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2575379f mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3de671f1 mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x40d94681 mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x541c8067 mt7615_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x55a53906 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x59278b4d mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5c285911 mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5e15f07b mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x652054f6 mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x910385c7 mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x94f4728c mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x997c75f7 mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x997f8d3e mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9c50d218 mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xabdc5c58 mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb09e0c26 __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb1d76669 mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc2b6496a mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd05fd454 mt7615_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd128d942 mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf85fa5f2 mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf92727aa mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfb09dddf mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0xc2a2a338 mt7615_dma_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x02abf6d0 mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x105f7baf mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1506ffca mt7663_usb_sdio_reg_map -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x655b73e6 mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x7f9839b6 mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2e475850 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x69749951 mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x96872091 mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xa97a1501 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xa9a379b4 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xcb381e60 mt76x0_config -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 0x0b1ae450 mt76x02_get_rx_gain -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 0x1e28612a mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x249e45b7 mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2541da99 mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x293ec835 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2b82e49c mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x31d59215 mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x32ae56c5 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 0x3a9815e2 mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x408d8dcc mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x413f0bbb mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x42a13454 mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x494ac8c6 mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4cf1c90f mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4d2fb281 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4f5faee2 mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4f9c849f mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x519b9e3d mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x55e07ba1 mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5975dc0c mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5abff391 mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd1d71d mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5cbe2a0f mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x63ddce8b mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6f9ba730 mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x717653b5 mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x78c4b838 mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7bdbf807 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7c3b9606 mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7cee39d9 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7dadd8d4 mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7f092ba7 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x89252ac6 mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8ad809e6 mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8e643c41 mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8fcd5336 mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x90c07f34 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x918ab743 mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x926c8167 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9dbb0e70 mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9e14544a mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9e40c89c mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa58772a5 mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa58b9b4f mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa71d9559 mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xab477d18 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xac4e892d mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xae3f5385 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xafdd4dfd mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb61030c3 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb7f1d50e mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb88694b8 mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbe7acffe mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc98d27ea mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd762ed1d mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdb20e203 mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdd622663 mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdf5fe15e mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe6428eeb mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe8ee5282 mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe90d10b0 mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf56dc4eb mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf57c97b6 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf76952f6 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf8ccf631 mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfb0c99e5 mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x0636f11f mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x28532539 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7ec0fd3f mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x80a012ac mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x9764fef0 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc82d6808 mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc953bf4d mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xfac4b10d mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x04dd3855 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x23f69064 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x276dee07 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2f89bf27 mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4f260c12 mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x57224725 mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x58ce1704 mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6f4183a3 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x70f9e7d1 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x80937c4b mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x820eb22b mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8bbdf98c mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9ad9db4c mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb370dcd8 mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcc7cef2a mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd4875b18 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf6f93e43 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfbec6ee9 mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfdbcfe84 mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x20e6cecc chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x6170b838 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x82d18e87 host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa9299582 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xd8990260 chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xeb2a9d0a wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xf827a358 host_wakeup_notify -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/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 0x02eab76c rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x050c7a78 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0f4c1436 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x159d3c5b rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1f900f2a rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x436cff58 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x45f64d15 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x46c94bda rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x53bb1d2b rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x606eaf8f rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x60883d27 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6981e469 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x69ece3f3 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6c0a5fba rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x71673948 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7a1f283e rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7bd24887 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7e939a67 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x85047bb0 rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8a9171d8 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8e18d8bc rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8e838806 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9495e05c rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x960cea24 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x98c90fe1 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x996c5e2e rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9ec4a0fe rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9fb6db42 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa12c1aaf rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xadbe3f17 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbd271a84 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc0cff585 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xca332270 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcbf15b26 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcd1aa453 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcd46f2c9 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcf439a6c rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdbc4b4b5 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xddf6e932 rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe4c6c421 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe4fa104d rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xebd0c7cd rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf1d56d34 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfd14718d rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0f317d04 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x252b7073 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4c6f6732 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4f91bbf5 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 0x5a57e838 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7755ddc5 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x77b0bc24 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8140d469 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x83a7d16b rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9af3ec36 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb8bb6cbe rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xba9c2107 rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbb44a02b rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbc136fbd rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd279779c rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd57f8399 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0be2966f rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0c84d564 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x108ad4fc rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x14461ba8 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x16837bed rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x231daeb5 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x29edd152 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x35a2d794 rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x37de7a6d rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3d9c960f rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x46cbe960 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4ff96196 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5642ea93 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x56f577b1 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5b906ad0 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x61f9deb3 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x639c8e48 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x673ff7b8 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6cfaab19 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6dc51f52 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x715928e4 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x71c071d1 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x781c65a7 rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7855a6fb rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7a5d4266 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7adc2285 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x901b81aa rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x928033fe rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9b079843 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa29e34a8 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa30fdc60 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa32f0e7a rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa4409107 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xac1c34b1 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb0103d7d rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb3ee29ad rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb6626595 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb7dd43e5 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbf5f1f3a rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc2658615 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc59174b1 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcbc2c725 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xda420da6 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdbfe99e8 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe205a707 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe268c5dd rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xece5b86d rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x397e4a90 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xa1c404c8 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xae8dc138 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xcdae2ee1 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xe46a87bd rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xc73def94 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xc8f490bb rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xe673f4dd rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0ac30689 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0c8552ea rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1a35bd4c rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2fc78238 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x46cdf30d rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x58391170 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x635c43ef rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa9f49269 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xaf0b17aa rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbf14771f rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc66b1430 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xcfb9c26c rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd67658a0 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd698be39 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdfb23272 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf99cb20b rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1c5cacf9 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4eb7d6ef dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x67b74efa dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x85a5733f dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x163fea5c rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x16c4765a rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x18a062a0 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1f6569ad rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2816d9c7 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x33629fe4 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 0x42ddab74 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x60b7c474 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6a3e624d rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7583184d rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7bf7b81f rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x88249de6 rtl8723_phy_mac_setting_calibration -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 0xa03d914b rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa36535c1 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xacaa3dd4 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xad2ff687 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb368d49e rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc2247dff rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc22f3cd3 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc2750e63 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd4d524fc rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd5f0520b rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdc130f77 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf1249480 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf41c0f67 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x09835275 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0df44953 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x127f5530 rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19892f6e rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1f47581c rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x29b96918 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37b993b4 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x399068a3 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4346106e read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a14542a rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b4b90a7 rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6734227f rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6d090653 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x710312a9 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x78b5d2ea rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x82116d79 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8a7fabdd rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8e9c214b rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8eef0bb9 rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa919cd3b rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaf805aec rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc4fcb63e rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xce573533 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd061eaf1 rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd3724f44 rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd6a0beb8 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf90ccfb8 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x211c0b0b rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x619d4dce rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xa3e92503 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdf8002d5 rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf7c08376 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x5f021d9d cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x7d690040 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xc3ab3a32 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xfceaabec cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x17fb1910 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x337c3c5c wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x4fd3719b wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x04219f34 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x17eb48f9 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1a20d3d8 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1f8c823b wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x27e73f87 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2c64b161 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f61b12c wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3b8be5be wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x41304e14 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x43de5ecd wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x46dcab7d wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x54bb9182 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x57a3ff21 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x59f255d8 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x61274c44 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x65e476d0 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x691d88f9 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x69bc23b6 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6c59d070 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x70dda526 wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x73144640 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x735f6c5a wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7b9757b4 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x89b92393 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x90b18bd5 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x961761fd wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9cae6fa9 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9f71dad3 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa0f4e18f wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa3cf82fa wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb596dfe1 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc1db71fa wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc38bb707 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc6220c66 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcdc5bb3b wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd1d9e2a8 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdb8f87ab wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdba83045 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe7400f18 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe953d893 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe9fc8313 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeb0d925e wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf1abec8d wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfc8d023a wlcore_disable_interrupts_nosync -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 0xdecfd339 pn533_rx_frame_is_ack -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 -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x38f3cd3e st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x59b22c2b st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8ac2c107 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xaf1a04c5 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd53aff37 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x666c1e99 st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xef5d6c7e st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xfc09aa73 st95hf_spi_recv_response -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d1dabcb ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x4ca7c80b ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7f7534c9 ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x03bfd75c nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x12c67bc3 nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x13c39771 nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x148c245d nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1b09108a __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x304e37e3 nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x35d24b92 nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x46860188 nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4af14fd7 nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4f407d94 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5543469b nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5cb81fbb nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5f0b4695 nvme_host_path_error -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 0x65307c26 nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x65e8095c nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6e975b2c nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x76af9222 nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7c780c98 nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7e29f3b4 nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8ab19397 nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8fe34372 nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x998b0655 nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9d03a20d nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa48f9a8e nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa6eb670f nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaef942c5 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb0e35328 nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbb1707f0 nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbc2924eb __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc00693f5 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc0f5e2a3 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcf22431c nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd3da40a2 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd98f3c55 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdcafb566 __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe4df897c nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe5a025ea nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xef792fe7 nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf42d7639 nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf4d5f5ee nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfcbdefa1 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfd529f29 nvme_enable_ctrl -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 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1ca3a5b5 nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x22b278b7 nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3653644e nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9767b46c nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbd98379f nvmf_register_transport -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 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 0x1e6f07f5 nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq -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 -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xd3f4185d nvmet_fc_register_targetport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xddb93c97 nvmet_fc_rcv_fcp_abort -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xfee33ec7 nvmet_fc_rcv_fcp_req -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x17a58825 switchtec_class -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x181baaea tegra_xusb_padctl_usb3_set_lfps_detect -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x21955c22 tegra_phy_xusb_utmi_port_reset -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x48b37edb tegra_xusb_padctl_enable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x49e7597e tegra_xusb_padctl_set_vbus_override -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x65a1ab95 tegra_xusb_padctl_put -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7adb1b5e tegra_xusb_padctl_get -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x916cb99d tegra_xusb_padctl_disable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xa0a1bde2 tegra_xusb_padctl_get_usb3_companion -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb1602bbd tegra_xusb_padctl_hsic_set_idle -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc8178780 tegra_xusb_padctl_disable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc917bc3c tegra_xusb_padctl_remote_wake_detected -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf03d4e90 tegra_xusb_padctl_usb3_save_context -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf7b40caa tegra124_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xfe633356 tegra_xusb_padctl_enable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x02b48129 omap_control_phy_power -EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x3457907e omap_control_pcie_pcs -EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0xf08f4ff2 omap_control_usb_set_mode -EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 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 0x5a5d6c19 cros_ec_sensorhub_register_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xe0162cef 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 0x3bc08a5f devm_reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x7687087c reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x99a3fcd8 devm_reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xe6dcc7fc reboot_mode_unregister -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/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 -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x5bc7b754 ptp_qoriq_enable -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x62a9fd8b extts_clean_up -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x6ef71e0a ptp_qoriq_adjtime -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 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/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 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 -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x4c0db9ca scp_ipi_unlock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x7bc2b519 scp_ipi_unregister -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x97928788 scp_ipi_lock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xcaf0b196 scp_ipi_send -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xf2609e04 scp_ipi_register -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x2bc8c0e8 qcom_register_dump_segments -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x3a7992ff qcom_add_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x49f34d04 qcom_minidump -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x5554c921 qcom_remove_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x68c1e50b qcom_remove_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xa16b2f26 qcom_add_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xa38290cf qcom_remove_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xc6c7e6dc qcom_add_glink_subdev -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_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 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 0x062a37aa cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x09d00aac cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0cf6dcff cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x10f29d7d cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x17e8cbe8 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1c7093b0 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e0039b2 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1f909a4e cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2010844a cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x325edaf0 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x427560c3 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4323ef35 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x45cd8261 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ddf766e cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5b9580d6 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c0bb03d cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5ea9a4b8 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x64262518 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x653b7277 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x670e69b7 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7086578a cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x71f8f83b cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7845b72b cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7bed68ec cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8716372b cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x941fea8a cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9fc73be0 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xad1a3f20 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb23db417 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb3dbda99 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb91f8ed8 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc0694d98 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc36e05e8 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc45fa50e cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd13fbb61 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd8542c1c cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdcd92d3a cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdce093bd cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf0fdbe6 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe78de084 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe7c77bbd cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe8a0888a cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf1489167 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf483ec70 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf76db0d0 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x01b8c736 fcoe_get_paged_crc_eof -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 0x53726f39 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 0x6226b150 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x66378c66 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x74abd35a fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8bde3106 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x97cc37b1 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa4e60ed9 fcoe_check_wait_queue -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 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf3054044 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf369170a fcoe_clean_pending_queue -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 -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x8e337e42 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa0c21827 iscsi_boot_create_kset -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 0x05ee3ee1 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x099fe23b iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0a515f0c iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0bb72974 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e3eafe1 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0f6f193b iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0f94d6f8 iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1bc35610 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d7024d0 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x28e015d4 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x33dca66a iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x383d901a iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3b1fd0c4 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x50f42abf iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x538f7a74 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x57942b89 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x59eb3637 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5d3f04ae iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x62b5e485 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6fc7c96e iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x723bdd2c iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7274f6aa iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x78e44ceb iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a50e93c iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x854c2a05 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9555b4a6 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x95e42f0b iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x990016b5 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x99d2721a iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa00c9741 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb4e2319e iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbdacbfcb iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbeeeca55 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc835c6b2 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc993f560 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcba09036 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xccfec635 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd124412f iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd5f31898 iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd6ffc5a2 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe3bd7e02 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe61aff73 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb6772a5 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeef662dd iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf891aad3 iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf9719991 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfa443948 iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfd7b6398 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0f484eb2 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1544345c iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2935bbe8 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x42dee994 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4816b85b iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x581d0428 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x62216345 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x66b4eb49 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6707de0a iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xaedc7db4 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb6ab3ef3 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd99a679a iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe2644abb iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe7ed2c9d iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe84219d9 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf4f2b547 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfbcc7eab iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x03581e43 dev_attr_phy_event_threshold -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 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 0x0caf22fb iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x16f54ac9 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x26a6e864 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a8527a3 __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2c0a2019 __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2e57981f iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x338f0d3f __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x34d16322 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x417cbd54 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4926ce5d iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4bdc72bf iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4dd12649 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x51e0d1c0 __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x526688bc iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54d50d2a iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x55679d89 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 0x5d7615b0 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6488132a iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x649fdf9e iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6de5abae iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7068312d iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x757c7c66 __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ced5abd __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x81c4a651 iscsi_session_event -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 0x886b02d7 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8e545b35 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x90b01870 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x923f7161 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa0338668 iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa1c0a2a8 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa235821e iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa62f980d iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa70c4d22 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa74b7f08 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb780c858 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbda4d39f iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc2160cac iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc27cd09b iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc2fbbf40 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc7a10797 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcbc483f1 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcd7fcfeb __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd0278f17 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd6dabb80 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd78e784b iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe15c260d iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe81d4644 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe91054ea iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xecbc3d74 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf03ed650 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf963b0e2 iscsi_alloc_session -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 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 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/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 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 0xfabbdbff ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -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 -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x16b35e63 slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x180e7ada slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2196d95a slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x23136044 slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x39992e3c slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x42c1ae38 slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4cd65211 slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x59c74987 slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x59df5a81 slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5bce1eff slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6861cf0d slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7653f37e slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x84fcb67c slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8cfaa481 slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xad6186a3 slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb2171077 slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb531e343 slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc81d6313 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd4c71911 slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdaa87414 slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe9e5554c of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xeec5359e slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf7db435c __slim_driver_register -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x494128eb meson_canvas_alloc -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x673c5a86 meson_canvas_config -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xc8a2f251 meson_canvas_get -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x2c6d3054 __apr_driver_register -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x38b00e2c apr_send_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x58949fbd apr_driver_unregister -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xfe72e4e0 aprbus -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x06285798 llcc_slice_deactivate -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x09afc16e llcc_slice_activate -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x14f99b76 llcc_get_slice_id -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x2027e82d llcc_slice_getd -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x62ff6e92 llcc_slice_putd -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xdffee709 llcc_get_slice_size -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x42f47788 qcom_mdt_read_metadata -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x45e1cd7c qcom_mdt_get_size -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x8ef78eb1 qcom_mdt_load_no_init -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xa632c3b2 qcom_mdt_load -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x12e78b12 __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x2542a3e7 sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x9fb86808 sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x6f8cd74a altera_spi_init_master -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x2fa00d87 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x5fa425ec spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x89ceb9e6 spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe5ca6bec spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe6c78f8a spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xefe70ff5 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x39f341d9 dw_spi_dma_setup_mfld -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x3cd1a9a6 dw_spi_update_config -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x5ceddec5 dw_spi_check_status -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x66aa2720 dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x89d2acbd dw_spi_dma_setup_generic -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa72df0b1 dw_spi_set_cs -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xaa227164 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xe12cc508 dw_spi_resume_host -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 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 -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x2064d22e anybuss_set_power -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3d065ec7 anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4332b4f0 anybuss_send_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4c340841 anybuss_client_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x9c59542b anybuss_send_ext -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x9f01ae33 devm_anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xa3e0f8f6 anybuss_read_fbctrl -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc3bb382e anybuss_write_input -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc40b62f4 anybuss_client_driver_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xd3ddd816 anybuss_finish_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfa786bac anybuss_recv_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x191c44a7 fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x7162be4e fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x94b8bc04 fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xb77fb4f1 fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x0f53e352 gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x211b443b gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2cc2c7ae gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x50250bd3 gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5a1ddec5 gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x70aba8e4 gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x956757f2 gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9ca38335 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xbf014e0f gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc0caec7f gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xea7c9a5e gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf8adf214 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf95988bf gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x25bf71ab gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3f7dd212 gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x487ee588 gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x4a332930 gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x4b465fbb gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6e1ea470 gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7182648a gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7d5d2a6c gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xaa0d7457 gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc7bd10f7 gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xde73ca0c gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf2ef2f90 gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf5e65311 gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x34e1eda0 gb_audio_manager_put_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaebe87ae gb_audio_manager_get_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x00f79a2a gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xa9ee4d90 gb_gbphy_deregister_driver -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 -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x24ea1888 imx_media_get_pad_fwnode -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 0x3dde0aba imx_media_dev_init -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x423478bb imx_media_capture_device_remove -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x480e5073 imx_media_capture_device_register -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 0x5a906669 imx_media_dev_notifier_register -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x5e0a16ff imx_media_pipeline_video_device -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6558e19a imx_media_capture_device_error -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6561e640 imx_media_capture_device_init -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6ee62875 imx_media_pipeline_subdev -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7e5aeee7 imx_media_free_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x893b982b imx_media_probe_complete -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x92eb3407 imx_media_of_add_csi -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 0xb1aa36eb imx_media_ipu_image_to_mbus_fmt -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xb1fec39d imx_media_add_video_device -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 0xbd06cc5f imx_media_capture_device_next_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xbdb2b3cb imx_media_find_subdev_by_devname -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 0xd2ced51f imx_media_alloc_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd4e45b7e imx_media_try_colorimetry -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd844c558 imx_media_pipeline_set_stream -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe2342f7b imx_media_mbus_fmt_to_ipu_image -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe932b00b imx_media_enum_pixel_formats -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xee413f13 imx_media_pipeline_pad -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xeed14f73 imx_media_init_cfg -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xfa22bd94 imx_media_pipeline_csi2_channel -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x05a0b455 amvdec_abort -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x115655e9 amvdec_am21c_body_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x161770ff amvdec_write_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x176b06f8 codec_hevc_setup_decode_head -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x246d7fe8 amvdec_dst_buf_done -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3a177586 codec_hevc_free_mmu_headers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x44a31590 amvdec_clear_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x533d8cad amvdec_dst_buf_done_idx -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x577c54bc amvdec_read_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5ff35ee8 amvdec_am21c_head_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x671d0f2d codec_hevc_free_fbc_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x81c37aed amvdec_src_change -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x8ab65362 amvdec_set_par_from_dar -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x97cb9536 amvdec_write_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x9b92fcac amvdec_remove_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc6e6b90e amvdec_write_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc8c0282c amvdec_add_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xcb2f2e4d amvdec_dst_buf_done_offset -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xccd364d6 amvdec_read_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe0acd3a9 amvdec_set_canvases -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe4a2fe48 codec_hevc_setup_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf0dc3409 amvdec_get_output_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf6bbab1e codec_hevc_fill_mmu_map -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 0x049c2a32 target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x44d32e97 target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x9c1804d7 target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xd67dd164 target_init_cmd -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 -EXPORT_SYMBOL_GPL drivers/tee/tee 0x198bf775 tee_shm_pool_mgr_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x1e2d4965 tee_shm_va2pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x2898e604 tee_client_open_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x33c32e22 teedev_open -EXPORT_SYMBOL_GPL drivers/tee/tee 0x34e5e679 tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x508d1a8a tee_shm_pool_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x51040eba tee_shm_pool_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0x518cc1c6 teedev_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x71bb9337 tee_shm_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x72b5d401 tee_device_unregister -EXPORT_SYMBOL_GPL drivers/tee/tee 0x76b74eb4 tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x78124953 tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7b31393c tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7db7ffbe tee_device_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid -EXPORT_SYMBOL_GPL drivers/tee/tee 0x8c282174 tee_bus_type -EXPORT_SYMBOL_GPL drivers/tee/tee 0x9e2bed38 tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa9a160de tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb1ae14af tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd02559a8 tee_client_invoke_func -EXPORT_SYMBOL_GPL drivers/tee/tee 0xdb98b192 tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/tee/tee 0xe9df34ca tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf11b1d81 tee_shm_alloc_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf56f50ef tee_shm_pa2va -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf8c54b60 tee_shm_register -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x043fddb3 tb_unregister_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0a6c9c7f tb_xdomain_release_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0ef52740 tb_xdomain_request -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1a78d0d2 tb_xdomain_lane_bonding_disable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x213ff1c2 tb_xdomain_disable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x21a31526 tb_unregister_protocol_handler -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x23ced65e tb_xdomain_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x29f204de tb_xdomain_alloc_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x34ab0e49 tb_ring_poll_complete -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3540f369 tb_xdomain_enable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x36521060 tb_register_protocol_handler -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4acaea33 tb_ring_alloc_tx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x52138cd0 tb_xdomain_release_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6ceee74b tb_property_remove -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x78cbcbcd tb_ring_poll -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x828619c0 tb_xdomain_find_by_route -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x86166e8c tb_property_get_next -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x95c72cd9 tb_ring_free -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa22e4896 tb_xdomain_response -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xae7ebffc tb_ring_alloc_rx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbc7688f4 tb_ring_start -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbe516b87 tb_xdomain_find_by_uuid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc64da6ae tb_property_find -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xcd913c6b tb_service_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd237e6d2 tb_register_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe2697cd4 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xea2c1852 tb_ring_stop -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xed62c340 __tb_ring_enqueue -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xedaf50f0 tb_xdomain_alloc_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf12d4061 tb_xdomain_lane_bonding_enable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir -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/cdns3/cdns-usb-common 0x0e07be77 cdns_drd_gadget_off -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 0xbcf48732 cdns_set_active -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xd6a3df58 cdns_init -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/cdns3/cdns-usb-common 0xecb26f9f cdns_resume -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/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 -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xa1a1ce74 imx_usbmisc_hsic_set_clk -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd31bd833 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xf384ce5f imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xff6644e3 imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1def6970 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6aba707f ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9bf72f8a __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9e754ad2 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc66c2389 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf47572b5 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x18c67381 u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1da6f1d9 u_audio_get_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2a93ee05 g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x41d852fd u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4454f4d6 u_audio_set_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x45392263 g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5e9fa885 u_audio_start_playback -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 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_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 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x77dbf841 gserial_get_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xa18ee0bd gserial_set_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc5020c29 gserial_suspend -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xf53717eb gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfe9468f2 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x12772b85 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x594ac614 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x8fe6e1cb ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x14c43dd7 fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x38e314cd fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x550bdce5 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x57e9c6a5 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6604c5f4 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x702e233d fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7bc6a995 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fda3d24 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x89f87539 fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8d9ef9a6 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x91c23a5b fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x94e08b92 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab6c68ac fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb1753490 fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xbbce1d5a fsg_store_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc03412c9 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xce3f291d fsg_store_nofua -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/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 -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0f4968b6 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1482249b usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x19154464 config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1c358cbe usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x30809ac9 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3a2ff3b6 usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3f3063ab usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x42d3e9e6 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4f3cae10 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5220a280 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5e3ca273 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x63adb6c3 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x722a45fe usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x74cb8cf4 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8a42afba usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8e195a92 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x90344eae usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x910e55f7 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x914d5fba usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa7683c8b usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa8c72be7 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaa24e071 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbe140562 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc62b6a6b usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc765cd5f config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc7932e29 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd3e77b98 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xea631c13 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xebf43afa usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf0227c52 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf955c68e usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x19ebb642 udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x2e35c2ab empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x31537193 gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x452ad81e free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x467f97de udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x78db83ed udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x93df7723 init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd4f4d16d udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf5e90bbe udc_enable_dev_setup_interrupts -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/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 -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x5825ffbb tegra_ehci_phy_restore_start -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x8e76b006 tegra_usb_phy_postresume -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xef7ab788 tegra_ehci_phy_restore_end -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xab7198c0 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0d230745 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1cb2d846 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x29b6eebc usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3c22fd99 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4340e208 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5992a16e usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x71ecf104 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x73f4a6c3 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7b19f2f0 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x822aa980 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9835d696 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x98582179 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9e37e0ce usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb8a92e4d usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd00122e6 usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd666de3b usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xddfa9f2d usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf35e81c6 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf9a75168 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfecae051 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xb0f47cd5 dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xceba16cd dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xb2b89b1c tcpci_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc37b9769 tcpm_cc_change -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xcdf23848 tcpm_register_port -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 0x0181493a typec_cable_set_identity -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 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 -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0d516a9a typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x11aa8116 typec_cable_is_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1346f153 typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x15cfb7ea typec_altmode_get_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x194bfb34 typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1dbd9311 typec_partner_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1f3bebb5 typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2a742717 typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x38b5fcdb typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3d0bf15b typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3f5add61 typec_partner_set_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x46da55e9 typec_get_negotiated_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x510bd63f typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x521aaec6 typec_switch_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x56766a74 typec_partner_set_pd_revision -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x593ed092 typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5aea00ff typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5e675ef0 typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5f5acea9 typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5fb824ff typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x67c6248c typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x69b8e548 __typec_altmode_register_driver -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 -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8f246983 typec_mux_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x91d8b4e7 typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x93808874 typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x97de457c typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa5afc441 fwnode_typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaa795326 typec_cable_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xac4f6afd typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb0f83531 typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb2fc093c typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb575ce27 typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb5810955 typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb6b78928 typec_cable_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc855a41d typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd0f30c31 typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd11720bb typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd25ab414 typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd36b0684 typec_mux_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd73bf86d typec_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe145758a typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe1b466e8 typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe4adc8ad typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xed08a40b typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf6c0961e typec_port_register_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc2bc1f9 typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x1e1889a9 ucsi_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x263e3b57 ucsi_destroy -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x56d98a06 ucsi_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7786465c ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x84b8a031 ucsi_resume -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 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 0xb3e7ed45 usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/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_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 -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0945c77e vfio_pci_register_dev_region -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0fc94219 vfio_pci_core_mmap -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x17ed8e7c vfio_pci_core_sriov_configure -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2b2a1bcb vfio_pci_core_read -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3d39752a vfio_pci_core_init_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x49fcc71f vfio_pci_core_write -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6a4d883b vfio_pci_core_unregister_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7a7a723b vfio_pci_core_register_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7d2f24a9 vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7f385708 vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8e9e85ab vfio_pci_core_close_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x935f774e vfio_pci_core_uninit_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x96f78c99 vfio_pci_core_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc57d925d vfio_pci_core_match -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd8faabfc vfio_pci_core_request -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe9632422 vfio_pci_core_enable -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x50afb744 __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x55b4c009 vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xdf1751b5 vfio_platform_remove_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xf1fcea7c vfio_platform_probe_common -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x09e43cdd vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x362d14a2 vfio_uninit_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x44b83e00 vfio_info_cap_add -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5b35c4f9 vfio_group_set_kvm -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60ce67b8 vfio_unregister_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x69030e9f vfio_init_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6bed7da9 vfio_register_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x788e7b53 vfio_iommu_group_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x89b9083b vfio_group_iommu_domain -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9e69729e vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc11a058a vfio_iommu_group_get -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 0xcaa8ee34 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xccfded47 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xcf7f675c vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd88c29cd vfio_group_get_external_user_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe2359bcf vfio_assign_device_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfa9c8a8e vfio_external_group_match_file -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x7816ca11 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x9c44de9e vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x01fe2be8 vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x100d4105 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1529cd8a vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1c7205a8 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1ed18aac vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2aafa6ac vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3a9c9026 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x488303a0 vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4c93d75e vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4fe6bfe6 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x50a061d3 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x50dcc86f vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x523d92f9 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x523eefaa vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x564c2b73 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x57d5c1dc vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x63cee1cb vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x641efcfc vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x72479a09 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x743ca82a vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8513a163 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8dbacfc8 vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9a29b5b0 vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9e2e1c14 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa3ede0af vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xab772bd1 vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xab89561d vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xac358364 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xac5b0f30 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb5aa7de5 vhost_clear_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xccd58f7a vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xced50e5c vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd610be58 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdabf5d16 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe7185056 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe765805e vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xed885368 vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xee72ab89 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf360159d vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfaa8baae vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd9c0fe0 vhost_work_dev_flush -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 0x1661e4a4 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2a1ff790 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x3edcbc6f ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x96021c0c ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb3d9231b ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xbaca92cc ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc26d8798 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xc6e8d87d fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x6d1aa726 fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xf80b47c0 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x0c3e8912 omapdss_of_get_first_endpoint -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2baadaf4 omapdss_of_get_next_endpoint -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x8962ab46 omapdss_of_find_source_for_first_ep -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbdebf127 omapdss_of_get_next_port -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x3241faa2 sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x7100e5ed sis_malloc_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x03cb348f w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x147cdb6e w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x16ac051f w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x34e522ff w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x5cbfbb3c w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x63ad5b9b w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x69a80740 w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0x8496f075 w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0x96387f2e w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9909a7e1 w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0xd60ee48e w1_write_block -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb37b0f1c dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xbcf07cd8 dlm_posix_lock -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 0x10259390 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3fe8fdb7 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x47983200 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x492436a5 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7beead9b nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8345fb10 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd397d579 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0111c85b nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01279460 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03f3216f nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0469ccfc nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0615051a nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c8f05a3 __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d789b21 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1084093f nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x140c26bf nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x175ce57f nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bcf03c9 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x225e7b37 nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x230aaf6c nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23524954 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24caad2f nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28511755 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a73a1d4 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b318581 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2bc184ff register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cb995bd __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e29dec3 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31e7914f __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x327a1c0f nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x357dd0f2 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x384f57a3 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38776ba5 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x391a9c8a nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3926e592 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a6285a6 nfs_path -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 0x426bebff nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44fade0c nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45ea53ff nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x472fdea5 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x480930ac nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x481fd22e nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4822a315 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x496baa26 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a3808f3 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a6f5dce nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4abc3f04 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c144487 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cdc54fb nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4dcbe63c nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e9d6e42 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ee3a458 __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f5a3c7f nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50aa775c nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50b07a5e nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52f552ac nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54fb4de0 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x555e1904 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d9ca7fa nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5db3eecb nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f81f97a nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63231c06 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6325a8cd nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6710f1be nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b42dabe nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d7d6e68 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d930d1b nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6dd63203 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ff7f164 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7134f2e9 nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74c407cc nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75d7a86a nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77757a75 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7903bad4 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a168b33 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a7b9ecf nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b4f7536 nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ffc12a5 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x807dc3c6 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8088e87b nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80e3f295 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82594493 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x842aa210 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84dc9d64 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x872998d4 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x884a27be nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8859847d nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a061b0e nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c2aa731 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90604d11 nfs_probe_fsinfo -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 0x921d16b1 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92556c3b alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93c618c5 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94f1b44d nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9507979d nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97c4a381 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b238d51 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d091503 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e59ac16 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa19051d0 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1ceddb1 nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa50de72d nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa50fe1a2 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7025a38 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad3486fc nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadd2eb63 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb37b7df1 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4c69949 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb639a8df nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6d1d608 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb73b937e nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb87c7bd1 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba89f210 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0ba6a3f nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc188a257 nfs_post_op_update_inode_force_wcc -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 0xc5a0ff13 nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9ceb236 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc00c40e nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcea74cd6 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf6a500b nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcfdc4000 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd05d2d31 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd10e1e2e nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1320c3b nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd15d3da8 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6d89fcd nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9263db6 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd06fcac nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd67851b nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf56a2e7 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe160cb94 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1df7a38 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec2b0a1e nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec31bc69 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeda20af6 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef9d769d nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1afcc6f __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6a45d2f nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6e1ecd0 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf983d6c9 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9e5a852 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd51af61 __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe919544 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfebbb470 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff1e3081 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xf6d79d50 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04e6d843 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04f3d947 __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x05207dc8 pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07b8ea88 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07d0480d nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0eb96543 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ef4545c __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0fcfb208 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13c7b038 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16a8f514 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x17661dca pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1788a3c9 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ffd47f pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x286ed794 __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x28f1333b __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2bef915d pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e79bf5b __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x312e54a1 nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3194efa3 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35471d2c nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x368b3143 __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x372776b6 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37c58e07 __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x384f4bef nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b5335c0 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3fd8e9d0 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x432d4882 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x448cbaea pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4543e9b0 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45f3a30b pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b153a15 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d816e9d pnfs_report_layoutstat -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 0x5aa16b41 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ca3ae2b __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5d666ea9 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x630dcd9f pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6406e90c pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x65ac7b4a __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6debf2ca nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f824c1d pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75894d86 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75af36cd nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x760700f1 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76a402bb pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76ab1775 __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d979567 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e16f07d nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e92360f nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80e9d17b __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81f795b7 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8591bcdb __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87136563 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d3aad34 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x903ad4e2 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x90d0d0c8 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x913dbeba __tracepoint_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x919c183b __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91ff237c nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x931d7f55 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94c8b519 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x950b1c9b __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99667a56 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99d32eeb nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a075c47 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa84affd7 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb68f2dc0 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb75fc85c pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbccca0a2 pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc155006b nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc29ae563 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8807ccf pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcad0fc82 pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb7ed01e __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb9e3b20 nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcec313c9 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf911017 pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0f0f63d pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3ff7c96 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5143b42 __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd592a49b nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd7373b2e __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe040788f __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe06f3119 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe085b913 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe64b7e8d pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9d121ed nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb4275e8 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4080fd7 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf504689a __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5ddc52c pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7d01b5a nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfda41fa7 pnfs_layoutcommit_inode -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/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 0xa2233f34 nfsd4_ssc_init_umount_work -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0534415e o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 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 0x364f639b o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 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 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 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 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 -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x87360268 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9ac8aceb ocfs2_kset -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock -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 0xd4eacd5e ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe04f6e46 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x061d7af6 unregister_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xb2e37afc register_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xb9f46def unregister_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xe389d6ba register_pstore_zone -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xabd9af6d cifs_arc4_crypt -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xc4c73891 cifs_arc4_setkey -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0x798f3830 cifs_md4_init -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xceecd9e4 cifs_md4_final -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xdef1096d cifs_md4_update -EXPORT_SYMBOL_GPL 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 0x955ee96c 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 0x19f4f5af notifier_err_inject_dir -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 0x0ad3c270 lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x38ecdc0e lowpan_header_decompress -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 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 0x01e77e1e br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x072e23f6 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0e9ad9cb br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x29f2564d br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2d274698 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x312702a4 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x37b2e372 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0x397058ef br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6bb0afb9 br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x720d2054 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x73392b9c br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7c14b155 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x823fc740 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9f415fd2 br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb6294736 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc52a55d4 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xcc3e5cb3 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe9bdb30e br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xecc0b7bc br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf1f85159 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xfc0278b0 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0xff953fb0 br_multicast_has_querier_anywhere -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 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x247c6785 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x30d1da83 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x324e14b7 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x352f40ea dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0x357f4781 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x36e0235f dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3963bcdc dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4bfdef4a dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ca1330e dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4d67f5d1 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5013e0a9 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x577ce851 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5c0fd6d1 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5dbb732a dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5dc2f979 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x62898801 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x667d22f2 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x859ff226 dccp_sendmsg -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 0x8cbe1797 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa0f51365 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa73f34af dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0xaf007d45 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0xba5e3937 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc125c3f1 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd9b4b6a1 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe02f65a4 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe268b816 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe72d388b dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xefbfe5a8 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf1194c91 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf55ef99b dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf6e0a176 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfde03ec8 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1174a50d dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x349cffd7 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x56162af5 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xacd05b82 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc66f3337 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf941e582 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x01f80274 dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1173a269 dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2a45462e dsa_tag_8021q_bridge_tx_fwd_offload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2dd8cb28 dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x32473cc7 dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4093418f dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x46fd71d0 dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x46fe907a dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x48718728 dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x63eb12cb dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x67a750e0 dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x67dff2ae dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6cd14e2a dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x72b10d77 dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x77629378 dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7b9cdd46 dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9bde8b6f dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9d9635ae dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa2b7ffd8 dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa30a4acb dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaedf7b83 dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb5f62099 dsa_port_phylink_mac_change -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 0xc418eda2 dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc4f796c6 dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc54a20b8 dsa_tag_8021q_bridge_tx_fwd_unoffload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc8e66126 dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc909794d dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xccba55bc dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe63c403a dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe7203e63 dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe98ee800 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xee6ed426 dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf493ddfa dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf50974e0 dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan -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/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 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 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x51aa2d78 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x70326b38 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xe8fbac3d esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/gre 0x473f04b4 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x982f3866 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x005435c0 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x04460368 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x16b282b6 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x56ec11e6 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x891a806d inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x892b57da inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc37a613c inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc702c9d7 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd095ccc5 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xdd811abf gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x03312b3e ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x18e886b8 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3034c744 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x35bed3e5 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x37aadc7a __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4798357e ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x577ba97a ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5c3b0f3a ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6084f2fa ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x78b5af1b ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x808295da ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa069a751 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaeb5c380 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb4a3e693 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb6aec4df ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcde544c6 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe9a28197 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xe46a3fbf arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x36b0b4ba ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x047432a0 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xe9cdfba2 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x2834c7ea nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x11eca278 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x58afa951 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x65f8dfb0 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x98d533d0 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9fcac0a3 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa479ff8e nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf7c00f4d nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xff732c0d nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xb00f73d1 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xc52a8182 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xe2b9509f nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x40674f7c nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x623d7343 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0a7dde0f tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x399754ec tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa25a7401 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe0c25eee tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xff2ae0d6 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x04871a18 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x13a484b9 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1bb95258 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3d836677 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x40fcf334 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5d97cd8d udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb9b82f08 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc2d0742e udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x6385d9ae esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x81001fd6 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xeb436878 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x8d11315e ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xafc9e66d ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfe91843b ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xa07cfd20 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xd34ab5c2 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x0a84785f ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xa2fcf2f1 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xa5b513c3 nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xe46b970a nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x8a38438c nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0ef110de nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x142d4670 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4c8b7636 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x54bcffe8 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x81e1c7ca nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8dd8d46f nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd552a7bc nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x78148d64 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x23a28637 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x483317f1 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x67051244 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xbbc3c145 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xfb846803 nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x01f506e7 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x19ab9e29 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2a0e782d l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x33e82d38 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x49be0410 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x60ef8d5a l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6ba5cf2a l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x74752ff4 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7636a49e l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x78680ae1 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8186250f l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x90c3b8cc l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9349d072 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9defdb55 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb4af2f83 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbae51b29 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbbdf563b l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd181a31f l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdaccc79d l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf1a2b534 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf57d1b17 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x1ad7bae1 l2tp_ioctl -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x606267b7 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x09aa4ba7 ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x177db173 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x34d56006 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x52a92789 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x55fa56b3 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5656f5c4 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7149fcc3 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7577f030 ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7c012234 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7dda8cb4 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x80d58bc5 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8adf1d36 ieeee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa082c944 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1247034 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4b2b77e ieee80211_key_replay -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa8285099 ieee80211_color_change_finish -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb7b21c11 ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbc20b047 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd7d00ffd ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xeb625706 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xef259c40 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf49b8843 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0399687e mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x20d0661d nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x36d674b1 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3822f83b mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3b92f165 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1345333c ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x17a76008 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2685a317 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5df656ed ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6bf7e679 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6ddf79df ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x703c82c9 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 0x79501097 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 0x883004ba ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x894d1452 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9b4a2d34 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9dcd6714 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 0xa05b723f ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb62d6a24 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe228b22a ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe38c10ed ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe8ee6a17 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf999ed57 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfbb043a7 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x6ef682f3 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xca7b97d5 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd5ba8efd ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf40a4fd3 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x1994c7b7 nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x1e2f070f nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x268a4802 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x4b602ddf nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9a1ee5bd nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xb1e932b7 nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xbe03a217 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0510ad36 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09ec077b nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a585746 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b93f4aa nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c152142 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c33a494 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0cf39538 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10a2be6b nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x129ef230 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12e8dd91 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13b07eb0 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13cce549 nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17659c0b nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1836ff0a nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b77e304 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x241f5ecd __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28656035 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ab5286a nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d595a76 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3088728f nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32761d8a nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3577b6ce nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37c06a83 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x39223070 nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x394b251f nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3bdd258e nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x42814872 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44c126eb nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46cd3734 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x473e385d nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4bb6e571 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ea258d2 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x513e94ab nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x51fd6742 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53e012b9 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x541d2898 nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x567881cb nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56ea8ec8 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5988c228 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5bda196e nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x631b903b nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64e3b4ab nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x678e2dd6 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f77f5d2 nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x733bd944 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7743b5de nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x791cd863 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x807f9030 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83202f12 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83b9a8de nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x875d335b nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89385529 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a2d3ea9 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c6e11f4 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8da29bb7 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8dca1b17 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95869345 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e3b47b4 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9fe21417 nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3bf6f5a nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4461916 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa53f0287 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7f1a4b1 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac9f2f4b nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2a24d75 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba589dbb nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbbbf53da nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc35d8b6 nf_ct_set_auto_assign_helper_warned -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 0xc5e36b11 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc71733b1 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc5e17fb nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce35972c nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd7cd899b nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdbfd6bfc nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc07975d nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1534492 nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2f2a451 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5d8ade1 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf245dcfc nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf313720e nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf53a307a nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5a10872 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa3fcc8a nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc3847e9 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xd81ce67f nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x408840b6 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xac30763e nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x174120ca set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3663358d set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4f183bf1 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6de8d1e0 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9b9c4152 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa7883d22 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb81609a3 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xde272e13 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe0c35af6 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xeb538bfe nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x3f58866c nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x11c154e4 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1a104171 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x535078e9 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xde3edcf4 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x10aaa19c ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x356f3446 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x39032721 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x867f03cf ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x89dccdc6 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa1f377da ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd18fe0a3 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xd9bc5e99 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xad4818c5 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 0x1c06b267 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x21c0f93b nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x26bed383 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x372cdab8 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3756b05b flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3b6755f4 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6aba411a nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x70033ed2 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa1782b1f nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa93e25c1 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa9ed0200 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbf013137 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd7dea057 flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe7b77909 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xed8bb150 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf53b0027 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf8b1f86b flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0aa60f0c nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0cc7e3fc nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0cce9c98 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x46acafda nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4a7ba978 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x52ff04db nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x67073751 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fba6097 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x80ae7765 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x87bdf36b nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa9ccd999 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb0131df4 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb5830327 nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbc1b55df nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdebb9346 nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfac6fb0f nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0302f0b5 nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1131599a synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x155822bf synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x22e6d377 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5c8371e3 nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x698eed22 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x75687808 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9073e339 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa6d1c509 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb2ffebc3 ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcff2626f nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x00fcb68c nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1bb53367 nft_meta_set_init -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 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x337d8cf4 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3999ba86 nft_meta_get_eval -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 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 0x7176f174 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x846e6f4d 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 0x9cf640e4 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9d094cf9 nft_meta_set_validate -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 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 0xb0ff32f3 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb5a7d67c nft_meta_set_destroy -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 0xd4e3da05 nft_meta_get_dump -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 0xde57b5f5 nft_parse_u32_check -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf40ac7b3 nft_parse_register_store -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 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 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_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xc4c85d77 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x08f00853 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x1a6f24d9 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -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/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x27c4e433 nft_reject_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x2d71023f nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x3c2e854e nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x12f27b42 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x23251d9d xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2f153ce1 xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x37159c08 xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3b41e646 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x61562219 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 0x899c82a0 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x991b4514 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xba1a9f3c xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc48e66df xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd167cd74 xt_proto_fini -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 0xe6d172ba xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xedfc72c6 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf22e7192 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfa3b5377 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfc90ea77 xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfd466248 xt_match_to_user -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/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 0x43292b3a ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x432bb94f ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa561d732 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb4e82ae7 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc63d101c ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xdb2b5103 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/psample/psample 0x2bbc048c psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0xe3d314dc psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0xf2a9cd21 psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0xf8daf3a6 psample_group_get -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x207e45aa qrtr_endpoint_post -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x26825200 qrtr_endpoint_register -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 0x038ae555 rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x0a5785af rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x0b46042e rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x2abe3b12 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x438e493f rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x4c2f8d98 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x4e6d6d19 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 0x589cd4c4 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x59825a5d rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x5b07bab2 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0x5e2628b9 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x6ac23eae rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x70320645 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x73bfbc67 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x82cd33ea rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x985cf2ba rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x9dba061b rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x9e7ad8f9 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xb223bbfb rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xb8b08d4b rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0xba502aa2 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xc1fcc72f rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc43afaee rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xca222854 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0xcabe6880 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0xda2a640b rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xe1e17204 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0xe36bca12 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0xf4c257e8 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xfb21a76f rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xfe95fabb rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x3daadc6c pie_drop_early -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x82df3a7e 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 0x28927e30 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0x9e85b580 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0xc356603b sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xcf7e7f2a sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/smc/smc 0x0ea4591a smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x2e6ad4b2 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x33bf4231 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x3e93ac0c smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0x4a01bf82 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0x530042be smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x684d0923 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0xa35f388f smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xd58353ad smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xf6089921 smc_proto6 -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x1daa015f gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x367f9423 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 0x3f68a55d svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf69f57a3 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x011e57dd _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02144b3c rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02555df1 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04d3b111 xdr_buf_from_iov -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 0x0676e2c2 xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b84fea0 rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b914f6d sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c0889c4 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c28008b rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cf84720 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0dfda26b xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12fc4ede rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1316f5ac xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x140ac421 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x146550cb rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1807e7d1 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18621ccb svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19f1dc73 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cc5d4b0 xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ce976ac rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e3fe3d2 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ebd1af5 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f10dea7 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ff960c4 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x205f79d2 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21dd331a put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22123290 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x247b6f83 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24bf4ee1 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25841d4c sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26aa0761 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x274ab512 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2787bbb5 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27c19f12 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2aa1c2b3 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ec8b48e rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f813f1f rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fe601b0 rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x303ba1ee rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3047acd4 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x319b7859 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x326506fd rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34765f29 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x351d303f rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35a83b67 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x365af008 svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36bbd0ab xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x382f94c8 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a1ab305 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ab84bf5 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b0f11c6 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b3ff9c5 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d6131fb cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d88310d xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fa0a012 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x419ed4d0 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x429dc0cf xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43db0fa4 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44efec70 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45754841 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x470cea06 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afd5d54 svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ba38c0b xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bb15567 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e3a482c xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e659339 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e71f674 svc_authenticate -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 0x52620a17 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54a8bb26 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55b8ad0f svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x562cdfc8 xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x562fc569 xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58191185 xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x595edd34 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a56bc73 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fc9cd22 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ff5175c svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x600bdb09 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64afa335 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65305e71 svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x661d25c1 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6790a340 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6801cb9d rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68dcfa0c rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6987db54 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ab8e5c9 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6db22fbe xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6eddd41d svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f8b6739 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7088fe3b xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70f71583 xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x716a8c70 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x748160de xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x749d2b0a svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75fe0298 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76fc5937 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7757a103 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7882739e svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7919c7bb svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79a860fe rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c2e8345 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cfb165c rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d825e2a svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e5830fa svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7edcb973 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80d872ba xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81c1daa9 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8379def7 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x850c1472 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x854e6c4c rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8759a1dd rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88023a8f rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8812dd67 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c64c571 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dbabbcb rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e7f00b5 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fade0aa rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fc8a661 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9224516d rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9299f102 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92c0fce2 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94c5a91d rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97121b76 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97144b2d rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97a8d0ff xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9928b8cd xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x995b920a xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x997b7d1d cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ba18b0f rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ba389c6 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d29a9aa rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f3c249e xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ff3a831 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa10414ac auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa45d62e9 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7100671 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8d6b9d8 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8daf85d xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9766686 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa31a25b svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa5cb55d cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa6b0732 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa988f8e rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaacbeceb rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaafd1eba xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab7a0197 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabef2914 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad625695 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae708f5f xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae8d0186 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb198fd37 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb274e7ea svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2873e3c svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3f343ca svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4188a09 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4f582d3 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5d963d1 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb832b116 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9d0ae8c xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb407314 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbef9d88 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc74a67b gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc942cce rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbddd2baf svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbefc2fa8 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf847a09 xdr_align_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc04e86a8 svc_create_xprt -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 0xc24de883 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3d9c41a cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5076c5d xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5800e3f cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc748e1c2 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7cbcfe1 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc960d712 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9dd48e0 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcae802b9 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb146b42 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc143e66 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce782a75 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf865b2d svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf8b9aed rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfa57e33 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfb5be3d xdr_expand_hole -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfcf2dc8 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd022917e rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0c90541 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd135ef7b rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1d5fb83 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1ee65da rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd32ed198 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd35dc04e rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4742c80 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4b48c5c rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5054af7 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6450b63 rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6d0571b xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8c761dd svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdac32eb5 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdacf62ce xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbf4d326 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbfe8533 sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcbc78f2 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd7277f4 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde3c8b6e xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde8e86cb xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf2fff86 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf8065f3 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0852468 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1921f82 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2af1333 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3119827 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4d00e16 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe50439d3 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8093943 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8becc1e rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe91a090a sunrpc_cache_register_pipefs -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 0xe9f79867 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea52f92e svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec199baf svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec203a0d rpc_machine_cred -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 0xef6d902e svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef9375c2 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf03d7d25 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4ec48b5 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5ae0813 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5ffbec0 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8eb05fa rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9411f81 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa142f6c rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb095538 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbd4d912 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc02327c svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe8e301d xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff5f5617 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffab8b49 svc_destroy -EXPORT_SYMBOL_GPL net/tls/tls 0x898c4ea2 tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x97ec6782 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x9c8117ce tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0xeeb921e7 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x01854d98 virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03029b8b virtio_transport_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 0x0996db6a virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x122b4baf virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1364f1a7 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1400a940 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1edc73ce virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x28c3ed97 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x29fdaf17 virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x34bbd0bc virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x39bac9a6 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3db88a61 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x45cadc2f virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5a30af1a virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x61e92ee7 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x68fe24e5 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x70e34fb3 virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x831f90e0 virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x853a23c0 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x917bfe73 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x92d04d50 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x98cd300f virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9ed0e962 virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa282baa5 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa6ee33b7 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaad17adb 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 0xc4487845 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc80f0555 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcc6da932 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdb47f19f virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe1301e5e virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe750cad9 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf1fcb406 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf3e55699 virtio_transport_notify_send_pre_block -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/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 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x384e34bd vsock_remove_sock -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 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 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 0xaf2674b5 vsock_addr_equals_addr -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 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/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 0x031ef4c3 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2fc54397 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8a3ddf43 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc160cc15 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min -EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xe2521b1c xfrma_policy -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe50413d7 snd_seq_client_ioctl_lock -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 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 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 0x684c6873 amdtp_am824_add_pcm_hw_constraints -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 0xf7e49e48 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfa3ef6b7 amdtp_am824_set_pcm_position -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 -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x07000a6c snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x083c884e snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f33f842 snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11a1389b snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x15ecb8ea snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17c2d706 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x18c83d4b _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1b0a4132 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x23b63a16 snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27e31b49 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2b8acb97 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2d9f8939 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e9a43c1 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f709cd1 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x32ed063f snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33101fd4 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x377669c1 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c28a697 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c3dbd55 snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x45c447dd snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46bf4f89 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x47747426 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49008d5e snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4cd809bc snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4d79212e hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4d79b7a2 snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53801360 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5900b8d3 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e46fbbf snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f1d89a0 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6542acd3 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x66d29bb7 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6897da32 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7231262b snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x773f2158 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x796c759f snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7aa80eac snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7de7f9e0 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e55f8f8 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7eaa2c9d snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7eeaefd8 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x819f61c0 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x86bc13d2 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8af73741 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ca061d9 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8da60ee6 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f4af269 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8fb9cbea snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x920c091a snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x958735e8 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9708550c snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x993670ad snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9967aa1b snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9ca4baea snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f95bb92 snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa18b01f3 snd_hdac_stop_streams -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9069ef7 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac3a30fb snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae00326f snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae9e75eb snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xafdfabfb snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb3746e5 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb655943 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc39994a snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd34123b snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc00c0e38 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc06b9acd snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc54acd66 snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc64471e7 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6a20a83 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce03c484 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4048aa9 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdde94f04 snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe26dabf1 snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe3ecfc3a snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe41a323f snd_hdac_stop_streams_and_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe894548a snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8ed9915 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf3e20000 snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf662647e snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf679c0c6 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa0c2e93 snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe861335 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x210bded5 snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x35109b88 snd_intel_acpi_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x17b7f82d snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1c02ff23 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x2acf5aff snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x656b89b5 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7f3eab58 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe68ef7ce snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x000fa9bb snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x003ce25f snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01555870 snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x016e7d09 snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x018282bd snd_hda_jack_detect_state_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x028c9160 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0377a061 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04e50afa snd_hda_jack_tbl_get_mst -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 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 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 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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29ffe716 snd_hda_mixer_amp_volume_put -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 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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f55a37a snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x414cfb0a snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44549fc4 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x448bda25 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4715c003 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x487aedb6 snd_hda_set_vmaster_tlv -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 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 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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ac780c4 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b7d18ca snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ed94d03 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x704ba728 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70a3a6f8 snd_hda_codec_parse_pcms -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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89634f9a snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a13fa96 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8cfec7e2 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8fdfb27c snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90f96a43 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x939d2bb9 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97ac2405 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9abf5498 __snd_hda_codec_cleanup_stream -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 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 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 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 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 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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda0d1567 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdab1460b snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xddaed121 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1a32373 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3e0643a snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe616f62e snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe877cfc7 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9cd14e5 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 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 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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb2a3084 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfcc9c6ad snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfdcb442b snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1f49b26f snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x221e3581 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2a584131 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3db57935 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4a96c287 snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x51351ee2 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x72d6e944 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x744441cd snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x77946f8e snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7cf418b7 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8e324676 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9a86e4fb snd_hda_gen_add_micmute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa0bb4267 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc1a102fb snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd5699700 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd657b8c5 snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe1aa78d8 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe61dbe34 snd_hda_gen_line_automute -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/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 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 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 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 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 0x69102a20 arizona_sample_rate_text -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 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 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 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 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 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-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-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 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x742768d7 cs35l41_regmap_spi -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7be00bd8 cs35l41_set_channels -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x81440041 cs35l41_register_errata_patch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xc2726e08 cs35l41_regmap_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf15f3e14 cs35l41_otp_unpack -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x2f5a05bf cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x85ccc831 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x4d2443e5 cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x638ab658 cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x6fe83fb4 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x7354f58c cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xba25d066 cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x28040de7 cs42xx8_regmap_config -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 0xd1796c36 da7219_aad_probe -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-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 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-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 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x2e62a2fe pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x88a76fb1 pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x8715d698 pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xf4a5b97e pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x1c92ec0c pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xaa7bf562 pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xac35bd44 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xf314e0e0 pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x79ccf133 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x85051cfe pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xa59c5ead pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xeb8906d4 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 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-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 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 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 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-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-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 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 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 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 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 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 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 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-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 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 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 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/generic/snd-soc-simple-card-utils 0x0fe06a5f asoc_simple_parse_convert -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 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 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 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/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-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/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 -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xdeab2558 q6adm_matrix_map -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x06de2c3e q6afe_set_lpass_clock -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x07a54780 q6afe_cdc_dma_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x498d993b q6afe_get_port_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5332304f q6afe_slim_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7df60063 q6afe_port_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xae809786 q6afe_hdmi_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd4523c59 q6afe_i2s_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe45246a8 q6afe_port_start -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xf7e55b6e q6afe_port_get_from_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xfaf22370 q6afe_tdm_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x13b7efd9 q6asm_cmd -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x1b6c77fc q6asm_stream_media_format_block_alac -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x25bfa476 q6asm_open_write -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x2b693eed q6asm_stream_media_format_block_wma_v9 -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4afe6f73 q6asm_read -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4fba2f0c q6asm_run_nowait -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x56418ca6 q6asm_map_memory_regions -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x68db31e2 q6asm_unmap_memory_regions -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x6cec4b17 q6asm_stream_remove_trailing_silence -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x856b4fdb q6asm_stream_media_format_block_wma_v10 -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x9d0cf85f q6asm_stream_media_format_block_flac -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xa7d3a3a6 q6asm_media_format_block_multi_ch_pcm -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xb37ed108 q6asm_enc_cfg_blk_pcm_format_support -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc0dd8d67 q6asm_open_read -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc1347db0 q6asm_write_async -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc5a116a4 q6asm_get_session_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xcb458a80 q6asm_audio_client_alloc -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xcbee5e42 q6asm_stream_remove_initial_silence -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xcc4952e4 q6asm_audio_client_free -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd2cf1a0f q6asm_run -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd38aa312 q6asm_cmd_nowait -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xf47f4b35 q6asm_stream_media_format_block_ape -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x7e52e977 q6core_is_adsp_ready -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x9b02ea0d q6core_get_svc_api_info -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6dsp-common 0x17142e58 q6dsp_map_channels -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0x5b75f756 q6routing_stream_open -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0xa7a64259 q6routing_stream_close -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 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/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/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-tegra20-das 0x0d54c9b9 tegra20_das_connect_dap_to_dac -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xb52cfca4 tegra20_das_connect_dac_to_dap -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xbced7431 tegra20_das_connect_dap_to_dap -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x386bbc30 tegra30_ahub_allocate_tx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x55a40206 tegra30_ahub_disable_rx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x5d7237ff tegra30_ahub_set_cif -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x6060e6f9 tegra30_ahub_allocate_rx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x6fe20143 tegra30_ahub_set_rx_cif_source -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb419329b tegra30_ahub_disable_tx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb4a9367d tegra30_ahub_enable_tx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xb81bca9d tegra30_ahub_free_rx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xc78c7125 tegra30_ahub_free_tx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xccb67e55 tegra124_ahub_set_cif -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xccc98372 tegra30_ahub_enable_rx_fifo -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xe549513a tegra30_ahub_unset_rx_cif_source -EXPORT_SYMBOL_GPL sound/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-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/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 -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2ea39bf4 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x56397765 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x63f1e800 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x65c5927a line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6a8e1de4 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7f3d2111 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8b86cca2 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa3ce2ec3 line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xac7ebac1 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xaccdd853 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc3b01ca4 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc517c25c line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xda0e34db line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe54b025d line6_read_serial_number -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0x00093b64 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x00159999 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x001a197c dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x002301d4 netdev_walk_all_upper_dev_rcu -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 0x0031f271 serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0x0039c7d2 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x0040395a irq_chip_ack_parent -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 0x0091c530 icc_link_destroy -EXPORT_SYMBOL_GPL vmlinux 0x00a6cfbb unregister_pernet_subsys -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 0x00e27216 sched_trace_rq_nr_running -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 0x01154353 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0x011d9d35 devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x012faea9 crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0x013227b5 pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0x0135bc6c snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale -EXPORT_SYMBOL_GPL vmlinux 0x015a9b39 pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0x016bbb72 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x0175348c pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x0175d98b tcp_unregister_congestion_control -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 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 0x01c9b034 ip6_local_out -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 0x01f70b09 rio_request_inb_dbell -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 -EXPORT_SYMBOL_GPL vmlinux 0x020bb5e8 snd_soc_rtdcom_lookup -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 0x023971b0 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0x0253ba8f skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x0259406d spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0x025a134c security_path_truncate -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 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 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 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 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 0x03209233 strp_stop -EXPORT_SYMBOL_GPL vmlinux 0x03218e88 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x0327f903 cgrp_dfl_root -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 0x035e5439 tcpv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x036d8e9b klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x037d822f __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x037f3a1f usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x038defc0 regmap_test_bits -EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x0397abf3 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x0397d95f snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL vmlinux 0x03b2623e __tracepoint_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x03bb5057 mtd_unlock -EXPORT_SYMBOL_GPL vmlinux 0x03bf9dc0 xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0x03d4e3d7 em_pd_get -EXPORT_SYMBOL_GPL vmlinux 0x03db1355 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x03e28260 sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x0407fe60 dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x041dd463 of_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x041fe152 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get -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 0x0451ddf8 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x045883d0 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x04596c44 __traceiter_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x045d5027 init_uts_ns -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 0x04a3fa5e thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x04ae4635 trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x04afe6d9 skb_copy_ubufs -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 0x04cf9147 kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x04d340f5 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x04d73802 crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x04dcce4e remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps -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 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 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 0x05883efb __traceiter_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x0598baf1 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x05a12e98 __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x05aa2db0 regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0x05b3e2bd devlink_sb_unregister -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 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 0x06102e5b device_store_bool -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 0x062b62a0 devm_spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x0638a0ee pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0x063f9818 tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0x064b86f9 kick_process -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 0x06619d6a of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x069a0b7a usb_phy_generic_register -EXPORT_SYMBOL_GPL vmlinux 0x06b1bb54 bpf_trace_run5 -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 0x0710e4c6 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x0714cd84 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0x0720cf69 udp_destruct_common -EXPORT_SYMBOL_GPL vmlinux 0x0721a5ea devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x0725e4f2 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x0725fd8d synth_event_trace -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 0x075266a3 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x075d6beb msg_zerocopy_alloc -EXPORT_SYMBOL_GPL vmlinux 0x07613c35 of_property_read_variable_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy -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 0x07c6f33b devm_irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x07e32ff9 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x07f214ef serial8250_rx_dma_flush -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 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 0x08364627 __netpoll_free -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 0x0869de38 tcp_reno_cong_avoid -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 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 0x08e090cc __netif_set_xps_queue -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 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 0x09452b24 _proc_mkdir -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 0x096f2bf8 crypto_register_algs -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 0x098532b4 sdhci_cqe_enable -EXPORT_SYMBOL_GPL vmlinux 0x09a13d16 usb_ep_enable -EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09da4f7d __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x09daa9b0 snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL vmlinux 0x09e53260 __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps -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 -EXPORT_SYMBOL_GPL vmlinux 0x0a36ecaa of_reserved_mem_lookup -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 0x0a58382e sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x0a667480 pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0x0a73d29a __traceiter_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x0a762d75 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x0a83d958 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x0a8eadc8 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x0ab853d0 devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0aba1faa pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0x0ad2a963 devlink_reload_enable -EXPORT_SYMBOL_GPL vmlinux 0x0ad85f0a xhci_update_hub_device -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 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 0x0b38d548 __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x0b4a8834 musb_writeb -EXPORT_SYMBOL_GPL vmlinux 0x0b63d691 device_phy_find_device -EXPORT_SYMBOL_GPL vmlinux 0x0b71d45d fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x0b78e6ed snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL vmlinux 0x0b7c42bd metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x0b946881 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL vmlinux 0x0b989fa8 mtd_erase -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 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 0x0bf32478 __SCK__tp_func_pelt_rt_tp -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 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 0x0c3c7f82 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x0c3ca632 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x0c4023ef of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0x0c4b0a6e iommu_uapi_sva_unbind_gpasid -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 0x0c82f6ad pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0c94716c ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x0ca4e0dc ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x0cab361f gpiochip_irqchip_add_domain -EXPORT_SYMBOL_GPL vmlinux 0x0cb89ede regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x0cdc1c96 cros_ec_check_features -EXPORT_SYMBOL_GPL vmlinux 0x0cdd03f5 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x0ce093f0 sched_setattr_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x0cf63a24 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x0cff29b5 shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0x0d05ab20 fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0x0d12e252 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x0d16c8c7 icc_node_create -EXPORT_SYMBOL_GPL vmlinux 0x0d1f4484 sched_trace_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0x0d1f8b07 blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x0d2c1e07 devm_clk_hw_register_fixed_factor -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 0x0d6c085d platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x0d81b111 __regmap_init_i2c -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 0x0db19707 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x0db3d2ed mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x0dbe2d58 nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0x0dcb3ee8 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x0dd4437d pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0dd7e75a rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0dffccef bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0e01caa6 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x0e1343b6 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x0e17663b tracing_cond_snapshot_data -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 0x0e5b4975 __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model -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 0x0ece0a18 __xas_next -EXPORT_SYMBOL_GPL vmlinux 0x0eeb5417 __kprobe_event_gen_cmd_start -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 0x0f452a47 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x0f4ebebb balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x0f6a3f32 ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x0f7a57f5 dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f9f5a4b iommu_uapi_cache_invalidate -EXPORT_SYMBOL_GPL vmlinux 0x0faed100 spi_res_release -EXPORT_SYMBOL_GPL vmlinux 0x0fb44049 tty_kopen_shared -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 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 0x103b352a __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x1043cac3 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0x106ad9e1 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x10766cba blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0x108491d2 bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0x1090b8d6 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x1094c738 lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0x1097f78c sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL vmlinux 0x109c8a51 mmc_sanitize -EXPORT_SYMBOL_GPL vmlinux 0x109fd145 devm_of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x10b462db sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0x10bab9d0 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0x10cad10d wm8350_gpio_config -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 0x11091291 nand_extract_bits -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 0x116a55f1 __clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x116d7eca adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x11767d62 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x11871eb2 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x1194ca22 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11bbfb9d raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x11be329c sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x11bea56e __trace_array_puts -EXPORT_SYMBOL_GPL vmlinux 0x11c1d2f8 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x11c24c05 pci_epc_set_bar -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 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 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x12731b9e device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x12794740 crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0x1279a5c9 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -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 0x12c1e89d trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0x12cdeb15 dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x12cf219f irq_chip_disable_parent -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 -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131c5f0b hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x13201870 snd_compress_new -EXPORT_SYMBOL_GPL vmlinux 0x1331aabf ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x1338a9f6 crypto_unregister_skciphers -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 0x1352e0b4 crypto_grab_skcipher -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 0x1368747e crypto_stats_skcipher_encrypt -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 0x138c30b9 usb_phy_set_charger_state -EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x13b82340 snd_soc_dapm_init -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 0x13e81fb2 bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0x13e98d40 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x13ea40b6 devlink_port_param_driverinit_value_get -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 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 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x145a8f27 firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x146622c1 vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0x1466db74 i2c_new_client_device -EXPORT_SYMBOL_GPL vmlinux 0x147ecead devlink_dpipe_match_put -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 0x14d0665f crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x14f7d6f7 rtnl_link_unregister -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 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x15498e4f simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x154b1ce6 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x154b5df2 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x154cfc01 udp_tunnel_nic_ops -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 0x155eaab5 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x156503c3 edac_mc_alloc -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 0x15ad200b efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks -EXPORT_SYMBOL_GPL vmlinux 0x15b06044 __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x15c46a25 misc_cg_try_charge -EXPORT_SYMBOL_GPL vmlinux 0x15cd5b53 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x15d3a844 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x15ec3d94 stmpe811_adc_common_init -EXPORT_SYMBOL_GPL vmlinux 0x15eca580 percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x15ffa3bb akcipher_register_instance -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 0x1631c499 spi_take_timestamp_pre -EXPORT_SYMBOL_GPL vmlinux 0x1638aa25 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x164e0aff iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0x1654ce38 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x1664730e ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x1664ce58 blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0x1675dff1 devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x16782785 crypto_alg_extsize -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 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 0x16b90dbb mtd_add_partition -EXPORT_SYMBOL_GPL vmlinux 0x16c9ad09 dw_pcie_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x16cc526e dev_fetch_sw_netstats -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 0x171f9e16 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put -EXPORT_SYMBOL_GPL vmlinux 0x177278cc __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x178011c6 cgroup_get_from_id -EXPORT_SYMBOL_GPL vmlinux 0x17879bd1 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x17998f85 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x179e13ef dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x17a1bc13 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x17a51264 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x17b3026f usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x17e86e13 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x17f1d284 perf_pmu_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 0x1834b0da thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x18402713 sock_diag_save_cookie -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 0x187b97d9 devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x187ff735 genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x18962c2f crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x18b961a8 device_link_del -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 0x18e8c440 arch_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x18f25084 of_icc_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x190a7209 mpi_write_to_sgl -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 0x19623499 perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0x1967ea6c __traceiter_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x19770213 bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0x19805d3a snd_soc_dai_compr_pointer -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 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 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 0x19e51769 dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc -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 0x1a0242bb ip6_datagram_release_cb -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 0x1a1d1d9a crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x1a266232 __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x1a267fa8 bch_init -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 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 0x1a9624c9 regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x1a9638a8 stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0x1a9db1e0 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x1ac90940 spi_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1af7d4e3 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x1afd1663 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x1b099cf8 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x1b0acd12 nand_get_large_page_hamming_ooblayout -EXPORT_SYMBOL_GPL vmlinux 0x1b1b5ff2 bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x1b2647c8 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x1b46c9ab wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x1b7078f9 pinmux_generic_get_function_name -EXPORT_SYMBOL_GPL vmlinux 0x1b87e9b2 bpf_prog_sub -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 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1ba02c44 scsi_autopm_put_device -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 -EXPORT_SYMBOL_GPL vmlinux 0x1bb2966a pci_sriov_set_totalvfs -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 0x1be287ad __fl6_sock_lookup -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 0x1c02d10a perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0x1c0a8dec sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x1c1e8732 pci_find_vsec_capability -EXPORT_SYMBOL_GPL vmlinux 0x1c36d859 pinctrl_pm_select_idle_state -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 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 -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 0x1c96ea6a ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x1cb6f859 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1cdf4efb copy_from_kernel_nofault -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 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 0x1d53fc6d skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x1d5a4798 fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x1d61e7e1 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable -EXPORT_SYMBOL_GPL vmlinux 0x1d7225c6 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -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 0x1dc17bf9 rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0x1dc22f19 cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0x1dc3215c tps65217_reg_read -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 0x1e187b3f skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x1e2b9062 thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1e2c48bd skb_to_sgvec_nomark -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 0x1e4f232c mtk_pinconf_bias_disable_set -EXPORT_SYMBOL_GPL vmlinux 0x1e547f9a snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL vmlinux 0x1e558cd9 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x1e55a570 snd_soc_lookup_component -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 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 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 -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 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 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f46b28c vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x1f47c6dc spi_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x1f54b3ee inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -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 0x1f862bed rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x1f9e0248 devlink_alloc_ns -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 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 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1fe7e8af __audit_inode_child -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 0x2037dd56 fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x20524418 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x2058804f __raw_v6_lookup -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 0x2086890a nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x20899dc8 irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0x20930ebd mtd_point -EXPORT_SYMBOL_GPL vmlinux 0x209d15dc mtd_ooblayout_find_eccregion -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 0x20d6caf3 wbc_detach_inode -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 0x2117f33c debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0x213a1377 tps65217_clear_bits -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 0x216bf5b5 xfrm_audit_policy_add -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 0x21760e03 serial8250_em485_stop_tx -EXPORT_SYMBOL_GPL vmlinux 0x2181b0a1 usb_bus_idr_lock -EXPORT_SYMBOL_GPL vmlinux 0x218ba82d pci_pasid_features -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 0x21a4b6dd efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21c98531 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21e7470e devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x21ed75c1 of_get_named_gpio_flags -EXPORT_SYMBOL_GPL vmlinux 0x2201090f fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available -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 0x222a9404 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x2232d27e edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0x223e215c rhashtable_walk_peek -EXPORT_SYMBOL_GPL vmlinux 0x22553d09 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x2269a0e5 vfs_getxattr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x22715c23 devlink_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0x2276b527 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x2291fa05 stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends -EXPORT_SYMBOL_GPL vmlinux 0x22dff180 uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x23187b78 devlink_unregister -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 -EXPORT_SYMBOL_GPL vmlinux 0x233c8ed8 __traceiter_fdb_delete -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 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 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 0x23a6b81a snd_pcm_stream_lock -EXPORT_SYMBOL_GPL vmlinux 0x23b877d8 xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x23c0a74e fwnode_handle_get -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 0x23d293f1 devlink_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0x23d76154 ata_bmdma_post_internal_cmd -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 0x2408b288 devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0x2408ef1f dev_pm_opp_of_add_table_noclk -EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const -EXPORT_SYMBOL_GPL vmlinux 0x242867fc thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0x242935be sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x242db9b8 dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0x24301ffd amba_ahb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0x24312a1c debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x243a4c05 skcipher_walk_aead_decrypt -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 0x24813fdc fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0x2490c955 __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24b7528f usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x24bde056 crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24e74c71 rockchip_clk_register_branches -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 0x2512e8d3 inet_unhash -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 0x25569938 dapm_clock_event -EXPORT_SYMBOL_GPL vmlinux 0x2558a173 usb_gadget_set_state -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 0x25bbfa9a security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x25c51049 devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x25cc551e pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x25cd44d7 __traceiter_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x25dbad91 dev_fill_metadata_dst -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 0x25f823de nand_change_write_column_op -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 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 0x266a4b08 tasklet_unlock -EXPORT_SYMBOL_GPL vmlinux 0x266f8f45 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x268b9663 param_set_uint_minmax -EXPORT_SYMBOL_GPL vmlinux 0x269a0200 call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26ac480e bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0x26c547c0 bL_switcher_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26e60035 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2701953f mtk_mutex_add_comp -EXPORT_SYMBOL_GPL vmlinux 0x27082524 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x270d9547 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit -EXPORT_SYMBOL_GPL vmlinux 0x2734197f musb_readb -EXPORT_SYMBOL_GPL vmlinux 0x27391813 devlink_port_type_ib_set -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 0x276327ae pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x276a5d61 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x27796916 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x27a4bb78 housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x27aac00d trace_array_set_clr_event -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 0x27ef2e37 mmc_regulator_set_ocr -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 0x2803b526 trace_put_event_file -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 0x283ffe9f imx_check_clk_hws -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 0x2864abc9 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x2879fdd9 pinctrl_generic_remove_group -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 0x28a202f7 virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x28a8a299 serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0x28a9e55e serial8250_update_uartclk -EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x28ae9515 nanddev_ecc_engine_cleanup -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 0x28f7df52 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x2900563f ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x29026435 bpf_preload_ops -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 0x29427ccc virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x295a2670 clk_regmap_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate -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 0x29b59115 synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0x29cb4af1 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x29cd414e tcp_ca_openreq_child -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 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 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 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x2a764140 security_file_ioctl -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 0x2abffd1d sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x2ace820a pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x2ae60113 skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0x2afd5320 devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2b0270fd ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x2b081e3d __sdhci_read_caps -EXPORT_SYMBOL_GPL vmlinux 0x2b1f7ca8 iommu_device_unlink -EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -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 0x2b5e9e92 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple -EXPORT_SYMBOL_GPL vmlinux 0x2b7558d1 snd_soc_dai_is_dummy -EXPORT_SYMBOL_GPL vmlinux 0x2b7eee2c vchan_init -EXPORT_SYMBOL_GPL vmlinux 0x2b86e414 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x2b8ef447 xhci_ext_cap_init -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2b95f404 tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x2b9ed316 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x2bbf8fbf irq_domain_xlate_twocell -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 0x2c1f3b22 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c511609 pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0x2c5c5d95 crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c68a282 perf_event_period -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -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 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 0x2ca60157 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x2cae8663 device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x2cc0dbd1 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x2cc68c6e sched_trace_cfs_rq_avg -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 0x2cea66c8 __traceiter_neigh_event_send_done -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 0x2d286224 ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d2ea2fd __strp_unpause -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 0x2d491e6e gpiod_get_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x2d5d5619 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict -EXPORT_SYMBOL_GPL vmlinux 0x2d6965da serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x2d901df3 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x2d9d3d57 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x2db47c4f iptunnel_handle_offloads -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 0x2dd2248d pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2dd9ebda simple_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0x2de342fe fsnotify_get_group -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 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 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 0x2e6b8ec4 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x2e71eacc device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0x2e720311 sdhci_add_host -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 0x2ea9223c gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x2eaa03a4 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2eb5be3d ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2f08fb87 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x2f1fadf5 disk_update_readahead -EXPORT_SYMBOL_GPL vmlinux 0x2f2ead9f kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0x2f334ffe sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0x2f3fb752 ata_scsi_port_error_handler -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 0x2fa65804 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x2fade0be synth_event_add_field -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 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 -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 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 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 0x307f867f mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x308bda0b blk_ksm_init_passthrough -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 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 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 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 0x3134628f devlink_dpipe_table_resource_set -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 0x314bc603 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x314c3646 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x315392f8 pinctrl_generic_get_group -EXPORT_SYMBOL_GPL vmlinux 0x3168bdb0 dev_pm_opp_xlate_required_opp -EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x3189a9ec fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31afa14c dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x31afe9ca inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31d2cc34 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x31da8b06 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL vmlinux 0x31ee8399 led_init_default_state_get -EXPORT_SYMBOL_GPL vmlinux 0x31f3968d gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x3203226a dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x320c2afd fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3212be0d tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0x3222e4f8 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x3230198c fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x3243d13d devm_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x325e5118 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x326d2f83 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x327ef9bd nand_prog_page_end_op -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 0x32ba4007 tun_get_tx_ring -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 0x32d4be47 l3mdev_ifindex_lookup_by_table_id -EXPORT_SYMBOL_GPL vmlinux 0x32ebc766 sock_diag_register_inet_compat -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 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 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 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 0x3372dbcb pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0x3385a4e5 blk_req_zone_write_trylock -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 0x33e405ee spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x33e9e0a2 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x33ecb198 __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x33f14537 devm_clk_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0x340920b1 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x340f7e93 device_show_bool -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 0x343f9b86 umd_load_blob -EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash -EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register -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 0x34633c4e strp_init -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 0x3487f604 sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0x349b102e inet_twsk_alloc -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 0x34ac5e9d addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0x34ad7f42 rockchip_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x34b0c807 icc_enable -EXPORT_SYMBOL_GPL vmlinux 0x34d0c66a xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x34dfe431 phy_get -EXPORT_SYMBOL_GPL vmlinux 0x34e0806b ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0x34e2ae9e aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x34e859be dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0x34f912b0 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x3506d25f mtd_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait -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 0x352b3813 maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x352bacf3 __traceiter_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x35301faf loop_backing_file -EXPORT_SYMBOL_GPL vmlinux 0x35386733 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x35525918 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x35681ae3 __tracepoint_tcp_bad_csum -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 0x35aed7a5 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x35b8364b fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0x35c7914d phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0x35dec720 thermal_remove_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x3602295f sock_map_destroy -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x361a4794 fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0x361d038c _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x36255e9d usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x362ec65e devlink_port_attrs_pci_vf_set -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 0x36734cdd edac_device_free_ctl_info -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 0x36ad2d25 __platform_driver_probe -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 0x36f67500 vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0x36f8ad8c ahci_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x3700f84c rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x370d261f skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x370edbd5 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0x37102bf5 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x37231470 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x37251caf nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x372abad5 vp_modern_map_vq_notify -EXPORT_SYMBOL_GPL vmlinux 0x3731d208 blk_execute_rq_nowait -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 -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 0x37983cc9 pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0x379ad7e6 clk_hw_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x379bd35c security_path_chmod -EXPORT_SYMBOL_GPL vmlinux 0x37a93022 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x37aaaa68 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x37ba86ac ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x37ca8f5b pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x37e00980 pci_bridge_emul_cleanup -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 0x382de6d6 spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x3830dec4 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x383a9775 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x383cfd04 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x384e7dc8 devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0x38521837 __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x386a73dd crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x38887749 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0x3888b55b i2c_dw_probe_master -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 0x38e46eb0 snd_soc_component_compr_get_caps -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38eb1b72 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x39062ce5 regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x3919e2a7 snd_soc_limit_volume -EXPORT_SYMBOL_GPL vmlinux 0x392ea06e crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0x3952ed04 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x3955d70a dbs_update -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 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 0x39bcd534 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x39bea9ea pci_enable_sriov -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 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 0x3a263e43 blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0x3a365879 pktgen_xfrm_outer_mode_output -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 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3a9e8366 snd_soc_of_put_dai_link_codecs -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 0x3abdbd1e rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x3abf6c06 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -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 0x3b2070f2 tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3b2ba89e musb_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x3b367ab5 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x3b4784d8 crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -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 0x3b87eb58 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x3bbc718f crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test -EXPORT_SYMBOL_GPL vmlinux 0x3be847e9 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3bf21b07 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x3bf46ab2 devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0x3bf8d349 sk_psock_tls_strp_read -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 -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 0x3c215616 virtqueue_get_vring -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 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 0x3c8765a6 skb_tstamp_tx -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 0x3cda8c27 device_create -EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x3d009b14 devm_irq_setup_generic_chip -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 0x3d2d7061 snd_soc_unregister_dai -EXPORT_SYMBOL_GPL vmlinux 0x3d2f4962 devlink_free -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d3a040b ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d511f6a mptcp_token_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x3d585115 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL vmlinux 0x3d677e30 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x3d6d9cb7 devlink_register -EXPORT_SYMBOL_GPL vmlinux 0x3d71eafa __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert -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 0x3dabcc86 tracing_snapshot_cond -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 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 0x3e0b2b46 power_supply_get_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x3e138b2e bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x3e27065b usb_ep_set_wedge -EXPORT_SYMBOL_GPL vmlinux 0x3e2deea0 fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x3e444a7c usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x3e459486 vfs_write -EXPORT_SYMBOL_GPL vmlinux 0x3e4f36f7 tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x3e57ac86 serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0x3e6776db sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e83abd9 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3e8a08c7 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x3ea26063 clean_acked_data_disable -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 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 0x3f060887 __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x3f117652 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x3f22d0f2 snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL vmlinux 0x3f314f79 modify_user_hw_breakpoint -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 0x3f4ca1c3 crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0x3f4e8f4f get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x3f50dca2 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x3f5ed661 crypto_register_templates -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 0x3faf7437 bd_prepare_to_claim -EXPORT_SYMBOL_GPL vmlinux 0x3fbc067d fscrypt_ioctl_get_nonce -EXPORT_SYMBOL_GPL vmlinux 0x3fe544ad crypto_stats_ahash_final -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 0x3ff9463a rockchip_register_restart_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x4015cc0e tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0x4029d718 kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x40400964 blk_trace_setup -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 0x406f8322 int_active_memcg -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 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 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 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 -EXPORT_SYMBOL_GPL vmlinux 0x40fe4749 dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle -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 0x411e7e44 tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x412d54be ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x412e1837 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x41344e65 __rio_local_read_config_8 -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 0x418a8f2c bpf_map_inc_not_zero -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 0x41b9a6e6 bsg_unregister_queue -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 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 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x421930d4 mtk_pinconf_adv_pull_set -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 0x427440c4 __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x4291ef19 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x429a8d67 mmc_cmdq_disable -EXPORT_SYMBOL_GPL vmlinux 0x42ad57ff devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x42b4d1dd snd_soc_dapm_free -EXPORT_SYMBOL_GPL vmlinux 0x42c781f5 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x42ca9b3a clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x42d467a9 vring_new_virtqueue -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 0x42ffa4dd pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0x430c2571 xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x4324701e metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x432bd5d6 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x434362bb vp_modern_config_vector -EXPORT_SYMBOL_GPL vmlinux 0x43436b82 sched_trace_rq_cpu_capacity -EXPORT_SYMBOL_GPL vmlinux 0x434a4ccf dev_pm_opp_put_prop_name -EXPORT_SYMBOL_GPL vmlinux 0x43569b3e xfrm_audit_state_add -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 0x43a39692 ncsi_unregister_dev -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 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 0x43f92edd wait_for_initramfs -EXPORT_SYMBOL_GPL vmlinux 0x43fceb60 skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs -EXPORT_SYMBOL_GPL vmlinux 0x4402d49e blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x440cef04 crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x440e9e03 vchan_tx_desc_free -EXPORT_SYMBOL_GPL vmlinux 0x4411704c clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x441cc49b ping_close -EXPORT_SYMBOL_GPL vmlinux 0x4424c30a phy_calibrate -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 0x44468361 vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x44594d19 sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x446f322f __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0x446fd25d get_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x44818b16 fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x449a3368 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44c3ad74 vp_modern_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x44c5f64d xfrm_dev_resume -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 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 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 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 0x454939aa rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x455b0abe crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x455eef5f vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister -EXPORT_SYMBOL_GPL vmlinux 0x45675d49 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x4567e605 kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -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 0x45a7a3bc ncsi_stop_dev -EXPORT_SYMBOL_GPL vmlinux 0x45a9fa8c phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x45b87938 devm_bitmap_zalloc -EXPORT_SYMBOL_GPL vmlinux 0x45c0a901 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x45c74989 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x45d24a38 devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0x45e50b3b find_pid_ns -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 0x461d6f38 snd_soc_dai_compr_ack -EXPORT_SYMBOL_GPL vmlinux 0x4620a750 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x462c2e74 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x464c038a vp_modern_remove -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 0x46887ea7 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x468c84de ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x46aac74c pm_generic_restore_noirq -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 0x46ec267f spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -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 0x47206f68 tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -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 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4785e33e skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x478ae470 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x478debf5 phy_10gbit_fec_features -EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x47925794 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x47a2820b regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x47a788a1 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0x47aac2c9 __inet_lookup_established -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 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47e284ea __ndisc_fill_addr_option -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 0x480443d4 __traceiter_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm -EXPORT_SYMBOL_GPL vmlinux 0x48268631 __vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x48369bb6 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x484779ef __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x48573d2e devm_i2c_add_adapter -EXPORT_SYMBOL_GPL vmlinux 0x48648366 decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x487c0f32 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x48840a8d __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -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 0x48ce802a gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x48ded373 wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0x48e36dc9 rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0x48e6a5d0 phy_package_leave -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 0x48f16b32 netdev_set_default_ethtool_ops -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 0x49326ef6 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x493c714d l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4942884f hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x494f75f0 snd_soc_dapm_new_controls -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 0x49830f0e __tracepoint_neigh_update -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 0x49d42bab snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL vmlinux 0x49d96707 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x49e6a796 clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49f32644 tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0x49fa8ec2 phy_check_downshift -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 0x4a22ef53 snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL vmlinux 0x4a25c803 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x4a29b747 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x4a2bb85e nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0x4a2e764e transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x4a30c630 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x4a394633 snd_soc_dapm_force_enable_pin_unlocked -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 0x4a5753b4 dev_pm_opp_get_suspend_opp_freq -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 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 0x4abf1839 devlink_trap_groups_unregister -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 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 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 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 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 0x4b962200 __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x4ba30b47 mtd_block_isbad -EXPORT_SYMBOL_GPL vmlinux 0x4ba3d392 clk_hw_set_rate_range -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 0x4bbea026 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x4bc37d60 devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x4bdf8de9 devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x4bfed104 dev_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x4c01b077 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4c047fc7 fsnotify_alloc_user_group -EXPORT_SYMBOL_GPL vmlinux 0x4c2c75b9 regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x4c4cad11 cpts_register -EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c559048 trace_define_field -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 0x4c62f7a2 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x4c7c344a of_property_read_variable_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x4c9e0c4b usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x4ca64f8d regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cb55cee bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4cbfd443 snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL vmlinux 0x4cf24332 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d1b2c78 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x4d224c07 pci_epc_start -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 0x4d44b1c1 strp_process -EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -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 0x4da50ab8 sbitmap_get -EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4db6375a of_device_modalias -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 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 0x4e233bfd pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x4e422600 start_poll_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x4e4d6729 snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL vmlinux 0x4e4ff286 devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0x4e5a1454 devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x4e7d5e52 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4e9abd75 regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x4ea227c6 udp6_lib_lookup -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 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4eb1b150 __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x4eb48ccb unregister_mtd_user -EXPORT_SYMBOL_GPL vmlinux 0x4ec6dac7 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x4ec71339 bpf_prog_create -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 0x4efda1eb fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x4f0677e2 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL vmlinux 0x4f221155 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x4f260b9a aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4f3019e2 snd_soc_set_dmi_name -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 0x4f559777 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f741b7f xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4f9437b2 devlink_dpipe_headers_register -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 0x4fae2e10 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x4fda3117 snd_soc_dapm_add_routes -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 0x50028353 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x5008f2b3 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x5012cfa9 nvmem_cell_read_variable_le_u64 -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 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 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 0x509b5a39 fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0x509d5f55 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x50ac5abb devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0x50b6462a inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x50b88f41 usb_get_gadget_udc_name -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 -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f9d70d __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -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 0x5150a48e led_trigger_write -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 0x517b4120 iomap_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0x518b120d xhci_gen_setup -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 0x519dfebd mptcp_pm_get_local_addr_max -EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51a78101 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x51ab4de1 bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x51b5d46f set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x51b6480f wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x51e32261 crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x51e7030f __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x5201b780 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x520e42a5 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x5217fe95 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x52191a0f devlink_param_publish -EXPORT_SYMBOL_GPL vmlinux 0x521a3b95 bpf_map_inc -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 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 0x527b91cb skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x5291fe11 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x5297670c br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0x529ca657 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x52a859e6 virtqueue_enable_cb_prepare -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 0x52b713b3 fuse_request_end -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 0x530b923f scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x532d075c __auxiliary_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x5333408a pinconf_generic_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0x533e3450 nf_queue -EXPORT_SYMBOL_GPL vmlinux 0x53455e6c of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0x534a24b5 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x5375bc94 free_fib_info -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 0x539201f5 __traceiter_pelt_irq_tp -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 0x53b3c7c8 __irq_alloc_domain_generic_chips -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 0x541680cf tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x54172702 cci_disable_port_by_cpu -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -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 0x5455537c sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x5489809c icc_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x54906692 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x549a39b6 bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put -EXPORT_SYMBOL_GPL vmlinux 0x54a63545 dev_pm_opp_put_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x54a9fc07 sbitmap_resize -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 0x54e5f709 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x54e98f82 serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x54fc987b tcp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x550a16ac dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x552f5d2b of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0x55315c2c udp_abort -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 0x55521f6e cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0x555aff30 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x555e9116 pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0x555eb40e icc_node_del -EXPORT_SYMBOL_GPL vmlinux 0x5568605f crypto_shash_tfm_digest -EXPORT_SYMBOL_GPL vmlinux 0x556a3996 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x558e480a sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x55a67a0d pinctrl_generic_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x55a89355 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x55ba95c4 tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x55be0d1c sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -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 0x55f1e292 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x55f78062 driver_register -EXPORT_SYMBOL_GPL vmlinux 0x55f84cd4 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x561835eb init_rs_non_canonical -EXPORT_SYMBOL_GPL vmlinux 0x561a4822 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x561fbfab pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x5629cc16 dev_pm_set_dedicated_wake_irq -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 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x5644cc89 usb_urb_ep_type_check -EXPORT_SYMBOL_GPL vmlinux 0x564ed196 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x564f1ba5 fwnode_property_read_u64_array -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 0x568a0713 imx_pcm_dma_init -EXPORT_SYMBOL_GPL vmlinux 0x56a6a76c net_rwsem -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 0x56e9103b cpu_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x56f297ea ethnl_cable_test_amplitude -EXPORT_SYMBOL_GPL vmlinux 0x56f2ffbb ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x56f50638 get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0x56f50da9 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x56f9e62a irq_chip_unmask_parent -EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x57010254 ahci_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x5708c329 l3mdev_table_lookup_unregister -EXPORT_SYMBOL_GPL vmlinux 0x57185b36 lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0x571ac2a8 genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x574b6c7c thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x5750d7da fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x575aaf0d platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x576f7ebe snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -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 0x57b0d2b9 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x57b7a8e5 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index -EXPORT_SYMBOL_GPL vmlinux 0x57ddb1a5 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x57e38d87 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x57eaab93 dm_device_name -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 0x58109cd5 rio_request_outb_dbell -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 0x58559691 tcp_twsk_destructor -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 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x587ac04d cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0x5882c727 devlink_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0x588f78c7 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x5892b127 fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0x58b01e30 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x58c3163a devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0x58c38790 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x58cf62ce omap_iommu_restore_ctx -EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58f0308a clk_regmap_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x58f43f93 sync_page_io -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 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 0x597acc48 __raw_v4_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5986c2db devlink_port_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -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 0x59d51835 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x59dee3a1 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm -EXPORT_SYMBOL_GPL vmlinux 0x59f7ca2f ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x59fc549d regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x5a070d47 sched_trace_rq_avg_dl -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 0x5a3b7b88 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -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 0x5a9a3d3f ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x5aa2d4b9 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5abb23fb regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x5ac72f45 receive_fd -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 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 0x5b299969 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x5b316080 software_node_unregister_nodes -EXPORT_SYMBOL_GPL vmlinux 0x5b3bdea8 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x5b53ef79 power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x5b6a1fcb perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5b7e22ea driver_find -EXPORT_SYMBOL_GPL vmlinux 0x5b878d51 raw_abort -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 0x5b9de23d irq_domain_update_bus_token -EXPORT_SYMBOL_GPL vmlinux 0x5bb76aeb ata_pci_device_resume -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 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 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 0x5c3bbd06 __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x5c3c8567 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x5c450b0d cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x5c4d243d fwnode_graph_get_remote_node -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 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 0x5c98367b nanddev_mtd_erase -EXPORT_SYMBOL_GPL vmlinux 0x5ca1ec7f sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -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 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 0x5d56522e trace_event_ignore_this_pid -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 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 0x5dafc944 perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0x5db2c0e9 mmc_send_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0x5db2f678 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x5db51a31 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x5dc57232 espintcp_queue_out -EXPORT_SYMBOL_GPL vmlinux 0x5df6bd58 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL vmlinux 0x5dfe1b0c snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x5e038da9 usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x5e160b6a get_governor_parent_kobj -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 0x5e6b702e __traceiter_devlink_hwerr -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 0x5eaafd65 bpfilter_ops -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 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 0x5eeb352d crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x5ef86935 crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0x5efe5fdb usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x5f0afcbd snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL vmlinux 0x5f314cb2 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x5f4c2387 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x5f4e1c14 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x5f52c18b nand_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x5f6a5fa3 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x5f6afbe7 tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f7d3837 __devm_rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0x5f7ee8db dev_pm_opp_of_register_em -EXPORT_SYMBOL_GPL vmlinux 0x5f835d17 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point -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 0x5fd75c7d kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0x5fe12e23 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x5ff5a17f of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0x5ff8f29f __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x5ffe9aa7 __tracepoint_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x6010f017 nand_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x601f02f6 dev_pm_opp_find_level_ceil -EXPORT_SYMBOL_GPL vmlinux 0x60294d8d sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x60606431 kernel_read_file_from_path_initns -EXPORT_SYMBOL_GPL vmlinux 0x60671345 software_node_register_nodes -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 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 0x60893fa1 tcp_cong_avoid_ai -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 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 0x60d89a5d nl_table -EXPORT_SYMBOL_GPL vmlinux 0x60dbc852 crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0x60e03a88 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x60f1756a devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0x6117fac6 sched_trace_rq_avg_irq -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 -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 0x615faee4 skb_complete_tx_timestamp -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 0x61764357 regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x618753d8 inet_hash -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 0x61a87016 of_mm_gpiochip_add_data -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 0x61fec374 crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0x6201ad1d gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x620e4750 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x6211e0bb __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x6219c13c nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x621ab66d phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -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 0x623bba25 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x62402b0e led_set_brightness_nosleep -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 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 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 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 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 0x62fed036 devlink_region_snapshot_id_put -EXPORT_SYMBOL_GPL vmlinux 0x63065efa nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0x63090722 trace_seq_vprintf -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 0x631bfbd7 cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x6325beb0 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x6333cde0 __vfs_removexattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x633cb2c6 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x635f67fd ahci_do_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x63648d48 udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0x637772d7 synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0x638a85b3 nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x638ee331 udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x6396acdc snd_soc_component_compr_copy -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 0x63cd4d3a get_task_pid -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 0x63e3f9e2 dev_pm_opp_put_regulators -EXPORT_SYMBOL_GPL vmlinux 0x63fc85ca devm_regmap_del_irq_chip -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 0x644bfdcf trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x644e295c sdhci_set_power -EXPORT_SYMBOL_GPL vmlinux 0x644e7a48 sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x64582a62 tegra_xusb_padctl_legacy_remove -EXPORT_SYMBOL_GPL vmlinux 0x64625a9d mtd_write_oob -EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x64766fd9 soc_device_register -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 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 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 0x64f42801 inet6_sk_rebuild_header -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 0x651817b7 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x651e677a perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x651e95f1 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x651ee67b srcu_notifier_chain_register -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 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 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 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 0x65dc5d96 netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0x65def01d mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x65ee3e6f __traceiter_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x65f1011a musb_queue_resume_work -EXPORT_SYMBOL_GPL vmlinux 0x6604038f device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6632fa85 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x6636151b security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -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 0x6661cbe9 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6665e166 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x66704ec7 l3mdev_table_lookup_register -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 0x66925bf6 snd_card_free_on_error -EXPORT_SYMBOL_GPL vmlinux 0x669594ad musb_clearw -EXPORT_SYMBOL_GPL vmlinux 0x66aad1bf is_skb_forwardable -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 0x66c5e63c of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -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 0x6709d584 fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x670a5781 dma_mmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x670b05d9 blk_ksm_is_superset -EXPORT_SYMBOL_GPL vmlinux 0x671b1755 gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x6721b142 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x6722b77a dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x67246195 fat_add_entries -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 0x6761ce6e ping_seq_next -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 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 0x67d5d10b iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67e02f86 devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0x67e338c1 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x6813479a ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x681d44b5 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x681df2d5 clk_hw_register_composite -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 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 0x68749c9f devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0x68758fda nvmem_cell_write -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 0x68b69170 dev_pm_genpd_set_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x68c15e42 serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0x68cb01c0 fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies -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 0x693c185c debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0x6949c03c crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x695bf5e9 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x695dc00a iommu_aux_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x695e9170 devlink_port_params_register -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 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 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 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a29e5d2 irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -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 0x6aa5e412 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0x6aaed57b crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x6ab11973 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x6ab1c8bb xas_store -EXPORT_SYMBOL_GPL vmlinux 0x6ac11398 of_genpd_del_provider -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 -EXPORT_SYMBOL_GPL vmlinux 0x6af8c6dc musb_writel -EXPORT_SYMBOL_GPL vmlinux 0x6b093267 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0x6b12627f pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0x6b13372f snd_soc_of_parse_audio_routing -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 0x6b2e5845 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x6b334acc trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x6b3531e9 i2c_for_each_dev -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 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b8be690 pci_user_write_config_word -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 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 0x6c2fc017 sk_psock_msg_verdict -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 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c543382 bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0x6c562466 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register -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 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 0x6c9c85df ahci_platform_disable_phys -EXPORT_SYMBOL_GPL vmlinux 0x6ca0cc25 wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6cc21956 i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0x6cc7e79a snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL vmlinux 0x6cd17e49 zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0x6cd96910 __kmap_local_pfn_prot -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 0x6cf96d5f percpu_down_write -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 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 0x6d467b08 arm_smccc_1_1_get_conduit -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 0x6d628136 bpf_trace_run10 -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 0x6d9d486f tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x6da1321d irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x6da54346 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x6db70efb skcipher_walk_virt -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 0x6e09d93d __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0x6e258778 perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x6e370bfa __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -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 0x6e6e1d6f thermal_zone_of_get_sensor_id -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e8c9036 mtd_pairing_groups -EXPORT_SYMBOL_GPL vmlinux 0x6e90d3eb __traceiter_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x6e9d3561 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x6eaa2fac tracing_snapshot_cond_disable -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 0x6ec799f7 __udp4_lib_lookup -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 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f3750c5 security_path_rmdir -EXPORT_SYMBOL_GPL vmlinux 0x6f4953a5 snd_soc_register_component -EXPORT_SYMBOL_GPL vmlinux 0x6f4981b0 devlink_dpipe_headers_unregister -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 0x6f7e6040 irq_has_action -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 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 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fe74055 do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ff92116 mctrl_gpio_init -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 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x701825ea wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x70240944 clk_hw_register_gate2 -EXPORT_SYMBOL_GPL vmlinux 0x704a058f __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x70581093 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0x70641f6e fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0x707259ae amba_bustype -EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7078c2e5 lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0x707b23fa skb_segment -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 0x70995df2 __ip6_local_out -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 0x70f3f7ab devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0x71034283 task_cls_state -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 0x7121a9cb ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x71255d4b devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0x714f1554 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x715a4f37 __wake_up_pollfree -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -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 0x71990a96 tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0x719a5e41 musb_readw -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x71a5e109 fuse_conn_destroy -EXPORT_SYMBOL_GPL vmlinux 0x71a88e0e vp_modern_get_status -EXPORT_SYMBOL_GPL vmlinux 0x71a9a3ab mtk_mutex_acquire -EXPORT_SYMBOL_GPL vmlinux 0x71b0d5df spi_controller_dma_unmap_mem_op_data -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 0x71d42a28 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x71deddfe sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x71f7b37b __traceiter_tcp_send_reset -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 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 0x726b8139 lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0x726e752e wm831x_reg_lock -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 0x72ae16f5 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x72ae8b8f set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x72b299e1 efi_capsule_supported -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 0x73007adc synth_event_create -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 0x7326745e blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x732e5003 amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0x73354b66 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x733bcd59 ata_sff_dev_classify -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 0x73845844 rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0x73bdf4ae iomap_readpage -EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73d77cb3 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x73df1d05 gpiochip_line_is_persistent -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 0x74158391 __traceiter_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x74355229 of_css -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x744bf695 nand_decode_ext_id -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 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 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 0x751baa39 dev_pm_opp_find_freq_ceil_by_volt -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7535a6a9 pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x75374fc3 __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x75481696 pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x754f6dd7 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0x755ae3c8 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x75722063 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7577f9fd rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x7581e60a fork_usermode_driver -EXPORT_SYMBOL_GPL vmlinux 0x758fe5ad pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x7591bcc3 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x759d81aa crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x75bf6cc0 is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0x75cbb2b1 snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL vmlinux 0x75d4ffbb bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0x75d96582 devlink_param_driverinit_value_get -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 0x75fb9062 arch_timer_read_counter -EXPORT_SYMBOL_GPL vmlinux 0x762d1d92 fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x762eb208 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x762ec444 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x763a1c58 syscon_node_to_regmap -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 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 0x76c0d820 fib_add_nexthop -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 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76fb29ea switchdev_handle_fdb_del_to_device -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 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 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 0x777ddb76 devm_nvmem_cell_get -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 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b46ffb usb_ep_set_maxpacket_limit -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 0x78128b6f of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x78222f7d gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x782a6b0f sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x783e1411 devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0x785177b9 icmp_build_probe -EXPORT_SYMBOL_GPL vmlinux 0x78586c41 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -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 0x787ad455 wakeup_sources_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x7883841f snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL vmlinux 0x7888c62c bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x78de78c5 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x78e4005e of_clk_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x78f0c35c mtk_build_eint -EXPORT_SYMBOL_GPL vmlinux 0x78f69e00 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x7904bb5a tegra_mc_probe_device -EXPORT_SYMBOL_GPL vmlinux 0x79070cd3 xfrm_audit_state_notfound_simple -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 0x791de196 dma_max_mapping_size -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 0x795938fc ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x79920840 blk_queue_zone_write_granularity -EXPORT_SYMBOL_GPL vmlinux 0x79a7a5cf mtk_eint_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x79c69994 sched_trace_cfs_rq_path -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 0x79ea3422 __traceiter_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x79ecc5f9 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x79f0de5d lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x79f19594 devlink_trap_policers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x79f1a8c6 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x79f3035d cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x7a10fe4b rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0x7a1d13fa snd_device_get_state -EXPORT_SYMBOL_GPL vmlinux 0x7a255a6d sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x7a295d59 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x7a2faeef debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x7a302112 snd_soc_component_read -EXPORT_SYMBOL_GPL vmlinux 0x7a3206b7 meson_pmx_get_groups -EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x7a48d06c cpu_latency_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x7a588b58 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x7a656dd7 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x7a6b6850 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a7f1396 zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a876a35 sk_msg_alloc -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 0x7ac10ad8 icst_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x7ac605b9 ulpi_viewport_access_ops -EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7ac84bb7 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag -EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings -EXPORT_SYMBOL_GPL vmlinux 0x7add5f0f __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0x7ae9b209 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x7b09b7d1 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL vmlinux 0x7b0f2ee8 devm_device_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x7b0fcada dma_buf_unpin -EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x7b28cde5 nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL vmlinux 0x7b506392 virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b6dd593 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL vmlinux 0x7b8e5fcc wm8350_block_write -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 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bcb635e dw_pcie_own_conf_map_bus -EXPORT_SYMBOL_GPL vmlinux 0x7bcd8fff hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x7bdb5586 dma_async_device_channel_register -EXPORT_SYMBOL_GPL vmlinux 0x7be334e8 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7bf349a4 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x7bfb45f4 spi_mem_dtr_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x7c15ec00 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x7c17e941 bpf_prog_alloc -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 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 0x7c7bc52a devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0x7c7c76d5 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x7c7f28e5 lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0x7c8039fc add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x7c83c259 mmc_crypto_prepare_req -EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7ca07c60 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x7cb6ee52 snd_soc_add_pcm_runtime -EXPORT_SYMBOL_GPL vmlinux 0x7cbb3eb1 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x7ccc5caf encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7cea6428 blk_ksm_reprogram_all_keys -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7d08f022 iommu_alloc_resv_region -EXPORT_SYMBOL_GPL vmlinux 0x7d097f57 ping_bind -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 0x7d297a5d sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0x7d3c20cc wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d6bbec4 blkdev_zone_mgmt -EXPORT_SYMBOL_GPL vmlinux 0x7d6eba73 mdiobus_modify -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 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 0x7dacfc8f bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x7db002b6 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x7dcce527 switchdev_handle_port_obj_add -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 0x7df914db dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x7dfb8144 snd_soc_component_enable_pin_unlocked -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 0x7e3b2409 fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e4762c7 dma_buf_dynamic_attach -EXPORT_SYMBOL_GPL vmlinux 0x7e4e4a2c pci_hp_add_bridge -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 0x7e680826 tcp_set_keepalive -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 0x7e8e757e platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap -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 0x7ec5589f sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0x7ecdebd7 irq_domain_create_legacy -EXPORT_SYMBOL_GPL vmlinux 0x7ed2e874 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0x7ed7048c unregister_trace_event -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 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 0x7f12a553 sm501_modify_reg -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 0x7f62fe67 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x7f63195b devlink_sb_register -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 0x7f819573 fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0x7f8c5be0 nf_route -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 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 0x7fc3910e pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x7fcc89dd watchdog_init_timeout -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 -EXPORT_SYMBOL_GPL vmlinux 0x801eb65d dev_pm_opp_of_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x8020a237 vp_modern_get_num_queues -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 0x804da58d crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x80514aa4 acct_bioset_exit -EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put -EXPORT_SYMBOL_GPL vmlinux 0x80584211 misc_cgrp_subsys_on_dfl_key -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 0x80a50a42 __devm_of_phy_provider_register -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 -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 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 0x810f6bf4 extcon_get_extcon_dev -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 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 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 0x81f372a2 unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x8201eb12 fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0x8202b650 irq_set_affinity -EXPORT_SYMBOL_GPL vmlinux 0x82195bd2 devm_regulator_register_notifier -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 0x8254fbb7 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x82634386 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x82691c68 iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0x82704f5a sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0x82712890 wait_on_page_writeback_killable -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 0x82aa629a init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x82b12870 spi_take_timestamp_post -EXPORT_SYMBOL_GPL vmlinux 0x82b66e5f nand_write_data_op -EXPORT_SYMBOL_GPL vmlinux 0x82c1a4aa vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x82c4abee mmc_pwrseq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x82d162c6 pm_generic_restore_early -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 0x82fe2e72 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL vmlinux 0x82ff4b95 clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x830982dd tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x830f8df2 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x8317fb9b irq_domain_translate_twocell -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 0x83380041 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x83475b7c ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x8374e71a devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x83830544 bpf_redirect_info -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 0x83cf3d5c skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x83d794a4 scsi_internal_device_unblock_nowait -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 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 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x84834ca8 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x849c4115 devm_gpiod_get -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 -EXPORT_SYMBOL_GPL vmlinux 0x84b3f310 xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0x84c4a074 iommu_aux_get_pasid -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 0x84e7adb7 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x84e81f54 debugfs_read_file_bool -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 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 -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 0x85540ebc nvmem_cell_put -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 0x8586f2c1 devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x85879bff usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x858a2874 hrtimer_init_sleeper -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 0x85fa41c7 pci_pri_supported -EXPORT_SYMBOL_GPL vmlinux 0x860a2eab bch_decode -EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array -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 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 0x867d89c6 ping_recvmsg -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 0x868b83d3 regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x86aedbbf dm_start_time_ns_from_clone -EXPORT_SYMBOL_GPL vmlinux 0x86b427ce clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0x86c83c23 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x86cad2fd ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0x86d3f65b devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0x86d4e55b dapm_mark_endpoints_dirty -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 0x86ddab5f devlink_port_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x86e47178 of_genpd_add_provider_simple -EXPORT_SYMBOL_GPL vmlinux 0x86e7a634 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x87090702 sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x871e341b dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x872eddfc blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x873ed671 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x874d9c71 pinctrl_parse_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0x874e3d13 hrtimer_sleeper_start_expires -EXPORT_SYMBOL_GPL vmlinux 0x874fef9b cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0x8752ccdd ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x87640781 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL vmlinux 0x87732fd8 devm_of_led_get -EXPORT_SYMBOL_GPL vmlinux 0x879d44d2 synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0x87a1f9be perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x87b0afb2 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x87b97102 devlink_params_unpublish -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 0x87ca790c inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x87d78553 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x87e62a7e pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x87e7a36b regulator_desc_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x87ed28f9 xfrm_audit_state_delete -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 0x88856b92 dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0x8885dc27 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x888a02dd i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0x888c151e sk_msg_clone -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 0x88b593ee bpf_map_put -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 0x88e95daa devm_qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0x88faaaac rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0x88fddf0e crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0x8902b6a2 wwan_register_ops -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 0x892fba4e __sock_recv_ts_and_drops -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 0x895a7fa0 crypto_stats_init -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 0x899ae459 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x89ac63b8 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x89ad2ae6 cpufreq_cooling_unregister -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 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 0x89f113b0 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x89fd3644 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x8a082d3b phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x8a0d6c61 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x8a1a2fd5 devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8a2f89fb scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x8a3c48f2 security_path_link -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 0x8a4f68c4 lwtunnel_encap_add_ops -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 0x8a817942 nfs_ssc_register -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 0x8a9428ef devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x8a95de46 efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x8aa13cea regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x8aa47716 trace_array_init_printk -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 0x8ae2375d devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x8ae2cd89 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x8aef9818 wwan_create_port -EXPORT_SYMBOL_GPL vmlinux 0x8af1f5b9 pinctrl_utils_reserve_map -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 0x8b460423 platform_msi_domain_alloc_irqs -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 0x8b53f7b3 wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0x8b58db63 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8b5b4aae dev_pm_domain_attach_by_name -EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release -EXPORT_SYMBOL_GPL vmlinux 0x8b6b1083 synth_event_trace_array -EXPORT_SYMBOL_GPL vmlinux 0x8b6b8dbd devm_pm_opp_set_clkname -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 0x8ba57945 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x8ba88355 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x8bb1362a dev_pm_opp_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x8bcbf493 mtk_pinconf_bias_get_combo -EXPORT_SYMBOL_GPL vmlinux 0x8bd3e479 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x8bd7121d nfs_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8be4eeb8 kill_device -EXPORT_SYMBOL_GPL vmlinux 0x8beb27f1 usb_phy_set_event -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 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 0x8c7895cd __ip6_datagram_connect -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 0x8cbfa62f usb_initialize_gadget -EXPORT_SYMBOL_GPL vmlinux 0x8cc2681d account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x8cfa0fa5 __tracepoint_pelt_rt_tp -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 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d27cdf2 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x8d4c3e16 fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x8d64071e platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8d669cf6 synth_event_trace_start -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 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 0x8dd218b0 icc_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x8ddbc5ac device_link_add -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 0x8e2cb5c9 pm_wakeup_ws_event -EXPORT_SYMBOL_GPL vmlinux 0x8e31e703 crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0x8e3e8997 cpts_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x8e475958 sdhci_alloc_host -EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep -EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free -EXPORT_SYMBOL_GPL vmlinux 0x8e505b1b inet_twsk_put -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 0x8e6d026e rdev_get_dev -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 0x8e991c52 crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0x8ea30495 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x8ea3c24a trace_array_get_by_name -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 0x8ee5c573 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x8ee95f90 sk_set_peek_off -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 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 0x8f294d50 ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0x8f2b6533 fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0x8f307265 skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x8f30f970 dev_get_tstats64 -EXPORT_SYMBOL_GPL vmlinux 0x8f37b35e srcu_barrier -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 0x8f643d0e vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0x8f657109 of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0x8f659d54 tcp_is_ulp_esp -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 0x8f83462a __mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x8f8395ed regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x8f952f29 i2c_dw_configure_master -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 0x8fcbaf68 devlink_flash_update_timeout_notify -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 0x8ff61c8d ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x90074ba0 nfs42_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x900ec8a3 blk_mq_rdma_map_queues -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 0x9030fdc6 bio_end_io_acct_remapped -EXPORT_SYMBOL_GPL vmlinux 0x9031c676 switchdev_handle_fdb_add_to_device -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x904b1d33 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x905812c4 led_compose_name -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 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 0x90b6e82c bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x90d3226c tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x90d595ae phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x90db1987 switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x90f022ec watchdog_set_last_hw_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x90f03bc0 strp_unpause -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 0x913140bb pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x9132650f kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x91370d27 housekeeping_affine -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 0x91519a16 dev_pm_opp_of_cpumask_add_table -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 0x919ea36c __traceiter_pelt_se_tp -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 0x91d26664 i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL vmlinux 0x91de5d6e task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean -EXPORT_SYMBOL_GPL vmlinux 0x91eac764 mpi_print -EXPORT_SYMBOL_GPL vmlinux 0x92168f1d blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x922026ee ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0x922412a0 strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0x92287ece attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x92398bac of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0x923da884 perf_event_addr_filters_sync -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 0x926dddca spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0x929166a3 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x9294ce65 xfrm_state_mtu -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 0x92c09006 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x92ccaa7a security_file_permission -EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92e08d9e tcp_done -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 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 0x93404f8e serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x934949ab __traceiter_neigh_timer_handler -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 0x93b04725 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints -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 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 0x940c4c77 tcp_set_state -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 0x9425bb34 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x9430a7b0 fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack -EXPORT_SYMBOL_GPL vmlinux 0x94328106 nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x943653af pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0x943740ed srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x94565d24 usb_ep_free_request -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 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 0x94b5300b of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x94d83d98 dm_hold -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 0x94ffa865 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x95074594 __synth_event_gen_cmd_start -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 0x9539a539 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x953fea94 __traceiter_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x95418e51 device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x9552cd4a devlink_port_type_eth_set -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 0x956a9faa tegra_bpmp_request_mrq -EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x9593dda4 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x959b536d sock_map_close -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 0x95ca5dc3 devm_snd_soc_register_dai -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 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 0x96370b9d __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x963a2518 devlink_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0x96443010 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x9650900d snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x96604924 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0x969dde21 pci_device_group -EXPORT_SYMBOL_GPL vmlinux 0x96a6bbbd fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x96ab3dde __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x96c03974 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x96ca63f5 __rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0x96db61ba device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x96f4583b skb_complete_wifi_ack -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 0x971b7263 page_cache_ra_unbounded -EXPORT_SYMBOL_GPL vmlinux 0x971f3dcc regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x9728bc68 switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x972b597b usb_gadget_clear_selfpowered -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 0x9763952d switchdev_handle_port_attr_set -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 0x978ece43 perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0x9797d5a1 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL vmlinux 0x97c2f8a5 bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0x97c64a33 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -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 -EXPORT_SYMBOL_GPL vmlinux 0x982f8a56 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check -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 0x986363f6 fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x9868b9b3 skb_mpls_pop -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 0x98a0aed6 devlink_params_register -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 0x98d921f2 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x98f092a2 sdhci_pltfm_suspend -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 0x9901103d switchdev_bridge_port_unoffload -EXPORT_SYMBOL_GPL vmlinux 0x9903c2d7 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x99071c1c led_set_brightness -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 0x993f200b fuse_dev_install -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 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 0x998d9dc6 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x998f1ca8 snd_soc_put_volsw_sx -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 0x99dfe797 ahci_start_fis_rx -EXPORT_SYMBOL_GPL vmlinux 0x99eafeb5 xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a2dd303 lwtstate_free -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 0x9a71bb9a tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0x9a858e96 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x9a8b6b71 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x9a8f9701 tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0x9aa24ee0 iomap_invalidatepage -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 0x9aeacb87 ring_buffer_iter_empty -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 0x9b555c8c pm_suspend_default_s2idle -EXPORT_SYMBOL_GPL vmlinux 0x9b5ada6d regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x9b6e1f87 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x9b746c56 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL vmlinux 0x9b79f153 crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x9b7f210d cpu_device_create -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 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9b9341d5 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x9b9c82a2 ahci_platform_enable_phys -EXPORT_SYMBOL_GPL vmlinux 0x9ba44e1a rio_map_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x9baa6344 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x9baaaaf6 inet6_cleanup_sock -EXPORT_SYMBOL_GPL vmlinux 0x9bc8951c strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9bdbb941 usb_role_switch_find_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -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 0x9c479bfe of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x9c486f92 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x9c4e48e3 sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0x9c51b911 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x9c5315d1 nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x9c56a5d9 of_get_required_opp_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x9c58bd59 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL vmlinux 0x9c5a7bed pinctrl_dev_get_devname -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 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c95c35b add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x9ca480cc clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9ca81462 pci_get_dsn -EXPORT_SYMBOL_GPL vmlinux 0x9cae63ef ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x9caec75c pinmux_generic_get_function -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 0x9cf695ea mtd_ooblayout_free -EXPORT_SYMBOL_GPL vmlinux 0x9d03ccc2 iomap_dio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d101731 user_update -EXPORT_SYMBOL_GPL vmlinux 0x9d22be72 proc_create_net_data -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 0x9d34f781 gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x9d4c9bbb devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x9d5a1bc4 sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL vmlinux 0x9d5a8178 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x9d64f5a5 device_release_driver -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 0x9dcaa391 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x9dd799fd dst_blackhole_update_pmtu -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 0x9e1788ef led_put -EXPORT_SYMBOL_GPL vmlinux 0x9e2b08b5 virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0x9e3945fe serial8250_do_set_divisor -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 0x9e76171d regmap_write_async -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 0x9eb0c988 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x9ec3bac0 crypto_unregister_alg -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 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 0x9f140889 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x9f1bc71a fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0x9f4a51ca pci_remap_cfgspace -EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x9f6862bd iommu_dev_disable_feature -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 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 0x9fa4564a timer_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9fb6c2d5 devm_pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9fb90c9b devlink_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd296c9 mmu_interval_notifier_insert_locked -EXPORT_SYMBOL_GPL vmlinux 0x9fd59b77 crypto_enqueue_request_head -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 0xa010e58e dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0xa01ce961 tegra_bpmp_put -EXPORT_SYMBOL_GPL vmlinux 0xa02558bd input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xa02914fc skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0xa029ee52 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0xa02aedc8 snd_soc_new_compress -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 0xa0406f6d extcon_find_edev_by_node -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 0xa0a7d18d __traceiter_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xa0d206bd ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0xa0d8ca44 ip_route_output_tunnel -EXPORT_SYMBOL_GPL vmlinux 0xa0f1532f ptp_classify_raw -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 0xa135742e __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0xa13990c4 blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0xa13a8b94 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0xa14c792f __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0xa1591468 power_supply_property_is_writeable -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 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 0xa1f1bd3a arm_check_condition -EXPORT_SYMBOL_GPL vmlinux 0xa1f2a394 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa20f8add register_mtd_blktrans -EXPORT_SYMBOL_GPL vmlinux 0xa213395a cpufreq_driver_fast_switch -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 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa2702729 devm_extcon_dev_allocate -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 0xa28b7f46 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xa2994b55 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0xa2c31b2a proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0xa2da28c2 dev_pm_opp_sync_regulators -EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2ed96eb dst_cache_set_ip6 -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 0xa375d878 wait_on_page_writeback -EXPORT_SYMBOL_GPL vmlinux 0xa385fa89 snd_soc_dpcm_fe_can_update -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 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a5248e sched_trace_cfs_rq_cpu -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 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3ba0941 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0xa3c1db37 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa3c2fe66 sdhci_resume_host -EXPORT_SYMBOL_GPL vmlinux 0xa3db0dbf watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa3f85679 snd_soc_component_initialize -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 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 0xa442e500 __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0xa444c3ca topology_clear_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa45267ab ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print -EXPORT_SYMBOL_GPL vmlinux 0xa45d7bbb devlink_port_attrs_pci_sf_set -EXPORT_SYMBOL_GPL vmlinux 0xa45dc275 trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0xa463d0f9 netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0xa46f8631 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0xa46f9803 scsi_unregister_device_handler -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 0xa48f9e41 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0xa48fbbff dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xa490a7b8 usb_asmedia_modifyflowcontrol -EXPORT_SYMBOL_GPL vmlinux 0xa49ab695 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0xa4bafd6a sfp_register_socket -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 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 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 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 0xa5706338 mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0xa57eb391 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0xa5814738 nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL vmlinux 0xa5899f58 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xa59bf08d device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xa59ff2fe sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0xa5b14f1f ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xa5b692d1 sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0xa5b946ea pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0xa5ba9902 __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xa5bd2dc9 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0xa5bf725d md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0xa5ccf806 skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0xa5d72a8f cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5e15ce8 __rtnl_link_register -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 0xa646b434 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL vmlinux 0xa652de2b dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0xa6790caa msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0xa67ee0dc sdhci_cleanup_host -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 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 0xa6d03863 dmaengine_desc_attach_metadata -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 0xa709c835 fib6_info_destroy_rcu -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 0xa756a185 usb_kill_urb -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 0xa7a11026 crypto_stats_skcipher_decrypt -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 0xa7cba284 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa7ef68c6 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0xa7f54472 of_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xa802729e devres_remove -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 0xa85c3790 blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0xa87849b6 dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xa87f7aec sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0xa889ca97 pinctrl_enable -EXPORT_SYMBOL_GPL vmlinux 0xa88c3af2 meson_pmx_get_funcs_count -EXPORT_SYMBOL_GPL vmlinux 0xa89299d8 cpts_misc_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xa8939928 __mmc_send_status -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 0xa8cb11c2 crypto_dequeue_request -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 0xa9475d4e sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xa957ac22 __clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xa95d36bf inet6_sock_destruct -EXPORT_SYMBOL_GPL vmlinux 0xa9702ec4 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xa9725bfb snd_soc_dapm_force_enable_pin -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 0xa98bcea4 blk_trace_remove -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 0xa9a15576 bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0xa9a85e4d gen10g_config_aneg -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 0xa9f8beea __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xaa0bc56f __traceiter_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xaa140df8 security_path_symlink -EXPORT_SYMBOL_GPL vmlinux 0xaa152108 hrtimer_active -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 0xaa5d5cfa crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xaa5dd116 snd_soc_card_get_kcontrol -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 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 0xaa921c35 lwtunnel_cmp_encap -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 0xaab69795 scsi_host_complete_all_commands -EXPORT_SYMBOL_GPL vmlinux 0xaab76a3e nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xaabe0c62 dev_pm_set_dedicated_wake_irq_reverse -EXPORT_SYMBOL_GPL vmlinux 0xaac03270 devlink_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaac37f1f pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0xaace5210 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL vmlinux 0xaacf1d8d regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xaacfb840 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0xaad6f3a5 extcon_register_notifier -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 0xab444b65 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xab4f4b32 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xab53eb2c rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0xab569214 seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0xab5f9c25 regulator_map_voltage_linear -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 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 0xabb642b7 lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0xabbfd994 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -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 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 0xac04357b bpf_prog_inc -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 0xac4a5b40 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL vmlinux 0xac875375 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaca669b0 security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacb754de gpiochip_remove -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 0xacf7519b nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0xad162e90 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL vmlinux 0xad25b8ef input_class -EXPORT_SYMBOL_GPL vmlinux 0xad27ec29 sk_msg_return_zero -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 0xad8d01d6 dw_pcie_ep_init -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 0xadb48d87 netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xadc8ec13 crypto_remove_spawns -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 0xadfe9531 sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0xae04c031 usb_phy_generic_unregister -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 0xae24eda1 kvm_arch_ptp_get_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0xae258a7a devlink_health_reporter_create -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 0xae4c5bee snd_soc_component_write -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 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 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 0xaed0d445 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xaed4c1fb ahci_init_controller -EXPORT_SYMBOL_GPL vmlinux 0xaedc5536 dev_pm_opp_free_cpufreq_table -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 0xaf3f6d29 bpf_map_inc_with_uref -EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -EXPORT_SYMBOL_GPL vmlinux 0xaf4b10f2 get_tree_mtd -EXPORT_SYMBOL_GPL vmlinux 0xaf67d185 devm_snd_soc_register_card -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 0xafa29468 tty_kopen_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xafb9dae4 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0xafc7159a xdp_build_skb_from_frame -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 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 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 0xb03a09fc ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0xb03bf684 register_kprobes -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 0xb088512d register_asymmetric_key_parser -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 0xb0f1d7c1 fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0xb0fbb722 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xb0fe2c52 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -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 0xb13a0d91 of_clk_hw_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb1685b96 alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0xb17ac809 perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb18a2017 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0xb19ac008 fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0xb1afb1fb net_selftest -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 0xb1d1a506 addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0xb1d95439 dev_fill_forward_path -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -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 0xb1fef6b7 __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb1ffbd7b __fscrypt_prepare_readdir -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 0xb216ef3d call_switchdev_notifiers -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 0xb2414932 devlink_param_unregister -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 0xb27363cd netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xb2800481 nand_ecc_tweak_req -EXPORT_SYMBOL_GPL vmlinux 0xb287d837 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0xb2893e2d switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xb28be412 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0xb29fae95 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xb2a7197f genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2c5bf86 pcie_reset_flr -EXPORT_SYMBOL_GPL vmlinux 0xb2d1e658 ping_unhash -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 0xb2de4cf2 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2f6ef51 icc_std_aggregate -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 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 0xb380b734 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb383c6ad of_map_id -EXPORT_SYMBOL_GPL vmlinux 0xb39c7cf9 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0xb3a369e7 tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0xb3b7a9bd iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xb3b88eda crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0xb3d4780e serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0xb3dca523 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xb4094d08 ip6_input -EXPORT_SYMBOL_GPL vmlinux 0xb40c6376 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb424b11a do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xb42cbedb wm8350_reg_unlock -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 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb450eed6 devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0xb4571abc ping_hash -EXPORT_SYMBOL_GPL vmlinux 0xb45e480f pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0xb4805a04 snd_soc_resume -EXPORT_SYMBOL_GPL vmlinux 0xb48d32c4 usb_disable_xhci_ports -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 0xb4c7b7f7 sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0xb4c9015d spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb4c9d178 dev_attr_ncq_prio_enable -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 0xb50a9eae icc_sync_state -EXPORT_SYMBOL_GPL vmlinux 0xb5167cf1 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb54d2fa6 dst_blackhole_redirect -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 0xb5ad8ec4 of_console_check -EXPORT_SYMBOL_GPL vmlinux 0xb5b4c2e8 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xb5cb1bdc pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xb5cc2769 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0xb5d1920d percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0xb5dcd8a0 klist_init -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 -EXPORT_SYMBOL_GPL vmlinux 0xb61a5bf1 spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -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 0xb649b0fc bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0xb6514de4 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb655a4a0 ahci_dev_classify -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 0xb6787346 sfp_unregister_socket -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 0xb69d71ab snd_soc_get_dai_id -EXPORT_SYMBOL_GPL vmlinux 0xb69e343b iomap_migrate_page -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 0xb70e058b xhci_drop_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xb71627b2 ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0xb7225c61 efivars_register -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 0xb7469f0f blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0xb748a25d __traceiter_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xb7491c17 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port -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 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 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 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 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 0xb8b728cf fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0xb8b891db fat_scan -EXPORT_SYMBOL_GPL vmlinux 0xb8bcc0cf dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0xb8c507e1 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8df4b16 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xb9015402 inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0xb9025022 virtio_check_driver_offered_feature -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 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 0xb9406d05 fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0xb9474b8f __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb94d6e5a sata_pmp_error_handler -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 0xb99527f5 dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0xb999d41e iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0xb99a22ef xfrm_audit_state_notfound -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 0xb9a51b9f validate_xmit_skb_list -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 0xb9dbea9e pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xb9dc0879 espintcp_push_skb -EXPORT_SYMBOL_GPL vmlinux 0xb9e67b72 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb9e87b94 bL_switcher_trace_trigger -EXPORT_SYMBOL_GPL vmlinux 0xb9f06120 snd_soc_register_card -EXPORT_SYMBOL_GPL vmlinux 0xb9f09eb0 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0xba032f94 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0xba18a589 da903x_reads -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 0xba3ba2f3 mtd_table_mutex -EXPORT_SYMBOL_GPL vmlinux 0xba4a7244 sfp_bus_add_upstream -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 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 0xbade34af snd_soc_bytes_info -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 0xbaf76c8e gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0xbb059ba9 device_match_any -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb224dd3 cpuidle_get_driver -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 0xbb4c7570 pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xbb5fd3f0 nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0xbb63c73e cpts_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback -EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xbb6dd101 yield_to -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 0xbb83287d rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xbb911c60 iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0xbb984810 mtd_unpoint -EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put -EXPORT_SYMBOL_GPL vmlinux 0xbbcbcca5 __cci_control_port_by_device -EXPORT_SYMBOL_GPL vmlinux 0xbbd30b86 perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0xbbea2671 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xbbf38272 lochnagar_update_config -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 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 0xbc3d4cb8 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xbc481560 devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbc4b32c4 snd_soc_component_set_pll -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 0xbc5ac948 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0xbc5d0f93 usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -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 0xbc98343f ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xbc999ca1 snd_dmaengine_pcm_register -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 0xbcd8ba9d od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0xbcd9f616 init_pid_ns -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 0xbce36a7e __iptunnel_pull_header -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 0xbd149ffc generic_handle_domain_irq -EXPORT_SYMBOL_GPL vmlinux 0xbd29e886 of_device_request_module -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd71b98f __page_mapcount -EXPORT_SYMBOL_GPL vmlinux 0xbd83be74 lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0xbd9e9c9c mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL vmlinux 0xbd9f9463 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xbda4a078 kstrdup_quotable_cmdline -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 0xbdccdb1e gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0xbddb354d blk_queue_set_zoned -EXPORT_SYMBOL_GPL vmlinux 0xbde15d31 __tcp_send_ack -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 0xbdfd1e77 crypto_stats_get -EXPORT_SYMBOL_GPL vmlinux 0xbe19ff9e device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xbe316df0 umd_unload_blob -EXPORT_SYMBOL_GPL vmlinux 0xbe378516 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0xbe41559c iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe723d2d ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0xbe84c5c0 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbea56a9a snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeb7ec02 dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0xbeb7f2c5 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0xbec5473b usb_ep_fifo_status -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 0xbefff845 devlink_resource_register -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 0xbf397cb3 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0xbf4a5860 blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0xbf554641 __tracepoint_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0xbf5a4f42 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0xbf67f88c attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0xbf9a3a37 soc_device_match -EXPORT_SYMBOL_GPL vmlinux 0xbfa455b7 devlink_param_register -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 0xbfd69467 __traceiter_sched_update_nr_running_tp -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 0xc0057a04 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xc018e1a0 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xc02a4e16 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xc02d7f9d trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0xc02faf62 cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0xc02fe1c3 pm_generic_suspend_late -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 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 -EXPORT_SYMBOL_GPL vmlinux 0xc0905ea4 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0c16e9c trace_get_event_file -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 0xc0fc022e inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xc10655da xas_get_mark -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 0xc13497bb wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0xc14469e5 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0xc14e6f1e mtk_pinconf_bias_get -EXPORT_SYMBOL_GPL vmlinux 0xc151936c tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xc161a7d8 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xc171a95b phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc17993a7 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0xc17b7027 sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL vmlinux 0xc1872da1 dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0xc1b66dd7 disk_force_media_change -EXPORT_SYMBOL_GPL vmlinux 0xc1ca6ef2 mtk_eint_find_irq -EXPORT_SYMBOL_GPL vmlinux 0xc1d536e3 cpufreq_dbs_governor_init -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 0xc222ead3 xas_find_marked -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc23183c9 put_pid -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 0xc254bc62 tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0xc254db4a usb_get_hcd -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 0xc29badfa clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0xc2a6f352 mptcp_pm_get_add_addr_signal_max -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 0xc2cfa727 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0xc2da4d74 nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0xc2db7e18 xas_find -EXPORT_SYMBOL_GPL vmlinux 0xc2e8c85d inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0xc2f42e09 iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xc30613f1 usb_del_gadget_udc -EXPORT_SYMBOL_GPL vmlinux 0xc331a86e component_del -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc359aa3c devlink_rate_leaf_create -EXPORT_SYMBOL_GPL vmlinux 0xc36ba17f fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xc374e8fe ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xc379784a usb_intf_get_dma_device -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 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 0xc3bfdb84 tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0xc3c13272 sk_msg_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3cc5d1d rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xc3d9584b snd_soc_runtime_action -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 0xc3e746a8 pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3f06777 event_triggers_post_call -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 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 0xc4265930 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc4324e09 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xc43c1e48 irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0xc442e1e4 __traceiter_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0xc4516929 gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -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 0xc474ab15 sdhci_pltfm_init -EXPORT_SYMBOL_GPL vmlinux 0xc47c747e tegra_bpmp_get -EXPORT_SYMBOL_GPL vmlinux 0xc4876819 tcp_enter_memory_pressure -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 0xc4beede1 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0xc4c3338e dma_resv_get_fences -EXPORT_SYMBOL_GPL vmlinux 0xc4c82bc0 alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0xc4cf2420 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0xc4eb0fe8 __skb_get_hash_symmetric -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 0xc518f8bd usb_hc_died -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 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 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 0xc5777fca linear_range_get_selector_low_array -EXPORT_SYMBOL_GPL vmlinux 0xc57c2acd put_device -EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc59353d6 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0xc5b04351 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xc5c7b3da debugfs_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0xc5d17001 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xc5e509fe clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0xc6056f0d irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0xc607eb21 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0xc60a2c6e snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL vmlinux 0xc60f4475 virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc61be7bd dma_need_sync -EXPORT_SYMBOL_GPL vmlinux 0xc6314893 mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0xc645fcf3 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xc658ef30 ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0xc667e9d4 gpiod_set_config -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc66f938b securityfs_create_symlink -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 -EXPORT_SYMBOL_GPL vmlinux 0xc699ecfa crypto_alloc_sync_skcipher -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 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 0xc703f615 of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0xc711d632 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc71f6fdb alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0xc725bf3e cookie_tcp_reqsk_alloc -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 0xc736e3a4 crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0xc74c4965 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0xc7571c4f skb_gso_validate_network_len -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 0xc78052c7 fat_attach -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 0xc7a00d42 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7a3c1c0 nf_queue_entry_free -EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7ab3313 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xc7bb71a7 dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xc7c28cf9 umd_cleanup_helper -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 0xc7f22bc0 badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0xc7f50124 arm_iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -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 -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 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc835e1a3 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL vmlinux 0xc848d8dc usb_ep_queue -EXPORT_SYMBOL_GPL vmlinux 0xc84a7190 sk_clone_lock -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 0xc86a70ff ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xc874c2ce dw_pcie_ep_init_complete -EXPORT_SYMBOL_GPL vmlinux 0xc8789b73 unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xc886c801 cpufreq_enable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0xc88c4d93 tty_get_icount -EXPORT_SYMBOL_GPL vmlinux 0xc8b284b1 pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0xc8ba7b76 mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xc8cc23fb pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0xc8cea2de __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xc8d070dc rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0xc8dc32e3 snd_soc_lookup_component_nolocked -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 0xc8e967d5 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xc8eb2989 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xc9172aff pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xc9190c52 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0xc929f057 device_create_with_groups -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 0xc9798adc sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0xc9825415 percpu_ref_is_zero -EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -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 0xc9af03dd of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0xc9b2df57 __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0xc9cf2df0 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9f0ed80 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit -EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL vmlinux 0xca0d2fa1 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xca3a59dc sk_msg_memcopy_from_iter -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 0xca6a4cbb find_vpid -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 0xcab48605 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0xcaba7e34 pin_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcabe1206 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcacbf893 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xcad72554 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xcadc1a5f nfs_ssc_client_tbl -EXPORT_SYMBOL_GPL vmlinux 0xcae01961 snd_compr_stop_error -EXPORT_SYMBOL_GPL vmlinux 0xcae9e1ee inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0xcaecc540 kmsg_dump_get_line -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 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 0xcb4e736b tty_find_polling_driver -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 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 0xcbc8e31d devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbedc032 usb_add_gadget -EXPORT_SYMBOL_GPL vmlinux 0xcbf3617f rhashtable_walk_start_check -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 0xcc249b93 sched_set_fifo -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 0xcc3cb7e6 gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xcc40d99b __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xcc421600 __tracepoint_rpm_suspend -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 0xcc6ce7fc devlink_region_snapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0xcc7b67db pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xcc89c95b devlink_port_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc92ed0e bpf_prog_destroy -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 0xcd0045a7 sk_msg_free_nocharge -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 0xcd0f1709 switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0xcd1812e1 sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0xcd1c5b7d do_truncate -EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -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 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 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 0xcdf7ad13 led_init_core -EXPORT_SYMBOL_GPL vmlinux 0xce0d1d7d devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xce497601 sk_msg_zerocopy_from_iter -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 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce809354 devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0xce862da4 mtd_block_isreserved -EXPORT_SYMBOL_GPL vmlinux 0xce96f04a pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0xcea80ae5 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0xcecee6b9 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xced9fb65 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee41e6e tcp_ca_get_key_by_name -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 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 0xcef947ce device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xcf13bd26 devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0xcf2cfbd4 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xcf3baaa2 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xcf4c0d9e ahci_shost_attrs -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 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 0xcfac8d63 setfl -EXPORT_SYMBOL_GPL vmlinux 0xcfb4959b devlink_param_driverinit_value_set -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 0xd01ced20 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0xd02e343d devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd03b0ea8 ip_icmp_error_rfc4884 -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 0xd05599f4 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xd0568993 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xd05fd67e skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -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 0xd09cba3e regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xd0ae7012 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd0b32b13 inet_ctl_sock_create -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 0xd0ec5e7d ahci_platform_ops -EXPORT_SYMBOL_GPL vmlinux 0xd0f11c78 __traceiter_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xd0fa336c bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0xd0fb9c41 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xd111715a pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0xd12159a7 stack_trace_snprint -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 0xd1598a53 efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0xd16266e7 fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0xd171929d sdhci_get_property -EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0xd18320a4 __traceiter_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0xd1857f65 dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0xd1866dda dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xd19b4f43 dst_blackhole_mtu -EXPORT_SYMBOL_GPL vmlinux 0xd1a6dfca acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update -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 0xd1f2eee2 nf_logger_find_get -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 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 0xd259ecc8 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0xd26bedc6 sfp_bus_find_fwnode -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 0xd28616ec udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0xd297a790 xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2b23451 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xd2b7790b device_destroy -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 0xd2d5390e task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xd2d7a675 scmi_protocol_register -EXPORT_SYMBOL_GPL vmlinux 0xd2d92fe1 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0xd2e5eca1 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd2f02347 bpf_sk_storage_diag_put -EXPORT_SYMBOL_GPL vmlinux 0xd3046552 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xd3054b32 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0xd3076b9b device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts -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 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 0xd3be8173 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xd3bf7e28 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0xd3c672b8 nand_subop_get_data_len -EXPORT_SYMBOL_GPL vmlinux 0xd3d5da29 strp_done -EXPORT_SYMBOL_GPL vmlinux 0xd3d5ed8b ip6_redirect -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 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 0xd437b066 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd45914d6 device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xd45d49f0 sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xd45daf75 sk_clear_memalloc -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 -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 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 0xd4d9155b ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd4f9e03d genphy_c45_loopback -EXPORT_SYMBOL_GPL vmlinux 0xd51d83f0 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xd528cc82 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value -EXPORT_SYMBOL_GPL vmlinux 0xd5376fc1 kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0xd5383827 ip6_route_output_flags_noref -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 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 0xd56ffd44 scmi_protocol_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd57271a6 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0xd577badf pm_genpd_remove_subdomain -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 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd59d1665 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL vmlinux 0xd5ac24e5 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xd5e9d9b8 usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL vmlinux 0xd60d5418 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0xd610a391 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xd6164816 blkg_rwstat_exit -EXPORT_SYMBOL_GPL vmlinux 0xd61e0df2 ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xd62114a9 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0xd6281851 snd_card_disconnect_sync -EXPORT_SYMBOL_GPL vmlinux 0xd62aea63 devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0xd6353583 snd_device_initialize -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 0xd653b126 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0xd66ff727 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd6983f6c clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0xd69de0e7 devm_gpiod_get_optional -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 0xd71e0866 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xd7323b03 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd74beb6c crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xd75a4427 lwtunnel_xmit -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 0xd7b411cb __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0xd7c31686 fixed_phy_change_carrier -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 0xd7e38818 snd_soc_add_component_controls -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 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 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 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 0xd8dca8c1 usb_ep_set_halt -EXPORT_SYMBOL_GPL vmlinux 0xd8eb1296 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0xd8ec5d97 devlink_port_attrs_pci_pf_set -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 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 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 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 0xd97b8474 skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0xd97c83f8 metadata_dst_alloc_percpu -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 -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 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 0xd9ef1ab5 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0xd9f18b87 __ata_ehi_push_desc -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 0xda28c702 sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda37411d __platform_create_bundle -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 0xda8c8cce usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xda8cc3b9 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda8d39a7 fsnotify_put_group -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 0xdaa88687 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xdaab5e89 netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0xdab0214e snd_soc_bytes_get -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 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdaffc271 md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xdb072e47 bio_trim -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 0xdb427858 bpf_trace_run9 -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 0xdb751351 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0xdb78f032 inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0xdb79dde8 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0xdb86f4e8 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0xdb89f124 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -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 0xdbdb0e8b request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency -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 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 0xdc0cbb39 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xdc117c4e blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xdc360a11 devm_hwrng_unregister -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 -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 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -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 0xdd0762df set_worker_desc -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 0xdd5842f7 __traceiter_br_fdb_external_learn_add -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 0xdd6ef6fd devm_fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xdd7da7c8 iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xdd80a464 crypto_stats_aead_encrypt -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 0xdd8dcacd netlink_add_tap -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 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddc39a6f trace_array_put -EXPORT_SYMBOL_GPL vmlinux 0xddd6a7be devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdddb9d57 percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0xde007e37 rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0xde02a1a8 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xde052f34 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0xde10a8a4 pci_dev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xde1ecccf of_find_spi_device_by_node -EXPORT_SYMBOL_GPL vmlinux 0xde2505da blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0xde25ba3a tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0xde2d5c03 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xde2e04e2 crypto_stats_kpp_compute_shared_secret -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 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 0xde67b123 crypto_stats_akcipher_encrypt -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 0xde87dd6a page_cache_sync_ra -EXPORT_SYMBOL_GPL vmlinux 0xde9f3aeb sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0xdeaf7500 skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0xdeb13b71 devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0xdeba1752 amba_device_add -EXPORT_SYMBOL_GPL vmlinux 0xded9a931 scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0xdee8e9f3 sdhci_end_tuning -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 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 0xdf5b15e0 usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdf8e6227 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0xdf946e36 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xdf9993e4 fib6_new_table -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 0xdff94602 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0xdff9b29e device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0xe00ff670 synth_event_gen_cmd_array_start -EXPORT_SYMBOL_GPL vmlinux 0xe022496d dev_err_probe -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 0xe035a2a9 tcp_register_congestion_control -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 0xe0a80509 usb_ep_clear_halt -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 0xe111a8c8 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0xe124ef5a serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0xe13158b9 sysfs_remove_link_from_group -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 0xe19ac44b ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xe19c20b0 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0xe1b32de7 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xe1bd5e38 get_net_ns_by_pid -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 0xe1e07618 extcon_get_property -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 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 0xe23a6a35 devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xe23cd479 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0xe24ea78f nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0xe26cd918 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xe2717792 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xe282c5aa __tracepoint_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0xe287a961 pingv6_ops -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 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 0xe2d0cc58 bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0xe2d5256f usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xe2dbb1b1 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe2dc4bc0 seg6_do_srh_inline -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 0xe2f47aee nexthop_find_by_id -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 0xe32ba31b auxiliary_find_device -EXPORT_SYMBOL_GPL vmlinux 0xe32d2479 xhci_reset_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0xe3332816 crypto_stats_rng_seed -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 0xe37def00 snd_dmaengine_pcm_close -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 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 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 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 0xe41794a6 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0xe4204910 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0xe4235282 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0xe427c5a4 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe440690f snd_soc_link_compr_set_params -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 0xe47022c0 genphy_c45_pma_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe4725c68 devlink_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe48a8439 skcipher_alloc_instance_simple -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 0xe4ad1b41 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xe4afb139 device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xe4b6a594 skb_clone_tx_timestamp -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 0xe4c9f178 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0xe4ccbe45 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0xe4d2c95c regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0xe4d8b235 nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4e899e6 alloc_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0xe511c81f ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0xe52ecbf5 lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0xe534b920 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0xe539cbf4 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0xe53b5897 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xe543bee5 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xe567f080 alloc_empty_file -EXPORT_SYMBOL_GPL vmlinux 0xe5831a89 sdhci_suspend_host -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 0xe594ac6a regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xe598e313 xhci_get_ep_ctx -EXPORT_SYMBOL_GPL vmlinux 0xe59efb0e musb_clearb -EXPORT_SYMBOL_GPL vmlinux 0xe5af06a1 tpm_send -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 0xe5d1def0 kthread_data -EXPORT_SYMBOL_GPL vmlinux 0xe60903c9 sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe6417d8f debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0xe641d5f0 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xe6577334 dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0xe6586747 cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0xe664ad58 __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0xe668835c __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0xe6733559 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0xe67cb84e devm_clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xe6862ac5 tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0xe6892dbb icc_provider_del -EXPORT_SYMBOL_GPL vmlinux 0xe6a257f1 divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xe6b9c9ea da903x_clr_bits -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 0xe6d0da4a devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6ed4449 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0xe6f5848b __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert -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 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe75625fb cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xe75f422e fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe76c8008 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xe7824395 snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe7916b46 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0xe7a308f1 sysfs_create_file_ns -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 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7e2aa43 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe7eaedeb of_phandle_iterator_next -EXPORT_SYMBOL_GPL vmlinux 0xe80a89d6 snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL vmlinux 0xe80e8199 phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe8267174 rio_release_inb_pwrite -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 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 0xe85a9fd3 cpu_cluster_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xe85db6eb led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe86d2fbe skb_send_sock_locked -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 0xe8a87281 power_supply_register_no_ws -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 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 0xe9199221 devlink_resource_occ_get_unregister -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 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 0xe989a69c phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xe990ff90 cgroup_get_e_css -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 0xe99b2951 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0xe9a22673 topology_set_thermal_pressure -EXPORT_SYMBOL_GPL vmlinux 0xe9a7fe16 nvmem_cell_read -EXPORT_SYMBOL_GPL vmlinux 0xe9addfa9 nanddev_init -EXPORT_SYMBOL_GPL vmlinux 0xe9b47bb9 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL vmlinux 0xe9b9fffa irq_alloc_generic_chip -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 0xe9df912b blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xe9e0257b thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0xe9e39670 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0xe9e5659a mptcp_token_get_sock -EXPORT_SYMBOL_GPL vmlinux 0xe9ef89cf ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0xe9f0036e pci_restore_msi_state -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 0xea0910fc sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0xea114216 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea1bb291 bL_switcher_get_enabled -EXPORT_SYMBOL_GPL vmlinux 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 0xea36d138 ipv4_update_pmtu -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 0xea478c24 crypto_type_has_alg -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 0xea50cd51 crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL vmlinux 0xea573ace gpiochip_irq_unmap -EXPORT_SYMBOL_GPL vmlinux 0xea5d4898 snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL vmlinux 0xea642b48 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xea6d03f3 __kernel_write -EXPORT_SYMBOL_GPL vmlinux 0xea6fa823 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xea7ba81c do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0xea8123d2 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0xea87b706 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0xea92ea43 snd_soc_add_component -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 0xeab6f40d scsi_free_sgtables -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 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 0xeb2f825c init_rs_gfp -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 0xeb58e7b6 trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0xeb6505ba msg_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0xeb673a00 meson_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0xeb6ddcd4 ahci_platform_suspend -EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk -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 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 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 0xec2457ad dev_pm_opp_adjust_voltage -EXPORT_SYMBOL_GPL vmlinux 0xec2bc927 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xec2c804e fib_rule_matchall -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 0xec523f88 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xec86b3c9 spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0xec9883a4 pm_genpd_opp_to_performance_state -EXPORT_SYMBOL_GPL vmlinux 0xecd4e4e6 devm_hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0xecd5c467 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xecfb6563 regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0xecff982a rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xed105799 icc_get_name -EXPORT_SYMBOL_GPL vmlinux 0xed1a8023 dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0xed1d2f5a inet_ehash_nolisten -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 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 0xeda0a690 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xedc4893b fb_deferred_io_fsync -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 0xee1636ab css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0xee230a86 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0xee2c092f __clk_hw_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -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 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 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 0xeefa116f dma_map_sgtable -EXPORT_SYMBOL_GPL vmlinux 0xef010a76 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0xef0524b5 bpf_trace_run4 -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 0xef2ee8a8 snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xef34d547 dev_pm_genpd_add_notifier -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 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 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 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefaace6e mv_mbus_dram_info -EXPORT_SYMBOL_GPL vmlinux 0xefabceb6 ahci_reset_em -EXPORT_SYMBOL_GPL vmlinux 0xefad2831 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0xefb7a3c8 usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0xefbfabfe __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xefc146f3 snd_soc_dai_compr_set_params -EXPORT_SYMBOL_GPL vmlinux 0xefc5cdeb fwnode_get_phy_node -EXPORT_SYMBOL_GPL vmlinux 0xefc96328 dax_region_put -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 0xf058c0c6 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid -EXPORT_SYMBOL_GPL vmlinux 0xf0723738 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0xf073dd41 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf076c071 mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0xf079f42e snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL vmlinux 0xf07c4350 pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf096426f serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0xf0973c2e dev_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0xf09e8ecc regulator_bulk_unregister_supply_alias -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 0xf0e61a69 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xf0eb661c sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0xf0f50857 fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf0f95e51 musb_readl -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 0xf14315b2 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0xf1432cef ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xf14d22cb tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0xf15e69c6 icc_provider_add -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 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 0xf1a87ff2 sch_frag_xmit_hook -EXPORT_SYMBOL_GPL vmlinux 0xf1ab3dab nvmem_device_find -EXPORT_SYMBOL_GPL vmlinux 0xf1b44fef pskb_put -EXPORT_SYMBOL_GPL vmlinux 0xf1b9f89e serdev_device_write_room -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 0xf1dd5609 validate_xmit_xfrm -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 0xf23c17bc gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0xf243068f snd_soc_find_dai -EXPORT_SYMBOL_GPL vmlinux 0xf2464a8a iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0xf24844f1 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0xf24f3547 msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0xf2519e89 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0xf27bb606 __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf2a70575 blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0xf2b07e53 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0xf2b3566d mptcp_subflow_init_cookie_req -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 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 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 0xf32cb506 ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf3429bee device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xf342fd5d freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf34ca5bc srcu_notifier_call_chain -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 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3bf5827 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xf3ccc05e ksm_madvise -EXPORT_SYMBOL_GPL vmlinux 0xf3e0e919 __irq_resolve_mapping -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 0xf4189ad8 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xf41f05ef cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0xf422f0c5 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0xf4249420 __traceiter_pelt_rt_tp -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 0xf4676805 fib_rules_seq_read -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 0xf47654df irq_check_status_bit -EXPORT_SYMBOL_GPL vmlinux 0xf47de486 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xf480c22c xfrm_audit_state_replay -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 0xf4bc53b8 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf4d13817 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL vmlinux 0xf4d6fbc0 devlink_param_unpublish -EXPORT_SYMBOL_GPL vmlinux 0xf4e3cda7 pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0xf4e7fc38 mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0xf4f51d5b devlink_resource_occ_get_register -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 0xf529a49b snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL vmlinux 0xf52e14e9 snmp_fold_field64 -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 0xf56b9d5d wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf58edfd7 poll_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xf5984b3b usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range -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 -EXPORT_SYMBOL_GPL vmlinux 0xf5c21d66 evm_inode_init_security -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 0xf5f10c8f dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf5f53a44 irq_domain_pop_irq -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 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 0xf6a49a41 snd_soc_unregister_card -EXPORT_SYMBOL_GPL vmlinux 0xf6b043f1 rhashtable_walk_next -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 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 0xf72a65ea tty_get_char_size -EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits -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 0xf75f84af sdhci_execute_tuning -EXPORT_SYMBOL_GPL vmlinux 0xf7671821 __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer -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 0xf7927de2 devlink_params_publish -EXPORT_SYMBOL_GPL vmlinux 0xf79e6bce to_of_pinfo -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 0xf7c67923 mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite -EXPORT_SYMBOL_GPL vmlinux 0xf7e601d3 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0xf7f79692 fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0xf7f9a8c4 ip6_datagram_connect_v6_only -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 0xf82cb36c ping_init_sock -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 0xf849693d irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0xf8502913 devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xf859ffc3 pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0xf85dc8c3 __traceiter_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xf8731bf6 clk_regmap_mux_ro_ops -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 0xf89c271a to_software_node -EXPORT_SYMBOL_GPL vmlinux 0xf8ab2dc4 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0xf8afc957 phy_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xf8b12496 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0xf8b1e21e regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0xf8b22779 imx_pcm_fiq_exit -EXPORT_SYMBOL_GPL vmlinux 0xf8ebd1f1 __sdhci_add_host -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 0xf8fd6f6e __dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0xf9090802 fwnode_get_name -EXPORT_SYMBOL_GPL vmlinux 0xf90feae2 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0xf91a3a15 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xf933f79a pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0xf93442f1 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xf9632c8e dev_pm_genpd_set_next_wakeup -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 0xf9925842 mptcp_pm_get_add_addr_accept_max -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 0xf9adebb3 blk_add_driver_data -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 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 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa2bc538 kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xfa570475 balloon_page_list_enqueue -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 0xfa74f2fe inet_getpeer -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 0xfa8d8ac1 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xfa9cdc66 devres_release -EXPORT_SYMBOL_GPL vmlinux 0xfaab0540 snd_soc_remove_pcm_runtime -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 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 0xfaee106b of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0xfaf598c6 snd_ctl_request_layer -EXPORT_SYMBOL_GPL vmlinux 0xfb0fa4f3 ohci_suspend -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 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 0xfb743ff9 skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xfb7a4a7f btree_last -EXPORT_SYMBOL_GPL vmlinux 0xfb7bbaa4 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL vmlinux 0xfb96f72b topology_set_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xfb9c40d7 inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -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 -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 0xfc205318 dmaengine_desc_set_metadata_len -EXPORT_SYMBOL_GPL vmlinux 0xfc3f6b92 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xfc407d4a crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0xfc6aa8ef cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xfc80c326 dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0xfc932e5e iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0xfca7fac4 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xfca9be02 imx_pinctrl_probe -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 0xfd070c10 ip6_dst_lookup_tunnel -EXPORT_SYMBOL_GPL vmlinux 0xfd23edbf xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0xfd2b0a2c sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0xfd39c4b7 xdp_master_redirect -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 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 0xfd69897e skb_segment_list -EXPORT_SYMBOL_GPL vmlinux 0xfd7309d3 devlink_net -EXPORT_SYMBOL_GPL vmlinux 0xfd762d58 snd_soc_dai_compr_trigger -EXPORT_SYMBOL_GPL vmlinux 0xfd80c593 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xfd812477 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xfd9174eb mmu_interval_notifier_remove -EXPORT_SYMBOL_GPL vmlinux 0xfdab64eb blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -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 -EXPORT_SYMBOL_GPL vmlinux 0xfdec5cf8 __get_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0xfdee6cd4 mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xfdf4eeac xhci_check_bandwidth -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 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 0xfe88e6b6 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfe9a6b00 dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0xfe9cdffd regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfeaf4537 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0xfec0b9e6 phy_led_triggers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup -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 0xfeeff70d blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert -EXPORT_SYMBOL_GPL vmlinux 0xff1b4ac1 bpf_prog_get_type_dev -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 0xff5076e2 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0xff5b2478 fwnode_graph_get_next_endpoint -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 0xff842f8b netlink_has_listeners -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 0xffb38223 devm_hwspin_lock_register -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 0xffed04d4 ip6_route_output_flags -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 -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x12443ed3 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x2976a137 __adis_read_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x4c39892d adis_init drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x72ec55ce adis_update_scan_mode drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x853fe324 __adis_update_bits_base drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x8cc3be60 adis_single_conversion drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xaa0511d0 __adis_write_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xc8c06237 devm_adis_probe_trigger drivers/iio/imu/adis_lib -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 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 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 -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 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 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 0x1482d39f nvme_execute_passthru_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x81d5ff73 nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xcfe930ce nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xecd93801 nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xf825a4e9 nvme_ctrl_from_file 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 -PMBUS EXPORT_SYMBOL_GPL 0x37b6714c pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x54f9e6ce pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x60d570b3 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x610d5719 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x6199c88b pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x6c79ccd3 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x6e06cec2 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x7ea7035a pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xa17fe020 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xbfbdf277 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xc541f60e pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xd325d87c pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xdc844957 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -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 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 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 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 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 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 reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/armhf/generic-lpae +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/armhf/generic-lpae @@ -1,25133 +0,0 @@ -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 -CXL EXPORT_SYMBOL_GPL 0x452e38b2 is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4f74c70f cxl_driver_unregister drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6f4190e1 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x96b3e755 to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa04864c9 devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa239b68b devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xba1bc34d cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xba9ed8f1 cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xbd641979 devm_cxl_add_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd0a0c234 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd3bf1f2f __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe53d7ab6 cxl_probe_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe719b8f2 cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xeb179d10 cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfb996ce7 cxl_add_dport drivers/cxl/core/cxl_core -EXPORT_SYMBOL arch/arm/crypto/chacha-neon 0x220b49ab chacha_crypt_arch -EXPORT_SYMBOL arch/arm/crypto/chacha-neon 0xdc94f829 chacha_init_arch -EXPORT_SYMBOL arch/arm/crypto/chacha-neon 0xdd8ec6bd hchacha_block_arch -EXPORT_SYMBOL arch/arm/crypto/curve25519-neon 0x3c74a43e curve25519_base_arch -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 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 -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 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/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 0x01f809d3 pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0x18119523 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x4797862f pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x480ca75a pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0x7c391cc1 paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0x839f837f pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0x976bbd1b pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xb48b3893 paride_unregister -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/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 -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 0x5ae01cca 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 0x7de32894 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 0x84d1aa41 ipmi_smi_watcher_register -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 0xd6201972 ipmi_add_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 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/ipmi/kcs_bmc 0x07848f0a kcs_bmc_update_event_mask -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x0e8a9073 kcs_bmc_enable_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x25a2b8a0 kcs_bmc_update_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x31c2eab0 kcs_bmc_read_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x68ea8dba kcs_bmc_handle_event -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x886921c0 kcs_bmc_register_driver -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x9ecf9829 kcs_bmc_unregister_driver -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x9f8c088e kcs_bmc_add_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xbdf63b52 kcs_bmc_read_data -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xe8a54d6f kcs_bmc_write_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xf17aa4da kcs_bmc_remove_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xf6e6fec3 kcs_bmc_write_data -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xf9ceb0e4 kcs_bmc_disable_device -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x047f7173 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x4e69c4f2 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x53d3cd2d st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xf149ac8b st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x53e461de xillybus_cleanup_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x6dad3781 xillybus_find_inode -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xa7aa39b7 xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x1f736cd5 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xb734be3c xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xe71c49c3 xillybus_endpoint_remove -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 0x15baeb97 atmel_i2c_probe -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x4c87cef1 atmel_i2c_send_receive -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xab3164e0 atmel_i2c_enqueue -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfaab573f atmel_i2c_init_ecdh_cmd -EXPORT_SYMBOL drivers/firewire/firewire-core 0x04f78a02 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x17d8f805 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2690d413 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2a569605 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2ca66bef fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x329b7058 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3ca79385 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4cdc42fe fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d328248 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0x556601c3 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6203a6f7 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0x67348651 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x685d8a40 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x69f08f72 fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7ea9c1ba fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8b00ad43 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8ec4e37e fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x942bc3fd fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa6aa5cee fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xabd2a4b8 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb0dd972b fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb56b0d63 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbad6c59e fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcc148e54 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd0cbc5ea fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd6a4f25e fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0xdc51f277 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf673df19 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xfdbafd3d fw_iso_buffer_init -EXPORT_SYMBOL drivers/fpga/dfl 0x75aeb59e dfl_driver_unregister -EXPORT_SYMBOL drivers/fpga/dfl 0xbdc847e8 __dfl_driver_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00af0d00 drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01139609 drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x020747f6 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x027d500a drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0295807b drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02981c37 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02d9ca24 drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02f9189a drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x040d85b1 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x043812e5 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04c12702 drm_gem_fence_array_add_implicit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04dac34d drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07241eeb drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0787ea5c drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x088655d0 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08ca6864 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08e1312c drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09388a4d drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09a3d9e1 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09ac26e8 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b225ffb drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b8e0dc9 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ba61ce2 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c0f2ff5 drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cf33724 drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e1095a9 drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e6bbdea drm_dev_has_vblank -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 0x10165451 drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10c6833d drm_atomic_get_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11308bcb drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x113877d5 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11488f55 drm_crtc_vblank_helper_get_vblank_timestamp_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11c3eb9b drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11dfc1a4 drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1282908e drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x129b551d drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12aed66b drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13139a6b drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x141b4870 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x148776b5 drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14922db5 drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14d5d609 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x170fbd68 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x175caa4a drm_atomic_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x179d1968 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17bb0bed drm_mode_create_from_cmdline_mode -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 0x1ad3af0d drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bc06c50 drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c773e9a drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d1cb887 drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d354aac drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dcf4886 drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e1dfb8d drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e363645 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x205796ab drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2152776b drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21713718 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x228f361e drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x229d75d6 __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22c3c3db drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22f7a10e of_drm_get_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x237de18c drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f654d8 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x248794d9 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25860fa1 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x260dc965 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x267545dc drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2682a1d2 drm_client_modeset_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x268d917c drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27162ff0 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x273e7142 drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28c9d4dc drm_vblank_work_schedule -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2960efe5 drm_client_modeset_commit_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x299564d2 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a0deb78 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b501a46 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b659f21 drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b8e3951 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2be5bc4e drm_bridge_chain_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c66bc3c drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c9eb774 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dd0101d drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eb08246 drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ebc1c14 drm_gem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x303c6256 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31885efe drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3199ebd2 drm_plane_get_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31e4d359 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x320f982e drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3295d023 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3359cd5c drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3456695d drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34664a79 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3475452e drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35a4b000 drm_connector_attach_dp_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35bf6be5 __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35e13c3b drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36c25f2c drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x376cd531 drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x380b5fbb __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39093b79 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a453ed8 drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3aa1c004 drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3acd7f46 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b2f76c0 drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b95c825 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c860f32 drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ca7714e drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ca83da8 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d0c9493 drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d64ce87 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d892758 drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e0cfa68 drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fbe029d drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ff86c6d drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4039879a drm_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42c06e3c __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43c12f65 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43ecc604 drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43ff6935 drm_connector_set_tile_property -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 0x45801056 drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4630ba3a drm_connector_attach_hdr_output_metadata_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46c0c1e9 drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46c580ed drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47301336 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4822078a drm_gem_cma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4834906a drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48cc1c71 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x496e3921 devm_aperture_acquire_from_firmware -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 0x4ae473f6 drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d73b36c drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dce8df3 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e0874a6 drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e0f8428 drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e9e256b drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f8169e2 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50f3762c drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50ffb8a4 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51f25239 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51fb7ee3 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x521aa76a drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x529de2a0 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53275d0c drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53294a07 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53a05710 drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5436b4c6 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54563411 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55c24761 drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55f0b7c4 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55f8eaa5 drm_dev_put -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 0x57ba4c11 drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57e8ee03 drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x584ed5a0 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x589faf4c drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x596ce3ae drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59f8aa79 drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cbbb164 drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd8b3cb drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d0f0384 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5eb02c0d drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ec3e3bf drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ece8202 drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ef247ac drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f2ed4c5 drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f4d7f49 drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x604d4772 drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x608a3290 drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61267b31 drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x613ddba3 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x617ae9bf drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x626e9f3d drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62bd5b12 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64611be8 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6555ac6d drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x676bbb32 drm_crtc_commit_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x691aba9b drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6962dfc8 __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a39aaf8 drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ab69a1c drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ad55020 drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ae73410 drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b0b9550 drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b2a36a3 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b784d07 drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6be11418 drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bef0e16 drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c2a2ac4 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c63b0fe drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ccfe53e drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d5a9218 drm_crtc_vblank_helper_get_vblank_timestamp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e58d089 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6efdc111 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f7445d7 __drmm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fe8d0e6 drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71221d52 drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x725388d4 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x746bea51 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74eaf26b drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x759df6ce drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x763ed7fc drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x776e575f drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77e1c9c3 drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a3a792d drm_add_override_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b6e4700 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ba9c1ba drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d85e73a drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e016d38 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ed0720e drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80c9a3ea drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x815ed702 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8173155a drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8173ba7b drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8253ab15 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x828a3d95 drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83caa414 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83d7a842 drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83dd930f drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86276ea6 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x869a42ea drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87aa3522 drm_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x889cba6a drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88f0f985 drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88fa7fa6 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8908ddbf drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x895ddb74 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b140118 drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bae76f8 __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d3711c9 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d647138 drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d9d3b4e drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dcca9d6 drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e3ff29e drm_atomic_bridge_chain_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f5bd0ba drm_hdmi_avi_infoframe_bars -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f79d192 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fed0891 drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x908f86d5 drm_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x923cf1e0 drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93669390 drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93bc6c74 drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94097703 drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x944a9517 drm_connector_attach_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x945f0f94 drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94850513 drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94b11871 drm_gem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x955e2033 drm_hdmi_avi_infoframe_colorspace -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95be9af9 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9624d9a6 drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9636cc55 drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x973575fc drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x976e5e27 drm_prime_sg_to_page_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97728721 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a3e573f drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a6ac5f4 drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9abe6c27 drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b259c07 drm_connector_set_panel_orientation -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 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e386ee9 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ebba417 drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f3228c4 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0287b3b drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa05b38f8 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa12fc759 drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2c80b8e drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2dc12cd drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2f596be drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa316aec9 drm_of_crtc_port_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa43301d6 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5d6e249 drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5f04469 drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa65bdf3c drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6915fe2 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6ffd4ed drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7486b43 drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7820aff drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7bf7a70 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa92c15f0 drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9860001 drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaabb7868 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab0c9cd5 drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xabacf5ae drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xabb4224a drm_property_destroy -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 0xaf0309fb drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf81edfd drm_vblank_work_flush -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 0xb0fe5d4d drmm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb29c987b drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2f81fd0 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb305010e drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb30c9b02 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb35f84f1 drm_gem_shmem_get_pages -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 0xb498c3e8 drm_gem_cma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb52cda4c drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5dcc588 drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5f96757 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7167f22 drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb72798b2 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8603483 drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb910dd7c drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9aa044a drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcf968e1 drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf36b425 drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc05fee8e drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1773d21 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc39d4171 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5c331a5 drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5c369a2 drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5e815b9 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc73fd249 __drmm_add_action_or_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7b56ed3 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc845d7d3 drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc919ccd2 drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc943a6d4 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca2b4ada drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc2d09b9 drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc8d3baf drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc22553 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd2f9c65 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb40a00 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb69618 drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce4ca7c5 drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0c80b15 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1adb844 drm_panel_of_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1d4f086 drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1fb9099 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1fc5f14 drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1ff6b90 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2037d44 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2718089 drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2b02bf8 drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd37612dc drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3ce622f drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4132cc6 drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5d0eefb drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6b76797 drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd79704e9 drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7c610aa drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7e72d24 drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd84889c3 drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8961b43 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9064812 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9621b05 drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdaa4d1a9 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb8ef577 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc833fbb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd541a2e drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd671fc8 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd7ea82d drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xddb51b71 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xddd8ba45 drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xded7cd8d drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf5aed62 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe04aacd1 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe059b1e1 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2205807 drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe245c7da drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe378efec drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe49f8d1d drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4dd778a drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe54672ea __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5b74bc0 drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5e6536e drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7412c84 drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7ef6690 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe812dc98 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe84a23e7 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe93a64e6 drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb6b7e2e drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb73b80c drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec617aa8 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed2cd991 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed4a165a drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed4e67f2 drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef060ab2 drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf053e7d5 drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf103237a drm_gem_dmabuf_vmap -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 0xf28d1cbe drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2efae94 drm_atomic_set_fence_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf30876fa drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf35ee531 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf41e7f85 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf52a3e7f drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5860832 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5c60df8 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf70d6f29 drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf79cf7c1 drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7f332ce drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8295db6 drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf84cd211 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf85a81c2 drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9a5ebd7 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa1ae65b drm_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa266aaa of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc762858 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcb261d0 drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd662ab1 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd9df39c drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe1d436a drmm_kfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe2408ee drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffd9de68 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffea0205 drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0065ff88 __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0113a8d4 drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x019f3c79 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01cbcb4a __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02469587 drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x025ae291 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02f8c144 drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x031d0654 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x038ad0a4 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04492005 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x045e52a6 drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07d3fb7f drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x085f4330 drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x086c8b5d drm_gem_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09559be6 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09561274 drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0988ac74 drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ac6e15a drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b197a5d drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b412d59 drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b7b86c1 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bacff90 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bf59e49 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d8cb6c1 drm_dp_downstream_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x108b97a8 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10f96e25 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11fba725 drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x122c9077 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13dbcb08 drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13e2bafc drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14e2e8e5 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1753ef08 drm_dp_pcon_convert_rgb_to_ycbcr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18088bcf drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19d89ba2 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a25d446 drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b12977b __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cda1611 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d7132a6 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f4bad93 __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x212fdedb drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x228b7e13 drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2344ab36 drm_dp_pcon_frl_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23961837 drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23c316e5 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24356c0a drm_dp_get_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2696868c __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28566f4d drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x285a0c86 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x286e3e69 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cbae3e2 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d352da3 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2dec3a53 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e77d73d drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f5fcd3c drm_gem_simple_kms_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f6f4053 drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3032948b drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x306859fb __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30a4f4fe drm_dp_read_sink_count_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3456a298 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36feea97 drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3815e9c5 drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x381aa997 drm_edp_backlight_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a67f010 drm_gem_simple_kms_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3acbaa86 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ad93366 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bd2b7b0 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d505a01 __drmm_simple_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d5ff258 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3dfed3f2 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f191258 drm_dp_pcon_pps_default -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f39e5e5 drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4257c679 drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45ad2903 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45ec07ca drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x465d43ac drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4692620d drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x470aed95 drm_gem_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x492bd4f3 drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x499cd6ad drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c14bc05 drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c8b0568 drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d066f17 drm_dp_set_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f0e73fd drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fa9cc0b drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fc7a94b drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50afc03e drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51fb3b3c drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5218dc7f drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5326ef4e drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537b8893 drm_fb_blit_rect_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53a35bf5 drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5693c112 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56a663e9 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56cfec3e drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5791a7b8 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58e84cc7 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59e7a0d1 drm_atomic_helper_calc_timestamping_constants -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 0x5b9f16b9 drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61101c4c drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6197a510 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63a477fb drm_dp_downstream_min_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64652b9f drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65246936 drm_dp_pcon_frl_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6534af5f drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6580cf4f drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65ab96c4 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66be6160 drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x671795e2 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x672bf1f8 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6752130e drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68d8dce7 drm_dp_downstream_is_tmds -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ad65c8c drm_kms_helper_poll_init -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 0x6bc03792 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c01906d drm_dp_read_downstream_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x701e78e9 drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70a44d3f drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72e92088 drm_dp_send_query_stream_enc_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74ba78b9 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75353061 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75c41230 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76e3cb3d drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76e532a1 drm_atomic_helper_fake_vblank -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 0x77158738 drm_dp_pcon_hdmi_frl_link_error_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7802c480 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a5d69c6 drm_atomic_helper_bridge_propagate_bus_fmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a74b374 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae669d0 drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bba65fa drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bd2cc60 drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cc5f8df drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fae5d75 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x829b6048 drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82a9e637 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84afe7e4 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85eea189 drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x875107d9 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x876d86fe drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8803ede2 drm_dp_atomic_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88b44afa drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88ef6c22 drm_atomic_helper_check_planes -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 0x8b21cd7d drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b5d51e6 drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c20b019 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca84e15 drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d52f80f drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8de837be drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e4d2ff2 drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8eb26426 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ff348cf drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x907e2d75 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x923cb44c drm_dp_pcon_pps_override_param -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93006029 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9354754d drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x937802b6 devm_drm_of_get_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93b2de68 drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93e6d1c3 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93eb8ead __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9443df9a drm_edp_backlight_set_level -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9839ab19 drm_dp_vsc_sdp_log -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99dda741 drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a9b4729 drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ab30cd8 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b675f69 drm_dp_pcon_pps_override_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bdbdf8f drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c172562 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ce41206 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dab3051 drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e02b7a2 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fbd665d drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0006806 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0e10465 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0ebd3b9 drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa27a4517 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa36a014c drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa496abe7 devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa519ac7e drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5ff28ff drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa62ab878 __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa664b050 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa68ed401 drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7c36899 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa843606e drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8be0a5b drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8f41b9d drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa992e5f5 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa339180 drm_edp_backlight_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab6ad7bf drm_gem_fb_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab8ee949 drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xace176da drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadba00d9 __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae0d236a drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae2454f2 drm_dp_read_sink_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xafdf5907 drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1fcae38 drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb20fb8cd drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2be9ffc __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2fdb29e drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb48364fa drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb48983c6 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5c8b89e drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6512ffa drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7a47848 devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb823b481 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9111e0f __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb93cf6bd drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba61452b drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbad2aced drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbca945f1 drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe0bac79 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfbc9d49 drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfeacdf2 drm_gem_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc05459ca drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc20af474 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc622b65c drm_dp_pcon_frl_configure_2 -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 0xc97fdec7 drm_dp_mst_atomic_enable_dsc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcaa1b1fe drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccef3502 drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdbf7ecf drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd331562c drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd672f544 drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd67cbd03 drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd69cbe49 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8012103 drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8f79c53 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb362cf9 drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb447424 drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb84c195 drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb9f284c drm_dp_lttpr_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd0512b0 drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde0d6472 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf41e0d6 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf56f701 drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf5ea35f __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0c571a0 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe10125a6 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe18b9189 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe280d535 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2b65e54 drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2e6253c drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3a53f7a drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3aa0c7c drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe430e341 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe446c2e5 drm_dp_read_dpcd_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5be4163 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe662bcea drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6694393 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe882aced drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb7fa19a drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb99feee __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed32a4a8 drm_dp_remote_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeea8655f drm_dp_set_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf120a5b2 drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf169767a drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2448c60 drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf33a7f7a drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf36c7ad9 drm_panel_dp_aux_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf461f473 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4fe065c drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6135d13 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6507db4 drm_atomic_helper_damage_merged -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 0xf90bd22c drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf966373a drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc5c819e drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe24a004 drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe9b4fa6 __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1b03380c mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2266102e mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x540f6f3a mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7d158be9 mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x893660c1 mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x984a96d0 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9c570f15 mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa2b8a0a8 mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa6242ed7 mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa637000d mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb2c31021 mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcc2bc2d4 mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcca9a398 mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcef60bb8 mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd702f50c mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf0c59028 mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf4113e68 mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x084355c3 drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x0c27e7d5 drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x15731a1d drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x26cc85ce drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x7f9c1723 drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2fce8b01 drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3d306e9f drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x48ee9fe4 drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4c6b41ca drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5df371c4 drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6bd3a98f drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6ca3a3fe drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x719b0e58 drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x72110536 drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7bfd1acf drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x800c729f drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x87f8506e drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbbdb83a3 drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc2cd4f07 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd482dc2a drm_vram_mm_debugfs_init -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 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 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 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 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 -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a5789e7 ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0ca22a3e ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c144f7c ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c5b6e1a ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1db181e8 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2417f3d6 ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2806ba18 ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2bcacf51 ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x38ae5da6 ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3c58788f ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3dc839b9 ttm_range_man_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x415918be ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x41af99b6 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a8c898b ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5623c070 ttm_tt_destroy_common -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5bc7f07f ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5d9e0eaf ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6344c3c0 ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6668a67b ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x68899d03 ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6adb7451 ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6b72df4a ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6eb9376d ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x72b663eb ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x755a9883 ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7bc23da1 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x917404af ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9234803f ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x92d3b493 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9479c23d ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9a8a5cbe ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9e4de614 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9fa3e3d5 ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa4c31af8 ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaa7c43f7 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xab26e69b ttm_global_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb1fda66d ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb2cfddfc ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb4c54550 ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb6533c8d ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb9837e7c ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc27b1d9f ttm_range_man_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcaae508b ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd4fc4caf ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde1c962b ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdec88b55 ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xebf4defd ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xed22678b ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf116ff5f ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf29119b2 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf466f824 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfaa01f84 ttm_pool_free -EXPORT_SYMBOL drivers/hid/hid 0x052dbce1 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 0x92fa7f01 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 0x217b6df5 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xd7311287 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xd8bcd804 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xbeb5fbda i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xe8f38e78 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x4e6bf21b amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x25c78282 bma400_probe -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x2aadec4d bma400_regmap_config -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x6b79725c bma400_remove -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x3b66e1b9 kxsd9_common_remove -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xb498b118 kxsd9_common_probe -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xc19222c5 kxsd9_dev_pm_ops -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x029fbd3d mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x42c4b71f mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4bba2b5a mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6135555c mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x64e878a4 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x67606aeb mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7150ac01 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7e0d8964 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x80c60ebb mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x84ff5f63 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9ca0db07 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa8459c35 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcaaf1956 mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcea22a51 mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe55b8546 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xff55578e mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x6f247097 st_accel_get_settings -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xa3ea7ee5 st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xbedc437a st_accel_common_probe -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x12402a0a qcom_vadc_scale -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x47f699dd qcom_adc5_decimation_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x4e64cdb9 qcom_adc5_hw_settle_time_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x53546ecd qcom_adc5_avg_samples_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xc61e7a34 qcom_adc5_prescaling_from_dt -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x02e6eeac iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x23a74648 iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x552abfb8 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xdbf0c017 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x68de7e92 bme680_regmap_config -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xb3f48f96 scd30_probe -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xcc878512 scd30_resume -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xe3d2a876 scd30_suspend -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3db20463 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x51f9f3ca ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x59d2a94c ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5d2e46a8 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6e881124 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x72877ec7 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe135a776 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe43d104d ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfede3904 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x34809832 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x43e56049 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xd4f1ebcd ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf25738b0 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf6d9a7af ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x1752c4b2 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x3fbe1670 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x7237810d ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0a0b9f2d st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x19514dcb st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1b89dd6b st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2c1ec6d2 st_sensors_get_settings_index -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2f7dd989 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2ffbed6b st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x55357545 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6eda4804 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x863eede0 st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8a298972 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9c00e889 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa62e9446 st_sensors_verify_id -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xba4e637e st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc48fd9ed st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc5bb2b7b st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc642c4e3 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcdd44b29 st_sensors_dev_name_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xda99e45a st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xab861127 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x20a4902c st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x2212012e mpu3050_common_remove -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x34dcb0ab mpu3050_dev_pm_ops -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x3a1f185e mpu3050_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x51d2f478 st_gyro_get_settings -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xb35ebe45 st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xbe56c582 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/humidity/hts221 0xafe3ae96 hts221_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0xcd420807 hts221_pm_ops -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x00f57b65 bmi160_regmap_config -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xa86019eb fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x6167bb8f st_lsm6dsx_pm_ops -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x7afc1acb st_lsm6dsx_probe -EXPORT_SYMBOL drivers/iio/industrialio 0x05a3951f iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0x0ec56c8f iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x1291d297 __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0x19658289 iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0x1da86ed3 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x22fa4b74 iio_device_set_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x2437c14c iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x275ce785 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x2c8e2b4c iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x4a3fbaaa iio_device_get_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x522acfa2 iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x78c556d1 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x7c0370dd iio_get_time_res -EXPORT_SYMBOL drivers/iio/industrialio 0x7f13889e __iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0x895f6617 iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0x93b93785 iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0x9b843dfa iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0xad310b24 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0xb75de8cd iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0xbac6978c iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xd8e91d18 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe539399a iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0xf0fd1315 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x8e62bc54 iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x20b81237 iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x43c74fd5 iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x74233ab7 iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x8c95098d iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x181ce990 iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x49d61622 iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x572a7fbc iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xcf543884 iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x2a7479ff iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xcfe4f0b8 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x27717e65 st_uvis25_pm_ops -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x6eaedd43 st_uvis25_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x776d942b bmc150_magn_regmap_config -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x77858f5f bmc150_magn_remove -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x99815580 bmc150_magn_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xe8560791 bmc150_magn_probe -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x6d45cd2c hmc5843_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xa1fb2822 hmc5843_common_suspend -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xa7bd8f9f hmc5843_common_resume -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xc1a71434 hmc5843_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xc0263fd9 st_magn_get_settings -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xe5c1f739 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xe7b367dc st_magn_common_remove -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x38bceb02 bmp180_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x3be04b61 bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xd23a3660 bmp280_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xf7392483 bmp280_common_probe -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x2a16a598 ms5611_probe -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 0x0d3d47ac ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x191923ba ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1c453946 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4d37c465 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4da17b66 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5cd65251 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x622ea04e ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8475bf97 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8c29db67 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8c9d36b1 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xadf88205 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb0efb919 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbc53cd17 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc3ed9be9 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf77b16c3 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00f367a5 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x017ae131 ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x044c5e26 rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0542a49e ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05a65b8d ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07026d02 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x072f7a14 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x083a1d26 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b08c8a5 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b10f473 ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0cc14cde ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d075d77 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d44ace0 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10bbc42a rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11151c78 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1182a05a ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11da0eba rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x137d3c85 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13f3de7a rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15f5fde3 ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15f7cae7 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x162bdd2a ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1768eaf4 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18e5868a ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18fe2066 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19578ac7 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b0a7ba6 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bb822d4 ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f41ead5 rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x200f5412 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2113ac34 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2299302d ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23abda08 ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25718ee4 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28efa80e ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29245125 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29728c98 ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a048752 rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2bb20fcc ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d4c9863 ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f21d54f rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f384613 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f8c5bd6 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 0x309ba481 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x335ed8c9 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33a144b3 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38d7c22e rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39922279 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a7db3c1 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ac34c69 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bd0443e ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3be946e6 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e9f592f ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f6c14a4 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x406af3a9 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4262e53b ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43d9f76d ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44724718 ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44f08ee0 rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49fd1f05 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a4f5fad ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57d6f018 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ae4c531 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b4e2f5e ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d3d3ba2 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f03067a ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f3dd235 ib_alloc_mr -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 0x61fa7b9b ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x646adc94 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6494dbf1 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64a3e08d rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x656acded rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6581ca90 ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6912a232 ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a535613 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a60a928 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b4b10cc rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b994785 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6be3f070 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d2f17b5 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d572fcc ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f108dc5 rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f55ed16 ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7012c615 rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71c2ea82 rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x734d658e ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73c1edc7 rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74526382 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77c45494 ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7817f1c6 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78a4a2bc ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c11e4d8 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d90a12b rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7da857f8 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7efb3c8c ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fdd02e0 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8078e5a2 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8116b2b8 rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82cd7111 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83f165e3 rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84309417 ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x869612b1 rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87b6e118 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87ea3ecf __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e4f0021 rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x908c5ab8 rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93326f33 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94c39cfd ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x956d7fa0 ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96adcd50 rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97603157 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99239854 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9968125e rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99ab6e43 rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b047fb rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ab4258d rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b2dce4c ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b8ddd9f rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bd53f77 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9dc2792a rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e423965 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e69858f ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e7db04a ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa276abbe rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa305e80f ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa45417a4 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4c307ef ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa58c4f8f ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7c24f01 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7c4c123 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xacd0e33e rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad1e9844 rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad590a1e rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae06313a rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf7b04a6 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafdd3f08 rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb11b87c2 ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1502fce rdma_link_unregister -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 0xb4dcc57c ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5a41718 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5af298d ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb80b6f61 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb99de5ec rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbab2cea8 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb70fad4 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd405e55 rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf170b87 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf831b0c rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf8ccae9 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1f3940e ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3c8e54c rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb27a5a1 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcea10f2a ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0558402 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0666d7b rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1d8f52c ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5b0686e rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd67ebd56 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7854601 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7de9be8 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd906cf65 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdac2fd6d ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb152312 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc0e3882 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde642b9b ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdea6646e ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf87dd39 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe014c7ee rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe03fb296 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe08d90ac rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe24aa31f ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe37a183d _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4bb2d67 __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 0xe5c46a18 rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5fb868e rdma_put_gid_attr -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 0xebef019e ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xece60932 ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef093f95 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefeacf87 ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf197c29d ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf21445df ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf67384d6 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8668e30 rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf988bc5c ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb55037a rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc05761f ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfde666e6 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdef5424 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x03148296 ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x053bc61d flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x159bb4d1 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1bf26494 ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1f18c26a uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x255f4b3b uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x26ade7ee uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x288a714e ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x28ca444b uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2cb9edfd _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2cd18dbb ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2e1fcbba _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2e7350e3 ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x322cd912 ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4a25d53e uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4adcdd72 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5084fa9d ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x51e0290e ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6744f3a0 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x71707e9c _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7b52bb00 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7e9a6336 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x825d90eb ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa4943b01 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa59c0c81 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb099c46b uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb47379c0 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbba07ce0 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc489cb4d ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc744c152 ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcc52ebd6 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd5047467 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd7fc2f9a ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe275edad flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf4837c80 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfa8c597f ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3709e179 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4d588044 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x782fbe59 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8d2d04a7 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8fdbad74 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x938198f7 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99bd9225 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3968d6e iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x09557e62 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0c1f8e68 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0ca3963a rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x19fea5db rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x214e5e98 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x218960b2 __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x23ecb832 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2c0865dd rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3d2939f3 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3ee9184a rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x43f3a544 rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4af43342 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4f76e3e4 rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x73e0b337 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8197a8e8 rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9a0a1c9d rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9d4f84f5 rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa0d9913f rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xad2bb26a rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb706108b rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbeecee69 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbf10de65 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc88351b0 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc9932ab0 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xce1a2432 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xce57b55a rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdfdf9ea2 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe1b22003 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xedf807a4 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf0e98c89 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf36b625e rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf87dc252 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf989b551 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xff8f6b24 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0e46f68e rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x19a4219d rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa4f809bc rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xbeabf17d rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xbf8a4a97 rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xc5884ece rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xfd15387d rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x2510363a sockaddr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x3a919856 rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x67029a33 rtrs_addr_to_sockaddr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x8cde56fe rtrs_rdma_dev_pd_init -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x8e56b41b 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 0xad84f847 rtrs_rdma_dev_pd_deinit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x0fd88b75 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x56a42e07 rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x6fa1ba5e rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x71edba39 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x88f61e11 rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xe43d77c3 rtrs_srv_get_queue_depth -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 -EXPORT_SYMBOL drivers/input/gameport/gameport 0x81850106 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x999a23c6 gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0xade607c6 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xb4eeee27 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xcf0fe6e6 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0xd66fd08e gameport_unregister_driver -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x35a749f2 iforce_send_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xa3c2d92d iforce_process_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xfb063f3a iforce_init_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x1c625c6b matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x5349683e ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x8f5e5740 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0xf9b7a069 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xa8e17aa5 cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x5827a052 rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x0237db87 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x514bf3ae sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0x98618ff5 sparse_keymap_entry_from_scancode -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/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 -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf26e10dd capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf47b3d53 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x27c58fd5 isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x4644eea5 isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x5b835a58 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0xef4ee223 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 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/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 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 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 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 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 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd9658520 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe3087fc9 mISDN_ctrl_bchannel -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 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x8021690c ti_lmu_common_get_ramp_params -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xc2dea485 ti_lmu_common_get_brt_res -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness -EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0x06196a64 cmdq_get_shift_pa -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x0af5e3d3 omap_mbox_request_channel -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x5844ede8 omap_mbox_enable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xd7cd2637 omap_mbox_disable_irq -EXPORT_SYMBOL drivers/md/dm-log 0x04c178c9 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x0c38ba4f dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x98718671 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0xfb0f7b11 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x36d5986d dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x3ac7a9f3 dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x8f48e822 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0xa406155a dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xa9bc0a80 dm_exception_store_type_register -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/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 -EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xb2b9efb7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xcd45f299 cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0xd274ab34 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0xf83f93e5 cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x33139891 cypress_load_firmware -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 -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 0x5cb514f1 vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc169cf04 vb2_verify_memory_type -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-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 -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 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3fd96ba7 dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4159f1cd dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x42d15a1b dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5bcdddcf dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x603d37fd dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x689591e2 dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7ab3abb4 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8026ef3e dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x82143c17 dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x869a4d57 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8a5d3349 dvb_unregister_frontend -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 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 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/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 -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2baf79de au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x34d86739 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6e1f4a7c au8522_readreg -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/cx24113 0x195991e4 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x30441cb7 cx24123_get_tuner_i2c_adapter -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 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 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3c4266e7 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3cdc9f85 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6235bd3f dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x65c6af03 dib0090_gain_control -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 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/dib3000mc 0x13940bb9 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3743bc24 dib3000mc_set_config -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 0x82de5cd1 dib7000m_pid_filter -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 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x89a54bf1 dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8a8fd751 dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xbd18f6f0 dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc723365a dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xcdf7428f dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd1f461c2 dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd81642f9 dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd8d119b4 dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xf587fe31 dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x4e7ee31f dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8d14e53b dibx000_get_i2c_adapter -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/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/lgs8gl5 0x0a9fd74b lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x18c0beb3 lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xc0432537 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xd0748959 s5h1420_get_tuner_i2c_adapter -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/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/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 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xdfafbe08 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x0f7ae471 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -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 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 -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x664aef82 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x88c2c7cb dst_error_recovery -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/cx18/cx18 0x03ca72cb cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x056a5c66 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/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xc46aeddb altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x04326934 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x05b51921 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3219214d cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x65a74d01 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8e246612 cx25821_set_gpiopin_direction -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/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 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/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 -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14de950e ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x20755862 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4bcf96df ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4e74cb41 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5dc3b93a ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6087fb4c ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x721b5978 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x94a41457 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9724f9b6 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9c3d5a2e ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xaa9afdc8 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb402184b ivtv_firmware_check -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 0x730c4be3 saa7134_boards -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/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 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 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 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 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 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 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 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 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 -EXPORT_SYMBOL drivers/media/radio/tea575x 0x2da84e9a snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x963a91fd snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0xadf07452 snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0xb866d596 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0xd9469e96 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl -EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cf52901 ir_raw_gen_manchester -EXPORT_SYMBOL drivers/media/rc/rc-core 0x84b46007 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 0xc3eb9db6 ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/rc/rc-core 0xf446074f ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x6dc42a7b fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xcab828e4 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xd62db305 xc2028_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/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-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 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 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/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 -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2cb0d692 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5389b1bf go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x61105a15 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x64fb53f9 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x67f4a4fd go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7500db85 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8086a9b1 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe76db4c2 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x09b3d845 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2d5e47b5 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3192242d gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3648ab26 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x824b77bd gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x883b9d54 gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe427e8b9 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf47d0bac gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x4fcc3da8 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xa29f963b tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xbab4e0a3 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x98a69877 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xb36199bd ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x0860c074 v4l2_async_notifier_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x85d9ded2 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xab338e93 v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xcabbca16 v4l2_async_subdev_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xd4aa60be v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xe3aa5f7b v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x0164e84b v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x1ee560a8 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x23d569a2 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 0xbb73301e v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x02785d5b v4l2_ctrl_find -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 0x0e2d682e v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1017cc2e v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x10b19a19 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x10f4a8e8 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x15e02054 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x163380db v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x264a85c3 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2e91c164 video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2f24db03 v4l2_ctrl_activate -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 0x3795b92d v4l2_ctrl_new_std_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x387e150e v4l2_ctrl_add_handler -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 0x3ceabd36 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3e28f2da __v4l2_ctrl_s_ctrl_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4260ac4f v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x430f0dbb v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4890ed61 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x51485d1b v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x54053c50 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x55625090 v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x589da35b v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x79174e36 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a4293db v4l2_ctrl_new_fwnode_properties -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e3b5941 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x827ba9f1 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x836a4c8a v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x846c11d3 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8996efe1 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8dcb287c v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8e170713 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9397f4c7 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x95fdd855 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x977f323a v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9ca3bd68 v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9db2b63f __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa4d8477e v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5526d0a __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad489672 v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb0505b01 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb6b5928f v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb9b755cb video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc35c866f v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd1c33436 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3a858ff video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd553b98f __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc7e0128 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc852ef4 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdd90ca51 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf67740e v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe40348c2 v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xef7be379 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfdbf65f3 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x3c61df66 rpcif_hw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x6c852d03 rpcif_dirmap_read -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xab0571d1 rpcif_sw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xd5c4f9ec rpcif_prepare -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xfcc7b3ba rpcif_manual_xfer -EXPORT_SYMBOL drivers/memstick/core/memstick 0x06b9998a memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x194ae0b4 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x2e5d84d3 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x51cb13f8 memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x62cab249 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x92e68276 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x976955e2 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa6b69160 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc902fca4 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0xdfdeb7f5 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xe88da59b memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf25ee647 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf8026f87 memstick_suspend_host -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x05d8af84 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x11b15284 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x222f6c6e mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2664ce43 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3b60672b mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3d470c36 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3dcb5a31 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3fb1cf91 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4e0f910d mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x53e5b5f4 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x54f63ff5 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x55fb688c mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5f4c4143 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x64cc58b1 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x68629095 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x68a7cc39 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8999dd8e mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9626b931 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9954b85f mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9fe7946e mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa10008cd mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa354a216 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbf14c1e7 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc4e418f4 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc87ad2d6 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc991d574 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdbfba8eb mpt_free_fw_memory -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 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 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 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 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 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 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/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 -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1d12330c mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x291d41da mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x32ab3e76 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3bf3e3a9 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x90c36119 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x95da29c5 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb8976a22 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xea1a0ce8 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xea3328dc mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfdcd9b4c mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/qcom_rpm 0x832aed94 qcom_rpm_write -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -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 0x22cc0874 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0x4b4f2772 wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x62886456 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x79759ceb wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x8fa09030 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0xd42d255f wm1811_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xc5e248ed ad_dpot_probe -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xd1d3b69c ad_dpot_remove -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x2fb85933 altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x41483372 c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0x7ac4c2b3 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/tifm_core 0x00b39a1e tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x10513ca7 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x16f68a2b tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x1d9429ae tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x367181cd tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x53149d6f tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x75d174b5 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x907fc379 tifm_has_ms_pif -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/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 -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x417cd272 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x48b26250 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5023ff1e cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6f80dde9 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa09d7bf3 cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xbf4e7fb6 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xfdc475a5 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xb81fc7f2 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xb3537951 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x0e187350 flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xf358275b onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x2abc011f denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xd78af934 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x102603bc mtk_ecc_get_parity_bits -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5437e775 mtk_ecc_disable -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5de55d81 mtk_ecc_get_stats -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x642b696c of_mtk_ecc_get -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x6df58afb mtk_ecc_release -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x76e53683 mtk_ecc_wait_done -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x8dcc87d2 mtk_ecc_enable -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xda64ef4a mtk_ecc_adjust_strength -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xec8b9207 mtk_ecc_encode -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x12a3f013 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1aa542e0 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1af2e654 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x379e0761 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5b2aeff6 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x63750222 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x65d56f8e arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x881f5d39 free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8dcb19dd alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xaeae1998 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xba4647d8 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -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 0x09c455b5 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1b3f4d7c b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2164f918 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x24a209d1 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2a710644 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2ad7d15b b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x33eebc9b b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3e8346b4 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x46993e8d b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4b05fd48 b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x502a83fc b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x51c37bb4 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x53c59f8f b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5e7d8aaa b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5f163cfb b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6779ffe1 b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6ace8f06 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6c5c134a b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x712a2614 b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7f6ebcf6 b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x83e0dcca b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x846e1087 b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8716a2a6 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8fd6dfb9 b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9708d385 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9b420461 b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9c8db441 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa0c5be01 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa3446d1a b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb819f6bd b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc06a92ec b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc1dea063 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc5b60cea b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcb2ef71e b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcc36bbe2 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcd95be53 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcffcbda9 b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdee73d2a b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe385fbde b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe4fad05c b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf31e1076 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x06054239 b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x0f4ecd54 b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x4328dc56 b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xeafe5ab9 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xfc47a4a3 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xfdf933d3 b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x12dd3758 lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x57086945 lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x66716baa lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x6e17c070 ksz8_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x8e6fb75f ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x195d9d9d ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x68de8a98 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x6c61a968 ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x06b942ca vsc73xx_probe -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x3e8dba9c vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xe70a3e85 vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x992f9a22 xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb9b6cc58 xrs700x_switch_remove -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xc0364bee xrs700x_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xd7d44a07 xrs7004f_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xdba34902 xrs700x_switch_register -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xdd11431e xrs7003f_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xe63c509a xrs7004e_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xecf95983 xrs7003e_info -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 0x23e71557 bnxt_ulp_probe -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x69465344 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1f579956 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x20cdc189 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x36d3b885 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3c1c8990 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x57be73c5 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x64a3bb9c t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x66ec9112 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8d578585 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8e041c71 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa6600fcf cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa891d61f t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa8a9d6d4 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa920c040 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb64d6cf4 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd4b834d7 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe21011bf cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0174712a cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x035246d2 cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x09ae8c33 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0d848f02 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x10904144 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x232ca352 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2b3f2914 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2c37f953 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x346e05a9 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x42cc3ab7 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x43489676 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4f82efad cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x54de87fd cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5a911391 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5c59e89d cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5e638b39 cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6697052a cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x678a7a92 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x687d4d92 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x71e1b014 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x739be7e9 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x743db934 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7535b4f8 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x82b20282 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x958e8a65 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9784a31e cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9c0f6138 cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa4611eee cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa4b846cb cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa75d590d cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa80c1ae1 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb238f6dc cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb39d2de0 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbcfa6511 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbd899c7e cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc6e7ab17 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc9e6cbf3 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd0457902 cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd90a339c cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdbabc057 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdc46fc08 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xddee59a2 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xded2869b cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe0354b68 cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe2cb39cb cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf8c3748b cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfcca5b5e 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 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 0x8d5aee0f cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x8dd4bf0d cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb4c483bf cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xbe7c77b5 cxgb_find_route6 -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 0x4e2e10d2 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x72da2877 be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x77a968f3 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/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 0x0038295c hnae3_register_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x14b8fe12 hnae3_set_client_init_flag -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x50538fb9 hnae3_unregister_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x543df7e8 hnae3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x57b15c23 hnae3_unregister_ae_algo_prepare -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x93465eee hnae3_unregister_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x9ab0fb70 hnae3_register_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xc743805a hnae3_register_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x20c770db iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x2448b3a5 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/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 0x062307b3 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c20bf0a mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c8e2907 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e6e35cb mlx5_cmd_exec_polling -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 0x10635ac2 mlx5_lag_get_peer_mdev -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 0x1acfdc19 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b4cfc82 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c93c41b mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d5805bd mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d86c4ff mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2106c6c3 mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21798e4a mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21f904b2 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2402c1aa mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2466a3b9 mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x248d02b8 mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24acf221 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24acff86 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x269b17f4 mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ad90154 mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f487e92 mlx5_lag_get_roce_netdev -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 0x3171f2f7 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x330e8c13 mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33a9e1e7 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3475821f __SCK__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34926e77 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34ecc523 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x356f3a42 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3668a1e0 mlx5_qp_debugfs_cleanup -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 0x369c0272 mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36b6f8c3 mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36c90e64 mlx5_lag_get_slave_port -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 0x3f0e28c9 mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x405a4a78 __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x405e1c96 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40edb7b0 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x412ae433 mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44c3bc32 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44e6e927 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46bac95c mlx5_rl_remove_rate -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 0x4d9ca70e mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4eaf7afe mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ecfe61c mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f705803 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x501fa4dd mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50eee7d7 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x538b59ed mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x559ac38d __SCK__tp_func_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58b0f693 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59cd4dea mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5acbb342 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d0b8d3e mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f2dd114 mlx5_fc_create -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 0x62993f18 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65a3a460 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67fc9189 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 0x6931b1cd mlx5_cmd_init_async_ctx -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 0x6c00f830 mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c60d737 mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ee8194f mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ef5cdcb mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x725387e2 mlx5_eswitch_vport_match_metadata_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 0x74864e49 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75b21004 mlx5_eq_create_generic -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 0x77a548a2 mlx5_rdma_rn_get_params -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 0x7a62d558 mlx5_eswitch_get_vport_metadata_for_match -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 0x7bebb769 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f21daf6 __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ff8cf72 mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fff2e01 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x808a5c6f mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81919683 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8610a9f0 mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b9681f5 mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c69c854 mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ce19c49 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d6e5943 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e6c4373 mlx5_lag_is_shared_fdb -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 0x9396d5bc mlx5_core_create_rq -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 0x9a962fb2 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bac470c mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bfc1488 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cbc87a9 mlx5_core_query_vendor_id -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 0xa612e182 mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa741f4bd mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa81b2bf9 mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa7df3f3 mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab8e7301 mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac45a47c mlx5_query_ib_port_oper -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 0xada047e5 mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb631ebfb __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba0675e2 mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc88aae4 mlx5_rsc_dump_cmd_create -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 0xbed9aec2 mlx5_eswitch_get_core_dev -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 0xc3d3e5c9 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc40e4939 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4809394 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc59b9a0f mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc771ee50 mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc82e12f0 mlx5_core_destroy_tir -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 0xc9655c54 mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc97b9ed8 mlx5_eswitch_get_vport_metadata_for_set -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 0xd1949f6a mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4704a81 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd62adac6 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7fdb63e mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd80109c5 mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9065ed1 mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9ebd15c mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda3c8c23 mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde1f7fb5 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdef92081 mlx5_eswitch_get_proto_dev -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 0xdfb192c4 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1f215f9 __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2bdadca mlx5_fc_destroy -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 0xe515581e mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9fad3f4 mlx5_core_attach_mcg -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 0xf5854042 mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88d57b1 __SCK__tp_func_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf94cfda1 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9c61c23 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa106e77 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb62879d mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc3756cb mlx5_core_destroy_mkey -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/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 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 -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 0x2c3d6e23 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 0x38185d87 mlxsw_afa_block_append_qos_ecn -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 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 -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 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 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 -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 0xaa600760 mlxsw_reg_trans_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 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 -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 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 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 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 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 0x06d1e419 ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x06df4537 ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0ad96564 ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x11c4a2b9 ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x143b4e5f ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x16436fb1 ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x19d0d568 ocelot_apply_bridge_fwd_mask -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1ae4ae02 ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1e2efa1e ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1edf36a3 ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x25f875b7 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x269b0808 ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x274a0e05 ocelot_port_fdb_do_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2eb09cac ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x320f2ca1 ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3812caf7 ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3a49a981 ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3e933dd8 ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x45e61ac0 ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x480ba192 ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4a476b6f ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4cfe58f0 ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x51f68a82 ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x56c6eef8 ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5aaf62e4 ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6c5f9ddc ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7198db50 ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x724e3cf2 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7366364e ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x75b0dde4 ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x75f2ffc0 ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x78e391a2 ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7c459465 ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e73d824 ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x826daa8c ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x87287d80 ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a2e9105 ocelot_get_txtstamp -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 0x8b3b6f16 ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x94c70fd9 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x95b1bfe7 ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa5a8feef ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8744e03 ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa96f9220 ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xae681bd6 ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb03aafa2 ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb04acb63 ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb19ec50f ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb30f2386 ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb61ed7e9 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba02b203 ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbb0ad97e ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc884fb40 ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd07261a3 ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd1940cdf ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd1a69fc9 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd9d17f62 ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xde0961af ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe589039e ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe8f3b5e7 ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb43f319 ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xecc9ef88 ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xedb38401 ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeffd3c20 ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf10d1c79 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf193d778 ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf3ac001d ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf60c09af ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc3e016c ocelot_mact_forget -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 0xe1824524 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xfb02ffe0 qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xff7be680 qed_get_iscsi_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/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/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/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/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0xab2c22e1 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x0d135e46 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x140ec5de team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x3dc2249e team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x844a993f team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0xa2ee637f team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0xa694f020 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0xb1ff9c10 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xea99f391 team_options_unregister -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/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1a93b31a ath_hw_keysetmac -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x32436603 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x37ef3625 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x55a330c9 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6a3b26b7 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x851c4a26 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x868045b8 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x87442856 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8bac614f ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x92fdd50c ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa6d6da68 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa83ef66a ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd189a4af ath_rxbuf_alloc -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 0x063eba09 ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0c4fd6af ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x11a8db19 ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1685ce19 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1cbe03a1 ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1db14220 ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1ede902d ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x204f6d85 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2054e251 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x223a8ffd ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x22533f61 ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x255854ce ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x28fea0d9 ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2b88ba07 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2dc6e3c0 ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2ffb95e5 ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x31924ab0 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x33a1fed8 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x385e96c8 ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4957c886 ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x54890304 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5a49494f ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x62e073b2 ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x705de6f6 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x70f93d2f ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x78205b5c ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7d86dd0a ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7e78c6a5 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8204bd19 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8904836b ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x89e6a471 ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8b1dd823 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8cc7fdf4 ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8d19ea2d ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9828e301 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9ab02841 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9c27d096 ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9de90865 ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9f7257d3 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa2a51c75 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb2776ef5 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb4a80497 ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb560f844 ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc122fd25 ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc4e836b6 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc9912b66 __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd41b8786 __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd835d0c5 ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdc1c388e ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdc678fbe ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdcf44420 ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe2db0caf ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe50e913d ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xef15b453 ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xef18f89c ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfaca5dce ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfe4e376e ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x00b9c531 ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x025c035b ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0b2b4dbe ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1e9709f3 ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2b7f99c9 ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3404f253 ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3631d4f1 ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x43c21f60 ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6322d0ff ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x659ecd5b ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6a4c776c ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x77977843 ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x919cc441 ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9433e9b6 ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xafb618c7 ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc04f8c82 ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc0dbbcf3 ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcf59bd4b ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd8e72423 ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd9f44991 ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf8c39684 ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf99f9489 ath11k_ce_get_attr_flags -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/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 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 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 0x01f4bab7 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x066e68de ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x15d2f65c ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1a960abc ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x21543b16 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x29475819 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x38c1bfa5 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3aa73a06 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3e8ed8a6 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x42f24a46 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x465595cc ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4f932e89 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x591059d2 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6dccbc39 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7e147830 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8109f576 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8593f6ad ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaac9d3db ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xab908583 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xae54f5cb 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 0xcef4f90a ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe8482e55 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf0d0461d ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0117f281 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0265f007 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a312bf9 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a8f6a94 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b6a66df 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 0x1060b819 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x116ac9db ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a15de3a ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b683e62 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ffec050 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2037e45e ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29b69572 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2db629e6 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ddc1705 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ff225db ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41c3fdbd ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x432c63e3 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4369fa9c ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43dfe270 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x442180be ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45fc6de1 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a36c8bb ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c4c2f48 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c6e416e ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d666595 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e3c4fce ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50c494fb ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x518a81ba ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x557bfecb ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x568f20a7 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57033dbb ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5de585c4 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61d86153 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69b3d523 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70025b41 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x703d848d ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72efe09f ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75a75713 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d2521ff ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f4ba1b3 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8043b86d ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x807e8cec ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80b4eaf0 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81a7863c ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83414be8 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85605467 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85e9481e ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86fc5228 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x878470f7 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89e39edb ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d7c41ec ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e261d4d ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8fab4fd1 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8fd3856b ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9070c41e ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9398e856 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94fc8781 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x968e3700 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97dbd164 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a3f5b94 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a605041 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa243288f ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa430c6bd ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9cf10fc ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae9f02d7 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf5fe0c7 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xafb1864a ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb06dc4fe ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6a71624 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba6332a0 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe753126 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbebe1798 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf28a509 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc12d3b33 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1bb898c ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2822b46 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2b22518 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2ee221e ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6d7785d ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7b18d18 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb0be7f6 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0371f29 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd19b209a ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd24d8f9b ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd26e2052 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3acf462 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6faa2c9 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdbfb43f6 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf499ab0 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe41583fc ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5f3893b ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeba576c4 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee651adf ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef09c12f ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf12c068b ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1928ae1 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf38daf34 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3a5255c ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4c8fe36 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf533c606 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9479d5b ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf94e75c2 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa4899dd ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb66efa9 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb9db2fe ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc193dd8 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffcddcd7 ath9k_hw_bstuck_nfcal -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/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 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 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 0x00111360 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x016e66f6 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04fa1ccf il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0617d734 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x062b2168 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x07fc3082 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x085413d5 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c662b5d _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f19ff49 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x17bf966a il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1944af02 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x264102ec il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x29918b4d il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x29a96ee6 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x300af819 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x35eef3ff il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d67915b il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d9ec044 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x41ad8479 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42d5b514 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x44bfdd32 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x463a2a5b _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48977a3b il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4ba7638d il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x50f167b8 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x56b69b46 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x62961483 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x62f31eae il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6448db0c il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x674e6db3 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x67e59177 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a30d007 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6e277ee6 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ec241f2 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x74a166ae il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x798766b5 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c08020a il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7cda3c6d il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d79d08d il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x81685cf9 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x82696f8c il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x829274f6 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x82977bae il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x82a57d93 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x85ca6891 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x88e774fb il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a9f5f81 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ae243d4 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8c2f8223 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x905d3edc il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x93bd091c il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x93c2cb88 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9447de6c il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x95fb1379 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9937e21c il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9a46664a il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9bcde14c il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9e67feb8 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa255d17b il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa5f52428 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xabb1d99a il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad4b0b5a il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb0e0b415 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb14c828f il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb2c530ae il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb60b5d46 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb638f6ad il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb717cfac il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7444878 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb9b71259 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1bc90b3 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1dd225e il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc3409b2b il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc5b6f988 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc80e8d84 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc89dcae1 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc9c80fd5 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xca6fe4f9 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcf3c487b il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd04fe98a il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd2005b60 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd2e5e0a7 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd38ec4fa il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd8131315 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd8455624 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd88fe250 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd8d003c7 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xde92fb3c il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe44eacaa il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe4a91b4a il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe4c4483d il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeab8c946 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xed8dfba2 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xef7c8397 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf10bf5ff il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf26e0301 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf333f5dd il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfd1f1545 il_force_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 0x6d55f8af __traceiter_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6ff0d5fc __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8a8cdd04 __traceiter_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8bdc4afa __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x970bf4ef __SCK__tp_func_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd7fb19fd __traceiter_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x01ffb84c hostap_80211_rx -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 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 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 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/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 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xa6414a82 mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x6a7618d6 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x07c1cac6 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x084d3791 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x09d32380 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0a856164 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0c8fdcd4 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0d0d876e rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1133e81c rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x19a2614d _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x200eac4c rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x22605f54 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2f6e8cef _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3194a74f rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x32f0d0dc _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x39216909 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3b18c5f5 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x57b7b554 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5a515cec rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x60d18b07 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6184ddf8 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x64ee2620 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x64f6ff85 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x694977c9 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x74f31087 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7c50a7c6 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x932ff0bf rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa8424613 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xad2b79ec rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb1c86bb0 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb5e828bb _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb728987c rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbcc38a22 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc2955d9a rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xce4bd39f rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd414c0ad rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd837140f rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdda6981e _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe696b0fb rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xec091d0f rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xee497c22 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf7e8bdaa _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfa98362e rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x4de37e77 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x8f7c7e45 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x98dc02d2 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xc0e4184f rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x808ff172 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xaf740738 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc9b1fbeb rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf26cd936 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x04329e07 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b6d6422 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0ef34bd8 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x17e43292 rtl_send_smps_action -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 0x26a1ed15 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 0x3281a32b rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4cba7d29 efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5451d0c7 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5b2d3806 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5c251109 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6d278b8d rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6fa15b70 rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7197a94a rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x82c74e64 rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x938fdfb4 rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x93be095a rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9538458d rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9ae4f546 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa1f68d16 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa8be8102 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbcbbcfd9 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd5873508 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd5af74df rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd75970be rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdaebbefa efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdce14de2 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdf33f969 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe1f23a7d efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe327efae rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xec8f173d rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xef45b7dc rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x0e3a6eac rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x93fa1921 rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xe5da141e rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x0a187f20 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x14ed2b6b rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x15698129 rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x17cf9bba rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x193555a1 rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1cbec1ec rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1d55864b rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1e39e350 rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x25a5926e rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x29078b14 rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2ae020b1 rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2c37cf17 rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x339115ab rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x40f4977e rtw_chip_info_setup -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 0x4743a883 rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4e935f20 rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5888abf1 check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x62afd354 rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x649af9d5 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x651f37db rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6961d89c rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6b149f4c rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6cd2dbd8 rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6e924d72 rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7394a55d __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7847cb18 rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x834f61b8 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x921c4bcb rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9cb9ca05 rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9e068833 rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9ef47a0b rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa0a55128 rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa20ee6b2 rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa469b05e rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa46b29fb rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xacaf3cca rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb741040d rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb961cbb3 rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbaffc786 rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbc0e39df rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbe0707d9 rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbfaf1d5b rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc11b8380 rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc15b0046 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc1ba60e4 rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc2731265 rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc8f04033 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xccb5469e rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcd6ba772 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd07cacaa rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdf031066 rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe1e407a0 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe4e35c55 rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe6ae7583 rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeb802580 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xebb9d49e rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf08dd946 rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf5ede201 rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x214de437 rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x6aa4b236 rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x74edda15 rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xb3cc6bcb rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x081d088e rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0c0f3979 rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x111faa33 rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4a5b85ef rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5394b135 rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7482d656 rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x790ba9be rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x86f79660 __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8755053a rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa48eab3c rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xad2554b4 rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb3fb33fc rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb5ec8482 rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbb36303a rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcf7e3dea rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdc983c62 rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xeb107250 rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xebe686f8 rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xec3fa4b3 rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfac49958 rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe82bd958 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x289f064f rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x94c44118 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa8b62e47 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xd3a59a7a wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xd8392a6b wl1271_free_tx_id -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 -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/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 -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x638fc1f5 s3fwrn5_phy_power_ctrl -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x862dccca 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 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 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 -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 0x25c173e0 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x26cc783c st21nfca_dep_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 -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xad54af8d st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb737e56c st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcd94aa8d st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd8dfd4e6 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdaa3a980 st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf814e53b st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfab477d7 st21nfca_se_init -EXPORT_SYMBOL drivers/ntb/ntb 0x043b69ee ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0x04e8d152 ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0x09c535c1 ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0x263abc04 ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x2992453d ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0x2db11de7 ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0x2f37e072 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x308afcf6 ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x3933c2f5 ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x644a380e ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x8d8a25cc ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0xa845ad25 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xa8eaed73 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xb86fd4ee ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0xbdac31d7 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xec366f33 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0xf46f0375 ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xf5513af1 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0xf610d2e3 ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0xf698d170 ntbm_msi_free_irq -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x10bcf404 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xd85b5d08 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/parport/parport 0x05f5d944 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x119725a5 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x12cb49fc parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x1c112ac0 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x1d5be08b parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x1ee6a83c parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x231fb426 parport_read -EXPORT_SYMBOL drivers/parport/parport 0x2c91fdfa parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x30c4dc7a parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x311b7153 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x34d63112 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x36b69243 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x3dee0df4 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x3ea94bf6 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x4330440f parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x6830709c parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x6a50d3cd parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x6bab66f2 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x6f2918a6 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x8ff3088a parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x941d13c2 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x95a3486a parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0x9b3be8fe parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x9f1dccbb parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0xb8e1bff5 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0xc6a353a2 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xc769637d parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xcfc350d0 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0xdc07d8f6 parport_release -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 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 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 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 0x30791ba2 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -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 0x1fae661f fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x721fc52a fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x971de6ec fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9c8075d3 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9cfb4c62 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 0xed53ffff fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xefbae88a fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfb2f2020 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 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 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 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 0x5c2c2c24 fc_rport_terminate_io -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 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 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 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 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 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 0xf112c882 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -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 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 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 0x969b867d fc_block_rport -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 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 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 0x97c17378 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa653380a sas_rphy_add -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 0xe86d73c4 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeb69281a sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf9948086 sas_port_delete -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 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 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 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 -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x25789b60 cmdq_pkt_write -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x331080d7 cmdq_pkt_clear_event -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3f534bca cmdq_pkt_write_s_mask_value -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x44529db4 cmdq_pkt_poll_mask -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x4bef25aa cmdq_pkt_assign -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x51478255 cmdq_dev_get_client_reg -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5e605e5d cmdq_pkt_write_s_mask -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x707fc9be cmdq_pkt_write_mask -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x806d5531 cmdq_pkt_jump -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x86cba4ff cmdq_pkt_write_s -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x89c6dbcb cmdq_mbox_create -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x8d8977f9 cmdq_pkt_flush_async -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xb18b2c79 cmdq_pkt_create -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xce594d73 cmdq_pkt_finalize -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xcfa96ae3 cmdq_pkt_destroy -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xee75b7f0 cmdq_mbox_destroy -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xf1b72bff cmdq_pkt_wfe -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xf3151f98 cmdq_pkt_read_s -EXPORT_SYMBOL drivers/soc/qcom/ocmem 0x3ddb73de 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 0x01f972f1 geni_icc_enable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x08a7733e geni_se_clk_freq_match -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x45a9955d geni_se_tx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x60a7ced1 geni_se_clk_tbl_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x63203a0c geni_icc_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x63a3d7fd geni_se_get_qup_hw_version -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x71bb61c0 geni_se_rx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x74779581 geni_se_select_mode -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x831650a0 geni_icc_set_tag -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x86e4e0f6 geni_se_rx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x97e56772 geni_se_resources_on -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb7888cbc geni_se_init -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc1cd2643 geni_se_resources_off -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc5d0389d geni_icc_set_bw -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xcad7066d geni_se_config_packing -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xeb8889b1 geni_icc_disable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf3ea8700 geni_se_tx_dma_unprep -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 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 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/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/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 -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1af12eda sdw_update -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x27be2ce5 sdw_nread -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2a1332fd sdw_nwrite -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2b74b6d2 sdw_bwrite_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x30a366c9 sdw_compare_devid -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x30d96283 sdw_bread_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4ad9a493 sdw_bus_prep_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4bbd774c sdw_read_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4fa62a15 sdw_stream_add_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4fc59e0a sdw_read -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5116daaa sdw_slave_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5b924652 sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x752be946 sdw_bus_exit_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7c560608 sdw_bus_master_delete -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x851dd325 sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x879307bc sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa207b493 sdw_write -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa3d41f2a sdw_clear_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa4cf5053 sdw_bus_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb29cef39 sdw_bus_master_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb8e14597 sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc1bdcb51 sdw_update_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfcc2181d sdw_write_no_pm -EXPORT_SYMBOL drivers/ssb/ssb 0x0d20777f ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x0e9f074f __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x163b4426 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x1cf77dea ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x209e6964 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x3791e0f3 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x4e25b62a ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x5cafa0a8 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x663928b4 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x67d66db3 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x69966e50 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x716d9dbc ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x79feda87 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x7b5710b5 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x97ceae5e ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0xbd6f273c ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xc1c70448 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -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 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 0xadffc7dc fbtft_dbg_hex -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 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/iio/addac/adt7316 0x8d2b9e8a adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x1f7c8326 ade7854_probe -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 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 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/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 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 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/target/iscsi/iscsi_target_mod 0x0326e345 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0a9bd99b iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0b8fa2a5 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1059178d iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1470bcec iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x195b76b4 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c2b6ecc iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1f71ccbc iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x272a696c iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x41e656c2 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42b61984 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x487fee51 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4de8762c iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4ea99342 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4fbc1f3f iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5d78ffec iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6ce75e45 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x77b018fd iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7bb63633 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7f46d212 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8018b1e4 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x804a1ea2 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8f6d2d34 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9ae94acb iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d467544 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d88cca4 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa0240511 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa26160ab iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa2f6ef95 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa63eaff8 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb20f0b54 iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb5dbe7ba iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb7ba57ef iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb8ffba91 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb9ea3d1d iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xba0a5441 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbbeafd67 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbe266cea iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc984927e iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xca5b0317 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdb9108f6 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xed506625 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf1a9e87e iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfa1d4d4f iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/target_core_mod 0x020a4301 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x03f0131f core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x04d618e6 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x06678ba5 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x0843442f target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0f96f624 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x101fc1b4 target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x14eb8b32 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x17face23 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x1cb5d850 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x27a046ac sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x289c8029 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x2940b34a core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x2e8900c6 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x30f916ab target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x3150f162 target_nacl_find_deve -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 0x36e626d5 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x39c0d00e target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3f77863f transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x46be0aad target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x4bbd9276 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x4c63f540 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x4d95ee77 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x504e7441 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x5483f45f transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x55832809 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x57e49363 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x60f70380 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x6a212bbc passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x6e595b50 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x764319e5 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x791fd9b7 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x80bf5049 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x812ee2be target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x84e0e3c4 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x891a547a target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x8a4ee03e core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x8c81d258 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x8e2f0799 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x901a0863 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x91083d9b target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x964477b4 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x98f00980 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x9df524b6 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0xab8e7829 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xadd23476 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xb27169d6 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xb420005b target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xba48b152 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xbb1904c1 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xbf98ccc7 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xc28fd5ba target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xc2944650 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc721dc0d transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xc77e9764 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xc9aac970 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xcde7793d target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xcdeb6184 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xd43fa9a1 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xdc4b74ce core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xdd3b3ca8 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xdd868558 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xe7332f31 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xe9a6e321 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xec1ee837 transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xec75ab3c target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xedc13fd5 target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xee828573 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf6608e60 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xf707f57a core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xff8d10a2 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xb392f9bb 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/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 -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x71fc26ab usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7eabe42d usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x82def14f usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x92a479b9 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbbe2d926 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbf7ec47a usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xcbe868c4 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe051f446 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xbad29daf usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xdda72628 usb_serial_resume -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x29f87bcf mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x36abd62e mtype_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x68d09103 mdev_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x6b719a5f mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x775424b9 mdev_register_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x97c09a0c mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xbf7ba6dc mdev_unregister_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xd7c05f6a mtype_get_parent_dev -EXPORT_SYMBOL drivers/vfio/vfio 0x05b8cfda vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL drivers/vfio/vfio 0x05bd3cea vfio_unpin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0x0a60101a vfio_pin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0x0f655355 vfio_info_add_capability -EXPORT_SYMBOL drivers/vfio/vfio 0x48a81d7e vfio_group_pin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0x4c4b63d2 vfio_register_notifier -EXPORT_SYMBOL drivers/vfio/vfio 0x51f16cdb vfio_info_cap_shift -EXPORT_SYMBOL drivers/vfio/vfio 0x5d3a804b vfio_dma_rw -EXPORT_SYMBOL drivers/vfio/vfio 0x7834defd vfio_group_unpin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0xedec7e6f vfio_unregister_notifier -EXPORT_SYMBOL drivers/vhost/vhost 0x0c9abb5b vhost_chr_write_iter -EXPORT_SYMBOL drivers/vhost/vhost 0x9ca487e6 vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vringh 0x102c8234 vringh_iov_push_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x140ceb39 vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x221d4624 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x261fea85 vringh_set_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x26c60a08 vringh_notify_disable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x2e91ca97 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x367ce26a vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4164520a vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x5dfbeba4 vringh_need_notify_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x723ab668 vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x79b927f7 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x79c86ceb vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x7bda5e6d vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x7c007927 vringh_complete_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x7c2e8833 vringh_iov_pull_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x821e9390 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x8aeeecb8 vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x915490a3 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x9537eb76 vringh_abandon_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xa04abd3a vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xa37c8cbf vringh_notify_enable_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xa924b2e0 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xacf68b37 vringh_notify_disable_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xb061dd9f vringh_getdesc_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xb5411ba6 vringh_kiov_advance -EXPORT_SYMBOL drivers/vhost/vringh 0xbe7e011e vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0xc4721ac7 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0xcef0e131 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd8ac74e0 vringh_init_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xff44dbd9 vringh_need_notify_user -EXPORT_SYMBOL drivers/video/backlight/lcd 0x20f00a81 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x88cc5856 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xaf3b6b34 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xdcc6ce2f lcd_device_unregister -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1ff59142 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x2720184e svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8741229c svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8ef327aa svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe6ae0618 svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf71579cd svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xfdce5557 svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x355797c6 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x2385dcf0 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x0df15ea2 sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xee2f6c9f cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xb572e44b mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x31315ddd g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x99bce47c matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xbb7cc724 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x20763505 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x6b73ff0e matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xdb651f93 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xedf398b8 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xe05d8731 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x2cb74d3e matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x291bc21e matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x77005f22 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x8ebccc9f matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xb76315ae matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x75c25dce matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xd6cab877 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1509deeb matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x30949017 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5e58485e matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc9322803 matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe0a9d713 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x01ea132e dispc_runtime_put -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x03005606 omapdss_get_version -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x087739c7 dss_mgr_unregister_framedone_handler -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x0f3cb836 omap_dss_find_output_by_port_node -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x14a12992 dss_mgr_disable -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3082a0b3 dss_feat_get_supported_color_modes -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3281dfb6 omapdss_unregister_display -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x357fbc68 omap_dss_get_overlay -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x36a030b1 omap_dss_get_next_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x377c2fa8 dss_mgr_start_update -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3a50573f dispc_ovl_check -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3d36d54d dispc_mgr_set_lcd_config -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x40a22f4c omapdss_find_mgr_from_display -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x42912b0c dispc_clear_irqstatus -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x45d74ef6 dispc_mgr_enable -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4bd67a8d dispc_write_irqenable -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4c33081d omapdss_compat_uninit -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x5201d1fa omapdss_default_get_timings -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x53240137 omapdss_find_output_from_display -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x54f6830a omapdss_get_default_display_name -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x5689afe7 dispc_ovl_enable -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x594dd81b omap_dss_get_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x636b3461 omap_dss_get_num_overlays -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x66cdd3c9 dispc_mgr_setup -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x670eee3d omapdss_default_get_resolution -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6b1a3090 omap_dss_ntsc_timings -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6cfe7b0b omapdss_unregister_output -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x70e39dae dss_uninstall_mgr_ops -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x813a4255 omapdss_register_display -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x827143a1 omap_dispc_unregister_isr -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x87fdb051 dispc_mgr_go -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x89ae66d1 omap_dss_find_output -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x8ba67c43 dss_mgr_connect -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x90026c67 omapdss_output_unset_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x901accfb omap_dss_get_output -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x93963a85 dss_feat_get_num_mgrs -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x967cb4e8 dispc_ovl_set_channel_out -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x9b7ada1b dss_install_mgr_ops -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa13d27f5 dispc_read_irqenable -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa4f6a175 dispc_mgr_get_sync_lost_irq -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb119b6f3 omapdss_register_output -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb27f470b omap_dss_find_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb3027b82 omap_dss_get_overlay_manager -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb3ed5aa9 dispc_mgr_is_enabled -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb7f94a15 dispc_mgr_set_timings -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xba8ddcea dispc_mgr_get_vsync_irq -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbafeee36 dispc_runtime_get -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbc6e2483 dss_mgr_set_timings -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbe0d4752 omap_video_timings_to_videomode -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xc45105c3 dispc_mgr_go_busy -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xc8d8637b dss_mgr_enable -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xcc197296 omap_dispc_register_isr -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd1067ba7 dispc_ovl_enabled -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd70adbc1 videomode_to_omap_video_timings -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd8ed186b omap_dss_pal_timings -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xdb93b838 dispc_free_irq -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xdcedc966 omapdss_default_get_recommended_bpp -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xe2ca05e4 omap_dss_put_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xe7987055 omapdss_output_set_device -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xeb77e3b2 dss_mgr_set_lcd_config -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xee2bc2d0 omapdss_is_initialized -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xef3b2795 dispc_mgr_get_framedone_irq -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf17ebc2d dss_mgr_disconnect -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf4a7fc6d omapdss_compat_init -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf4f63234 dispc_read_irqstatus -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xf9427374 dispc_request_irq -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xfa95d18f dispc_ovl_setup -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xfb78edd8 dss_mgr_register_framedone_handler -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xfe40bf95 dss_feat_get_num_ovls -EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xffd2cf99 omap_dss_get_num_overlay_managers -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x10d6536a is_virtio_dma_buf -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x36e11981 virtio_dma_buf_attach -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xa635251e virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xc088a637 virtio_dma_buf_export -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 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 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 -EXPORT_SYMBOL fs/fscache/fscache 0x1a214a59 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0x1ce53704 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x1e618d45 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x2fd0d417 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x37f939c2 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x49871d89 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x50dd5527 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x558bd35a __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x563a4c0b fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x5b3f37c9 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x5c3c3d72 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x5d40bf57 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x61a54b6e __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x6afe95b0 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x752a74be __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x75c06e49 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x76c3f301 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x7db21ca9 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x7ed61c7c __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x8035188b __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x8c406961 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x906bde34 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0xa87283b9 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xaadaa84b __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0xb0049d36 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xbe29a2a3 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0xbe8c1c23 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0xbf8899fe __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0xc43c65f4 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xd2329935 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xde25c153 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0xe01bb31c __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0xe13e60f1 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0xf4e3e52d fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0xf64eefeb __fscache_enable_cookie -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 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 -EXPORT_SYMBOL fs/quota/quota_tree 0xd2994181 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xdee136c9 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xeaf99509 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xff34cbd2 qtree_write_dquot -EXPORT_SYMBOL lib/crc-itu-t 0xa2048e95 crc_itu_t -EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table -EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc7 0xba95c5c0 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 0x4c9268e1 xchacha20poly1305_decrypt -EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x635b1a76 chacha20poly1305_decrypt -EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x64375eb4 chacha20poly1305_encrypt -EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x738d84bf xchacha20poly1305_encrypt -EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xb1693668 chacha20poly1305_decrypt_sg_inplace -EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xbb7cb0d3 chacha20poly1305_encrypt_sg_inplace -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 0x03f599c7 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0x4feade4b lc_create -EXPORT_SYMBOL lib/lru_cache 0x560ad747 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0x56fc3ea0 lc_put -EXPORT_SYMBOL lib/lru_cache 0x619ed575 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed -EXPORT_SYMBOL lib/lru_cache 0x9e937a5d lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0xc48fa976 lc_set -EXPORT_SYMBOL lib/lru_cache 0xc6e4cd46 lc_reset -EXPORT_SYMBOL lib/lru_cache 0xcb990a55 lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcea6747e lc_destroy -EXPORT_SYMBOL lib/lru_cache 0xd212c9f0 lc_get -EXPORT_SYMBOL lib/lru_cache 0xeb13128b lc_del -EXPORT_SYMBOL lib/lru_cache 0xf460a486 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0xf5ea5f5c lc_index_of -EXPORT_SYMBOL lib/lru_cache 0xf6acec20 lc_find -EXPORT_SYMBOL lib/lz4/lz4_compress 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 0x4cc636f2 LZ4_loadDictHC -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x765fd165 LZ4_saveDictHC -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xd02774b1 LZ4_compress_HC_continue -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 0x067fa594 objagg_create -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 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 0x13d24f16 ZSTD_compressBegin_advanced -EXPORT_SYMBOL lib/zstd/zstd_compress 0x1de3f19a ZSTD_endStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x2a0fd0d0 ZSTD_getCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0x2eacbe22 ZSTD_compressBlock -EXPORT_SYMBOL lib/zstd/zstd_compress 0x3281fb74 ZSTD_compress_usingDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x3545701d ZSTD_compressBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0x35bdc817 ZSTD_getBlockSizeMax -EXPORT_SYMBOL lib/zstd/zstd_compress 0x3b209a35 ZSTD_compressBegin -EXPORT_SYMBOL lib/zstd/zstd_compress 0x41e56a18 ZSTD_checkCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0x51022053 ZSTD_compressBegin_usingDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x58f4c817 ZSTD_adjustCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0x63230633 ZSTD_initCStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x6443babd ZSTD_compressContinue -EXPORT_SYMBOL lib/zstd/zstd_compress 0x66dbb4d2 ZSTD_initCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x6cbcd95e ZSTD_compressStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x71432c37 ZSTD_CCtxWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0x78431876 ZSTD_compressBegin_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x7aba5c0b ZSTD_getParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0x7b51b66c ZSTD_resetCStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x910096b6 ZSTD_compressEnd -EXPORT_SYMBOL lib/zstd/zstd_compress 0x9e0ec162 ZSTD_CStreamOutSize -EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel -EXPORT_SYMBOL lib/zstd/zstd_compress 0xa9eb465f ZSTD_CStreamInSize -EXPORT_SYMBOL lib/zstd/zstd_compress 0xb7872388 ZSTD_copyCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0xba2ffeea ZSTD_initCStream_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0xc04b3f8c ZSTD_compressCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0xcdfa135d ZSTD_CDictWorkspaceBound -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 0x4a401a39 lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xb4559465 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xbfb4e27e lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xcb8e1b25 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0xe0a73d60 lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xe3cce93b lowpan_unregister_netdevice -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 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 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 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 0x7946588d v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x80bbc6fd p9_parse_header -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 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe6b1e55e p9stat_read -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 0x1b7d1ac7 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x1e49ac37 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x21f33a7d aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0xd96131d0 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/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 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x5f5d9df2 atm_charge -EXPORT_SYMBOL net/atm/atm 0x6b9a3871 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x8a337738 atm_dev_deregister -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 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xf7d9e76f atm_dev_release_vccs -EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0x16ecb4d1 ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x38272eef ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x8cf9255f ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x91cefae3 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0xa2222a22 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xcc766e5d ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0xd0d0bd46 ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xde62915f ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -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 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 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 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 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdb5f1ce5 __hci_cmd_sync -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 0x2a63189a ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5c2e84cb ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5db7309b ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x83019d2d ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd2351971 ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xeb20df26 ebt_unregister_table_pre_exit -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 0x40babbe0 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x460bd1a6 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 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 0x01dc05d8 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x05866231 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x0904d6f3 osd_req_op_extent_osd_data_bio -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 0x0d658175 ceph_msg_new2 -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 0x11954832 ceph_msg_data_add_pages -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 0x1cba3f20 ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0x1d89c772 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x1da00822 ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x1f479c4e ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x206ac2c1 ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy -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 0x317ac0ee ceph_oloc_copy -EXPORT_SYMBOL net/ceph/libceph 0x3405b810 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x3522979c ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0x3546173a ceph_client_addr -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 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3cde9e5c ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0x3d0f2a7c ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x3e5361da ceph_osdc_new_request -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 0x45044d94 ceph_find_or_create_string -EXPORT_SYMBOL net/ceph/libceph 0x465479ea osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -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 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 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x591c9f6d ceph_cls_break_lock -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 0x6308d5fa ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x6431869a ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x644b6e50 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x680782a1 ceph_auth_is_authenticated -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 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 0x753e24f8 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x7624e290 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x77e20115 ceph_osdc_copy_from -EXPORT_SYMBOL net/ceph/libceph 0x7dca83d6 ceph_osdc_wait_request -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 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x890e608c osd_req_op_extent_init -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 0x8da1dcb2 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x8eb92c7a ceph_check_fsid -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 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 0x9ca95932 ceph_create_snap_context -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 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 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xae38a4ca osd_req_op_extent_update -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 0xb5289443 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 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 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 0xc8cff474 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xc93710ab osd_req_op_cls_init -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 0xce024d52 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xdab62a78 __ceph_auth_get_authorizer -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 0xe41d303e ceph_con_close -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 0xed701d7d osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string -EXPORT_SYMBOL net/ceph/libceph 0xeeaec0f5 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents -EXPORT_SYMBOL net/ceph/libceph 0xef1fd3f9 ceph_con_keepalive -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/ceph/libceph 0xfbd029d7 ceph_con_init -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x71f3df6a dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xc9f8bc9f dccp_req_err -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 0x19741ae4 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x6c530ee7 __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0x8d64b649 __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xff1adff3 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0x824a99b5 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x07c7b4fb ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x0aafe352 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xad14e5b8 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xcbe4cf52 ip_tunnel_encap_del_ops -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 0x1b6e317a ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x645325a5 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x8602e6a1 ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xea1010bc ipt_do_table -EXPORT_SYMBOL net/ipv4/tunnel4 0xbf304174 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0xec0bec5f xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x88f5cdca udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4cc30706 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4e7db0db ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6fc0254d ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x89985ccc ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcee3a808 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd7d3d756 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdce78a57 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdd96105a ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe20b84f1 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7c770bed ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xa32ffa08 ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf96c2f4e ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xfe14002a ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/tunnel6 0x21c6b366 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0xb9f8e402 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x1724a411 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xf2c1c15d 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/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 0x059272ae ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x0a87a434 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x0c1ddd5e ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x1094cf05 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x126775f4 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x141c335a __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x143ea024 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x16b81ea8 ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x16ee39b1 ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0x16efdcf7 ieee80211_stop_queue -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 0x1a8013ee ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x1df55ee2 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x231d7aa8 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x23363219 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x2586858d ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0x25ae8338 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x274f6f1c ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x2b411c03 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x2c55f78a rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x2ec7161a ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x2f0acaa2 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x2fc100c4 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x31a9fd05 ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0x31de9cdb ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x31f82852 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x35171993 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x375fa271 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x3aa20c1e ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x3ab259fd __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x3d9463a4 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x409f6af3 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x40d4b723 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x45044fe6 ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0x4e520752 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x4ff35f93 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x505e5183 ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x51918fcf ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x51f55dfa ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x5340e7d7 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x5396fc2c ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x5ba73765 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x5eae4cef ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x63dba778 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x68a0f5c7 ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0x69adc407 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x6a5a668c ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x71b2a927 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x7280503b ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x752a8bba ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x7a455738 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x7d7f25d1 ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0x84c7d5ff ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x89a7b2a5 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x8cb2072e ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x8de2614a ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0x8e669f5e ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x91237990 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x9208548e ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x927e6815 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x95488c44 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x9686dd18 ieee80211_return_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x97c95d31 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x99261c2c ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x9b54eaf2 ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0xa3791c54 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0xa7385960 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0xa89543d4 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xa941b2f4 ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0xaceb7881 ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0xad528ad2 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xb00bb14d ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0xb2f56c4d ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xb36a08ca ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0xb414b020 ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0xb4ff3518 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xb5e1a27d ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xb68c3ea2 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xc7793f9e ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xc83b4386 ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xcb37b21f ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xccf47eae ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0xcebc6e5b ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0xcf529629 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0xd3f29779 ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0xd4c4097c ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0xd9b99bc9 ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xdc6a63ca ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xddf65f69 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0xe3a5974a ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xea001a2e ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xee77f13c ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xeec97e00 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0xef445b2a ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xf0cc835b ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0xf6c5fcf8 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0xf7c34bb8 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xf9510889 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xfb178a54 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xff3e2299 ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xff560405 ieee80211_send_bar -EXPORT_SYMBOL net/mac802154/mac802154 0x042b2019 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x0bf09c26 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x289a6b14 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x3cf85713 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x45945cae ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x8d131eea ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xe27c2fc3 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xeccb1e25 ieee802154_unregister_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1c344ec4 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x23114023 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2d813ccd ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x59878c92 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x60170335 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x64b2a0d9 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6c521a2a ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6db0d484 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x72a729a5 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x733c804b unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x76fd9e93 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x82e2acf8 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc55a0f76 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xce6c4007 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfb257029 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xbee217a6 nf_ct_ext_add -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x13ad73ad nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x44f2d037 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x69dfcb78 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x77625e17 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy -EXPORT_SYMBOL net/netfilter/x_tables 0x004eec3d xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x2668df40 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks -EXPORT_SYMBOL net/netfilter/x_tables 0x454fd653 xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name -EXPORT_SYMBOL net/netfilter/x_tables 0x4b0bb374 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x7a48f606 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xc3f451cb xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xda4fb7f7 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xe6b51140 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0xf4c841d9 xt_find_table -EXPORT_SYMBOL net/netfilter/x_tables 0xfb758506 xt_unregister_targets -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 -EXPORT_SYMBOL net/nfc/hci/hci 0x0dceae3a nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0x161c215d nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x168cdfe9 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x1dcf8efa nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x4159d431 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x4b604d64 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x4dbc36cd nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x6a66d0b7 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x7d3223a6 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x7ebe62d1 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x8afaa6c4 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x9deb5d80 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0xab2d0087 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xbb085e9a nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0xdc545698 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -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 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/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 0x0599f298 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x337719b8 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x36afd994 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5d983f81 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x74b40e9a rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x7a82bd8f rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x80baf4f9 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0x93a69385 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x973f2501 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb0ca88c6 rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0xbf7c914f rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc1a7f943 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0xcc8d8587 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd20e3f6d rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0xdb3545d7 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xddfd3907 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xdef84ea8 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf27becd1 rxrpc_get_null_key -EXPORT_SYMBOL net/sctp/sctp 0xb8b45a0a sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x27edc867 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x661f33a7 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xbe224bda gss_mech_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0x46d3128a xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0xbd903194 get_srcport -EXPORT_SYMBOL net/sunrpc/sunrpc 0xde98ceb2 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xed82ec1b xdr_truncate_encode -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 0x88aeb4e3 tls_get_record -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 0x120531f3 cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0x12edaf69 cfg80211_cqm_beacon_loss_notify -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 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x196c7ac6 cfg80211_cqm_txe_notify -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 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 0x27efff25 ieee80211_s1g_channel_width -EXPORT_SYMBOL net/wireless/cfg80211 0x2a5d816f cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x32903748 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x34295ebe regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x35b3059f ieee80211_get_channel_khz -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 0x43afadee ieee80211_radiotap_iterator_init -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 0x4f335787 cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x534d4b24 cfg80211_check_combinations -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 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 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6beb2e45 cfg80211_probe_status -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 0x71750bbe ieee80211_data_to_8023_exthdr -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 0x79b82a71 cfg80211_find_vendor_elem -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 0x81874735 ieee80211_get_response_rate -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 0x8b24e88f cfg80211_merge_profile -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 0x9c90ef11 cfg80211_unlink_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 0xa9e0caa4 ieee80211_amsdu_to_8023s -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 0xb73aafb1 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xb875f6a6 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xb8cda64d ieee80211_get_num_supported_channels -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 0xc1b99792 ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xc33ebb41 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band -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 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 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 0xe347c12f ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xe78f6ed8 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0xe9251a99 cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0xea93ca3f cfg80211_get_station -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 0xef265f27 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf04f7a55 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xf303b277 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xf33e35df cfg80211_iter_combinations -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 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 -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x349f972e snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x35c79b93 snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x402835e4 snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 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-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf912f0c8 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x1724fb56 snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x17fcf66b snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x1cff6e14 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2f853c43 snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5f7f98 snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x56efbc6b snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdaf3383a snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x8bd1b022 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd-hwdep 0x1cfe354f snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x022e5256 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0f3306a1 snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0x140fbdc9 snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1481624e snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4751406c snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4755516b snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4e253625 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x51b749da snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5cb90c04 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6783e56d snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6c48be22 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x99b2cf1d snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9bf73e8a snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb7d166a6 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc90fcd7a snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd1fd8923 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf7c1b91a __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xfa75eca8 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xfc849646 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0xfdac3ccc snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/snd-seq-device 0xcafa674b snd_seq_device_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xbe764019 snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x31154b7c snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4aad4af7 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8a09ad28 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa08bf5ab snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc27dec4a snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc732a6f9 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xcc906e15 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xcddb2c4e snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xdc201cfc snd_opl3_reset -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5d893caf snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7a627963 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9178fe59 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9d98942e snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xab43ebe6 snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb332b220 snd_vx_dsp_load -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 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 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 0x49cace5b cmp_connection_break -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 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 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 -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x5079ed97 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xf21bc5d2 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x088e90ee snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x22eac9f0 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x317765ab snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9c336053 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xadd00d1a snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb5ec973d snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc9b63c2e snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xdec84453 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x31263126 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x39be986e snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x586e6697 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x5d0a3d8a snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x63707aab snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xb7f6f441 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x0f1b0059 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1ad9842a snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2be10873 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x728f1876 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xc680790d snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe339f74c snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-i2c 0x35614c56 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x46fff8ab snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x7eb46668 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xc28b5623 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0xce047cf9 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0xebac639d snd_i2c_bus_create -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0e4bd40c snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x17fc3ec8 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1f29bd57 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2e2cd146 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2fd52436 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x364660b2 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3e4811a1 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x49655ac3 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x52868172 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x55a9a2ac snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5dfd52a9 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x68e6b7e3 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8859afff snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9337179a snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9ce3c466 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa26573a6 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb2e222d8 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1db155d0 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x20575245 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2597f60e snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3575e146 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3a3745ba snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x64c8ceb7 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9c98ee3c snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe29039e4 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xed69c576 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xb9f13382 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xc62f73a5 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xd9fc99a6 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0c963f6d oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0f0d5214 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x13d10c5f oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x190d117a oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1922d3f9 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1ee3cf85 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x26e22d7f oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x466d4b3a oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x567ee20e oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6d81f784 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x75c93b7e oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x77c5ce8b oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x82aff108 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb4a7d033 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc0f053cf oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcdf195fa oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd2ff5769 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe662029b oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xeb6d1ac7 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xff6bcb49 oxygen_write8 -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x0c38e83c snd_trident_write_voice_regs -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x1157b624 snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x12d4473c snd_trident_free_voice -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-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 -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xc4331e72 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xc5aedfb6 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x386d5b98 aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xb45e8393 aic32x4_probe -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 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/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/sof/snd-sof 0x125860d2 snd_sof_create_page_table -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 0x4fc63d45 snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5513a073 snd_sof_get_status -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 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 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 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 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 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 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 0xdcffb7d4 snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe80e9771 sof_pcm_dai_link_fixup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xeb7a0af4 snd_sof_complete -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 -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xaccda0f2 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xc46da240 snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd31d96d6 snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd5e6ad84 snd_emux_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x17b16e1d snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0x2d2c67a0 snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x83c5ced7 snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xa6d97fb6 __snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0xa977452d snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xd5390e9f snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0xe160090a __snd_util_memblk_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xe18f74c7 __snd_util_mem_free -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xf4643a95 __snd_usbmidi_create -EXPORT_SYMBOL vmlinux 0x00004740 snd_pcm_stop -EXPORT_SYMBOL vmlinux 0x0004f91f inet_getname -EXPORT_SYMBOL vmlinux 0x000c401f ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0x00127887 fb_set_suspend -EXPORT_SYMBOL vmlinux 0x0012816c sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x00255e4e xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x003d3eb6 security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0x005aa865 tcp_shutdown -EXPORT_SYMBOL vmlinux 0x005c8735 inet_bind -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 0x009e7726 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00b8aa53 __napi_schedule -EXPORT_SYMBOL vmlinux 0x00c6ff40 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x00c7833e ip_queue_xmit -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 0x0129c4f8 par_io_data_set -EXPORT_SYMBOL vmlinux 0x012df26f bdi_register -EXPORT_SYMBOL vmlinux 0x013054de inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x0135605d __skb_pad -EXPORT_SYMBOL vmlinux 0x013d5ad8 path_is_under -EXPORT_SYMBOL vmlinux 0x015af7f4 system_state -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 0x018b7b3a sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x018ede6b neigh_connected_output -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 0x01ad2e15 dquot_get_next_dqblk -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 0x01c305b9 vfs_setpos -EXPORT_SYMBOL vmlinux 0x01e6c22e update_devfreq -EXPORT_SYMBOL vmlinux 0x01e6def2 __sk_mem_reduce_allocated -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 0x020f11fa skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x0216d9bf __lock_sock_fast -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 0x02233989 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0x024221bc mmc_card_alternative_gpt_sector -EXPORT_SYMBOL vmlinux 0x0253c666 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x02561ef0 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x025657b5 __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0x025b0cc1 sock_create -EXPORT_SYMBOL vmlinux 0x025fafda skb_store_bits -EXPORT_SYMBOL vmlinux 0x0269c565 km_policy_expired -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 0x0298ec54 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x029a2297 scsi_bios_ptable -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 0x02c73e92 mdiobus_read -EXPORT_SYMBOL vmlinux 0x02d25eed of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0x02df50b0 jiffies -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 0x031d33a5 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x031e96e8 dma_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x03259e8c kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0340b7e3 param_array_ops -EXPORT_SYMBOL vmlinux 0x035771cc dma_sync_wait -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 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 0x038ee69c dev_get_by_index -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 0x03e75e21 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x03fba701 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x040453c1 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x0412acb4 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x0417e1dc dump_skip -EXPORT_SYMBOL vmlinux 0x041bcd54 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x0429fb2e blackhole_netdev -EXPORT_SYMBOL vmlinux 0x042af13c dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x042d3ba4 reuseport_has_conns_set -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 0x044e887d arp_tbl -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 0x04a2fe08 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x04a51f87 tcp_ioctl -EXPORT_SYMBOL vmlinux 0x04b5d884 filp_close -EXPORT_SYMBOL vmlinux 0x04c6b4c3 __crypto_memneq -EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine -EXPORT_SYMBOL vmlinux 0x04ce2652 netdev_info -EXPORT_SYMBOL vmlinux 0x04d84234 skb_checksum -EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x04dac430 uart_register_driver -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 0x05080e7b tcp_time_wait -EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x050f5c58 mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0x05211c8a bioset_init_from_src -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x054eddfb scsi_add_device -EXPORT_SYMBOL vmlinux 0x0550ccf0 phy_attach_direct -EXPORT_SYMBOL vmlinux 0x05895a27 sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0x059973d0 poll_freewait -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 0x05e13eb9 ZSTD_initDDict -EXPORT_SYMBOL vmlinux 0x05efac04 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x05f8080e mdio_bus_type -EXPORT_SYMBOL vmlinux 0x0612724c ptp_find_pin_unlocked -EXPORT_SYMBOL vmlinux 0x061651be strcat -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 0x0654085f dup_iter -EXPORT_SYMBOL vmlinux 0x06642b84 tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x06701289 netdev_reset_tc -EXPORT_SYMBOL vmlinux 0x06724b38 ZSTD_getFrameParams -EXPORT_SYMBOL vmlinux 0x06835118 __d_lookup_done -EXPORT_SYMBOL vmlinux 0x06892300 dquot_get_next_id -EXPORT_SYMBOL vmlinux 0x069aa3db param_ops_invbool -EXPORT_SYMBOL vmlinux 0x06af59b9 mdiobb_read -EXPORT_SYMBOL vmlinux 0x06c1ae3b pci_iomap_range -EXPORT_SYMBOL vmlinux 0x06c58b7c mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0x06cccb1c sk_common_release -EXPORT_SYMBOL vmlinux 0x06d964c6 end_page_private_2 -EXPORT_SYMBOL vmlinux 0x06fd8f14 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x0712e874 vfs_iter_read -EXPORT_SYMBOL vmlinux 0x071809e5 __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x074892df block_commit_write -EXPORT_SYMBOL vmlinux 0x074cbfcd follow_down -EXPORT_SYMBOL vmlinux 0x075543c1 mptcp_subflow_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x0756b0a1 security_sb_remount -EXPORT_SYMBOL vmlinux 0x07596b06 fqdir_init -EXPORT_SYMBOL vmlinux 0x075a2c33 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x07679ede dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x077af67c init_opal_dev -EXPORT_SYMBOL vmlinux 0x078730e1 dma_resv_fini -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07adb55b __pagevec_release -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07e2c085 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x07e74b2d tso_start -EXPORT_SYMBOL vmlinux 0x07edd28f netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace -EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched -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 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 0x085935f9 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x08696333 __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x087a8578 __alloc_disk_node -EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x08ab046b tcp_v4_syn_recv_sock -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 0x08e39398 cmd_db_read_addr -EXPORT_SYMBOL vmlinux 0x08e47491 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x08f2f285 get_unmapped_area -EXPORT_SYMBOL vmlinux 0x08f80433 da903x_query_status -EXPORT_SYMBOL vmlinux 0x08f89d75 bprm_change_interp -EXPORT_SYMBOL vmlinux 0x09186bd3 tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0x091e1160 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x094c7418 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x0961f0ef of_mdiobus_child_is_phy -EXPORT_SYMBOL vmlinux 0x09662161 pci_bus_type -EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x099810f1 mmc_wait_for_req_done -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 0x0a012f73 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0a01cdc7 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x0a082840 __traceiter_module_get -EXPORT_SYMBOL vmlinux 0x0a14510f mtd_concat_destroy -EXPORT_SYMBOL vmlinux 0x0a20d621 ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0x0a2bdffe sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr -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 0x0a84dbac xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x0a96b96a kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0ab3ab19 netdev_name_node_alt_destroy -EXPORT_SYMBOL vmlinux 0x0ac085a9 tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0x0ac8ac1d put_cmsg_scm_timestamping64 -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 0x0af66183 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x0af739e9 reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0x0b0f5bef dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x0b1b939e kmemdup -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b3a6bc9 __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x0b3b1a61 d_move -EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init -EXPORT_SYMBOL vmlinux 0x0b617520 dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0x0b61dad5 nand_get_set_features_notsupp -EXPORT_SYMBOL vmlinux 0x0b630ca6 udp_poll -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b8114e5 dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0x0b831088 inet_addr_type -EXPORT_SYMBOL vmlinux 0x0b8c4bc2 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0ba5e17e pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bc64d1a __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x0bed3bee napi_build_skb -EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x0bf24377 ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0x0bf757fd simple_get_link -EXPORT_SYMBOL vmlinux 0x0c130b98 arm_dma_ops -EXPORT_SYMBOL vmlinux 0x0c1ccf07 phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c94548b fault_in_iov_iter_readable -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 0x0cdce87c rfkill_set_hw_state_reason -EXPORT_SYMBOL vmlinux 0x0cf8aa2e rproc_elf_find_loaded_rsc_table -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 0x0d1397fd __dynamic_netdev_dbg -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 0x0d1e6d80 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x0d283e40 unregister_console -EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0x0d3c2aae unlock_page -EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le -EXPORT_SYMBOL vmlinux 0x0d47867a thread_group_exited -EXPORT_SYMBOL vmlinux 0x0d4e40fe fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d5431cd netlink_capable -EXPORT_SYMBOL vmlinux 0x0d54a929 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x0d58c236 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d7cef0f __module_put_and_exit -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 0x0dc083a9 sk_alloc -EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex -EXPORT_SYMBOL vmlinux 0x0dc7ffe1 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL vmlinux 0x0df30e2a mmc_request_done -EXPORT_SYMBOL vmlinux 0x0df5be97 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x0e02f55c __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x0e1037be skb_tx_error -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 0x0e32f14c skb_copy_expand -EXPORT_SYMBOL vmlinux 0x0e3ea9ec kthread_blkcg -EXPORT_SYMBOL vmlinux 0x0e3fde7e clocksource_unregister -EXPORT_SYMBOL vmlinux 0x0e465238 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x0e59fa7a jbd2_journal_grab_journal_head -EXPORT_SYMBOL vmlinux 0x0e62caf3 bio_endio -EXPORT_SYMBOL vmlinux 0x0e733165 xsk_uses_need_wakeup -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 0x0ec6c59b i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x0ed9d053 block_read_full_page -EXPORT_SYMBOL vmlinux 0x0eda41f6 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy -EXPORT_SYMBOL vmlinux 0x0ef421aa xfrm_input -EXPORT_SYMBOL vmlinux 0x0eff9fda netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x0f076ae3 nd_integrity_init -EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f11660c tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu -EXPORT_SYMBOL vmlinux 0x0f292998 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x0f4b73cf twl6040_power -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 0x0f5ffbb9 kernel_read -EXPORT_SYMBOL vmlinux 0x0f6f8cdf input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x0f719bd0 inode_permission -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 0x0fa65159 wireless_spy_update -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fbdd91a rproc_da_to_va -EXPORT_SYMBOL vmlinux 0x0fd0f592 mutex_trylock -EXPORT_SYMBOL vmlinux 0x0fd876c4 jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0fe7b77a finalize_exec -EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod -EXPORT_SYMBOL vmlinux 0x0ffbfcd5 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm -EXPORT_SYMBOL vmlinux 0x10018cb0 __pv_offset -EXPORT_SYMBOL vmlinux 0x100c0d05 mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0x100f666c pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x1013d00b kfree_skb_list -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 0x1046b4fe vme_bus_type -EXPORT_SYMBOL vmlinux 0x10579393 done_path_create -EXPORT_SYMBOL vmlinux 0x105f96b2 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x1060ce8a dst_release_immediate -EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x10739f1e swake_up_locked -EXPORT_SYMBOL vmlinux 0x107addb9 __do_once_done -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x1080b261 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x10879784 nobh_write_begin -EXPORT_SYMBOL vmlinux 0x1089d51c mmc_retune_release -EXPORT_SYMBOL vmlinux 0x108ef19a __pci_register_driver -EXPORT_SYMBOL vmlinux 0x10a6eac5 get_tree_bdev -EXPORT_SYMBOL vmlinux 0x10ac9855 tcf_em_tree_destroy -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 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10e6794e fsync_bdev -EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x11299a7e scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x113dabe6 pmem_sector_size -EXPORT_SYMBOL vmlinux 0x115ed9c6 blk_mq_delay_run_hw_queues -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x11838d0b phy_device_create -EXPORT_SYMBOL vmlinux 0x118bde42 filemap_fault -EXPORT_SYMBOL vmlinux 0x118ffc1b inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch -EXPORT_SYMBOL vmlinux 0x119e93ac tcf_generic_walker -EXPORT_SYMBOL vmlinux 0x11acf892 devfreq_update_status -EXPORT_SYMBOL vmlinux 0x11b5da78 xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0x11c93f55 tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg -EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic -EXPORT_SYMBOL vmlinux 0x11f27754 nand_ecc_init_ctx -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 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x1210fb32 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0x121166c6 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0x1222af7f security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0x1229f761 sk_mc_loop -EXPORT_SYMBOL vmlinux 0x124090e8 seq_file_path -EXPORT_SYMBOL vmlinux 0x124402ff pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x1251bb08 config_item_put -EXPORT_SYMBOL vmlinux 0x12587986 configfs_depend_item -EXPORT_SYMBOL vmlinux 0x1268b784 rt6_lookup -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 0x12a4231a security_path_unlink -EXPORT_SYMBOL vmlinux 0x12a856bd mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x12bf55e8 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12ec84c9 ihold -EXPORT_SYMBOL vmlinux 0x12f19edf __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x130a2c6a request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x1338be98 remove_proc_entry -EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x13712e59 skb_eth_push -EXPORT_SYMBOL vmlinux 0x1378c6b7 __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x1398c01d current_in_userns -EXPORT_SYMBOL vmlinux 0x139c7e0c param_get_invbool -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 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 0x13e0ea23 mini_qdisc_pair_init -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 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x14077ce3 inet_csk_accept -EXPORT_SYMBOL vmlinux 0x140cef8e cmxgcr_lock -EXPORT_SYMBOL vmlinux 0x1425b40e sock_i_ino -EXPORT_SYMBOL vmlinux 0x143418e1 __ps2_command -EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node -EXPORT_SYMBOL vmlinux 0x143faa9d devm_of_iomap -EXPORT_SYMBOL vmlinux 0x144a1597 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x1451e8e5 vm_zone_stat -EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc -EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x14758258 rproc_coredump_add_segment -EXPORT_SYMBOL vmlinux 0x1486978a gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0x14882855 mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0x1488e5d3 snd_jack_report -EXPORT_SYMBOL vmlinux 0x148d0bbe dquot_file_open -EXPORT_SYMBOL vmlinux 0x14a0437d ptp_schedule_worker -EXPORT_SYMBOL vmlinux 0x14b0bedb __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x14ca70f6 rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0x14cfc926 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit -EXPORT_SYMBOL vmlinux 0x14e78083 blk_queue_update_dma_pad -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 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x15570618 input_get_timestamp -EXPORT_SYMBOL vmlinux 0x155b9bf3 snd_compr_malloc_pages -EXPORT_SYMBOL vmlinux 0x15632a7f dentry_path_raw -EXPORT_SYMBOL vmlinux 0x15abc94e fault_in_iov_iter_writeable -EXPORT_SYMBOL vmlinux 0x15b1cec9 netdev_upper_dev_unlink -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 0x15d96c91 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x15e0bef3 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x15eb71cd devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x15f07f82 cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0x15f582d1 tcp_connect -EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init -EXPORT_SYMBOL vmlinux 0x16132665 zero_fill_bio -EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x16525cc4 xa_find -EXPORT_SYMBOL vmlinux 0x1664d245 dst_dev_put -EXPORT_SYMBOL vmlinux 0x169af5cd buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x16adbf67 down_killable -EXPORT_SYMBOL vmlinux 0x16bbc067 sg_miter_start -EXPORT_SYMBOL vmlinux 0x16ce39ae con_copy_unimap -EXPORT_SYMBOL vmlinux 0x16d6c219 dev_get_by_name -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16ebcd3e skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0x16ffad75 fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0x172957f1 tcp_mmap -EXPORT_SYMBOL vmlinux 0x172b5482 dma_fence_array_create -EXPORT_SYMBOL vmlinux 0x173b6494 d_alloc -EXPORT_SYMBOL vmlinux 0x1751c039 icmp6_send -EXPORT_SYMBOL vmlinux 0x175c45fa try_module_get -EXPORT_SYMBOL vmlinux 0x175c4665 filemap_map_pages -EXPORT_SYMBOL vmlinux 0x1762a52c netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0x1774370c thaw_super -EXPORT_SYMBOL vmlinux 0x17768be4 scsi_scan_target -EXPORT_SYMBOL vmlinux 0x17806a0b __breadahead -EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware -EXPORT_SYMBOL vmlinux 0x178d1387 vmf_insert_mixed_prot -EXPORT_SYMBOL vmlinux 0x1795ff8e __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x17af551d vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x17beac14 sock_no_accept -EXPORT_SYMBOL vmlinux 0x17cd8b25 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0x17d6e111 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x17eadbd9 snd_info_create_card_entry -EXPORT_SYMBOL vmlinux 0x17feb908 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x181f33c6 xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x18583951 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x185f3c8b rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0x1860cec7 fwnode_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x18704a8f nf_ip6_checksum -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 0x189ff82a __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x18a26e31 nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x18a6e0b9 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x18b19600 tcp_sock_set_syncnt -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 0x18e2cea4 phy_print_status -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18f6fc55 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x18fa3ec3 ip6_dst_alloc -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 0x192457fa page_symlink -EXPORT_SYMBOL vmlinux 0x193543ae ip_options_compile -EXPORT_SYMBOL vmlinux 0x1944a87d __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0x195c8596 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x19615f28 con_is_bound -EXPORT_SYMBOL vmlinux 0x19752e42 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x197dc3b3 omap_set_dma_src_burst_mode -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 0x198b5c1d pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0x198bc7de pci_release_region -EXPORT_SYMBOL vmlinux 0x1996f33e sock_rfree -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x199ff015 netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0x19b37944 of_find_node_by_name -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 0x19d97e84 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x19ddbf4b vlan_for_each -EXPORT_SYMBOL vmlinux 0x1a014fe9 devm_nvmem_unregister -EXPORT_SYMBOL vmlinux 0x1a04a1b6 of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0x1a1afee8 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x1a1b13cd nf_log_packet -EXPORT_SYMBOL vmlinux 0x1a21d691 __ksize -EXPORT_SYMBOL vmlinux 0x1a522438 dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn -EXPORT_SYMBOL vmlinux 0x1a7bc9ef xxh32 -EXPORT_SYMBOL vmlinux 0x1a85bd5e tag_pages_for_writeback -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 0x1ab537e4 sync_blockdev -EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio -EXPORT_SYMBOL vmlinux 0x1ad875fd generic_file_open -EXPORT_SYMBOL vmlinux 0x1aded990 ZSTD_DCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0x1aeed022 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x1af05aa5 inode_init_always -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b094b36 netif_receive_skb -EXPORT_SYMBOL vmlinux 0x1b15d935 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x1b25f187 __xa_store -EXPORT_SYMBOL vmlinux 0x1b2f8e6a of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x1b59e832 component_match_add_typed -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 0x1b965a53 kunmap_local_indexed -EXPORT_SYMBOL vmlinux 0x1b971179 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x1ba45953 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x1bcd1b10 inode_nohighmem -EXPORT_SYMBOL vmlinux 0x1bf55286 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x1bf79443 netlink_set_err -EXPORT_SYMBOL vmlinux 0x1bf8f895 ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x1c0722d4 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x1c098feb devfreq_update_interval -EXPORT_SYMBOL vmlinux 0x1c0fb316 neigh_table_init -EXPORT_SYMBOL vmlinux 0x1c2ffc6f phy_write_mmd -EXPORT_SYMBOL vmlinux 0x1c3f2cbd datagram_poll -EXPORT_SYMBOL vmlinux 0x1c44b50b sock_create_lite -EXPORT_SYMBOL vmlinux 0x1c46f541 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x1c5595e6 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x1c56c4d5 sock_no_getname -EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c6ee968 __inet6_lookup_established -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 0x1ca3ddf0 pci_release_regions -EXPORT_SYMBOL vmlinux 0x1caf2a5b always_delete_dentry -EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x1cc35bb8 nand_read_oob_std -EXPORT_SYMBOL vmlinux 0x1ccf213b find_inode_nowait -EXPORT_SYMBOL vmlinux 0x1cd4aa7a md_handle_request -EXPORT_SYMBOL vmlinux 0x1cd5fb46 km_policy_notify -EXPORT_SYMBOL vmlinux 0x1cec0e06 dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0x1cf26844 blk_mq_queue_stopped -EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL vmlinux 0x1d2942b0 ___pskb_trim -EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x1d37eeed ioremap -EXPORT_SYMBOL vmlinux 0x1d38a692 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x1d44d26c of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0x1d6e0cc3 follow_up -EXPORT_SYMBOL vmlinux 0x1d796395 hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0x1dbd108f scsi_done -EXPORT_SYMBOL vmlinux 0x1dc34b98 clear_nlink -EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key -EXPORT_SYMBOL vmlinux 0x1dd1d133 dev_mc_del -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x1de59c22 qcom_scm_ice_invalidate_key -EXPORT_SYMBOL vmlinux 0x1de67f9b qcom_scm_io_writel -EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x1e0cb2ed inet6_ioctl -EXPORT_SYMBOL vmlinux 0x1e19c1c8 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x1e1b5906 skb_dequeue_tail -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 0x1e278b06 netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0x1e2d44b2 __do_once_slow_done -EXPORT_SYMBOL vmlinux 0x1e438216 security_socket_socketpair -EXPORT_SYMBOL vmlinux 0x1e5284e4 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e7a29ad nand_write_page_raw -EXPORT_SYMBOL vmlinux 0x1e80658d __skb_ext_del -EXPORT_SYMBOL vmlinux 0x1e8a2e86 ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0x1e8c3361 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL vmlinux 0x1e96f43d __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1eb4b420 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x1eb64646 div64_s64 -EXPORT_SYMBOL vmlinux 0x1eb7c363 sock_diag_put_filterinfo -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 0x1ee58bf4 tcf_qevent_destroy -EXPORT_SYMBOL vmlinux 0x1ef79978 write_cache_pages -EXPORT_SYMBOL vmlinux 0x1f18a530 seq_pad -EXPORT_SYMBOL vmlinux 0x1f41a9a3 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x1f4b05f5 phy_loopback -EXPORT_SYMBOL vmlinux 0x1f4d5778 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x1f608004 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x1f69c1ff tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x1f6c62fd dma_resv_add_excl_fence -EXPORT_SYMBOL vmlinux 0x1f730a56 sg_miter_stop -EXPORT_SYMBOL vmlinux 0x1f897ec5 pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0x1f8ecd4f i2c_del_driver -EXPORT_SYMBOL vmlinux 0x1f9b3c7f unregister_cdrom -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 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200036a3 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x20070ea2 _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x2008876f xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x200d43fe sock_release -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 -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 0x206ff7ef udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x2072b8b4 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0x207b9da4 dev_trans_start -EXPORT_SYMBOL vmlinux 0x20992f91 vme_slot_num -EXPORT_SYMBOL vmlinux 0x20a7767a __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20fd0aa1 skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context -EXPORT_SYMBOL vmlinux 0x21110dbf mmioset -EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 -EXPORT_SYMBOL vmlinux 0x21302b5a elv_rb_find -EXPORT_SYMBOL vmlinux 0x21319936 input_set_capability -EXPORT_SYMBOL vmlinux 0x213257eb napi_complete_done -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 0x216755e0 snd_timer_start -EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy -EXPORT_SYMBOL vmlinux 0x217d9d8f bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x2181636a security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0x21887505 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -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 0x21d764b3 vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21e26438 of_device_register -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 0x2224ab49 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x22332a6e dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0x2236aa4d inet_accept -EXPORT_SYMBOL vmlinux 0x223b7725 tcp_enter_cwr -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 0x226b3352 build_skb_around -EXPORT_SYMBOL vmlinux 0x22873b07 inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0x22a7f6e0 phy_trigger_machine -EXPORT_SYMBOL vmlinux 0x22ac3229 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x22b07da0 __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22eb4b55 sock_sendmsg -EXPORT_SYMBOL vmlinux 0x2310eb26 km_state_expired -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 0x23369291 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x2358fe3d sock_no_sendmsg_locked -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 0x23c52ab5 inet_get_local_port_range -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 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x24303169 __check_sticky -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x24625498 __netif_schedule -EXPORT_SYMBOL vmlinux 0x24660310 fs_lookup_param -EXPORT_SYMBOL vmlinux 0x246790df idr_for_each -EXPORT_SYMBOL vmlinux 0x2468dc08 dev_set_mtu -EXPORT_SYMBOL vmlinux 0x246ea205 blake2s_update -EXPORT_SYMBOL vmlinux 0x2474f511 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x24750fd3 rawnand_sw_bch_correct -EXPORT_SYMBOL vmlinux 0x2486fe96 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x249bf1f7 __ClearPageMovable -EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL vmlinux 0x24b855bd inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x24d161ba security_path_rename -EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24e9ed5f from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x24ebdab1 nd_device_notify -EXPORT_SYMBOL vmlinux 0x24f4cae7 inet_select_addr -EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x250b8a92 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x252ef981 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x254cc665 __destroy_inode -EXPORT_SYMBOL vmlinux 0x254e183f rio_query_mport -EXPORT_SYMBOL vmlinux 0x2551f9bb skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x257ae45c dma_fence_free -EXPORT_SYMBOL vmlinux 0x2581c529 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -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 0x25a21cd5 __udp_disconnect -EXPORT_SYMBOL vmlinux 0x25c82934 unix_destruct_scm -EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x25e658ef devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x25e66abc unregister_tcf_proto_ops -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 0x25f4f8a6 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x25feb105 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x2618e999 ps2_begin_command -EXPORT_SYMBOL vmlinux 0x261c33aa dma_map_page_attrs -EXPORT_SYMBOL vmlinux 0x2621217f tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x265036b4 proc_mkdir -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 0x26ad6f7c nand_ecc_sw_hamming_calculate -EXPORT_SYMBOL vmlinux 0x26af2ca0 __skb_checksum -EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0x26c1ecb7 ptp_find_pin -EXPORT_SYMBOL vmlinux 0x26d1d08c nobh_writepage -EXPORT_SYMBOL vmlinux 0x26e4e193 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x26e911db snd_timer_open -EXPORT_SYMBOL vmlinux 0x26fbb8fc phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0x2701232c pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x271e0118 igrab -EXPORT_SYMBOL vmlinux 0x2731f50b pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x2736543b inet_frag_destroy -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 0x275dfee4 ucc_slow_free -EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x276a3a44 irq_stat -EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string -EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x2783db67 neigh_carrier_down -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x2789b0fd netif_device_detach -EXPORT_SYMBOL vmlinux 0x27ab43f7 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27bddcc2 cad_pid -EXPORT_SYMBOL vmlinux 0x27ca6f5d skb_queue_tail -EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27e6b46b devm_clk_hw_register_clkdev -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 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x281c09a5 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x28213d01 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x2830b886 ip_sock_set_tos -EXPORT_SYMBOL vmlinux 0x283ba8ea blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x283fe33f passthru_features_check -EXPORT_SYMBOL vmlinux 0x2867b1ee vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0x286e72ae inet_dgram_connect -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 0x28c57dcb write_one_page -EXPORT_SYMBOL vmlinux 0x28d0234d napi_disable -EXPORT_SYMBOL vmlinux 0x28d0f436 ip_tunnel_header_ops -EXPORT_SYMBOL vmlinux 0x28deb5ca __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x28fe9cc1 seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0x2929f603 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x294a561b block_invalidatepage -EXPORT_SYMBOL vmlinux 0x294e756f vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x2960da65 __sock_i_ino -EXPORT_SYMBOL vmlinux 0x2974adff flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0x2977346b __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x29876607 __d_drop -EXPORT_SYMBOL vmlinux 0x2989985b __SetPageMovable -EXPORT_SYMBOL vmlinux 0x2995c262 phy_ethtool_get_stats -EXPORT_SYMBOL vmlinux 0x2998480e __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x29a47fe9 dma_fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x29d1a231 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x29d9f26e cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x29ecfc88 tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0x29f54285 tcf_classify -EXPORT_SYMBOL vmlinux 0x29faa5a5 sock_set_reuseport -EXPORT_SYMBOL vmlinux 0x2a117e5f flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0x2a266b7a kernel_write -EXPORT_SYMBOL vmlinux 0x2a27573d phy_get_c45_ids -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a30c2dd dma_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit -EXPORT_SYMBOL vmlinux 0x2a52f245 nand_ecc_sw_bch_calculate -EXPORT_SYMBOL vmlinux 0x2a5a0c4c eth_get_headlen -EXPORT_SYMBOL vmlinux 0x2a7864b7 kobject_add -EXPORT_SYMBOL vmlinux 0x2a895c52 fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free -EXPORT_SYMBOL vmlinux 0x2a95bf88 tcp_mtu_to_mss -EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get -EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp -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 0x2b238e10 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x2b26a088 kill_fasync -EXPORT_SYMBOL vmlinux 0x2b31aeb5 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x2b398a66 skb_clone -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 0x2b719938 fb_set_cmap -EXPORT_SYMBOL vmlinux 0x2b8a179e __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0x2b921749 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x2b97b00c of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0x2b99722a __cpu_active_mask -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2bbf3839 mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0x2bcc85fd mdio_device_remove -EXPORT_SYMBOL vmlinux 0x2bff5887 xa_destroy -EXPORT_SYMBOL vmlinux 0x2c011fc2 pin_user_pages_remote -EXPORT_SYMBOL vmlinux 0x2c07d265 mmc_retune_pause -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 0x2c4a6e94 tcp_initialize_rcv_mss -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 0x2c6e56ae inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem -EXPORT_SYMBOL vmlinux 0x2c7ec450 lru_cache_add -EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs -EXPORT_SYMBOL vmlinux 0x2c8df56d generic_setlease -EXPORT_SYMBOL vmlinux 0x2c917c72 neigh_for_each -EXPORT_SYMBOL vmlinux 0x2ca70052 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL vmlinux 0x2cc565d7 tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0x2ccf3629 unix_get_socket -EXPORT_SYMBOL vmlinux 0x2cd90977 mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0x2cdd80ec simple_write_begin -EXPORT_SYMBOL vmlinux 0x2ce022a8 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x2cf90c9c eth_type_trans -EXPORT_SYMBOL vmlinux 0x2cfbaff4 __cleancache_invalidate_inode -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 0x2d27d604 __mdiobus_write -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d3ef14c rproc_add_subdev -EXPORT_SYMBOL vmlinux 0x2d3f195e vfs_rename -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 0x2d681bf7 vmap -EXPORT_SYMBOL vmlinux 0x2d683bc5 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0x2d6b0eda dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0x2d6bad36 netdev_txq_to_tc -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 0x2d912bca dmi_get_bios_year -EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2dacc1ab inet_stream_ops -EXPORT_SYMBOL vmlinux 0x2dc963bb proto_register -EXPORT_SYMBOL vmlinux 0x2dd15a2b kernel_accept -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 0x2de72fb3 set_disk_ro -EXPORT_SYMBOL vmlinux 0x2df0d65f devm_request_resource -EXPORT_SYMBOL vmlinux 0x2e091c12 mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL vmlinux 0x2e52c6eb md_finish_reshape -EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2e66a6c6 ipv6_dev_find -EXPORT_SYMBOL vmlinux 0x2e673bbe __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x2e677f0c __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0x2e8117ed netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x2e87247a module_put -EXPORT_SYMBOL vmlinux 0x2e9c316f genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ed05600 mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0x2edeb3d9 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x2edf7266 inet_ioctl -EXPORT_SYMBOL vmlinux 0x2ee82356 elv_rb_latter_request -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 0x2f3636b5 ping_prot -EXPORT_SYMBOL vmlinux 0x2f3b557b vme_irq_generate -EXPORT_SYMBOL vmlinux 0x2f3ddf7d mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0x2f3f9ef9 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x2f50cbf5 proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x2f5b0fdb gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2f632835 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f7cca4f scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x2f89526c flow_rule_alloc -EXPORT_SYMBOL vmlinux 0x2faa598d register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x2faad480 cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x2fac80cd tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x2fb57967 seq_escape_mem -EXPORT_SYMBOL vmlinux 0x2fb911ed bio_clone_fast -EXPORT_SYMBOL vmlinux 0x2fc516fa rt_dst_alloc -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 0x303313ba __traceiter_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x30402afe generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x304e154d make_kprojid -EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp -EXPORT_SYMBOL vmlinux 0x307108cc xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x30745185 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x307c84e9 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x308355d4 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30a87f09 inet_sendpage -EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30b12b14 blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0x30b3db4d tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0x30bc7c8e sget -EXPORT_SYMBOL vmlinux 0x30d8357b scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x30d9a471 gen_pool_create -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 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x31297f96 get_fs_type -EXPORT_SYMBOL vmlinux 0x312e79fb udp_read_sock -EXPORT_SYMBOL vmlinux 0x31371450 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x313fd1bb param_set_byte -EXPORT_SYMBOL vmlinux 0x314b20c8 scnprintf -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 0x31891e4c utf8nagemin -EXPORT_SYMBOL vmlinux 0x319fb32f qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available -EXPORT_SYMBOL vmlinux 0x31ba28e2 mfd_remove_devices_late -EXPORT_SYMBOL vmlinux 0x31da90f5 tty_register_driver -EXPORT_SYMBOL vmlinux 0x31efaa21 cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0x31f510bf serio_unregister_port -EXPORT_SYMBOL vmlinux 0x3200b605 sk_stop_timer -EXPORT_SYMBOL vmlinux 0x320f16ab ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0x3231809c __devm_of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd -EXPORT_SYMBOL vmlinux 0x323e5657 mmc_put_card -EXPORT_SYMBOL vmlinux 0x3242b497 pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0x32430023 _totalhigh_pages -EXPORT_SYMBOL vmlinux 0x325a4e78 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x326bd811 xfrm_state_walk_done -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 0x32896ca6 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy -EXPORT_SYMBOL vmlinux 0x329b7b15 skb_dequeue -EXPORT_SYMBOL vmlinux 0x32add087 end_page_writeback -EXPORT_SYMBOL vmlinux 0x32c8835d sk_capable -EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32da1619 ip_frag_next -EXPORT_SYMBOL vmlinux 0x32ee1630 cred_fscmp -EXPORT_SYMBOL vmlinux 0x3333cbbb seq_hex_dump -EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down -EXPORT_SYMBOL vmlinux 0x335298c9 mdio_device_create -EXPORT_SYMBOL vmlinux 0x335c5a5d blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x3384fd97 remove_watch_from_object -EXPORT_SYMBOL vmlinux 0x3388416e skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x33a98532 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x33b29996 del_gendisk -EXPORT_SYMBOL vmlinux 0x33bda6a5 sock_no_connect -EXPORT_SYMBOL vmlinux 0x33c169c7 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x33c22422 dqget -EXPORT_SYMBOL vmlinux 0x33cc7277 xfrm4_udp_encap_rcv -EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq -EXPORT_SYMBOL vmlinux 0x33fd6283 xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x3410f29c mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x342f1029 pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0x3439b079 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x344b012a __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x34637e41 flow_rule_match_ct -EXPORT_SYMBOL vmlinux 0x346cf000 __devm_request_region -EXPORT_SYMBOL vmlinux 0x3471e6c4 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x349b4277 xa_clear_mark -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34a04d71 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x34abc2dc inet_protos -EXPORT_SYMBOL vmlinux 0x34b5fe28 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x34b6b00a ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x34bc028d arp_create -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 0x34d31045 netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0x34d4ac8a freezing_slow_path -EXPORT_SYMBOL vmlinux 0x34e9c5da netdev_master_upper_dev_get_rcu -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 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x352eb16e of_get_parent -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 0x3560e651 kmemdup_nul -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x357babc1 qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0x358b84a8 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x35a47b52 snd_pcm_create_iec958_consumer -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -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 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable -EXPORT_SYMBOL vmlinux 0x3616fb70 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL vmlinux 0x361a145b sock_init_data_uid -EXPORT_SYMBOL vmlinux 0x362677f3 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x36399692 sock_recvmsg -EXPORT_SYMBOL vmlinux 0x364000f5 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x364879a2 devm_of_find_backlight -EXPORT_SYMBOL vmlinux 0x36558840 md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x3656f23a prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0x36588e6a tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x366a6613 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x3672ecc5 get_tree_single -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 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 0x36d69557 ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x36df891d udp_disconnect -EXPORT_SYMBOL vmlinux 0x36f13736 twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x36f24f8f simple_empty -EXPORT_SYMBOL vmlinux 0x36f5415b pipe_lock -EXPORT_SYMBOL vmlinux 0x36f76786 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x36f7df64 tcp_check_req -EXPORT_SYMBOL vmlinux 0x3702bfea d_exact_alias -EXPORT_SYMBOL vmlinux 0x3725f09b edac_mc_find -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 0x37630f5a flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x376b8e8f snd_component_add -EXPORT_SYMBOL vmlinux 0x378f844f pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL vmlinux 0x37b022f9 sg_split -EXPORT_SYMBOL vmlinux 0x37bba2e2 mount_single -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37c6fe2a nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x37f92870 pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0x3803a5e4 try_to_release_page -EXPORT_SYMBOL vmlinux 0x380ad827 security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381a8f0e ata_print_version -EXPORT_SYMBOL vmlinux 0x383208f1 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x3842b3a6 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x3850b6c0 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x385fcb6e dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0x38617b07 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x38637fe1 refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0x3865e2f7 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x386d9ce9 radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x3877920a dst_destroy -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 0x389e2e25 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 -EXPORT_SYMBOL vmlinux 0x38a3b5e7 xp_raw_get_data -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a7e819 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -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 0x38e37b43 pskb_extract -EXPORT_SYMBOL vmlinux 0x38ef1e3f serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq -EXPORT_SYMBOL vmlinux 0x38f8b4ff of_get_mac_address -EXPORT_SYMBOL vmlinux 0x390e8ea0 md_error -EXPORT_SYMBOL vmlinux 0x3913b6f9 skb_put -EXPORT_SYMBOL vmlinux 0x39160f18 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x391d8681 tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0x392ca769 bdi_alloc -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -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 0x39503f9a ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x39507b63 mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0x39569222 iptun_encaps -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 0x3992bc63 __xa_set_mark -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399aabfa pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x39a2256b vm_insert_pages -EXPORT_SYMBOL vmlinux 0x39b356e7 nf_register_queue_handler -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 0x39d04d54 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x39dfe0b4 dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0x39e86370 md_integrity_register -EXPORT_SYMBOL vmlinux 0x39ea52e0 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x39f65ddd eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x39fdde4b sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x3a06a216 flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc -EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x3a468a00 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a5b5989 kthread_bind -EXPORT_SYMBOL vmlinux 0x3a5ea95d find_inode_rcu -EXPORT_SYMBOL vmlinux 0x3a873a82 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x3a8f31f1 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x3a95ecda mroute6_is_socket -EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3ad6fd8e krait_get_l2_indirect_reg -EXPORT_SYMBOL vmlinux 0x3ada5d48 __nd_driver_register -EXPORT_SYMBOL vmlinux 0x3ae8302d netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0x3af1c346 of_node_get -EXPORT_SYMBOL vmlinux 0x3af82642 kmalloc_caches -EXPORT_SYMBOL vmlinux 0x3afd8705 sock_wfree -EXPORT_SYMBOL vmlinux 0x3b12af5b netif_rx_ni -EXPORT_SYMBOL vmlinux 0x3b1581d0 eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0x3b207827 security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0x3b2815ae eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x3b299067 percpu_counter_set -EXPORT_SYMBOL vmlinux 0x3b3344ca tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x3b40879d check_zeroed_user -EXPORT_SYMBOL vmlinux 0x3b590ab8 nf_log_set -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 0x3ba23cf5 tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0x3bb3c130 generic_listxattr -EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base -EXPORT_SYMBOL vmlinux 0x3be4c1ff ps2_sliced_command -EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c1881ef udp6_seq_ops -EXPORT_SYMBOL vmlinux 0x3c2b58d3 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr -EXPORT_SYMBOL vmlinux 0x3c32f204 sock_efree -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c60315c ioremap_cache -EXPORT_SYMBOL vmlinux 0x3c716a08 __ip_select_ident -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 0x3c952929 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x3ca4f60e dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x3ccdb3de tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x3cd26aff qdisc_put -EXPORT_SYMBOL vmlinux 0x3cd58b8d amba_release_regions -EXPORT_SYMBOL vmlinux 0x3cd5bb7f sk_reset_timer -EXPORT_SYMBOL vmlinux 0x3cd70d2b phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ce65538 inet_release -EXPORT_SYMBOL vmlinux 0x3cea8f96 set_bdi_congested -EXPORT_SYMBOL vmlinux 0x3cf6570c __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x3d195644 dev_uc_sync -EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap -EXPORT_SYMBOL vmlinux 0x3d404ceb __vmalloc_array -EXPORT_SYMBOL vmlinux 0x3d48e8c9 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x3d4cd588 tcf_action_exec -EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d7d9b3d snd_jack_set_parent -EXPORT_SYMBOL vmlinux 0x3d808d9e snd_ctl_remove_id -EXPORT_SYMBOL vmlinux 0x3d83d90c sock_create_kern -EXPORT_SYMBOL vmlinux 0x3d8b20c4 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x3d8ebba9 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x3d94813e mmc_is_req_done -EXPORT_SYMBOL vmlinux 0x3d9bf2b8 genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0x3d9d6576 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x3dc1e64f xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -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 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e0c88c8 config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0x3e0db757 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x3e0e7677 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x3e1a6192 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x3e1f20ae logfc -EXPORT_SYMBOL vmlinux 0x3e348fb3 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e4c31ce simple_transaction_set -EXPORT_SYMBOL vmlinux 0x3e5b1afa rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x3e82f3e9 get_random_bytes -EXPORT_SYMBOL vmlinux 0x3e896b07 scsi_print_result -EXPORT_SYMBOL vmlinux 0x3ea00424 pci_read_vpd -EXPORT_SYMBOL vmlinux 0x3ea1b6e4 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0x3ec15cbd netdev_lower_get_first_private_rcu -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 0x3ef83d46 mmc_set_data_timeout -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 0x3f32da8e init_task -EXPORT_SYMBOL vmlinux 0x3f33d724 of_chosen -EXPORT_SYMBOL vmlinux 0x3f3f885b xsk_tx_release -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 0x3f6191d3 current_time -EXPORT_SYMBOL vmlinux 0x3f62d048 dma_fence_init -EXPORT_SYMBOL vmlinux 0x3f63bb1c __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0x3f705776 dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f915849 mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0x3f938e8d generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x3faf1b30 block_is_partially_uptodate -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 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fe04182 sock_edemux -EXPORT_SYMBOL vmlinux 0x3fea538c hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x3ff50f80 xp_dma_map -EXPORT_SYMBOL vmlinux 0x3ff59415 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x40270752 shmem_aops -EXPORT_SYMBOL vmlinux 0x403a93e7 radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0x405199e0 dev_alloc_name -EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump -EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 -EXPORT_SYMBOL vmlinux 0x407a3275 omap_start_dma -EXPORT_SYMBOL vmlinux 0x408c52e1 dump_emit -EXPORT_SYMBOL vmlinux 0x40910495 __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -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 0x40c1a616 dev_change_proto_down_reason -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40cf502e tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d287fc simple_dir_operations -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 0x40f489e2 vfs_readlink -EXPORT_SYMBOL vmlinux 0x4103139f tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x4117c7f3 mntput -EXPORT_SYMBOL vmlinux 0x412b9a8c sk_dst_check -EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x414975dd __genradix_prealloc -EXPORT_SYMBOL vmlinux 0x414afa54 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0x4150c4f6 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x415e379b __vfs_setxattr -EXPORT_SYMBOL vmlinux 0x41624650 seq_escape -EXPORT_SYMBOL vmlinux 0x4164d84f iget_failed -EXPORT_SYMBOL vmlinux 0x416d58a4 sock_set_reuseaddr -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 0x41a349c6 inet_frags_init -EXPORT_SYMBOL vmlinux 0x41bb84fc dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x41bd4709 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x41c05bd0 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x41c52cab do_map_probe -EXPORT_SYMBOL vmlinux 0x41d03bde inet_frag_kill -EXPORT_SYMBOL vmlinux 0x41e78c44 blk_get_request -EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x421d4dcf krealloc -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 0x4233fff0 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x424f6661 md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0x4253aa7e down_write -EXPORT_SYMBOL vmlinux 0x42604384 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x427600d3 xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0x4276b38b __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x428147ff wait_on_page_private_2_killable -EXPORT_SYMBOL vmlinux 0x42816eca xfrm_register_km -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 0x429d13a5 fs_param_is_blockdev -EXPORT_SYMBOL vmlinux 0x42bf0b7a inode_set_bytes -EXPORT_SYMBOL vmlinux 0x42cd2b14 register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x42e8a168 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x42e9ea08 __traceiter_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -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 0x43560c33 dma_async_device_register -EXPORT_SYMBOL vmlinux 0x437713ae __dev_direct_xmit -EXPORT_SYMBOL vmlinux 0x43792307 loop_register_transfer -EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x43816b7d seg6_hmac_info_del -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 0x43a6a748 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x43aaa269 netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0x43ae7b76 set_user_nice -EXPORT_SYMBOL vmlinux 0x43bd981d jbd2_journal_inode_ranged_write -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 0x43df281c xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x43e57231 commit_creds -EXPORT_SYMBOL vmlinux 0x43ecfc85 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember -EXPORT_SYMBOL vmlinux 0x44232ee6 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume -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 0x444d0446 mdiobus_register_device -EXPORT_SYMBOL vmlinux 0x4455e7c2 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x44611176 __sk_dst_check -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 0x44880af9 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x448bed77 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0x449236d8 skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0x44a5b983 __break_lease -EXPORT_SYMBOL vmlinux 0x44a5d6bf snd_device_free -EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x44b582fd __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x44b76cc9 of_device_is_available -EXPORT_SYMBOL vmlinux 0x44c7b451 xfrm_parse_spi -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 0x450d9a35 cmd_db_read_slave_id -EXPORT_SYMBOL vmlinux 0x450fd109 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x453c0105 nf_log_unset -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x45635352 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x45771322 vfs_path_lookup -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 0x45a27784 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x45a385fd dcache_dir_close -EXPORT_SYMBOL vmlinux 0x45b539ad __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x45b7eb1c sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x45bd19de nla_strscpy -EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low -EXPORT_SYMBOL vmlinux 0x45c50acc dev_get_iflink -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 0x45e941ea param_set_invbool -EXPORT_SYMBOL vmlinux 0x45f8fe2d iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x45fdee7f dma_fence_signal_timestamp -EXPORT_SYMBOL vmlinux 0x4601b9ab netdev_upper_get_next_dev_rcu -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 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 0x464fad1b memory_cgrp_subsys -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 0x46a5dd49 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x46ab952f snd_pcm_hw_constraint_list -EXPORT_SYMBOL vmlinux 0x46bc1a3f tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0x46d04453 jbd2_fc_release_bufs -EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 -EXPORT_SYMBOL vmlinux 0x46d6e064 skb_append -EXPORT_SYMBOL vmlinux 0x46f5bf2a reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset -EXPORT_SYMBOL vmlinux 0x470b7b7f flow_rule_match_control -EXPORT_SYMBOL vmlinux 0x472368d3 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x4728f0d3 gro_cells_receive -EXPORT_SYMBOL vmlinux 0x4756260d ida_destroy -EXPORT_SYMBOL vmlinux 0x4758e55c mdiobus_write -EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -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 0x47a06aa5 unlock_buffer -EXPORT_SYMBOL vmlinux 0x47afec01 register_console -EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one -EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -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 0x482139e1 pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0x482142ec flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0x482968d7 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x483518d0 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x48486a7e pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config -EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 -EXPORT_SYMBOL vmlinux 0x4856f67f vme_dma_request -EXPORT_SYMBOL vmlinux 0x48594591 __sk_receive_skb -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 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 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48c0207f phy_sfp_probe -EXPORT_SYMBOL vmlinux 0x48f297f7 fwnode_irq_get -EXPORT_SYMBOL vmlinux 0x48f9599d twl6040_get_vibralr_status -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 0x49396ac0 netpoll_setup -EXPORT_SYMBOL vmlinux 0x49415caa __sock_create -EXPORT_SYMBOL vmlinux 0x494f37e2 sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0x4951d13b xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 -EXPORT_SYMBOL vmlinux 0x495dda22 framebuffer_release -EXPORT_SYMBOL vmlinux 0x49685e3e tcp_sendpage -EXPORT_SYMBOL vmlinux 0x4969f278 genphy_read_abilities -EXPORT_SYMBOL vmlinux 0x496c40da xfrm_state_update -EXPORT_SYMBOL vmlinux 0x49871971 _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0x49970de8 finish_wait -EXPORT_SYMBOL vmlinux 0x49988d74 touchscreen_report_pos -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 0x49e4d78f dquot_quota_off -EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit -EXPORT_SYMBOL vmlinux 0x49f26466 kstrndup -EXPORT_SYMBOL vmlinux 0x49f89ddd udp_prot -EXPORT_SYMBOL vmlinux 0x49ffcb11 fb_class -EXPORT_SYMBOL vmlinux 0x4a00d77f jbd2_submit_inode_data -EXPORT_SYMBOL vmlinux 0x4a06d884 __dev_set_mtu -EXPORT_SYMBOL vmlinux 0x4a09b82d pin_user_pages -EXPORT_SYMBOL vmlinux 0x4a185c38 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x4a2d3fdd phy_driver_register -EXPORT_SYMBOL vmlinux 0x4a312ca6 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x4a39e5a1 omap_set_dma_src_params -EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card -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 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 0x4a96d005 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x4a9b56ef blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x4aa9e9ad dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x4adbaba7 __nla_put -EXPORT_SYMBOL vmlinux 0x4ade86b5 hdmi_drm_infoframe_unpack_only -EXPORT_SYMBOL vmlinux 0x4ae24789 nobh_write_end -EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 -EXPORT_SYMBOL vmlinux 0x4af9763f vfs_mkdir -EXPORT_SYMBOL vmlinux 0x4af9cfda bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0x4b405750 dquot_destroy -EXPORT_SYMBOL vmlinux 0x4b453961 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b61fb9b ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x4b83c167 iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x4b8d169b phy_attached_info_irq -EXPORT_SYMBOL vmlinux 0x4b935ff0 napi_consume_skb -EXPORT_SYMBOL vmlinux 0x4bae9046 flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0x4bd1c1af cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x4be85a03 memweight -EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4bf7859b neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x4bfdcefa __memset32 -EXPORT_SYMBOL vmlinux 0x4c0ccb81 vme_register_bridge -EXPORT_SYMBOL vmlinux 0x4c1cca3b cpumask_next_wrap -EXPORT_SYMBOL vmlinux 0x4c22a5a3 icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr -EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x4c3ed3ba would_dump -EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c4eb9a4 d_invalidate -EXPORT_SYMBOL vmlinux 0x4c80ac1e neigh_app_ns -EXPORT_SYMBOL vmlinux 0x4c8a03eb nf_log_unregister -EXPORT_SYMBOL vmlinux 0x4c8bf343 cont_write_begin -EXPORT_SYMBOL vmlinux 0x4c9f1c1f sock_i_uid -EXPORT_SYMBOL vmlinux 0x4caa29fc netdev_change_features -EXPORT_SYMBOL vmlinux 0x4caac620 netdev_state_change -EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x4cbdc305 inet_csk_reset_keepalive_timer -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 0x4cee906b __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -EXPORT_SYMBOL vmlinux 0x4d1a3028 generic_iommu_put_resv_regions -EXPORT_SYMBOL vmlinux 0x4d1adf10 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x4d36cee5 flow_rule_match_basic -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 0x4d58054e inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x4d5bf440 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x4d65a756 flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x4d6ae35f rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x4d72f2c6 __nlmsg_put -EXPORT_SYMBOL vmlinux 0x4d75d1b4 tcp_seq_next -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 0x4db62569 path_get -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 0x4df5642b mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0x4e051ad8 watchdog_register_governor -EXPORT_SYMBOL vmlinux 0x4e05bdec mempool_init_node -EXPORT_SYMBOL vmlinux 0x4e14a66f pps_unregister_source -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 0x4e62fd8a bio_chain -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e4046 napi_enable -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e8228d4 sk_error_report -EXPORT_SYMBOL vmlinux 0x4e90ef4a pci_scan_root_bus -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 0x4ebbfbbf blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x4ee0e846 ZSTD_initDCtx -EXPORT_SYMBOL vmlinux 0x4ee98ebd tcp_have_smc -EXPORT_SYMBOL vmlinux 0x4f188989 blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x4f1bcb3f netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f26891d register_netdevice -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 0x4f6b43ae snd_timer_notify -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 0x4f903d28 kill_block_super -EXPORT_SYMBOL vmlinux 0x4fa0d2fc genphy_read_status -EXPORT_SYMBOL vmlinux 0x4fa6aa7c generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0x4fa6d124 proc_set_size -EXPORT_SYMBOL vmlinux 0x4fb7cb97 phy_ethtool_set_wol -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 0x4fef3ef4 completion_done -EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree -EXPORT_SYMBOL vmlinux 0x500756d1 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -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 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 0x5051bae0 __skb_flow_get_ports -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 0x50620977 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x50624917 sha1_init -EXPORT_SYMBOL vmlinux 0x5063da42 param_ops_hexint -EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check -EXPORT_SYMBOL vmlinux 0x508fb319 reuseport_select_sock -EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu -EXPORT_SYMBOL vmlinux 0x509a564b ip_defrag -EXPORT_SYMBOL vmlinux 0x50a050c6 prepare_to_swait_event -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 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 0x5100260f unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x51480110 __tracepoint_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x514a62ec dq_data_lock -EXPORT_SYMBOL vmlinux 0x5153abe0 netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0x5161eb0e mdiobus_free -EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x518525c1 devm_mfd_add_devices -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 0x51ac7379 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x51b23135 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x51bdea73 ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0x51ca67e7 fs_param_is_enum -EXPORT_SYMBOL vmlinux 0x51e59686 inode_init_once -EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid -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 0x522846f5 of_graph_get_remote_node -EXPORT_SYMBOL vmlinux 0x522af2d4 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x522fb0e4 __hsiphash_unaligned -EXPORT_SYMBOL vmlinux 0x5237cdad dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0x523a5ff1 proc_create_single_data -EXPORT_SYMBOL vmlinux 0x523e57aa ZSTD_getDictID_fromDict -EXPORT_SYMBOL vmlinux 0x52487e8e I_BDEV -EXPORT_SYMBOL vmlinux 0x52505473 nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0x52735948 of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer -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 0x530006ef dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x53000e39 flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x530e25d0 icmp_ndo_send -EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x533ad9e8 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x533c5074 from_kuid -EXPORT_SYMBOL vmlinux 0x535bad6c netif_carrier_off -EXPORT_SYMBOL vmlinux 0x536060af radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x5363721c skb_eth_pop -EXPORT_SYMBOL vmlinux 0x5366321b snd_ctl_boolean_mono_info -EXPORT_SYMBOL vmlinux 0x5388f6fe amba_device_unregister -EXPORT_SYMBOL vmlinux 0x53aeb013 hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x53b85414 flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0x53c5d086 netdev_features_change -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 0x5411f221 netdev_notice -EXPORT_SYMBOL vmlinux 0x542050c8 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x5423eba5 set_binfmt -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x544acdd4 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x546245d8 blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0x549b9221 __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0x54a719a3 dev_change_proto_down -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 0x54db10ee tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x54dd9c66 rtnl_configure_link -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 0x54fbcc2a validate_slab_cache -EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -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 0x5562e403 prepare_to_wait_exclusive -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 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x55bd83a6 max8998_write_reg -EXPORT_SYMBOL vmlinux 0x55cedf82 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x55d47a9e ip_do_fragment -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 0x561ccdea cookie_ecn_ok -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 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 0x566fcc7a mmc_release_host -EXPORT_SYMBOL vmlinux 0x5673f6f0 xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0x56774cb1 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x5690ccb7 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x56c4eb9c gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x56c656c9 mpage_readpage -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56de8152 param_get_charp -EXPORT_SYMBOL vmlinux 0x56f5f04a fifo_set_limit -EXPORT_SYMBOL vmlinux 0x56fd6741 phy_init_eee -EXPORT_SYMBOL vmlinux 0x57070e64 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x573bf55d pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x574271a6 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x57440eaa ip_sock_set_recverr -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x5762b652 dev_set_promiscuity -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 0x57b40909 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x57bd100b inet6_release -EXPORT_SYMBOL vmlinux 0x57c5902d amba_device_register -EXPORT_SYMBOL vmlinux 0x57ceedb1 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x57d0d236 __f_setown -EXPORT_SYMBOL vmlinux 0x57e5170c qcom_scm_iommu_secure_ptbl_size -EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info -EXPORT_SYMBOL vmlinux 0x57ff23f0 ZSTD_getFrameContentSize -EXPORT_SYMBOL vmlinux 0x580c21a2 __devm_mdiobus_register -EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0x581cde4e up -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x58516557 omap_set_dma_src_data_pack -EXPORT_SYMBOL vmlinux 0x586135c0 simple_transaction_read -EXPORT_SYMBOL vmlinux 0x5877f63f vfs_unlink -EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf -EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc -EXPORT_SYMBOL vmlinux 0x58857ae9 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x58904931 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x5897d54b mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x5899ef6a ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0x58a486cb load_nls_default -EXPORT_SYMBOL vmlinux 0x58a49493 __dquot_transfer -EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info -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 0x58c599ce tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0x58e173f8 inet6_del_offload -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58fad869 __var_waitqueue -EXPORT_SYMBOL vmlinux 0x5903121b __module_get -EXPORT_SYMBOL vmlinux 0x59115537 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x592b5bd9 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0x593e3e10 filemap_fdatawrite_wbc -EXPORT_SYMBOL vmlinux 0x5942621e netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 -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 0x5992e81b sock_setsockopt -EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg -EXPORT_SYMBOL vmlinux 0x59ab85e1 inet6_offloads -EXPORT_SYMBOL vmlinux 0x59b4b02b generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0x59b7cab6 mempool_resize -EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area -EXPORT_SYMBOL vmlinux 0x59d8f412 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 -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 0x5a2b22cb skb_headers_offset_update -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 0x5a562e22 bdev_dax_pgoff -EXPORT_SYMBOL vmlinux 0x5a64e6c1 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x5a66d447 bio_init -EXPORT_SYMBOL vmlinux 0x5a72f87b i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x5a7e4c9c sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x5a8b75f8 notify_change -EXPORT_SYMBOL vmlinux 0x5a97bfd3 phy_attach -EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x5aa76b40 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x5aa87aa1 tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0x5aaf2bad blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x5acadcfd napi_gro_flush -EXPORT_SYMBOL vmlinux 0x5acbae39 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x5ad1fbb6 input_set_timestamp -EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5ae8353d generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x5af80e7c inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x5b062284 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0x5b2475f7 nla_put_64bit -EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax -EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup -EXPORT_SYMBOL vmlinux 0x5b7519c2 cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x5b8a1d6f no_llseek -EXPORT_SYMBOL vmlinux 0x5b9f76df mr_table_dump -EXPORT_SYMBOL vmlinux 0x5b9fae37 kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0x5ba00a58 reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0x5bb58476 flow_indr_dev_setup_offload -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 0x5bda4214 _raw_read_lock -EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5bfc4e8d kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0x5bfcfaf0 ip6tun_encaps -EXPORT_SYMBOL vmlinux 0x5c10c52b xfrm_init_state -EXPORT_SYMBOL vmlinux 0x5c1bdc5c get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0x5c24252f rfkill_alloc -EXPORT_SYMBOL vmlinux 0x5c326e29 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c54ec0b netlink_ack -EXPORT_SYMBOL vmlinux 0x5c5ae540 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x5c65f801 genphy_handle_interrupt_no_ack -EXPORT_SYMBOL vmlinux 0x5c6dfae5 netdev_lower_dev_get_private -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 0x5ca125c1 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x5ca85217 pci_write_config_byte -EXPORT_SYMBOL vmlinux 0x5cad081f uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x5cb67042 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x5cbd8e69 __crc32c_le -EXPORT_SYMBOL vmlinux 0x5cd25903 dev_addr_del -EXPORT_SYMBOL vmlinux 0x5cd58ad8 md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5d032dd3 seq_read_iter -EXPORT_SYMBOL vmlinux 0x5d1d07c6 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x5d1eaa55 udp_seq_stop -EXPORT_SYMBOL vmlinux 0x5d353d2c nand_ecc_sw_hamming_correct -EXPORT_SYMBOL vmlinux 0x5d37d658 dim_park_tired -EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d4c525b pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x5d5cedd4 phy_start_cable_test -EXPORT_SYMBOL vmlinux 0x5d6884be __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0x5d7d566d set_bh_page -EXPORT_SYMBOL vmlinux 0x5d7eb0e0 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x5d8ec96f of_get_ethdev_address -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 0x5e0a8f76 skb_dump -EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e104040 page_readlink -EXPORT_SYMBOL vmlinux 0x5e200bfe lookup_one_len_unlocked -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 0x5e527a34 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x5e679be6 tcf_idr_release -EXPORT_SYMBOL vmlinux 0x5e72a266 devm_register_netdev -EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence -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 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ec31369 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x5ecaacc7 softnet_data -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 0x5ef69bdb get_vm_area -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f1dd84f mfd_add_devices -EXPORT_SYMBOL vmlinux 0x5f2107c0 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x5f25832e sk_wait_data -EXPORT_SYMBOL vmlinux 0x5f4ba4ea dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x5f5058ce dev_get_mac_address -EXPORT_SYMBOL vmlinux 0x5f5247be register_mii_timestamper -EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption -EXPORT_SYMBOL vmlinux 0x5f56575b dev_uc_flush -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 0x5f833190 lookup_one -EXPORT_SYMBOL vmlinux 0x5f8b5524 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x5fb01358 alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fe6d619 fc_mount -EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io -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 0x601e46e3 __alloc_skb -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x6024a3ba neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x602c96f0 copy_to_user_fromio -EXPORT_SYMBOL vmlinux 0x603286b8 utf8_casefold -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x6055bcb8 __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x6098f7ed cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60b07a22 nand_create_bbt -EXPORT_SYMBOL vmlinux 0x60b89f1a tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0x60bffe6d div64_u64 -EXPORT_SYMBOL vmlinux 0x60c7ef3f dquot_quota_on -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 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 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 0x6167e72c vmalloc_no_huge -EXPORT_SYMBOL vmlinux 0x617cd7f9 block_write_full_page -EXPORT_SYMBOL vmlinux 0x61afbfd2 from_kgid_munged -EXPORT_SYMBOL vmlinux 0x61b3e3b0 config_item_init_type_name -EXPORT_SYMBOL vmlinux 0x61b76bb9 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61c76b3a proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x61ce516a neigh_lookup -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 0x6200a607 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x6205a290 devm_iounmap -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 0x62451b0f __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x6247863a register_fib_notifier -EXPORT_SYMBOL vmlinux 0x624fd2fc skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x6265586d rproc_elf_load_segments -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x628cbabb key_invalidate -EXPORT_SYMBOL vmlinux 0x628dddeb xfrm_state_check_expire -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 0x62f576d9 trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0x630041ef filemap_invalidate_lock_two -EXPORT_SYMBOL vmlinux 0x630c2230 param_get_ullong -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 0x636be654 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63b3cdbd backlight_device_register -EXPORT_SYMBOL vmlinux 0x63b6af8f mmc_can_trim -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 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 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x64209e37 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x6430cf4c get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x643c7b0e mmc_command_done -EXPORT_SYMBOL vmlinux 0x645c7d13 generic_block_bmap -EXPORT_SYMBOL vmlinux 0x646c6ebc phy_disconnect -EXPORT_SYMBOL vmlinux 0x646ece69 bpf_prog_get_type_path -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 0x64a6405a nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64ad2701 secpath_set -EXPORT_SYMBOL vmlinux 0x64c82c3e inet_csk_complete_hashdance -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 0x651d1e05 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x652032cb mac_pton -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 0x6578533e prepare_to_wait -EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -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 0x65decb02 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x65f7ecba inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x65f9745c ndo_dflt_fdb_add -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 0x66241c42 of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0x66474aa4 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x664d5a90 mmc_run_bkops -EXPORT_SYMBOL vmlinux 0x66657274 kmalloc_order -EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin -EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x667a23e4 inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0x667b039c mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x66817a7d register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x66a63949 nla_reserve -EXPORT_SYMBOL vmlinux 0x66aed8c5 csum_partial_copy_from_user -EXPORT_SYMBOL vmlinux 0x66b2edbd padata_alloc_shell -EXPORT_SYMBOL vmlinux 0x66b302b2 send_sig_mceerr -EXPORT_SYMBOL vmlinux 0x66ba5f28 qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0x66c40307 phy_free_interrupt -EXPORT_SYMBOL vmlinux 0x66d72ada sock_init_data -EXPORT_SYMBOL vmlinux 0x66e2996a device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0x66ed4247 inc_node_state -EXPORT_SYMBOL vmlinux 0x6710f7c1 request_firmware -EXPORT_SYMBOL vmlinux 0x671d2f7b sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x672184c9 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable -EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x67539057 unregister_netdev -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 0x679856f5 sort_r -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67bba754 devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x67c5e427 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x67cd5253 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x67dd6f2b of_parse_phandle_with_args_map -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 0x681b6670 is_firmware_framebuffer -EXPORT_SYMBOL vmlinux 0x681d0e4b free_task -EXPORT_SYMBOL vmlinux 0x683ce836 skb_tunnel_check_pmtu -EXPORT_SYMBOL vmlinux 0x68629337 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x6870e749 sk_net_capable -EXPORT_SYMBOL vmlinux 0x6871cf83 sock_no_listen -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x6882ce45 tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL vmlinux 0x68a2fcf1 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x68c3c1e5 __frontswap_store -EXPORT_SYMBOL vmlinux 0x68c4dfc5 snd_pcm_hw_rule_noresample -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 0x6917a77e __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x691938f8 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0x691957f0 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x692686ce drop_super_exclusive -EXPORT_SYMBOL vmlinux 0x6934f277 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x6941e6d2 dquot_disable -EXPORT_SYMBOL vmlinux 0x69480f2a cdev_alloc -EXPORT_SYMBOL vmlinux 0x694a3e8d sock_no_shutdown -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 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x6974b5ea of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0x697690c6 vme_init_bridge -EXPORT_SYMBOL vmlinux 0x698139b0 skb_pull -EXPORT_SYMBOL vmlinux 0x699f0fc6 param_ops_int -EXPORT_SYMBOL vmlinux 0x69a7cf5e pci_get_subsys -EXPORT_SYMBOL vmlinux 0x69aa7cab sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x69ad69a5 vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0x69b49357 inet6_protos -EXPORT_SYMBOL vmlinux 0x69b6f8d9 omap_set_dma_transfer_params -EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69e51d08 __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x69f1d760 is_nd_btt -EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a140310 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x6a15c39d page_zero_new_buffers -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 0x6a63cf27 from_kprojid -EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a74ab01 nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x6a773c7c find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x6ac80c29 __tracepoint_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x6acc4350 rawnand_sw_hamming_cleanup -EXPORT_SYMBOL vmlinux 0x6ad7a335 prepare_creds -EXPORT_SYMBOL vmlinux 0x6ad7c45b skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -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 0x6aff28c5 dev_change_proto_down_generic -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 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b604710 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x6b65aacb tcp_getsockopt -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 0x6ba70101 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x6bb93d9e sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x6bbb78cf dquot_acquire -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 0x6bf58683 sound_class -EXPORT_SYMBOL vmlinux 0x6bf7d3c2 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x6bfbcadc phy_do_ioctl_running -EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn -EXPORT_SYMBOL vmlinux 0x6c1d95f7 napi_gro_frags -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 0x6c309112 ip_output -EXPORT_SYMBOL vmlinux 0x6c309479 mpage_writepages -EXPORT_SYMBOL vmlinux 0x6c42ed79 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x6c43bf57 unregister_quota_format -EXPORT_SYMBOL vmlinux 0x6c4f42aa setattr_copy -EXPORT_SYMBOL vmlinux 0x6c5001c1 key_unlink -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c810e42 __xa_clear_mark -EXPORT_SYMBOL vmlinux 0x6ca3cb03 param_ops_uint -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 0x6cd3b2d4 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d2e7414 arp_xmit -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 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 0x6d91f709 inet_shutdown -EXPORT_SYMBOL vmlinux 0x6d970a2d mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0x6dbc0891 fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0x6dcc7bc6 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x6dcce3f4 tso_count_descs -EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null -EXPORT_SYMBOL vmlinux 0x6ddcdbad revert_creds -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df7f220 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0x6dfd25c7 dst_init -EXPORT_SYMBOL vmlinux 0x6e1319da eth_header -EXPORT_SYMBOL vmlinux 0x6e2996af get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x6e30298b page_pool_create -EXPORT_SYMBOL vmlinux 0x6e3c13b3 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x6e4e7714 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x6e6650c6 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e87bf3f scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6eb7508f pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x6ebf9b7b input_flush_device -EXPORT_SYMBOL vmlinux 0x6ecdb792 __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL vmlinux 0x6efd1c5d dev_change_flags -EXPORT_SYMBOL vmlinux 0x6f013ecd __init_rwsem -EXPORT_SYMBOL vmlinux 0x6f122747 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x6f37362b rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x6f6232b0 param_set_charp -EXPORT_SYMBOL vmlinux 0x6f798854 dm_table_run_md_queue_async -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 0x6f968326 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0x6fa6597c set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x6fb374e6 down_write_killable -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 0x6fd8b1b8 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x7002b1ec of_parse_phandle -EXPORT_SYMBOL vmlinux 0x70151573 inet_stream_connect -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 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 0x70a238af vfs_mknod -EXPORT_SYMBOL vmlinux 0x70a60d7d flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0x70a8bf25 phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0x70ba5d12 __mmap_lock_do_trace_released -EXPORT_SYMBOL vmlinux 0x70d19255 unix_attach_fds -EXPORT_SYMBOL vmlinux 0x70df6ac8 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x70eedad9 audit_log_start -EXPORT_SYMBOL vmlinux 0x70f67556 xfrm6_protocol_deregister -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 0x7137b123 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x71503118 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x71537544 tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x717faed1 xfrm_init_replay -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 0x71a7ccc3 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x71b139e5 vme_register_driver -EXPORT_SYMBOL vmlinux 0x71c90087 memcmp -EXPORT_SYMBOL vmlinux 0x71f7de4f proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x71ffa510 mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0x71ffa5db consume_skb -EXPORT_SYMBOL vmlinux 0x72005410 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x72290ff5 tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0x722bc108 kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x723623d4 iov_iter_revert -EXPORT_SYMBOL vmlinux 0x723cb9da mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x7263964c pps_event -EXPORT_SYMBOL vmlinux 0x729f1557 sock_gettstamp -EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable -EXPORT_SYMBOL vmlinux 0x72b46382 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x72b73f92 fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72c4f7cf kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x72c57ca3 flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0x72d18a13 ip_ct_attach -EXPORT_SYMBOL vmlinux 0x72dbb0ae sock_set_priority -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 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 0x731cb05d set_anon_super -EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x734f1af1 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x7363aa55 of_get_next_child -EXPORT_SYMBOL vmlinux 0x736a6e74 blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x73915b82 vfs_get_fsid -EXPORT_SYMBOL vmlinux 0x739980bb dm_unregister_target -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 0x73be2c70 nexthop_bucket_set_hw_flags -EXPORT_SYMBOL vmlinux 0x73c2fd7c dev_mc_flush -EXPORT_SYMBOL vmlinux 0x73d20fb3 omap_get_dma_src_pos -EXPORT_SYMBOL vmlinux 0x73dac2f2 serio_close -EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy -EXPORT_SYMBOL vmlinux 0x73e76cc9 fs_param_is_string -EXPORT_SYMBOL vmlinux 0x73eead9a tcp_mtup_init -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 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x749373bb devm_clk_get -EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74e57865 iov_iter_advance -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74f3359f security_inet_conn_request -EXPORT_SYMBOL vmlinux 0x74f83b5b sock_alloc_file -EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv -EXPORT_SYMBOL vmlinux 0x7516135a generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0x751b993e netif_carrier_on -EXPORT_SYMBOL vmlinux 0x75214267 kern_path -EXPORT_SYMBOL vmlinux 0x75380437 bio_copy_data -EXPORT_SYMBOL vmlinux 0x75429632 proto_unregister -EXPORT_SYMBOL vmlinux 0x755ff777 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x7576241a register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x75a8919f pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x75b66039 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -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 0x75dd1b98 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x75f11938 nf_log_register -EXPORT_SYMBOL vmlinux 0x75f20194 flow_indr_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x75f8897c nf_register_net_hooks -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 0x76143823 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0x7630b665 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x76384233 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x765a62a6 param_get_ushort -EXPORT_SYMBOL vmlinux 0x76607044 register_sound_special -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 0x767d566a dev_add_pack -EXPORT_SYMBOL vmlinux 0x768638b8 simple_fill_super -EXPORT_SYMBOL vmlinux 0x7689ba6e netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x768b8240 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x769528d8 put_cmsg -EXPORT_SYMBOL vmlinux 0x7695c12d pci_pme_capable -EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76b68a97 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x76c52d63 nla_append -EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d8b39c get_tz_trend -EXPORT_SYMBOL vmlinux 0x76e86828 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x76eb5f54 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x76f11625 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x76f659cc vfs_mkobj -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 0x7758662c __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x7765622d rawnand_sw_hamming_init -EXPORT_SYMBOL vmlinux 0x7767cf9a devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 -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 0x77a82930 tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0x77aa3ccb eth_mac_addr -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77ca5075 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x77ce3076 mmc_can_erase -EXPORT_SYMBOL vmlinux 0x77d2a81e inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77ea3595 build_skb -EXPORT_SYMBOL vmlinux 0x77f17fb4 vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0x77f5adc7 registered_fb -EXPORT_SYMBOL vmlinux 0x77f6f183 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x7819f998 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x78216f8b __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x78234cad page_pool_alloc_frag -EXPORT_SYMBOL vmlinux 0x78398dd3 unlock_page_memcg -EXPORT_SYMBOL vmlinux 0x78549913 pci_scan_slot -EXPORT_SYMBOL vmlinux 0x785b4fa5 unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0x7871679a __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x78905ae1 freeze_super -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -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 0x78c18e8e xp_dma_unmap -EXPORT_SYMBOL vmlinux 0x78c46b78 unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x78ceb86d netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0x78d627aa tty_lock -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78ecb9dd snd_ctl_boolean_stereo_info -EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x791b925b xfrm_register_type -EXPORT_SYMBOL vmlinux 0x793313a8 devm_nvmem_cell_put -EXPORT_SYMBOL vmlinux 0x794765d1 mempool_free -EXPORT_SYMBOL vmlinux 0x794e8b17 kernel_connect -EXPORT_SYMBOL vmlinux 0x7955c520 phy_validate_pause -EXPORT_SYMBOL vmlinux 0x797da67a xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x798d4831 vc_resize -EXPORT_SYMBOL vmlinux 0x7997edab nf_log_trace -EXPORT_SYMBOL vmlinux 0x79a086a7 __mdiobus_register -EXPORT_SYMBOL vmlinux 0x79b80b0c nf_hook_slow_list -EXPORT_SYMBOL vmlinux 0x79be46d6 scsi_remove_host -EXPORT_SYMBOL vmlinux 0x79c7223b dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x79c858c8 pci_request_irq -EXPORT_SYMBOL vmlinux 0x79d2aa7e dns_query -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 0x79f88efe reuseport_add_sock -EXPORT_SYMBOL vmlinux 0x79fc577f utf8nagemax -EXPORT_SYMBOL vmlinux 0x79ff4de6 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x7a017542 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x7a058c34 netdev_update_features -EXPORT_SYMBOL vmlinux 0x7a05ab0e scsi_register_interface -EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x7a143908 remap_pfn_range -EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a30b743 of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0x7a34964f register_netdevice_notifier_net -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 0x7a53a06d flow_indr_dev_exists -EXPORT_SYMBOL vmlinux 0x7a72f7e0 phy_modify_paged -EXPORT_SYMBOL vmlinux 0x7a78b7ed xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx -EXPORT_SYMBOL vmlinux 0x7a9f5303 dev_set_alias -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa6bc60 param_set_uint -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7acbe56a proc_create -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7aded2f7 down_write_trylock -EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum -EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL vmlinux 0x7b02937d start_tty -EXPORT_SYMBOL vmlinux 0x7b099e6f dev_change_carrier -EXPORT_SYMBOL vmlinux 0x7b113cc6 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0x7b2fb85d __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0x7b34a500 generic_permission -EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap -EXPORT_SYMBOL vmlinux 0x7b6a2d5e snd_timer_close -EXPORT_SYMBOL vmlinux 0x7b772c86 ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x7b9b9cbe xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x7baf5c27 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x7bbc8fd2 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x7bcbf870 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x7bd8f6e5 devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x7bf3f0e9 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x7bf97abc md_write_start -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c461a4f blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c4cd5bf __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x7c576283 genphy_update_link -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 0x7c777b16 vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0x7c8b5da4 follow_pfn -EXPORT_SYMBOL vmlinux 0x7c8cea9e key_create_or_update -EXPORT_SYMBOL vmlinux 0x7c9ba5c2 unregister_nexthop_notifier -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 0x7ce01c87 of_node_name_prefix -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -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 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d0ef8e8 tcf_idr_search -EXPORT_SYMBOL vmlinux 0x7d124a67 input_register_handler -EXPORT_SYMBOL vmlinux 0x7d22f6a6 gen_pool_dma_zalloc -EXPORT_SYMBOL vmlinux 0x7d2ef2b0 down_read_interruptible -EXPORT_SYMBOL vmlinux 0x7d3a4781 tcf_exts_change -EXPORT_SYMBOL vmlinux 0x7d3b29f5 key_task_permission -EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d678631 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x7d6f1dc3 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x7d8af1b0 scsi_host_get -EXPORT_SYMBOL vmlinux 0x7d8ddde2 serio_open -EXPORT_SYMBOL vmlinux 0x7d8f8807 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x7d945888 d_prune_aliases -EXPORT_SYMBOL vmlinux 0x7d9ec5e9 kfree_skb_reason -EXPORT_SYMBOL vmlinux 0x7da04902 nand_monolithic_write_page_raw -EXPORT_SYMBOL vmlinux 0x7da2e671 configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7dc821ba phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x7dd25c2d netdev_emerg -EXPORT_SYMBOL vmlinux 0x7de7d4b2 create_empty_buffers -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7e06d643 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x7e0ce0c3 up_write -EXPORT_SYMBOL vmlinux 0x7e1ada24 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x7e28051a jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x7e2a10a2 dev_uc_unsync -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 0x7e5b9564 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x7e66b8e7 nd_device_register -EXPORT_SYMBOL vmlinux 0x7e673a70 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x7e699bc8 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x7e74ed49 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x7e8dd9d1 make_kuid -EXPORT_SYMBOL vmlinux 0x7e986abe try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x7eb29085 param_get_byte -EXPORT_SYMBOL vmlinux 0x7eb3c4b2 param_ops_charp -EXPORT_SYMBOL vmlinux 0x7ebe6b7a dev_driver_string -EXPORT_SYMBOL vmlinux 0x7ed1c330 kern_path_create -EXPORT_SYMBOL vmlinux 0x7ed4ae2c iov_iter_gap_alignment -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 0x7f22093f proc_create_data -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f304b27 ZSTD_DStreamWorkspaceBound -EXPORT_SYMBOL vmlinux 0x7f315f8c qdisc_create_dflt -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 0x7f6660c1 netdev_name_node_alt_create -EXPORT_SYMBOL vmlinux 0x7f7f20d7 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7fa63df6 flush_signals -EXPORT_SYMBOL vmlinux 0x7faf697a skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x7fb50649 ip6_frag_init -EXPORT_SYMBOL vmlinux 0x7fd75d99 make_bad_inode -EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read -EXPORT_SYMBOL vmlinux 0x7fdf47ac xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe53d50 pci_write_config_word -EXPORT_SYMBOL vmlinux 0x7fedead0 xattr_full_name -EXPORT_SYMBOL vmlinux 0x7ffbb45a in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x80010523 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 -EXPORT_SYMBOL vmlinux 0x801695e6 sg_miter_next -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 0x8082f8b0 netif_rx -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 0x80e5f86f fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0x80e6933c can_nice -EXPORT_SYMBOL vmlinux 0x80ef6248 iov_iter_kvec -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 0x8124e213 __breadahead_gfp -EXPORT_SYMBOL vmlinux 0x8129eb16 __icmp_send -EXPORT_SYMBOL vmlinux 0x815785d2 bio_reset -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815ba5a1 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x81675181 seq_printf -EXPORT_SYMBOL vmlinux 0x81697daf blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x817b47df ipv6_select_ident -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 0x819d2334 udp_ioctl -EXPORT_SYMBOL vmlinux 0x819ed4d3 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x81adef99 refcount_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand -EXPORT_SYMBOL vmlinux 0x81bb4c9b xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x81bd2f65 mmc_get_card -EXPORT_SYMBOL vmlinux 0x81c5544e wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x81caea4a inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81f3a901 kthread_create_worker -EXPORT_SYMBOL vmlinux 0x81fd3065 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x821961af mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x822137e2 arm_heavy_mb -EXPORT_SYMBOL vmlinux 0x82260809 tty_vhangup -EXPORT_SYMBOL vmlinux 0x822e014e pci_dev_put -EXPORT_SYMBOL vmlinux 0x8249ea97 twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr -EXPORT_SYMBOL vmlinux 0x826ac4d7 i2c_clients_command -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 0x82ac48f7 devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x82c8a0f0 inet6_getname -EXPORT_SYMBOL vmlinux 0x82cd0e6a serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x82cf04e0 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync -EXPORT_SYMBOL vmlinux 0x82f886a1 ZSTD_findFrameCompressedSize -EXPORT_SYMBOL vmlinux 0x83064c4c mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x8306dafd tcp_seq_start -EXPORT_SYMBOL vmlinux 0x832047fc cfb_copyarea -EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 -EXPORT_SYMBOL vmlinux 0x8321241f __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x8321eb95 cros_ec_get_next_event -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 0x838d2bc8 siphash_3u32 -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 0x83cbbdac xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x83cd0e6f atomic_io_modify -EXPORT_SYMBOL vmlinux 0x83e572e3 fqdir_exit -EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free -EXPORT_SYMBOL vmlinux 0x8423bcf7 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x84389524 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x844dcd80 dma_unmap_page_attrs -EXPORT_SYMBOL vmlinux 0x8456e9a7 xa_erase -EXPORT_SYMBOL vmlinux 0x845cd0b1 mount_subtree -EXPORT_SYMBOL vmlinux 0x845fdab8 mr_dump -EXPORT_SYMBOL vmlinux 0x8460cab6 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x8462ba16 rt_dst_clone -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 0x847db73c page_pool_release_page -EXPORT_SYMBOL vmlinux 0x848283de phy_get_internal_delay -EXPORT_SYMBOL vmlinux 0x849282ef inode_dio_wait -EXPORT_SYMBOL vmlinux 0x84a90f44 init_special_inode -EXPORT_SYMBOL vmlinux 0x84ad65e7 snd_device_new -EXPORT_SYMBOL vmlinux 0x84b183ae strncmp -EXPORT_SYMBOL vmlinux 0x84e45ae2 register_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x84fbbe4b single_open -EXPORT_SYMBOL vmlinux 0x84fe9d1e ram_aops -EXPORT_SYMBOL vmlinux 0x851c2c89 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x852e1d8e __register_nls -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 0x85685b3c sock_from_file -EXPORT_SYMBOL vmlinux 0x85816982 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x8582ebff cpu_all_bits -EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x85a3d9b7 phy_detach -EXPORT_SYMBOL vmlinux 0x85ad55f1 no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0x85b37ef8 __ip_mc_inc_group -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 0x85c79103 xattr_supported_namespace -EXPORT_SYMBOL vmlinux 0x85c99dbc dev_uc_add -EXPORT_SYMBOL vmlinux 0x85da9d8e touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x85dc0462 devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x860a52d9 sg_miter_skip -EXPORT_SYMBOL vmlinux 0x86143b08 sock_no_bind -EXPORT_SYMBOL vmlinux 0x8614761d seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0x861655e6 pci_iounmap -EXPORT_SYMBOL vmlinux 0x8629bf0a vfs_create -EXPORT_SYMBOL vmlinux 0x862bc663 memset16 -EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x863d503c tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x865948ea xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x86799e56 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x867c28b7 flow_rule_match_ipv6_addrs -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 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 0x86ee6c5a udp_seq_start -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x870197aa inc_nlink -EXPORT_SYMBOL vmlinux 0x870d5a1c __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x8726c02c udp_pre_connect -EXPORT_SYMBOL vmlinux 0x8739f704 is_subdir -EXPORT_SYMBOL vmlinux 0x8787f6b8 dev_remove_pack -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 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87be9050 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x87c814cc phy_register_fixup -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 0x87d943c0 delete_from_page_cache -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 0x885d26db blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x885ffe4b __skb_recv_udp -EXPORT_SYMBOL vmlinux 0x88626e29 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x8867b30f km_report -EXPORT_SYMBOL vmlinux 0x886eb2ce __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x8877077f scsi_alloc_sgtables -EXPORT_SYMBOL vmlinux 0x887d0e04 inet_recvmsg -EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x88a11d42 clear_bdi_congested -EXPORT_SYMBOL vmlinux 0x88a87a2d cpumask_next -EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial -EXPORT_SYMBOL vmlinux 0x88cf0e0e vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0x88db665b kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88e828ff timestamp_truncate -EXPORT_SYMBOL vmlinux 0x8904e390 neigh_update -EXPORT_SYMBOL vmlinux 0x891d1b38 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0x892214c7 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x89253a74 rproc_alloc -EXPORT_SYMBOL vmlinux 0x892f33e0 dev_mc_init -EXPORT_SYMBOL vmlinux 0x89436d64 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x8966f6ee dec_node_page_state -EXPORT_SYMBOL vmlinux 0x896aa9e6 of_phy_get_and_connect -EXPORT_SYMBOL vmlinux 0x896ff29e ip_frag_init -EXPORT_SYMBOL vmlinux 0x897874a9 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0x898a0c90 config_group_find_item -EXPORT_SYMBOL vmlinux 0x89948809 import_iovec -EXPORT_SYMBOL vmlinux 0x89cd92f7 request_key_tag -EXPORT_SYMBOL vmlinux 0x89d20dfe tcp_filter -EXPORT_SYMBOL vmlinux 0x89d9d125 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x89dbdde1 snd_device_register -EXPORT_SYMBOL vmlinux 0x89e00d6c tcp_disconnect -EXPORT_SYMBOL vmlinux 0x89f375f9 sock_alloc -EXPORT_SYMBOL vmlinux 0x8a059986 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x8a07f2b6 blk_sync_queue -EXPORT_SYMBOL vmlinux 0x8a1eca16 ps2_handle_response -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 0x8a7094ba vm_brk_flags -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a7f257a jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x8a8ee1f6 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aa0402b _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x8aa30959 ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x8ac3244d rproc_coredump_using_sections -EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0x8b0e1591 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x8b11256a vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x8b12b10c tcf_idr_create -EXPORT_SYMBOL vmlinux 0x8b1be5b4 tcf_action_update_stats -EXPORT_SYMBOL vmlinux 0x8b245d6c __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x8b32faa3 finish_swait -EXPORT_SYMBOL vmlinux 0x8b3e3895 kernel_listen -EXPORT_SYMBOL vmlinux 0x8b5927a0 down_timeout -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b6f9f76 blake2s_compress -EXPORT_SYMBOL vmlinux 0x8b729d36 pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b85b8e9 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x8b88e417 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x8b8d8c9c xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8b928b9b genphy_resume -EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx -EXPORT_SYMBOL vmlinux 0x8ba73ce1 simple_lookup -EXPORT_SYMBOL vmlinux 0x8babddf3 kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0x8bae8f90 of_graph_is_present -EXPORT_SYMBOL vmlinux 0x8bb55681 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable -EXPORT_SYMBOL vmlinux 0x8be7289c alloc_mdio_bitbang -EXPORT_SYMBOL vmlinux 0x8bee75d7 proc_dostring -EXPORT_SYMBOL vmlinux 0x8bfd2f67 default_llseek -EXPORT_SYMBOL vmlinux 0x8c011fe8 mmc_add_host -EXPORT_SYMBOL vmlinux 0x8c1a2db2 flow_rule_match_enc_ip -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 0x8c50a142 dma_map_resource -EXPORT_SYMBOL vmlinux 0x8c5d254a dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0x8c6e7c75 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x8c7adbfd ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid -EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin -EXPORT_SYMBOL vmlinux 0x8cccaca4 input_set_keycode -EXPORT_SYMBOL vmlinux 0x8cd8c339 omap_free_dma -EXPORT_SYMBOL vmlinux 0x8ce13cc5 udplite_table -EXPORT_SYMBOL vmlinux 0x8ce20931 dcb_ieee_getapp_dscp_prio_mask_map -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 0x8d5f1833 sock_no_sendmsg -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 0x8d8197d1 ip6_xmit -EXPORT_SYMBOL vmlinux 0x8da48217 lease_modify -EXPORT_SYMBOL vmlinux 0x8dae7978 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x8dcf1ae2 simple_statfs -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 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum -EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8dfefc0d kvmalloc_node -EXPORT_SYMBOL vmlinux 0x8e1ff363 xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x8e44269e mdio_device_free -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 0x8e695a41 sock_no_linger -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 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 0x8ee62ba2 may_setattr -EXPORT_SYMBOL vmlinux 0x8eeaaabe ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x8eebfa45 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f22a027 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x8f3396ba snd_ctl_free_one -EXPORT_SYMBOL vmlinux 0x8f48a868 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x8f4e0a7f tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major -EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard -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 0x8fa59722 eth_gro_complete -EXPORT_SYMBOL vmlinux 0x8fc53445 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL vmlinux 0x8fc64a14 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin -EXPORT_SYMBOL vmlinux 0x8fe35457 xxh32_update -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 0x8ffe1ca4 netif_rx_any_context -EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x900b5cb9 path_put -EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get -EXPORT_SYMBOL vmlinux 0x903c82e1 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x90604820 bioset_exit -EXPORT_SYMBOL vmlinux 0x9064b840 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x906f5252 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x90735fa6 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL vmlinux 0x909332ca register_sysctl -EXPORT_SYMBOL vmlinux 0x90b630c0 __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x90cc7b5d ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x90f98ffb udp_set_csum -EXPORT_SYMBOL vmlinux 0x9122dc36 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x9135dba6 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x9138a259 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x9178194c flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x91785104 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x9183c426 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x91872199 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0x91886efe dquot_quota_sync -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 0x91a9c232 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x91ad3e32 sched_autogroup_create_attach -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 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x91fde35e kmem_cache_destroy -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 0x922dd25d ether_setup -EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x92351931 dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x924a438e gnet_stats_copy_basic_hw -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 0x92b9b180 slash_name -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 0x92e0abb8 seq_lseek -EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x92fb8541 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0x92fb967b tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0x9304a7d7 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x9321274e single_release -EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0x932afb7a nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0x93745b20 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -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 0x938aab7c generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x9397c2f8 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x9398e07e fb_validate_mode -EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93ccb37f dev_deactivate -EXPORT_SYMBOL vmlinux 0x93ccc79b blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x93d1aba6 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x93d72d88 dqput -EXPORT_SYMBOL vmlinux 0x93dc8b9b devm_of_clk_del_provider -EXPORT_SYMBOL vmlinux 0x93e0c984 __scm_send -EXPORT_SYMBOL vmlinux 0x93e69a9b inc_node_page_state -EXPORT_SYMBOL vmlinux 0x93fe98fe mount_nodev -EXPORT_SYMBOL vmlinux 0x940811b7 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x94098ff8 snd_interval_list -EXPORT_SYMBOL vmlinux 0x940fb42c bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x94156f7f sock_bind_add -EXPORT_SYMBOL vmlinux 0x941e3d0b ip_check_defrag -EXPORT_SYMBOL vmlinux 0x94204e80 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x942d854d elm_config -EXPORT_SYMBOL vmlinux 0x9435c9e6 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0x943dc8aa crc32_be -EXPORT_SYMBOL vmlinux 0x94473298 tcp_peek_len -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 0x9480c86e tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0x9489ff36 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94a31330 nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0x94a4b76c netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x94b7d281 phy_device_free -EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94ca8ad2 input_grab_device -EXPORT_SYMBOL vmlinux 0x94cfe6ac _dev_warn -EXPORT_SYMBOL vmlinux 0x94d2b3ae unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier -EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x950c96b7 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x9513187c nf_unregister_net_hooks -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 0x9561a3c1 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 -EXPORT_SYMBOL vmlinux 0x95e5ca74 __tracepoint_kmem_cache_alloc_node -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 0x9618ede0 mutex_unlock -EXPORT_SYMBOL vmlinux 0x962c4977 clkdev_add -EXPORT_SYMBOL vmlinux 0x9637ac1c copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x963e703f bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x9645ed0b pgprot_user -EXPORT_SYMBOL vmlinux 0x96506840 put_cmsg_scm_timestamping -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 0x96700c33 kill_pid -EXPORT_SYMBOL vmlinux 0x967c6754 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x96842522 phy_attached_print -EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x968ed5eb dquot_alloc -EXPORT_SYMBOL vmlinux 0x9694ee79 phy_init_hw -EXPORT_SYMBOL vmlinux 0x96a8a592 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x96b02043 tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0x96b876c6 of_get_nand_ecc_user_config -EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96c36ae1 xfrm6_rcv_encap -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 0x96e18337 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x96f4d259 pci_map_rom -EXPORT_SYMBOL vmlinux 0x96f54290 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x9709dbc5 current_work -EXPORT_SYMBOL vmlinux 0x9709f233 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x970a131a max8998_read_reg -EXPORT_SYMBOL vmlinux 0x97106714 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x971a7c0c __nla_put_64bit -EXPORT_SYMBOL vmlinux 0x971d010b nf_reinject -EXPORT_SYMBOL vmlinux 0x97255bdf strlen -EXPORT_SYMBOL vmlinux 0x972ea321 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x974d2ff1 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x974dabe3 dev_uc_del -EXPORT_SYMBOL vmlinux 0x975f1f56 dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x97611201 proc_set_user -EXPORT_SYMBOL vmlinux 0x97655f72 d_alloc_anon -EXPORT_SYMBOL vmlinux 0x977c967f get_acl -EXPORT_SYMBOL vmlinux 0x977ed6b9 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x978276f6 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x9788568c flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0x979bde91 pcim_pin_device -EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97c4b81b md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x97da20f2 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x97de280a tcf_idr_create_from_flags -EXPORT_SYMBOL vmlinux 0x97ea4a5a phy_advertise_supported -EXPORT_SYMBOL vmlinux 0x97f58e0d i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x9825a3a4 fs_param_is_u32 -EXPORT_SYMBOL vmlinux 0x982b121b may_umount -EXPORT_SYMBOL vmlinux 0x98314d21 tso_build_data -EXPORT_SYMBOL vmlinux 0x98351480 dcb_getapp -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 0x9870d290 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset -EXPORT_SYMBOL vmlinux 0x98832da8 utf8ncursor -EXPORT_SYMBOL vmlinux 0x98a21b5a neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x98b1ec38 tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0x98b6499a skb_abort_seq_read -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 0x98d6922e pneigh_lookup -EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available -EXPORT_SYMBOL vmlinux 0x990c42c7 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x990c8d39 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x99161cf4 tcf_idr_cleanup -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 0x993e7037 dev_get_stats -EXPORT_SYMBOL vmlinux 0x9949972b from_kuid_munged -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x996829ea swake_up_all -EXPORT_SYMBOL vmlinux 0x9974cb95 mmc_calc_max_discard -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 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99d8c8cb mdio_driver_register -EXPORT_SYMBOL vmlinux 0x99e163d6 netlink_unicast -EXPORT_SYMBOL vmlinux 0x99e65a60 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x99f75eed fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0x99f86fc8 seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x9a1a0873 inet_sk_set_state -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a213692 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x9a2351ff call_fib_notifiers -EXPORT_SYMBOL vmlinux 0x9a47ebe0 phy_resume -EXPORT_SYMBOL vmlinux 0x9a581d4a flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a7a0f98 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range -EXPORT_SYMBOL vmlinux 0x9a89a7a3 proc_douintvec -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 0x9aa9ffb6 mmc_can_discard -EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ab13281 param_set_long -EXPORT_SYMBOL vmlinux 0x9ab98772 rawnand_sw_hamming_correct -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 0x9b1061be mmc_erase -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 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 0x9b571029 d_lookup -EXPORT_SYMBOL vmlinux 0x9b63ed69 input_get_keycode -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 0x9b7b724f tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x9b7ff198 napi_gro_receive -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 0x9bfbf436 vme_slave_request -EXPORT_SYMBOL vmlinux 0x9bfd1c5f xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x9c299cbc zpool_register_driver -EXPORT_SYMBOL vmlinux 0x9c32ab75 phy_find_first -EXPORT_SYMBOL vmlinux 0x9c3e03e6 dput -EXPORT_SYMBOL vmlinux 0x9c3ed517 dm_put_device -EXPORT_SYMBOL vmlinux 0x9c466921 snd_card_register -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 0x9c847bc4 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9c9609bb seq_write -EXPORT_SYMBOL vmlinux 0x9c96360e dst_alloc -EXPORT_SYMBOL vmlinux 0x9c9a52d1 sock_set_mark -EXPORT_SYMBOL vmlinux 0x9c9fe8ae __netif_napi_del -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 0x9d06ac33 free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -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 0x9d565384 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x9d56b749 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x9d5cd559 reservation_ww_class -EXPORT_SYMBOL vmlinux 0x9d669763 memcpy -EXPORT_SYMBOL vmlinux 0x9d6a4984 blk_cleanup_disk -EXPORT_SYMBOL vmlinux 0x9d81208e nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context -EXPORT_SYMBOL vmlinux 0x9da5f6a9 nd_btt_version -EXPORT_SYMBOL vmlinux 0x9daee6f6 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x9dc54f9a unregister_filesystem -EXPORT_SYMBOL vmlinux 0x9dd94ed4 fs_context_for_reconfigure -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 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 -EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e23f2dc tcp_poll -EXPORT_SYMBOL vmlinux 0x9e46b86c tcp_parse_options -EXPORT_SYMBOL vmlinux 0x9e485499 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL vmlinux 0x9e6f5d9c nand_ecc_finish_io_req -EXPORT_SYMBOL vmlinux 0x9e9a73b3 vif_device_init -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 0x9ec0e639 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ed2976e fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0x9ed3c596 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x9ed92881 phy_write_paged -EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9edae3e5 phy_request_interrupt -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 0x9f206663 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x9f29daab nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x9f31bd85 fb_pan_display -EXPORT_SYMBOL vmlinux 0x9f32071c generic_file_mmap -EXPORT_SYMBOL vmlinux 0x9f401c99 ip_fraglist_init -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 0x9f5ea5b1 xsk_tx_peek_release_desc_batch -EXPORT_SYMBOL vmlinux 0x9f70a909 pci_match_id -EXPORT_SYMBOL vmlinux 0x9f781aa3 tcf_qevent_init -EXPORT_SYMBOL vmlinux 0x9f7ae060 node_states -EXPORT_SYMBOL vmlinux 0x9f7c82e3 submit_bh -EXPORT_SYMBOL vmlinux 0x9f866010 neigh_parms_release -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 0x9fa87a35 netdev_printk -EXPORT_SYMBOL vmlinux 0x9fa95f41 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x9fb5e658 snd_mixer_oss_notify_callback -EXPORT_SYMBOL vmlinux 0x9fd02194 pci_bus_set_ops -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 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 0xa039816d __bread_gfp -EXPORT_SYMBOL vmlinux 0xa039a03c mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa046e632 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0xa049571d jbd2_fc_get_buf -EXPORT_SYMBOL vmlinux 0xa04bcffc xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh -EXPORT_SYMBOL vmlinux 0xa04fc54e ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0xa04fcab5 nexthop_set_hw_flags -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 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 0xa0978f9c pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0xa09cae68 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0xa0adaf92 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xa0ae0c0d skb_checksum_help -EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 -EXPORT_SYMBOL vmlinux 0xa0aefe3e bit_waitqueue -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0cc13da phy_ethtool_get_eee -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 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 0xa127baa7 set_blocksize -EXPORT_SYMBOL vmlinux 0xa1294ec8 ptp_clock_register -EXPORT_SYMBOL vmlinux 0xa12dcf00 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0xa138b6a6 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xa1465787 empty_zero_page -EXPORT_SYMBOL vmlinux 0xa14c0c8c udp_gro_complete -EXPORT_SYMBOL vmlinux 0xa15d0131 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0xa16b21fb wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0xa17bd3fc add_wait_queue -EXPORT_SYMBOL vmlinux 0xa1bacd91 qcom_scm_set_cold_boot_addr -EXPORT_SYMBOL vmlinux 0xa1d131ed vmemdup_user -EXPORT_SYMBOL vmlinux 0xa1e5c480 rproc_report_crash -EXPORT_SYMBOL vmlinux 0xa1e85174 napi_get_frags -EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa215b40c mdiobus_unregister_device -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 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa26891cd sock_wake_async -EXPORT_SYMBOL vmlinux 0xa26a8cad tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0xa2851144 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0xa28adcf9 netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa2994aba snd_ctl_register_ioctl -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 0xa2fd4b46 user_revoke -EXPORT_SYMBOL vmlinux 0xa30ffa58 phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0xa31146ec iov_iter_alignment -EXPORT_SYMBOL vmlinux 0xa319a1d5 amba_driver_unregister -EXPORT_SYMBOL vmlinux 0xa33a4d88 mark_info_dirty -EXPORT_SYMBOL vmlinux 0xa342bee1 pps_lookup_dev -EXPORT_SYMBOL vmlinux 0xa3471b92 seq_path -EXPORT_SYMBOL vmlinux 0xa37687ee netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0xa3794e95 vfs_statfs -EXPORT_SYMBOL vmlinux 0xa3809a6a tcf_block_put -EXPORT_SYMBOL vmlinux 0xa38ed292 of_match_node -EXPORT_SYMBOL vmlinux 0xa3a54979 init_on_free -EXPORT_SYMBOL vmlinux 0xa3a9283a pci_assign_resource -EXPORT_SYMBOL vmlinux 0xa3b956d1 xfrm_state_add -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 0xa3ceb8a2 fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0xa3cf6864 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0xa3e13988 tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0xa3f39040 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits -EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final -EXPORT_SYMBOL vmlinux 0xa3ff9364 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xa4093a19 vfs_fadvise -EXPORT_SYMBOL vmlinux 0xa41cb400 i2c_smbus_write_i2c_block_data -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 0xa467eed3 fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xa4754b88 xfrm_lookup_route -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 0xa49eac2e __traceiter_spi_transfer_start -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 0xa50b3c14 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0xa50e3029 __inc_node_page_state -EXPORT_SYMBOL vmlinux 0xa52d6316 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0xa53234bb skb_copy -EXPORT_SYMBOL vmlinux 0xa542e6bd mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0xa54af7f0 d_set_fallthru -EXPORT_SYMBOL vmlinux 0xa54db404 tcf_exts_dump -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 0xa573e984 inode_io_list_del -EXPORT_SYMBOL vmlinux 0xa58a0d36 security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0xa5a87968 simple_rename -EXPORT_SYMBOL vmlinux 0xa5a91711 _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0xa5abbb02 __phy_read_mmd -EXPORT_SYMBOL vmlinux 0xa5b641a2 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0xa5b65fc3 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0xa5bc31b4 lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0xa5c9a038 tcp_req_err -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 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 0xa657b78b netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0xa6633585 file_modified -EXPORT_SYMBOL vmlinux 0xa66bd24f filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0xa6731c1c padata_free_shell -EXPORT_SYMBOL vmlinux 0xa67c1b2b ip_local_deliver -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 0xa69d151c _raw_write_lock -EXPORT_SYMBOL vmlinux 0xa69ffd6c tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0xa6a393be posix_acl_valid -EXPORT_SYMBOL vmlinux 0xa6a7a2ad div_s64_rem -EXPORT_SYMBOL vmlinux 0xa6b2bf71 dev_disable_lro -EXPORT_SYMBOL vmlinux 0xa6c8eb60 vfs_iocb_iter_read -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 0xa72d24d7 __scsi_add_device -EXPORT_SYMBOL vmlinux 0xa73ee62b _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xa74745f1 do_SAK -EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa75716a4 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0xa75beef4 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0xa763b265 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0xa76d34b1 inetdev_by_index -EXPORT_SYMBOL vmlinux 0xa76d88da set_create_files_as -EXPORT_SYMBOL vmlinux 0xa770b801 bio_kmalloc -EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa77f4e00 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0xa785304a scm_fp_dup -EXPORT_SYMBOL vmlinux 0xa78a65d7 dquot_load_quota_sb -EXPORT_SYMBOL vmlinux 0xa7b3181c up_read -EXPORT_SYMBOL vmlinux 0xa7b79985 component_match_add_release -EXPORT_SYMBOL vmlinux 0xa7ca3764 skb_vlan_push -EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa80acb56 lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xa8192d45 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0xa82f4253 snd_pcm_release_substream -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 0xa8585b0d netlink_rcv_skb -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 0xa8a8110c kernel_neon_end -EXPORT_SYMBOL vmlinux 0xa8b66b0a scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8cacd29 snd_jack_set_key -EXPORT_SYMBOL vmlinux 0xa8cb9b76 mr_rtm_dumproute -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 0xa91fcecc readahead_expand -EXPORT_SYMBOL vmlinux 0xa93b5dcc mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0xa946ab70 max8925_reg_write -EXPORT_SYMBOL vmlinux 0xa950975a register_key_type -EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request -EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa9853496 devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0xa99adb84 ppp_register_channel -EXPORT_SYMBOL vmlinux 0xa99d57b7 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xa9a20130 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xa9b2adf1 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0xa9cf6d99 xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0xa9d2143f snd_register_device -EXPORT_SYMBOL vmlinux 0xa9d8f2b2 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xa9eea033 phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0xa9fc0ed9 of_get_compatible_child -EXPORT_SYMBOL vmlinux 0xaa0bf87f __block_write_full_page -EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa317417 lookup_one_len -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 0xaa5f103d mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb -EXPORT_SYMBOL vmlinux 0xaa814645 snd_pcm_hw_param_last -EXPORT_SYMBOL vmlinux 0xaaa2a842 uart_remove_one_port -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 0xaad38128 sock_register -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 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab1d21ec kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0xab25d8d9 inet_add_protocol -EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init -EXPORT_SYMBOL vmlinux 0xab3890b4 amba_request_regions -EXPORT_SYMBOL vmlinux 0xab3b41e5 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab44c97a dev_load -EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off -EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xab69c24a fget -EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab9e4fea may_umount_tree -EXPORT_SYMBOL vmlinux 0xaba7e05e scm_detach_fds -EXPORT_SYMBOL vmlinux 0xabae6107 vme_dma_list_add -EXPORT_SYMBOL vmlinux 0xabaf62ed nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0xabbcfca2 mmc_detect_change -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 0xabf83c2e netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0xac12d2b8 param_ops_byte -EXPORT_SYMBOL vmlinux 0xac19f430 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac40cecd mmc_start_request -EXPORT_SYMBOL vmlinux 0xac42ef14 vfs_fileattr_get -EXPORT_SYMBOL vmlinux 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL vmlinux 0xac487da5 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0xac54da67 dst_release -EXPORT_SYMBOL vmlinux 0xac5fa773 fs_context_for_mount -EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac61eb1b pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0xac861335 ppp_register_compressor -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 0xacbbe3b0 mmc_of_parse -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index -EXPORT_SYMBOL vmlinux 0xace9f05c __netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad133ad7 napi_schedule_prep -EXPORT_SYMBOL vmlinux 0xad2bba55 mmc_remove_host -EXPORT_SYMBOL vmlinux 0xad414539 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0xad54fcb3 pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad7bf391 skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0xad814abf snd_pcm_set_managed_buffer_all -EXPORT_SYMBOL vmlinux 0xad8b79cb rawnand_sw_hamming_calculate -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 0xadc5d76b __cleancache_put_page -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 0xade37af9 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae1f2c0a cdev_device_del -EXPORT_SYMBOL vmlinux 0xae21b9c1 kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0xae3159ea xfrm_find_acq -EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -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 0xae7cf18e ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0xae94b44a flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0xae954efa inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid -EXPORT_SYMBOL vmlinux 0xaeb9ddf2 tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0xaec3229f tty_port_close_start -EXPORT_SYMBOL vmlinux 0xaeda3059 security_sk_clone -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 0xaf069fd4 netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0xaf16f615 ZSTD_DStreamOutSize -EXPORT_SYMBOL vmlinux 0xaf178184 textsearch_prepare -EXPORT_SYMBOL vmlinux 0xaf17aff5 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xaf232608 md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0xaf2d23b2 xfrm_lookup -EXPORT_SYMBOL vmlinux 0xaf2e59ef udp6_csum_init -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf3e159f __cleancache_get_page -EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality -EXPORT_SYMBOL vmlinux 0xaf5ab100 __free_pages -EXPORT_SYMBOL vmlinux 0xaf5d7d08 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0xaf5ff903 tty_port_open -EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 -EXPORT_SYMBOL vmlinux 0xaf89f5c4 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev -EXPORT_SYMBOL vmlinux 0xaf9a0a2a radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0xafa6b4e7 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0xafab82a4 neigh_seq_start -EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name -EXPORT_SYMBOL vmlinux 0xafc65d66 alloc_fcdev -EXPORT_SYMBOL vmlinux 0xaff392c1 mr_fill_mroute -EXPORT_SYMBOL vmlinux 0xb00e01ea skb_push -EXPORT_SYMBOL vmlinux 0xb011eae1 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb02c3d1b mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0xb03c4584 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0xb04bb193 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xb0546740 kernel_bind -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 0xb05b0d98 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xb05e312b rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb06c97f2 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xb09d51b2 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -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 0xb0e95837 blk_mq_rq_cpu -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 0xb11a647c lookup_one_positive_unlocked -EXPORT_SYMBOL vmlinux 0xb1201aad rproc_set_firmware -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -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 0xb147a855 dql_reset -EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 -EXPORT_SYMBOL vmlinux 0xb159f84d sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xb165ff07 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xb1931e78 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc -EXPORT_SYMBOL vmlinux 0xb1b2ed46 __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xb1bdd0f8 touch_buffer -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1c8eba3 snd_ctl_notify_one -EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug -EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb21a8503 user_path_create -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 0xb23e0568 seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0xb242bbb6 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xb244bf6a dev_mc_del_global -EXPORT_SYMBOL vmlinux 0xb249a391 omap_request_dma -EXPORT_SYMBOL vmlinux 0xb27acd2d ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xb2808088 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0xb286c477 qcom_scm_set_warm_boot_addr -EXPORT_SYMBOL vmlinux 0xb2b037eb vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0xb2b5698c inet_sendmsg -EXPORT_SYMBOL vmlinux 0xb2d12f51 mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on -EXPORT_SYMBOL vmlinux 0xb2d7ff06 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0xb2e3009d xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0xb2e5ae4a snd_lookup_minor_data -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 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 0xb33d80dc snd_ctl_add -EXPORT_SYMBOL vmlinux 0xb34be1d1 kthread_stop -EXPORT_SYMBOL vmlinux 0xb3517076 fb_set_var -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 0xb37f944e empty_aops -EXPORT_SYMBOL vmlinux 0xb3aa741b rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0xb3b25f81 udp_gro_receive -EXPORT_SYMBOL vmlinux 0xb3b43c36 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0xb3b5242b udp_skb_destructor -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 0xb3d8850c pcie_set_mps -EXPORT_SYMBOL vmlinux 0xb3d9f81b ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb3f8cd1a vma_set_file -EXPORT_SYMBOL vmlinux 0xb411935e md_unregister_thread -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb4471bfe down_trylock -EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem -EXPORT_SYMBOL vmlinux 0xb4609794 unregister_key_type -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 0xb4b1e6d1 __xa_alloc -EXPORT_SYMBOL vmlinux 0xb4b8ac22 of_get_property -EXPORT_SYMBOL vmlinux 0xb4cb8d40 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0xb4e0fa77 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0xb4e561c7 of_phy_deregister_fixed_link -EXPORT_SYMBOL vmlinux 0xb4eca865 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb4f873d4 __ip_dev_find -EXPORT_SYMBOL vmlinux 0xb508aaa6 skb_find_text -EXPORT_SYMBOL vmlinux 0xb5289e65 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0xb5302166 fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0xb538636a inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0xb53e0b33 __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb5898d93 posix_lock_file -EXPORT_SYMBOL vmlinux 0xb58a2c1a xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat -EXPORT_SYMBOL vmlinux 0xb58f1d61 sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0xb5914c74 __neigh_event_send -EXPORT_SYMBOL vmlinux 0xb598ffd1 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5d8ae18 vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0xb5fdc18f mutex_is_locked -EXPORT_SYMBOL vmlinux 0xb606e7b4 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0xb6085e14 blk_mq_init_allocated_queue -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 0xb6400cb4 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xb641064e xfrm6_rcv -EXPORT_SYMBOL vmlinux 0xb6492fbf md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xb64c3726 eth_header_parse -EXPORT_SYMBOL vmlinux 0xb664a4e8 kvrealloc -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -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 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6a25d42 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6b6284e xz_dec_run -EXPORT_SYMBOL vmlinux 0xb6b66ee9 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0xb6ba1ed7 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -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 0xb71589f0 skip_spaces -EXPORT_SYMBOL vmlinux 0xb71d986d snd_pcm_hw_limit_rates -EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb7224491 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0xb73163bf blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xb7362c90 do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0xb73a443c __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0xb73cf400 snd_ctl_rename_id -EXPORT_SYMBOL vmlinux 0xb7566933 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xb759d1f0 __put_page -EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init -EXPORT_SYMBOL vmlinux 0xb76bb7aa hmm_range_fault -EXPORT_SYMBOL vmlinux 0xb76da383 xfrm_alloc_spi -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 0xb78c7cc9 xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb78e2050 qcom_scm_pas_init_image -EXPORT_SYMBOL vmlinux 0xb7946463 eth_validate_addr -EXPORT_SYMBOL vmlinux 0xb7ab87d4 keyring_clear -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7df0e97 ZSTD_DDictWorkspaceBound -EXPORT_SYMBOL vmlinux 0xb7df1147 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0xb7ff182f down_read_killable -EXPORT_SYMBOL vmlinux 0xb803fdf1 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0xb8338f28 xfrm_trans_queue_net -EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available -EXPORT_SYMBOL vmlinux 0xb855ef6d security_sk_classify_flow -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 0xb87a53e1 generic_write_checks -EXPORT_SYMBOL vmlinux 0xb87e58cd md_reload_sb -EXPORT_SYMBOL vmlinux 0xb8807f6a i2c_put_adapter -EXPORT_SYMBOL vmlinux 0xb898948f pci_disable_device -EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -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 0xb8c7fea1 tcp_prot -EXPORT_SYMBOL vmlinux 0xb8e39d53 percpu_counter_sync -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 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb94b8e8f brioctl_set -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 0xb963e483 disk_end_io_acct -EXPORT_SYMBOL vmlinux 0xb96afbea pci_read_config_word -EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb976ecbe vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0xb9800496 tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0xb981d8a1 jbd2_fc_end_commit -EXPORT_SYMBOL vmlinux 0xb9975d25 __traceiter_kmem_cache_alloc_node -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 0xb9b00ff3 set_page_dirty -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 0xb9ee98ba skb_clone_sk -EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba4a4857 genphy_c37_read_status -EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len -EXPORT_SYMBOL vmlinux 0xba6533f7 seq_bprintf -EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk -EXPORT_SYMBOL vmlinux 0xba737277 invalidate_inode_buffers -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 0xbacd1655 skb_split -EXPORT_SYMBOL vmlinux 0xbad10534 xp_can_alloc -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 -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb10ff8f skb_expand_head -EXPORT_SYMBOL vmlinux 0xbb140c97 of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0xbb14eb31 bcmp -EXPORT_SYMBOL vmlinux 0xbb18b531 __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0xbb22cc2b save_stack_trace_tsk -EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb2df1ec __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0xbb32f2ec load_nls -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb47dfa4 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0xbb68487a jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 -EXPORT_SYMBOL vmlinux 0xbb7c1f66 genphy_suspend -EXPORT_SYMBOL vmlinux 0xbb8ea004 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xbb91cb05 iov_iter_xarray -EXPORT_SYMBOL vmlinux 0xbb9a0de9 filemap_flush -EXPORT_SYMBOL vmlinux 0xbbb8b490 unlock_rename -EXPORT_SYMBOL vmlinux 0xbbc23d77 snd_timer_interrupt -EXPORT_SYMBOL vmlinux 0xbbcf935d scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0xbbdd5574 vfs_iocb_iter_write -EXPORT_SYMBOL vmlinux 0xbbe6109f tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xbbec9815 tcf_action_check_ctrlact -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 0xbc17749e lookup_one_unlocked -EXPORT_SYMBOL vmlinux 0xbc1d858f backlight_force_update -EXPORT_SYMBOL vmlinux 0xbc27c453 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xbc28dac5 dump_skip_to -EXPORT_SYMBOL vmlinux 0xbc3a9101 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0xbc418545 mipi_dsi_dcs_set_column_address -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 0xbc721bef tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xbc8a7d57 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcb65191 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xbce2d2e4 phy_start -EXPORT_SYMBOL vmlinux 0xbce6a3db page_pool_update_nid -EXPORT_SYMBOL vmlinux 0xbcf1f9d7 nlmsg_notify -EXPORT_SYMBOL vmlinux 0xbcf9f7ca blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0xbd1b4950 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0xbd388e69 release_sock -EXPORT_SYMBOL vmlinux 0xbd4cd3e1 dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0xbd4efc78 fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0xbd5e1d9c __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0xbd6fb47d inet_frags_fini -EXPORT_SYMBOL vmlinux 0xbd7b3c80 kern_unmount_array -EXPORT_SYMBOL vmlinux 0xbd820297 rtc_lock -EXPORT_SYMBOL vmlinux 0xbd86e1f2 blk_queue_split -EXPORT_SYMBOL vmlinux 0xbdac6c7a vfs_fsync -EXPORT_SYMBOL vmlinux 0xbdc7cfae xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0xbdd1e844 cros_ec_query_all -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 0xbe1427af __printk_cpu_unlock -EXPORT_SYMBOL vmlinux 0xbe29b655 flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0xbe2a1891 fget_raw -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 0xbec84c8b snd_timer_global_free -EXPORT_SYMBOL vmlinux 0xbeca8d95 __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xbed37c48 serio_reconnect -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 0xbef3ebb3 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbf09e7cb snd_pcm_lib_preallocate_pages_for_all -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 0xbf76628d alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xbf85b6e7 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0xbf8e5c5c __dec_node_page_state -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbf9c9f7d lock_sock_nested -EXPORT_SYMBOL vmlinux 0xbf9fdb7e ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0xbfa42e2f proc_symlink -EXPORT_SYMBOL vmlinux 0xbfa66f4c vm_insert_page -EXPORT_SYMBOL vmlinux 0xbfabe414 snd_pcm_hw_constraint_step -EXPORT_SYMBOL vmlinux 0xbfc112af ptp_clock_index -EXPORT_SYMBOL vmlinux 0xbfc3ad68 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xbfdf7bc3 mempool_create -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xc054d8c8 devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0xc0594738 fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0xc06184cd xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0xc073a0f5 phy_attached_info -EXPORT_SYMBOL vmlinux 0xc07592c8 pin_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc09660f4 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0xc09ef202 tcp_release_cb -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 0xc0bb6181 md_check_recovery -EXPORT_SYMBOL vmlinux 0xc0cc8a7c pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0xc0d3cbdd get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0xc0da0e99 dim_on_top -EXPORT_SYMBOL vmlinux 0xc0dbe26a input_allocate_device -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 0xc105f5d4 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xc1190b4b vm_map_ram -EXPORT_SYMBOL vmlinux 0xc124d4a1 devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xc13f32c6 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc158e9ff generic_update_time -EXPORT_SYMBOL vmlinux 0xc15f4ed8 utf8nlen -EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict -EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc1755fd2 __mod_lruvec_page_state -EXPORT_SYMBOL vmlinux 0xc18841ef netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xc18f5576 rawnand_sw_bch_cleanup -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 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 0xc202a058 find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0xc2059c64 fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0xc207ee07 complete_and_exit -EXPORT_SYMBOL vmlinux 0xc20ac2b0 eth_header_cache -EXPORT_SYMBOL vmlinux 0xc230c9a8 wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0xc243034d dquot_resume -EXPORT_SYMBOL vmlinux 0xc24ce1d4 __inet_hash -EXPORT_SYMBOL vmlinux 0xc24e6dca locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -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 0xc2922093 tc6393xb_lcd_set_power -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 0xc2cae53e refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0xc2cd23d5 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0xc2cf2dde ZSTD_decompress_usingDDict -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 0xc3055d20 usleep_range_state -EXPORT_SYMBOL vmlinux 0xc31a17fa tcp_splice_read -EXPORT_SYMBOL vmlinux 0xc31c3ab5 genphy_read_status_fixed -EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr -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 0xc37335b0 complete -EXPORT_SYMBOL vmlinux 0xc37d908d pci_set_power_state -EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc39f3bbc bioset_init -EXPORT_SYMBOL vmlinux 0xc3aab541 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0xc3abfd7d mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0xc3b66b3b inet_confirm_addr -EXPORT_SYMBOL vmlinux 0xc3bc8dba arp_send -EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb -EXPORT_SYMBOL vmlinux 0xc3e3c3da PDE_DATA -EXPORT_SYMBOL vmlinux 0xc3ec7dc1 __gnet_stats_copy_basic -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 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc42391fe ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xc4251c03 dquot_commit_info -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 0xc4687139 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr -EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc47b2824 block_truncate_page -EXPORT_SYMBOL vmlinux 0xc4a59957 pldmfw_flash_image -EXPORT_SYMBOL vmlinux 0xc4aa6a5f dev_mc_sync -EXPORT_SYMBOL vmlinux 0xc4bf7d91 fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0xc4d08ce0 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0xc4d20532 dev_addr_init -EXPORT_SYMBOL vmlinux 0xc506bfeb dm_io -EXPORT_SYMBOL vmlinux 0xc517a395 follow_down_one -EXPORT_SYMBOL vmlinux 0xc51ea508 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xc52da066 omap_set_dma_dest_params -EXPORT_SYMBOL vmlinux 0xc53756a3 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xc54ceacd __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xc54df713 __nla_reserve -EXPORT_SYMBOL vmlinux 0xc54e411f rproc_of_parse_firmware -EXPORT_SYMBOL vmlinux 0xc56c0380 fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0xc56df096 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0xc581500f ZSTD_resetDStream -EXPORT_SYMBOL vmlinux 0xc58a92aa reuseport_alloc -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc59df969 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL vmlinux 0xc5a6d10b release_and_free_resource -EXPORT_SYMBOL vmlinux 0xc5ab6854 netpoll_send_skb -EXPORT_SYMBOL vmlinux 0xc5baba06 vcalloc -EXPORT_SYMBOL vmlinux 0xc5be019c prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0xc5cbdc54 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xc5d3597d dev_get_flags -EXPORT_SYMBOL vmlinux 0xc5e08410 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -EXPORT_SYMBOL vmlinux 0xc5ee6c48 kvfree_sensitive -EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last -EXPORT_SYMBOL vmlinux 0xc5ff755c qdisc_reset -EXPORT_SYMBOL vmlinux 0xc60932b5 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc61c1391 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc638311d nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0xc6428443 nand_ecc_cleanup_ctx -EXPORT_SYMBOL vmlinux 0xc64419ba fput -EXPORT_SYMBOL vmlinux 0xc64e58c6 dev_open -EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xc66fb0eb cdrom_ioctl -EXPORT_SYMBOL vmlinux 0xc68c92cf skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0xc68da06f kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle -EXPORT_SYMBOL vmlinux 0xc6a05833 snd_pcm_kernel_ioctl -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6d91584 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0xc6deda85 generic_splice_sendpage -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 0xc6f8697a file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0xc6fc8dad tty_hangup -EXPORT_SYMBOL vmlinux 0xc6fe4aca genlmsg_put -EXPORT_SYMBOL vmlinux 0xc705c83d secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0xc70a46ec tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -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 0xc74d1c9f scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0xc7731f8d seg6_push_hmac -EXPORT_SYMBOL vmlinux 0xc7810fa6 tcp_v4_destroy_sock -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 0xc78ff875 tcp_sock_set_user_timeout -EXPORT_SYMBOL vmlinux 0xc79fb590 inet_put_port -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7a84f86 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xc7ab0095 setattr_prepare -EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7cb7b62 mode_strip_sgid -EXPORT_SYMBOL vmlinux 0xc7cd5df9 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xc7eb7d9c pci_read_config_dword -EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn -EXPORT_SYMBOL vmlinux 0xc7faa119 netif_device_attach -EXPORT_SYMBOL vmlinux 0xc805c495 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xc8158ab7 stop_tty -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 0xc840711e tty_port_put -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc853aa36 trace_event_printf -EXPORT_SYMBOL vmlinux 0xc85f78b9 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc87e64df netdev_lower_get_next_private -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 0xc893cccd mipi_dsi_device_unregister -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b4c6c9 fs_param_is_u64 -EXPORT_SYMBOL vmlinux 0xc8b58a25 __memset64 -EXPORT_SYMBOL vmlinux 0xc8c655db unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0xc8cd5185 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0xc8e5e220 backlight_device_get_by_type -EXPORT_SYMBOL vmlinux 0xc8f45d6d rproc_put -EXPORT_SYMBOL vmlinux 0xc8f5d134 inet_offloads -EXPORT_SYMBOL vmlinux 0xc8fe274f sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0xc9053616 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xc905b009 input_set_poll_interval -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 0xc93a9145 xsk_tx_peek_desc -EXPORT_SYMBOL vmlinux 0xc93f2b49 submit_bio_wait -EXPORT_SYMBOL vmlinux 0xc95233be bio_uninit -EXPORT_SYMBOL vmlinux 0xc95424c5 security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc96f953a of_get_next_cpu_node -EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev -EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xc9855592 netdev_sk_get_lowest_dev -EXPORT_SYMBOL vmlinux 0xc987ae5c put_disk -EXPORT_SYMBOL vmlinux 0xc99cbb83 gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9ab3456 pci_disable_msi -EXPORT_SYMBOL vmlinux 0xc9ae8004 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0xc9b2060c km_state_notify -EXPORT_SYMBOL vmlinux 0xc9c4d441 irq_set_chip -EXPORT_SYMBOL vmlinux 0xc9ca3698 register_sysctl_table -EXPORT_SYMBOL vmlinux 0xc9cf8a40 __scm_destroy -EXPORT_SYMBOL vmlinux 0xc9d993d6 tcf_exts_terse_dump -EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9e9d5f9 vme_alloc_consistent -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 0xca1a75f3 skb_flow_get_icmp_tci -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 0xca56c20a mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0xca5a7528 down_interruptible -EXPORT_SYMBOL vmlinux 0xca6b4d25 dev_set_allmulti -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 0xcac816c1 bmap -EXPORT_SYMBOL vmlinux 0xcad55e34 km_query -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcafd352e open_with_fake_path -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb0c75d6 stream_open -EXPORT_SYMBOL vmlinux 0xcb0d8bd2 bio_integrity_clone -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 0xcb510bc2 complete_all -EXPORT_SYMBOL vmlinux 0xcb606eb9 xa_load -EXPORT_SYMBOL vmlinux 0xcb6759ec tcp_child_process -EXPORT_SYMBOL vmlinux 0xcb8c753b mempool_exit -EXPORT_SYMBOL vmlinux 0xcbb5f331 blk_put_queue -EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbed33db dev_add_offload -EXPORT_SYMBOL vmlinux 0xcbf1dbd0 utf8len -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 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 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL vmlinux 0xcc82c4b1 clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0xcc87cf07 param_get_string -EXPORT_SYMBOL vmlinux 0xcca953e2 dma_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0xccab0367 cros_ec_check_result -EXPORT_SYMBOL vmlinux 0xccae1308 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0xccbb1686 ll_rw_block -EXPORT_SYMBOL vmlinux 0xccbc60da mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xcccccef7 do_splice_direct -EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xccdc527b ptp_cancel_worker_sync -EXPORT_SYMBOL vmlinux 0xcce11765 get_watch_queue -EXPORT_SYMBOL vmlinux 0xccef50f2 inet_listen -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 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd309297 lock_rename -EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div -EXPORT_SYMBOL vmlinux 0xcd33ce40 devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0xcd4ba885 of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr -EXPORT_SYMBOL vmlinux 0xcd9c1dc7 open_exec -EXPORT_SYMBOL vmlinux 0xcdb6a1e8 ndisc_mc_map -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 0xcdf1193b tcf_block_get -EXPORT_SYMBOL vmlinux 0xcdfac580 nf_hook_slow -EXPORT_SYMBOL vmlinux 0xce028800 neigh_xmit -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce289ea8 sockfd_lookup -EXPORT_SYMBOL vmlinux 0xce3ca308 copy_from_user_toio -EXPORT_SYMBOL vmlinux 0xce43f39a blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce6a83e3 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0xce6e89e7 audit_log -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 0xcec00c5e snd_timer_instance_free -EXPORT_SYMBOL vmlinux 0xcece79ad ipv4_specific -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 0xcee5264f snd_info_free_entry -EXPORT_SYMBOL vmlinux 0xceee7474 ethtool_get_phc_vclocks -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf01f610 panic_notifier_list -EXPORT_SYMBOL vmlinux 0xcf487ef1 mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0xcf539b2a thaw_bdev -EXPORT_SYMBOL vmlinux 0xcf7645c5 netdev_has_upper_dev -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 0xcf993d48 skb_unlink -EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcfa69a7e atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xcfaf1a0f ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xcfb903a9 seq_open -EXPORT_SYMBOL vmlinux 0xcfdb0194 max8925_reg_read -EXPORT_SYMBOL vmlinux 0xcfed8107 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0xcff458ae dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0xcffcabd8 snd_ctl_find_numid -EXPORT_SYMBOL vmlinux 0xd0258ef8 key_revoke -EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -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 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd07e7605 tty_port_close_end -EXPORT_SYMBOL vmlinux 0xd086fcdb snd_pcm_lib_ioctl -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 0xd0c1e866 mipi_dsi_picture_parameter_set -EXPORT_SYMBOL vmlinux 0xd0c5f221 ppp_input_error -EXPORT_SYMBOL vmlinux 0xd0c76284 tcp_read_sock -EXPORT_SYMBOL vmlinux 0xd0c8e940 _dev_emerg -EXPORT_SYMBOL vmlinux 0xd0e9fb09 release_firmware -EXPORT_SYMBOL vmlinux 0xd109778f gen_pool_dma_alloc_algo -EXPORT_SYMBOL vmlinux 0xd1119f21 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0xd11cb90f dev_close -EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd14a960d wake_up_process -EXPORT_SYMBOL vmlinux 0xd1554177 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0xd15757b3 devm_clk_release_clkdev -EXPORT_SYMBOL vmlinux 0xd159ec3d jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0xd15d05d4 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0xd15ed61c genl_unregister_family -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd197b7ca bdi_put -EXPORT_SYMBOL vmlinux 0xd1b6ab57 genphy_read_lpa -EXPORT_SYMBOL vmlinux 0xd1bca192 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0xd1bd56ac netdev_pick_tx -EXPORT_SYMBOL vmlinux 0xd1cc6d46 input_unregister_handle -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -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 0xd22b157a neigh_event_ns -EXPORT_SYMBOL vmlinux 0xd22c0c88 ipmr_rule_default -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 0xd272eb2a blk_mq_run_hw_queue -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 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 0xd29b1ab6 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0xd2acee0d __vfs_removexattr -EXPORT_SYMBOL vmlinux 0xd2bd34ca jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0xd2c6bfa9 tcp_v4_send_check -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 0xd2fcbd0e thermal_cdev_update -EXPORT_SYMBOL vmlinux 0xd30c5bb7 insert_inode_locked4 -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 0xd36e4eb1 vfs_get_link -EXPORT_SYMBOL vmlinux 0xd37d32aa setattr_should_drop_sgid -EXPORT_SYMBOL vmlinux 0xd385c51e tso_build_hdr -EXPORT_SYMBOL vmlinux 0xd391c25b __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xd39fa6ab __kfifo_alloc -EXPORT_SYMBOL vmlinux 0xd3abb665 rtnl_create_link -EXPORT_SYMBOL vmlinux 0xd3bed452 set_capacity -EXPORT_SYMBOL vmlinux 0xd3bfc798 inet_register_protosw -EXPORT_SYMBOL vmlinux 0xd3c5f009 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd3f40d8c pci_get_slot -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 0xd415acc7 rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0xd4296b65 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0xd43a53bc xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0xd43add0f inet_add_offload -EXPORT_SYMBOL vmlinux 0xd44103e6 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0xd4432a96 pci_request_region -EXPORT_SYMBOL vmlinux 0xd45ddb66 kstrtobool_from_user -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 0xd4ad90b4 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4bf34b1 dquot_get_state -EXPORT_SYMBOL vmlinux 0xd4c270fc xsk_get_pool_from_qid -EXPORT_SYMBOL vmlinux 0xd4e2f0e4 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0xd4f396b3 of_node_put -EXPORT_SYMBOL vmlinux 0xd4f6268c __neigh_create -EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd50967d9 rtnl_notify -EXPORT_SYMBOL vmlinux 0xd51b098b ip6_frag_next -EXPORT_SYMBOL vmlinux 0xd51f30bd iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd529d62a sk_stream_error -EXPORT_SYMBOL vmlinux 0xd534dd2a sock_set_keepalive -EXPORT_SYMBOL vmlinux 0xd557c704 page_mapping -EXPORT_SYMBOL vmlinux 0xd57b3f25 __register_chrdev -EXPORT_SYMBOL vmlinux 0xd5822b08 d_genocide -EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise -EXPORT_SYMBOL vmlinux 0xd5a8f741 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0xd5adf8b0 iget_locked -EXPORT_SYMBOL vmlinux 0xd5b2e605 sget_fc -EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5c36a55 eth_gro_receive -EXPORT_SYMBOL vmlinux 0xd5c635aa snd_pcm_period_elapsed_under_stream_lock -EXPORT_SYMBOL vmlinux 0xd5c67177 sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0xd5ccac8d param_set_hexint -EXPORT_SYMBOL vmlinux 0xd5d7e2cc kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xd5e82831 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0xd5eff42a dst_discard_out -EXPORT_SYMBOL vmlinux 0xd5f4d36a phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0xd5ffa4a7 discard_new_inode -EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd6215dbd md_write_end -EXPORT_SYMBOL vmlinux 0xd627480b strncat -EXPORT_SYMBOL vmlinux 0xd63fafc2 div64_u64_rem -EXPORT_SYMBOL vmlinux 0xd6582ab0 xa_extract -EXPORT_SYMBOL vmlinux 0xd65d845a skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0xd667925a sock_pfree -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 0xd6c1d6d0 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0xd6dcd084 udp_seq_next -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 0xd70d35a1 gf128mul_4k_bbe -EXPORT_SYMBOL vmlinux 0xd7216ebf rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0xd728de69 mdio_find_bus -EXPORT_SYMBOL vmlinux 0xd73150a6 has_capability -EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd75fbfcf close_fd_get_file -EXPORT_SYMBOL vmlinux 0xd76f6099 vscnprintf -EXPORT_SYMBOL vmlinux 0xd774834f ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0xd7770997 dev_remove_offload -EXPORT_SYMBOL vmlinux 0xd78d5a57 ps2_drain -EXPORT_SYMBOL vmlinux 0xd79607f9 ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write -EXPORT_SYMBOL vmlinux 0xd79a809a file_fdatawait_range -EXPORT_SYMBOL vmlinux 0xd7a209b5 dquot_scan_active -EXPORT_SYMBOL vmlinux 0xd7af1b84 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0xd7c5a29c mod_node_page_state -EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7e56ec2 blk_mq_tagset_busy_iter -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -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 0xd8410611 mempool_alloc -EXPORT_SYMBOL vmlinux 0xd853a685 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0xd8689a5a ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0xd86b61c4 _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0xd875584a __genradix_ptr -EXPORT_SYMBOL vmlinux 0xd8770f70 vme_irq_handler -EXPORT_SYMBOL vmlinux 0xd8909a2b xfrm_state_free -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 0xd8b61304 get_default_font -EXPORT_SYMBOL vmlinux 0xd8ba4f1e jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xd8be05f2 dquot_commit -EXPORT_SYMBOL vmlinux 0xd8ce8b6e mmc_sw_reset -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 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd93858b3 iunique -EXPORT_SYMBOL vmlinux 0xd94487a7 reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0xd945852b ip_generic_getfrag -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 0xd982ff0a ptp_clock_event -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd98ca4c1 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xd9966dea snd_dma_alloc_pages -EXPORT_SYMBOL vmlinux 0xd9a00610 md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0xd9a9e270 locks_free_lock -EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen -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 0xda078ab8 ac97_bus_type -EXPORT_SYMBOL vmlinux 0xda1466da nand_monolithic_read_page_raw -EXPORT_SYMBOL vmlinux 0xda1f14fb qdisc_hash_add -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 0xda469b62 of_graph_get_remote_endpoint -EXPORT_SYMBOL vmlinux 0xda65290f snd_unregister_device -EXPORT_SYMBOL vmlinux 0xda6fb7af rtnl_set_sk_err -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 0xdaa4f4e6 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw -EXPORT_SYMBOL vmlinux 0xdaeb1381 elevator_alloc -EXPORT_SYMBOL vmlinux 0xdaefb5b4 regset_get_alloc -EXPORT_SYMBOL vmlinux 0xdaf65445 vsnprintf -EXPORT_SYMBOL vmlinux 0xdb143cc1 register_filesystem -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 0xdb530441 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb81e2fc __wait_on_bit -EXPORT_SYMBOL vmlinux 0xdb93e098 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0xdb94dfa5 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xdb98c877 skb_ext_add -EXPORT_SYMBOL vmlinux 0xdbaa16b1 snd_pcm_hw_refine -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 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbfa69ae generic_ro_fops -EXPORT_SYMBOL vmlinux 0xdc0447bd skb_queue_head -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 -EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -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 0xdc81901a wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xdc9d1bed generic_fillattr -EXPORT_SYMBOL vmlinux 0xdcb34b8f vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0xdcd67f74 i2c_transfer -EXPORT_SYMBOL vmlinux 0xdcdb2578 skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress -EXPORT_SYMBOL vmlinux 0xdce24d18 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0xdce35c74 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0xdcef8207 xsk_tx_completed -EXPORT_SYMBOL vmlinux 0xdcf1fec6 pagecache_get_page -EXPORT_SYMBOL vmlinux 0xdcf4fa62 neigh_table_clear -EXPORT_SYMBOL vmlinux 0xdcf58098 security_inode_init_security -EXPORT_SYMBOL vmlinux 0xdcf6d045 radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat -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 0xdd509033 rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0xdd5b047e tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0xdd5fb580 fb_show_logo -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 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xddc975bb cdev_device_add -EXPORT_SYMBOL vmlinux 0xddf703f5 phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0xde07cd25 skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0xde0fc579 mem_map -EXPORT_SYMBOL vmlinux 0xde0fe9af bio_devname -EXPORT_SYMBOL vmlinux 0xde26465b user_path_at_empty -EXPORT_SYMBOL vmlinux 0xde27820f seq_dentry -EXPORT_SYMBOL vmlinux 0xde3d5df5 begin_new_exec -EXPORT_SYMBOL vmlinux 0xde4bf88b __mutex_init -EXPORT_SYMBOL vmlinux 0xde55e795 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0xde59092a lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xde91bfe6 vc_cons -EXPORT_SYMBOL vmlinux 0xdeb43101 migrate_page_copy -EXPORT_SYMBOL vmlinux 0xdecfbf67 drop_nlink -EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdee7c600 seq_putc -EXPORT_SYMBOL vmlinux 0xdee8f411 __register_binfmt -EXPORT_SYMBOL vmlinux 0xdeed3569 pci_free_irq -EXPORT_SYMBOL vmlinux 0xdeef7e50 __task_pid_nr_ns -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 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update -EXPORT_SYMBOL vmlinux 0xdf4d2462 netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0xdf52def1 ZSTD_DStreamInSize -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 0xdf61478c generic_copy_file_range -EXPORT_SYMBOL vmlinux 0xdf6984d8 kill_anon_super -EXPORT_SYMBOL vmlinux 0xdf7598bc ip6_route_me_harder -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 0xdf92d077 inet_del_protocol -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdfc0e6e0 sock_wmalloc -EXPORT_SYMBOL vmlinux 0xdfca4915 fs_param_is_blob -EXPORT_SYMBOL vmlinux 0xdfcbe76b inet_sock_destruct -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 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe01aaefc dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0xe0341485 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0xe03b6246 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe0470c0b inode_needs_sync -EXPORT_SYMBOL vmlinux 0xe0480871 skb_vlan_pop -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 0xe08ba3fa iterate_fd -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 0xe0cacfb6 fs_param_is_fd -EXPORT_SYMBOL vmlinux 0xe0cfe011 inet_frag_find -EXPORT_SYMBOL vmlinux 0xe0d884a8 lease_get_mtime -EXPORT_SYMBOL vmlinux 0xe0e801aa pcim_enable_device -EXPORT_SYMBOL vmlinux 0xe105720e dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release -EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xe137423e vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe153f436 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0xe1747d98 fs_bio_set -EXPORT_SYMBOL vmlinux 0xe19684fc sock_kmalloc -EXPORT_SYMBOL vmlinux 0xe19f927d xp_free -EXPORT_SYMBOL vmlinux 0xe1a9b2ff dma_fence_match_context -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 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 0xe2480ab0 ip_setsockopt -EXPORT_SYMBOL vmlinux 0xe24e14b3 snd_info_create_module_entry -EXPORT_SYMBOL vmlinux 0xe257a8f3 of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0xe266f098 xa_get_mark -EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe2b5f529 vfs_get_super -EXPORT_SYMBOL vmlinux 0xe2b9111f io_uring_get_socket -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 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 0xe31c9406 inet_csk_prepare_forced_close -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 0xe3482046 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0xe353717c dev_mc_sync_multiple -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 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 0xe3abdc5e of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0xe3c0e3a3 ilookup -EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3fbd30a _raw_write_trylock -EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait -EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 -EXPORT_SYMBOL vmlinux 0xe4007c07 init_pseudo -EXPORT_SYMBOL vmlinux 0xe40e53a3 _dev_notice -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 0xe46b81d0 reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0xe46bd7e2 pci_restore_state -EXPORT_SYMBOL vmlinux 0xe4750637 nand_ecc_sw_bch_get_engine -EXPORT_SYMBOL vmlinux 0xe4989b58 sync_file_create -EXPORT_SYMBOL vmlinux 0xe49c82f4 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xe4a71ea9 snd_pcm_period_elapsed -EXPORT_SYMBOL vmlinux 0xe4bf357a uart_get_divisor -EXPORT_SYMBOL vmlinux 0xe4c2abc3 bdev_read_only -EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid -EXPORT_SYMBOL vmlinux 0xe4db6f98 fd_install -EXPORT_SYMBOL vmlinux 0xe4e036b2 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0xe4fe0d4f netdev_alert -EXPORT_SYMBOL vmlinux 0xe517da0d no_seek_end_llseek_size -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 0xe542024b f_setown -EXPORT_SYMBOL vmlinux 0xe549b763 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xe5661da5 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL vmlinux 0xe570196b sk_free -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 0xe598965f of_n_size_cells -EXPORT_SYMBOL vmlinux 0xe5b1fe67 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0xe5b4fd75 qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5cc2e89 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0xe5cf03d2 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0xe5ed914f netdev_refcnt_read -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 0xe62e25ad page_get_link -EXPORT_SYMBOL vmlinux 0xe645aaf8 of_match_device -EXPORT_SYMBOL vmlinux 0xe6764da8 netlink_net_capable -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 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 0xe72efee7 mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0xe72f1378 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe73ff3a3 page_pool_return_skb_page -EXPORT_SYMBOL vmlinux 0xe745b028 pps_register_source -EXPORT_SYMBOL vmlinux 0xe752c6c0 __mmap_lock_do_trace_acquire_returned -EXPORT_SYMBOL vmlinux 0xe7682408 qdisc_offload_dump_helper -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 0xe78169b5 pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0xe7909106 ppp_output_wakeup -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 0xe7e4d52a _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xe7ebb3f3 __mdiobus_read -EXPORT_SYMBOL vmlinux 0xe7ef00c1 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xe7f2e3a2 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0xe7ffd759 nvdimm_check_and_set_ro -EXPORT_SYMBOL vmlinux 0xe8025019 dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0xe80469db call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0xe8100210 skb_seq_read -EXPORT_SYMBOL vmlinux 0xe81b7fff add_watch_to_object -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 0xe860641c ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xe863cc34 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0xe865856d vfs_symlink -EXPORT_SYMBOL vmlinux 0xe8701938 dev_set_group -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 0xe8cb65d4 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0xe8cd0a2c crc32_le_shift -EXPORT_SYMBOL vmlinux 0xe8d70354 unix_detach_fds -EXPORT_SYMBOL vmlinux 0xe8e9a1b7 inet6_bind -EXPORT_SYMBOL vmlinux 0xe8fdcd7c debugfs_create_automount -EXPORT_SYMBOL vmlinux 0xe9014e69 __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe925f72d nf_ct_attach -EXPORT_SYMBOL vmlinux 0xe9325f03 downgrade_write -EXPORT_SYMBOL vmlinux 0xe9327478 free_netdev -EXPORT_SYMBOL vmlinux 0xe9386fa1 devm_rproc_alloc -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe96d7527 rpmh_invalidate -EXPORT_SYMBOL vmlinux 0xe97ef1c7 __traceiter_kmalloc_node -EXPORT_SYMBOL vmlinux 0xe98349cb netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0xe9928f04 of_find_device_by_node -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 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 0xea041924 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0xea10103e __phy_resume -EXPORT_SYMBOL vmlinux 0xea2a5283 tc_setup_flow_action -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 0xea3e0251 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0xea50a486 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0xea59a0df sock_no_mmap -EXPORT_SYMBOL vmlinux 0xea632b35 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xea6885c3 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -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 0xeabf13a8 scsi_partsize -EXPORT_SYMBOL vmlinux 0xeace88eb netlink_broadcast -EXPORT_SYMBOL vmlinux 0xeaf38139 pci_remove_bus -EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xeb0087b4 path_has_submounts -EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl -EXPORT_SYMBOL vmlinux 0xeb082e41 bh_submit_read -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb53178a crc8 -EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xeb6cf93c jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0xeb7cd3ff vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xeb9c9d7e skb_queue_purge -EXPORT_SYMBOL vmlinux 0xeb9d3a49 mdiobus_scan -EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order -EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xeba73de0 pagecache_write_end -EXPORT_SYMBOL vmlinux 0xebb6e8e7 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0xebc7fe55 setattr_should_drop_suidgid -EXPORT_SYMBOL vmlinux 0xebdacba9 pskb_expand_head -EXPORT_SYMBOL vmlinux 0xebdcf316 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high -EXPORT_SYMBOL vmlinux 0xec002bea disk_stack_limits -EXPORT_SYMBOL vmlinux 0xec0f50ea tcp_close -EXPORT_SYMBOL vmlinux 0xec1ba0ef vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0xec2a8e45 netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0xec30992b eth_prepare_mac_addr_change -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 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec5fd2b5 flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0xecb5b42c unregister_qdisc -EXPORT_SYMBOL vmlinux 0xecc4294c peernet2id -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 0xed0fce1c jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0xed28cc5a netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0xed3732c4 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock -EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed980b2a jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xed9b5fd5 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedbc4e47 tcf_qevent_dump -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc40d7e __page_symlink -EXPORT_SYMBOL vmlinux 0xedd12d2e tty_unthrottle -EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 -EXPORT_SYMBOL vmlinux 0xedecaf42 mmc_erase_group_aligned -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 0xee28d69d of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee2eb27f __devm_release_region -EXPORT_SYMBOL vmlinux 0xee43fd9b ___ratelimit -EXPORT_SYMBOL vmlinux 0xee49faa6 mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee689582 of_root -EXPORT_SYMBOL vmlinux 0xee6cba60 snd_timer_stop -EXPORT_SYMBOL vmlinux 0xee6e57d8 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0xee764a4a ps2_init -EXPORT_SYMBOL vmlinux 0xee79e3fe udplite_prot -EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit -EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs -EXPORT_SYMBOL vmlinux 0xee8f3f95 lock_page_memcg -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee922b77 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeb48e00 mmc_free_host -EXPORT_SYMBOL vmlinux 0xeed76d7d set_posix_acl -EXPORT_SYMBOL vmlinux 0xeedc7ed3 mdio_device_register -EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init -EXPORT_SYMBOL vmlinux 0xeefaa4a2 unregister_nls -EXPORT_SYMBOL vmlinux 0xef18fad9 security_sock_graft -EXPORT_SYMBOL vmlinux 0xef362e27 nd_btt_probe -EXPORT_SYMBOL vmlinux 0xef4271c1 jbd2_fc_begin_commit -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 0xef6ae4b0 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0xef7c61e4 d_alloc_name -EXPORT_SYMBOL vmlinux 0xef7c9ece i2c_register_driver -EXPORT_SYMBOL vmlinux 0xef890ec3 register_netdev -EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg -EXPORT_SYMBOL vmlinux 0xef8f9e24 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0xef929f0e pcie_set_readrq -EXPORT_SYMBOL vmlinux 0xef93abef dquot_transfer -EXPORT_SYMBOL vmlinux 0xefa09428 migrate_page -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 0xf03febb7 md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0xf058f50a netdev_crit -EXPORT_SYMBOL vmlinux 0xf068cce7 tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0xf06cee2c radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0xf0721339 is_bad_inode -EXPORT_SYMBOL vmlinux 0xf08cc08a __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0xf092ed69 rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf09f2809 skb_free_datagram -EXPORT_SYMBOL vmlinux 0xf0a343ed release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf0b1d37f max8925_set_bits -EXPORT_SYMBOL vmlinux 0xf0c7b704 phy_aneg_done -EXPORT_SYMBOL vmlinux 0xf0ec5778 netpoll_print_options -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 0xf11264da snd_pcm_new -EXPORT_SYMBOL vmlinux 0xf1141dc4 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf12df1f6 scmd_printk -EXPORT_SYMBOL vmlinux 0xf1333787 fb_get_mode -EXPORT_SYMBOL vmlinux 0xf138d768 account_page_redirty -EXPORT_SYMBOL vmlinux 0xf1582b6c sock_kzfree_s -EXPORT_SYMBOL vmlinux 0xf15f93be inode_update_time -EXPORT_SYMBOL vmlinux 0xf166aa73 copy_page_from_iter_atomic -EXPORT_SYMBOL vmlinux 0xf16a4020 sdev_disable_disk_events -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 0xf1bb6d4e seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xf1bc28c6 inet_del_offload -EXPORT_SYMBOL vmlinux 0xf1c341a0 tcp_add_backlog -EXPORT_SYMBOL vmlinux 0xf1c7d580 security_sb_mnt_opts_compat -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 -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 0xf21a2d27 pid_task -EXPORT_SYMBOL vmlinux 0xf22b2172 d_find_any_alias -EXPORT_SYMBOL vmlinux 0xf236c75e swake_up_one -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf24cd639 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0xf273f381 misc_register -EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL vmlinux 0xf286dd20 tcf_qevent_handle -EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf2900427 of_mdio_find_device -EXPORT_SYMBOL vmlinux 0xf2a4183d xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0xf2ad80d9 snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL vmlinux 0xf2b299db vfs_tmpfile -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 0xf2d32f24 tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free -EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf3153d0d dma_unmap_resource -EXPORT_SYMBOL vmlinux 0xf3289c46 netdev_err -EXPORT_SYMBOL vmlinux 0xf32bac52 path_is_mountpoint -EXPORT_SYMBOL vmlinux 0xf3391ca2 pcim_iomap_table -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 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf3565709 put_watch_queue -EXPORT_SYMBOL vmlinux 0xf362dc7f arm_clear_user -EXPORT_SYMBOL vmlinux 0xf36b87a3 textsearch_unregister -EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xf38ab382 scsi_remove_device -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused -EXPORT_SYMBOL vmlinux 0xf394e3db sg_alloc_append_table_from_pages -EXPORT_SYMBOL vmlinux 0xf399658c dev_queue_xmit -EXPORT_SYMBOL vmlinux 0xf39dec93 vmf_insert_pfn_prot -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 0xf3c0a864 km_new_mapping -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 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3e4a414 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3e99d0e dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0xf3eb1323 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0xf4030f85 vga_put -EXPORT_SYMBOL vmlinux 0xf403fd50 input_set_abs_params -EXPORT_SYMBOL vmlinux 0xf41de45b of_lpddr3_get_ddr_timings -EXPORT_SYMBOL vmlinux 0xf42e3328 netdev_warn -EXPORT_SYMBOL vmlinux 0xf44a3ad4 __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf458903e __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0xf45d6553 tty_do_resize -EXPORT_SYMBOL vmlinux 0xf45e1968 netif_skb_features -EXPORT_SYMBOL vmlinux 0xf46a5ae6 alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf4859f2d clocksource_change_rating -EXPORT_SYMBOL vmlinux 0xf4920c96 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0xf496fbd2 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xf499d163 netif_napi_add -EXPORT_SYMBOL vmlinux 0xf49c53a8 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xf49d34c6 of_io_request_and_map -EXPORT_SYMBOL vmlinux 0xf4a04498 nmi_panic -EXPORT_SYMBOL vmlinux 0xf4a8eb9a pipe_unlock -EXPORT_SYMBOL vmlinux 0xf4a8fb36 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0xf4b23391 gro_cells_init -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 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 0xf4fd25ca proc_remove -EXPORT_SYMBOL vmlinux 0xf510fdd3 module_layout -EXPORT_SYMBOL vmlinux 0xf52896e9 pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0xf5316c44 tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf558ac00 page_mapped -EXPORT_SYMBOL vmlinux 0xf55c723d super_setup_bdi -EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp -EXPORT_SYMBOL vmlinux 0xf5789646 security_d_instantiate -EXPORT_SYMBOL vmlinux 0xf5a58f90 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xf5ab5838 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xf5b666ef __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xf5c6a7a5 input_unregister_handler -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 0xf5e9e98e copy_string_kernel -EXPORT_SYMBOL vmlinux 0xf5ee1770 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0xf5f0da2e init_net -EXPORT_SYMBOL vmlinux 0xf5fcb7c9 set_nlink -EXPORT_SYMBOL vmlinux 0xf606a100 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xf60c36a8 filemap_fdatawrite_range -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 0xf6380031 console_start -EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf645f3c7 sk_ns_capable -EXPORT_SYMBOL vmlinux 0xf64868b0 rproc_get_by_phandle -EXPORT_SYMBOL vmlinux 0xf64bf255 wait_for_completion -EXPORT_SYMBOL vmlinux 0xf64dd30a skb_copy_header -EXPORT_SYMBOL vmlinux 0xf652d359 __wake_up_bit -EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf6733415 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xf67375b2 ip6_output -EXPORT_SYMBOL vmlinux 0xf677323f noop_qdisc -EXPORT_SYMBOL vmlinux 0xf67b32d1 __ip_options_compile -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf6abad76 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0xf6b17214 nand_ecc_get_on_die_hw_engine -EXPORT_SYMBOL vmlinux 0xf6da8583 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0xf6e4df71 on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -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 0xf6fe489b xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0xf70209f3 neigh_destroy -EXPORT_SYMBOL vmlinux 0xf705fa49 gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb -EXPORT_SYMBOL vmlinux 0xf721cc07 file_path -EXPORT_SYMBOL vmlinux 0xf7311989 bio_free_pages -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 0xf779e34a dev_set_threaded -EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod -EXPORT_SYMBOL vmlinux 0xf783d154 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xf78d6014 pcie_get_mps -EXPORT_SYMBOL vmlinux 0xf799c1a8 mr_table_alloc -EXPORT_SYMBOL vmlinux 0xf801415c unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -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 0xf84bb197 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0xf85322c1 vfs_link -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 0xf88c2ee9 serio_rescan -EXPORT_SYMBOL vmlinux 0xf88e6281 filp_open -EXPORT_SYMBOL vmlinux 0xf890c7e5 generic_file_llseek -EXPORT_SYMBOL vmlinux 0xf8c09199 sk_stop_timer_sync -EXPORT_SYMBOL vmlinux 0xf8cbd38c skb_trim -EXPORT_SYMBOL vmlinux 0xf8d079c6 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0xf8eb165a ip_getsockopt -EXPORT_SYMBOL vmlinux 0xf8ed5cce console_stop -EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf8f81f96 tcp_conn_request -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 0xf9284f2e skb_copy_and_csum_datagram_msg -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 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9b1edcd __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xf9ba6f5d md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0xf9d22980 netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0xf9d6741e param_ops_short -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 0xfa021f90 ZSTD_decompressContinue -EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa166f14 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xfa34ee3c fwnode_phy_find_device -EXPORT_SYMBOL vmlinux 0xfa351ce2 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa6684a7 vfs_getattr -EXPORT_SYMBOL vmlinux 0xfa72be38 xa_get_order -EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfa9633c9 kset_register -EXPORT_SYMBOL vmlinux 0xfa97c1ba pci_iomap -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfaf87126 scsi_print_command -EXPORT_SYMBOL vmlinux 0xfafaed1f sock_bindtoindex -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 0xfb2b4a15 __nla_reserve_nohdr -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 0xfb4f8076 nvmem_get_mac_address -EXPORT_SYMBOL vmlinux 0xfb54276f d_add -EXPORT_SYMBOL vmlinux 0xfb583387 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb705185 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 -EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -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 0xfbc4f89e io_schedule_timeout -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 0xfbf27b8e devfreq_unregister_notifier -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 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 0xfc781bae blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available -EXPORT_SYMBOL vmlinux 0xfcc57b24 of_phy_find_device -EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable -EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfd06236a tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xfd113990 unregister_md_personality -EXPORT_SYMBOL vmlinux 0xfd1a4888 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xfd1bc346 __traceiter_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xfd248e16 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0xfd305341 walk_stackframe -EXPORT_SYMBOL vmlinux 0xfd42e686 poll_initwait -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 0xfd70a096 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0xfd72499a kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xfd79ecc5 d_path -EXPORT_SYMBOL vmlinux 0xfd8715b0 __snd_pcm_lib_xfer -EXPORT_SYMBOL vmlinux 0xfd9d8244 blk_put_request -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 0xfddf2ee5 snd_pcm_lib_free_pages -EXPORT_SYMBOL vmlinux 0xfde31aa1 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0xfde87bec scsi_device_put -EXPORT_SYMBOL vmlinux 0xfdf4cff0 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xfdf6e6bb snd_card_free_when_closed -EXPORT_SYMBOL vmlinux 0xfdfe3b5c dquot_initialize -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 0xfe1d2e5f udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xfe279976 configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0xfe29ec11 vm_map_pages -EXPORT_SYMBOL vmlinux 0xfe314fb9 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0xfe3a8b41 mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0xfe41829c xa_store_range -EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe58bf5c __kfree_skb -EXPORT_SYMBOL vmlinux 0xfe5c5efb cpu_tlb -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe72951a of_n_addr_cells -EXPORT_SYMBOL vmlinux 0xfe90c4a6 _find_first_zero_bit_le -EXPORT_SYMBOL vmlinux 0xfe92284b udp_seq_ops -EXPORT_SYMBOL vmlinux 0xfe97cd0b ps2_command -EXPORT_SYMBOL vmlinux 0xfea89407 gnet_stats_copy_app -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 0xfedcdb60 seq_hlist_next_percpu -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 0xff1343bd dquot_free_inode -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff3428a9 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0xff373757 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0xff389884 processor -EXPORT_SYMBOL vmlinux 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL vmlinux 0xff5cad5f tcp_make_synack -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 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 0xff926974 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0xff9610ee qcom_scm_assign_mem -EXPORT_SYMBOL vmlinux 0xff996450 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0xffa49db9 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit -EXPORT_SYMBOL vmlinux 0xffbfb4ae snd_pcm_mmap_data -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 vmlinux 0xfff299f3 dev_activate -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 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_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 -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x060afdaa async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xca814551 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x075d667f async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xf22f35be async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x2eece7d5 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x855e4602 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xdb479c63 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xe572a874 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x169f110f async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x328b5b94 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x5611bfcb async_xor_val_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x8fd62c8f async_xor_offs -EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xc1e5dd14 blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x97060629 cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x4547d2e2 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 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 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 0xd2310002 simd_unregister_aeads -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free -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 -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x9638239a 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 0xe22b7787 __twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xf1ced2f3 twofish_setkey -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x09304e06 spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x141c9690 spk_ttyio_release -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x165c881e spk_var_store -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2e7e21d7 speakup_event -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x383cc44f spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x466f5eb7 synth_putwc -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x597ef3f1 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6317baeb spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7048c8c3 spk_ttyio_synth_immediate -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x71ff8f9a spk_ttyio_synth_probe -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7758e1d7 synth_add -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7f5e1885 spk_var_show -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8181ceec speakup_info -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x84dad068 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x88d53b23 synth_current -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 0x99ca2776 spk_do_catch_up_unicode -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaadb0612 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc000c68b spk_ttyio_ops -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc1320c52 synth_remove -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc319c604 synth_putws_s -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc6a06d16 spk_get_var -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd8fd86cf synth_release_region -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe194d0ef synth_printf -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xf0a60ef3 spk_synth_get_index -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x136101e7 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x4a53cc61 sis_info133_for_sata -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x09917359 charlcd_poke -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x6fd9cc4a charlcd_register -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x8b45326c charlcd_alloc -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-i3c 0x41107ba9 __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x29b5066e __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xf1408ade __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x1a598285 __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x5ff3b2b8 __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xb57fd864 __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xc10bfcf4 __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x7893e0d6 __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x8aab4f24 __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x00e5b142 __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xcc432597 __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x0615a5c8 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x0c72805a __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x229ed49d __devm_regmap_init_spmi_ext -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/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/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 -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x25cc3e75 mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2b0eea98 mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x36d5a5bb mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x45bfd7b9 __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4a65b8be mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4df080ef mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x534e883a mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x679b3494 mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6fb3c43b mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7431fefd mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x76f1ebaa mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x79120a40 mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8815a2ec mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8cfde5d7 mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x97fe3183 mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x98c938ab mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9d258728 mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9f95f395 mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb33aefb4 mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb8d1e44e mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd561f886 mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd8764dc7 mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xde7432ab mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xea6e4a60 mhi_poll -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xeb585e4f mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf7ea2326 mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf80051b6 mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x2c33d537 moxtet_device_written -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x5d359970 moxtet_device_read -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x85ba92db moxtet_device_write -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x876b6f3c __moxtet_register_driver -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 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 -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 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 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 -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 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 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 0x6c069db2 qcom_find_src_index -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7019378d clk_pll_configure_sr_hpm_lp -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x766e9f87 clk_regmap_div_ro_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x787e8234 qcom_find_freq -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x78b81ea0 clk_rcg2_floor_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7e66fd9e clk_regmap_mux_div_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8515663c clk_alpha_pll_regs -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x860b27ed qcom_cc_register_sleep_clk -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8b55eac4 clk_dyn_rcg_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 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 0x9dc41abb krait_div2_clk_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9e6c0ae7 clk_trion_pll_configure -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9f1bf2e0 clk_alpha_pll_trion_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9f241baa clk_rcg_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 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 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 -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc037091a krait_mux_clk_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 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 -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe816a036 clk_pll_configure_sr -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cb1ac5e comedi_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0f1bb2e8 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1603ca87 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1627e372 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x16bc96fb comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1a89b128 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2cd155cb comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f1efc2c comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x30bd4207 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3a7c7629 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x42eddacd comedi_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4b7c6eee comedi_timeout -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4ef53cb1 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5658bf13 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x67c8eb29 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x824640f4 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x886c14f9 comedi_event -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x91fdc177 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x98660964 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x990487bf comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9d8e2938 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9f0f1e8c comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa440f5bc comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xaa24f181 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xab459caf comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb4cad26 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc63d3ec3 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc7fd3db3 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcc6b6877 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd0c3dc27 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd3d3c8b9 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd52c52f2 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd54e4488 comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdcd78dbe comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe57cd8eb comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfa167e7f comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x1d46b4ee comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x1fd6aba8 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x6bcf31ff comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x9b56939c comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xdda60100 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe0f210e4 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe593dc6e comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xf6c56831 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x01367ed4 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x4c3edce1 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x61796889 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x78a6dcfd comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x9a79ce1e comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xdbdd3a8d comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x2735e929 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x29971128 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x92a7e353 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x1727315a amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x04f30212 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x163996e7 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x37a280a6 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x72c3b0b4 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x93b0a7ae comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa4fe8b1f comedi_8254_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xaa74c1aa comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xae0f5fa0 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xb4b3c961 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xbea68dd3 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe481cc92 comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe51bd426 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf2e5c6d7 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x1d5063e6 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x54505d25 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x7d611689 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0xfdaa97ff das08_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1317d6ed mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x160b1747 mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x190ce393 mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x322fca70 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x34f25a6b mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3ff79966 mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8304008c mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x83dabb27 mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x93457277 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9bb694b1 mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xbb08173f mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdf911016 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe7825df4 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf155d9c2 mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf4077a43 mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xfa2033af mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x2f412675 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xd2131343 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x85e75c94 ni_assign_device_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1ae9cbb7 ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2455724e ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x70c8fd26 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x782fcd10 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7cbbf91b ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8968d41b ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8bf4c469 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xaee52176 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb2edc558 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb7128218 ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd5e2f3b8 ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xdb0a0893 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xdb76a7e9 ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe32f40f7 ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xea0c4acd ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xed83c025 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x062ceb46 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x06e11210 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x30c07bee ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x32643c1f ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x70ea1c10 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x9481ecc0 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x0e0f5948 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x3488606c comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x5dd9926a comedi_dio_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x94e4ce0e comedi_open -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xb67fd99b comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xe18166dd comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xeec0e412 comedi_close -EXPORT_SYMBOL_GPL drivers/counter/counter 0x1e13d835 devm_counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0x248b9f74 counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0x7b8d6ac7 counter_register -EXPORT_SYMBOL_GPL drivers/crypto/omap-crypto 0x5c2673e4 omap_crypto_cleanup -EXPORT_SYMBOL_GPL drivers/crypto/omap-crypto 0xd9009a51 omap_crypto_align_sg -EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x057b20aa dev_dax_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xbcef07a5 dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xed51a340 dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0a231b99 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x15d766ad do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x2787233f idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x3fa79be3 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x69cb30cd dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa5377787 idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xbf31325f do_dw_dma_enable -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 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 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/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 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 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 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 0xa87019ec dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xaf400c4a dfl_fpga_port_ops_add -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 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/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 -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x30884be2 fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4aadadac fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x6c13f2d5 fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x6c618392 of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x82cf14b9 fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x8dd2e6a7 of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x93f23465 fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa372f62a fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xae12f1d2 devm_fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc055de4c fpga_bridge_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xd4df8015 fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf507c936 fpga_bridge_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x27004901 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x354ff75e fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3a5afc72 fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6c975a20 devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7d82c598 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8237c9db devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x85c181ce fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8b1cfc57 fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc452832d fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcdd9be48 fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe263b757 fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xef50836c fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf0f4e204 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf8ccc3c1 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x048dedd7 fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x06e294ff fpga_region_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x27c3b4f3 fpga_region_register -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 0x10b2100b fsi_master_unregister -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 0x60a97912 fsi_slave_write -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 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 -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x441e805b gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x8ff754e3 gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xb4602d13 gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xc89cd07b gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xe2b64093 gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x15c54f1c gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x252c3116 gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x25636dbd gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x52b3f8ba gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x9e6262de gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x5dcbe46c aspeed_gpio_copro_set_ops -EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x6049e780 aspeed_gpio_copro_release_gpio -EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0xaa5cfd97 aspeed_gpio_copro_grab_gpio -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x7a993e27 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x8ed25544 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x0bee9771 analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x160e78c0 analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3701ae45 analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x41ab63a9 analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x802aef07 analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xbba723b5 analogix_dp_stop_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xd734a582 analogix_dp_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe4978c9d anx_dp_aux_transfer -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 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 0x1461e227 dw_hdmi_set_channel_status -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x157e02b6 dw_hdmi_phy_reset -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2d1c0e80 dw_hdmi_setup_rx_sense -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x664854ed 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 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/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 -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x064c1061 drm_gem_shmem_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1890f6bb drm_of_component_match_add -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2bd0f310 drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2d84d766 drm_gem_cma_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2f0d80a8 drm_of_find_panel_or_bridge -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x33b95c76 drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x35d8f856 drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x432c2f5c drm_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x48abd7c6 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4f314d35 drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4fc314b8 drm_of_encoder_active_endpoint -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4ffea081 drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x53b18bc9 drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x54e7574d drm_gem_cma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5780bb68 drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5d5cbb03 drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x660e7900 drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x68fad4c1 drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6fd18147 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7124b9c2 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x718db828 drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x749b5654 drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x825329d3 drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x85dc621f drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa23851b2 drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb3bd17ed of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc737e9fa drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd327750a drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdb20f6d8 drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf22e740c drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf304c9f1 drmm_kstrdup -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf44a44f0 drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x0a7a5de5 dp_aux_dp_driver_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x157bf863 of_dp_aux_populate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x87859ae4 of_dp_aux_depopulate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xafac71d5 __dp_aux_dp_driver_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xcfc79ddd devm_of_dp_aux_populate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x08d1fbe4 drm_bridge_connector_disable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x11ba158b drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1b943b01 drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x33dbd20b drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3d677157 drm_fb_cma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3d7ab1b2 drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3da8a1dc drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3f8d8f1b drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x69138af4 drm_bridge_connector_enable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8629ed68 drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8dce1353 drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb0887409 drm_fb_cma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf71ad145 drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x73396a94 imx_drm_encoder_parse_of -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xeef51234 imx_drm_connector_destroy -EXPORT_SYMBOL_GPL drivers/gpu/drm/mcde/mcde_drm 0x7c27775e mcde_display_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x072a7a49 meson_vclk_dmt_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 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 0xc5ba3af2 meson_vclk_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xe251fe4b meson_venc_hdmi_mode_set -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xe519bf1c meson_vclk_vic_supported_freq -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_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 -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xf105de18 rcar_lvds_clk_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x897218bb rockchip_rgb_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xf32fd483 vop_component_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x02298241 ipu_csi_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x050f0d7b ipu_di_adjust_videomode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x060ce745 ipu_ic_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x07036df2 ipu_ic_calc_csc -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0728116a ipu_csi_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0d8867b9 ipu_smfc_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0d88a290 ipu_cpmem_set_resolution -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0d8efd7d ipu_cpmem_set_fmt -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0e42bd95 ipu_csi_set_dest -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x118160e1 ipu_ic_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x11e1e913 ipu_fsu_unlink -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x130d9c49 ipu_set_csi_src_mux -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x13952dfe ipu_dmfc_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x15ec2ba5 ipu_di_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1668bec1 ipu_dp_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x18730251 ipu_rot_mode_to_degrees -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x18aa0dcd ipu_image_convert_abort -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1b2a8b31 ipu_cpmem_skip_odd_chroma_rows -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1ba2e99b ipu_image_convert_sync -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1e913d9f ipu_csi_get_window -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2290a1a5 ipu_cpmem_get_burstsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2424c9a6 ipu_csi_is_interlaced -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2a9b7a24 ipu_fsu_link -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2a9fe718 ipu_idmac_select_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2cc1c488 ipu_cpmem_set_yuv_interleaved -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2cf7ed72 ipu_dc_init_sync -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2e825a67 ipu_smfc_set_watermark -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2ee5c2f0 ipu_di_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2f92d651 ipu_ic_task_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3020d65c ipu_prg_max_active_channels -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3166aec7 ipu_dmfc_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x33ca05e0 ipu_idmac_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x391945e3 ipu_cpmem_set_stride -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3d1c25c3 ipu_cpmem_set_image -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3d8f18f6 __ipu_ic_calc_csc -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3e86ea72 ipu_di_get_num -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x418a282f ipu_drm_fourcc_to_colorspace -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x42d3d500 ipu_image_convert_unprepare -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x485c4f91 ipu_idmac_get_current_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4917f47a ipu_ic_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x492a422d ipu_csi_set_mipi_datatype -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x498b4c7b ipu_image_convert_enum_format -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4c179b49 ipu_dp_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4f0da422 ipu_prg_channel_configure -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x51475e87 ipu_dmfc_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x51727c4c ipu_prg_present -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x527f3b94 ipu_smfc_set_burstsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5293295c ipu_idmac_channel_irq -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x53de277c ipu_di_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x55767280 ipu_vdi_set_motion -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x580d2f81 ipu_vdi_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5b0149c5 ipu_idmac_wait_busy -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5b15aea8 ipu_dp_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5cae270a ipu_vdi_unsetup -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5eb56e6b ipu_module_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5f778319 ipu_idmac_link -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x60bdf2ec ipu_csi_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x61b9bb5a ipu_cpmem_set_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x623722e2 ipu_ic_task_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x637b15b7 ipu_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x64cfa416 ipu_idmac_unlink -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x66fc619f ipu_idmac_set_double_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7068e939 ipu_dc_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x71868489 ipu_idmac_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x79d7a4df ipu_dc_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8497c7d4 ipu_degrees_to_rot_mode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x886c35aa ipu_smfc_map_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x89da8f8b ipu_prg_format_supported -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8a9458d2 ipu_image_convert_verify -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8d87be71 ipu_cpmem_set_high_priority -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8eb22643 ipu_dp_set_global_alpha -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x904482a1 ipu_srm_dp_update -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9058e289 ipu_smfc_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x91ce1a04 ipu_dp_set_window_pos -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x93faa259 ipu_idmac_clear_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x951a09d5 ipu_csi_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9588f916 ipu_cpmem_set_format_rgb -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9661fb1b ipu_prg_channel_configure_pending -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x97f08d2f ipu_ic_task_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9ab16495 ipu_idmac_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9b5959da ipu_cpmem_set_block_mode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9f38e177 ipu_dp_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa0a55513 ipu_idmac_lock_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa4b0cabd ipu_dc_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa60b144b ipu_csi_set_window -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa6daa1cb ipu_image_convert_queue -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa7c39ac9 ipu_dmfc_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa7dd52c1 ipu_image_convert_prepare -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa8adc101 ipu_pixelformat_to_colorspace -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa96882d8 ipu_ic_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa97c406d ipu_cpmem_zero -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa9e147cf ipu_cpmem_set_format_passthrough -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xab983713 ipu_cpmem_set_uv_offset -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xac2b69c1 ipu_idmac_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xadf1ca85 ipu_vdi_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb5fc11b9 ipu_cpmem_interlaced_scan -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb60677c2 ipu_image_convert -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb75b9fa6 ipu_map_irq -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb8f4ed8e ipu_idmac_enable_watermark -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb9af1ecc ipu_dc_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb9ea6823 ipu_dp_setup_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xba458b8f ipu_csi_set_test_generator -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbc7f5b01 ipu_cpmem_set_yuv_planar_full -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbccd2811 ipu_dp_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbf983ba6 ipu_vdi_set_field_order -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbfcf2a6d ipu_prg_channel_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc13e70a7 ipu_cpmem_set_rotation -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc3c2cdb0 ipu_smfc_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc4af2e81 ipu_dmfc_config_wait4eot -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc4b15642 ipu_csi_set_skip_smfc -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc603fac7 ipu_image_convert_adjust -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc6675aa9 ipu_csi_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc677177d ipu_smfc_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc77c83b8 ipu_module_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc97e7a0f ipu_di_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcab7d4ef ipu_prg_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcbea3eec ipu_di_init_sync_panel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcceda993 ipu_cpmem_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcd7fbaa4 ipu_ic_task_graphics_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xce3e0027 ipu_csi_init_interface -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd37d8a3e ipu_set_ic_src_mux -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd6d435ce ipu_prg_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd8f285f0 ipu_vdi_setup -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xdbae6dcb ipu_dc_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe6243c52 ipu_dc_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe6f53750 ipu_idmac_channel_busy -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xeb6e0c2f ipu_idmac_buffer_is_ready -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xece0791c ipu_cpmem_set_axi_id -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xeea12b31 ipu_vdi_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1440dc1 ipu_ic_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1abac7e ipu_csi_set_downsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf3273bf6 ipu_ic_task_idma_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf541df2d ipu_vdi_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfe1e193e ipu_cpmem_set_burstsize -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 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 -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x19c8e4e0 __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x26cabddc gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2a81f76f gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2cbca9cf gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x330c8eda gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x392a6ffc gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x41427f54 gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4180e5a8 gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x425acddb gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x439666e3 gb_connection_destroy -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x51821afb gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x535daeaf gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5c00a3ad gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x64c49133 gb_operation_unidirectional_timeout -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 -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7d592571 gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x801bc973 __traceiter_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x830e9d45 __traceiter_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x884398fa __traceiter_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8eb2ddef gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x92b5cb38 greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x94a722a5 __traceiter_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x953d0738 gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x98e1aa9c gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae385fc7 gb_connection_latency_tag_disable -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 -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc877aa65 __traceiter_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xca9eb876 gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xda8b83e0 __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xde519316 gb_operation_result -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeb4f918b __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 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 0xfb3de2dc gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -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 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 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 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 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/i2c-hid/i2c-hid 0x130cc94e i2c_hid_core_remove -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/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 -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2e23ecb1 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2e58609a hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3c025958 hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7105fd1a hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7283308e hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x78be00d2 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xaad4a302 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xba79188a hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc316e046 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd5fb9e1a hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xda155ae9 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe877f012 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf232a0e0 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf5e4ea1c hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf6c6a982 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x172b0087 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x7d717b54 adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xe061e59c adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x86366000 ltc2947_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x20716867 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x37437978 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x592a1061 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6cb26a50 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x749f9bfb intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7efece72 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7f46c9db intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa6802fd6 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb8b37d3e intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x1ee37963 intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x5630b9e6 intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xe8db0cc8 intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1953e3e3 stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3beec3e4 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x458b4460 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x80a9eab6 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x84c5730e stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa22223e9 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xccb60cdb stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe2d18f57 to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf52e2185 stm_register_protocol -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x147ed587 i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x644fb5ed i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xb9090352 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xfba6b61b i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x5d6da78c i2c_new_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xb740e02a i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xb9af6bc3 i2c_free_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xfa662a35 i2c_register_spd -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x121eaca8 i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x13f7c073 i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x16bd1ab6 i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x170e2908 i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x19149833 i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1cdd78df i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1ce313c2 i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1ffbcaab dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x45b0b32e i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x489b80fd i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5dec606b i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x676e546c i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x68a34dad i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x69a9f9f7 i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6ed4f473 i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x86e8336d i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8b652fd9 i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9035489c i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x985e8ab6 i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9acfd65d i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb44cffed i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbc2b3a91 i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc3901cb0 i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd2a6264f i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfd77bf2a i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x4cb7d071 adxl372_readable_noinc_reg -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xc3094f57 adxl372_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x08580b14 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x3d13594b bmc150_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x693503bd bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x782ffae5 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x1c018b27 bmi088_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x661ca5d1 bmi088_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x74a2c2f5 bmi088_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xd2afe56f bmi088_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x42f845b0 fxls8962af_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x76c2fe64 fxls8962af_spi_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xd022fbfb fxls8962af_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xd41c6aa1 fxls8962af_i2c_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x2cc387ef mma7455_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x836ed3ce mma7455_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xb9f5e7b0 mma7455_core_regmap -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xc5914437 ad7091r_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xda14eb69 ad7091r_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x343b1364 ad7606_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x8c5fde3c ad7606_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x191eed5c ad_sd_reset -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x309c0c62 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x49763b04 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7535459b ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x75534d35 devm_ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa7746747 ad_sd_calibrate -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd38c4f84 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xda221012 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf4426cb0 ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf580fa10 ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x06c1058d devm_adi_axi_adc_conv_register -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x87d23c6c adi_axi_adc_conv_priv -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xa47d89ed iio_channel_cb_get_iio_dev -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xa5607784 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xb1da1350 iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xfff2647d iio_channel_cb_set_buffer_watermark -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x09fc8a46 iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0d704985 iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x151d5705 iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x1583539e iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x258ba746 iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x2890ede0 iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x3981a63e iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4fa63807 iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5d94ec74 iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6ba823ee iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x9daaea84 iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xaaee2fe0 iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x04133cd9 devm_iio_dmaengine_buffer_setup -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xac291337 iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xee4f9c09 devm_iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xb48f0935 devm_iio_triggered_buffer_setup_ext -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 0x9971dac4 cros_ec_sensors_capture -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/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 -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x4db5be48 ad5686_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa6eb5965 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xc8ddd987 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xf6aca239 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x2f8d1d0b fxas21002c_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x7a4d7b0d fxas21002c_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xfeb9d471 fxas21002c_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xb60a4357 bmi160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x27dc79b9 fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x414be028 inv_icm42600_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xa4ee5b82 inv_icm42600_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xf061f6f5 inv_icm42600_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x3bcd5a47 inv_mpu_pmops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x8a235e35 inv_mpu_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x10f883d6 st_lsm9ds0_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x9d4dab2e st_lsm9ds0_remove -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x020cf6d4 iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x06769724 devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x08c29163 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0ab2bd0c iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0fa32c81 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x173ff25f iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x17503787 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x178812c0 iio_buffer_get -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 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 -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5633a4b4 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x57029b07 iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x593dd1e5 iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x59f7d310 iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5fab4668 iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x61aa9df0 iio_read_channel_processed_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6ccec1c4 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6f4315b8 iio_read_channel_raw -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 0x81256395 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8537e89b iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa4f30d0c iio_device_attach_buffer -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 -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbf8ad4e8 __devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc0573cf4 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb19ffbe iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xce2b9d9c iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd1fa5037 devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd264db40 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xda0dd855 iio_get_debugfs_dentry -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xddf348bb iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe094019b iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe65e7dc9 devm_of_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe86e306e iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe93b118b iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf7d49e2f iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf917ce5d iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf97f18b9 iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfb39f93e iio_device_id -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x4079a7c3 rm3100_common_probe -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table -EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0x1173c53e mpl115_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x0cf86059 zpa2326_remove -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x307dd86e zpa2326_isreg_writeable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x44ca5a9d zpa2326_isreg_precious -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 0x041d7eda rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2701d37f rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3516577c rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x57d3ca65 rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6b6edc04 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6be2eac6 rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9672da07 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb675c005 rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd609b4d9 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xda865667 rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf07ae582 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf511d512 rtrs_iu_post_rdma_write_imm -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 -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x21a0c650 rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2c04ec45 __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2d13568f rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x30389274 rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x746c041d rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8947f004 rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9b9e91b0 rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9dc0885b rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb93f8ca7 rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbca9499d rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc3b6eb50 rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd1e3b1e9 rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd85dd563 rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x2372c116 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x652fec9e cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xd15bdb69 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x473ee99c cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xebc76a44 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xd62c3e97 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xfdd660cd cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x2b796638 tsc200x_remove -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/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 0x33425d10 qcom_icc_pre_aggregate -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 -EXPORT_SYMBOL_GPL drivers/iommu/iova 0x1c277593 free_iova_fast -EXPORT_SYMBOL_GPL drivers/iommu/iova 0x2dfd9690 reserve_iova -EXPORT_SYMBOL_GPL drivers/iommu/iova 0x3df3928c __free_iova -EXPORT_SYMBOL_GPL drivers/iommu/iova 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL drivers/iommu/iova 0x6b8f8617 free_iova -EXPORT_SYMBOL_GPL drivers/iommu/iova 0x7497e72c init_iova_domain -EXPORT_SYMBOL_GPL drivers/iommu/iova 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL drivers/iommu/iova 0xcb8c4eb0 alloc_iova -EXPORT_SYMBOL_GPL drivers/iommu/iova 0xe2908238 find_iova -EXPORT_SYMBOL_GPL drivers/iommu/iova 0xfb845e71 alloc_iova_fast -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1f82a497 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2b48da43 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x36853263 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5403f716 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x62621dc7 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7af745aa ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x92c2d02b ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9a9304e6 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xea37f7c6 ipack_device_init -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x10c18161 devm_led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4af9a783 devm_led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x63a976cd led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb857e0ef led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xcfd819fb led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd79fcb55 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd8206408 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xffd7f131 led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x1f720556 devm_led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x77bff54a led_mc_calc_color_components -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x837580a7 led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xb08dd98d devm_led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xc7b0c041 led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x55041999 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x61b66f72 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x82e2abf4 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x899bf730 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x91f58297 lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb09d4922 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb6881b84 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc32db29f lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd33d0221 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd5e3aaf9 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 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 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 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 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 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 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 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 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 0x82fa505e __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ae53615 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8f8604ba __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92662b95 __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 -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 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 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 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda554237 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdba23768 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16c06b3 __SCK__tp_func_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe754d114 __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 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/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 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x657fc6c3 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 0x68b6844f dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6e19ede7 dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6e603bc5 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8b7da117 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x949d236c dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9ced570d dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xaf2404ad dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xaff8bd9e dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb1c7b9db dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb9d75dca dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbcf25c6f dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc0ad5489 dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc841337f dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfd25fd70 dm_bio_detain -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 0xa8b666a2 dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb04f56ab dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb2438d54 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new -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 0x03bb93e0 dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5686b041 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5730f8ae dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5b3dc349 dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8f647e48 dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x90136207 dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xd64cf734 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xba27314e dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xff6ba169 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 0x1068cbe5 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x22506b02 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3ad26313 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4470b372 dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4de505f4 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 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 0xaceb34a4 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 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 0x29c25d50 dm_bm_write_lock_zero -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 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 0x46af8087 dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x46eff63a dm_sm_disk_open -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock -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 0x64976f82 dm_tm_shadow_block -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 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 0x7bc7621f dm_btree_cursor_end -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7e29c59d dm_bitset_clear_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x807c17a2 dm_sm_disk_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 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 0x8a56150c dm_tm_read_lock -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 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 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 0xa433adbc dm_bm_write_lock -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 0xcd28942d dm_tm_create_with_sm -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 0xe41c4f79 dm_tm_open_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 0xf3e25192 dm_bm_checksum -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf82dba90 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfce51d79 dm_array_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xfde8ecd6 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x064d61a7 cec_s_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x10346c33 cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1710b562 cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x19788d1f cec_unregister_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x20efb5f6 cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2d710a99 cec_register_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3bdb3b50 cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4dc49152 cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x575ed4ae cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6097de34 cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x69e781b1 cec_s_conn_info -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6e9cff61 cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x78471441 cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8676f84c cec_transmit_msg -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x86b63c13 cec_notifier_conn_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x89492170 cec_received_msg_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9d14c6e1 cec_s_log_addrs -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe268de97 cec_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf3adc9d7 cec_transmit_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfa76f87d cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0dff544c saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1a9a95c5 saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x38f3ffde saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6040bd1b saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x927a964c saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb3fbc2cd saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd45a9e2e saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd4aa4575 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd9c5567e saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xea030f31 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x13a8cf3a saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x31769d97 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5a805c12 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x83a6f0a6 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd6b46522 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd9487f01 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xfd74aaff saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x00d0173e smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x07d816e5 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0dbb75ae smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x10767023 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x12661a54 sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x24c6868b sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3e946b6e smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45cd63c5 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x50f3e265 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x52574064 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x53dfbe89 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x59ab66bf smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb76b4a11 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc53b5516 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc89570a4 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcdad53c7 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf6f511ea sms_board_lna_control -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 0x07729fd4 __SCK__tp_func_vb2_buf_queue -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 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 -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x56415a7d vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5bc6fe34 vb2_core_dqbuf -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 0x8d8f7cfd __tracepoint_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 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 -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf51384bf vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf6ef5b05 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf71d6da0 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf73e8a8b vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfc59d416 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x26e67097 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xc94f206f vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x5632ff72 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xef83b467 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1354d1fa vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x16a7a8d0 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x196bba92 vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1ff031bc vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x28123890 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2d9ede94 vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4f4a62f7 vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4f4de1ed vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4ff4a9bc vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x574d3481 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x652e90fa vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7096f600 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x70c46d31 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x73537cc3 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8207965a vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x834c7c57 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x93fc260c vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x99d17036 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9f44b35e vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa4d900e5 vb2_find_timestamp -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xab8f2b03 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb0e8f702 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc28661be vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc43f30f9 vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc833f04d vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcc332379 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xceff4d45 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdf3a3306 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe145456a vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe4170850 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xef7df747 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf5d734bd vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfb2dba15 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfc81817d vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0xc78058d2 vb2_vmalloc_memops -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 -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x341759a7 max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3e031932 max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x403b1cfd max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x4aed22d0 max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x57597461 max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x684d14a7 max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7d6fb127 max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x85bbb12d max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xbeab36d7 max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc5cb3b0f max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe215e4ff max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf72c7313 max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x00ef91de media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x06eeb6af media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x07565282 media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x13666870 __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1552e5e3 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x28f6f05d media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2a5964cb media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2a8b2fcc media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2f0e656d media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x37ae09a9 media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3d783fb3 media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x51cf8ac1 media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5245b50e media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x52cc15f4 __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x562305d4 media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5857e0d2 __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x593e832c __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x636c81b3 media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x63c36b0e media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6d017286 media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x74e19d2f media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x780888d1 media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7d74e578 media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7e4637e1 __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x82921852 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8c243811 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8e2c263b media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x92e64381 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x95fe0149 media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x96d3d97f __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa0111f9e media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa25bbade media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa59934ab media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaa888641 media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xabd22148 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xac0ac30c media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb5498db6 __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb9364836 media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb9c625aa media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xba9a1dd9 media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc07b0867 media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc749ce54 media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcc7a4b89 media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd5ad2222 media_remove_intf_links -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/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 0xb7585e8b 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 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/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/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/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 0x97e8929f rcar_fcp_get_device -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x9877c29f rcar_fcp_get -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x0202a5a1 vsp1_du_atomic_update -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x1cc8e995 vsp1_du_map_sg -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xa1e00346 vsp1_du_atomic_flush -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xc042a208 vsp1_du_atomic_begin -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xe36f402e vsp1_du_unmap_sg -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xe3b1ce26 vsp1_du_setup_lif -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xfb4bb53a vsp1_du_init -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x03cb4272 xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0eeca680 xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x1a79eb17 xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x510b0ac4 xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xaa9843d0 xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xaf67d691 xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb9d01b6a xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-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 0x980e7ce3 xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x2628c830 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x4acd797a radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x4fb88a24 si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x9d63016c si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x9fde2d66 si470x_start -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xb9f29c72 si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xf77b2346 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x07ebdf07 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0d189b47 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0d316b97 lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x25bbfddb ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x25f4fc18 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x26fda32b rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x28af3c3f rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3216de19 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x541df1fa rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x60679097 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6bdb270f rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7699f7a6 devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9caab5ba rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9d51486d ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaa305aa5 rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc000903c devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcd5189df ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdb6e5dd3 ir_raw_event_store_with_timeout -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 -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xdc5d9112 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xe61eaa2c tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x4f43bab1 tea5761_attach -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 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2a48116b cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2a6d54a9 cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x360c29c9 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x499e277c cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4b429910 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5af7a5b6 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5f6b5dca cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x70742a0f cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x71c6741e cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x875038c2 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9ae07ca9 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9c51bebb cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaff72a1f cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbb8978cf is_fw_load -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/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 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x26dcab38 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2b611789 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x327cd5af em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3c42751e em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3ec5de11 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x53651f40 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x728e2010 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8e8e479e em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb369b7d5 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb4190d21 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb489d72e em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcac7b77f em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd4088c3c em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf168ddae em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf9d66959 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x124aec65 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x6385b81c tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xcb0392c7 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xfeb560c9 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x06e205ae v4l2_async_notifier_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xc134817a __v4l2_async_notifier_add_fwnode_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xcbc10bbb __v4l2_async_notifier_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xe5ff1d11 __v4l2_async_notifier_add_fwnode_remote_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xecab2395 __v4l2_async_notifier_add_i2c_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr -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-flash-led-class 0x467e8f9a v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x519e7a23 v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x8cc5c42a v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x1af25f50 v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2143a423 v4l2_async_register_subdev_sensor -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3e273f88 v4l2_fwnode_device_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x60dec94b v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x6b31c34f v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa884f9bb v4l2_async_notifier_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd44cd755 v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xdb04c4ff v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xe27b074c v4l2_fwnode_connector_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xfb182b07 v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x2c620a2d v4l2_h264_build_p_ref_list -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x4b224860 v4l2_h264_init_reflist_builder -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x5150f937 v4l2_h264_build_b_ref_lists -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0e44cebd v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1139957f v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x161644ca v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1af5afda v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1b48f7c5 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x20961e69 v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x295acc18 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2e0ebe6c v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x383f93f5 v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3a234e03 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3ee8fc81 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4a5cc1e9 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4f9d6d48 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x559ebb4a v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5c6893d9 v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x633b0c5b v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x688135dd v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6cb19ade v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6dccabde v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6ebed38e v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x79f3984e v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7b3a5cc9 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7b4a92f6 v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7e03372a v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x830dcf1d v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x84829faf v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x85f8c2e7 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x88224b2e v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8999dcd6 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8ca558b9 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8d019db2 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x930b74e7 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9654f026 v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9a26a453 v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xba210d89 v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbd8f1ae2 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc04be8a0 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd95f7fbb v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe357132c v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeb46c22c v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf2578da9 v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf2eacc48 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf8771163 v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfb0aa2f0 v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0bb63def videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1265d6ac videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x15ac878f videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1739bca8 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x19b9b6be videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x239f1912 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3cec93a0 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x581e2dd2 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x59a504c7 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5a01903f videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x77358a77 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8480db2c videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8606937e videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa0ac2810 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc125aa5b videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc2204f76 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xca912743 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcdaa3393 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xce99d48b videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd0aabab6 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xda6918b5 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeb5efd33 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf3540bb0 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfc27a9d7 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x39a6c86b videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x96265c52 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa6364a2e videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xb682bdcd videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x241003e4 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xa5ec6222 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xecd20c1e videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x06b62033 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0732c26f v4l2_subdev_alloc_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1350f977 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x248910e5 v4l2_pipeline_link_notify -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28a75716 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ed9acd3 __tracepoint_vb2_v4l2_dqbuf -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 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 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6109c6ab v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x648b0d45 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x659837ad __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x66c7ef83 v4l2_pipeline_pm_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6876d050 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6b691b4a v4l2_event_wake_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6c989406 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6f5ed23a __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 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 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 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x84f2b7be v4l_disable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x85198368 v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x91d711dc v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9b39455a v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa4acec6e v4l2_pipeline_pm_get -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 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbcc37b7f v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbe4aecee v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc153ca93 v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc7c712c7 v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8a5bda1 v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xccd9ad80 v4l2_subdev_get_fwnode_pad_1_to_1 -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 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 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 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfa84dc74 v4l_vb2q_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfb4dbaa1 v4l2_create_fwnode_links_to_pad -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfc605ce9 __v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff76573f __v4l2_find_nearest_size -EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0x25cf6823 mtk_smi_larb_get -EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0x8a9f2c74 mtk_smi_larb_put -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x35c7d12b pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x4690150f pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x86ef87ba pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1ecd2d75 cs47l24_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x25285eb1 wm5110_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 0x40bb44e8 arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x41761756 arizona_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4493bf53 arizona_clk32k_disable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x651de1b8 arizona_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x66109ffd wm5110_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x72ca3b5b arizona_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x81df6736 arizona_request_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x872f6676 arizona_clk32k_enable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9b43cbc0 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 0xc5ae34ae arizona_set_irq_wake -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc989dc78 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xcd11bfcd wm8997_patch -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/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 -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x92eafdd7 da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xac7dd6a2 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xaee0754c da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb73df833 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xa142a524 gsc_read -EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xb7abd1c4 gsc_write -EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0a19c0a3 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1f84e00b kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x31cd94e9 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6636b083 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6e7b4ffb kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb153b200 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xca9911d4 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf0f60b80 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x078623d8 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x23bb8cf0 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xa2db01c6 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x16fd301b lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2b29ce3d lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x423ac67a lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x94bb334a lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x99bbd140 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa7a9b029 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xcddbf26e lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x83423d5b lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xa65c180e lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xebc18b7c lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1ab3c850 cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1abe1410 cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1f2c61b0 cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x25d9a933 madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x55b80250 madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x587bc911 cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5986d55c cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x598b091c cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8e6388a5 cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8e6e54e5 cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x93457f90 cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9348a3d0 cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9b283163 madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa137e4e8 cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa13a38a8 cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb9e29358 cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb9ef4f18 cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcc144c77 cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcd5695a9 cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcd5b49e9 cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd070629c cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd07dbedc cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd9f6095a cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe202f9e4 cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe20f25a4 cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfad78e54 cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfada5214 cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xffc2caa3 cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x052596bf mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x250078b8 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x4d7aa232 mc13xxx_adc_do_conversion -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/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/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/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 -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x3a0ba6df ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x1241f043 alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x24e6e3d1 alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x6dcb756b alcor_write32be -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_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 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x76c53f49 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7aace535 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x93ac6c76 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb3c1f805 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xce6265d0 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd2fd234c rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd99c9207 rtsx_usb_write_ppbuf -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 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 -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x4b711f77 oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x5909e701 oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x780d3f01 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x84eba96d oslec_free -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 0x313abc33 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x762370ea enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x783050db enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x81317e28 enclosure_for_each_device -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/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/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 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/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 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 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/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 -EXPORT_SYMBOL_GPL drivers/most/most_core 0x67a26fc0 most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0x748a76a1 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0x907688b4 most_get_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x94349f56 most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa1e396fc channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa66929a8 most_put_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xd421cd35 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0xe5e21aa9 most_deregister_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0xfaa8847f most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xfe085400 most_stop_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0xff749b54 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x09c87d1f cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x36e158f7 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xf4d65889 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x165cefeb cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x680ea43b cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xe5a5206d cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x879b896c cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x107639fc cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x2995d736 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x62cc8921 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xa8f89b9c hyperbus_unregister_device -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 0x91110a96 brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xdb600e38 brcmnand_pm_ops -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 -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xa93b2790 spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0da6a18d ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x53963d97 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x810bfb7f ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9ae26137 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa61c3f20 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc3a451e1 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc7dad78a ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd8ab6232 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdbe75a9c ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdd2e7ae8 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xde851760 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xeaf33b87 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xec3802b1 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf4d18f0b ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x04ed1056 mux_control_states -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0fe96990 mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x203720d5 mux_chip_free -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x417929cb devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5569ee14 mux_control_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5d5db81b mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6ef249b8 mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x90063ed7 devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x9a847bb9 devm_mux_chip_register -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 0x8dca3220 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xf7a2ea63 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/bareudp 0x2c52257d 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/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 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 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/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 0x35b5ea71 lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2e9837c4 ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2e9e50d1 ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x482a9bd2 ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x614580c8 ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x649a2764 ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7231b3b6 ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x852be7d3 ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x933cb852 ksz_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xabbf9962 ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb26f7104 ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbb9c4a9c ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd6ccc276 ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd6d4a465 ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xfd53a527 ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x16f8eebf rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x3f404413 rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4897e15b rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4c46df2c rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x568eb689 rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x6b3103db rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x7f5d272a rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xae72b340 rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc5f47985 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xcfc1a9c2 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xdd6d02c9 realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe5f9e0ee rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xec986f69 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xee1b9df7 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xfa5e107e rtl8366_enable_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/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 0x9a4ca501 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xbd17db7e i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x2fe9cf42 ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x3f718fa8 ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x7f79fbb5 ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x8f7246db ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xafd6d882 ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00ecae50 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x018b7d8a mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x043933a3 mlx4_set_vf_mac -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 0x12a3037b mlx4_set_vf_rate -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 0x139719dd mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1870748e __mlx4_cmd -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 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 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 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 0x25c9f6ff mlx4_get_slave_default_vlan -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 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 0x374b9ed1 mlx4_alloc_cmd_mailbox -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 0x3b234de2 mlx4_phys_to_slaves_pport -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 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 0x4e2b019e mlx4_get_vf_stats -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 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 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 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 0x7cd35cf8 mlx4_vf_get_enable_smi_admin -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 0x830a423a mlx4_get_counter_stats -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 0x876fc602 mlx4_set_vf_spoofchk -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 0x91843a1f mlx4_slave_convert_port -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 0xa687ec8f mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6ddf6d4 mlx4_free_cmd_mailbox -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 0xb8e2359a mlx4_set_vf_vlan -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 0xd0950eb4 mlx4_get_vf_config -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 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 0xded4e4f5 mlx4_phys_to_slave_port -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 0xe51dd032 mlx4_vf_set_enable_smi_admin -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 0xf45a4850 mlx4_set_vf_link_state -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 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/mlx5/core/mlx5_core 0x0347d43f mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04a6509a mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x059eca23 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09117644 mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09df4cc3 mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0da90d42 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1155e1fa mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fa9ac0f mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3042282e mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33505b00 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x359fb5da mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x377f91ed mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f79aaa7 mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42dae5b3 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48989548 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49609779 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a263b69 mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ea21f31 mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5148e28d mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x520f14a8 mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5744a340 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b3afae5 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c3368a7 mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60937a4c mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62845a7d mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64188321 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66d47b73 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68c22508 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x692d6714 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6aa93215 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b669e48 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cefe8a0 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72446227 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77687256 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79a89987 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7aaefdde mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8105f443 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84d37998 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x852c01ce mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85701fac mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8acfc916 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e97abd9 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x906d62f5 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94734159 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9657e78f mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a675fbc mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e474502 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f1fc4ae mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1817213 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2ff9065 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa505987f mlx5_frag_buf_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 0xa864d84a mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8e7e040 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac161e65 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1ee24ca mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfc42699 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc26792c9 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc684cf67 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc79a06c5 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd02b3be1 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd50733a7 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd71f5668 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf7c285e mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe446afaf mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe85ba115 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed730967 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeebc0a46 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3787bf6 mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3be6cfa mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfca4a1fb mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcd0df59 mlx5_query_nic_vport_mac_list -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/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 0x163651b4 ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x18e5a67e __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x27adb61d ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x641789c4 ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68acde28 ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x718f8be2 ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8250e110 __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa72a2d29 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb6a62522 ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbbf6f62a ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbd0d6d5a ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd3527c4b ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd864ff33 __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x0b28a9ad qcafrm_create_footer -EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x2b6ddf3f qcafrm_fsm_decode -EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x41da0375 qcafrm_create_header -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 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 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 0xaa15226b geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x0fbf2985 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x884b5ba6 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x985f3d5f ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb3830118 ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xf5c3682e ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/macsec 0x90bd45f8 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5c69b80f macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xa17051a2 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb08e5659 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe85e6d22 macvlan_link_register -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/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 -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/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 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 0x3d54f018 phylink_mii_c22_pcs_config -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x64feb126 phylink_connect_phy -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 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 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 0x2db3c394 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 0x07a756b8 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x20836dcb vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x28f7c1c3 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x99312ca4 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xceb5b81f libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64dd71f8 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b023561 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb9b967c il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd75a2e8d il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd922f008 il_mac_tx_last_beacon -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/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 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 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 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 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 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 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 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 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 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 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 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 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 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 0x126a5493 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x13b80931 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x24019c1e p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x4c2c55c1 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7103d5fe p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x77706705 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x878c5f2d p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xcbb21aa6 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf6eac119 p54_unregister_common -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/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 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 0x092ea990 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x2b9942f2 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x2c87f021 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6146348f __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xb7c95042 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xd1d0ba79 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xedfad3ad lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xfb651bde lbtf_remove_card -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/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 0x0712c69d mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x09374759 mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0f0280a4 mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0f7d1aee mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x180c2427 mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1d8b0146 mt76_get_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x21b53d7c mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2bdef749 mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x312f3597 mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x35fc648c mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x384a08c3 mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4001e3e1 __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x40d5819b mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41387653 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x415c607d mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41c47c7d mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4741d410 mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x480deaa3 __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x486fb347 mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d5bb0c8 __tracepoint_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4dea1f46 mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4e04dce5 mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5454479f mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x54a838ce __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x596c75e0 mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x59b523f6 mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5a886ac6 mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5e409d71 __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5fda2eed mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x62924a0d __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x681a2857 mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x69aa1493 mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6d231104 mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6f3c6074 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x712cc8a4 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x74618c5a mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x74e8b555 mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x77147321 mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x771e4b07 mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x78b02bff mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7901e867 ____mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x793686b1 mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7f828990 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x854be0fe mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8777eb5d mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x88f15cf8 mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x88fc793b mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8ba49f9f mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8babc984 mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9576081d mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a5471af mt76_sar_capa -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa126627e mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa4c0de34 mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa5b6d8eb mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa6b2d04d mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa78e1bba mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaa00d23e mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xac742a35 mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb13cb42b __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb6bdd579 mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb99da35d mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbaa9abc7 mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbcd52192 mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbd0b0b59 mt76_mcu_send_firmware -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 0xcdf5bf9b mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd2bce9f7 mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xda0e8797 mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb751b4f mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdcf1d48f mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdd54aae6 mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdec8e69e mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdf5e57c6 mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdfc5dd42 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 0xe487da26 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe91c2916 mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xee4d22d9 mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf7d354fb mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf7eae493 mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfb2c364e mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfb4a0bf9 mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x04792fe5 mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0854cef4 mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x134e74a8 mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x14303673 mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x18579de5 mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1a1978fe mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1efe2ec1 mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x22d18fab mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2356fea3 mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2476cb9a mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2cde12a8 mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x344806e6 mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x349f0804 mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3d15fe99 mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3e2221c2 mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x43d1f434 mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x45431741 mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4582ca91 mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4a1dbbd8 mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5fc958de mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x637150a8 mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x63c1d244 mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x63fd6440 mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6e6c461e mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x709fa366 mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x784fd4fd mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7aec46db mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7e93ab0a mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7f503b0d mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x87e8f580 mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8e2556cc mt76_connac_mcu_init_download -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 0x9caa386d mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaeccb4c3 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb2b8b31f mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb450cc8c mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbaf24fd2 mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcc934d2d mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd507eae3 mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdadba742 mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe836db2a mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf0bca0b6 mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf7eecb7c mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfaf2e562 mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x0e8970f2 mt76s_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x513c3572 mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x6cc54881 mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x19f43d5b mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x1ababf68 mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x69a3fb80 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x87a87c95 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb4448700 mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xcc781308 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xdf10a4e1 mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xef9ec6ed mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf534506c mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x005cafd5 mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x009cea48 mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x063a13b6 mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0e3487f4 mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0e977b3a mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1105e75a mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1590906f mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1c7daa52 mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1f2f0861 mt7615_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x25c58355 mt7615_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x317908dc mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x332ed8f9 mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3ad52fef mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4ca0d4e0 mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4d51b5a1 mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x566ac1c7 mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5ee68c3b __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5f3c5b4e mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7732d19f mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x95fd4f92 mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9db21471 mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbb753615 mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbda458bc mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd046eee0 mt7615_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd4127af3 mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xda370306 mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdbd38810 mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe418eb51 mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xeb8d6f17 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x505e28a6 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 0x25ad0e9f mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x596f2697 mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xb2db7a86 mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xc5039e89 mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x01cf8dd3 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x33be398b mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x84cb400a mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x9d6dff32 mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xaa6cfcf1 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xcd9019ae mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x00ecb0c0 mt76x02_edcca_init -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 0x0a690f80 mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0a8e1ae9 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 0x0ebd04b4 mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1424868e mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1e4e8f5c mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x20502a72 mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x20ae6742 mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x249ba7f9 mt76x02_mcu_calibrate -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 0x35fd3490 mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3caccea2 mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3e62ae6b mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x401fede0 mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4449816b mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x445fd718 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4a1be0ff mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4e3d01e2 mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x53b1caf3 mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x567694cb mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5689c0e0 mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x59d9471b 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 0x60ee66a1 mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x64a6bb21 mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6be800a5 mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x70494c7b mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7271b667 mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x77c4dea0 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x793c1f27 mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7b6605a2 mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7f5e6f78 mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x86e51700 mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8d843bfa 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 0x933ce21d mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x938883b0 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x987e65d5 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x99b9c81e mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9a8e6255 mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9db74bf8 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa07af3c1 mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa85b283a mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa8cad920 mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaf8f8d5d mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb8cd9a96 mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb9bf83d8 mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbef2b5b8 mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc8626656 mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xce02b162 mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcec2ae1f mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcfd8c4b0 mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd04edff3 mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd7b11cdb mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xda1eaa38 mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xda4707e8 mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdb358c53 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdf00cc5c mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe101e3b3 mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe4e97db8 mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe98b34b0 mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xea172d9e mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xebd6df1b mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xebf96649 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xec84acb1 mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf4582a0f mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf73505dd mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfc832460 mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xffb1c8f8 mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x0e34243c mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x1702a0ee mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x27d6a7c2 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x3c0aef86 mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x453cfcd9 mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x56c6acdd mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x57c0557b mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xbed46e89 mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1e0cadec mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1e34df5b mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x223f7c74 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x36f27ab2 mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3c2150f6 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4745c84d mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4bf2cfcd mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x51b62173 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5794b981 mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x58152013 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5df11d68 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5e2e89a2 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x70d82c3a mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x71da9472 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xab62fb7f mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb84072f0 mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc35ebe9f mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc72cbdba mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd52130a0 mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x0554582e wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x063ee28a wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7bb38464 chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x9d482430 chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa3f3375f host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb093a2f7 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/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 0x0304110d rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x07a9b16b rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0890da40 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0c55817f rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x13821933 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1723bd8c rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1f92bd4b rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1fd0166c rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x27caa55f rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2ed1cd37 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x33613545 rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3667d35f rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4cbb9140 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4da1a7d2 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x508c01e7 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x642b43de rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6709ad27 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6b5ab04e rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6bd54e04 rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6f9755df rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x72ecb63d rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7303373c rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7670a3be rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x786fda5e rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x86b613f0 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8bb21b7a rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8f3daca6 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x948db001 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa4d872bd rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xad24373b rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xadc152fd rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc2d4e2f5 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcc6fd91e rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd1261dc3 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd95865fc rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd95ba289 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdb204ada rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe1689e45 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe44ecfd9 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe4dd1975 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xee9123f5 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfc125376 rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfd5a161d rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xffecb7cc rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0123317e rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x303d7e9a rt2800mmio_kick_queue -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 0x3d7d3a8d rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x41e16190 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 0x55991fcb rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5d16cb71 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6f5ee23b rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8703a3b6 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x95ed762a rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x98304430 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 0xb2034f8b rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd3d336a9 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xda677922 rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe177bb0d rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe69ad32b rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf85a7871 rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x05f6b592 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x084eb4cb rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x10d403e1 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x17895431 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1a2d636d rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1f55249b rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1f5f3711 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x212fdba5 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x251ff9ff rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x29e1f871 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3262083b rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x34c8ed36 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3b43ceaa rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3f9fffc7 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4707f040 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5118b339 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x51274024 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x51986840 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x53f11c08 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x57a850ea rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x60b152de rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x61d99646 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x68ee7004 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x695428b1 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6a2e2054 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6a33f319 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x724903cf rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x75dcc7ed rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7ec897e6 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x836b186c rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8bdd30cf rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8df2eb8c rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa781c78e rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa78c4203 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb269219d rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb26da547 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb714bf60 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcc0fa86a rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xce30e512 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcfa978a7 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd04dffdd rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xde7f4ea0 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe0948550 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe52890f2 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe53b512a rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf81834ca rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfb6b6a2e rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x05a94208 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x1b042c00 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x4df28688 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x7f1d1c88 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xce720d23 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x77614287 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x9c2be1c0 rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xc385ad76 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x14e6b7f6 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1f3e72e2 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x342f9823 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x384d9daa rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x530d14f4 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5651b3b9 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5a88915e rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6adb0a68 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8739ebfc rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa53c696b rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbd59a079 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbdfc24a5 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xcaba98dd rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdb46f00c rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf6c93c6e rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf713bbf9 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4c66e99b dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4dd51fb7 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7dbee3ae dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x85c03856 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x080ee125 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x113ac25e rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x37429d83 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f8b2dd5 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f9b7b08 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4553487c rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4c52412a rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5af1460d rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5b1c62c9 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6cabfbc2 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x76cfd592 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7c1dac63 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x801c8c32 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x93ff4ea1 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9ae2ddcf rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9c37fcae rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa0ccc8e2 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa1000e03 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbc8e6e00 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcccf6d38 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd5c472a6 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xda53d8e6 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe0a37f49 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf1c0c5fb rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf6f5eac8 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x080fa61c rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x147c120a rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x167e07c5 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1862e7b3 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1a61b448 rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x22e47aaf rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x29b96918 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 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 0x4503cae2 rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4d806f51 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5b61fc30 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5d570951 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6f06e16c rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x734aa36f rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7419529e rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9606fc1d rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x99124ef6 rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa4063d9e rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa612f847 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad332386 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb516aa6f rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc1db2f0f read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc49d4bfd rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc875a45f rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc9178ce3 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd3ecafcb rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe1cd76f3 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x4ad85b74 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8b464319 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x9b413b95 rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc29483fd rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf587248b rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x12a4efec cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x7fee4f63 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x923e7847 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xcf62eac4 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x113f9f06 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x84b91a14 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x86373a14 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0fd2d21e wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1381ad25 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x195d31ac wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x27d49567 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x290da47b wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x29c327f6 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3212bdec wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x33534e76 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x360fc5e9 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3bdebd5b wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3fe4b5ba wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x42059cc2 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4a00043e wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4a40de2e wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x58457652 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5a99fa12 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5ac3f38f wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x698dbc69 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6f68a2ce wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7432da8b wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77dffd87 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x867f8fb7 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d267fa6 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9076c03c wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa2b16c7b wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa4480a65 wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa782249f wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb08a16ad wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb82ca189 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb83787e1 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbe9ddc2e wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc10dc181 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc17821d6 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc1db71fa wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd384d62e wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd9e73253 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe1460c49 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe257ce6e wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe27caad3 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe2e06977 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe68dbe2f wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe748d0fd wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf61f77ae wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf8d5cddc wlcore_cmd_wait_for_event_or_timeout -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 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/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 -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8e750464 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9fb80bd4 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb1a1b290 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc868f9c6 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xdddcf34f st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x05db371e st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x1fcc7dac st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x581d355c st95hf_spi_recv_response -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x2dbd955e ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x79c5b9b1 ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x8dce51dc 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 0x80f3167c virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x821ad414 async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x00e6c14c __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0268ba5f nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0299f50f nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x03fdd967 nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0409bf1a nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0421e3d2 nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x06b388fe nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1189306a nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x13dbadac nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1d81bac8 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2cc000c0 nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3320d6c0 nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3b0175c6 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x46876b6a nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x52fc9cf1 nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5b4f3914 nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5b79b554 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5e411c06 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5f985374 nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x63c6941c nvme_fail_nonready_command -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 0x689ef1b2 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6aa822fc nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6bc3e69f nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7c61820b nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8ab19397 nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x99510d37 nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x99eed600 nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9c7beb0f nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9f5b781b nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb0be74fa nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb87eec8c nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb96ffc73 nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbbb12b53 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcc6a407d nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcd1760f1 nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd03a0a9d nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd07ea3f0 nvme_set_queue_count -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 0xdcafb566 __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xde350565 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe1f8682e nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf17706c4 nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfb7c76d3 nvme_start_ctrl -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 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1a301d06 nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2ff6c996 nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6d1ae297 nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa51e9186 nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xaa8e0181 nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xac8ef89b nvmf_connect_admin_queue -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 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 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 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 -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 0xa4269942 nvmet_fc_register_targetport -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x4d980c10 switchtec_class -EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x0195d78a omap_control_phy_power -EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0xb8ad917c omap_control_usb_set_mode -EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0xd79012c1 omap_control_pcie_pcs -EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator -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 0x443170db cros_ec_sensorhub_register_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xbcb7059c 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 -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x5254992b devm_reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x73431bd0 reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x931c4985 reboot_mode_unregister -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/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 -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x618ff4b8 ptp_qoriq_init -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x9314e617 ptp_qoriq_enable -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 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/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 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 -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x244d8eaa scp_ipi_register -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x3fc40aaf scp_ipi_send -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xbd5766a6 scp_ipi_lock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xcd22f0cc scp_ipi_unlock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xeacc1b8b scp_ipi_unregister -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x12b52c7e qcom_remove_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x1ee1dfc5 qcom_minidump -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x4a7b916d qcom_remove_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x5deef05d qcom_add_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x6e84c795 qcom_register_dump_segments -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xbc0d58d5 qcom_add_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xc4b8c9e2 qcom_remove_smd_subdev -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 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/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 0x0044e234 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x047c9264 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0f9e15ca cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x19ed8a9c cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1ecfa000 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x21172524 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2367f2a6 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x27069dbb cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2e560fbc cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x35e01aa9 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x39021b07 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f7a258e cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x41d7900a cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x46870703 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x503ab8bb cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x506e71d6 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x515e6fb0 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x627be0e7 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x63ca4a8c cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6c317954 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6fa0cb04 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7090ed30 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x736e6596 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x749c1603 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x762fd4d0 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x78376e23 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x911935cb cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x93543e26 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa716d14a cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa913482f cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb001d452 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb2c495e1 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb6abd3d6 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbb19dab5 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcbcf41f6 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd2c0bea7 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd5d06da2 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xda17ebb4 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xda6f19e1 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdc4348ff cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xebcc61f7 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xed47723e cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf1bd826f cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf2bd0c16 cxgbi_device_register -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 0x387c5cff fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3f97d94f fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3ff041d8 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5fc56644 fcoe_check_wait_queue -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 0x80cb6393 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaa213385 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaeba8b8b __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc0fd8089 fcoe_validate_vport_create -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 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xff351239 fcoe_link_speed_update -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 -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xcf50fa74 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xef930f82 iscsi_boot_create_ethernet -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 0x0ca6a885 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1118e6b8 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x132dbe95 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x151ba1db iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x16c2ed19 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1f4c2dfb iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x26a32d9e iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2946c65d iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x29acb7bf iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b368e54 iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2e0bce66 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x31a79847 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x37461a99 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3e535af3 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4570dc00 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x49336617 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4b18a377 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5050fdf0 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x524b9f95 iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x68c2f84c iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6b652ad6 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x75c12a25 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x766cab79 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7d5017dd iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7deca2cc iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x833527ad iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x865ff4fe iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8a049906 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8caad0f3 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x98efe598 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xab8611fc iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb421ebec iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc0af588 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc5931b98 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc63353db iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc8f7084c iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcc296aa9 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd415555b iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd4e8636d iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd6893f7d iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8c55dcb __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde2a195a iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe094189b iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xedfe4b3d iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf0922231 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf2c01119 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf32a68bc iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf686939e iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x04cb705a iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x15a35578 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2241b9fe iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6852f0bd iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6900f314 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6e5fe69d iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7464eb3b iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x896cbc54 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8ceb23d0 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa87ee994 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xab3cd45e iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xaf7c1cf5 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbb652325 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xce91e10d iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcefc6f03 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd6dbfa16 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfec22cb3 iscsi_tcp_task_init -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 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 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 0x0a2b4736 __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a730b74 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a817028 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d25a3ee iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1d274f89 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f70724b iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x216bf15d __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x241306cf iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2517c29e iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a8527a3 __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d96586c iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x338f0d3f __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x34bbb7f7 __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3d69c647 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3d8210ac iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x42cd9eeb iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47053a57 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x478608bb iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4867895f iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d9a8138 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4f458b5e iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5789f609 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x57d74496 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5aec9dd1 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5ee5bdf9 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 0x69abf61d iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6b36b60f iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f0cb7b5 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x722af8ee iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7794fd43 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7bde94c2 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ced5abd __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7dbe5846 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7e00a664 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7e10d07c iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x81d0e308 iscsi_destroy_conn -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 0x89f1f961 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x982613cd iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xad744bdf __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xadfd2998 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb1cf6ed4 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb2cce3bb iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb615dfa4 iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb7e89117 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 0xc4828156 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc87f7811 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcd96a052 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd7574af2 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdaee464a iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2269f0d iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef903ba0 iscsi_find_flashnode_sess -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 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 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 0xd958ba28 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf9ee54e9 srp_rport_del -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 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 0x54c946de ufshcd_init_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x71148ccc 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 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 -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1aa05ffb slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x27c1ef5e slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3a4eddf1 slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4006eb97 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5f6934f5 __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7042fbf1 slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x760d19d7 slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x804f4332 slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8137927a slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8f75d18b slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9683b331 slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x99df6e70 slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xaac46dec slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb1bd00ae slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb3932920 slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb43c4ec2 slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc96e8537 slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd4fcc974 of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd5e1248a slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd92bcbcb slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdf92e579 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe0e857ca slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xed0014dc slim_stream_disable -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x494128eb meson_canvas_alloc -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x673c5a86 meson_canvas_config -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xf1f24cd9 meson_canvas_get -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x0a584767 apr_driver_unregister -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x101ab995 __apr_driver_register -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x935490a0 apr_send_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xe6a358b8 aprbus -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x06285798 llcc_slice_deactivate -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x09afc16e llcc_slice_activate -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x14f99b76 llcc_get_slice_id -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x2027e82d llcc_slice_getd -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x62ff6e92 llcc_slice_putd -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xdffee709 llcc_get_slice_size -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x097fd4ab qcom_mdt_load -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x42f47788 qcom_mdt_read_metadata -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x45e1cd7c qcom_mdt_get_size -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x79c2374c qcom_mdt_load_no_init -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x746661e2 sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x9855237c sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xea4ddf69 __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x3dbee5b1 altera_spi_init_master -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x12cbcb22 spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x35c9429c spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9ccf9d1d spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9d11a0e3 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa645af50 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe11ee4db spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x06d49959 dw_spi_check_status -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x1d2a5374 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x25cf5a1d dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x9b3379a8 dw_spi_dma_setup_mfld -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa03d4c45 dw_spi_update_config -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa2e754b7 dw_spi_dma_setup_generic -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xe2f14601 dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf0e22c91 dw_spi_set_cs -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 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 -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x02380134 anybuss_set_power -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4927e632 anybuss_send_ext -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x57158fb7 anybuss_start_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x61519a26 anybuss_client_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x616156c1 anybuss_read_output -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x6326e2c0 anybuss_send_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x6968a7ff anybuss_client_driver_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x95ba031d devm_anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xa5752750 anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xa9998aa0 anybuss_recv_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xf25bf670 anybuss_finish_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x2f747064 fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x8b4c1448 fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xc36171be fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xd6255b55 fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x006332fd gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x171d70e0 gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x29953eb9 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2cfa552d gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x55a1c1e3 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x68e1e85b gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x82807e66 gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x840bfb4f gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8c57155a gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8def4965 gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9375b952 gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xbfecde82 gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd80f936d gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x09c9d832 gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1833e631 gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1ef41857 gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2802fb34 gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x315b15e5 gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x31db863f gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6625f754 gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7dfb19c6 gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9f6a65ec gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa7ccd602 gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb045fb84 gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xcdab73d4 gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xec01a57f gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x44ca3ca1 gb_audio_manager_put_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x49526f57 gb_audio_manager_get_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xa839f6e3 gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xc5703fa3 gb_gbphy_register_driver -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 -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1d67ca5e codec_hevc_free_mmu_headers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x21d4c358 amvdec_write_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3d185fad amvdec_set_canvases -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x43a22e4f codec_hevc_free_fbc_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4bf8928d amvdec_read_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4d0251cc amvdec_add_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5db91620 amvdec_write_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5ff35ee8 amvdec_am21c_head_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x77d3beca amvdec_read_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x796d3211 amvdec_abort -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x84888b0e amvdec_src_change -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa0f3ab84 amvdec_set_par_from_dar -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa70adc01 amvdec_clear_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xada32202 codec_hevc_fill_mmu_map -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb9297372 amvdec_dst_buf_done -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbdf7b030 amvdec_get_output_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc1e50cac amvdec_dst_buf_done_offset -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc3a946f5 amvdec_remove_ts -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 0x0ecf2571 target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x4fca2188 target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x93060747 target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xce85ec95 target_init_cmd -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 -EXPORT_SYMBOL_GPL drivers/tee/tee 0x13fe4ed8 tee_shm_pool_mgr_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x145dc58d tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tee/tee 0x14c5d8a9 tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0x19ce051f tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x1ad94a99 tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x1c1e8518 tee_device_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0x2a553114 tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0x4f3961a0 tee_shm_pool_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x6039bb52 teedev_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7d579f09 tee_shm_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7e3406b2 tee_bus_type -EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa10cae6f tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa1753a50 tee_device_unregister -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa991c216 tee_shm_alloc_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0xacd4e576 tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb5a11fcb tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb92450c0 tee_shm_va2pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0xbd63af1c tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0xbed44e9d tee_shm_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd0e2b762 teedev_open -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf1386a54 tee_shm_pa2va -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf7d19712 tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf7f7f002 tee_shm_pool_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0xfe2765e5 tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x15a5f7a2 tb_xdomain_lane_bonding_enable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x21a31526 tb_unregister_protocol_handler -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x25b2960d tb_xdomain_enable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x36521060 tb_register_protocol_handler -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3b6529df tb_ring_poll -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3d216f18 tb_xdomain_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x41279775 tb_xdomain_request -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x46e70be8 tb_xdomain_release_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x488d6b07 tb_xdomain_disable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5b72e07a tb_xdomain_lane_bonding_disable -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 0x6ceee74b tb_property_remove -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x86166e8c tb_property_get_next -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8a87bde2 tb_xdomain_response -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x94f3accb tb_xdomain_find_by_route -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa00ad73c tb_ring_stop -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa4fc23a2 tb_xdomain_find_by_uuid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xae794a9c tb_xdomain_alloc_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb2995a7b tb_register_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb6780f35 tb_xdomain_release_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb846d4c5 tb_unregister_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xba981a37 tb_ring_free -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc0f913e6 __tb_ring_enqueue -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc64da6ae tb_property_find -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xcf7ec194 tb_ring_alloc_tx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd37e852d tb_service_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe1f82451 tb_xdomain_alloc_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe25c198a tb_ring_start -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe2697cd4 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe9800efc tb_ring_poll_complete -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xee208a17 tb_ring_alloc_rx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir -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/cdns3/cdns-usb-common 0x09c7ff98 cdns_set_active -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 0x810f62e8 cdns_resume -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 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 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 -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x0bf4218b imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x46112229 imx_usbmisc_charger_detection -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x9e324407 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xcf4be34c imx_usbmisc_hsic_set_clk -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x227d791c ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x608fc3ff ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6ac44f98 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x8c9f1daf ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x8e3ae077 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xced3b1c1 __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1229b64c u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1d8eeec3 g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1f5e1c7b u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2c606cef u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x3105ee39 g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x52f122cb u_audio_set_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x547d6a87 u_audio_start_capture -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 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_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 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4a3df9d0 gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x591365fd gserial_resume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60ea48a0 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x77dbf841 gserial_get_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xa18ee0bd gserial_set_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd95e5142 gserial_suspend -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x12772b85 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x2162e256 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xcb56c5c9 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x05ba7cbf fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1011d688 fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x16e5b0fa fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x30c9c0ea fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x443f045f fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4fc52ec7 fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x69a72087 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6e38574d fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x786d4f70 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x83e4660f fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa7ee880f fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xaa6a9844 fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab6c68ac fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcfb3d30b fsg_store_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd3f2f691 fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd5a727e3 fsg_common_set_cdev -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/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 -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x130980e4 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x14e1aaff usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2c07129d usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x30aaf77b usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x330b7889 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x34d0c446 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3bc07063 usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4ad4aea4 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4e983719 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6b85cf92 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x78c4126e usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x78ec9c8e usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7ad5f9e2 usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8c5449c3 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x982cb36d alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9ac49ac4 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xad731fab usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb2ec3c06 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb4ba1ee7 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb6cf1ab9 usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc28d4142 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc367e901 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc51500c6 config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xca71b3c5 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd09d0662 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd3869263 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe0ca6e1e usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe190c588 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xebadcf92 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf03dea11 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xff9e9ec8 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x1c6eb44d udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x30c4d6cb udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x3c23b86a free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x429b64a5 udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x4989780a empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x63182539 udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x931e72a2 gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x96cd9d4f init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xb49305fb udc_basic_init -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/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 -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0511db7f usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x20e28d7d usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x21aaf72b usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x240430b8 usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x28eaa9bb usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x311c7e5e usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3290c2ff usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x367449cc usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x44dd54ea usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x554a1788 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x60363df8 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6e3705ac usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8654c277 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x898c1e2a usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x908b62eb usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb99f5c82 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc697af71 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc7ae2d3c usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfb77f277 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfffe2877 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x660b8634 dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xec20cb5e dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xdc8f0df6 tcpci_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb85e40f6 tcpm_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc37b9769 tcpm_cc_change -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xceb50012 tcpm_vbus_change -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 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 -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1305fcbc typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x156ffa4c typec_altmode_get_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x17ba6cc3 typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x18c0b080 typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1f463153 typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x21526cd2 typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x21af6550 typec_partner_set_pd_revision -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x279e9026 typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x28a9c0b3 typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2f1a0677 typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3038800f typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x362d3557 typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x37c8b842 typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3b1dca97 typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3ce45d4c typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3ed1fc61 typec_get_negotiated_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4171df33 typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4373ef38 typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x47e8c940 typec_unlink_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4d5d733a typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4e2d3423 typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x525fe94a typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x53ef2cfa typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x55aa3891 typec_link_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5885627b typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5a7f37af typec_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5b87f820 typec_mux_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5c917e70 typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x62d70d66 typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x640920ea typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6d856117 typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x755b432c typec_mux_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x76953ec0 typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7a9b9f73 typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7d3cf83c fwnode_typec_mux_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x81af283f typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x82e6ee47 typec_plug_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8621ad91 typec_partner_set_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x89988592 typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x91c8dcf2 typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x93482771 typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x94f200c0 typec_switch_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9717fe5c __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9e65a9dd typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa5b701c8 typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb275efdc typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb88ef1f7 typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbd6248a9 typec_mux_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc1471efa typec_cable_is_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc59b8699 typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc7452d66 typec_cable_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcde17f1d typec_port_register_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd5dd6602 fwnode_typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdbdb285a typec_cable_set_identity -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/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 -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa6584402 ucsi_connector_change -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb2f56c4c ucsi_resume -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 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 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 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_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 -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3ff8fa14 vfio_pci_core_uninit_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x57b0e887 vfio_pci_core_init_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x61e41c03 vfio_pci_core_mmap -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6a202b0f vfio_pci_core_request -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7ce363c8 vfio_pci_core_read -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa9550475 vfio_pci_core_sriov_configure -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xaeffd95c vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc2e5c373 vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xcb434dee vfio_pci_register_dev_region -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd517997a vfio_pci_core_write -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xdbde4548 vfio_pci_core_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe0e619d0 vfio_pci_core_disable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe23f50e3 vfio_pci_core_close_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe6abdddc vfio_pci_core_register_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xec3d2a2a vfio_pci_core_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf6a24207 vfio_pci_core_match -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x241e135e vfio_platform_probe_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x2a5dd6b7 __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x35a8d905 vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x683fdb33 vfio_platform_remove_common -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0c271fa4 vfio_uninit_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3f607714 vfio_init_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x408e55eb vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x44b83e00 vfio_info_cap_add -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5b35c4f9 vfio_group_set_kvm -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x79df3b9d vfio_unregister_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8c4a56b1 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9047be63 vfio_group_get_external_user_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x978805c1 vfio_iommu_group_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa134c195 vfio_external_group_match_file -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa25c0c6c vfio_assign_device_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xac28b2bd vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb2f98758 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4cd0056 vfio_iommu_group_get -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xdd1986dd vfio_register_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe3045aa4 vfio_group_iommu_domain -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xee2da661 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x526cb227 vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xe4533b98 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x00e7b8dd vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x02162ebe vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0890c786 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x09d462ec vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1d68fcb6 vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1dbe0610 vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2638a578 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x27adddca vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2b2f9022 vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x46d43669 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x46d7ed13 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4e94e4df vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5034263c vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x63372671 vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x78cb1822 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x79e1e9cc vhost_work_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7d937300 vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x800474d5 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x81e076eb vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x83287e52 vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8f580077 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x91d848d8 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x984ae406 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9b853bb8 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa6eecd31 vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaa3df323 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xabb5b398 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb7a77d1c vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbc39dbe4 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc4a10176 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcc0e3789 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xce0295da vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd092a5ea vhost_clear_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd6bca819 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe8a35516 vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xee188c4d vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xef111cd8 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xef2e3ff7 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf3e9cfaf vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfc2108d5 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfedbd2f5 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range -EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset -EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x69e872f9 vhost_iotlb_itree_first -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 0x0fd26072 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x3d4b0b12 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x4475561e ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9c47f2f5 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa2f01981 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc4f78932 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xdaca6959 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x31bf3c40 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x59813852 fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x879cc91d fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x28d417bb omapdss_of_get_next_port -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x8a96fa06 omapdss_of_find_source_for_first_ep -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa9e8650d omapdss_of_get_next_endpoint -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb90a25bf omapdss_of_get_first_endpoint -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x0fc6d8f9 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x6b286e4e sis_free_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x23ab5880 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x36faf653 w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0x45978684 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x86f42983 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9463052b w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xb9b08484 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xd73c1733 w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0xdb37944c w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0xdcae6bdc w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xf707b0a0 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0xf84c090a w1_reset_bus -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7b08d5ef dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9d9bc14c 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 0xe7529f47 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4e9ae3fe nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5c4d01af lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7a644700 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa5094f07 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd976b5f7 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf81d2302 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xfb4672cc nlmclnt_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0544cfec nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x065e1a1f nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x076b39e0 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b22df04 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c8f05a3 __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d8538ef nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0dbdfe40 nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ea9868c nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12096699 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16a76285 nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16fb63e3 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x170035f9 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x170f4961 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b3a0c9f nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c8e7e8d nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1dd7ad64 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x200968b4 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24c77fa5 nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26767d2f nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27e8ea37 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x292ade06 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cb995bd __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e21bdc2 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30cd7f6b nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3169db6b nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31aa77cc nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31e7914f __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37ae38b0 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -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 0x416ab552 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45f27b6e nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b7077a6 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d74d307 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e0824dd alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5081ab52 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x511351d2 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51ee44e7 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53393c7e nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5339f332 nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5451eb29 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x560ec2c0 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x562511f0 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x577707af nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5878415e nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x598585af nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c8fa7f1 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fb47ba0 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fcb027a nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x615687bd nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6210f7e9 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65326d65 nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68b19ae2 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69a9e7a3 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ab5f9f3 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ebc0b4c nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ef6b617 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f1ecd0d nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71d519ff nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72552cfe nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74e7c147 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x787b6413 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b8c56dd nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c0dc8fc nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d512789 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x842aa210 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x843a2b56 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x867b9dd2 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x869c4069 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89383c0c nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x896f684a nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8be42338 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c6fb708 nfs_file_write -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 0x937ffaef nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x964fb142 nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x979891d1 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97f190c8 nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x990cc688 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a51878f put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b605690 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c629959 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9da68d95 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fb08001 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1938133 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2daf8ce nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa394a39a nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa99cbb99 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9fe42cd __traceiter_nfs_xdr_bad_filehandle -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 0xad1d5343 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad59c5b9 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad710ac4 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae1a6364 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae6191d9 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf7205ff __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb138b49a nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb56cb269 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6270e50 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6fcf7c7 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7f167f4 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb85054ee nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba0a53ed get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba22cf31 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd93886e nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc150ea1b __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4231ac0 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc45c2911 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5607874 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc79a667b nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7aeca0b nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca9600dc nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbb44424 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdeab770 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcef0cf72 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf6f2163 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcfb4ddac nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4251bc1 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5a6a64c nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6c2589a nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7bdf0a8 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7cf1fe5 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd94d65c3 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd339698 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf5993c9 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0db4d8d nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3233add nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3ffda1b nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe765f672 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7a6ac19 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7eb628f __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xede0cfa8 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee4f344d nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeed78380 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0856e36 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf20341ac nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf33ee898 nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf431a8d8 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5bef4fa nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb0d2aed nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb3c4943 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd5441c7 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd8f56e5 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x45a11432 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x002ca420 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04c82724 pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ebaa8c4 pnfs_unregister_layoutdriver -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 0x1268aec4 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x14f95672 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x173214fc nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1aa2406b __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1aaa8cd9 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ab2a1c1 nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d840486 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21b98811 __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x226aba75 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x240ff234 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x25ef7030 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a4a5061 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e79bf5b __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f47baae __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x327ee2ab nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34e86aba pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3aaa8baf pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x42e457fe pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4543e9b0 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45b1ed85 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4a9f23d8 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d51aa35 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4dc44ef7 __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e43acfb nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ef58481 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5539c4a5 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x57c27842 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4b4b20 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c8392bb pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ca3ae2b __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f85e8a0 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x655b564a pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6643acb2 pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b4103fa pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d1e462c nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6df70cf2 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ee31a7b __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71510c8f __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71d58034 __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x757222a0 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d979567 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f15fb29 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fef6744 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80e9d17b __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85312ff0 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8591bcdb __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d3aad34 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8faecf45 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x913dbeba __tracepoint_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x931d7f55 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94166eb2 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9887c6e1 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99b78c6c nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c26a504 pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9cfca7f6 pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0b232bf nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0e0c1db nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa1ec644d __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4d99f32 __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa85886c6 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab2a0eef pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadc34c27 nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb1cde258 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb39bdabc pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb418d27a nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb68f2dc0 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7c35006 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb85dfaaa pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0fe785a nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc345e0cd nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7184e4c __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc758e7a6 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7c26e88 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7eae742 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8fb1541 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb019cec nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb7ed01e __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xccd7c981 pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd32cf65b pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd541956c pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9126238 __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe040788f __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb91858e pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec9450cb nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xedbd50db nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee12abd5 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf298b1e1 __traceiter_nfs4_pnfs_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 0xff725213 nfs4_put_deviceid_node -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/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 0x6f0db013 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 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 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 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 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 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 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 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 0x20f60a20 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x2a1323eb 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 0x8fe66e57 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 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 0xeaea252a ocfs2_plock -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x318b57dc unregister_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x5cf48992 register_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x03e31f4b register_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x7a4f2d3b 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 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 0x955ee96c 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 0x221c7aa4 notifier_err_inject_dir -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 0x1f8fed60 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xa201de46 lowpan_header_compress -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 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 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 0x1aaadcfe br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1ca0ce0a br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2066fe13 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x342be352 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3886fa52 br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x61454ba6 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x69b06846 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7829e797 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7a3b6cb5 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x965fa8fc br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9ad0e26e br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa0897480 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa56f5fa3 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0xaa9125cd br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xad7b6931 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb504dc33 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xbbfdadf6 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0xdc01a4d8 br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0xded6a5e7 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe90576e8 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xefefbcbf br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf9bea43f 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 0x04855baf dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0faf792b dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2227ffa1 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2f6ad6bf dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x368da450 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x36a71354 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3c5e3145 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x409b803f dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4298aac0 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x43b0a0fe dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x451e6c19 dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0x458b8816 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x490e9295 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4b57b9b5 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4bca09db dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5491ac42 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5cd4c712 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x64899d4c dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x69c7b560 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6dc85735 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x70e78e14 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x743bee08 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7abe3e6f dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8afb3cd3 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9808fdf1 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa3442c0e dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb0de5117 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0a60a93 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd713a0da dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd86ee278 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe4665fda dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe59f1ab6 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe7937ee8 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf55ef99b dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x736f65c3 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x814245b9 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8d4f8ba2 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9f669648 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xddb89df6 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xea7735c3 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x03bf752e dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x15746dbd dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x15c6ff6a dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x18ff834e dsa_tag_8021q_bridge_tx_fwd_unoffload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x254ce80d dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x28a135b8 dsa_tag_8021q_bridge_tx_fwd_offload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x36e37579 dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x469b8b78 dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4c78eeb9 dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x50822be2 dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x512c67ad dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x57ef7cd0 dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c439f35 dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x630c9a9e dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x63465c75 dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x68d83dee dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x69abf017 dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6c69ecb6 dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x707d2aea dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x74d277a7 dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x817a043b dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8bfd6bca dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8e110548 dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x917cced9 dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa9b2ac2f dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb743cc8f dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd5180111 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdc77e83d dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdcfb3114 dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf303576d dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf9e79b37 dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfa99b4ca dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfe372442 dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xffc53327 dsa_switch_resume -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/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 0xb5f5f385 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xf170f569 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xfddee34a esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/gre 0x854dd466 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xc9c8a1f7 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2865afa5 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2d73bff0 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x441086b4 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x488dca60 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x59717bae inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7a9f2a8c inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8c18c02c inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd0839f92 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf7e0b434 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xe11587cd gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2f0adcd7 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3d4e9eb4 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x715ab5ec ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8201f435 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x83800c21 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa1170ab4 ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb2727068 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb7f00233 ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb83c104e ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb92a196f ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbb1e94c8 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbc14fdfc ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcc4af727 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd99c9606 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xea744374 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xeb70f0a6 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf74c4c03 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x07f82a6e arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x292c5c2d ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x9e41255b nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xd6389fc3 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xbaab455a nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x289a5cc0 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x872fa130 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb1537616 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb321c7bb nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xba5e6ae3 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbc936341 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc1ee88e1 nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x5ea63abb nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x022415d8 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x1bbba99b nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xa184c08f nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x8c7bc8eb nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xafb0d4db nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x142601aa tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x3339123d tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc47b6dd2 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc8045ce0 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfdbdb001 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1a4f1e84 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x33f313fa udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x52448f63 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8305131d udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb69a204f udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xddc82d22 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe74781c4 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xefcfb98d udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x19e8111f esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x71b754db esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x774a7215 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x55b140de ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x628c92bd ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x801cdff4 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x19cc50d0 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xe995ff78 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x4b4bbf22 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x2b6d1283 nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x59681d13 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xb141f5b3 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x3aad054e nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5f63d327 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x782a8659 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xaef68459 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb4bd2e8b nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xcb268ff2 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xce751fb1 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf5213f41 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xd9c19bd2 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x7a27a670 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xacdfff2f nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xeb0dfd28 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x4910ff1f nft_fib6_eval -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x987a1cc0 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x022eaee3 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0a2eccb2 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0cdbd1d2 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x21046366 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3f36f01a l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4c6b699b l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5bb01e70 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6628fa3c l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x73ab50dc l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x75edc1bd l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7ecb7f37 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8944d903 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x97969a6b l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xba3560fb l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc6f85dfa l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcd0da904 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe30dc392 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe67183ef l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xef98077a l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfa9830a3 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfaf74508 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x3c40c892 l2tp_ioctl -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x5f81d46c l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x091746e8 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x182e9664 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2767fc5b ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2fbc0b27 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4123d0d7 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x413aecea ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58023940 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5a6068fa ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x87b2517d ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9a447740 ieee80211_vif_to_wdev -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 0xac3b21f0 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xaf807e70 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb14f082f ieee80211_color_change_finish -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc52d5e9e ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc58be7a4 ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdd97597e ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xefa51e6f ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf3222752 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf6207706 ieeee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9155c33 ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3523a00c mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x46eecac7 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x497c923b mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x6efd3cd9 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7f22ace7 nla_put_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0412eda6 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 0x2dea3b50 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3539bf28 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x40491899 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x52f25c1c ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x59059b38 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6fa98e5c ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x83a72bf8 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8bc1b40c ip_set_init_comment -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 0xa34eaa5f ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc25731b8 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xceecb879 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd3f903b8 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf4687115 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf88dd097 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf911616b ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf92d3583 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfeceeae7 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xffd95db0 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1617fda0 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1c54b3c9 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x74f18c55 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf93aa515 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x186987ef nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x268a4802 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x52e029bf nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9fcef6e1 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xbe03a217 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xefb242c3 nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf1386561 nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02579e87 nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a2eb072 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b0477f5 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b276981 nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x115580a5 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11cb2019 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b1ea73f nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c9789d0 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x207f2381 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26c693e6 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28d72539 nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x29cc0ede nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ba3c7d9 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30e10e88 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3787ea12 nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ee4be13 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f0cd8fd nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x43ea9f95 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x471c157a nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x473e385d nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x488aee9f nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ea258d2 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x537f7fe0 nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53a3f0f8 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56f56e3c nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57b2464b nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59b3c19b nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ed8acb9 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62b596a7 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b79ebc5 nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d77a76d nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f8e0b16 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7689d442 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76a37bd0 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79622dab nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79e8d8de nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7bae0188 nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7cb50add nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7dbb85e7 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82a61e1d nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85bfbb49 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x869c67be nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x874bb212 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88bd3328 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x892d54de nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b3dd247 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c6e11f4 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9012dce5 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa0f6f1ff nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2c1ab1b nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3372874 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6536485 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad6fa4f4 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae6f2c82 nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb15d5bc2 nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb9497fe3 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbbbdfe29 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf087a2d nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf423f56 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1113885 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc24baa76 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc62fa669 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb1ff5ff nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb68cc04 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc557c70 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc5d7653 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1309517 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd90a7f69 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc978cc7 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdde0f4cc __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf57cce8 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe48dbf51 nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4abfc95 nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe89416de nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe99966a8 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea271437 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef0d814b nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf46f1980 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf4a5029d nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf4d9cdf2 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf51268a3 nf_ct_set_auto_assign_helper_warned -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf83bc357 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc45dc24 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc6cb100 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x47dd569b nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x3d09d40d nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x3ca869f9 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0dc0c863 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1e96064e nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x32f6c809 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x57269863 set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5737e8c1 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x60b39611 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x86add04a set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8a24b9e3 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc3b450c2 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd2101de1 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xfea97e5e nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x11cac64e nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x308d24f9 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x49d335f3 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x909358ed nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x21027732 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x456f47a1 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4a940468 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa26e46f2 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xace11a2f nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcd56915a ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdacd2815 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x8b2080cc nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x6d749ac7 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 0x087c41bc nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x33ff405a flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3cb87903 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5c2e72dd flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5d50c4c7 flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x66fc2cb5 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x692927dc nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8253fdbb flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb2c1121d nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb319e8aa nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbb7d6b38 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc52692ef flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc7a23166 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd1cd58d6 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd5878d20 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf56d4332 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf77188c3 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x01b2da9e nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0ec9c8d4 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3266d8cc nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3870f66f nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4812df97 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x48beb8f4 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4bbda942 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5bd0ef67 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5da6ed10 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8dedf523 nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xab48295e nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb340c4e5 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd1823d89 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd4111dd0 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 0xefe5aca9 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf2a23a40 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x300b7148 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x37880d86 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x501ff0bc nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7024181e ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x763f434c synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7997c043 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x928f079a nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa1e4d890 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb1049163 synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf518faa0 nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xfc0beee6 synproxy_recv_client_ack -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 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 0x1449d125 nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1b978677 nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x23300290 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2332c0ee nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x40335ed0 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x44cdd418 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x46db747f nft_register_expr -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 0x4d7641a1 nft_meta_set_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 0x599b6f6a nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x64373507 nf_tables_destroy_set -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 0x7e8a09a5 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x829578c1 nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9002a63c nf_tables_deactivate_flowtable -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 0xa9ffc821 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc0fb13a1 nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc3ba4719 nft_meta_get_dump -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 0xdcfd9f71 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde3b0344 nft_obj_lookup -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 0xe995b1f2 nft_meta_set_validate -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/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 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_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xb5b38286 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xe3cdc609 nf_osf_find -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/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x27af483a nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xc89e708e nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xcf23881e nft_reject_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x12b2d105 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1c6f5c9d xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x327bad6d xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x339e0cce xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x34d81e71 xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x497fff52 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x58add3ec xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x61602f96 xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x627573cc xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x63916fe4 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa2aa7915 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaa3813c9 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc4f4f874 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc629f21a xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xce738051 xt_unregister_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 0xdf70e033 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe99e891d xt_check_match -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/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 0x7c36abf2 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x817ad0d0 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbd4ac910 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xce30a571 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd68cb8e4 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xdd99e404 ovs_vport_free -EXPORT_SYMBOL_GPL net/psample/psample 0x24da8a1d psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0x417baaa6 psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0x82315b96 psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0xad12a50a psample_group_put -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x65d6bbbe qrtr_endpoint_post -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/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x043c74f3 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x154acec6 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x199228e6 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x1b575f6f rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x22c541d7 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x29eefe8e rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x32818038 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x36c8ae0c rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x3ec55ce2 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x3f783658 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -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 0x58d21f0f rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x5e2628b9 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x62f815ad rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x6b40ae76 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x6c4aea78 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x7cc44710 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x8a212f6a rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x8b6293e4 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0x910fd55d rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x91a8a602 rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x965dc30d rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xa003705b rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xafb98cd1 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc41b6b03 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xce3c76b4 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0xe01c0acd rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xe30d271b rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xf4c257e8 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xf8956a01 rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xfb8d1066 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x28f6d699 pie_process_dequeue -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xe773006f pie_drop_early -EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x7db7d103 taprio_offload_free -EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xd765a904 taprio_offload_get -EXPORT_SYMBOL_GPL net/sctp/sctp 0x13984c6a sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0x8013649c sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x88784e95 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xb12d8080 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/smc/smc 0x023e3a8b smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x24972a70 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0x319ee119 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0x68d87a2b smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x7eb715b8 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x8204ba16 smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xa5d59c84 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0xaa2acca1 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0xb281c8f0 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xc6af1ef0 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 0x5a456853 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x66ac30ff svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb4ce47cf 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 0xd8ddf0aa gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x002d48f5 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x020029d6 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x029da724 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0354aa18 svc_proc_register -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 0x08ba47c6 xdr_align_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08f027c7 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a3cb635 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a92e616 svc_addsock -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 0x0f4f617a xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13463fd9 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15f3ee5b rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17b76e9c rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17f26af8 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1807e7d1 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18d6ec05 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1989082d xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1afb1f13 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1afedbd7 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c8dc192 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f4a4534 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fd5be40 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20bad306 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x211a4830 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2124a79b cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22c1aa46 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22c84142 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2393eee9 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x243c2eef rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25e15112 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26593739 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a1210b3 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a50c662 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c748dce csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2daa0d51 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x301e6f10 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x305c9da2 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31e7aae0 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33e6699a svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35438c74 svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36b98980 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36e4fa8e rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x373b66a6 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x375740c9 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37630476 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37c23626 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37c24866 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38179a2d rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38d2f061 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a4fd210 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bbe6d82 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c103f78 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c4e2160 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cc9702e rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cf06694 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d86dcf5 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d945ccc rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ddbc7a8 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e3e87d8 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f4404ce xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40eb0bf7 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x411929f7 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x421c50fb xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x424c61bb rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42749006 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43ece2fe rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44545d54 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4574f39e xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47f718b8 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x481c75e5 xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x497ceeb3 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b513b4a cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4be90b38 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c496c6d svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c5f8181 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cb59430 rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50771c18 xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50f0904f sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5171eb00 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5223fade xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x527797fd rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x545419fd svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54ccb725 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54e96e2c rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x558a8d09 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bb1c711 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c341cd0 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d24e1b9 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ea8d91c xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ec45a99 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5edda292 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f2364aa cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62d81acb rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x655f1f79 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65cc0b77 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6662145d rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66da89e1 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67dbbe32 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6910a9a1 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6916b623 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x699cb627 xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69c76b66 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a210b0e xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6af15adf cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6afd23d2 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bfe4bb8 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c54b237 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dcc46af rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e770209 rpc_sleep_on_priority -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 0x73c4d82f rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75510690 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x755589fd rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75c7a627 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77feaa5d svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7974532d svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a9f2b65 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7be2a123 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c822a10 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e911f09 svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ea67238 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8075e2f8 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82b541d1 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82dc2dfb xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x841fedcd rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86e97484 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87403f99 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87ad64bb bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dff2aef svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f09a4b7 rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x915e4054 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9224516d rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x946a71a4 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x985d5d6d xdr_expand_hole -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98df9499 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99cab514 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9adbb8ff xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b3f4e1b svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cc9b968 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d1d9c83 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d8e2921 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e45994e svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9eb95af5 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9edd0a4d svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ee43119 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa029d623 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1b849fd rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1bdd39c rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3d7bb35 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa757a8af xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8deb88a svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa94bba5e svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa1e830a svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa55848d xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac658d32 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac6a309c rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad87db71 xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad938d82 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaea90aad rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf36d4bc xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf893554 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb05338a8 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0bf3070 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1446765 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2e69504 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb35339e1 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb36c26f9 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4f78bb6 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7425d02 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb79467da xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb85f82e7 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb866da4f put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba675d6f xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb1a2aca rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd907478 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfa9d67d rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc10323f9 svc_rpcbind_set_version -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 0xc1b6e509 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4dce947 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4ed8b4d xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc96fc661 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc24c105 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc2c3e7f cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccaf2816 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd09513f0 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1b5319a xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1f08faf xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd23b35bd svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2dca9cb svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3155b27 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3232b59 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd34873e2 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd34ec146 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd38bdd3f xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4b8d812 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd73b7aa4 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd82f825a rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8e4eb83 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb1affd4 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb5ba291 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcb19c03 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf42f71f rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe10e37d6 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1a8be98 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1a95f93 xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe21b0e43 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe22a6f8c svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2d018df svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe32dda98 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe516763a __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe611d81d rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe62b5160 svc_create_xprt -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 0xeabf5dbb xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeafc745b svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebc46482 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec203a0d rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xede8f5c6 rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedebd61d svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee2e5971 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef86d68c auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefe9aeeb svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf003ec00 xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0d78cee rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1496f38 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1d231b6 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3779c49 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5fe5090 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6d6c653 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf76a4e04 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8d7d3a6 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbf6e492 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfca57951 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe677e15 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff125669 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff88f09f svc_max_payload -EXPORT_SYMBOL_GPL net/tls/tls 0x6d4a4b7e tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0x8da55879 tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0xa05f1f4d tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xaa6178a8 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 0x0699219b virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x09fff4d7 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x17f3d241 virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1fdb20b6 virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2c328c96 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2c8c17b5 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3227c511 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x32b677c5 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4ac7bce3 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4fb92ea8 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x51a08ab0 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5bc5d325 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x68398b66 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6cad180e virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x77e21049 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7ab76fe9 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x89f27f05 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x993318ba virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x999be559 virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa0f296e0 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaea0112e virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaf07cf4d 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 0xc1595deb virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc64f9ad1 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc80e4bb7 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc9d1bcb8 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcd23026d virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xce75ef17 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdd95450e virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe166941b virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe801d4c4 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xea14442f virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf3ff45f1 virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf6fd37ee virtio_transport_put_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/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 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 0x3d4b0fca vsock_addr_init -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 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 0xaf2674b5 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbec7da01 vsock_find_bound_socket -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 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/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 0x2b96f57b ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x3b5c8e9c ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x3fac3bfb ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc55e5d62 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min -EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xe2521b1c xfrma_policy -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe50413d7 snd_seq_client_ioctl_lock -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 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 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 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 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 -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0822a361 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0badb7f7 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0bcc3c09 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0d34d97d snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11d7262f snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12334bbc snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1417b85a snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x15885e55 snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2318e9b9 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x26695f4d snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x29016972 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a806841 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2d291425 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2d973b19 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2d9ff289 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f6587c3 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2fcff298 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x31e74c3a snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x32174cb6 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x327c87ec snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x365f9f4f snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x38c783ed snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c729454 snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x41d41b6f snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x44e5eeaa snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5021f9c9 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x51a7855c hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x530bdf85 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5813880c snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c48ae3a snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e98125d snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f242cb7 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67803374 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6903074f snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x703be7ac snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x716b8012 snd_hdac_stop_streams -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x759afe0a snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7adb6feb snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ece9643 snd_hdac_stop_streams_and_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x810f6267 snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81e87b7e snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x82058d32 snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83de853c snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x85f1dfdd snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x86cb3f42 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8a3eb2fd snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c12e8fb snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8d43428c snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90ddc994 snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x91280d3e snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9137e065 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x940b7339 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x991495c2 snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c9f988f snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa1c97a8e snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa2e96d43 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa553d448 snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xabcbba6a snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1c1185b snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb36cc4ac snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb71afbba snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe849842 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc0f4104e snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc18c2c28 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc588101 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcefd9e3a snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcf0f786b snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd00be7b3 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd260a278 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd27d3045 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd7fa163f snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd8cd4de5 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd95a7cf0 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdcd00ada snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf23fbc3 snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe08d699b snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe350d27e _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe650cc24 snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xede17fa5 snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa7fa920 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb1ffa05 snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfc186f95 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x796d8ff4 snd_intel_acpi_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x89cfab9b snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0fa01f0c snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1af090c3 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x5075959d snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x54545d8e snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8651646f snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8762fc76 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0079c921 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01d8204a snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0567d9d7 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x069a8fd7 snd_hda_multi_out_dig_cleanup -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 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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x148bf2f4 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x175d6993 snd_hda_create_dig_out_ctls -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 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 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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2dbf6e78 snd_hda_codec_setup_stream -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 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 0x6a3e7e94 query_amp_caps -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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f05283f snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f5fba98 snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ff677ba snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x812f30ff snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x819e9ee3 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83bc30df snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x842eaad9 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x843fb559 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x848a34d7 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8828210b snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88e30c99 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x894c7e07 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89eed4a0 snd_hda_multi_out_analog_open -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 0x8eda366a snd_hda_multi_out_analog_cleanup -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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9225cb90 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92d001d3 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x938997ac snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94379bbb snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x950546f3 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96006a4f snd_hda_codec_parse_pcms -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 0xa3fac8ee snd_hda_create_spdif_in_ctls -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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5172b50 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7f3bc8a snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb82a8c0b snd_hda_sync_vmaster_hook -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 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 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 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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x12ffb88d snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x24a50f75 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x341c65c0 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x465652c2 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x49548b69 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4c67ecc3 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x533f263a snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7fde71e2 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8c3fa916 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9f9878dc snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa740569d snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb204b46f snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb71abb90 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbe717b03 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbf7195d0 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcade8697 snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcb85be5c snd_hda_gen_check_power_status -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/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 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-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 0x1d4f26a2 arizona_adsp2_rate_controls -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 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 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 0x69102a20 arizona_sample_rate_text -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 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 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 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 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-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-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 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x42862a36 cs35l41_register_errata_patch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x502c9d6b cs35l41_boost_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb082bf52 cs35l41_otp_unpack -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xbcce38ee cs35l41_regmap_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf05dfa46 cs35l41_set_channels -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x31c238db cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xc5e747d5 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x5e63344e cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x705e4a9e cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xa978a0ea cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xc5e1914d cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xddae9835 cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0c6c86f4 cs42xx8_regmap_config -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-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-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 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-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 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x0e329539 pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xcb5a0b1a pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x2d2ee2a4 pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xc52eb284 pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x14365279 pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x67bed169 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xad8c4aa3 pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xb472c143 pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x17620cab pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xb48e1704 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xc063069a pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf43aed49 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 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-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 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 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-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-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-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 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 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 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 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 0x28365f44 wm_hubs_hpr_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x6a0d660f wm_hubs_update_class_w -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 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-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/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-simple-card-utils 0x00b62890 asoc_simple_hw_params -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 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 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 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 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 0xf3bafb75 asoc_simple_convert_fixup -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 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/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 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-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 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/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 -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xbf92642c q6adm_matrix_map -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x07a54780 q6afe_cdc_dma_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x4579e9ad q6afe_set_lpass_clock -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x498d993b q6afe_get_port_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5332304f q6afe_slim_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7df60063 q6afe_port_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xae809786 q6afe_hdmi_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd4523c59 q6afe_i2s_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe45246a8 q6afe_port_start -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe66d69da q6afe_port_get_from_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xfaf22370 q6afe_tdm_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x13b7efd9 q6asm_cmd -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x1b6c77fc q6asm_stream_media_format_block_alac -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x25bfa476 q6asm_open_write -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x2b693eed q6asm_stream_media_format_block_wma_v9 -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4afe6f73 q6asm_read -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4fba2f0c q6asm_run_nowait -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x515aa307 q6asm_audio_client_alloc -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x68db31e2 q6asm_unmap_memory_regions -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x6cec4b17 q6asm_stream_remove_trailing_silence -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x856b4fdb q6asm_stream_media_format_block_wma_v10 -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x9d0cf85f q6asm_stream_media_format_block_flac -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xa7d3a3a6 q6asm_media_format_block_multi_ch_pcm -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xb37ed108 q6asm_enc_cfg_blk_pcm_format_support -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xb4f98cb3 q6asm_map_memory_regions -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc0dd8d67 q6asm_open_read -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc1347db0 q6asm_write_async -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xc5a116a4 q6asm_get_session_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xcbee5e42 q6asm_stream_remove_initial_silence -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xcc4952e4 q6asm_audio_client_free -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd2cf1a0f q6asm_run -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd38aa312 q6asm_cmd_nowait -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xf47f4b35 q6asm_stream_media_format_block_ape -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x7e52e977 q6core_is_adsp_ready -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x9b02ea0d q6core_get_svc_api_info -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6dsp-common 0x17142e58 q6dsp_map_channels -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0x5b75f756 q6routing_stream_open -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0xa7a64259 q6routing_stream_close -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 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/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/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/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 -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2906d377 line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2966821e line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4d99c205 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x525beee3 line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x63b3ce0a line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x64ed629d line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6529c425 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6c101658 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x84d6e270 line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x87b0af8f line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xafead383 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc89174f3 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd0661722 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfd0765bc line6_write_data -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0x00169218 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x002044a2 scmi_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x00255f32 scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0x00280751 device_match_any -EXPORT_SYMBOL_GPL vmlinux 0x0036c1fd ip6_local_out -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 0x007936fc dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x007bcc53 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x00a85efc perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0x00b1b369 fw_devlink_purge_absent_suppliers -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 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 0x0107e2af clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x0115f323 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x01172afa wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x0122a31d ahci_kick_engine -EXPORT_SYMBOL_GPL vmlinux 0x0127c96b unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x0140cc27 skb_zerocopy -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 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x018716fc sfp_bus_find_fwnode -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 0x01b1511e xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x01bb25ae devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x01c89b4d spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x01d78b78 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01eb760c of_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x01f8bf2d wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -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 0x02572a0f tcp_reno_ssthresh -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 0x029bc10e inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x02b5c1c6 genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0x02c4c456 rhashtable_walk_exit -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 0x02f5e7c5 devlink_param_publish -EXPORT_SYMBOL_GPL vmlinux 0x030cf1e8 usb_deregister_device_driver -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 0x03315f0c btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x03327fdf spi_mem_default_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x0337bd68 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x03386bd2 iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0x033bd12b snd_soc_find_dai -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x03472d2e rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x034d0188 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x034d3f7b led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0x034e9c3d page_endio -EXPORT_SYMBOL_GPL vmlinux 0x036d8e9b klist_add_tail -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 0x039b7369 i2c_of_match_device -EXPORT_SYMBOL_GPL vmlinux 0x03aa7fbc inet6_csk_addr2sockaddr -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 0x03ca800a serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0x03e28260 sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x03f4ea93 inet_unhash -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 0x0419662f crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x044bd192 sysfs_unbreak_active_protection -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 0x04add657 skb_copy_ubufs -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 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 0x04e4cda1 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x0508df51 compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x050cb5c2 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x0510572e snd_soc_component_set_pll -EXPORT_SYMBOL_GPL vmlinux 0x05196b49 __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x0519df99 clean_acked_data_enable -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 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy -EXPORT_SYMBOL_GPL vmlinux 0x05624d42 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x056b4b67 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x05782819 tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x059f7cbd nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0x05a12e98 __tracepoint_fdb_delete -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 0x05ddbc5e sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x05e0ec9e dapm_kcontrol_get_value -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 0x06312693 crypto_register_alg -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 0x065394f4 i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL vmlinux 0x06857860 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0x0688546a __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x06a26890 bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0x06a5a831 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x06b53bd2 memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06ce45fa devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x06d2b195 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x06dcc786 dev_fill_forward_path -EXPORT_SYMBOL_GPL vmlinux 0x06e5175f sched_trace_rq_avg_irq -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 0x07034c73 pm_clk_suspend -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 0x0732ce1a sbitmap_queue_wake_all -EXPORT_SYMBOL_GPL vmlinux 0x073be2ec crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0x074d505e skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x0752bb3d icc_get -EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy -EXPORT_SYMBOL_GPL vmlinux 0x0767e833 of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0x0774a135 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x0780a7ba irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x07859b8c sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0x079c07f7 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x07a6056f usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07b5bc10 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0x07b6010c snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL vmlinux 0x07bbfac8 mtd_block_markbad -EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07d8796f __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0x07e2b3c9 sched_trace_rq_cpu -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 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x0813a881 irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x08171fe9 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x081ead56 device_destroy -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 0x0862bded pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0x0864eb12 devlink_port_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x086924bf debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x086a53cd snd_soc_unregister_dai -EXPORT_SYMBOL_GPL vmlinux 0x08713692 ahci_platform_resume -EXPORT_SYMBOL_GPL vmlinux 0x08739b2b devlink_port_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x08790b54 device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x0880197d gpiod_put_array -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 0x08bdfff5 __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x08cd6d34 xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x08d15562 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x08e94e5d udp_abort -EXPORT_SYMBOL_GPL vmlinux 0x08eb6a67 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x093a67f7 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL vmlinux 0x09492220 musb_mailbox -EXPORT_SYMBOL_GPL vmlinux 0x095dcbb2 stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x096f58f3 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x0980c9a9 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x099b58b9 devlink_register -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 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 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL vmlinux 0x09f0e2bb crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x0a173df3 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL vmlinux 0x0a2dc31f netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x0a3408e4 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0x0a38c3c2 acct_bioset_exit -EXPORT_SYMBOL_GPL vmlinux 0x0a45423d pci_dev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x0a63d232 gpiod_set_raw_value_cansleep -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 0x0a87f495 receive_fd -EXPORT_SYMBOL_GPL vmlinux 0x0a8c3b4b usb_ep_set_halt -EXPORT_SYMBOL_GPL vmlinux 0x0acfe2e7 usb_ep_set_wedge -EXPORT_SYMBOL_GPL vmlinux 0x0ad69268 icc_get_name -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 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 0x0b2970fe klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -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 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 0x0bc1ec1e __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0x0bd1c47d __vfs_setxattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x0be254cd xdp_attachment_setup -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 0x0c23ab3d dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x0c2ec433 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x0c303f52 bch_encode -EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -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 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 0x0ca6ec44 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x0cb45bfe regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x0cc00b4d irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x0cc58002 sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0x0cd11f53 kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0x0ce3c00b skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0x0cfb3b3b sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x0d1416eb __clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x0d14df4b kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x0d30fd03 trace_output_call -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 0x0d57efbf register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x0d5a5939 cpu_topology -EXPORT_SYMBOL_GPL vmlinux 0x0d6fe6d2 crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x0d801415 set_secondary_fwnode -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 0x0dcb3ee8 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x0dcd922c usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x0dd140d7 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x0dd83676 regulator_list_hardware_vsel -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 0x0e1f28b9 virtqueue_add_inbuf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x0e26b9cd ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x0e35c539 mtk_pinconf_drive_set -EXPORT_SYMBOL_GPL vmlinux 0x0e360628 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL vmlinux 0x0e5b4975 __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x0e675175 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x0e6a5f3c of_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x0e6af8bb bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0e6de28d inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x0e722367 devm_serdev_device_open -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 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 0x0ecfa398 __traceiter_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x0ed549bc devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0x0ed7b78b devm_of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x0ee1efce mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x0ee5498a ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x0ee84bba snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL vmlinux 0x0eeb5417 __kprobe_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x0ef59e74 devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0x0f00867f xhci_drop_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x0f012d80 dev_pm_opp_xlate_required_opp -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 0x0f452a47 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x0f4a7a4a bpf_trace_run11 -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 0x0f86348b devm_irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x0f9e9ef0 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x0fbc3d78 put_pid -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 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 0x1043cac3 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0x1046b92e ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x10643b07 sfp_bus_add_upstream -EXPORT_SYMBOL_GPL vmlinux 0x10662c10 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0x106ad9e1 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x1074f477 sdhci_setup_host -EXPORT_SYMBOL_GPL vmlinux 0x107abef5 mmc_switch -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 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 0x114a3740 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x114d9c34 gpiod_get_from_of_node -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 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 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11adce90 __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x11b9b3dd xdp_master_redirect -EXPORT_SYMBOL_GPL vmlinux 0x11d6c3b5 scsi_build_sense -EXPORT_SYMBOL_GPL vmlinux 0x11d87f83 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0x11dbe1ad int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0x11dc786f netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x1207b1ad device_create -EXPORT_SYMBOL_GPL vmlinux 0x1208db80 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -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 0x1258b158 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x125a64f2 devlink_port_type_eth_set -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 0x127e95ed ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x12855e3f phy_set_mode_ext -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 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 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 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 0x133a0fca udp_cmsg_send -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 0x13730f34 nf_nat_hook -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 0x139f4190 trace_array_printk -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 -EXPORT_SYMBOL_GPL vmlinux 0x13c87aa3 watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0x13d985cf crypto_stats_skcipher_decrypt -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 0x13fe431b regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0x13ffbf7c device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x140387c8 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -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 0x1434cc09 __traceiter_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x1456d29a lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0x1465373b kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x14663565 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x1475142e cpts_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x148037e6 mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x148e9f5b devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x149a1cc6 net_selftest -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 0x14b45ccf crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0x14b48b8d device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x14c2872d xas_pause -EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0x14d5d574 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x14eb7e17 sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0x14fed13b dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0x150ea098 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x151397ba __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x1529db95 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x1539d69a fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x1550efdf inet_peer_base_init -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 0x1565ffe5 devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x1566b23e clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x156d123d ahci_platform_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x1575bfa0 spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x157bfe4f blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x159db768 devlink_net -EXPORT_SYMBOL_GPL vmlinux 0x159e0ae8 xdp_rxq_info_unreg -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 0x15d8b6a3 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x15d963b9 pci_ecam_free -EXPORT_SYMBOL_GPL vmlinux 0x15d9f9fa nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0x15eca580 percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x15f70b1a nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x15fb7da1 perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0x15fcb706 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0x15ffd801 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x160b73d5 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x1612331e edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x161723af kobject_init_and_add -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 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 0x167901c0 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x167b4be6 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x1681083f vp_modern_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x16834628 ncsi_vlan_rx_add_vid -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 0x1690b503 usb_role_switch_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x169b185f verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x16a45cd5 gpiochip_unlock_as_irq -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 0x16dfbf36 add_interrupt_randomness -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 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x171a959b rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x17493377 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x1755c572 xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0x1755c58e crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put -EXPORT_SYMBOL_GPL vmlinux 0x176fef29 of_clk_src_onecell_get -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 0x17aa57af ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x17ae4d10 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x17c5326f usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x17df7ced of_i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL vmlinux 0x17e9334e setfl -EXPORT_SYMBOL_GPL vmlinux 0x17e9a72c sdhci_set_power_noreg -EXPORT_SYMBOL_GPL vmlinux 0x17ff3bed __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -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 0x182dc2ae lwtstate_free -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 0x184ef50d mptcp_pm_get_local_addr_max -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 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 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 0x18a6ac4e devlink_flash_update_timeout_notify -EXPORT_SYMBOL_GPL vmlinux 0x18d6c00a disk_uevent -EXPORT_SYMBOL_GPL vmlinux 0x18da5130 sbitmap_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x18dbb48f tc3589x_set_bits -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 0x18fb2def ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x18fcec1d ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x191709bd mtd_device_parse_register -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 0x192a5425 tcp_cong_avoid_ai -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 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 0x1970a24a ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x19766fd1 lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x197808e9 pinconf_generic_dt_subnode_to_map -EXPORT_SYMBOL_GPL vmlinux 0x198a19c8 nvdimm_cmd_mask -EXPORT_SYMBOL_GPL vmlinux 0x198d73e8 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0x19967cfc dm_post_suspending -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 0x19b855dc crypto_grab_skcipher -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 0x19f3e552 ohci_hub_status_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 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 -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 0x1a77903a of_alias_get_alias_list -EXPORT_SYMBOL_GPL vmlinux 0x1a7eb578 mtk_pinconf_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0x1aa16a21 crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0x1aa4dccf unregister_mtd_user -EXPORT_SYMBOL_GPL vmlinux 0x1ab37de7 devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1ad04647 __mnt_drop_write -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 0x1af65a85 usb_amd_pt_check_port -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 0x1b414eae fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x1b58ec7d fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0x1b616152 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1baa55d5 meson_clk_pll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x1bb1678b blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x1bb1d8ec udp4_lib_lookup -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 -EXPORT_SYMBOL_GPL vmlinux 0x1bcb699c pci_epf_create -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 0x1c01e03d __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x1c079ba6 fsl_mc_device_group -EXPORT_SYMBOL_GPL vmlinux 0x1c0daf14 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL vmlinux 0x1c241229 umd_unload_blob -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 0x1c50fce0 devlink_unregister -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 0x1c76df50 xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1cad678a devlink_dpipe_entry_ctx_close -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 0x1cedf3cc of_pci_get_max_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x1cfe4101 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0x1d00fd8e pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d29b9e1 decode_rs8 -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 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 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 0x1dc17bf9 rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0x1dd85ca3 debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0x1ddf6231 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x1df90bd2 nand_prog_page_end_op -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 0x1e1d65cc rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x1e21f769 devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x1e21fa0a seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0x1e380b7d __device_reset -EXPORT_SYMBOL_GPL vmlinux 0x1e3f537a inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x1e3fc43d d_exchange -EXPORT_SYMBOL_GPL vmlinux 0x1e4491d7 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x1e4bfe7d __raw_v4_lookup -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 0x1e9c590a usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebd5bf3 devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ebfc2fe __kernel_write -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 0x1ef619c7 edac_mc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1ef8f613 blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1f1ed87a ping_getfrag -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 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 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 0x1f5fc4a5 cpu_latency_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x1f6a237c nand_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x1f6de8f3 firmware_request_cache -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 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f9063eb __fscrypt_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x1f925297 phy_package_leave -EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fb02749 mtk_pinconf_bias_set_combo -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 0x1fe096b2 gpiochip_irqchip_add_domain -EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x20065bcb blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x200ff49d sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0x204197c9 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x2045768a fsnotify_put_mark -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 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 0x208f5a02 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x20917b59 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x20937cf3 sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0x20976312 trace_array_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0x20ae52e8 dev_pm_opp_detach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x20bc7cce tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0x20c6c423 synth_event_gen_cmd_array_start -EXPORT_SYMBOL_GPL vmlinux 0x20f107ca sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x20f29bed firmware_kobj -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 0x2111e55e perf_pmu_migrate_context -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 0x21562a1d raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x215a5075 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio -EXPORT_SYMBOL_GPL vmlinux 0x216fafec init_pid_ns -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 0x218766d5 xfrm_state_mtu -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 0x21e7eba6 fwnode_get_phy_node -EXPORT_SYMBOL_GPL vmlinux 0x22021054 nand_soft_waitrdy -EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available -EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str -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 0x223e568b ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x2249bb53 __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x2251742f scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x2253bb93 tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0x22564d70 spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x2257665a ethnl_cable_test_finished -EXPORT_SYMBOL_GPL vmlinux 0x2295c1ad md_stop -EXPORT_SYMBOL_GPL vmlinux 0x22a206e7 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0x22aa3ccb alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x22afba77 snd_soc_dai_compr_startup -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 0x22d7815e inet_csk_get_port -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 0x23167044 bpf_trace_run10 -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 0x23329ba9 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x23337d69 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x2335db4d __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x23392165 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x233f2cd6 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -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 -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 0x236d0c34 fwnode_get_named_gpiod -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 0x23abca52 usb_match_one_id -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 0x240bfb43 ahci_stop_engine -EXPORT_SYMBOL_GPL vmlinux 0x240ccf75 usb_put_phy -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 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 0x244b4ac7 fib6_rule_default -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 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 0x24a516b0 icc_node_add -EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24ba8373 nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x24d0207a sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24e5974c edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x24e662de inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -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 0x2516bbe8 __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x2523674e devfreq_cooling_em_register -EXPORT_SYMBOL_GPL vmlinux 0x252757d4 blk_bio_list_merge -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 0x2589495f virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -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 0x25cbe270 devm_rtc_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x25e24483 security_path_link -EXPORT_SYMBOL_GPL vmlinux 0x25efdd4e reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x25f2adeb sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0x26138917 __nf_ip6_route -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 0x2638586b xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0x264add78 regulator_enable_regmap -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 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 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 0x26ac82a8 regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0x26b0f612 __udp4_lib_lookup -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 -EXPORT_SYMBOL_GPL vmlinux 0x26c77e2b nand_status_op -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 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 0x2734197f musb_readb -EXPORT_SYMBOL_GPL vmlinux 0x2736ce61 crypto_comp_compress -EXPORT_SYMBOL_GPL vmlinux 0x2737ba4b amba_ahb_device_add -EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x275313d5 devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x276c5285 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x27a4bb78 housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x27c9ee59 __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x27ce6766 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x27e40196 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0x27e5167e pci_generic_config_read32 -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 0x2804df59 mmu_interval_notifier_remove -EXPORT_SYMBOL_GPL vmlinux 0x281e169a nfs42_ssc_register -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 0x28321143 iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0x28420be8 devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x2842383b netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x28494dd5 usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0x284d4f82 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x285b94c1 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x285dd05a ata_pci_sff_init_host -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 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 0x28d1df37 bpf_map_inc_with_uref -EXPORT_SYMBOL_GPL vmlinux 0x28f6d7be extcon_find_edev_by_node -EXPORT_SYMBOL_GPL vmlinux 0x28f7df52 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x28fd5fcb mptcp_token_get_sock -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 0x291876f3 mpi_ec_get_affine -EXPORT_SYMBOL_GPL vmlinux 0x29200d63 blkg_lookup_slowpath -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 0x2972a198 blk_next_bio -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 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 0x2a0dbf57 __traceiter_devlink_hwerr -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 -EXPORT_SYMBOL_GPL vmlinux 0x2a3e4fd3 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL vmlinux 0x2a4aca49 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x2a4d931b blk_queue_zone_write_granularity -EXPORT_SYMBOL_GPL vmlinux 0x2a5b0c0e snd_soc_link_compr_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu -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 0x2a8bcb72 msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0x2a8c25c5 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x2aa37bf3 tpm_calc_ordinal_duration -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 0x2ac1f688 cgroup_get_e_css -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 0x2aeef7e8 of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x2b0eee98 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x2b1bc08e nvdimm_security_setup_events -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 0x2b6150fb power_supply_temp2resist_simple -EXPORT_SYMBOL_GPL vmlinux 0x2b62cda0 kthread_use_mm -EXPORT_SYMBOL_GPL vmlinux 0x2b64ce65 strp_done -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 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 0x2bd1f51b raw_unhash_sk -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 0x2c0e9738 usb_get_intf -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 0x2c29bfa7 bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c4dca7b usb_check_int_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x2c4f1d78 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2c54e292 irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x2c5984df of_i2c_get_board_info -EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL vmlinux 0x2c9238cb crypto_shash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -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 0x2ce855ed nanddev_bbt_update -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -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 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 0x2d79afcf pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x2d944bcf device_match_name -EXPORT_SYMBOL_GPL vmlinux 0x2d9a140d blk_abort_request -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 0x2ddd7ef4 perf_event_refresh -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 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e3540b8 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x2e36cc2d fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x2e397fcf crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0x2e4261f6 snmp_get_cpu_field64 -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 0x2e7fcf2a inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x2e94f1df __traceiter_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0x2e98ef0a bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec2e361 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x2ef1285c pci_epf_type_add_cfs -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 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x2f4999c3 set_capacity_and_notify -EXPORT_SYMBOL_GPL vmlinux 0x2f63e634 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x2f73d07d powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x2fa0e99e devlink_dpipe_match_put -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 -EXPORT_SYMBOL_GPL vmlinux 0x2fade0be synth_event_add_field -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 0x2fd2f11d wait_on_page_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0x2fd42d7a put_device -EXPORT_SYMBOL_GPL vmlinux 0x2fd72a1e __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x2fdcce52 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x2ff528d4 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x30055131 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x3012dd64 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x301c79bb vp_modern_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x3023f708 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x30388f96 tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0x304060ac regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x30416600 trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0x305506cc fscrypt_mergeable_bio_bh -EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x306e7c1a i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x307ed950 sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0x30882d27 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x3095af86 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x30a262dc look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x30a5d6cd sdhci_enable_clk -EXPORT_SYMBOL_GPL vmlinux 0x30aa9963 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x30c3b19f pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x30c69b18 nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0x30d3ed64 scsi_free_sgtables -EXPORT_SYMBOL_GPL vmlinux 0x30d41710 snd_dmaengine_pcm_register -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 0x3105974d skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x310b6270 alarm_forward -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 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 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 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 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31ca82df mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x31d51cca __cci_control_port_by_device -EXPORT_SYMBOL_GPL vmlinux 0x31e2e73f do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0x31f0460c skb_mpls_dec_ttl -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 0x3228037c blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x322949f7 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x3244e816 path_noexec -EXPORT_SYMBOL_GPL vmlinux 0x3246de85 mtd_pairing_info_to_wunit -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 0x32757c24 phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x32895eee sdhci_reset -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 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 0x330992b4 clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0x330fce53 rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0x331b9dad irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x33351b8e uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3335ae32 freq_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x3345cec2 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL vmlinux 0x3352f108 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x3365642a watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x3384213b tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0x338cb7c7 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x33916085 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x33a9f2c0 __traceiter_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x33c70a28 iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x33cd2cd6 cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x33cefb23 cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0x33d51acb devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x33d5f238 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x33e3be42 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x33e9e0a2 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x33f80932 fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0x33fbbdaf gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x340529ab evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x341083d6 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x34385b29 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x3439817f of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0x343c8e8c pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash -EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0x344418ae synth_event_create -EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x3451aac3 auxiliary_device_init -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 0x348224f2 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x349926c3 snd_soc_dpcm_can_be_free_stop -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 0x34b3a2c4 sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL vmlinux 0x34baef5b lwtunnel_encap_add_ops -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 0x350cb44a __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x350cfdd6 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait -EXPORT_SYMBOL_GPL vmlinux 0x350fb8cb debugfs_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0x351cc11d snd_soc_lookup_component -EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x352b85c8 ncsi_stop_dev -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 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 0x357da395 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35a43291 pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x35b4ab72 stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0x35c3addc device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x35c4741f spi_async_locked -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 -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -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 0x36364b3c crypto_stats_compress -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 0x3694b262 __traceiter_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x3699e0dc vp_modern_remove -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a8e20f mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x36afe03d crypto_alloc_ahash -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 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 0x36ebae2f devlink_port_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x36ec8a8a nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x36f16c53 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x370149f5 pinconf_generic_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0x3712b5bd crypto_unregister_aead -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 0x37494bee xfrm_audit_state_icvfail -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 0x375bfb94 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x37743b64 iomap_dio_complete -EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state -EXPORT_SYMBOL_GPL vmlinux 0x377dfe04 pm_clk_runtime_suspend -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 0x3798dbf5 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x379e2438 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x37a95760 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x37be9ce5 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0x37c4927b xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0x37d75780 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x37ded7aa snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x37e00980 pci_bridge_emul_cleanup -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 0x380ddf23 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x381166cc rio_mport_class -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 0x38305ba6 udp_destruct_common -EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x383a50f2 regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x384a47d6 ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0x384f2e1c led_trigger_read -EXPORT_SYMBOL_GPL vmlinux 0x3850c33d ata_sas_tport_add -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 0x38aaac9a rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x38b58fec rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x38bdfdb0 fscrypt_set_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x38c0c9e4 btree_update -EXPORT_SYMBOL_GPL vmlinux 0x38c4b114 css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0x38c860ae __traceiter_sched_cpu_capacity_tp -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 0x38f3c303 crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0x38f4e463 mtk_pinconf_bias_get_combo -EXPORT_SYMBOL_GPL vmlinux 0x390e9869 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x391a89ff crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x39215ac8 device_remove_software_node -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 0x39563b4c set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x39607056 device_node_to_regmap -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 0x39a7affc driver_deferred_probe_timeout -EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 0x39b41cd7 __bio_crypt_clone -EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x39d053a9 device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x39d63716 dev_pm_opp_get_freq -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 0x39f86c5a skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0x39fa1d54 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x3a016702 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x3a1c5b23 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x3a23e406 iomap_invalidatepage -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 -EXPORT_SYMBOL_GPL vmlinux 0x3a64adff __pci_epf_register_driver -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 0x3a962dde eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x3a9671dc vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -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 0x3ac81b60 phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ae37168 dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x3af548a6 usb_phy_get_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x3afe7cc2 spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0x3afe8087 __traceiter_pelt_irq_tp -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 0x3b1dc92f of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x3b23cfce blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x3b292d2b of_css -EXPORT_SYMBOL_GPL vmlinux 0x3b31408a tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0x3b354159 tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b59dbf6 tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0x3b5fe0f9 of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0x3b746e81 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x3b8ae28e sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3b99a6c8 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x3b9b3269 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x3bc7648c vp_modern_probe -EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test -EXPORT_SYMBOL_GPL vmlinux 0x3bdc4b00 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x3be1a64b inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3be1d901 netdev_walk_all_lower_dev -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 0x3c0e7644 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x3c137888 sk_clone_lock -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 0x3c2f5cd5 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3c5dce31 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c72724e usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x3c83cd78 get_tree_mtd -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 0x3cd38407 fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x3ce705c0 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL vmlinux 0x3cea8ef4 usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3cf482dd subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3d02dfc5 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0x3d02e556 edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d38e9e1 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x3d3e73fc skcipher_walk_aead_encrypt -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 0x3d71f947 devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0x3d7a2f44 sysfs_create_bin_file -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 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 0x3dbd81a4 mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x3dc038b5 event_triggers_call -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 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 0x3e4f36f7 tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x3e59f122 serial8250_rpm_put -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 0x3e976bbd pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x3e99bf9a platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x3e99bfad ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x3eaec322 nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x3ec40239 idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0x3ec675c7 fat_time_fat2unix -EXPORT_SYMBOL_GPL vmlinux 0x3ee8ef3b of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -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 0x3f060887 __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x3f0a43e0 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x3f15534c snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL vmlinux 0x3f1fc44a rockchip_clk_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3f2472ba devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0x3f2b2388 sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0x3f2eddf3 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x3f305915 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x3f43cd44 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f5eb4d9 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL vmlinux 0x3f70c099 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put -EXPORT_SYMBOL_GPL vmlinux 0x3fdbb432 serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0x3fdfa143 dev_pm_genpd_set_next_wakeup -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 0x3ff6f56d bio_add_zone_append_page -EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free -EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x400c64dd blk_ksm_intersect_modes -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 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 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 -EXPORT_SYMBOL_GPL vmlinux 0x4089ac91 cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0x408af6ac regulator_set_voltage_sel_regmap -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 0x40b4ad7b devm_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x40b7d7d5 dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0x40b9ab3b synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0x40bc717c hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x40c3c8d1 __tracepoint_block_rq_insert -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 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 -EXPORT_SYMBOL_GPL vmlinux 0x412d54be ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x412db797 phy_check_downshift -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 0x419e23e1 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop -EXPORT_SYMBOL_GPL vmlinux 0x41a68a89 dst_blackhole_mtu -EXPORT_SYMBOL_GPL vmlinux 0x41b68d1d to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue -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 0x41d9d2cc skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x41ddb9ab usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -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 0x420be8b8 dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4243bd7f switchdev_handle_port_attr_set -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 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42932c2f addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0x42950c2a snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL vmlinux 0x429bf07f devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0x42b9817e ata_sff_lost_interrupt -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 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 0x432df9e0 invalidate_inode_pages2 -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 0x436abc06 iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit -EXPORT_SYMBOL_GPL vmlinux 0x436e0c18 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x4377ed45 bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x4384a77e irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x4394fa77 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43b1bddc crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x43bfda3f gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0x43c2a86f sk_psock_tls_strp_read -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 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 0x4401e6c2 mpi_cmpabs -EXPORT_SYMBOL_GPL vmlinux 0x4408dc27 trace_event_buffer_reserve -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 0x4432c5d5 blk_mark_disk_dead -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 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 0x449d69be pinctrl_generic_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x44a39ec1 regulator_set_ramp_delay_regmap -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -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 0x44da86b5 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0x44f8bbf5 dma_buf_mmap -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 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 0x453217a7 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x4534eb43 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x453bb5c9 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x454236ed regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x45425668 __traceiter_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x45464035 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x454e2253 led_set_brightness -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 -EXPORT_SYMBOL_GPL vmlinux 0x455de587 mtd_get_user_prot_info -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 0x4579f919 pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0x45af85c5 pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0x45b7d4ea user_update -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 0x45d65e91 ima_inode_hash -EXPORT_SYMBOL_GPL vmlinux 0x45e17736 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x45f1b700 snd_soc_remove_pcm_runtime -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 0x460ec63e mptcp_get_reset_option -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 0x4625629d snd_soc_add_pcm_runtime -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 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 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 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46964fe6 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x46b8fc62 dma_buf_move_notify -EXPORT_SYMBOL_GPL vmlinux 0x46c06c19 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x46dc38d8 gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x46f54d56 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x471a8899 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x4728f5cb dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x47317949 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x473e545f crypto_enqueue_request_head -EXPORT_SYMBOL_GPL vmlinux 0x474843cc sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -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 -EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x479165e2 balloon_page_list_dequeue -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 0x47a0f7d1 bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x47aa2f0f tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47be2b5a bio_end_io_acct_remapped -EXPORT_SYMBOL_GPL vmlinux 0x47c6c3b5 mtk_pinconf_drive_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x47c9c7f5 trace_array_get_by_name -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 0x47f2441a snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0x47f3caad pci_find_next_capability -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 0x48306ffe ahci_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x4833df88 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x483ed4fd device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0x484779ef __i2c_board_lock -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 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 0x4903566f devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x4908204b devm_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x491d67be input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x49213559 perf_trace_run_bpf_submit -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 0x49527514 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x497951e9 ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0x49830f0e __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x498466fb devlink_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x499639ad netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0x499a9b45 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x49a7c18e dbs_update -EXPORT_SYMBOL_GPL vmlinux 0x49b0dc84 pm_runtime_suspended_time -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 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 0x4a073dbc virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a225c9a dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x4a22ba51 meson_pmx_get_func_name -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 0x4a40f904 fsnotify_alloc_user_group -EXPORT_SYMBOL_GPL vmlinux 0x4a49421f rtnl_link_register -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 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 0x4a8f2ee2 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x4aab29e5 dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x4ad055e5 devm_kmemdup -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 0x4aed842a subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x4b168134 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4b1d451e crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x4b322e95 snd_soc_dapm_add_routes -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 0x4b770b24 mtd_lock -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 0x4bb55424 input_device_enabled -EXPORT_SYMBOL_GPL vmlinux 0x4bb77374 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x4bbe2cd1 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0x4bd863d2 dm_hold -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 0x4bfb6506 of_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x4c0137a7 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x4c0ef0a3 usb_hcd_pci_probe -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 0x4c4c7351 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x4c54424d snd_ctl_activate_id -EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -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 0x4c7c9aba input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x4c7e5991 rockchip_pcie_deinit_phys -EXPORT_SYMBOL_GPL vmlinux 0x4c861a88 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x4c889d6e sk_msg_free -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 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -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 0x4d0ec5d4 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x4d21bbbf ptp_classify_raw -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 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 0x4d60933c regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get -EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d73e00e bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4d921f9c ip6_dst_lookup_tunnel -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 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 0x4de4fed4 sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x4de81680 of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff -EXPORT_SYMBOL_GPL vmlinux 0x4e045495 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x4e073000 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x4e0c314a phy_led_triggers_unregister -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 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 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 0x4e76be07 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x4e85fb82 bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0x4e9777a7 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x4e9ac74c handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -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 0x4f073a90 inet6_hash_connect -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 0x4f3ba219 blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0x4f45be49 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x4f4efe43 devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x4f4faa99 devlink_port_attrs_set -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 0x4f98d766 cpu_pm_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4f9d753d mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x4fa3ebfb security_file_permission -EXPORT_SYMBOL_GPL vmlinux 0x4fa4cc86 usb_gadget_activate -EXPORT_SYMBOL_GPL vmlinux 0x4fa60f38 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x4fb6dff4 __ip6_local_out -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 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fec1f83 sfp_register_socket -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 0x50135c48 generic_fh_to_parent -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 0x50540dda devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x50548412 spi_take_timestamp_pre -EXPORT_SYMBOL_GPL vmlinux 0x505ac2a4 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x505b9a8c inet6_hash -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 0x50797123 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x50841dee synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0x508afef4 usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x508c97ca iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0x5090bc7f fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50991480 sched_trace_rq_cpu_capacity -EXPORT_SYMBOL_GPL vmlinux 0x509d5f55 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x50a2b4c2 pci_add_dynid -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 0x50c89f23 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x50c985b3 spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0x50cbfaf2 devm_fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x50d08c22 ahci_handle_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x50d4324e snd_soc_dai_active -EXPORT_SYMBOL_GPL vmlinux 0x50d78da6 get_task_mm -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 0x5109a55f tun_get_tx_ring -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 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 0x514ee89f peernet2id_alloc -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 0x51645ca1 icc_sync_state -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 0x5181b520 fib_add_nexthop -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 0x51bd9dcf usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x51c43a6b spi_res_release -EXPORT_SYMBOL_GPL vmlinux 0x51c4ebab pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0x51c8eb58 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x51d5c2cb snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL vmlinux 0x51d7405d snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL vmlinux 0x51da8801 blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x51dcd368 ndo_dflt_bridge_getlink -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 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock -EXPORT_SYMBOL_GPL vmlinux 0x523d4477 devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x5253925e pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x525c67b4 dw_pcie_ep_init -EXPORT_SYMBOL_GPL vmlinux 0x5269009f rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x526e17c3 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x526f58b7 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x52770775 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x52794a0e __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5282c4c3 blk_ksm_update_capabilities -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 -EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags -EXPORT_SYMBOL_GPL vmlinux 0x52b38d51 mtk_pinconf_adv_drive_set -EXPORT_SYMBOL_GPL vmlinux 0x52b3e8a1 is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace -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 0x52e4f8da __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0x52f55c4c irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x52f688de sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL vmlinux 0x530f145b __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0x532ba63d of_phandle_iterator_init -EXPORT_SYMBOL_GPL vmlinux 0x5336e8bf iommu_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x535137d5 find_vpid -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 0x5391a14c ping_recvmsg -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 0x53a0e126 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x53aa461a usb_control_msg_recv -EXPORT_SYMBOL_GPL vmlinux 0x53b76fa6 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL vmlinux 0x53c87ed3 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x53cc1661 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x53f03a13 __of_reset_control_get -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 0x54750068 da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0x547ef2d1 debugfs_create_x32 -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 0x54a9fc07 sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x54cc61dc nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0x54d7aeb4 iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0x54d9a120 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x54f60ce3 rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0x550d3d57 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -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 0x5543db69 strp_stop -EXPORT_SYMBOL_GPL vmlinux 0x5544680b tc3589x_reg_read -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 0x55846d8c crypto_stats_rng_seed -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 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 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 0x55d9e20d snd_soc_resume -EXPORT_SYMBOL_GPL vmlinux 0x55db637d nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x55e34789 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -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 0x560e0d7f ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x560e5147 genpd_dev_pm_attach_by_id -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 0x5634358b bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x563bd53a param_set_bool_enable_only -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 0x56533f95 perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0x565385a2 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x56686aa0 fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x56a20d91 serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0x56a6a76c net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x56a6ec70 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x56a9fc8d pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x56af5d34 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x56b9c36b of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0x56b9f79d fixed_phy_register_with_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x56c2474c ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x56c2976e __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0x56c3da27 iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter -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 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 0x5756be8b bus_rescan_devices -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 0x578d1bdf i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x57919a0e icc_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x5793d98a dst_blackhole_redirect -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 -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 0x57d209cb skb_clone_tx_timestamp -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 0x57e7a61f spi_res_alloc -EXPORT_SYMBOL_GPL vmlinux 0x57e7c973 platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x57f74cfb __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x57f9056e devlink_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0x57ffc56b sdhci_pltfm_register -EXPORT_SYMBOL_GPL vmlinux 0x5803d545 mdiobus_modify -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 0x582330ea sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0x58233b07 sdhci_set_power -EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x583ae023 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x583f3407 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x585248f7 nand_decode_ext_id -EXPORT_SYMBOL_GPL vmlinux 0x585bf183 gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0x586673db mtk_eint_do_init -EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x587ac04d cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0x5886d374 tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0x58a669a0 mtd_block_isbad -EXPORT_SYMBOL_GPL vmlinux 0x58aab7cf icc_node_del -EXPORT_SYMBOL_GPL vmlinux 0x58b6f61e __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0x58c51931 fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0x58d1221b sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x58dd16f7 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58e132e4 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x58f0308a clk_regmap_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x58facb33 sch_frag_xmit_hook -EXPORT_SYMBOL_GPL vmlinux 0x5909f832 musb_set_host -EXPORT_SYMBOL_GPL vmlinux 0x590a2198 fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0x590cb59b clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0x59244afc fwnode_count_parents -EXPORT_SYMBOL_GPL vmlinux 0x593d5618 mmc_cmdq_disable -EXPORT_SYMBOL_GPL vmlinux 0x5946279d pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x595c5ec3 devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0x596cf788 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x597ff08b skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x5983cb35 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x598c349b __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x59a1fab8 ehci_cf_port_reset_rwsem -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 0x59bc0b4c devlink_rate_nodes_destroy -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 0x59cd7216 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x59db7941 tcp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x59e15621 lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm -EXPORT_SYMBOL_GPL vmlinux 0x59f66ee7 usb_gadget_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x59f9ac8b ehci_resume -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 0x5a355ebb rio_attach_device -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 0x5a5d44e8 set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0x5a635120 __traceiter_xdp_exception -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 0x5aa19613 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5ac601ae snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL vmlinux 0x5ac8ba60 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x5aceaa43 hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x5ad0ab1d serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x5ada5898 query_asymmetric_key -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 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b228b1c skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x5b316080 software_node_unregister_nodes -EXPORT_SYMBOL_GPL vmlinux 0x5b3bdea8 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x5b4cb969 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x5b5a009c show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x5b5fe681 snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL vmlinux 0x5b66fd98 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b6cd2dd debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x5b95004d regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x5b994e71 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x5ba3c3fa snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL vmlinux 0x5bba1757 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5bba3272 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x5bc93975 of_fdt_unflatten_tree -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 0x5bd10633 meson_pmx_get_funcs_count -EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode -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 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 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c5a9860 synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5c75dafe pinctrl_find_gpio_range_from_pin -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 0x5c925805 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x5c9fadd0 stmpe_block_read -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 0x5cb7b8aa nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x5cc2a511 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x5cc41334 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x5cd8bc21 sdhci_cleanup_host -EXPORT_SYMBOL_GPL vmlinux 0x5ce2010d shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0x5cec6a59 __cpuhp_state_remove_instance -EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5cee36bb uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x5d07dff5 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x5d0a0eff __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x5d142ea5 kthread_park -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 0x5d2bc42a reset_control_rearm -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 0x5d59a988 security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x5d5aa466 snd_pcm_stream_lock -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 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 0x5dd0a528 pci_generic_ecam_ops -EXPORT_SYMBOL_GPL vmlinux 0x5de13577 __traceiter_devlink_hwmsg -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 0x5e2ecbc0 raw_hash_sk -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 0x5e67b71d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5e7c20e2 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x5e7d72b7 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x5e7dc25c pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5e9b360c cros_ec_check_features -EXPORT_SYMBOL_GPL vmlinux 0x5ea1131c inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x5eac7b06 ipv6_stub -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 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 0x5ef0adf3 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x5f1ca7b9 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0x5f227d98 skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f320491 dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x5f3a59b6 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x5f41e0ea ipv4_sk_redirect -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 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 0x5fa2b5fc inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point -EXPORT_SYMBOL_GPL vmlinux 0x5faf2ac2 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x5fba329b bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x5fbe1750 snd_soc_component_read_field -EXPORT_SYMBOL_GPL vmlinux 0x5fc294ef usb_ep_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x5fd65b1f snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL vmlinux 0x5fe12e23 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x5ffe9aa7 __tracepoint_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6004710c dev_pm_opp_get_opp_count -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 0x601c301a edac_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0x602e9780 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x604af21f dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0x60606431 kernel_read_file_from_path_initns -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 0x6091797f synchronize_rcu -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 -EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x60eebee9 elv_register -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 0x611c9eee fib_new_table -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 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 0x612cb86e skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0x612fa077 kthread_unuse_mm -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 0x61765fd0 cpufreq_cpu_get_raw -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 0x619af7e3 i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0x619ba057 pci_platform_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x61a36362 sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x61aa42e9 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x61c3bc66 validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0x61dc0f4f skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0x61df285c snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL vmlinux 0x61e65e83 ip6_sk_redirect -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 0x62090ec8 l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0x621e7f4d bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule -EXPORT_SYMBOL_GPL vmlinux 0x6243014f __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x624f9d07 __traceiter_neigh_cleanup_and_release -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 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 0x627addfd pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x6288de33 synth_event_trace -EXPORT_SYMBOL_GPL vmlinux 0x62aa00e7 dapm_regulator_event -EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62ca5e00 pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0x62d0e2a6 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x62e1a0be crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x62f72ec0 msg_zerocopy_callback -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 -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x632389ba of_remove_property -EXPORT_SYMBOL_GPL vmlinux 0x6329715a md_start -EXPORT_SYMBOL_GPL vmlinux 0x633904d8 pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x633cb2c6 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x633e44e5 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x6342d8e5 of_icc_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x634f2f18 ip_route_output_tunnel -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 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 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63cdf756 snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL vmlinux 0x63f07008 pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0x63f2f7a1 blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x6410712d kick_process -EXPORT_SYMBOL_GPL vmlinux 0x6411c1a8 pin_get_name -EXPORT_SYMBOL_GPL vmlinux 0x64131a6e usb_add_hcd -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 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 0x64599708 sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0x646b44d1 crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0x6470d77a snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x64773a6c shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x647b4fde switchdev_handle_fdb_add_to_device -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 0x64ac4986 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x64b6ea98 yield_to -EXPORT_SYMBOL_GPL vmlinux 0x64c07d32 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x64c1b22d ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x64c3c03c rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x64cdf082 xas_load -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 0x64ea74b4 netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x6505e785 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x65137662 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x65142c96 bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0x651ee67b srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x651ffe85 serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0x6523c948 vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x6540d278 rdev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x654d7d21 devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x65b51883 fuse_dev_operations -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 0x65d21402 crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x65e40dd8 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x65ea3d0a regmap_fields_update_bits_base -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 -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 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 0x669c31ea msg_zerocopy_alloc -EXPORT_SYMBOL_GPL vmlinux 0x66a1ebcd devlink_port_type_ib_set -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 0x66c5769e crypto_stats_kpp_generate_public_key -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 -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 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 0x673cbe5d locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x673f09b1 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x673f3b0c devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x674908d6 of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0x6752f912 __devm_rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0x677a6a54 phy_get -EXPORT_SYMBOL_GPL vmlinux 0x6781513c __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -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 0x67fb871d dev_pm_opp_of_find_icc_paths -EXPORT_SYMBOL_GPL vmlinux 0x67fde719 tps65912_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x68200444 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x6847fc6a usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x68758fda nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x687b5d45 lwtunnel_build_state -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 0x68b3423f __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x68b561c2 simple_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0x68ca4231 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x68e094dc regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x68eeccfb pci_get_dsn -EXPORT_SYMBOL_GPL vmlinux 0x68fd6cde thermal_zone_get_temp -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 0x691e1571 netlink_strict_get_check -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 0x6959c4af shash_free_singlespawn_instance -EXPORT_SYMBOL_GPL vmlinux 0x6959c95a wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x695bf5e9 hrtimer_cancel -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 0x69928b17 vp_modern_set_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x6994672b of_led_get -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 0x69f6f8f5 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a0b9e0c xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a1c3bdc bpf_prog_free -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 0x6a40d22c regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -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 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 0x6ade1296 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x6ae00aa0 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x6af8c6dc musb_writel -EXPORT_SYMBOL_GPL vmlinux 0x6b175767 __sdhci_read_caps -EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors -EXPORT_SYMBOL_GPL vmlinux 0x6b271f6a perf_event_create_kernel_counter -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 0x6b50cae0 of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x6b5519ae __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b89a52c serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0x6bb8699b pci_iomap_wc -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 -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 0x6c253efd usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x6c27650b dma_buf_pin -EXPORT_SYMBOL_GPL vmlinux 0x6c345d73 __traceiter_neigh_event_send_dead -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 0x6c4a53cd xfrm_dev_offload_ok -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 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 0x6c8b3ec8 switchdev_port_attr_set -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 0x6cbf5d52 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x6cd17e49 zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0x6ce12f94 nvmem_cell_read_variable_le_u32 -EXPORT_SYMBOL_GPL vmlinux 0x6ce80997 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x6d001d21 __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x6d03036a sched_setattr_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x6d03cdf9 __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user -EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -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 0x6d2bd0a5 devm_mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit -EXPORT_SYMBOL_GPL vmlinux 0x6d4e863b dma_vmap_noncontiguous -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 0x6daa9bca device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x6daca35e pinctrl_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -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 0x6dd8d0c5 sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0x6ddd1385 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x6de379a8 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x6de7d404 ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x6df178cd extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0x6e1a5ea2 sdhci_pltfm_free -EXPORT_SYMBOL_GPL vmlinux 0x6e201e68 rio_mport_write_config_8 -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 -EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free -EXPORT_SYMBOL_GPL vmlinux 0x6e635087 percpu_ref_exit -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 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 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f18d8df rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -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 0x6f8515bc dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x6f8cadbf sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0x6f8ef77f devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -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 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 0x70038bf2 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -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 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 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 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 0x70a12db3 security_path_chmod -EXPORT_SYMBOL_GPL vmlinux 0x70ac8aeb watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x70b5872f regmap_write -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 -EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time -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 0x70e93727 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x70ebe45c tcpv6_prot -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 0x70fef5ad free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x71171202 blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0x711b912f cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x71246380 pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x71306ac1 bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0x7143b7b7 of_nvmem_cell_get -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 0x7174ac83 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x71832b1d fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0x7193c6d5 __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x719a5e41 musb_readw -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x71a9a3ab mtk_mutex_acquire -EXPORT_SYMBOL_GPL vmlinux 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 0x71c8345a sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0x71fdc9f7 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x721a5dbc iomap_finish_ioends -EXPORT_SYMBOL_GPL vmlinux 0x721dd348 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x72299880 devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x7236bdf8 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x7238260e __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x724ce2a2 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x725dd417 devlink_param_unpublish -EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page -EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x72869ff1 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x72885eaa simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x7288a595 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x7292ec95 pci_vpd_alloc -EXPORT_SYMBOL_GPL vmlinux 0x72979b5c nd_tbl -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 0x72ca8386 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x72cf77c8 power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x72eb69f3 devm_hwrng_unregister -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 0x73119f17 mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL vmlinux 0x7326591b snd_soc_of_get_dai_name -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 0x73544e72 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x735c1834 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x736157cc ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x73675ae0 mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0x7393140b __class_register -EXPORT_SYMBOL_GPL vmlinux 0x73973a90 snd_soc_of_get_dai_link_codecs -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 0x73b98231 asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73e2cb36 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x73e73d56 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x73edf797 nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x73ee86d6 mtd_ooblayout_free -EXPORT_SYMBOL_GPL vmlinux 0x73f04acb devres_get -EXPORT_SYMBOL_GPL vmlinux 0x73fba42d inet_csk_listen_stop -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 0x74140e78 bio_start_io_acct -EXPORT_SYMBOL_GPL vmlinux 0x741f23d7 md_run -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x7459a3ec cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x7464adde __traceiter_br_fdb_external_learn_add -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 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 0x74926fc8 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x749bcd45 syscon_regmap_lookup_by_phandle_optional -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 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 0x751076b7 inet_send_prepare -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 0x752acfb1 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x753e7420 irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0x754b95e6 i2c_dw_validate_speed -EXPORT_SYMBOL_GPL vmlinux 0x755069f2 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0x755ae3c8 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x755c8dcb crypto_enqueue_request -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 0x759a150d __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0x75a3c746 irq_set_chained_handler_and_data -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 0x75bf6cc0 is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0x75cbe020 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove -EXPORT_SYMBOL_GPL vmlinux 0x75dfdd98 irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x75e5a76f ipv6_opt_accepted -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 0x75fb9062 arch_timer_read_counter -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 -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 0x7699d008 sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x76ab21db irq_gc_mask_set_bit -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 0x76e10a88 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76fb6e47 bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0x77021be7 switchdev_bridge_port_unoffload -EXPORT_SYMBOL_GPL vmlinux 0x770295da dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x7710e618 rockchip_pcie_enable_clocks -EXPORT_SYMBOL_GPL vmlinux 0x77135742 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL vmlinux 0x77151da0 switchdev_handle_fdb_del_to_device -EXPORT_SYMBOL_GPL vmlinux 0x7717f789 nand_reset -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 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 0x77728790 ping_hash -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 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 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77d23ebb tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0x77d61b84 dev_pm_opp_enable -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 0x77f2cb1f mmput -EXPORT_SYMBOL_GPL vmlinux 0x782f965e alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0x783aef18 fscrypt_d_revalidate -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 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 0x78acb286 __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x78acdfae __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x78c006bc usb_get_phy -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 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 0x791cd1b5 pinmux_generic_get_function_groups -EXPORT_SYMBOL_GPL vmlinux 0x79306200 __fput_sync -EXPORT_SYMBOL_GPL vmlinux 0x793a93dc raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x793b14ac irq_chip_disable_parent -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 0x795ede44 of_pm_clk_add_clks -EXPORT_SYMBOL_GPL vmlinux 0x79606e58 __devm_clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x796c1ad5 trace_array_put -EXPORT_SYMBOL_GPL vmlinux 0x797cba75 nanddev_mtd_erase -EXPORT_SYMBOL_GPL vmlinux 0x7980f1ed add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x7982ca65 snd_soc_component_initialize -EXPORT_SYMBOL_GPL vmlinux 0x798a6b50 badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0x79b1182a meson_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0x79b89110 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x79b8e414 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL vmlinux 0x79be905b icc_provider_del -EXPORT_SYMBOL_GPL vmlinux 0x79c9a378 pci_epc_multi_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x79d6e39e crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -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 0x7a180534 __dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x7a30e651 fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table -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 0x7a5a9d54 sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0x7a71b84f __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -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 0x7a93be3e crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7ab14677 usb_put_intf -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 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 0x7b2a7a5b crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x7b3a3df0 devres_release -EXPORT_SYMBOL_GPL vmlinux 0x7b3c9c14 devm_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x7b462982 of_add_property -EXPORT_SYMBOL_GPL vmlinux 0x7b475bdb dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b5da0cb mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x7b68d7a2 devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0x7b787e75 pinctrl_select_state -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 0x7b9c0c21 dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x7ba06fd8 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bb50cae spi_res_add -EXPORT_SYMBOL_GPL vmlinux 0x7bc2392f usb_for_each_dev -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 0x7bdd9587 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x7bdef8e4 dev_attr_ncq_prio_supported -EXPORT_SYMBOL_GPL vmlinux 0x7be89624 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL vmlinux 0x7c05a829 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7c08c24e gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0x7c2c523e __traceiter_neigh_update_done -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 0x7c5968da disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x7c715840 pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x7c80a889 usb_disable_xhci_ports -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 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 0x7cbd4107 led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x7cbd7b9b mtk_pinconf_adv_pull_set -EXPORT_SYMBOL_GPL vmlinux 0x7cd19445 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x7cd53b85 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x7cd5ce67 pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -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 -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 0x7d2d58e4 snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL vmlinux 0x7d4718bf crypto_req_done -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 0x7d89435b __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7d96f097 crypto_grab_shash -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 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 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e3d6b86 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x7e434ad5 fsnotify_find_mark -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 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 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 0x7eba243f inet_csk_route_child_sock -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 0x7ed47c3e ncsi_start_dev -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 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 0x7f464b91 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL vmlinux 0x7f4a86b4 pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0x7f5d602f tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0x7f613310 extcon_set_state_sync -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f8dd2bb bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x7fa4c439 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x7fafdec9 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0x7fb33f0e cros_ec_get_sensor_count -EXPORT_SYMBOL_GPL vmlinux 0x7fbfc5f9 mptcp_subflow_init_cookie_req -EXPORT_SYMBOL_GPL vmlinux 0x7fd47993 dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0x7fd6bb11 crypto_stats_akcipher_decrypt -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 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 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 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80b17b75 omap_get_plat_info -EXPORT_SYMBOL_GPL vmlinux 0x80b800ca xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x80b8b091 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x80bd84bc sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x80c06441 sched_set_fifo -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80c8f15d ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x80cf5223 tcp_register_congestion_control -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 0x80fb081a dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0x80fe05b3 rio_route_clr_table -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 0x812e93c1 debugfs_create_file_size -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 0x815b6b8c ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x816094bf switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0x816258a4 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x816572eb ping_get_port -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 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 0x819fe250 iommu_alloc_resv_region -EXPORT_SYMBOL_GPL vmlinux 0x81a19802 pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x81bc4e84 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x81bd823f mptcp_pm_get_add_addr_accept_max -EXPORT_SYMBOL_GPL vmlinux 0x81c4d376 of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0x81e115ee devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x81ebb336 skb_morph -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 0x8205e385 ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0x82069f7b ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x821ec7f1 clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x8220cde3 __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings -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 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 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 0x82b74e4c get_task_pid -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 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 0x8339df73 klist_add_behind -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 0x839e087b dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0x839eb1d3 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x83a4951f scsi_host_complete_all_commands -EXPORT_SYMBOL_GPL vmlinux 0x83af7d93 dev_pm_opp_find_level_ceil -EXPORT_SYMBOL_GPL vmlinux 0x83cf2a03 fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0x83d717e3 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x83d718af devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x83ded9f6 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x83f95257 virtqueue_poll -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 0x8411fc6e qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -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 0x845bcd5b __traceiter_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x845bf795 dm_start_time_ns_from_clone -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 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 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 0x84db87bf led_init_default_state_get -EXPORT_SYMBOL_GPL vmlinux 0x84e5f0ba cgroup_get_from_fd -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 0x85113838 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x85286ef7 fat_get_dotdot_entry -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 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 0x8583cefb pci_aer_clear_nonfatal_status -EXPORT_SYMBOL_GPL vmlinux 0x858b475c devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x85a847f2 omap_iommu_save_ctx -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 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 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 0x860044f1 devlink_trap_groups_register -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 0x86102f35 sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array -EXPORT_SYMBOL_GPL vmlinux 0x863aa7fd transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x86442f67 cpts_register -EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x865d43d3 security_kernel_post_read_file -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 0x867f1db6 ping_err -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 0x86a22d97 musb_set_peripheral -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 0x86dda6ef rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0x86e56bb0 rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x86e7a634 alarm_start_relative -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 0x87092a45 __traceiter_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x870d9782 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x872c7577 tps65217_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x873f41c1 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x8747185c ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x874862a9 bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0x8751fd6f irq_create_of_mapping -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 0x8786cb99 skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0x8793444c crypto_register_instance -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 0x87c45eaa blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x87e6f034 crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0x87f7b21d pcie_reset_flr -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 0x881c3a96 pci_status_get_and_clear_errors -EXPORT_SYMBOL_GPL vmlinux 0x882077d5 usb_ep_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x8832e9d4 device_move -EXPORT_SYMBOL_GPL vmlinux 0x8836ec46 devlink_port_params_register -EXPORT_SYMBOL_GPL vmlinux 0x884c07ce usb_add_gadget_udc -EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -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 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88ac55c5 iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88b7e096 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x88be4e9b xfrm_audit_policy_add -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 0x88de7579 skb_gso_validate_network_len -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 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 0x8940e462 usb_hcd_unlink_urb_from_ep -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 0x896dee2c rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0x896f275c __sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x8971b72b strp_init -EXPORT_SYMBOL_GPL vmlinux 0x897ed955 regulator_set_pull_down_regmap -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 0x89ca3b31 cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x89cdae3d __tracepoint_neigh_timer_handler -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 0x8a182607 of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0x8a296863 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x8a392266 inet6_sock_destruct -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 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a69ad3b sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL vmlinux 0x8a812555 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8a92f800 led_trigger_register -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 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 0x8b3f49e9 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x8b529ce4 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x8b56e085 usb_string -EXPORT_SYMBOL_GPL vmlinux 0x8b5b8d3c switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release -EXPORT_SYMBOL_GPL vmlinux 0x8b69c183 skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x8b7558e4 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x8bae44bf badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0x8bc64e14 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x8bd25958 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x8bd456a6 devm_gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0x8be28777 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0x8bfcdcac fib_nl_delrule -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 0x8c1564d6 ipv4_redirect -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 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 0x8c7cd63a rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c943a11 hisi_reset_init -EXPORT_SYMBOL_GPL vmlinux 0x8c95450b debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x8c96a33c devlink_params_unpublish -EXPORT_SYMBOL_GPL vmlinux 0x8ca72e0b dma_buf_unmap_attachment -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 0x8d06609d regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x8d20046d xhci_add_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d4658d8 ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0x8d615c1d snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL vmlinux 0x8d63c03f scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x8d75e44e security_path_rmdir -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 0x8da93f0e snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL vmlinux 0x8dae01d6 ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0x8dba1e2c wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8dc11669 lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0x8dc6d507 ip6_update_pmtu -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 0x8df3245b spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8e1774c0 component_add -EXPORT_SYMBOL_GPL vmlinux 0x8e18c321 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x8e27f7a7 rtnl_delete_link -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 0x8e5ac46c pl08x_filter_id -EXPORT_SYMBOL_GPL vmlinux 0x8e5bc30a register_mtd_blktrans -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 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 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 0x8ed0ae86 of_icc_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x8edd86be snd_soc_register_card -EXPORT_SYMBOL_GPL vmlinux 0x8ee83cbf perf_pmu_register -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 0x8f415396 i2c_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f719d52 sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0x8f725e67 probes_decode_arm_table -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 0x8f8193de regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x8f834726 blockdev_superblock -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 0x8fc090a3 __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x8fc6fa62 crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0x8fd8ab6e usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL vmlinux 0x8fe2db43 virtqueue_enable_cb_prepare -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 -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 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 0x908845b4 nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x908a020b vp_modern_queue_address -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 0x90b5191f pci_epf_remove_vepf -EXPORT_SYMBOL_GPL vmlinux 0x90b7fe00 rio_pw_enable -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 0x90ea0333 mtk_pinconf_bias_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x90eb346f transport_setup_device -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 0x91519a16 dev_pm_opp_of_cpumask_add_table -EXPORT_SYMBOL_GPL vmlinux 0x91637e86 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0x918505cf nand_reset_op -EXPORT_SYMBOL_GPL vmlinux 0x918c4669 devlink_dpipe_table_resource_set -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 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 0x91ea8726 asn1_encode_boolean -EXPORT_SYMBOL_GPL vmlinux 0x91eac764 mpi_print -EXPORT_SYMBOL_GPL vmlinux 0x91f209ae __clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x91f90a01 crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0x920bba95 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL vmlinux 0x92208c7f gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x923b4c81 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x923d607b udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x9250f761 crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x927961e5 rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x927baedc snd_fasync_helper -EXPORT_SYMBOL_GPL vmlinux 0x929110ff usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x92a0cdc2 strp_check_rcv -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 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 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 0x9321ef0d usb_del_gadget_udc -EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve -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 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 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 0x93bef335 ip_icmp_error_rfc4884 -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 0x93cf7752 nf_queue -EXPORT_SYMBOL_GPL vmlinux 0x93d6e3ca perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x93d9c9ff posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x93f2de8f sbitmap_weight -EXPORT_SYMBOL_GPL vmlinux 0x93f39d21 devlink_free -EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap -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 0x943740ed srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x943ea691 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x944f0ac3 crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock -EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x946ee0b4 crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0x9486bbdd debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x9495876a ahci_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x949d248d icc_std_aggregate -EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0x94c31924 phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x94f41c58 devm_platform_get_irqs_affinity -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 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x9526ba9c pci_d3cold_enable -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 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x956194fe mtk_pinconf_adv_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0x956909f9 snd_dmaengine_pcm_request_channel -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 0x959b5d39 of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0x959d991c blk_revalidate_disk_zones -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 0x95d8f4b8 omap_iommu_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0x95e7640a devlink_dpipe_entry_ctx_prepare -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 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 0x9622e072 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x9633e67a skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x963ac39f platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0x963e46ad nfs_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9653ee18 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x966fc7cf of_dma_simple_xlate -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 0x968af340 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin -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 0x96dd8b62 sdhci_get_property -EXPORT_SYMBOL_GPL vmlinux 0x96e248c4 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x9703666a extcon_set_property -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 0x97344db1 xfrm_state_afinfo_get_rcu -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 0x974f2641 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x9757f1ff msg_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0x9769b98b pci_set_host_bridge_release -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 0x97b6a87c __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x97b87ee5 pm_clk_remove_clk -EXPORT_SYMBOL_GPL vmlinux 0x97bfaf62 regulator_is_equal -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 0x9806f527 devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0x9809e8d5 iomap_ioend_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x980cc0ad ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x98191390 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x981f90a0 uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x98311ea2 tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x983ed1cf phy_restore_page -EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x98446bcc inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x9849a905 __traceiter_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x984f8bcc dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -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 0x988809c8 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x988d9af6 __netdev_watchdog_up -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 0x989e1109 tcp_set_keepalive -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 0x98d1bb23 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0x98dfa5a5 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98fe6251 __traceiter_unmap -EXPORT_SYMBOL_GPL vmlinux 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 0x9948323e gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg -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 0x99a0004b snd_soc_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x99b7191f dynevent_create -EXPORT_SYMBOL_GPL vmlinux 0x99c29005 fsverity_file_open -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 0x99e06a60 fib_rules_dump -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 0x99f9cd79 clk_hw_get_parent_index -EXPORT_SYMBOL_GPL vmlinux 0x99fddc81 espintcp_push_skb -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 0x9a401fab usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9a4137ea key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x9a43a1b4 net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0x9a5abc95 crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0x9a5b1e1e ethnl_cable_test_step -EXPORT_SYMBOL_GPL vmlinux 0x9a85b0ea device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x9a8a37e4 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x9a8aa341 mtk_hw_get_value -EXPORT_SYMBOL_GPL vmlinux 0x9a9e89eb pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ada16ce skb_segment -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 0x9b053a5d regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x9b195846 dev_pm_genpd_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9b2ac8cb __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x9b323605 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x9b43802e skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x9b53a212 dst_blackhole_update_pmtu -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 -EXPORT_SYMBOL_GPL vmlinux 0x9b6a625a snd_soc_bytes_get -EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x9b746c56 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL vmlinux 0x9b77d13e devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x9b7c672b udp4_hwcsum -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 0x9bcf9f7d housekeeping_enabled -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 0x9c01378e perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0x9c14e66f pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x9c1c9f07 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x9c38310f mptcp_pm_get_add_addr_signal_max -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 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c84a457 bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x9c86eb2b tcp_done -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 0x9cc066ee uart_try_toggle_sysrq -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cd69346 rtnl_link_unregister -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 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 0x9d37e026 devlink_params_unregister -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 0x9d7189f3 dev_pm_opp_set_opp -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 0x9dafcf04 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x9db5531f dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x9db8dba2 sched_trace_rq_avg_dl -EXPORT_SYMBOL_GPL vmlinux 0x9db9d599 devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x9de2c305 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x9dececb6 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0x9dffa665 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0x9e016686 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x9e1496ac devm_pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x9e1d8254 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x9e2fadde nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL vmlinux 0x9e369786 snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e581a22 shmem_file_setup -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 0x9e9203c4 devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x9e9dd888 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x9eab5b20 software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x9eacc6b9 sk_msg_recvmsg -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 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 0x9ed4ef41 wwan_unregister_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ed53c49 fat_update_time -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ee5e40a __ktime_divns -EXPORT_SYMBOL_GPL vmlinux 0x9ee7f8e7 extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0x9eea4fc0 crypto_alloc_skcipher -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 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 0x9f5e3435 proc_create_net_data -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 0x9f924aab ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9f98bae0 sock_diag_put_meminfo -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 0x9fa4564a timer_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9fb28358 fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0x9fba1c9e regmap_test_bits -EXPORT_SYMBOL_GPL vmlinux 0x9fbba6a9 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x9fc783ca cpts_misc_interrupt -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 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 0xa03a439b tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0xa0494add __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa05443c3 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0xa05c55ba skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xa0808a65 pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa0855397 trace_array_init_printk -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 0xa0ae1a7f kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xa0b1663a input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0xa0c65ed1 regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xa0db5307 __put_net -EXPORT_SYMBOL_GPL vmlinux 0xa0e42767 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0xa0eb0e5d kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0xa104989f validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0xa10dbd3e genphy_c45_pma_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa1158452 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0xa11d2c0d trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0xa1229776 cdrom_read_tocentry -EXPORT_SYMBOL_GPL vmlinux 0xa1277f4f pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa12db65c lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0xa1302d96 usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL vmlinux 0xa13ad348 fwnode_property_present -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 0xa180ef73 snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL vmlinux 0xa18d13b9 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0xa1a57e8d sdio_f0_writeb -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 0xa208c857 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -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 0xa234ad88 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0xa23d6ff9 fork_usermode_driver -EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xa2546e33 serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0xa25dd28e usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xa25f127a md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0xa26d594c dma_async_device_channel_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa27a1c3a bpf_prog_add -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 0xa29b31f4 call_switchdev_blocking_notifiers -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 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2f83819 bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0xa2fd149c lwtunnel_input -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 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 0xa345e93e aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0xa346975c idr_remove -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 0xa384c565 sk_clear_memalloc -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 0xa3c1db37 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa3cd29bc of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xa3d03ca9 dw_pcie_ep_linkup -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 0xa4031b7f sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa4184815 phy_validate -EXPORT_SYMBOL_GPL vmlinux 0xa42532d6 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL vmlinux 0xa426f033 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL vmlinux 0xa4365321 account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0xa444c3ca topology_clear_scale_freq_source -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 0xa46f8631 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0xa473d8f7 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa476f971 thermal_zone_get_offset -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 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 0xa4dde4dd gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xa4ede47a rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0xa4fab2ca inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xa50bcd84 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0xa5152612 crypto_alloc_sync_skcipher -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 0xa54e29f2 devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0xa55590dc nvdimm_badblocks_populate -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 0xa57cde2b crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xa583c3d3 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0xa58e19c0 snd_soc_component_set_jack -EXPORT_SYMBOL_GPL vmlinux 0xa5957aae gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xa5961929 devlink_port_params_unregister -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 0xa5c8f242 skb_segment_list -EXPORT_SYMBOL_GPL vmlinux 0xa5d72a8f cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5ea000b sched_trace_cfs_rq_avg -EXPORT_SYMBOL_GPL vmlinux 0xa5ecf0c3 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa606a5e7 snd_soc_dai_action -EXPORT_SYMBOL_GPL vmlinux 0xa615c3eb icc_node_create -EXPORT_SYMBOL_GPL vmlinux 0xa61bf868 fixed_phy_change_carrier -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 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 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 0xa6c772a8 nfs_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0xa6c8afbb pinctrl_count_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0xa6c9e50f seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0xa6cfe719 snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL vmlinux 0xa6dc80c3 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6e21702 bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0xa6e44624 devm_free_pages -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 0xa705856a sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0xa7087d90 dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa7190f5d pinctrl_dev_get_devname -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 0xa759d958 fsnotify_get_group -EXPORT_SYMBOL_GPL vmlinux 0xa75a81fe security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xa75eb09b mtk_mmsys_ddp_disconnect -EXPORT_SYMBOL_GPL vmlinux 0xa76a3e94 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xa7802e2e btree_grim_visitor -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 0xa7de046d fib_rule_matchall -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 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 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 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 0xa8a4e59b fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0xa8b263f2 genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0xa8d6c402 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0xa8d876fb snd_soc_get_enum_double -EXPORT_SYMBOL_GPL vmlinux 0xa8e3a90e is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0xa8e8da58 ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0xa8f4cf9f fwnode_graph_get_remote_node -EXPORT_SYMBOL_GPL vmlinux 0xa909811a badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0xa9254e61 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0xa92894e6 bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0xa92b7803 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa92d5458 security_path_chown -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 0xa9644cc9 dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0xa975b9f5 pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9872dbe driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xa98805b6 snd_soc_unregister_card -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 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 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e20aa2 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0xa9e74462 usb_ep_alloc_request -EXPORT_SYMBOL_GPL vmlinux 0xa9eaeb17 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xa9ff2b06 regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xaa011f63 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0xaa071068 __traceiter_xdp_bulk_tx -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 0xaa1c276a __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy -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 -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 0xaa6a5b89 __traceiter_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xaa7edc7e devlink_port_register -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 0xaaa5980a user_preparse -EXPORT_SYMBOL_GPL vmlinux 0xaaa763ea pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaab87bec bpf_prog_create_from_user -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 0xaaecf75d perf_trace_buf_alloc -EXPORT_SYMBOL_GPL vmlinux 0xab0a3493 sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0xab0b6745 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xab1049ef pinmux_generic_remove_function -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 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 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 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 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 0xabd5ba1a tpm2_get_cc_attrs_tbl -EXPORT_SYMBOL_GPL vmlinux 0xabdb8411 bio_alloc_kiocb -EXPORT_SYMBOL_GPL vmlinux 0xabdbf251 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xabef34ee __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xabfd3c27 snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL vmlinux 0xac1dd3a9 usb_gadget_check_config -EXPORT_SYMBOL_GPL vmlinux 0xac226f4f paste_selection -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 0xac593fa1 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xac657274 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0xac8d5d14 bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0xac97d641 call_switchdev_notifiers -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 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacbf1f47 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xace00e96 fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xace53ff4 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xace76158 devm_otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0xad12cc4d mtk_pinconf_drive_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xad1704c8 snd_soc_dapm_new_control -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 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad7102a4 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xad81f68c devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xad83ca3c rio_alloc_net -EXPORT_SYMBOL_GPL vmlinux 0xad844786 irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xad8cb8ac devlink_trap_policers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xad967d72 sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0xad996671 devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0xad9b5884 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0xad9d3f13 devlink_param_unregister -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 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 0xae071cb1 devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0xae0a266a xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0xae0eea5c pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xae10b6ae ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0xae1516a1 of_clk_hw_simple_get -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 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 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 0xae9b3be2 cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0xaea14161 mtk_pinconf_drive_get -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 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 0xaf063cf4 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xaf1411de ata_sff_data_xfer32 -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 -EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit -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 0xaf69227d snd_soc_dai_is_dummy -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 0xaf9c13f6 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xafa97b66 xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xafa99ca5 fsnotify_add_mark -EXPORT_SYMBOL_GPL vmlinux 0xafb35dbe crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xafb3a237 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xafb8ce0d usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0xafd01322 strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xafedfec6 fsnotify -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 0xb0232477 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0xb023bc27 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xb02af92a alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0xb03bf684 register_kprobes -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 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 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb08dba9e __devres_alloc_node -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 0xb0ab4a4b serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0bab30b snd_soc_dapm_nc_pin -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 -EXPORT_SYMBOL_GPL vmlinux 0xb116016a iomap_readpage -EXPORT_SYMBOL_GPL vmlinux 0xb11625b9 cpu_cgrp_subsys_on_dfl_key -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 0xb14255c5 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0xb152b331 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xb158cccd md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -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 0xb1d0f8d1 regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0xb1d3db10 snd_soc_dai_set_sysclk -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 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb222766b trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb23938ed l3mdev_table_lookup_register -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 0xb251c579 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xb25e9363 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0xb25ea6ad spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0xb2632c36 bpf_trace_run1 -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 0xb2a829b4 devlink_rate_leaf_create -EXPORT_SYMBOL_GPL vmlinux 0xb2abaa2a mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0xb2b15584 skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0xb2b64f68 devlink_reload_enable -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 0xb2e53d83 security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2fadc38 clk_regmap_gate_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xb2fecbe2 device_add_software_node -EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb32ce9ed omap_iommu_restore_ctx -EXPORT_SYMBOL_GPL vmlinux 0xb333e143 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xb342b126 serial8250_handle_irq -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 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 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 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 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 0xb43babfa regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -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 0xb4838d79 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xb49cada2 vp_modern_config_vector -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 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 -EXPORT_SYMBOL_GPL vmlinux 0xb4cb359d irq_create_mapping_affinity -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 0xb5056902 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0xb507e93d rhashtable_walk_stop -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 0xb52d2e3b devlink_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb541f289 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0xb547e4ff handle_fasteoi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0xb58aa9b0 task_cls_state -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 0xb5c81bdb ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xb5dcd8a0 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xb5e981e5 device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0xb603bd0b snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL vmlinux 0xb6041751 fwnode_graph_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xb60ddd73 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL vmlinux 0xb61e5b02 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb638d6f1 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm -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 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb67ae235 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0xb67b7030 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xb682ea8f mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0xb6992a60 icmp_build_probe -EXPORT_SYMBOL_GPL vmlinux 0xb69d5c00 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0xb6a79def pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0xb6b873f4 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xb6c2f6e5 tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0xb6c58235 mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6e8e154 skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0xb6f2d5f0 addrconf_add_linklocal -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 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 0xb75e3f19 usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xb7656905 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xb7696e34 uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0xb771e6b7 bL_switch_request_cb -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 0xb78eab3d __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0xb7955c15 devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7ab9ba6 crypto_stats_get -EXPORT_SYMBOL_GPL vmlinux 0xb7ae9098 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0xb7b30829 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7d317ba __reset_control_bulk_get -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 0xb82566eb omap_tll_enable -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 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 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 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 0xb8cd3a7f nf_logger_put -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 0xb8e2ca97 rockchip_clk_register_plls -EXPORT_SYMBOL_GPL vmlinux 0xb8e769ab tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0xb8f7a85f gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0xb8fde6e0 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0xb905f433 spi_mem_dtr_supports_op -EXPORT_SYMBOL_GPL vmlinux 0xb90a1fcd rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xb90c3c4a devm_clk_get_prepared -EXPORT_SYMBOL_GPL vmlinux 0xb9138620 xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address -EXPORT_SYMBOL_GPL vmlinux 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 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 0xb9852d11 __traceiter_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0xb99a93f5 crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xb99d3629 synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0xb9b15a85 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0xb9b277dd usb_hcd_check_unlink_urb -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 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 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 0xb9e87b94 bL_switcher_trace_trigger -EXPORT_SYMBOL_GPL vmlinux 0xba032f94 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0xba193419 rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0xba1df5d1 nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba34645d raw_seq_next -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 0xba588ede bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0xba726b03 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xba7723e2 devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xba974625 crypto_alloc_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0xba9e2f39 get_user_pages_fast_only -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 0xbadc1505 nexthop_find_by_id -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 0xbb376ff9 of_usb_get_phy_mode -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 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 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 0xbbb7faf3 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbbc3d770 snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL vmlinux 0xbbea0985 scsi_host_block -EXPORT_SYMBOL_GPL vmlinux 0xbbf1f811 snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0xbbf5f726 udp_tunnel_nic_ops -EXPORT_SYMBOL_GPL vmlinux 0xbbf95e29 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xbbf9fa3e ata_link_online -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 0xbc5a942e device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -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 0xbcb4c999 __mdiobus_modify_changed -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 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcd39253 device_dma_supported -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 0xbd0ab95c __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0xbd172e36 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0xbd1cedd0 tcp_set_state -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 0xbdb3354f pci_ecam_map_bus -EXPORT_SYMBOL_GPL vmlinux 0xbdb459a7 devres_add -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 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 0xbe182b90 clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0xbe1db961 ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0xbe2e4914 sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0xbe47b6b0 do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0xbe4aea03 edac_device_handle_ue_count -EXPORT_SYMBOL_GPL vmlinux 0xbe55bf54 vchan_find_desc -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 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 0xbed26c58 ping_common_sendmsg -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 0xbef874b1 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0xbf014010 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -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 0xbf3c2e53 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0xbf542aa9 dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xbf554641 __tracepoint_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0xbf597641 __traceiter_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xbf62a0b6 bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0xbf6bfd02 dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0xbfa5cf4e dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0xbfa7136d dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0xbfb179c3 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfd7e99d of_reserved_mem_device_init_by_idx -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 0xbfe84dc9 __tracepoint_neigh_event_send_done -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 0xc04ab019 meson8_pmx_ops -EXPORT_SYMBOL_GPL vmlinux 0xc04e20c3 percpu_ref_switch_to_atomic_sync -EXPORT_SYMBOL_GPL vmlinux 0xc0583e20 edac_queue_work -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 0xc081c246 bL_switcher_put_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc081f2bc bio_associate_blkg_from_css -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 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0b29a79 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL vmlinux 0xc0c3f7a7 vp_modern_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0xc0d345ef crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xc0d6f5d5 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 -EXPORT_SYMBOL_GPL vmlinux 0xc0ec84b4 arm_iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0f42efd __irq_resolve_mapping -EXPORT_SYMBOL_GPL vmlinux 0xc0fa0df8 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0xc101491c find_get_pid -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 0xc11e5045 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc12418aa i2c_dw_probe_master -EXPORT_SYMBOL_GPL vmlinux 0xc12a86e6 em_dev_register_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0xc13135c3 sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xc141e90f get_net_ns_by_pid -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 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 0xc1c1e6a8 of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0xc1c83f8c crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0xc1d07a7f devm_power_supply_get_by_phandle -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 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 0xc224a7c5 perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -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 0xc2692173 wakeup_sources_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xc26a24ab rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0xc273fec8 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0xc2781f96 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc2957335 dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2d22d26 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xc2d3f0df efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0xc2db7e18 xas_find -EXPORT_SYMBOL_GPL vmlinux 0xc2f3742e rtc_class_open -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 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 0xc3b8b6d5 usb_gadget_map_request -EXPORT_SYMBOL_GPL vmlinux 0xc3bc6360 crypto_stats_skcipher_encrypt -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 0xc3e41fe6 bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3ec23ae perf_event_period -EXPORT_SYMBOL_GPL vmlinux 0xc40d0374 devfreq_get_devfreq_by_node -EXPORT_SYMBOL_GPL vmlinux 0xc41942ed dt_init_idle_driver -EXPORT_SYMBOL_GPL vmlinux 0xc42644bb sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xc426dcb3 bio_start_io_acct_time -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc4285ce8 netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xc43fde20 unregister_asymmetric_key_parser -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 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 0xc4bdf4fd ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0xc4cf2420 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0xc4d824e4 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xc4dddc63 nand_readid_op -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 0xc5174984 __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0xc52aa142 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0xc533d69e pci_check_and_mask_intx -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 0xc55c86ad ip_local_out -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 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 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc58ac0a0 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5bb6b33 tcp_is_ulp_esp -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 0xc5e598c2 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xc60a1631 thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc60ccf52 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0xc6120860 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL vmlinux 0xc6124bbf trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc63758c7 xfrm_audit_state_replay_overflow -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 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 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 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 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 0xc6f4b1a4 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL vmlinux 0xc6fa67ae dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7069ded nfnl_ct_hook -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 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 0xc77c76ad iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0xc78d0ba3 fib_nexthop_info -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 0xc7a7e770 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7a82ba2 tcp_abort -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 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc803615c md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0xc81baae3 ti_cm_get_macid -EXPORT_SYMBOL_GPL vmlinux 0xc81d63b9 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xc82099c2 snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xc8269f94 snd_soc_params_to_frame_size -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 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 0xc858e214 __udp_gso_segment -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 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 0xc8afccf3 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xc8b07006 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0xc8d5f4dd pinctrl_enable -EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -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 0xc926d9e0 devm_regmap_init_vexpress_config -EXPORT_SYMBOL_GPL vmlinux 0xc932e1cf of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0xc937dc50 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -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 0xc967e9fc sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xc96fb674 nvmem_device_read -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 0xc98cbbfe crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0xc98f4b10 crypto_lookup_template -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 0xc9c12fbf thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0xc9d96a1d led_put -EXPORT_SYMBOL_GPL vmlinux 0xc9e6d8d6 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -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 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL vmlinux 0xc9fe9097 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0xca187675 __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0xca1cfb95 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xca2269ce pci_msi_mask_irq -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 0xca55917a __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0xca6b2a1a i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xca6c886f of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xca6ff753 __traceiter_napi_poll -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 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 0xcaafb4c0 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xcab00950 strp_process -EXPORT_SYMBOL_GPL vmlinux 0xcabd8eba xhci_update_hub_device -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 0xcadcef48 of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0xcaecc540 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0xcaf517cd gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0xcaff40d6 snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb1a1798 nf_route -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 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 0xcb5fbb70 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0xcb957088 mtk_pinconf_adv_drive_get -EXPORT_SYMBOL_GPL vmlinux 0xcb9d44cb shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xcbc01cb3 ip6_input -EXPORT_SYMBOL_GPL vmlinux 0xcbcf14d2 ata_bmdma_irq_clear -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 0xcc02cc8a dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0xcc0db119 is_software_node -EXPORT_SYMBOL_GPL vmlinux 0xcc0e03d5 device_link_add -EXPORT_SYMBOL_GPL vmlinux 0xcc20fd2d ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0xcc216f83 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xcc2aa377 meson_a1_parse_dt_extra -EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap -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 0xcc421600 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcc428b19 dev_fill_metadata_dst -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 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 0xcca339d3 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0xcca9b2c5 usb_gadget_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xccb135d1 spi_replace_transfers -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd5c386 skb_append_pagefrags -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 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xccf7382a switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xcd007702 iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0xcd0ebf15 devlink_alloc_ns -EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd2b27b9 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xcd3988eb ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xcd49a610 snd_device_initialize -EXPORT_SYMBOL_GPL vmlinux 0xcd4badf9 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xcd613cb4 spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd717b9a sdhci_pltfm_resume -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 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 0xcdc32745 irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcde2035c dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0xcde66774 tty_kopen_shared -EXPORT_SYMBOL_GPL vmlinux 0xcdefe89f mmc_send_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0xcdfd5bb3 __devm_spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0xce0bd4e7 sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xce0e889b devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xce11caff __trace_array_puts -EXPORT_SYMBOL_GPL vmlinux 0xce5985bc phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xcea0ca55 pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0xcea1f84c fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0xcea309bd regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xceb8544e gpiochip_generic_request -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 0xcee88e7a of_overlay_fdt_apply -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 0xcf28f55e trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0xcf2bc3bb pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xcf5091ba class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcf651caf snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL vmlinux 0xcf79106b to_nvdimm_bus -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 0xcfcbaded virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0xcfd597db fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0xcff6d0a1 __cpufreq_driver_target -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 0xd04aedfd __SCK__tp_func_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xd051b84c of_usb_get_dr_mode_by_phy -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 0xd084c8b9 perf_pmu_unregister -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 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 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 0xd0ff50fd crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xd1146b00 devlink_region_snapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0xd12159a7 stack_trace_snprint -EXPORT_SYMBOL_GPL vmlinux 0xd136b061 pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xd137c1f7 iomap_dio_rw -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 0xd177b439 dw_pcie_own_conf_map_bus -EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features -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 0xd1c2b56e pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xd1c2e26c __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -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 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain -EXPORT_SYMBOL_GPL vmlinux 0xd21bf479 devlink_port_region_create -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 0xd24fef4f __lock_page_killable -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 -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 0xd28a3b62 tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0xd2900f94 gpiochip_enable_irq -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 0xd2e86dec platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0xd2f7a0cc wwan_register_ops -EXPORT_SYMBOL_GPL vmlinux 0xd3046552 rhashtable_insert_slow -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 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 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 0xd379cd4d housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0xd37c5b8d __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0xd37dea71 sdhci_remove_host -EXPORT_SYMBOL_GPL vmlinux 0xd38515b3 rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0xd3908f6b crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd39eb823 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd3b1ab4f rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xd3b46d79 gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0xd3b77757 skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0xd3c672b8 nand_subop_get_data_len -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 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 0xd40b810b phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0xd411a666 perf_tp_event -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 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 0xd451820a sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0xd47b012d devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xd4812b0e crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xd491298a __root_device_register -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 0xd4a511af regmap_multi_reg_write_bypassed -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 0xd4d3c4ef fib6_new_table -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 0xd4ebeeb0 devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd4ee2d2d pinctrl_find_gpio_range_from_pin_nolock -EXPORT_SYMBOL_GPL vmlinux 0xd4ee868f switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0xd4f3320c wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0xd50f6bcc skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xd51942d5 dev_pm_domain_attach_by_name -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 0xd5474690 usb_role_switch_set_role -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 0xd5661e68 snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL vmlinux 0xd57a782a br_ip6_fragment -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 0xd5e3e433 __traceiter_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xd60b867d proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0xd6146ac2 snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL vmlinux 0xd6164816 blkg_rwstat_exit -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 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 0xd666ed2b fib_rules_lookup -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 0xd6a80eed fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xd6bfe93a __fscrypt_inode_uses_inline_crypto -EXPORT_SYMBOL_GPL vmlinux 0xd6c27da0 dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xd6d92f0c device_property_read_u16_array -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 0xd764288c usb_gadget_map_request_by_dev -EXPORT_SYMBOL_GPL vmlinux 0xd766e8f2 btree_init_mempool -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 0xd780f36b dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xd786ed58 xfrm_local_error -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 0xd7d7f2a7 devlink_port_health_reporter_destroy -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 0xd7f53d9d trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0xd7fb0726 __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xd7fd78a1 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xd8045eed inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xd81ea268 devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd84fa903 devm_regulator_register_supply_alias -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 0xd89924e7 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0xd8a18d95 of_reserved_mem_device_init_by_name -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 0xd8b6ea94 snd_soc_register_component -EXPORT_SYMBOL_GPL vmlinux 0xd8c0125c usb_gen_phy_init -EXPORT_SYMBOL_GPL vmlinux 0xd8c9eaf5 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0xd8d41bfa snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL vmlinux 0xd8d654ca list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type -EXPORT_SYMBOL_GPL vmlinux 0xd8d73741 alloc_skb_for_msg -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 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 0xd9490653 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd9701008 crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xd973109f tcf_frag_xmit_count -EXPORT_SYMBOL_GPL vmlinux 0xd97b28b6 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0xd9909d74 pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0xd9a6eb74 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL vmlinux 0xd9b0bf9c dev_pm_domain_set -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 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 0xda2b1d04 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0xda2e52c8 handle_irq_desc -EXPORT_SYMBOL_GPL vmlinux 0xda2fe8ae inet_csk_clone_lock -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 0xda4cda3b pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0xda5372fe blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0xda5fdfe0 vfs_write -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 -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 0xdaff3b3d input_class -EXPORT_SYMBOL_GPL vmlinux 0xdb04c639 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0xdb066dad lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0xdb0b9a54 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xdb0c36d0 device_phy_find_device -EXPORT_SYMBOL_GPL vmlinux 0xdb0f8ce3 vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0xdb169fa5 mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xdb4577f2 fscrypt_set_bio_crypt_ctx_bh -EXPORT_SYMBOL_GPL vmlinux 0xdb4a386e tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0xdb5876ce scsi_queue_work -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 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 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 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 0xdc0e7002 devlink_resource_occ_get_unregister -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 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 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 0xdca5d8b6 dev_get_tstats64 -EXPORT_SYMBOL_GPL vmlinux 0xdcb160d4 tty_kopen_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xdcb336ac dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xdcb5b474 soc_ac97_ops -EXPORT_SYMBOL_GPL vmlinux 0xdcba00ed phy_configure -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 0xdce06951 sched_trace_cfs_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdcf55e20 snd_soc_rtdcom_lookup -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 0xdd21316c nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0xdd293d8a regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0xdd2beaa8 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0xdd366dce snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd3b5f0c mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0xdd43fcca device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xdd4da967 lwtunnel_get_encap_size -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 0xdd81d8f6 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xdd85063c lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0xdd9f6537 register_mtd_user -EXPORT_SYMBOL_GPL vmlinux 0xdda086c4 of_mm_gpiochip_add_data -EXPORT_SYMBOL_GPL vmlinux 0xdda576ed sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0xddb4411d blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0xddb67d29 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddcc0149 crypto_grab_spawn -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 0xdded85ce raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xddf01311 blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0xde334f56 devlink_trap_policers_register -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 0xde443c6d devlink_params_publish -EXPORT_SYMBOL_GPL vmlinux 0xde4677ac spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0xde4ae4b4 pci_epc_start -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 0xde8d9ddd __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xdec43238 iomap_writepages -EXPORT_SYMBOL_GPL vmlinux 0xdeca1e35 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xdecfac76 skb_mpls_pop -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 0xdeffa0a7 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xdf0476f3 __tracepoint_unmap -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 0xdf119e7d snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL vmlinux 0xdf191047 sysfs_remove_bin_file -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 0xdf454e28 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0xdf5a066c fwnode_get_nth_parent -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 0xdf8087ea devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdf84a4ab tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0xdf887297 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0xdfa30c16 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0xdfaf73c1 rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0xdfb3b241 cgroup_path_ns -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 0xdfd6762f __traceiter_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xdfde14a8 relay_close -EXPORT_SYMBOL_GPL vmlinux 0xdffb49c1 em_dev_unregister_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0xe02120e3 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0xe0260618 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xe0342a72 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xe03dcd15 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xe0448c62 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xe04bd71e dax_copy_to_iter -EXPORT_SYMBOL_GPL vmlinux 0xe04c7552 fib_table_lookup -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 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 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0c95083 i2c_slave_register -EXPORT_SYMBOL_GPL vmlinux 0xe0d35bd8 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xe0eb943b sysfs_create_files -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 0xe1546c8c dm_internal_resume -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 0xe16a6b48 nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0xe16cce39 mmc_pwrseq_register -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 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 0xe1cb8968 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0xe1d640fd devlink_param_register -EXPORT_SYMBOL_GPL vmlinux 0xe1f2c887 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0xe1f43c52 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xe21901fe sdio_readsb -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 0xe224c65e iommu_uapi_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0xe2253725 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0xe22c9c90 crypto_unregister_skciphers -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 0xe242230a ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xe24ab6a9 cci_ace_get_port -EXPORT_SYMBOL_GPL vmlinux 0xe260ea96 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0xe265632a cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0xe2717792 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xe2739ca0 ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe274fa44 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0xe279d14d mtk_build_eint -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 0xe29ae648 devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe29eb2a7 tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xe2a3b68e devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2c98da5 devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0xe2ce1768 dev_pm_enable_wake_irq -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 0xe3021c06 rockchip_register_restart_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe3074f1c ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0xe320a99a cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xe3272cc7 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xe3346b78 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xe3358286 iomap_dio_iopoll -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 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 0xe3b47ef7 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0xe3d69c8a noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0xe3e4be10 pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0xe3eb6bb6 split_page -EXPORT_SYMBOL_GPL vmlinux 0xe3ef0601 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe3f17a0a unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xe3f4d466 pci_host_common_remove -EXPORT_SYMBOL_GPL vmlinux 0xe3f83f12 inet6_cleanup_sock -EXPORT_SYMBOL_GPL vmlinux 0xe3f8ae21 bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe4234c73 vfs_inode_has_locks -EXPORT_SYMBOL_GPL vmlinux 0xe42dd939 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xe42ec44e nexthop_select_path -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 0xe46fa9fd led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0xe4739438 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0xe48a6153 irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xe48b28a4 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xe48df0eb devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4977bba __tracepoint_block_rq_remap -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 0xe4c398d0 nvdimm_to_bus -EXPORT_SYMBOL_GPL vmlinux 0xe4c9f178 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0xe4e0a36f skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4f00765 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xe4f4510b kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xe4f9961b devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0xe50188a0 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0xe50dce3e rockchip_pcie_get_phys -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 0xe5383b1b genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xe54513b7 dev_pm_opp_set_prop_name -EXPORT_SYMBOL_GPL vmlinux 0xe5465b6a __traceiter_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0xe56bab2a ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe59b75da nanddev_isbad -EXPORT_SYMBOL_GPL vmlinux 0xe59d859d report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0xe59efb0e musb_clearb -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 0xe5f9ab1b devm_platform_get_and_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0xe6085db5 platform_irqchip_probe -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 0xe63c4511 devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0xe66499a7 rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0xe668835c __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0xe67cb27f open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0xe68994b2 devlink_dpipe_table_unregister -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 -EXPORT_SYMBOL_GPL vmlinux 0xe6b4f606 __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0xe6bc7837 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xe6bebd61 dev_pm_domain_start -EXPORT_SYMBOL_GPL vmlinux 0xe6c7b5f3 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xe6d2253a ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6ebdf70 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xe6fc70ee devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert -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 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 0xe75625fb cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xe7686f2c sock_gen_put -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 0xe77bf642 ping_close -EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe7952d13 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xe79cdfa7 tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xe7a04afc xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xe7a49ec0 fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0xe7b6e8d7 snd_soc_dapm_put_enum_double -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 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 0xe817c8ea devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe83dac1e snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL vmlinux 0xe8460baa dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0xe84f6dc3 to_software_node -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe850e6cc sock_map_close -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 0xe872e3e6 crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0xe88103bd fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0xe8877919 devlink_region_snapshot_id_put -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 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 0xe91d6f03 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xe92eb873 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe93ea516 register_trace_event -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 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 0xe9a7fe16 nvmem_cell_read -EXPORT_SYMBOL_GPL vmlinux 0xe9b95532 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0xe9c616de cpu_latency_qos_add_request -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 0xea03285b devlink_params_register -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 0xea16909d trace_get_event_file -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 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 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 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 0xeadfe323 devlink_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeaeac9dd ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0xeb007a27 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL vmlinux 0xeb02a9ce gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0xeb08e33b ipi_send_mask -EXPORT_SYMBOL_GPL vmlinux 0xeb0c41b4 strp_unpause -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 0xeb3e42e0 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk -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 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 0xebce18ba nanddev_isreserved -EXPORT_SYMBOL_GPL vmlinux 0xebd287d2 _snd_pcm_stream_lock_irqsave_nested -EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebd53e18 pin_user_pages_fast_only -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 0xebf4d03d clk_hw_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xec0f8740 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xec26fe3b ahci_print_info -EXPORT_SYMBOL_GPL vmlinux 0xec29e0d8 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0xec3a3dda sched_trace_rq_nr_running -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 0xec543a9f devm_bitmap_alloc -EXPORT_SYMBOL_GPL vmlinux 0xec70504f irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xec760b27 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xec834c4a sysfs_remove_groups -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 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 0xed344146 mcpm_is_available -EXPORT_SYMBOL_GPL vmlinux 0xed3c4ddb ata_sff_drain_fifo -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 0xed72dcbd regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0xed77f33a register_pernet_subsys -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 0xede58eb7 md_bitmap_load -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 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 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 0xee839aea irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0xee9047db hisi_clk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xee9d9719 led_update_brightness -EXPORT_SYMBOL_GPL vmlinux 0xeea1aecd pci_enable_ats -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 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 0xef29fcdd clk_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xef300d57 iommu_enable_nesting -EXPORT_SYMBOL_GPL vmlinux 0xef40bc0e pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef533e23 irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xef54d1c6 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xef5b1b5e sk_msg_return -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 0xef7ba8fa mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0xef83eed1 usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xef95c0da event_triggers_post_call -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 0xefba7677 vfs_listxattr -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 0xeffc9055 of_genpd_add_provider_onecell -EXPORT_SYMBOL_GPL vmlinux 0xf0205a34 pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0xf02b07ad netlink_add_tap -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 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 0xf061bb85 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xf065f7ce regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0xf06d8a1a __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf0752471 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xf076a864 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xf076c5c1 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0xf07e1aab cgroup_get_from_id -EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -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 0xf0d273d9 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0xf0d27fd6 __ip6_datagram_connect -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 0xf0e04534 tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xf0e21f0e crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0xf0e22950 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0xf0eeafc6 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL vmlinux 0xf0f12a68 __traceiter_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0xf0f95e51 musb_readl -EXPORT_SYMBOL_GPL vmlinux 0xf0fdfc70 pinconf_generic_parse_dt_config -EXPORT_SYMBOL_GPL vmlinux 0xf133e6a2 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0xf135f799 devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0xf13855fa ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xf147c348 fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0xf1679c6d syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf18f3d48 __traceiter_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xf1a5fb33 phy_pm_runtime_put -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 0xf1fae6a3 asic3_read_register -EXPORT_SYMBOL_GPL vmlinux 0xf20562d7 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL vmlinux 0xf208093a irq_find_matching_fwspec -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 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 0xf264f3bd devm_pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0xf2686dd8 trace_event_buffer_commit -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 0xf2d4f8e2 switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0xf2de1a78 usb_of_has_combined_node -EXPORT_SYMBOL_GPL vmlinux 0xf2e9a7ac snd_soc_runtime_action -EXPORT_SYMBOL_GPL vmlinux 0xf2f43c0e lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xf2fdca86 phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xf302febf synth_event_trace_start -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 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 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 0xf372aeff find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xf3759431 crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf3859c66 mtk_pinconf_bias_disable_get -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3b5ce47 crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0xf3d9ddd9 snd_soc_component_write -EXPORT_SYMBOL_GPL vmlinux 0xf3dd5871 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0xf3ded65f sock_map_unhash -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 0xf4264a2e __tracepoint_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xf42d97e8 rio_dev_get -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 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 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 0xf4a1d11b ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xf4a26006 irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4b88c2b devlink_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0xf4b96075 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xf4bd7e4e raw_abort -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 0xf52e14e9 snmp_fold_field64 -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 -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf55742a5 nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf55cfa19 snd_soc_add_component -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 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 0xf5b96c68 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0xf5b99898 tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0xf5c4ed72 scsi_host_unblock -EXPORT_SYMBOL_GPL vmlinux 0xf5d512ee fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xf5dc0f31 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xf5e99ca0 sdhci_reset_tuning -EXPORT_SYMBOL_GPL vmlinux 0xf5e9ec14 nfs_ssc_client_tbl -EXPORT_SYMBOL_GPL vmlinux 0xf5edf061 clk_hw_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf5f5aeaa fib_rules_unregister -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 0xf62b4fbc devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0xf6419f3b blk_ksm_is_superset -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 0xf692cbf7 devlink_region_create -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 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf70354ea fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0xf729907b pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size -EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xf73650fb ip6_pol_route -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 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 0xf7686c8e devlink_resource_register -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 0xf7a58a77 udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0xf7af5ff7 securityfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xf7b10c9a nf_queue_entry_free -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 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 0xf80c276f rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0xf8131a6f inet_twsk_hashdance -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 0xf83335cb mptcp_token_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xf833bd96 sock_map_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf8731bf6 clk_regmap_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xf88518a8 class_dev_iter_next -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 0xf8d1e2ea devm_pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf8db1a2e nl_table -EXPORT_SYMBOL_GPL vmlinux 0xf8e1410a dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0xf8ec6650 scsi_target_unblock -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 0xf914f7d2 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0xf919cfda icc_provider_add -EXPORT_SYMBOL_GPL vmlinux 0xf9419518 virtqueue_get_avail_addr -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 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xf96a20a6 i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0xf96da44f xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0xf97102d2 handle_simple_irq -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 0xf9a292aa edac_pci_add_device -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 0xf9e6722a devlink_param_driverinit_value_get -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 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 0xfa237cee blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xfa23f0bb crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0xfa2fbd17 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xfa349e34 nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0xfa3b657b of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0xfa439561 pci_epc_set_msi -EXPORT_SYMBOL_GPL vmlinux 0xfa50876d mtd_erase -EXPORT_SYMBOL_GPL vmlinux 0xfa5c7b0f ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xfa61ac81 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0xfa74f2fe inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0xfa7a2901 usb_hcd_pci_remove -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 0xfa913c5c scsi_get_vpd_page -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 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 0xfafa6f4f netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0xfb1fec82 ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0xfb24d4ab blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfb2a62f0 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb51f520 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0xfb615859 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0xfb686bc9 serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0xfb69ece8 synth_event_trace_array -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb73451f alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfb7a4a7f btree_last -EXPORT_SYMBOL_GPL vmlinux 0xfb831ec9 device_set_node -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 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 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbc66bab ata_cable_sata -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 0xfc014cb6 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc08b4ba ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xfc17dfc6 virtqueue_enable_cb -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 0xfc4096b2 pinmux_generic_get_function_name -EXPORT_SYMBOL_GPL vmlinux 0xfc620de2 nvdimm_bus_add_badrange -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 0xfcd216b0 regulator_get_voltage_sel_regmap -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 0xfd1334e1 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0xfd2b0a2c sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0xfd3aecfa fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0xfd3bb275 pci_user_read_config_byte -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 0xfd544b19 badrange_init -EXPORT_SYMBOL_GPL vmlinux 0xfd581da1 free_rs -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 0xfda2f6d4 tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0xfda47da2 blk_mq_unquiesce_queue -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 0xfdd62348 espintcp_queue_out -EXPORT_SYMBOL_GPL vmlinux 0xfdeec25e deregister_mtd_blktrans -EXPORT_SYMBOL_GPL vmlinux 0xfdfa56ac kill_device -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 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe4a9d31 sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xfe5aad0c divider_ro_determine_rate -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 0xfe7324fb get_net_ns_by_fd -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 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 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 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff12aafb blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert -EXPORT_SYMBOL_GPL vmlinux 0xff21a68a mtd_is_locked -EXPORT_SYMBOL_GPL vmlinux 0xff276c7e devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -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 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 0xff7e33bf mpi_sub_ui -EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0xff85e567 clk_register_hisi_phase -EXPORT_SYMBOL_GPL vmlinux 0xff8a4013 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0xff8fc086 __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xffa70473 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0xffae2f8e snd_soc_component_read -EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffb7978b rtnl_register_module -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 0xffd9a1b6 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xffe2e707 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xfff8b7d8 devlink_port_attrs_pci_sf_set -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 -IIO_ADISLIB EXPORT_SYMBOL 0xdd60fe79 adis_debugfs_reg_access drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x02d74fec devm_adis_probe_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x125ccb9f adis_update_scan_mode drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7129e424 __adis_update_bits_base drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x8509f8d1 __adis_write_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x9096ab5f __adis_read_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xbd6cd7b6 adis_single_conversion drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xbfec1f6e __adis_check_status drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xcc72da63 __adis_initial_startup drivers/iio/imu/adis_lib -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 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 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 -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 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 -MCB EXPORT_SYMBOL_GPL 0xf40c35d7 mcb_request_mem drivers/mcb/mcb -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x1d9671af nvme_execute_passthru_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x37f5667f nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x6a0da2d7 nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x8473dea4 nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xf0c3dcd2 nvme_find_get_ns 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 -PMBUS EXPORT_SYMBOL_GPL 0x300354d6 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x3be6045b pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x4171cb51 pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x4593f0c5 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x48559349 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x68fae7a6 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x728fc0b3 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x84222528 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x863cf2bf pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x88b0e0eb pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xd1961790 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xd321cba4 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xe4169022 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -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 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 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 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 0xb7d08ed4 usb_stor_post_reset 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 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 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 reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/armhf/generic-lpae.compiler +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/armhf/generic-lpae.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/armhf/generic-lpae.modules +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/armhf/generic-lpae.modules @@ -1,6478 +0,0 @@ -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_aspeed_vuart -8250_dw -8250_exar -8250_men_mcb -8250_uniphier -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pg86x -88pm800 -88pm800-regulator -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -a100u2w -a3d -a53-pll -a7-pll -a8293 -aacraid -aat2870-regulator -aat2870_bl -abp060mg -acard-ahci -acecad -acenic -acp_audio_dma -act8865-regulator -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 -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad5110 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5272 -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5686-spi -ad5696-i2c -ad5755 -ad5758 -ad5761 -ad5764 -ad5766 -ad5770r -ad5791 -ad5820 -ad5933 -ad7091r-base -ad7091r5 -ad7124 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7192 -ad7266 -ad7280a -ad7291 -ad7292 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7606_par -ad7606_spi -ad7746 -ad7766 -ad7768-1 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad7949 -ad799x -ad8366 -ad8801 -ad9389b -ad9467 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc-joystick -adc-keys -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adf4371 -adf7242 -adfs -adi -adi-axi-adc -adiantum -adin -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16209 -adis16240 -adis16260 -adis16400 -adis16460 -adis16475 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1177 -adm1266 -adm1275 -adm8211 -adm9240 -adp1653 -adp5061 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adux1020 -adv7170 -adv7175 -adv7180 -adv7183 -adv7343 -adv7393 -adv748x -adv7511_drm -adv7604 -adv7842 -adv_pci1710 -adv_pci1720 -adv_pci1723 -adv_pci1724 -adv_pci1760 -adv_pci_dio -advansys -adxl34x -adxl34x-i2c -adxl34x-spi -adxl372 -adxl372_i2c -adxl372_spi -adxrs290 -adxrs450 -aegis128 -aes-arm -aes-arm-bs -aes-arm-ce -aes_ti -af9013 -af9033 -af_alg -af_key -af_packet_diag -afe4403 -afe4404 -affs -afs -ah4 -ah6 -ahci -ahci_ceva -ahci_dm816 -ahci_mtk -ahci_mvebu -ahci_qoriq -aht10 -aic79xx -aic7xxx -aic94xx -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airspy -ak7375 -ak881x -ak8974 -ak8975 -al3010 -al3320a -al_mc_edac -alcor -alcor_pci -algif_aead -algif_hash -algif_rng -algif_skcipher -alim7101_wdt -altera-ci -altera-cvp -altera-fpga2sdram -altera-freeze-bridge -altera-hps2fpga -altera-msgdma -altera-pr-ip-core -altera-pr-ip-core-plat -altera-ps-spi -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am2315 -am35x -am53c974 -amba-clcd -amba-pl010 -ambakmi -amc6821 -amd -amd5536udc_pci -amd8111e -amdgpu -amlogic-gxl-crypto -amlogic_thermal -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams-iaq-core -ams369fg06 -analog -analogix-anx6345 -analogix-anx78xx -analogix_dp -ansi_cprng -anx7625 -anybuss_core -ao-cec -ao-cec-g12a -aoe -apbps2 -apcs-msm8916 -apcs-sdx55 -apds9300 -apds9802als -apds990x -apds9960 -apple-mfi-fastcharge -appledisplay -appletalk -appletouch -applicom -apr -apss-ipq-pll -apss-ipq6018 -aptina-pll -aqc111 -aquacomputer_d5next -aquantia -ar1021_i2c -ar5523 -ar7part -ar9331 -arasan-nand-controller -arc-rawmode -arc-rimi -arc_emac -arc_ps2 -arc_uart -arcmsr -arcnet -arcpgu -arcx-anybus -arcxcnn_bl -arizona -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arm_mhu -arm_mhu_db -arm_mhuv2 -arm_scpi -arm_smc_wdt -arm_smccc_trng -armada -armada-37xx-cpufreq -armada-37xx-rwtm-mailbox -armada-8k-cpufreq -armada_37xx_wdt -arp_tables -arpt_mangle -arptable_filter -artpec6_crypto -as102_fe -as370-hwmon -as3711-regulator -as3711_bl -as3722-regulator -as3935 -as5011 -as73211 -asc7621 -ascot2e -ashmem_linux -asix -aspeed-lpc-ctrl -aspeed-lpc-snoop -aspeed-p2a-ctrl -aspeed-pwm-tacho -aspeed-smc -aspeed-vhub -aspeed-video -aspeed_adc -aspeed_edac -aspeed_gfx -ast -asym_tpm -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -ata_generic -ata_piix -atbm8830 -atc260x-core -atc260x-i2c -atc260x-onkey -atc260x-poweroff -atc260x-regulator -aten -ath -ath10k_core -ath10k_pci -ath10k_sdio -ath10k_snoc -ath10k_usb -ath11k -ath11k_ahb -ath11k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ath9k_pci_owl_loader -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atlantic -atlas-ezo-sensor -atlas-sensor -atm -atmel -atmel-ecc -atmel-flexcom -atmel-hlcdc -atmel-hlcdc-dc -atmel-i2c -atmel-sha204a -atmel_captouch -atmel_mxt_ts -atmel_pci -atmtcp -atp870u -atusb -atxp1 -aty128fb -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -auo-pixcir-ts -auth_rpcgss -authenc -authencesn -autofs4 -avmfritz -ax25 -ax88179_178a -ax88796 -ax88796b -axi-fan-control -axis-fifo -axp20x -axp20x-i2c -axp20x-pek -axp20x-regulator -axp20x_ac_power -axp20x_adc -axp20x_battery -axp20x_usb_power -axp288_adc -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -b53_common -b53_mdio -b53_mmap -b53_serdes -b53_spi -b53_srab -bL_switcher_dummy_if -ba431-rng -bam_dma -bareudp -batman-adv -baycom_epp -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bcm-keypad -bcm-phy-lib -bcm-sf2 -bcm203x -bcm3510 -bcm47xxsflash -bcm54140 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm63138_nand -bcm6368_nand -bcm63xx_uart -bcm7xxx -bcm87xx -bcm_vk -bcma -bcmsysport -bd6107 -bd71815-regulator -bd71828-regulator -bd718x7-regulator -bd9571mwv -bd9571mwv-regulator -bd9576-regulator -bd9576_wdt -bd99954-charger -bdc -be2iscsi -be2net -befs -bel-pfe -belkin_sa -berlin2-adc -bfa -bfq -bfs -bfusb -bh1750 -bh1770glc -bh1780 -binder_linux -binfmt_misc -blake2b-neon -blake2b_generic -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluetooth -bluetooth_6lowpan -bma150 -bma220_spi -bma400_core -bma400_i2c -bma400_spi -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmc150_magn_i2c -bmc150_magn_spi -bme680_core -bme680_i2c -bme680_spi -bmg160_core -bmg160_i2c -bmg160_spi -bmi088-accel-core -bmi088-accel-spi -bmi160_core -bmi160_i2c -bmi160_spi -bmp280 -bmp280-i2c -bmp280-spi -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bochs -bonding -bpa-rs600 -bpa10x -bpck -bpck6 -bpfilter -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq2515x_charger -bq256xx_charger -bq25890_charger -bq25980_charger -bq27xxx_battery -bq27xxx_battery_hdq -bq27xxx_battery_i2c -br2684 -br_netfilter -brcmfmac -brcmnand -brcmsmac -brcmstb_nand -brcmutil -brd -bridge -broadcom -bsd_comp -bt-bmc -bt819 -bt856 -bt866 -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btmtksdio -btmtkuart -btqca -btqcomsmd -btrfs -btrsi -btrtl -btsdio -bttv -btusb -bu21013_ts -bu21029_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -ca8210 -cachefiles -cadence-nand-controller -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_serial -caif_socket -caif_usb -caif_virtio -camcc-sc7180 -camcc-sdm845 -camcc-sm8250 -camellia_generic -can -can-bcm -can-dev -can-gw -can-isotp -can-j1939 -can-raw -cap11xx -capmode -capsule-loader -carl9170 -carminefb -cassini -cast5_generic -cast6_generic -cast_common -catc -cb710 -cb710-mmc -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc10001_adc -cc2520 -cc770 -cc770_isa -cc770_platform -ccm -ccree -ccs -ccs-pll -ccs811 -cctrng -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -cdns-csi2rx -cdns-csi2tx -cdns-dphy -cdns-dsi -cdns-mhdp8546 -cdns-pltfrm -cdns-usb-common -cdns3 -cec -ceph -cfb -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -ch -ch341 -ch7006 -ch7322 -ch9200 -ch_ipsec -ch_ktls -chacha-neon -chacha20poly1305 -chacha_generic -chaoskey -charlcd -chcr -chipone-icn6211 -chipone_icn8318 -chnl_net -chrontel-ch7033 -ci_hdrc -ci_hdrc_imx -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_tegra -ci_hdrc_usb2 -cicada -cifs -cifs_arc4 -cifs_md4 -cirrus -cirrusfb -clip -clk-axi-clkgen -clk-bd718x7 -clk-cdce706 -clk-cdce925 -clk-cs2000-cp -clk-exynos-audss -clk-exynos-clkout -clk-hi3519 -clk-hi655x -clk-lmk04832 -clk-lochnagar -clk-max77686 -clk-max9485 -clk-palmas -clk-pwm -clk-qcom -clk-rk808 -clk-rpm -clk-rpmh -clk-s2mps11 -clk-scmi -clk-scpi -clk-si514 -clk-si5341 -clk-si5351 -clk-si544 -clk-si570 -clk-smd-rpm -clk-spmi-pmic-div -clk-twl6040 -clk-versaclock5 -clk-wm831x -clk-xlnx-clock-wizard -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm3605 -cm36651 -cma3000_d0x -cma3000_d0x_i2c -cmac -cmtp -cnic -cobra -coda -colibri-vf50-ts -com20020 -com20020-pci -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_example_test -comedi_parport -comedi_pci -comedi_test -comedi_usb -comm -contec_pci_dio -cordic -core -corsair-cpro -corsair-psu -cortina -counter -cp210x -cpcap-adc -cpcap-battery -cpcap-charger -cpcap-pwrbutton -cpcap-regulator -cpia2 -cppi41 -cpr -cqhci -cramfs -crc-itu-t -crc32-arm-ce -crc32_generic -crc4 -crc64 -crc7 -crct10dif-arm-ce -crg-hi3516cv300 -crg-hi3798cv200 -cros-ec-anx7688 -cros-ec-cec -cros-ec-regulator -cros-ec-sensorhub -cros_ec -cros_ec_accel_legacy -cros_ec_baro -cros_ec_chardev -cros_ec_debugfs -cros_ec_dev -cros_ec_i2c -cros_ec_keyb -cros_ec_lid_angle -cros_ec_light_prox -cros_ec_lightbar -cros_ec_mkbp_proximity -cros_ec_rpmsg -cros_ec_sensors -cros_ec_sensors_core -cros_ec_spi -cros_ec_sysfs -cros_ec_typec -cros_ec_vbc -cros_peripheral_charger -cros_usbpd-charger -cros_usbpd_logger -cros_usbpd_notify -cryptd -crypto_engine -crypto_safexcel -crypto_simd -crypto_user -cryptoloop -cs3308 -cs5345 -cs53l32a -cs89x0 -csiostor -curve25519-generic -curve25519-neon -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cw2015_battery -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxd2880 -cxd2880-spi -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cxgbit -cxl_core -cxl_pci -cxl_pmem -cy8ctma140 -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da280 -da311 -da7280 -da9030_battery -da9034-ts -da903x-regulator -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062-thermal -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9121-regulator -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -db9 -dc395x -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -ddbridge -ddbridge-dummy-fe -de2104x -defxx -denali -denali_dt -denali_pci -des_generic -designware_i2s -device_dax -dfl -dfl-afu -dfl-emif -dfl-fme -dfl-fme-br -dfl-fme-mgr -dfl-fme-region -dfl-n3000-nios -dfl-pci -dht11 -diag -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dib9000 -dibx000_common -digi_acceleport -digicolor-usart -diskonchip -dispcc-sc7180 -dispcc-sc7280 -dispcc-sdm845 -dispcc-sm8250 -display-connector -dl2k -dlhl60d -dlink-dir685-touchkeys -dlm -dln2 -dln2-adc -dm-bio-prison -dm-bufio -dm-cache -dm-cache-smq -dm-clone -dm-crypt -dm-delay -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 -dm1105 -dm9000 -dm9601 -dma-axi-dmac -dmard06 -dmard09 -dmard10 -dme1737 -dmfe -dmi-sysfs -dmm32at -dmx3191d -dnet -dove_thermal -dp83640 -dp83822 -dp83848 -dp83867 -dp83869 -dp83tc811 -dpot-dac -dps310 -dps920ab -dpt_i2o -drbd -drivetemp -drm -drm_dp_aux_bus -drm_kms_helper -drm_mipi_dbi -drm_ttm_helper -drm_vram_helper -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1803 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds4424 -ds620 -dsa_core -dsbr100 -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-dibusb-mc-common -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_dummy_fe -dvb_usb_v2 -dw-axi-dmac-platform -dw-edma -dw-edma-pcie -dw-hdmi -dw-hdmi-ahb-audio -dw-hdmi-cec -dw-hdmi-i2s-audio -dw-i3c-master -dw-mipi-dsi -dw-xdata-pcie -dw9714 -dw9768 -dw9807-vcm -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_hdmi-imx -dw_mipi_dsi-stm -dw_mmc -dw_mmc-bluefield -dw_mmc-exynos -dw_mmc-hi3798cv200 -dw_mmc-k3 -dw_mmc-pci -dw_mmc-pltfm -dw_mmc-rockchip -dw_wdt -dwc-xlgmac -dwc3 -dwc3-exynos -dwc3-haps -dwc3-meson-g12a -dwc3-of-simple -dwc3-omap -dwc3-qcom -dwmac-altr-socfpga -dwmac-dwc-qos-eth -dwmac-generic -dwmac-intel-plat -dwmac-ipq806x -dwmac-loongson -dwmac-mediatek -dwmac-meson -dwmac-meson8b -dwmac-qcom-ethqos -dwmac-rk -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -earth-pt1 -earth-pt3 -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -ecc -ecdh_generic -ecdsa_generic -echainiv -echo -ecrdsa_generic -edt-ft5x06 -ee1004 -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efct -efi-pstore -efi_test -efibc -efs -egalax_ts -egalax_ts_serial -ehci-fsl -ehci-npcm7xx -ehci-omap -ehset -ektf2127 -elan_i2c -elants_i2c -elo -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_ipt -em_meta -em_nbyte -em_text -em_u32 -emac_rockchip -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -emif -empeg -ems_pci -ems_usb -emu10k1-gp -ena -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -eni -enic -envelope-detector -epat -epia -epic100 -eql -erofs -esas2r -esd_usb2 -esp4 -esp4_offload -esp6 -esp6_offload -esp_scsi -essiv -et1011c -et131x -et8ek8 -etas_es58x -ethoc -etnaviv -evbug -exc3000 -exfat -extcon-adc-jack -extcon-fsa9480 -extcon-gpio -extcon-max14577 -extcon-max3355 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-ptn5150 -extcon-qcom-spmi-misc -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -extcon-usbc-cros-ec -extcon-usbc-tusb320 -exynos-gsc -exynos-interconnect -exynos-lpass -exynos-rng -exynos-trng -exynos5422-dmc -exynos_adc -exynosdrm -ezusb -f2fs -f71805f -f71882fg -f75375s -f81232 -f81534 -f81601 -failover -fakelb -fan53555 -fan53880 -farsync -fastrpc -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 -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_pci -fdp -fdp_i2c -fealnx -ff-memless -fieldbus_dev -firedtv -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fl512 -flexcan -fm10k -fm801-gp -fm_drv -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fou6 -fpga-bridge -fpga-mgr -fpga-region -freevxfs -friq -frpw -fscache -fsi-core -fsi-master-aspeed -fsi-master-ast-cf -fsi-master-gpio -fsi-master-hub -fsi-occ -fsi-sbefifo -fsi-scom -fsia6b -fsl-dcu-drm -fsl-edma -fsl-edma-common -fsl-enetc -fsl-enetc-ierb -fsl-enetc-mdio -fsl-enetc-ptp -fsl-enetc-vf -fsl-mph-dr-of -fsl-qdma -fsl_linflexuart -fsl_lpuart -fsl_pq_mdio -fsl_ucc_hdlc -fsp-3y -ftdi-elan -ftdi_sio -ftgmac100 -ftl -ftm-quaddec -ftmac100 -ftsteutates -ftwdt010_wdt -fujitsu_ts -fusb302 -fxas21002c_core -fxas21002c_i2c -fxas21002c_spi -fxls8962af-core -fxls8962af-i2c -fxls8962af-spi -fxos8700_core -fxos8700_i2c -fxos8700_spi -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_multi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gateworks-gsc -gb-audio-apbridgea -gb-audio-codec -gb-audio-gb -gb-audio-manager -gb-audio-module -gb-bootrom -gb-es2 -gb-firmware -gb-gbphy -gb-gpio -gb-hid -gb-i2c -gb-light -gb-log -gb-loopback -gb-power-supply -gb-pwm -gb-raw -gb-sdio -gb-spi -gb-spilib -gb-uart -gb-usb -gb-vibrator -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 -gdmtty -gdmulte -ge2d -gemini -gen_probe -generic -generic-adc-battery -genet -geneve -gf2k -gfs2 -ghash-arm-ce -gianfar_driver -gl518sm -gl520sm -gl620a -gluebi -gm12u320 -gnss -gnss-mtk -gnss-serial -gnss-sirf -gnss-ubx -go7007 -go7007-loader -go7007-usb -goku_udc -goldfish_battery -goodix -gp2ap002 -gp2ap020a00f -gp8psk-fe -gpi -gpio -gpio-74x164 -gpio-74xx-mmio -gpio-adnp -gpio-adp5520 -gpio-adp5588 -gpio-aggregator -gpio-altera -gpio-altera-a10sr -gpio-amd-fch -gpio-arizona -gpio-aspeed -gpio-bd70528 -gpio-bd71815 -gpio-bd71828 -gpio-bd9571mwv -gpio-beeper -gpio-cadence -gpio-charger -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-exar -gpio-fan -gpio-grgpio -gpio-gw-pld -gpio-hlwd -gpio-ir-recv -gpio-ir-tx -gpio-janz-ttl -gpio-kempld -gpio-logicvc -gpio-lp3943 -gpio-lp873x -gpio-lp87565 -gpio-madera -gpio-max3191x -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-max77620 -gpio-max77650 -gpio-mb86s7x -gpio-mc33880 -gpio-menz127 -gpio-moxtet -gpio-pca953x -gpio-pca9570 -gpio-pcf857x -gpio-pci-idio-16 -gpio-pcie-idio-24 -gpio-pisosr -gpio-rcar -gpio-rdc321x -gpio-regulator -gpio-rockchip -gpio-sama5d2-piobu -gpio-siox -gpio-syscon -gpio-tpic2810 -gpio-tps65086 -gpio-tps65218 -gpio-tps65912 -gpio-ucb1400 -gpio-uniphier -gpio-vibra -gpio-viperboard -gpio-virtio -gpio-wcd934x -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio-xra1403 -gpio_backlight -gpio_decoder -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_wdt -gpu-sched -gpucc-msm8998 -gpucc-sc7180 -gpucc-sc7280 -gpucc-sdm660 -gpucc-sdm845 -gpucc-sm8150 -gpucc-sm8250 -gr_udc -grace -grcan -gre -greybus -grip -grip_mp -gs1662 -gs_fpga -gs_usb -gsc-hwmon -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtp -gud -guillemot -gunze -habanalabs -hackrf -hamachi -hampshire -hantro-vpu -hanwang -hci -hci_nokia -hci_uart -hci_vhci -hclge -hclgevf -hd3ss3220 -hd44780 -hd44780_common -hdc100x -hdc2010 -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcd -hdlcdrv -hdma -hdma_mgmt -hdpvr -he -helene -hellcreek_sw -hexium_gemini -hexium_orion -hfcmulti -hfcpci -hfcsusb -hfpll -hfs -hfsplus -hi311x -hi3660-mailbox -hi556 -hi6210-i2s -hi6220-mailbox -hi6220_reset -hi6421-pmic-core -hi6421-regulator -hi6421-spmi-pmic -hi6421v530-regulator -hi6421v600-irq -hi6421v600-regulator -hi655x-pmic -hi655x-regulator -hi8435 -hid -hid-a4tech -hid-accutouch -hid-alps -hid-apple -hid-appleir -hid-asus -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-bigbenff -hid-cherry -hid-chicony -hid-cmedia -hid-corsair -hid-cougar -hid-cp2112 -hid-creative-sb0540 -hid-cypress -hid-dr -hid-elan -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-ft260 -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-glorious -hid-google-hammer -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-icade -hid-ite -hid-jabra -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-led -hid-lenovo -hid-lg-g15 -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-macally -hid-magicmouse -hid-maltron -hid-mcp2221 -hid-mf -hid-microsoft -hid-monterey -hid-multitouch -hid-nti -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-playstation -hid-primax -hid-prodikeys -hid-redragon -hid-retrode -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-semitek -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-custom-intel-hinge -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-humidity -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-temperature -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steam -hid-steelseries -hid-sunplus -hid-thrustmaster -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-u2fzero -hid-uclogic -hid-udraw-ps3 -hid-viewsonic -hid-vivaldi -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hideep -hidp -highbank-cpufreq -highbank_l2_edac -highbank_mc_edac -hih6130 -hip04_eth -hisi-rng -hisi-sfc -hisi-spmi-controller -hisi504_nand -hisi_femac -hisi_hikey_usb -hisi_powerkey -hisi_thermal -hix5hd2_gmac -hmc425a -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hms-profinet -hnae -hnae3 -hns_dsaf -hns_enet_drv -hns_mdio -hopper -horus3a -hostap -hostap_pci -hostap_plx -hp03 -hp206c -hpfs -hpilo -hpsa -hptiop -hsi -hsi_char -hso -hsr -ht16k33 -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hwmon-vid -hx711 -hx8357 -hx8357d -hycon-hy46xx -hyperbus-core -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-altera -i2c-amd756 -i2c-amd8111 -i2c-arb-gpio-challenge -i2c-aspeed -i2c-axxia -i2c-cbus-gpio -i2c-cp2615 -i2c-cros-ec-tunnel -i2c-demux-pinctrl -i2c-designware-pci -i2c-diolan-u2c -i2c-dln2 -i2c-emev2 -i2c-exynos5 -i2c-fsi -i2c-gpio -i2c-hid -i2c-hid-of -i2c-hid-of-goodix -i2c-hix5hd2 -i2c-i801 -i2c-isch -i2c-kempld -i2c-matroxfb -i2c-meson -i2c-mt65xx -i2c-mux -i2c-mux-gpio -i2c-mux-gpmux -i2c-mux-ltc4306 -i2c-mux-mlxcpld -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-pinctrl -i2c-mux-reg -i2c-mv64xxx -i2c-nforce2 -i2c-nomadik -i2c-npcm7xx -i2c-nvidia-gpu -i2c-ocores -i2c-owl -i2c-parport -i2c-pca-platform -i2c-piix4 -i2c-pxa -i2c-qcom-cci -i2c-qcom-geni -i2c-qup -i2c-rcar -i2c-riic -i2c-rk3x -i2c-robotfuzz-osif -i2c-sh_mobile -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-slave-eeprom -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tiny-usb -i2c-versatile -i2c-via -i2c-viapro -i2c-viperboard -i2c-virtio -i2c-xiic -i3c -i3c-master-cdns -i40e -i5k_amb -i6300esb -i740fb -iavf -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mthca -ib_srp -ib_srpt -ib_umad -ib_uverbs -ibm-cffps -ibmaem -ibmpex -icc-bcm-voter -icc-osm-l3 -icc-rpmh -icc-smd-rpm -ice -ice40-spi -icp10100 -icp_multi -icplus -ics932s401 -idma64 -idmouse -idt77252 -idt_89hpesx -idt_gen2 -idt_gen3 -idtcps -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -ifcvf -ife -ifi_canfd -iforce -iforce-serio -iforce-usb -igb -igbvf -igc -igorplugusb -iguanair -ii_pci20kc -iio-mux -iio-rescale -iio-trig-hrtimer -iio-trig-interrupt -iio-trig-loop -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili9225 -ili922x -ili9320 -ili9341 -ili9486 -ilitek_ts_i2c -img-ascii-lcd -img-i2s-in -img-i2s-out -img-parallel-out -img-spdif-in -img-spdif-out -imm -imon -imon_raw -impa7 -ims-pcu -imx-ipu-v3 -imx-ldb -imx-tve -imx208 -imx214 -imx219 -imx258 -imx274 -imx290 -imx319 -imx334 -imx335 -imx355 -imx412 -imx6ul_tsc -imxdrm -ina209 -ina2xx -ina2xx-adc -ina3221 -industrialio -industrialio-buffer-cb -industrialio-buffer-dma -industrialio-buffer-dmaengine -industrialio-configfs -industrialio-hw-consumer -industrialio-sw-device -industrialio-sw-trigger -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -inspur-ipsps -int51x1 -intel-m10-bmc -intel-m10-bmc-hwmon -intel-nand-controller -intel-qep -intel-xway -intel_pmt -intel_th -intel_th_gth -intel_th_msu -intel_th_msu_sink -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -interact -interrupt-cnt -inv-icm42600 -inv-icm42600-i2c -inv-icm42600-spi -inv-mpu6050 -inv-mpu6050-i2c -inv-mpu6050-spi -io-domain -io_edgeport -io_ti -iosm -iova -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_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_tunnel -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 -ipa -ipack -ipaq -ipcomp -ipcomp6 -iphase -ipheth -ipip -ipmb_dev_int -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -iproc_nand -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 -ipw -ipw2100 -ipw2200 -iqs269a -iqs5xx -iqs620at-temp -iqs621-als -iqs624-pos -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-rx51 -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-spi -ir-usb -ir-xmp-decoder -ir35221 -ir36021 -ir38064 -ir_toy -irdma -irps5401 -irq-madera -irq-pruss-intc -irqbypass -iscsi_boot_sysfs -iscsi_target_mod -iscsi_tcp -isdnhdlc -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl29501 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl68137 -isl9305 -isofs -isp116x-hcd -isp1704_charger -isp1760 -it87 -it913x -itd1000 -ite-it66121 -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_cm -iw_cxgb4 -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -k3dma -kafs -kalmia -kaweth -kbic -kbtab -kcm -kcomedilib -kcs_bmc -kcs_bmc_aspeed -kcs_bmc_cdev_ipmi -kcs_bmc_npcm7xx -kcs_bmc_serio -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khadas-mcu -khadas_mcu_fan -kheaders -kl5kusb105 -kmx61 -kobil_sct -komeda -kpss-xcc -krait-cc -ks0108 -ks0127 -ks7010 -ks8842 -ks8851_common -ks8851_par -ks8851_spi -ksmbd -ksz8795 -ksz8795_spi -ksz884x -ksz8863_smi -ksz9477 -ksz9477_i2c -ksz9477_spi -ksz_common -ktd253-backlight -ktti -kvaser_pci -kvaser_pciefd -kvaser_usb -kxcjk-1013 -kxsd9 -kxsd9-i2c -kxsd9-spi -kxtj9 -kyber-iosched -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l4f00242t03 -l64781 -lan743x -lan78xx -lan9303-core -lan9303_i2c -lan9303_mdio -lanai -lantiq_gswip -lapb -lapbether -lattice-ecp3-config -lcc-ipq806x -lcc-mdm9615 -lcc-msm8960 -lcd -lcd2s -ldusb -lec -led-class-flash -led-class-multicolor -led_bl -leds-88pm860x -leds-aat1290 -leds-adp5520 -leds-an30259a -leds-as3645a -leds-aw2013 -leds-bcm6328 -leds-bcm6358 -leds-bd2802 -leds-blinkm -leds-cpcap -leds-cr0014114 -leds-da903x -leds-da9052 -leds-dac124s085 -leds-el15203000 -leds-gpio -leds-is31fl319x -leds-is31fl32xx -leds-ktd2692 -leds-lm3530 -leds-lm3532 -leds-lm3533 -leds-lm355x -leds-lm3601x -leds-lm36274 -leds-lm3642 -leds-lm3692x -leds-lm3697 -leds-lp3944 -leds-lp3952 -leds-lp50xx -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max77650 -leds-max77693 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-mlxreg -leds-mt6323 -leds-ns2 -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pm8058 -leds-pwm -leds-regulator -leds-rt4505 -leds-rt8515 -leds-sgm3140 -leds-spi-byte -leds-tca6507 -leds-ti-lmu-common -leds-tlc591xx -leds-tps6105x -leds-turris-omnia -leds-wm831x-status -leds-wm8350 -ledtrig-activity -ledtrig-audio -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-netdev -ledtrig-oneshot -ledtrig-pattern -ledtrig-timer -ledtrig-transient -ledtrig-tty -ledtrig-usbport -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gl5 -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libarc4 -libceph -libchacha -libchacha20poly1305 -libcomposite -libcrc32c -libcurve25519 -libcurve25519-generic -libcxgb -libcxgbi -libdes -libertas -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libpoly1305 -libsas -libsm4 -lightning -lima -lineage-pem -linear -linkstation-poweroff -lis3lv02d -lis3lv02d_i2c -lis3lv02d_spi -liteuart -litex_liteeth -litex_soc_ctrl -lkkbd -ll_temac -llc -llc2 -llcc-qcom -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3560 -lm3630a_bl -lm3639_bl -lm363x-regulator -lm3646 -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lmh -lmp91000 -lms283gf05 -lms501kf03 -lnbh25 -lnbh29 -lnbp21 -lnbp22 -lochnagar-hwmon -lochnagar-regulator -lockd -lontium-lt8912b -lontium-lt9611 -lontium-lt9611uxc -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp873x -lp873x-regulator -lp8755 -lp87565 -lp87565-regulator -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpass-gfm-sm8250 -lpasscc-sdm845 -lpasscorecc-sc7180 -lpc_ich -lpc_sch -lpddr2_nvm -lpddr_cmds -lpfc -lru_cache -lrw -lt3651-charger -ltc1660 -ltc2471 -ltc2485 -ltc2496 -ltc2497 -ltc2497-core -ltc2632 -ltc2941-battery-gauge -ltc2945 -ltc2947-core -ltc2947-i2c -ltc2947-spi -ltc2978 -ltc2983 -ltc2990 -ltc2992 -ltc3589 -ltc3676 -ltc3815 -ltc4151 -ltc4162-l-charger -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv0104cs -lv5207lp -lvds-codec -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m2m-deinterlace -m52790 -m5mols -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -m_can_pci -m_can_platform -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -mac802154_hwsim -macb -macb_pci -machxo2-spi -macmodes -macsec -macvlan -macvtap -madera -madera-i2c -madera-spi -mag3110 -magellan -mailbox-altera -mailbox-test -mali-dp -mantis -mantis_core -map_absent -map_ram -map_rom -marvell -marvell-88x2222 -marvell-cesa -marvell10g -marvell_nand -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max11100 -max1111 -max1118 -max11801_ts -max1241 -max127 -max1363 -max14577-regulator -max14577_charger -max14656_charger_detector -max15301 -max1586 -max16064 -max16065 -max1619 -max16601 -max1668 -max17040_battery -max17042_battery -max1721x_battery -max197 -max20730 -max20751 -max2165 -max2175 -max30100 -max30102 -max3100 -max31722 -max31730 -max31785 -max31790 -max31856 -max3420_udc -max3421-hcd -max34440 -max44000 -max44009 -max517 -max5432 -max5481 -max5487 -max5821 -max63xx_wdt -max6621 -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77620-regulator -max77620_thermal -max77620_wdt -max77650 -max77650-charger -max77650-onkey -max77650-regulator -max77686-regulator -max77693-haptic -max77693-regulator -max77693_charger -max77802-regulator -max77826-regulator -max8649 -max8660 -max8688 -max8893 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997-regulator -max8997_charger -max8997_haptic -max8998 -max8998_charger -max9271 -max9286 -max9611 -maxim_thermocouple -mb1232 -mb862xxfb -mb86a16 -mb86a20s -mc -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc3230 -mc44s803 -mcam-core -mcb -mcb-lpc -mcb-pci -mcba_usb -mcde_drm -mceusb -mchp23k256 -mchp48l640 -mcp16502 -mcp251x -mcp251xfd -mcp3021 -mcp320x -mcp3422 -mcp3911 -mcp4018 -mcp41010 -mcp4131 -mcp4531 -mcp4725 -mcp4922 -mcr20a -mcs5000_ts -mcs7830 -mcs_touchkey -mct_u232 -mctp -md-cluster -md4 -mdc800 -mdev -mdio -mdio-aspeed -mdio-bcm-unimac -mdio-gpio -mdio-hisi-femac -mdio-i2c -mdio-ipq4019 -mdio-ipq8064 -mdio-mscc-miim -mdio-mux -mdio-mux-gpio -mdio-mux-meson-g12a -mdio-mux-mmioreg -mdio-mux-multiplexer -mdio-mvusb -mdt_loader -me4000 -me_daq -mediatek -mediatek-cpufreq -mediatek-cpufreq-hw -mediatek-drm -mediatek-drm-hdmi -mediatek-ge -megachips-stdpxxxx-ge-b850v3-fw -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -melfas_mip4 -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -menz69_wdt -meson-canvas -meson-drm -meson-gx-mmc -meson-gxl -meson-ir -meson-ir-tx -meson-mx-sdhc -meson-mx-sdio -meson-rng -meson-vdec -meson_dw_hdmi -meson_gxbb_wdt -meson_nand -meson_saradc -meson_wdt -metro-usb -metronomefb -mf6x4 -mgag200 -mhi -mhi_net -mhi_pci_generic -mhi_wwan_ctrl -mhi_wwan_mbim -mi0283qt -michael_mic -micrel -microchip -microchip-tcb-capture -microchip_t1 -microread -microread_i2c -microtek -mii -milbeaut-hdmac -milbeaut-xdmac -milbeaut_usio -minix -mip6 -mipi-i3c-hci -mite -mk712 -mkiss -ml86v7667 -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx5_vdpa -mlx90614 -mlx90632 -mlx_wdt -mlxfw -mlxreg-fan -mlxreg-hotplug -mlxreg-io -mlxsw_core -mlxsw_i2c -mlxsw_minimal -mlxsw_pci -mlxsw_spectrum -mma7455_core -mma7455_i2c -mma7455_spi -mma7660 -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_spi -mmcc-apq8084 -mmcc-msm8960 -mmcc-msm8974 -mmcc-msm8994 -mmcc-msm8996 -mmcc-msm8998 -mmcc-sdm660 -mms114 -mn88443x -mn88472 -mn88473 -mos7720 -mos7840 -most_cdev -most_core -most_dim2 -most_i2c -most_net -most_snd -most_usb -most_video -motorcomm -motorola-cpcap -moxa -moxtet -mp2629 -mp2629_adc -mp2629_charger -mp2888 -mp2975 -mp5416 -mp8859 -mp886x -mpc624 -mpi3mr -mpl115 -mpl115_i2c -mpl115_spi -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpq7920 -mpr121_touchkey -mpt3sas -mptbase -mptcp_diag -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mr75203 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -msc313e_wdt -mscc -mscc_ocelot -mscc_ocelot_switch_lib -mscc_seville -msdos -msg2638 -msi001 -msi2500 -msm -msp3400 -mspro_block -mss-sc7180 -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt312 -mt352 -mt6311-regulator -mt6315-regulator -mt6323-regulator -mt6358-regulator -mt6359-accdet -mt6359-regulator -mt6360-adc -mt6360-core -mt6360-regulator -mt6360_charger -mt6380-regulator -mt6397 -mt6397-regulator -mt6577_auxadc -mt6797-mt6351 -mt7530 -mt76 -mt76-connac-lib -mt76-sdio -mt76-usb -mt7601u -mt7603e -mt7615-common -mt7615e -mt7663-usb-sdio-common -mt7663s -mt7663u -mt76x0-common -mt76x02-lib -mt76x02-usb -mt76x0e -mt76x0u -mt76x2-common -mt76x2e -mt76x2u -mt7915e -mt7921e -mt8183-da7219-max98357 -mt8183-mt6358-ts3a227-max98357 -mt8192-mt6359-rt1015-rt5682 -mt8195-mt6359-rt1019-rt5682 -mt9m001 -mt9m032 -mt9m111 -mt9p031 -mt9t001 -mt9t112 -mt9v011 -mt9v032 -mt9v111 -mtd_dataflash -mtdoops -mtdpstore -mtdram -mtdswap -mtip32xx -mtk-btcvsd -mtk-cir -mtk-cmdq-helper -mtk-cmdq-mailbox -mtk-cqdma -mtk-devapc -mtk-hsdma -mtk-pmic-keys -mtk-pmic-wrap -mtk-rng -mtk-sd -mtk-smi -mtk-uart-apdma -mtk-vpu -mtk_ecc -mtk_nand -mtk_rpmsg -mtk_scp -mtk_scp_ipi -mtk_thermal -mtk_wdt -mtouch -mtu3 -multipath -multiq3 -musb_dsps -mux-adg792a -mux-adgs1408 -mux-core -mux-gpio -mux-mmio -mv643xx_eth -mv88e6060 -mv88e6xxx -mv_u3d_core -mv_udc -mvmdio -mvneta -mvpp2 -mvsas -mvsdio -mvumi -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxc6255 -mxic_nand -mxl-gpy -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxl5xx -mxl692 -mxser -mxuport -myrb -myri10ge -myrs -n_gsm -n_hdlc -nandsim -national -natsemi -nau7802 -navman -nbd -nbpfaxi -nci -nci_spi -nci_uart -nct6683 -nct6775 -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -nd_virtio -ne2k-pci -neofb -net1080 -net2272 -net2280 -net_failover -netconsole -netdevsim -netfs -netjet -netlink_diag -netrom -netup-unidvb -netxen_nic -newtonkbd -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 -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -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 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -nhpoly1305 -nhpoly1305-neon -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_labpc -ni_labpc_common -ni_labpc_pci -ni_pcidio -ni_pcimio -ni_routes_test -ni_routing -ni_tio -ni_tiocmd -ni_usb6501 -nicstar -nilfs2 -niu -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 -noa1305 -noon010pc30 -nosy -notifier-error-inject -nouveau -nozomi -npcm-rng -npcm750-pwm-fan -npcm_adc -nps_enet -ns558 -ns83820 -nsh -nsp32 -ntb -ntb_hw_epf -ntb_hw_idt -ntb_hw_switchtec -ntb_netdev -ntb_perf -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -ntfs3 -ntxec -null_blk -nvidiafb -nvme -nvme-core -nvme-fabrics -nvme-fc -nvme-loop -nvme-rdma -nvme-tcp -nvmem-rave-sp-eeprom -nvmem-reboot-mode -nvmem-rmem -nvmem-rockchip-otp -nvmem-uniphier-efuse -nvmem_meson_mx_efuse -nvmem_qcom-spmi-sdam -nvmem_qfprom -nvmem_rockchip_efuse -nvmet -nvmet-fc -nvmet-rdma -nvmet-tcp -nwl-dsi -nxp-c45-tja11xx -nxp-nci -nxp-nci_i2c -nxp-ptn3460 -nxp-tja11xx -nxt200x -nxt6000 -nzxt-kraken2 -objagg -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocmem -ocrdma -of-fpga-region -of_mmc_spi -of_pmem -of_xilinx_wdt -ofb -omap -omap-aes-driver -omap-crypto -omap-des -omap-mailbox -omap-ocp2scp -omap-rng -omap-sham -omap2430 -omap2fb -omap4-keypad -omap_hdq -omap_hwspinlock -omap_remoteproc -omap_wdt -omapdss -omfs -omninet -on20 -on26 -onenand -opencores-kbd -openvswitch -opt3001 -optee -optee-rng -opticon -option -or51132 -or51211 -orangefs -orinoco -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -orion_nand -orion_wdt -oti6858 -otm3225a -ov02a10 -ov13858 -ov2640 -ov2659 -ov2680 -ov2685 -ov5640 -ov5645 -ov5647 -ov5648 -ov5670 -ov5675 -ov5695 -ov6650 -ov7251 -ov7640 -ov7670 -ov772x -ov7740 -ov8856 -ov8865 -ov9282 -ov9640 -ov9650 -overlay -owl-dma -owl-emac -owl-mmc -oxu210hp-hcd -p54common -p54pci -p54spi -p54usb -p8022 -pa12203001 -palmas-pwrbutton -palmas-regulator -palmas_gpadc -pandora_bl -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 -parallel-display -paride -parkbd -parman -parport -parport_ax88796 -parport_pc -parport_serial -parser_trx -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_of_platform -pata_oldpiix -pata_opti -pata_optidma -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sis -pata_sl82c105 -pata_triflex -pata_via -pbias-regulator -pc300too -pc87360 -pc87427 -pca9450-regulator -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcd -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-epf-ntb -pci-exynos -pci-pf-stub -pci-stub -pci200syn -pcie-mediatek-gen3 -pcie-rockchip-host -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmda12 -pcmmio -pcmuio -pcnet32 -pcrypt -pcs-lynx -pcs_xpcs -pcwd_pci -pcwd_usb -pd -pda_power -pdc_adma -pdr_interface -peak_pci -peak_pciefd -peak_usb -pegasus -pegasus_notetaker -penmount -pf -pf8x00-regulator -pfuze100-regulator -pg -phantom -phonet -phram -phy-am335x -phy-am335x-control -phy-armada38x-comphy -phy-bcm-kona-usb2 -phy-berlin-sata -phy-berlin-usb -phy-cadence-salvo -phy-cadence-sierra -phy-cadence-torrent -phy-can-transceiver -phy-cpcap-usb -phy-dm816x-usb -phy-exynos-ufs -phy-exynos-usb2 -phy-exynos5-usbdrd -phy-fsl-imx8-mipi-dphy -phy-fsl-imx8mq-usb -phy-gpio-vbus-usb -phy-hix5hd2-sata -phy-isp1301 -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-control -phy-omap-usb2 -phy-pxa-28nm-hsic -phy-pxa-28nm-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-tahvo -phy-ti-pipe3 -phy-tusb1210 -phy-twl4030-usb -phy-twl6030-usb -phy-uniphier-ahci -phy-uniphier-pcie -phy-uniphier-usb2 -phy-uniphier-usb3hs -phy-uniphier-usb3ss -phylink -physmap -pi3usb30532 -pi433 -pim4328 -pinctrl-apq8064 -pinctrl-apq8084 -pinctrl-axp209 -pinctrl-da9062 -pinctrl-ipq4019 -pinctrl-ipq6018 -pinctrl-ipq8064 -pinctrl-ipq8074 -pinctrl-lochnagar -pinctrl-lpass-lpi -pinctrl-madera -pinctrl-max77620 -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-qcs404 -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-spmi-gpio -pinctrl-spmi-mpp -pinctrl-ssbi-gpio -pinctrl-ssbi-mpp -pinctrl-stmfx -ping -pistachio-internal-dac -pixcir_i2c_ts -pkcs7_test_key -pkcs8_key_parser -pktcdvd -pktgen -pl111_drm -pl172 -pl2303 -pl330 -pl353-smc -pl35x-nand-controller -plat-ram -plat_nand -platform_lcd -platform_mhu -plip -plusb -pluto2 -plx_dma -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm6764tr -pm80xx -pm8916_wdt -pm8941-pwrkey -pm8xxx-vibrator -pmbus -pmbus_core -pmc551 -pmcraid -pmic8xxx-keypad -pmic8xxx-pwrkey -pms7003 -pn532_uart -pn533 -pn533_i2c -pn533_usb -pn544 -pn544_i2c -pn_pep -poly1305-arm -poly1305_generic -port100 -powermate -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_parport -pptp -prestera -prestera_pci -pretimeout_panic -prism2_usb -pru_rproc -pruss -ps2-gpio -ps2mult -psample -psmouse -psnap -pstore_blk -pstore_zone -psxpad-spi -pt -ptp-qoriq -ptp_clockmatrix -ptp_idt82p33 -ptp_ines -ptp_kvm -ptp_ocp -pulse8-cec -pulsedlight-lidar-lite-v2 -pv88060-regulator -pv88080-regulator -pv88090-regulator -pvpanic -pvpanic-mmio -pvpanic-pci -pvrusb2 -pwc -pwm-atmel-hlcdc -pwm-atmel-tcb -pwm-beeper -pwm-berlin -pwm-cros-ec -pwm-dwc -pwm-fan -pwm-fsl-ftm -pwm-hibvt -pwm-iqs620a -pwm-ir-tx -pwm-lp3943 -pwm-mediatek -pwm-meson -pwm-mtk-disp -pwm-ntxec -pwm-omap-dmtimer -pwm-pca9685 -pwm-rcar -pwm-regulator -pwm-renesas-tpu -pwm-rockchip -pwm-samsung -pwm-twl -pwm-twl-led -pwm-vibra -pwm_bl -pwrseq_emmc -pwrseq_sd8787 -pwrseq_simple -pxa168_eth -pxa27x_udc -pxe1610 -pxrc -q54sj108a2 -q6adm -q6afe -q6afe-clocks -q6afe-dai -q6asm -q6asm-dai -q6core -q6dsp-common -q6routing -q6sstop-qcs404 -qca8k -qca_7k_common -qcaspi -qcauart -qcaux -qcom-apcs-ipc-mailbox -qcom-coincell -qcom-cpufreq-hw -qcom-cpufreq-nvmem -qcom-emac -qcom-geni-se -qcom-labibb-regulator -qcom-pm8008 -qcom-pm8xxx -qcom-pm8xxx-xoadc -qcom-pmic-typec -qcom-pon -qcom-rng -qcom-rpmh-regulator -qcom-spmi-adc-tm5 -qcom-spmi-adc5 -qcom-spmi-iadc -qcom-spmi-pmic -qcom-spmi-temp-alarm -qcom-spmi-vadc -qcom-vadc-common -qcom-wdt -qcom-wled -qcom_aoss -qcom_common -qcom_edac -qcom_geni_serial -qcom_glink -qcom_glink_rpm -qcom_glink_smem -qcom_gsbi -qcom_hwspinlock -qcom_nandc -qcom_pil_info -qcom_q6v5 -qcom_q6v5_adsp -qcom_q6v5_mss -qcom_q6v5_pas -qcom_q6v5_wcss -qcom_rpm -qcom_rpm-regulator -qcom_smbb -qcom_smd -qcom_smd-regulator -qcom_spmi-regulator -qcom_sysmon -qcom_tsens -qcom_usb_vbus-regulator -qcomsmempart -qcrypto -qcserial -qed -qede -qedf -qedi -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qm1d1b0004 -qm1d1c0042 -qmi_helpers -qmi_wwan -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 -qrtr -qrtr-mhi -qrtr-smd -qrtr-tun -qsemi -qt1010 -qt1050 -qt1070 -qt2160 -qtnfmac -qtnfmac_pcie -quatech2 -quota_tree -quota_v1 -quota_v2 -qwiic-joystick -qxl -r592 -r6040 -r8152 -r8153_ecm -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723bs -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si470x-common -radio-si470x-i2c -radio-si470x-usb -radio-si476x -radio-tea5764 -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid_class -rainshadow-cec -ravb -rave-sp -rave-sp-backlight -rave-sp-pwrbutton -rave-sp-wdt -raw_diag -raw_gadget -raydium_i2c_ts -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 -rc5t583-regulator -rcar-csi2 -rcar-dmac -rcar-du-drm -rcar-fcp -rcar-gyroadc -rcar-vin -rcar_can -rcar_canfd -rcar_cmm -rcar_drif -rcar_dw_hdmi -rcar_fdp1 -rcar_gen3_thermal -rcar_jpu -rcar_lvds -rcar_thermal -rdacm20 -rdacm21 -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -realtek-smi -reboot-mode -redboot -redrat3 -regmap-i3c -regmap-sccb -regmap-sdw -regmap-sdw-mbq -regmap-slimbus -regmap-spi-avmm -regmap-spmi -regmap-w1 -regulator-haptic -reiserfs -renesas-ceu -renesas-rpc-if -renesas_sdhi_core -renesas_sdhi_internal_dmac -renesas_sdhi_sys_dmac -renesas_usb3 -renesas_usbhs -renesas_wdt -repaper -reset-a10sr -reset-hi3660 -reset-meson-audio-arb -reset-qcom-pdc -reset-scmi -reset-ti-syscon -reset-uniphier -reset-uniphier-glue -resistive-adc-touch -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd77402 -rfd_ftl -rfkill-gpio -rio-scan -rio_cm -rio_mport_cdev -rionet -rivafb -rj54n1cb0c -rk3399_dmc -rk805-pwrkey -rk808 -rk808-regulator -rk_crypto -rm3100-core -rm3100-i2c -rm3100-spi -rmd160 -rmi_core -rmi_i2c -rmi_smbus -rmi_spi -rmnet -rmobile-reset -rmtfs_mem -rn5t618 -rn5t618-adc -rn5t618-regulator -rn5t618_power -rn5t618_wdt -rnbd-client -rnbd-server -rndis_host -rndis_wlan -rockchip -rockchip-dfi -rockchip-isp1 -rockchip-nand-controller -rockchip-rga -rockchip-vdec -rockchip_saradc -rockchip_thermal -rockchipdrm -rocker -rohm-bd70528 -rohm-bd71828 -rohm-bd718x7 -rohm-bd9576 -rohm-regulator -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpi-panel-attiny-regulator -rpmpd -rpmsg_char -rpmsg_core -rpmsg_ns -rpmsg_wwan_ctrl -rpr0521 -rsi_91x -rsi_sdio -rsi_usb -rsmu-i2c -rsmu-spi -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt4801-regulator -rt4831 -rt4831-backlight -rt4831-regulator -rt5033 -rt5033-regulator -rt5033_battery -rt6160-regulator -rt61pci -rt6245-regulator -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab-eoz9 -rtc-abx80x -rtc-armada38x -rtc-as3722 -rtc-aspeed -rtc-bd70528 -rtc-bq32k -rtc-bq4802 -rtc-cadence -rtc-cmos -rtc-cpcap -rtc-cros-ec -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1302 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-em3027 -rtc-fm3130 -rtc-ftrtc010 -rtc-goldfish -rtc-hid-sensor-time -rtc-hym8563 -rtc-isl12022 -rtc-isl12026 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max6916 -rtc-max77686 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-meson -rtc-meson-vrtc -rtc-msm6242 -rtc-mt2712 -rtc-mt6397 -rtc-mt7622 -rtc-ntxec -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf85363 -rtc-pcf8563 -rtc-pcf8583 -rtc-pl030 -rtc-pm8xxx -rtc-r7301 -rtc-r9701 -rtc-rc5t583 -rtc-rc5t619 -rtc-rk808 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3028 -rtc-rv3029c2 -rtc-rv3032 -rtc-rv8803 -rtc-rx4581 -rtc-rx6110 -rtc-rx8010 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-sd3078 -rtc-sh -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtc-zynqmp -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rtmv20-regulator -rtq2134-regulator -rtq6752-regulator -rtrs-client -rtrs-core -rtrs-server -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rtw88_8723d -rtw88_8723de -rtw88_8821c -rtw88_8821ce -rtw88_8822b -rtw88_8822be -rtw88_8822c -rtw88_8822ce -rtw88_core -rtw88_pci -rtw89_core -rtw89_pci -rx51_battery -rxrpc -rza_wdt -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3c2410_wdt -s3fb -s3fwrn5 -s3fwrn5_i2c -s3fwrn82_uart -s526 -s5c73m3 -s5h1409 -s5h1411 -s5h1420 -s5h1432 -s5k4ecgx -s5k5baf -s5k6a3 -s5k6aa -s5m8767 -s5p-cec -s5p-g2d -s5p-jpeg -s5p-mfc -s5p-sss -s626 -s6sy761 -s921 -saa6588 -saa6752hs -saa7110 -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7185 -saa7706h -safe_serial -sample-trace-array -samsung-keypad -samsung-sxgbe -samsung_tty -sata_dwc_460ex -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_rcar -sata_sil -sata_sil24 -sata_sis -sata_svw -sata_sx4 -sata_uli -sata_via -sata_vsc -savagefb -sbp_target -sbrmi -sbs-battery -sbs-charger -sbs-manager -sbtsi_temp -sc16is7xx -sc92031 -sca3000 -sca3300 -scd30_core -scd30_i2c -scd30_serial -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 -scmi-cpufreq -scmi-hwmon -scmi-regulator -scmi_iio -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_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_diag -sd_adc_modulator -sdhci-cadence -sdhci-dove -sdhci-milbeaut -sdhci-msm -sdhci-of-arasan -sdhci-of-aspeed -sdhci-of-at91 -sdhci-of-dwcmshc -sdhci-omap -sdhci-pci -sdhci-pxav3 -sdhci-s3c -sdhci-xenon-driver -sdhci_am654 -sdhci_f_sdh30 -sdio_uart -sensorhub -serial_ir -serio_raw -sermouse -serpent_generic -serport -ses -sf-pdma -sfc -sfc-falcon -sfp -sgi_w1 -sgp30 -sgp40 -sh_eth -sh_mmcif -sh_mobile_lcdcfb -sha1-arm -sha1-arm-ce -sha1-arm-neon -sha2-arm-ce -sha256-arm -sha3_generic -sha512-arm -shark2 -sharpslpart -shiftfs -sht15 -sht21 -sht3x -sht4x -shtc1 -si1133 -si1145 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sifive -sii902x -sii9234 -sil-sii8620 -sil164 -silead -simple-bridge -simpledrm -simplefb -siox-bus-gpio -siox-core -sir_ir -sis190 -sis5595 -sis900 -sis_i2c -sisfb -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -sja1105 -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -slcan -slg51000-regulator -slicoss -slim-qcom-ctrl -slim-qcom-ngd-ctrl -slimbus -slip -slram -sm2_generic -sm3_generic -sm4_generic -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smartpqi -smb347-charger -smc -smc911x -smc91x -smc_diag -smd-rpm -smem -smipcie -smm665 -smp2p -smsc -smsc47b397 -smsc47m1 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsm -smsmdtv -smssdio -smsusb -snd-aaci -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als300 -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt3328 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-cs4281 -snd-cs46xx -snd-cs8427 -snd-ctl-led -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1938 -snd-es1968 -snd-fireface -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-motu -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-cs8409 -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel-dspcfg -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-maestro3 -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcxhr -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-63xx -snd-soc-ac97 -snd-soc-acp-rt5645-mach -snd-soc-adau-utils -snd-soc-adau1372 -snd-soc-adau1372-i2c -snd-soc-adau1372-spi -snd-soc-adau1701 -snd-soc-adau1761 -snd-soc-adau1761-i2c -snd-soc-adau1761-spi -snd-soc-adau17x1 -snd-soc-adau7002 -snd-soc-adau7118 -snd-soc-adau7118-hw -snd-soc-adau7118-i2c -snd-soc-adi-axi-i2s -snd-soc-adi-axi-spdif -snd-soc-ak4104 -snd-soc-ak4118 -snd-soc-ak4458 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-ak5558 -snd-soc-alc5623 -snd-soc-apq8016-sbc -snd-soc-apq8096 -snd-soc-aries-wm8994 -snd-soc-arizona -snd-soc-armada-370-db -snd-soc-arndale -snd-soc-audio-graph-card -snd-soc-bd28623 -snd-soc-bt-sco -snd-soc-cpcap -snd-soc-cros-ec-codec -snd-soc-cs35l32 -snd-soc-cs35l33 -snd-soc-cs35l34 -snd-soc-cs35l35 -snd-soc-cs35l36 -snd-soc-cs35l41 -snd-soc-cs35l41-i2c -snd-soc-cs35l41-lib -snd-soc-cs35l41-spi -snd-soc-cs4234 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l42 -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs43130 -snd-soc-cs4341 -snd-soc-cs4349 -snd-soc-cs53l30 -snd-soc-cx2072x -snd-soc-da7213 -snd-soc-da7219 -snd-soc-davinci-mcasp -snd-soc-dmic -snd-soc-es7134 -snd-soc-es7241 -snd-soc-es8316 -snd-soc-es8328 -snd-soc-es8328-i2c -snd-soc-es8328-spi -snd-soc-fsi -snd-soc-fsl-asrc -snd-soc-fsl-audmix -snd-soc-fsl-easrc -snd-soc-fsl-esai -snd-soc-fsl-micfil -snd-soc-fsl-mqs -snd-soc-fsl-rpmsg -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-fsl-xcvr -snd-soc-gtm601 -snd-soc-hdmi-codec -snd-soc-i2s -snd-soc-ics43432 -snd-soc-idma -snd-soc-imx-audmux -snd-soc-inno-rk3036 -snd-soc-kirkwood -snd-soc-lochnagar-sc -snd-soc-lpass-apq8016 -snd-soc-lpass-cpu -snd-soc-lpass-hdmi -snd-soc-lpass-ipq806x -snd-soc-lpass-platform -snd-soc-lpass-rx-macro -snd-soc-lpass-sc7180 -snd-soc-lpass-tx-macro -snd-soc-lpass-va-macro -snd-soc-lpass-wsa-macro -snd-soc-max9759 -snd-soc-max98088 -snd-soc-max98090 -snd-soc-max98095 -snd-soc-max98357a -snd-soc-max98373 -snd-soc-max98373-i2c -snd-soc-max98373-sdw -snd-soc-max98390 -snd-soc-max98504 -snd-soc-max9860 -snd-soc-max9867 -snd-soc-max98927 -snd-soc-meson-aiu -snd-soc-meson-axg-fifo -snd-soc-meson-axg-frddr -snd-soc-meson-axg-pdm -snd-soc-meson-axg-sound-card -snd-soc-meson-axg-spdifin -snd-soc-meson-axg-spdifout -snd-soc-meson-axg-tdm-formatter -snd-soc-meson-axg-tdm-interface -snd-soc-meson-axg-tdmin -snd-soc-meson-axg-tdmout -snd-soc-meson-axg-toddr -snd-soc-meson-card-utils -snd-soc-meson-codec-glue -snd-soc-meson-g12a-toacodec -snd-soc-meson-g12a-tohdmitx -snd-soc-meson-gx-sound-card -snd-soc-meson-t9015 -snd-soc-midas-wm1811 -snd-soc-mikroe-proto -snd-soc-msm8916-analog -snd-soc-msm8916-digital -snd-soc-mt6351 -snd-soc-mt6358 -snd-soc-mt6359 -snd-soc-mt6660 -snd-soc-mt6797-afe -snd-soc-mt8183-afe -snd-soc-mt8192-afe -snd-soc-mt8195-afe -snd-soc-mtk-common -snd-soc-nau8315 -snd-soc-nau8540 -snd-soc-nau8810 -snd-soc-nau8822 -snd-soc-nau8824 -snd-soc-odroid -snd-soc-omap-mcbsp -snd-soc-pcm -snd-soc-pcm1681 -snd-soc-pcm1789-codec -snd-soc-pcm1789-i2c -snd-soc-pcm179x-codec -snd-soc-pcm179x-i2c -snd-soc-pcm179x-spi -snd-soc-pcm186x -snd-soc-pcm186x-i2c -snd-soc-pcm186x-spi -snd-soc-pcm3060 -snd-soc-pcm3060-i2c -snd-soc-pcm3060-spi -snd-soc-pcm3168a -snd-soc-pcm3168a-i2c -snd-soc-pcm3168a-spi -snd-soc-pcm5102a -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-qcom-common -snd-soc-rcar -snd-soc-rk3288-hdmi-analog -snd-soc-rk3328 -snd-soc-rk3399-gru-sound -snd-soc-rk817 -snd-soc-rl6231 -snd-soc-rockchip-i2s -snd-soc-rockchip-max98090 -snd-soc-rockchip-pcm -snd-soc-rockchip-pdm -snd-soc-rockchip-rt5645 -snd-soc-rockchip-spdif -snd-soc-rt1015 -snd-soc-rt1015p -snd-soc-rt1308-sdw -snd-soc-rt1316-sdw -snd-soc-rt5514 -snd-soc-rt5514-spi -snd-soc-rt5616 -snd-soc-rt5631 -snd-soc-rt5640 -snd-soc-rt5645 -snd-soc-rt5659 -snd-soc-rt5663 -snd-soc-rt5682 -snd-soc-rt5682-i2c -snd-soc-rt5682-sdw -snd-soc-rt700 -snd-soc-rt711 -snd-soc-rt711-sdca -snd-soc-rt715 -snd-soc-rt715-sdca -snd-soc-s3c-dma -snd-soc-samsung-spdif -snd-soc-sc7180 -snd-soc-sdm845 -snd-soc-sdw-mockup -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-sigmadsp-regmap -snd-soc-simple-amplifier -snd-soc-simple-card -snd-soc-simple-card-utils -snd-soc-simple-mux -snd-soc-sm8250 -snd-soc-smdk-spdif -snd-soc-smdk-wm8994 -snd-soc-smdk-wm8994pcm -snd-soc-snow -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2305 -snd-soc-ssm2518 -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-storm -snd-soc-tas2552 -snd-soc-tas2562 -snd-soc-tas2764 -snd-soc-tas2770 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tas5720 -snd-soc-tas6424 -snd-soc-tda7419 -snd-soc-tfa9879 -snd-soc-tfa989x -snd-soc-ti-edma -snd-soc-ti-sdma -snd-soc-ti-udma -snd-soc-tlv320adcx140 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic32x4 -snd-soc-tlv320aic32x4-i2c -snd-soc-tlv320aic32x4-spi -snd-soc-tlv320aic3x -snd-soc-tlv320aic3x-i2c -snd-soc-tlv320aic3x-spi -snd-soc-tm2-wm5110 -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-tscs42xx -snd-soc-tscs454 -snd-soc-uda1334 -snd-soc-uniphier-aio-cpu -snd-soc-uniphier-aio-ld11 -snd-soc-uniphier-aio-pxs2 -snd-soc-uniphier-evea -snd-soc-wcd-mbhc -snd-soc-wcd9335 -snd-soc-wcd934x -snd-soc-wcd938x -snd-soc-wcd938x-sdw -snd-soc-wm-adsp -snd-soc-wm-hubs -snd-soc-wm5110 -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8524 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8782 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8904 -snd-soc-wm8960 -snd-soc-wm8962 -snd-soc-wm8974 -snd-soc-wm8978 -snd-soc-wm8985 -snd-soc-wm8994 -snd-soc-wsa881x -snd-soc-xlnx-formatter-pcm -snd-soc-xlnx-i2s -snd-soc-xlnx-spdif -snd-soc-xtfpga-i2s -snd-soc-zl38060 -snd-sof -snd-sof-of -snd-sonicvibes -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-variax -snd-usbmidi-lib -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-ymfpci -sni_ave -snic -snps_udc_core -snps_udc_plat -socfpga -socfpga-a10 -socinfo -softdog -softing -solo6x10 -solos-pci -sony-btf-mpx -soundwire-bus -soundwire-qcom -sp2 -sp805_wdt -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -speedfax -speedtch -spi-altera-core -spi-altera-dfl -spi-altera-platform -spi-amd -spi-armada-3700 -spi-axi-spi-engine -spi-bitbang -spi-butterfly -spi-cadence -spi-cadence-quadspi -spi-dln2 -spi-dw -spi-dw-mmio -spi-dw-pci -spi-fsi -spi-geni-qcom -spi-gpio -spi-lm70llp -spi-loopback-test -spi-meson-spicc -spi-meson-spifc -spi-mt65xx -spi-mtk-nor -spi-mux -spi-mxic -spi-nor -spi-npcm-fiu -spi-npcm-pspi -spi-nxp-fspi -spi-oc-tiny -spi-orion -spi-pl022 -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-qcom-qspi -spi-qup -spi-rockchip -spi-rockchip-sfc -spi-rpc-if -spi-rspi -spi-s3c64xx -spi-sc18is602 -spi-sh-hspi -spi-sh-msiof -spi-sifive -spi-slave-mt27xx -spi-slave-system-control -spi-slave-time -spi-ti-qspi -spi-tle62x0 -spi-uniphier -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spinand -spmi -spmi-pmic-arb -sprd_serial -sps30 -sps30_i2c -sps30_serial -sr030pc30 -sr9700 -sr9800 -srf04 -srf08 -ssb -ssbi -ssd1307fb -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -sstfb -ssu100 -st -st-asc -st-mipid02 -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st7586 -st7735r -st95hf -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_lsm6dsx -st_lsm6dsx_i2c -st_lsm6dsx_i3c -st_lsm6dsx_spi -st_lsm9ds0 -st_lsm9ds0_i2c -st_lsm9ds0_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -st_uvis25_core -st_uvis25_i2c -st_uvis25_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -stex -stinger -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm-drm -stm_console -stm_core -stm_ftrace -stm_heartbeat -stm_p_basic -stm_p_sys-t -stmfts -stmfx -stmmac -stmmac-pci -stmmac-platform -stmpe-adc -stmpe-keypad -stmpe-ts -stowaway -stp -stpddc60 -stpmic1 -stpmic1_onkey -stpmic1_regulator -stpmic1_wdt -streamzap -streebog_generic -stts751 -stusb160x -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv0910 -stv6110 -stv6110x -stv6111 -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -surface3_spi -svc-i3c-master -svgalib -switchtec -sx8654 -sx9310 -sx9500 -sy8106a-regulator -sy8824x -sy8827n -sym53c8xx -symbolserial -synaptics_i2c -synaptics_usb -synclink_gt -syscon-reboot-mode -syscopyarea -sysfillrect -sysimgblt -sysv -t5403 -tag_ar9331 -tag_brcm -tag_dsa -tag_gswip -tag_hellcreek -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 -tc-dwc-g210 -tc-dwc-g210-pci -tc-dwc-g210-pltfrm -tc358743 -tc358762 -tc358764 -tc358767 -tc358768 -tc358775 -tc3589x-keypad -tc654 -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcan4x5x -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -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 -tcpci -tcpci_maxim -tcpci_mt6360 -tcpci_rt1711h -tcpm -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18250 -tda18271 -tda18271c2dd -tda1997x -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda9950 -tda998x -tdfxfb -tdo24m -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tee -tef6862 -tehuti -teranetics -test-kprobes -test_blackhole_dev -test_bpf -test_div64 -test_power -tg3 -thc63lvd1024 -thermal-generic-adc -thermal_mmio -thmc50 -ths7303 -ths8200 -thunderbolt -thunderbolt-net -ti-adc081c -ti-adc0832 -ti-adc084s021 -ti-adc108s102 -ti-adc12138 -ti-adc128s052 -ti-adc161s626 -ti-ads1015 -ti-ads124s08 -ti-ads131e08 -ti-ads7950 -ti-ads8344 -ti-ads8688 -ti-cal -ti-csc -ti-dac082s085 -ti-dac5571 -ti-dac7311 -ti-dac7612 -ti-lmu -ti-sc -ti-sn65dsi83 -ti-sn65dsi86 -ti-soc-thermal -ti-tfp410 -ti-tlc4541 -ti-tpd12s015 -ti-tsc2046 -ti-vpdma -ti-vpe -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_cpsw_new -ti_edac -ti_hecc -ti_usb_3410_5052 -tidss -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -tilcdc -timeriomem-rng -tipc -tlan -tls -tlv320aic23b -tm2-touchkey -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmio_mmc -tmio_mmc_core -tmio_nand -tmiofb -tmp006 -tmp007 -tmp102 -tmp103 -tmp108 -tmp117 -tmp401 -tmp421 -tmp513 -toshsd -touchit213 -touchright -touchwin -tpci200 -tpl0102 -tpm_ftpm_tee -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_key_parser -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tpm_tis_i2c_cr50 -tpm_tis_spi -tpm_vtpm_proxy -tps23861 -tps40422 -tps51632-regulator -tps53679 -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65086 -tps65086-regulator -tps65090-charger -tps65090-regulator -tps65132-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps65218-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps6598x -tps80031-regulator -tqmx86 -trace-printk -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2591 -tsl2772 -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -ttynull -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -turingcc-qcs404 -turris-mox-rwtm -tusb6010 -tvaudio -tve200_drm -tveeprom -tvp514x -tvp5150 -tvp7002 -tw2804 -tw5864 -tw68 -tw686x -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6030-regulator -twl6040-vibra -twofish_common -twofish_generic -typec -typec_displayport -typec_nvidia -typec_ucsi -typhoon -u132-hcd -uPD60620 -u_audio -u_ether -u_serial -uacce -uartlite -uas -ubi -ubifs -ubuntu-host -ucan -ucb1400_core -ucb1400_ts -ucc_uart -ucd9000 -ucd9200 -ucs1002_power -ucsi_ccg -uda1342 -udc-xilinx -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufs-exynos -ufs-hisi -ufs-mediatek -ufshcd-core -ufshcd-dwc -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dfl -uio_dmem_genirq -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uleds -uli526x -ulpi -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -uniphier-mdmac -uniphier-regulator -uniphier-sd -uniphier-xdmac -uniphier_thermal -uniphier_wdt -unix_diag -upd64031a -upd64083 -upd78f0730 -us5182d -usb-conn-gpio -usb-dmac -usb-serial-simple -usb-storage -usb251xb -usb3503 -usb4604 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_tcm -usb_f_uac1 -usb_f_uac1_legacy -usb_f_uac2 -usb_f_uvc -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbip-vudc -usbkbd -usblcd -usblp -usbmisc_imx -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usdhi6rol0 -userio -userspace-consumer -ushc -uss720 -uvcvideo -uvesafb -v4l2-async -v4l2-dv-timings -v4l2-flash-led-class -v4l2-fwnode -v4l2-h264 -v4l2-mem2mem -v4l2-tpg -vcan -vcnl3020 -vcnl4000 -vcnl4035 -vctrl-regulator -vdpa -vdpa_sim -vdpa_sim_blk -vdpa_sim_net -vduse -veml6030 -veml6070 -ves1820 -ves1x93 -veth -vexpress-hwmon -vexpress-regulator -vexpress-spc-cpufreq -vf610_adc -vf610_dac -vfio -vfio-amba -vfio-pci -vfio-pci-core -vfio-platform -vfio-platform-amdxgbe -vfio-platform-base -vfio-platform-calxedaxgmac -vfio_iommu_type1 -vfio_virqfd -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_iotlb -vhost_net -vhost_scsi -vhost_vdpa -vhost_vsock -via-rhine -via-sdmmc -via-velocity -via686a -vicodec -video-i2c -video-mux -videobuf-core -videobuf-dma-sg -videobuf-vmalloc -videobuf2-common -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videocc-sc7180 -videocc-sc7280 -videocc-sdm845 -videocc-sm8150 -videocc-sm8250 -videocodec -videodev -vim2m -vimc -viperboard -viperboard_adc -virt_wifi -virtio-gpu -virtio-rng -virtio_blk -virtio_bt -virtio_crypto -virtio_dma_buf -virtio_input -virtio_net -virtio_pmem -virtio_rpmsg_bus -virtio_scsi -virtio_snd -virtio_vdpa -virtiofs -virtual -virtual_ncidev -visor -vitesse -vitesse-vsc73xx-core -vitesse-vsc73xx-platform -vitesse-vsc73xx-spi -vivid -vkms -vl53l0x-i2c -vl6180 -vmac -vme_fake -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmw_pvrdma -vmw_vsock_virtio_transport -vmw_vsock_virtio_transport_common -vmxnet3 -vp27smpx -vp_vdpa -vport-geneve -vport-gre -vport-vxlan -vpx3220 -vqmmc-ipq4019-regulator -vrf -vringh -vs6624 -vsock -vsock_diag -vsock_loopback -vsockmon -vsp1 -vsxxxaa -vt1211 -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxcan -vxge -vxlan -vz89x -w1-gpio -w1_ds2405 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2430 -w1_ds2431 -w1_ds2433 -w1_ds2438 -w1_ds250x -w1_ds2780 -w1_ds2781 -w1_ds2805 -w1_ds28e04 -w1_ds28e17 -w1_smem -w1_therm -w5100 -w5100-spi -w5300 -w6692 -w83627ehf -w83627hf -w83773g -w83781d -w83791d -w83792d -w83793 -w83795 -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -walkera0701 -wanxl -warrior -wcd934x -wcn36xx -wcnss_ctrl -wd719x -wdt87xx_i2c -wdt_pci -wfx -whiteheat -wil6210 -wilc1000 -wilc1000-sdio -wilc1000-spi -winbond-840 -wire -wireguard -wishbone-serial -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994 -wm8994-regulator -wm97xx-ts -wp512 -wwan_hwsim -x25 -x_tables -xbox_remote -xc4000 -xc5000 -xcbc -xdpe12284 -xfrm4_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_interface -xfrm_ipcomp -xfrm_user -xfs -xgmac -xhci-histb -xhci-mtk-hcd -xhci-pci -xhci-pci-renesas -xhci-plat-hcd -xilinx-csi2rxss -xilinx-pr-decoupler -xilinx-spi -xilinx-tpg -xilinx-video -xilinx-vtc -xilinx-xadc -xilinx_dpdma -xilinx_emac -xilinx_emaclite -xilinx_gmii2rgmii -xilinx_sdfec -xilinx_uartps -xillybus_class -xillybus_core -xillybus_of -xillybus_pcie -xillyusb -xiphera-trng -xlnx_vcu -xor -xor-neon -xpad -xr_serial -xrs700x -xrs700x_i2c -xrs700x_mdio -xsens_mt -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 -xtkbd -xusbatm -xxhash_generic -xz_dec_test -yam -yamaha-yas530 -yealink -yellowfin -yurex -z3fold -zaurus -zd1201 -zd1211rw -zd1301 -zd1301_demod -zet6223 -zforce_ts -zhenhua -ziirave_wdt -zinitix -zl10036 -zl10039 -zl10353 -zl6100 -zonefs -zopt2201 -zpa2326 -zpa2326_i2c -zpa2326_spi -zr36016 -zr36050 -zr36060 -zr36067 -zr364xx -zram -zstd -zstd_compress reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/armhf/generic-lpae.modules.builtin +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/armhf/generic-lpae.modules.builtin @@ -1,433 +0,0 @@ -8250 -8250_base -8250_mtk -8250_of -8250_omap -8250_pci -88pm860x -ac97_bus -adpll -aead -aes_generic -af_packet -ahci_platform -akcipher -altera-sysmgr -altera_edac -amba-pl011 -arm-cci -arm-cci -arm-ccn -armada_thermal -armada_xp_edac -armmmci -as3722 -as3722-poweroff -asiliantfb -asn1_decoder -asn1_encoder -aspeed_wdt -asymmetric_keys -atkbd -backlight -bch -bcm84881 -binfmt_elf -binfmt_elf_fdpic -binfmt_script -bsg -btree -cbc -cdrom -cfbcopyarea -cfbfillrect -cfbimgblt -charger-manager -chipreg -clk-axm5516 -clk-fixed-mmio -clk-hi3559a -clk-mpll -clk-pll -clk-regmap -clk-vexpress-osc -cma_heap -cmd-db -cmdlinepart -cn -configfs -cpsw-common -cpts -cpufreq-dt -cpufreq_conservative -cpufreq_ondemand -cpufreq_performance -cpufreq_powersave -cpufreq_userspace -cpuidle-mvebu-v7 -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 -da903x -da9052-core -da9052-i2c -da9052-spi -da9055 -da9063 -davinci_mdio -dax -deflate -dh_generic -digsig -dm-mod -dma -dns_resolver -drbg -drm_mipi_dsi -drm_panel_orientation_quirks -drop_monitor -dwc2 -dwc2_pci -ecb -ecryptfs -edac_core -edma -efivarfs -ehci-exynos -ehci-hcd -ehci-orion -ehci-pci -em_sti -emxx_udc -encrypted-keys -evdev -exportfs -ext4 -extcon-core -exynos-bus -exynos-nocp -exynos-ppmu -exynos_thermal -ezx-pcap -fat -fb -fddi -firmware_class -fixed -fixed_phy -font -freq_table -fuse -fwnode_mdio -gcm -geniv -gf128mul -ghash-generic -glob -governor_passive -governor_performance -governor_powersave -governor_simpleondemand -governor_userspace -gpio-aspeed-sgpio -gpio-generic -gpio-omap -gpio-pl061 -gpio-poweroff -gpio-rda -gpio-restart -gpio-twl4030 -gpio-twl6040 -gpio-xilinx -hmac -hwmon -hwspinlock_core -i2c-core -i2c-designware-core -i2c-designware-platform -i2c-dev -i2c-omap -i2c-s3c2410 -icc-core -imsttfb -input-core -ipv6 -irq-al-fic -irq-renesas-intc-irqpin -irq-renesas-irqc -irq-renesas-rza1 -jbd2 -jitterentropy_rng -kgdboc -kpp -led-class -leds-asic3 -libaes -libahci -libahci_platform -libata -libblake2s -libnvdimm -libphy -libps2 -libsha256 -linear_ranges -loop -lp8788 -ltc2952-poweroff -lz4_decompress -lzo -lzo-rle -lzo_compress -lzo_decompress -map_funcs -max14577 -max310x -max77686 -max77693 -mbcache -md-mod -md5 -mdio-bitbang -mdio_devres -meson-clk-measure -meson-ee-pwrc -meson-gx-pwrc-vpu -meson_uart -mfd-core -mmc_block -mmc_core -mousedev -mpi -mq-deadline -msm_serial -mt6323-poweroff -mtd -mtd_blkdevs -mtdblock -mtk-eint -musb_hdrc -mvebu-devbus -n_null -nand -nandcore -nfs_ssc -nls_base -nls_cp437 -npcm_wdt -nvmem_core -of_mdio -ofpart -ohci-exynos -ohci-hcd -ohci-pci -oid_registry -omap-cpufreq -omap-dma -omap-usb-host -omap-usb-tll -omap2_nand -omap_elm -omap_hsmmc -omap_l3_noc -omap_l3_smx -owl-uart -packing -palmas -pci-ep-cfs -pci-epc-core -pci-epc-mem -pci-epf-core -pci-host-common -pci-host-generic -pcie-altera -pcie-altera-msi -pcie-histb -pcie-mediatek -pcie-microchip-host -phy-exynos-dp-video -phy-exynos-mipi-video -phy-exynos5250-sata -phy-generic -phy-gmii-sel -phy-meson-axg-mipi-pcie-analog -phy-meson-axg-pcie -pinctrl-as3722 -pinctrl-meson -pinctrl-meson8-pmx -pinctrl-msm -pinctrl-mtk-common-v2 -pinctrl-npcm7xx -pinctrl-palmas -pinctrl-rockchip -pinctrl-rza1 -pinctrl-rza2 -pinctrl-rzn1 -pinctrl-s500 -pinctrl-single -pinctrl-ti-iodelay -pkcs7_message -pldmfw -power_supply -powercap_sys -ppp_generic -pps_core -pretimeout_noop -pstore -ptp -public_key -qcom-ebi2 -qcom-ipcc -qcom-pdc -qcom-scm -qcom_rpmh -ramoops -rapidio -rational -rcar-usb2-clock-sel -rda-uart -reed_solomon -regmap-i2c -regmap-mmio -regmap-spi -regulator-poweroff -remoteproc -renesas-cpg-mssr -reset-berlin -reset-meson -reset-qcom-aoss -restart-poweroff -rfkill -rng -rng-core -rockchip-mailbox -roles -rpmhpd -rsa_generic -rtc-efi -rtc-mv -rtc-omap -rtc-pl031 -rtc-s3c -rtc-twl -sata_highbank -sccnxp -scmi-module -scsi_common -scsi_mod -sd_mod -sdhci -sdhci-pltfm -sec-core -sec-irq -selftests -seqiv -serdev -serial_core -serial_mctrl_gpio -serio -sg -sh-sci -sh_cmt -sh_mtu2 -sh_tmu -sha1_generic -sha256_generic -sha512_generic -simple-pm-bus -skcipher -slhc -sm501 -snd -snd-compress -snd-pcm -snd-pcm-dmaengine -snd-soc-core -snd-timer -soundcore -spi-fsl-lib -spi-fsl-spi -spi-omap2-mcspi -squashfs -sr_mod -stmpe-i2c -stmpe-spi -system_heap -t10-pi -t7l66xb -tc3589x -tc6387xb -tc6393xb -tcp_cubic -ti-abb-regulator -ti-cpufreq -ti-opp-supply -ti-sysc -ti_cpsw -timer-ti-dm -tpm -tpm_tis -tpm_tis_core -tps65086-restart -tps65217 -tps65217-regulator -tps6586x -tps65912-core -tps65912-i2c -tps65912-spi -trusted -ttyprintk -tun -twl4030-audio -twl4030-power -twl6040 -ucs2_string -udc-core -udmabuf -uhci-hcd -uinput -unicode -uniphier-system-bus -unix -usb-common -usbcore -vexpress-config -vexpress-sysreg -vfat -virt-dma -virtio -virtio_balloon -virtio_console -virtio_mmio -virtio_pci -virtio_pci_modern_dev -virtio_ring -watch_queue -watchdog -wwan -x509_key_parser -xgmac_mdio -xhci-hcd -xts -xxhash -xz_dec -zbud -zlib_deflate -zlib_inflate -zpool -zsmalloc -zstd_decompress -zswap reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/armhf/generic-lpae.retpoline +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/armhf/generic-lpae.retpoline @@ -1 +0,0 @@ -# RETPOLINE NOT ENABLED reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/armhf/generic.compiler +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/armhf/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/armhf/generic.modules +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/armhf/generic.modules @@ -1,6621 +0,0 @@ -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_aspeed_vuart -8250_dw -8250_exar -8250_men_mcb -8250_uniphier -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pg86x -88pm800 -88pm800-regulator -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -a100u2w -a3d -a53-pll -a7-pll -a8293 -aacraid -aat2870-regulator -aat2870_bl -abp060mg -acard-ahci -acecad -acenic -acer-ec-a500 -acer_a500_battery -acp_audio_dma -act8865-regulator -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 -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad5110 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5272 -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5686-spi -ad5696-i2c -ad5755 -ad5758 -ad5761 -ad5764 -ad5766 -ad5770r -ad5791 -ad5820 -ad5933 -ad7091r-base -ad7091r5 -ad7124 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7192 -ad7266 -ad7280a -ad7291 -ad7292 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7606_par -ad7606_spi -ad7746 -ad7766 -ad7768-1 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad7949 -ad799x -ad8366 -ad8801 -ad9389b -ad9467 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc-joystick -adc-keys -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adf4371 -adf7242 -adfs -adi -adi-axi-adc -adiantum -adin -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16209 -adis16240 -adis16260 -adis16400 -adis16460 -adis16475 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1177 -adm1266 -adm1275 -adm8211 -adm9240 -adp1653 -adp5061 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adux1020 -adv7170 -adv7175 -adv7180 -adv7183 -adv7343 -adv7393 -adv748x -adv7511_drm -adv7604 -adv7842 -adv_pci1710 -adv_pci1720 -adv_pci1723 -adv_pci1724 -adv_pci1760 -adv_pci_dio -advansys -adxl34x -adxl34x-i2c -adxl34x-spi -adxl372 -adxl372_i2c -adxl372_spi -adxrs290 -adxrs450 -aegis128 -aes-arm -aes-arm-bs -aes-arm-ce -aes_ti -af9013 -af9033 -af_alg -af_key -af_packet_diag -afe4403 -afe4404 -affs -afs -ah4 -ah6 -ahci -ahci_ceva -ahci_dm816 -ahci_mtk -ahci_mvebu -ahci_qoriq -ahci_tegra -aht10 -aic79xx -aic7xxx -aic94xx -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airspy -ak7375 -ak881x -ak8974 -ak8975 -al3010 -al3320a -al_mc_edac -alcor -alcor_pci -algif_aead -algif_hash -algif_rng -algif_skcipher -alim7101_wdt -altera-ci -altera-cvp -altera-fpga2sdram -altera-freeze-bridge -altera-hps2fpga -altera-msgdma -altera-pr-ip-core -altera-pr-ip-core-plat -altera-ps-spi -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am2315 -am35x -am53c974 -amba-clcd -amba-pl010 -ambakmi -amc6821 -amd -amd5536udc_pci -amd8111e -amdgpu -amlogic-gxl-crypto -amlogic_thermal -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams-iaq-core -ams369fg06 -analog -analogix-anx6345 -analogix-anx78xx -analogix_dp -anatop-regulator -ansi_cprng -anx7625 -anybuss_core -ao-cec -ao-cec-g12a -aoe -apbps2 -apcs-msm8916 -apcs-sdx55 -apds9300 -apds9802als -apds990x -apds9960 -apple-mfi-fastcharge -appledisplay -appletalk -appletouch -applicom -apr -apss-ipq-pll -apss-ipq6018 -aptina-pll -aqc111 -aquacomputer_d5next -aquantia -ar1021_i2c -ar5523 -ar7part -ar9331 -arasan-nand-controller -arc-rawmode -arc-rimi -arc_emac -arc_ps2 -arc_uart -arcmsr -arcnet -arcpgu -arcx-anybus -arcxcnn_bl -arizona -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arm_mhu -arm_mhu_db -arm_mhuv2 -arm_scpi -arm_smc_wdt -arm_smccc_trng -armada -armada-37xx-cpufreq -armada-37xx-rwtm-mailbox -armada-8k-cpufreq -armada_37xx_wdt -arp_tables -arpt_mangle -arptable_filter -artpec6_crypto -as102_fe -as370-hwmon -as3711-regulator -as3711_bl -as3722-regulator -as3935 -as5011 -as73211 -asc7621 -ascot2e -ashmem_linux -asix -aspeed-lpc-ctrl -aspeed-lpc-snoop -aspeed-p2a-ctrl -aspeed-pwm-tacho -aspeed-smc -aspeed-vhub -aspeed-video -aspeed_adc -aspeed_edac -aspeed_gfx -ast -asym_tpm -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -ata_generic -ata_piix -atbm8830 -atc260x-core -atc260x-i2c -atc260x-onkey -atc260x-poweroff -atc260x-regulator -aten -ath -ath10k_core -ath10k_pci -ath10k_sdio -ath10k_snoc -ath10k_usb -ath11k -ath11k_ahb -ath11k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ath9k_pci_owl_loader -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atlantic -atlas-ezo-sensor -atlas-sensor -atm -atmel -atmel-ecc -atmel-flexcom -atmel-hlcdc -atmel-hlcdc-dc -atmel-i2c -atmel-sha204a -atmel_captouch -atmel_mxt_ts -atmel_pci -atmtcp -atp870u -atusb -atxp1 -aty128fb -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -auo-pixcir-ts -auth_rpcgss -authenc -authencesn -autofs4 -avmfritz -ax25 -ax88179_178a -ax88796 -ax88796b -axi-fan-control -axis-fifo -axp20x -axp20x-i2c -axp20x-pek -axp20x-regulator -axp20x_ac_power -axp20x_adc -axp20x_battery -axp20x_usb_power -axp288_adc -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -b53_common -b53_mdio -b53_mmap -b53_serdes -b53_spi -b53_srab -bL_switcher_dummy_if -ba431-rng -bam_dma -bareudp -batman-adv -baycom_epp -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bcm-keypad -bcm-phy-lib -bcm-sf2 -bcm203x -bcm3510 -bcm47xxsflash -bcm54140 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm63138_nand -bcm6368_nand -bcm63xx_uart -bcm7xxx -bcm87xx -bcm_vk -bcma -bcmsysport -bd6107 -bd71815-regulator -bd71828-regulator -bd718x7-regulator -bd9571mwv -bd9571mwv-regulator -bd9576-regulator -bd9576_wdt -bd99954-charger -bdc -be2iscsi -be2net -befs -bel-pfe -belkin_sa -berlin2-adc -bfa -bfq -bfs -bfusb -bh1750 -bh1770glc -bh1780 -binder_linux -binfmt_misc -blake2b-neon -blake2b_generic -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluetooth -bluetooth_6lowpan -bma150 -bma220_spi -bma400_core -bma400_i2c -bma400_spi -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmc150_magn_i2c -bmc150_magn_spi -bme680_core -bme680_i2c -bme680_spi -bmg160_core -bmg160_i2c -bmg160_spi -bmi088-accel-core -bmi088-accel-spi -bmi160_core -bmi160_i2c -bmi160_spi -bmp280 -bmp280-i2c -bmp280-spi -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bochs -bonding -bpa-rs600 -bpa10x -bpck -bpck6 -bpfilter -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq2515x_charger -bq256xx_charger -bq25890_charger -bq25980_charger -bq27xxx_battery -bq27xxx_battery_hdq -bq27xxx_battery_i2c -br2684 -br_netfilter -brcmfmac -brcmnand -brcmsmac -brcmstb_nand -brcmutil -brd -bridge -broadcom -bsd_comp -bt-bmc -bt819 -bt856 -bt866 -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btmtksdio -btmtkuart -btqca -btqcomsmd -btrfs -btrsi -btrtl -btsdio -bttv -btusb -bu21013_ts -bu21029_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -ca8210 -caam -caam_jr -caamalg_desc -caamhash_desc -cachefiles -cadence-nand-controller -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_serial -caif_socket -caif_usb -caif_virtio -camcc-sc7180 -camcc-sdm845 -camcc-sm8250 -camellia_generic -can -can-bcm -can-dev -can-gw -can-isotp -can-j1939 -can-raw -cap11xx -capmode -capsule-loader -carl9170 -carminefb -cassini -cast5_generic -cast6_generic -cast_common -catc -cb710 -cb710-mmc -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc10001_adc -cc2520 -cc770 -cc770_isa -cc770_platform -ccm -ccree -ccs -ccs-pll -ccs811 -cctrng -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -cdns-csi2rx -cdns-csi2tx -cdns-dphy -cdns-dsi -cdns-mhdp8546 -cdns-pltfrm -cdns-usb-common -cdns3 -cdns3-imx -cec -ceph -cfb -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -ch -ch341 -ch7006 -ch7322 -ch9200 -ch_ipsec -ch_ktls -chacha-neon -chacha20poly1305 -chacha_generic -chaoskey -charlcd -chcr -chipone-icn6211 -chipone_icn8318 -chnl_net -chrontel-ch7033 -ci_hdrc -ci_hdrc_imx -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_tegra -ci_hdrc_usb2 -cicada -cifs -cifs_arc4 -cifs_md4 -cirrus -cirrusfb -clip -clk-axi-clkgen -clk-bd718x7 -clk-cdce706 -clk-cdce925 -clk-cs2000-cp -clk-exynos-audss -clk-exynos-clkout -clk-hi3519 -clk-hi655x -clk-lmk04832 -clk-lochnagar -clk-max77686 -clk-max9485 -clk-palmas -clk-pwm -clk-qcom -clk-rk808 -clk-rpm -clk-rpmh -clk-s2mps11 -clk-scmi -clk-scpi -clk-si514 -clk-si5341 -clk-si5351 -clk-si544 -clk-si570 -clk-smd-rpm -clk-spmi-pmic-div -clk-twl6040 -clk-versaclock5 -clk-wm831x -clk-xlnx-clock-wizard -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm3605 -cm36651 -cma3000_d0x -cma3000_d0x_i2c -cmac -cmt_speech -cmtp -cnic -cobra -coda -coda-vpu -colibri-vf50-ts -com20020 -com20020-pci -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_example_test -comedi_parport -comedi_pci -comedi_test -comedi_usb -comm -contec_pci_dio -cordic -core -corsair-cpro -corsair-psu -cortina -counter -cp210x -cpcap-adc -cpcap-battery -cpcap-charger -cpcap-pwrbutton -cpcap-regulator -cpia2 -cppi41 -cpr -cramfs -crc-itu-t -crc32-arm-ce -crc32_generic -crc4 -crc64 -crc7 -crct10dif-arm-ce -crg-hi3516cv300 -crg-hi3798cv200 -cros-ec-anx7688 -cros-ec-cec -cros-ec-regulator -cros-ec-sensorhub -cros_ec -cros_ec_accel_legacy -cros_ec_baro -cros_ec_chardev -cros_ec_debugfs -cros_ec_dev -cros_ec_i2c -cros_ec_keyb -cros_ec_lid_angle -cros_ec_light_prox -cros_ec_lightbar -cros_ec_mkbp_proximity -cros_ec_rpmsg -cros_ec_sensors -cros_ec_sensors_core -cros_ec_spi -cros_ec_sysfs -cros_ec_typec -cros_ec_vbc -cros_peripheral_charger -cros_usbpd-charger -cros_usbpd_logger -cros_usbpd_notify -cryptd -crypto_engine -crypto_safexcel -crypto_simd -crypto_user -cryptoloop -cs3308 -cs5345 -cs53l32a -cs89x0 -csiostor -curve25519-generic -curve25519-neon -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cw2015_battery -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxd2880 -cxd2880-spi -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cxgbit -cxl_core -cxl_pci -cy8ctma140 -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da280 -da311 -da7280 -da8xx-fb -da9030_battery -da9034-ts -da903x-regulator -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062-thermal -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9121-regulator -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -db9 -dc395x -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -ddbridge -ddbridge-dummy-fe -de2104x -defxx -denali -denali_dt -denali_pci -des_generic -designware_i2s -dfl -dfl-afu -dfl-emif -dfl-fme -dfl-fme-br -dfl-fme-mgr -dfl-fme-region -dfl-n3000-nios -dfl-pci -dht11 -diag -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dib9000 -dibx000_common -digi_acceleport -digicolor-usart -diskonchip -dispcc-sc7180 -dispcc-sc7280 -dispcc-sdm845 -dispcc-sm8250 -display-connector -dl2k -dlhl60d -dlink-dir685-touchkeys -dlm -dln2 -dln2-adc -dm-bio-prison -dm-bufio -dm-cache -dm-cache-smq -dm-clone -dm-crypt -dm-delay -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 -dm1105 -dm9000 -dm9601 -dma-axi-dmac -dmard06 -dmard09 -dmard10 -dme1737 -dmfe -dmi-sysfs -dmm32at -dmx3191d -dnet -dove_thermal -dp83640 -dp83822 -dp83848 -dp83867 -dp83869 -dp83tc811 -dpot-dac -dps310 -dps920ab -dpt_i2o -drbd -drivetemp -drm -drm_dp_aux_bus -drm_kms_helper -drm_mipi_dbi -drm_ttm_helper -drm_vram_helper -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1803 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds4424 -ds620 -dsa_core -dsbr100 -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-dibusb-mc-common -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_dummy_fe -dvb_usb_v2 -dw-axi-dmac-platform -dw-edma -dw-edma-pcie -dw-hdmi -dw-hdmi-ahb-audio -dw-hdmi-cec -dw-hdmi-i2s-audio -dw-i3c-master -dw-mipi-dsi -dw-xdata-pcie -dw9714 -dw9768 -dw9807-vcm -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_hdmi-imx -dw_mipi_dsi-stm -dw_mmc -dw_mmc-bluefield -dw_mmc-exynos -dw_mmc-hi3798cv200 -dw_mmc-k3 -dw_mmc-pci -dw_mmc-pltfm -dw_mmc-rockchip -dw_wdt -dwc-xlgmac -dwc3 -dwc3-exynos -dwc3-haps -dwc3-meson-g12a -dwc3-of-simple -dwc3-omap -dwc3-qcom -dwmac-altr-socfpga -dwmac-dwc-qos-eth -dwmac-generic -dwmac-imx -dwmac-intel-plat -dwmac-ipq806x -dwmac-loongson -dwmac-mediatek -dwmac-meson -dwmac-meson8b -dwmac-qcom-ethqos -dwmac-rk -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -earth-pt1 -earth-pt3 -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -ecc -ecdh_generic -ecdsa_generic -echainiv -echo -ecrdsa_generic -edt-ft5x06 -ee1004 -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efct -efi-pstore -efi_test -efibc -efs -egalax_ts -egalax_ts_serial -ehci-fsl -ehci-npcm7xx -ehci-omap -ehset -ektf2127 -elan_i2c -elants_i2c -elo -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_ipt -em_meta -em_nbyte -em_text -em_u32 -emac_rockchip -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -emif -empeg -ems_pci -ems_usb -emu10k1-gp -ena -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -eni -enic -envelope-detector -epat -epia -epic100 -eql -erofs -error -esas2r -esd_usb2 -esp4 -esp4_offload -esp6 -esp6_offload -esp_scsi -essiv -et1011c -et131x -et8ek8 -etas_es58x -ethoc -etnaviv -evbug -exc3000 -exfat -extcon-adc-jack -extcon-fsa9480 -extcon-gpio -extcon-max14577 -extcon-max3355 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-ptn5150 -extcon-qcom-spmi-misc -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -extcon-usbc-cros-ec -extcon-usbc-tusb320 -exynos-gsc -exynos-interconnect -exynos-lpass -exynos-rng -exynos-trng -exynos5422-dmc -exynos_adc -exynosdrm -ezusb -f2fs -f71805f -f71882fg -f75375s -f81232 -f81534 -f81601 -failover -fakelb -fan53555 -fan53880 -farsync -fastrpc -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 -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_pci -fdp -fdp_i2c -fealnx -ff-memless -fieldbus_dev -firedtv -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fl512 -flexcan -fm10k -fm801-gp -fm_drv -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fou6 -fpga-bridge -fpga-mgr -fpga-region -freevxfs -friq -frpw -fscache -fsi-core -fsi-master-aspeed -fsi-master-ast-cf -fsi-master-gpio -fsi-master-hub -fsi-occ -fsi-sbefifo -fsi-scom -fsia6b -fsl-dcu-drm -fsl-edma -fsl-edma-common -fsl-enetc -fsl-enetc-ierb -fsl-enetc-mdio -fsl-enetc-ptp -fsl-enetc-vf -fsl-mph-dr-of -fsl-qdma -fsl_imx8_ddr_perf -fsl_linflexuart -fsl_lpuart -fsl_pq_mdio -fsl_ucc_hdlc -fsp-3y -ftdi-elan -ftdi_sio -ftgmac100 -ftl -ftm-quaddec -ftmac100 -ftsteutates -ftwdt010_wdt -fujitsu_ts -fusb300_udc -fusb302 -fxas21002c_core -fxas21002c_i2c -fxas21002c_spi -fxls8962af-core -fxls8962af-i2c -fxls8962af-spi -fxos8700_core -fxos8700_i2c -fxos8700_spi -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_multi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gateworks-gsc -gb-audio-apbridgea -gb-audio-codec -gb-audio-gb -gb-audio-manager -gb-audio-module -gb-bootrom -gb-es2 -gb-firmware -gb-gbphy -gb-gpio -gb-hid -gb-i2c -gb-light -gb-log -gb-loopback -gb-power-supply -gb-pwm -gb-raw -gb-sdio -gb-spi -gb-spilib -gb-uart -gb-usb -gb-vibrator -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 -gdmtty -gdmulte -ge2d -gemini -gen_probe -generic -generic-adc-battery -genet -geneve -gf2k -gfs2 -ghash-arm-ce -gianfar_driver -gl518sm -gl520sm -gl620a -gluebi -gm12u320 -gnss -gnss-mtk -gnss-serial -gnss-sirf -gnss-ubx -go7007 -go7007-loader -go7007-usb -goku_udc -goldfish_battery -goodix -gp2ap002 -gp2ap020a00f -gp8psk-fe -gpi -gpio -gpio-74x164 -gpio-74xx-mmio -gpio-adnp -gpio-adp5520 -gpio-adp5588 -gpio-aggregator -gpio-altera -gpio-altera-a10sr -gpio-amd-fch -gpio-arizona -gpio-aspeed -gpio-bd70528 -gpio-bd71815 -gpio-bd71828 -gpio-bd9571mwv -gpio-beeper -gpio-cadence -gpio-charger -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-exar -gpio-fan -gpio-grgpio -gpio-gw-pld -gpio-hlwd -gpio-ir-recv -gpio-ir-tx -gpio-janz-ttl -gpio-kempld -gpio-logicvc -gpio-lp3943 -gpio-lp873x -gpio-lp87565 -gpio-madera -gpio-max3191x -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-max77620 -gpio-max77650 -gpio-mb86s7x -gpio-mc33880 -gpio-menz127 -gpio-moxtet -gpio-pca953x -gpio-pca9570 -gpio-pcf857x -gpio-pci-idio-16 -gpio-pcie-idio-24 -gpio-pisosr -gpio-rcar -gpio-rdc321x -gpio-regulator -gpio-rockchip -gpio-sama5d2-piobu -gpio-siox -gpio-syscon -gpio-tpic2810 -gpio-tps65086 -gpio-tps65218 -gpio-tps65912 -gpio-ts4800 -gpio-ts4900 -gpio-ucb1400 -gpio-uniphier -gpio-vibra -gpio-viperboard -gpio-virtio -gpio-wcd934x -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio-xra1403 -gpio_backlight -gpio_decoder -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_wdt -gpmi-nand -gpu-sched -gpucc-msm8998 -gpucc-sc7180 -gpucc-sc7280 -gpucc-sdm660 -gpucc-sdm845 -gpucc-sm8150 -gpucc-sm8250 -gr_udc -grace -grcan -gre -greybus -grip -grip_mp -gs1662 -gs_fpga -gs_usb -gsc-hwmon -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtp -gud -guillemot -gunze -habanalabs -hackrf -hamachi -hampshire -hantro-vpu -hanwang -hci -hci_nokia -hci_uart -hci_vhci -hclge -hclgevf -hd3ss3220 -hd44780 -hd44780_common -hdc100x -hdc2010 -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcd -hdlcdrv -hdma -hdma_mgmt -hdpvr -he -helene -hellcreek_sw -hexium_gemini -hexium_orion -hfcmulti -hfcpci -hfcsusb -hfpll -hfs -hfsplus -hi311x -hi3660-mailbox -hi556 -hi6210-i2s -hi6220-mailbox -hi6220_reset -hi6421-pmic-core -hi6421-regulator -hi6421-spmi-pmic -hi6421v530-regulator -hi6421v600-irq -hi6421v600-regulator -hi655x-pmic -hi655x-regulator -hi8435 -hid -hid-a4tech -hid-accutouch -hid-alps -hid-apple -hid-appleir -hid-asus -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-bigbenff -hid-cherry -hid-chicony -hid-cmedia -hid-corsair -hid-cougar -hid-cp2112 -hid-creative-sb0540 -hid-cypress -hid-dr -hid-elan -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-ft260 -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-glorious -hid-google-hammer -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-icade -hid-ite -hid-jabra -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-led -hid-lenovo -hid-lg-g15 -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-macally -hid-magicmouse -hid-maltron -hid-mcp2221 -hid-mf -hid-microsoft -hid-monterey -hid-multitouch -hid-nti -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-playstation -hid-primax -hid-prodikeys -hid-redragon -hid-retrode -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-semitek -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-custom-intel-hinge -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-humidity -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-temperature -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steam -hid-steelseries -hid-sunplus -hid-thrustmaster -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-u2fzero -hid-uclogic -hid-udraw-ps3 -hid-viewsonic -hid-vivaldi -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hideep -hidp -hifn_795x -highbank-cpufreq -highbank_l2_edac -highbank_mc_edac -hih6130 -hip04_eth -hisi-rng -hisi-sfc -hisi-spmi-controller -hisi504_nand -hisi_femac -hisi_hikey_usb -hisi_powerkey -hisi_thermal -hix5hd2_gmac -hmc425a -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hms-profinet -hnae -hnae3 -hns_dsaf -hns_enet_drv -hns_mdio -hopper -horus3a -host1x -hostap -hostap_pci -hostap_plx -hp03 -hp206c -hpfs -hpilo -hpsa -hptiop -hsi -hsi_char -hso -hsr -ht16k33 -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hwmon-vid -hx711 -hx8357 -hx8357d -hycon-hy46xx -hyperbus-core -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-altera -i2c-amd756 -i2c-amd8111 -i2c-arb-gpio-challenge -i2c-aspeed -i2c-cbus-gpio -i2c-cp2615 -i2c-cros-ec-tunnel -i2c-demux-pinctrl -i2c-designware-pci -i2c-diolan-u2c -i2c-dln2 -i2c-emev2 -i2c-exynos5 -i2c-fsi -i2c-gpio -i2c-hid -i2c-hid-of -i2c-hid-of-goodix -i2c-hix5hd2 -i2c-i801 -i2c-imx-lpi2c -i2c-isch -i2c-kempld -i2c-matroxfb -i2c-meson -i2c-mt65xx -i2c-mux -i2c-mux-gpio -i2c-mux-gpmux -i2c-mux-ltc4306 -i2c-mux-mlxcpld -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-pinctrl -i2c-mux-reg -i2c-mv64xxx -i2c-nforce2 -i2c-nomadik -i2c-npcm7xx -i2c-nvidia-gpu -i2c-ocores -i2c-owl -i2c-parport -i2c-pca-platform -i2c-piix4 -i2c-pxa -i2c-qcom-cci -i2c-qcom-geni -i2c-qup -i2c-rcar -i2c-riic -i2c-rk3x -i2c-robotfuzz-osif -i2c-sh_mobile -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-slave-eeprom -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tegra -i2c-tegra-bpmp -i2c-tiny-usb -i2c-versatile -i2c-via -i2c-viapro -i2c-viperboard -i2c-virtio -i2c-xiic -i3c -i3c-master-cdns -i40e -i5k_amb -i6300esb -i740fb -iavf -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mthca -ib_srp -ib_srpt -ib_umad -ib_uverbs -ibm-cffps -ibmaem -ibmpex -icc-bcm-voter -icc-osm-l3 -icc-rpmh -icc-smd-rpm -ice -ice40-spi -icp10100 -icp_multi -icplus -ics932s401 -idma64 -idmouse -idt77252 -idt_89hpesx -idt_gen2 -idt_gen3 -idtcps -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -ifcvf -ife -ifi_canfd -iforce -iforce-serio -iforce-usb -igb -igbvf -igc -igorplugusb -iguanair -ii_pci20kc -iio-mux -iio-rescale -iio-trig-hrtimer -iio-trig-interrupt -iio-trig-loop -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili9225 -ili922x -ili9320 -ili9341 -ili9486 -ilitek_ts_i2c -img-ascii-lcd -img-i2s-in -img-i2s-out -img-parallel-out -img-spdif-in -img-spdif-out -imm -imon -imon_raw -impa7 -ims-pcu -imx-audio-rpmsg -imx-bus -imx-cpufreq-dt -imx-dma -imx-dsp -imx-interconnect -imx-ipu-v3 -imx-ldb -imx-mailbox -imx-media-common -imx-pcm-rpmsg -imx-pxp -imx-rngc -imx-sdma -imx-tve -imx-vdoa -imx208 -imx214 -imx219 -imx258 -imx274 -imx290 -imx2_wdt -imx319 -imx334 -imx335 -imx355 -imx412 -imx6-media -imx6-media-csi -imx6-mipi-csi2 -imx6q-cpufreq -imx6ul_tsc -imx7-media-csi -imx7-mipi-csis -imx7d_adc -imx7ulp_wdt -imx8m-ddrc -imx8mm-interconnect -imx8mm_thermal -imx8mn-interconnect -imx8mq-interconnect -imx8mq-mipi-csi2 -imx_keypad -imx_rproc -imx_sc_key -imx_sc_thermal -imx_sc_wdt -imx_thermal -imxdrm -imxfb -ina209 -ina2xx -ina2xx-adc -ina3221 -industrialio -industrialio-buffer-cb -industrialio-buffer-dma -industrialio-buffer-dmaengine -industrialio-configfs -industrialio-hw-consumer -industrialio-sw-device -industrialio-sw-trigger -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -inspur-ipsps -int51x1 -intel-m10-bmc -intel-m10-bmc-hwmon -intel-nand-controller -intel-qep -intel-xway -intel_pmt -intel_th -intel_th_gth -intel_th_msu -intel_th_msu_sink -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -interact -interrupt-cnt -inv-icm42600 -inv-icm42600-i2c -inv-icm42600-spi -inv-mpu6050 -inv-mpu6050-i2c -inv-mpu6050-spi -io-domain -io_edgeport -io_ti -iosm -iova -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_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_tunnel -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 -ipa -ipack -ipaq -ipcomp -ipcomp6 -iphase -ipheth -ipip -ipmb_dev_int -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -iproc_nand -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 -ipw -ipw2100 -ipw2200 -iqs269a -iqs5xx -iqs620at-temp -iqs621-als -iqs624-pos -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-rx51 -ir-sanyo-decoder -ir-sharp-decoder -ir-sony-decoder -ir-spi -ir-usb -ir-xmp-decoder -ir35221 -ir36021 -ir38064 -ir_toy -irdma -irps5401 -irq-madera -irq-pruss-intc -irq-ts4800 -irqbypass -iscsi_boot_sysfs -iscsi_target_mod -iscsi_tcp -isdnhdlc -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl29501 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl68137 -isl9305 -isofs -isp116x-hcd -isp1704_charger -isp1760 -it87 -it913x -itd1000 -ite-it66121 -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_cm -iw_cxgb4 -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -k3dma -kafs -kalmia -kaweth -kbic -kbtab -kcm -kcomedilib -kcs_bmc -kcs_bmc_aspeed -kcs_bmc_cdev_ipmi -kcs_bmc_npcm7xx -kcs_bmc_serio -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -khadas-mcu -khadas_mcu_fan -kheaders -kl5kusb105 -kmx61 -kobil_sct -komeda -kpss-xcc -krait-cc -ks0108 -ks0127 -ks7010 -ks8842 -ks8851_common -ks8851_par -ks8851_spi -ksmbd -ksz8795 -ksz8795_spi -ksz884x -ksz8863_smi -ksz9477 -ksz9477_i2c -ksz9477_spi -ksz_common -ktd253-backlight -ktti -kvaser_pci -kvaser_pciefd -kvaser_usb -kxcjk-1013 -kxsd9 -kxsd9-i2c -kxsd9-spi -kxtj9 -kyber-iosched -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l4f00242t03 -l64781 -lan743x -lan78xx -lan9303-core -lan9303_i2c -lan9303_mdio -lanai -lantiq_gswip -lapb -lapbether -lattice-ecp3-config -lcc-ipq806x -lcc-mdm9615 -lcc-msm8960 -lcd -lcd2s -ldusb -lec -led-class-flash -led-class-multicolor -led_bl -leds-88pm860x -leds-aat1290 -leds-acer-a500 -leds-adp5520 -leds-an30259a -leds-as3645a -leds-aw2013 -leds-bcm6328 -leds-bcm6358 -leds-bd2802 -leds-blinkm -leds-cpcap -leds-cr0014114 -leds-da903x -leds-da9052 -leds-dac124s085 -leds-el15203000 -leds-gpio -leds-is31fl319x -leds-is31fl32xx -leds-ktd2692 -leds-lm3530 -leds-lm3532 -leds-lm3533 -leds-lm355x -leds-lm3601x -leds-lm36274 -leds-lm3642 -leds-lm3692x -leds-lm3697 -leds-lp3944 -leds-lp3952 -leds-lp50xx -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max77650 -leds-max77693 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-mlxreg -leds-mt6323 -leds-ns2 -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pm8058 -leds-pwm -leds-regulator -leds-rt4505 -leds-rt8515 -leds-sgm3140 -leds-spi-byte -leds-tca6507 -leds-ti-lmu-common -leds-tlc591xx -leds-tps6105x -leds-turris-omnia -leds-wm831x-status -leds-wm8350 -ledtrig-activity -ledtrig-audio -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-netdev -ledtrig-oneshot -ledtrig-pattern -ledtrig-timer -ledtrig-transient -ledtrig-tty -ledtrig-usbport -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gl5 -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libarc4 -libceph -libchacha -libchacha20poly1305 -libcomposite -libcrc32c -libcurve25519 -libcurve25519-generic -libcxgb -libcxgbi -libdes -libertas -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libpoly1305 -libsas -libsm4 -lightning -lima -lineage-pem -linear -linkstation-poweroff -lis3lv02d -lis3lv02d_i2c -lis3lv02d_spi -liteuart -litex_liteeth -litex_soc_ctrl -lkkbd -ll_temac -llc -llc2 -llcc-qcom -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3560 -lm3630a_bl -lm3639_bl -lm363x-regulator -lm3646 -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lmh -lmp91000 -lms283gf05 -lms501kf03 -lnbh25 -lnbh29 -lnbp21 -lnbp22 -lochnagar-hwmon -lochnagar-regulator -lockd -lontium-lt8912b -lontium-lt9611 -lontium-lt9611uxc -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp873x -lp873x-regulator -lp8755 -lp87565 -lp87565-regulator -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpass-gfm-sm8250 -lpasscc-sdm845 -lpasscorecc-sc7180 -lpc_ich -lpc_sch -lpddr2_nvm -lpddr_cmds -lpfc -lru_cache -lrw -lt3651-charger -ltc1660 -ltc2471 -ltc2485 -ltc2496 -ltc2497 -ltc2497-core -ltc2632 -ltc2941-battery-gauge -ltc2945 -ltc2947-core -ltc2947-i2c -ltc2947-spi -ltc2978 -ltc2983 -ltc2990 -ltc2992 -ltc3589 -ltc3676 -ltc3815 -ltc4151 -ltc4162-l-charger -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv0104cs -lv5207lp -lvds-codec -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m2m-deinterlace -m52790 -m5mols -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -m_can_pci -m_can_platform -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -mac802154_hwsim -macb -macb_pci -machxo2-spi -macmodes -macsec -macvlan -macvtap -madera -madera-i2c -madera-spi -mag3110 -magellan -mailbox-altera -mailbox-test -mali-dp -mantis -mantis_core -map_absent -map_ram -map_rom -marvell -marvell-88x2222 -marvell-cesa -marvell10g -marvell_nand -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max11100 -max1111 -max1118 -max11801_ts -max1241 -max127 -max1363 -max14577-regulator -max14577_charger -max14656_charger_detector -max15301 -max1586 -max16064 -max16065 -max1619 -max16601 -max1668 -max17040_battery -max17042_battery -max1721x_battery -max197 -max20730 -max20751 -max2165 -max2175 -max30100 -max30102 -max3100 -max31722 -max31730 -max31785 -max31790 -max31856 -max3420_udc -max3421-hcd -max34440 -max44000 -max44009 -max517 -max5432 -max5481 -max5487 -max5821 -max63xx_wdt -max6621 -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77620-regulator -max77620_thermal -max77620_wdt -max77650 -max77650-charger -max77650-onkey -max77650-regulator -max77686-regulator -max77693-haptic -max77693-regulator -max77693_charger -max77802-regulator -max77826-regulator -max8649 -max8660 -max8688 -max8893 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997-regulator -max8997_charger -max8997_haptic -max8998 -max8998_charger -max9271 -max9286 -max9611 -maxim_thermocouple -mb1232 -mb862xxfb -mb86a16 -mb86a20s -mc -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc3230 -mc44s803 -mcam-core -mcb -mcb-lpc -mcb-pci -mcba_usb -mcde_drm -mceusb -mchp23k256 -mchp48l640 -mcp16502 -mcp251x -mcp251xfd -mcp3021 -mcp320x -mcp3422 -mcp3911 -mcp4018 -mcp41010 -mcp4131 -mcp4531 -mcp4725 -mcp4922 -mcr20a -mcs5000_ts -mcs7830 -mcs_touchkey -mct_u232 -mctp -md-cluster -md4 -mdc800 -mdev -mdio -mdio-aspeed -mdio-bcm-unimac -mdio-gpio -mdio-hisi-femac -mdio-i2c -mdio-ipq4019 -mdio-ipq8064 -mdio-mscc-miim -mdio-mux -mdio-mux-gpio -mdio-mux-meson-g12a -mdio-mux-mmioreg -mdio-mux-multiplexer -mdio-mvusb -mdt_loader -me4000 -me_daq -mediatek -mediatek-cpufreq -mediatek-cpufreq-hw -mediatek-drm -mediatek-drm-hdmi -mediatek-ge -megachips-stdpxxxx-ge-b850v3-fw -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -melfas_mip4 -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -menz69_wdt -meson-canvas -meson-drm -meson-gx-mmc -meson-gxl -meson-ir -meson-ir-tx -meson-mx-sdhc -meson-mx-sdio -meson-rng -meson-vdec -meson_dw_hdmi -meson_gxbb_wdt -meson_nand -meson_saradc -meson_wdt -metro-usb -metronomefb -mf6x4 -mgag200 -mhi -mhi_net -mhi_pci_generic -mhi_wwan_ctrl -mhi_wwan_mbim -mi0283qt -michael_mic -micrel -microchip -microchip-tcb-capture -microchip_t1 -microread -microread_i2c -microtek -mii -milbeaut-hdmac -milbeaut-xdmac -milbeaut_usio -minix -mip6 -mipi-i3c-hci -mite -mk712 -mkiss -ml86v7667 -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx5_vdpa -mlx90614 -mlx90632 -mlx_wdt -mlxfw -mlxreg-fan -mlxreg-hotplug -mlxreg-io -mlxsw_core -mlxsw_i2c -mlxsw_minimal -mlxsw_pci -mlxsw_spectrum -mma7455_core -mma7455_i2c -mma7455_spi -mma7660 -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_spi -mmcc-apq8084 -mmcc-msm8960 -mmcc-msm8974 -mmcc-msm8994 -mmcc-msm8996 -mmcc-msm8998 -mmcc-sdm660 -mms114 -mn88443x -mn88472 -mn88473 -mos7720 -mos7840 -most_cdev -most_core -most_dim2 -most_i2c -most_net -most_snd -most_usb -most_video -motorcomm -motorola-cpcap -moxa -moxtet -mp2629 -mp2629_adc -mp2629_charger -mp2888 -mp2975 -mp5416 -mp8859 -mp886x -mpc624 -mpi3mr -mpl115 -mpl115_i2c -mpl115_spi -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpq7920 -mpr121_touchkey -mpt3sas -mptbase -mptcp_diag -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mr75203 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -msc313e_wdt -mscc -mscc_ocelot -mscc_ocelot_switch_lib -mscc_seville -msdos -msg2638 -msi001 -msi2500 -msm -msp3400 -mspro_block -mss-sc7180 -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt312 -mt352 -mt6311-regulator -mt6315-regulator -mt6323-regulator -mt6358-regulator -mt6359-accdet -mt6359-regulator -mt6360-adc -mt6360-core -mt6360-regulator -mt6360_charger -mt6380-regulator -mt6397 -mt6397-regulator -mt6577_auxadc -mt6797-mt6351 -mt7530 -mt76 -mt76-connac-lib -mt76-sdio -mt76-usb -mt7601u -mt7603e -mt7615-common -mt7615e -mt7663-usb-sdio-common -mt7663s -mt7663u -mt76x0-common -mt76x02-lib -mt76x02-usb -mt76x0e -mt76x0u -mt76x2-common -mt76x2e -mt76x2u -mt7915e -mt7921e -mt8183-da7219-max98357 -mt8183-mt6358-ts3a227-max98357 -mt8192-mt6359-rt1015-rt5682 -mt8195-mt6359-rt1019-rt5682 -mt9m001 -mt9m032 -mt9m111 -mt9p031 -mt9t001 -mt9t112 -mt9v011 -mt9v032 -mt9v111 -mtd_dataflash -mtdoops -mtdpstore -mtdram -mtdswap -mtip32xx -mtk-btcvsd -mtk-cir -mtk-cmdq-helper -mtk-cmdq-mailbox -mtk-cqdma -mtk-devapc -mtk-hsdma -mtk-pmic-keys -mtk-pmic-wrap -mtk-rng -mtk-sd -mtk-smi -mtk-uart-apdma -mtk-vpu -mtk_ecc -mtk_nand -mtk_rpmsg -mtk_scp -mtk_scp_ipi -mtk_thermal -mtk_wdt -mtouch -mtu3 -multipath -multiq3 -musb_dsps -mux-adg792a -mux-adgs1408 -mux-core -mux-gpio -mux-mmio -mv643xx_eth -mv88e6060 -mv88e6xxx -mv_u3d_core -mv_udc -mvmdio -mvneta -mvpp2 -mvsas -mvsdio -mvumi -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc-jpeg-encdec -mxc4005 -mxc6255 -mxc_nand -mxc_w1 -mxcmmc -mxic_nand -mxl-gpy -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxl5xx -mxl692 -mxser -mxsfb -mxuport -myrb -myri10ge -myrs -n_gsm -n_hdlc -nandsim -national -natsemi -nau7802 -navman -nbd -nbpfaxi -nci -nci_spi -nci_uart -nct6683 -nct6775 -nct7802 -nct7904 -ne2k-pci -neofb -net1080 -net2272 -net2280 -net_failover -netconsole -netdevsim -netfs -netjet -netlink_diag -netrom -netup-unidvb -netxen_nic -newtonkbd -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 -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -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 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -nhpoly1305 -nhpoly1305-neon -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_labpc -ni_labpc_common -ni_labpc_pci -ni_pcidio -ni_pcimio -ni_routes_test -ni_routing -ni_tio -ni_tiocmd -ni_usb6501 -nicstar -nilfs2 -niu -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 -noa1305 -nokia-modem -noon010pc30 -nosy -notifier-error-inject -nouveau -nozomi -npcm-rng -npcm750-pwm-fan -npcm_adc -nps_enet -ns558 -ns83820 -nsh -nsp32 -ntb -ntb_hw_epf -ntb_hw_idt -ntb_hw_switchtec -ntb_netdev -ntb_perf -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -ntfs3 -ntxec -null_blk -nvec -nvec_kbd -nvec_paz00 -nvec_power -nvec_ps2 -nvidiafb -nvme -nvme-core -nvme-fabrics -nvme-fc -nvme-loop -nvme-rdma -nvme-tcp -nvmem-imx-iim -nvmem-imx-ocotp -nvmem-imx-ocotp-scu -nvmem-rave-sp-eeprom -nvmem-reboot-mode -nvmem-rmem -nvmem-rockchip-otp -nvmem-uniphier-efuse -nvmem_meson_mx_efuse -nvmem_qcom-spmi-sdam -nvmem_qfprom -nvmem_rockchip_efuse -nvmem_snvs_lpgpr -nvmet -nvmet-fc -nvmet-rdma -nvmet-tcp -nwl-dsi -nxp-c45-tja11xx -nxp-nci -nxp-nci_i2c -nxp-ptn3460 -nxp-tja11xx -nxt200x -nxt6000 -nzxt-kraken2 -objagg -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocmem -ocrdma -of-fpga-region -of_mmc_spi -of_xilinx_wdt -ofb -ohci-platform -omap -omap-aes-driver -omap-crypto -omap-des -omap-mailbox -omap-ocp2scp -omap-rng -omap-sham -omap-vout -omap2430 -omap2fb -omap3-isp -omap3-rom-rng -omap4-iss -omap4-keypad -omap_hdq -omap_hwspinlock -omap_remoteproc -omap_ssi -omap_wdt -omapdss -omfs -omninet -on20 -on26 -onenand -onenand_omap2 -opencores-kbd -openvswitch -opt3001 -optee -optee-rng -opticon -option -or51132 -or51211 -orangefs -orinoco -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -orion_nand -orion_wdt -oti6858 -otm3225a -ov02a10 -ov13858 -ov2640 -ov2659 -ov2680 -ov2685 -ov5640 -ov5645 -ov5647 -ov5648 -ov5670 -ov5675 -ov5695 -ov6650 -ov7251 -ov7640 -ov7670 -ov772x -ov7740 -ov8856 -ov8865 -ov9282 -ov9640 -ov9650 -overlay -owl-dma -owl-emac -owl-mmc -oxu210hp-hcd -p54common -p54pci -p54spi -p54usb -p8022 -pa12203001 -palmas-pwrbutton -palmas-regulator -palmas_gpadc -pandora_bl -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 -parallel-display -paride -parkbd -parman -parport -parport_ax88796 -parport_pc -parport_serial -parser_trx -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_imx -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_of_platform -pata_oldpiix -pata_opti -pata_optidma -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sis -pata_sl82c105 -pata_triflex -pata_via -pbias-regulator -pc300too -pc87360 -pc87427 -pca9450-regulator -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcd -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-epf-ntb -pci-exynos -pci-pf-stub -pci-stub -pci200syn -pcie-mediatek-gen3 -pcie-rockchip-host -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmda12 -pcmmio -pcmuio -pcnet32 -pcrypt -pcs-lynx -pcs_xpcs -pcwd_pci -pcwd_usb -pd -pda_power -pdc_adma -pdr_interface -peak_pci -peak_pciefd -peak_usb -pegasus -pegasus_notetaker -penmount -pf -pf8x00-regulator -pfuze100-regulator -pg -phantom -phonet -phram -phy-am335x -phy-am335x-control -phy-armada38x-comphy -phy-bcm-kona-usb2 -phy-berlin-sata -phy-berlin-usb -phy-cadence-salvo -phy-cadence-sierra -phy-cadence-torrent -phy-can-transceiver -phy-cpcap-usb -phy-dm816x-usb -phy-exynos-ufs -phy-exynos-usb2 -phy-exynos5-usbdrd -phy-fsl-imx8-mipi-dphy -phy-fsl-imx8mq-usb -phy-gpio-vbus-usb -phy-hix5hd2-sata -phy-isp1301 -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-control -phy-omap-usb2 -phy-pxa-28nm-hsic -phy-pxa-28nm-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-tahvo -phy-tegra-usb -phy-tegra-xusb -phy-ti-pipe3 -phy-tusb1210 -phy-twl4030-usb -phy-twl6030-usb -phy-uniphier-ahci -phy-uniphier-pcie -phy-uniphier-usb2 -phy-uniphier-usb3hs -phy-uniphier-usb3ss -phylink -physmap -pi3usb30532 -pi433 -pim4328 -pinctrl-apq8064 -pinctrl-apq8084 -pinctrl-axp209 -pinctrl-da9062 -pinctrl-imx8ulp -pinctrl-ipq4019 -pinctrl-ipq6018 -pinctrl-ipq8064 -pinctrl-ipq8074 -pinctrl-lochnagar -pinctrl-lpass-lpi -pinctrl-madera -pinctrl-max77620 -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-qcs404 -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-spmi-gpio -pinctrl-spmi-mpp -pinctrl-ssbi-gpio -pinctrl-ssbi-mpp -pinctrl-stmfx -ping -pistachio-internal-dac -pixcir_i2c_ts -pkcs7_test_key -pkcs8_key_parser -pktcdvd -pktgen -pl111_drm -pl172 -pl2303 -pl330 -pl353-smc -pl35x-nand-controller -plat-ram -plat_nand -platform_lcd -platform_mhu -plip -plusb -pluto2 -plx_dma -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm6764tr -pm80xx -pm8916_wdt -pm8941-pwrkey -pm8xxx-vibrator -pmbus -pmbus_core -pmc551 -pmcraid -pmic8xxx-keypad -pmic8xxx-pwrkey -pms7003 -pn532_uart -pn533 -pn533_i2c -pn533_usb -pn544 -pn544_i2c -pn_pep -poly1305-arm -poly1305_generic -port100 -powermate -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_parport -pptp -prestera -prestera_pci -pretimeout_panic -prism2_usb -pru_rproc -pruss -ps2-gpio -ps2mult -psample -psmouse -psnap -pstore_blk -pstore_zone -psxpad-spi -pt -ptp-qoriq -ptp_clockmatrix -ptp_idt82p33 -ptp_ines -ptp_kvm -ptp_ocp -pulse8-cec -pulsedlight-lidar-lite-v2 -pv88060-regulator -pv88080-regulator -pv88090-regulator -pvpanic -pvpanic-mmio -pvpanic-pci -pvrusb2 -pwc -pwm-atmel-hlcdc -pwm-atmel-tcb -pwm-beeper -pwm-berlin -pwm-cros-ec -pwm-dwc -pwm-fan -pwm-fsl-ftm -pwm-hibvt -pwm-imx-tpm -pwm-imx1 -pwm-imx27 -pwm-iqs620a -pwm-ir-tx -pwm-lp3943 -pwm-mediatek -pwm-meson -pwm-mtk-disp -pwm-ntxec -pwm-omap-dmtimer -pwm-pca9685 -pwm-rcar -pwm-regulator -pwm-renesas-tpu -pwm-rockchip -pwm-samsung -pwm-tegra -pwm-tiecap -pwm-tiehrpwm -pwm-twl -pwm-twl-led -pwm-vibra -pwm_bl -pwrseq_emmc -pwrseq_sd8787 -pwrseq_simple -pxa168_eth -pxa27x_udc -pxe1610 -pxrc -q54sj108a2 -q6adm -q6afe -q6afe-clocks -q6afe-dai -q6asm -q6asm-dai -q6core -q6dsp-common -q6routing -q6sstop-qcs404 -qca8k -qca_7k_common -qcaspi -qcauart -qcaux -qcom-apcs-ipc-mailbox -qcom-coincell -qcom-cpufreq-hw -qcom-cpufreq-nvmem -qcom-emac -qcom-geni-se -qcom-labibb-regulator -qcom-pm8008 -qcom-pm8xxx -qcom-pm8xxx-xoadc -qcom-pmic-typec -qcom-pon -qcom-rng -qcom-rpmh-regulator -qcom-spmi-adc-tm5 -qcom-spmi-adc5 -qcom-spmi-iadc -qcom-spmi-pmic -qcom-spmi-temp-alarm -qcom-spmi-vadc -qcom-vadc-common -qcom-wdt -qcom-wled -qcom_adm -qcom_aoss -qcom_common -qcom_edac -qcom_geni_serial -qcom_glink -qcom_glink_rpm -qcom_glink_smem -qcom_gsbi -qcom_hwspinlock -qcom_nandc -qcom_pil_info -qcom_q6v5 -qcom_q6v5_adsp -qcom_q6v5_mss -qcom_q6v5_pas -qcom_q6v5_wcss -qcom_rpm -qcom_rpm-regulator -qcom_smbb -qcom_smd -qcom_smd-regulator -qcom_spmi-regulator -qcom_sysmon -qcom_tsens -qcom_usb_vbus-regulator -qcomsmempart -qcrypto -qcserial -qed -qede -qedf -qedi -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qm1d1b0004 -qm1d1c0042 -qmi_helpers -qmi_wwan -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 -qrtr -qrtr-mhi -qrtr-smd -qrtr-tun -qsemi -qt1010 -qt1050 -qt1070 -qt2160 -qtnfmac -qtnfmac_pcie -quatech2 -quota_tree -quota_v1 -quota_v2 -qwiic-joystick -qxl -r592 -r6040 -r8152 -r8153_ecm -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723bs -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si470x-common -radio-si470x-i2c -radio-si470x-usb -radio-si476x -radio-tea5764 -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid_class -rainshadow-cec -ravb -rave-sp -rave-sp-backlight -rave-sp-pwrbutton -rave-sp-wdt -raw_diag -raw_gadget -raydium_i2c_ts -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 -rc5t583-regulator -rcar-csi2 -rcar-dmac -rcar-du-drm -rcar-fcp -rcar-gyroadc -rcar-vin -rcar_can -rcar_canfd -rcar_cmm -rcar_drif -rcar_dw_hdmi -rcar_fdp1 -rcar_gen3_thermal -rcar_jpu -rcar_lvds -rcar_thermal -rdacm20 -rdacm21 -rdc321x-southbridge -rdma_cm -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -realtek-smi -reboot-mode -redboot -redrat3 -regmap-ac97 -regmap-i3c -regmap-sccb -regmap-sdw -regmap-sdw-mbq -regmap-slimbus -regmap-spi-avmm -regmap-spmi -regmap-w1 -regulator-haptic -reiserfs -renesas-ceu -renesas-rpc-if -renesas_sdhi_core -renesas_sdhi_internal_dmac -renesas_sdhi_sys_dmac -renesas_usb3 -renesas_usbhs -renesas_wdt -repaper -reset-a10sr -reset-hi3660 -reset-meson-audio-arb -reset-qcom-pdc -reset-scmi -reset-ti-syscon -reset-uniphier -reset-uniphier-glue -resistive-adc-touch -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd77402 -rfd_ftl -rfkill-gpio -rio-scan -rio_cm -rio_mport_cdev -rionet -rivafb -rj54n1cb0c -rk3399_dmc -rk805-pwrkey -rk808 -rk808-regulator -rk_crypto -rm3100-core -rm3100-i2c -rm3100-spi -rmd160 -rmi_core -rmi_i2c -rmi_smbus -rmi_spi -rmnet -rmobile-reset -rmtfs_mem -rn5t618 -rn5t618-adc -rn5t618-regulator -rn5t618_power -rn5t618_wdt -rnbd-client -rnbd-server -rndis_host -rndis_wlan -rockchip -rockchip-dfi -rockchip-isp1 -rockchip-nand-controller -rockchip-rga -rockchip-vdec -rockchip_saradc -rockchip_thermal -rockchipdrm -rocker -rohm-bd70528 -rohm-bd71828 -rohm-bd718x7 -rohm-bd9576 -rohm-regulator -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpi-panel-attiny-regulator -rpmpd -rpmsg_char -rpmsg_core -rpmsg_ns -rpmsg_wwan_ctrl -rpr0521 -rsi_91x -rsi_sdio -rsi_usb -rsmu-i2c -rsmu-spi -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt4801-regulator -rt4831 -rt4831-backlight -rt4831-regulator -rt5033 -rt5033-regulator -rt5033_battery -rt6160-regulator -rt61pci -rt6245-regulator -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab-eoz9 -rtc-abx80x -rtc-armada38x -rtc-as3722 -rtc-aspeed -rtc-bd70528 -rtc-bq32k -rtc-bq4802 -rtc-cadence -rtc-cmos -rtc-cpcap -rtc-cros-ec -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1302 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-em3027 -rtc-fm3130 -rtc-ftrtc010 -rtc-goldfish -rtc-hid-sensor-time -rtc-hym8563 -rtc-imx-sc -rtc-imxdi -rtc-isl12022 -rtc-isl12026 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max6916 -rtc-max77686 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-meson -rtc-meson-vrtc -rtc-msm6242 -rtc-mt2712 -rtc-mt6397 -rtc-mt7622 -rtc-mxc -rtc-mxc_v2 -rtc-ntxec -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf85363 -rtc-pcf8563 -rtc-pcf8583 -rtc-pl030 -rtc-pm8xxx -rtc-r7301 -rtc-r9701 -rtc-rc5t583 -rtc-rc5t619 -rtc-rk808 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3028 -rtc-rv3029c2 -rtc-rv3032 -rtc-rv8803 -rtc-rx4581 -rtc-rx6110 -rtc-rx8010 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-sd3078 -rtc-sh -rtc-snvs -rtc-stk17ta8 -rtc-tegra -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtc-zynqmp -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rtmv20-regulator -rtq2134-regulator -rtq6752-regulator -rtrs-client -rtrs-core -rtrs-server -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rtw88_8723d -rtw88_8723de -rtw88_8821c -rtw88_8821ce -rtw88_8822b -rtw88_8822be -rtw88_8822c -rtw88_8822ce -rtw88_core -rtw88_pci -rtw89_core -rtw89_pci -rx51_battery -rxrpc -rza_wdt -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3c2410_wdt -s3fb -s3fwrn5 -s3fwrn5_i2c -s3fwrn82_uart -s526 -s5c73m3 -s5h1409 -s5h1411 -s5h1420 -s5h1432 -s5k4ecgx -s5k5baf -s5k6a3 -s5k6aa -s5m8767 -s5p-cec -s5p-g2d -s5p-jpeg -s5p-mfc -s5p-sss -s626 -s6sy761 -s921 -saa6588 -saa6752hs -saa7110 -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7185 -saa7706h -safe_serial -sahara -sample-trace-array -samsung-keypad -samsung-sxgbe -samsung_tty -sata_dwc_460ex -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_rcar -sata_sil -sata_sil24 -sata_sis -sata_svw -sata_sx4 -sata_uli -sata_via -sata_vsc -savagefb -sbp_target -sbrmi -sbs-battery -sbs-charger -sbs-manager -sbtsi_temp -sc16is7xx -sc92031 -sca3000 -sca3300 -scd30_core -scd30_i2c -scd30_serial -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 -scmi-cpufreq -scmi-hwmon -scmi-regulator -scmi_iio -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_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_diag -sd_adc_modulator -sdhci-cadence -sdhci-dove -sdhci-milbeaut -sdhci-msm -sdhci-of-arasan -sdhci-of-aspeed -sdhci-of-at91 -sdhci-of-dwcmshc -sdhci-of-esdhc -sdhci-omap -sdhci-pci -sdhci-pxav3 -sdhci-s3c -sdhci-tegra -sdhci-xenon-driver -sdhci_am654 -sdhci_f_sdh30 -sdio_uart -sensorhub -serial-tegra -serial_ir -serio_raw -sermouse -serpent_generic -serport -ses -sf-pdma -sfc -sfc-falcon -sfp -sgi_w1 -sgp30 -sgp40 -sh_eth -sh_mmcif -sh_mobile_lcdcfb -sha1-arm -sha1-arm-ce -sha1-arm-neon -sha2-arm-ce -sha256-arm -sha3_generic -sha512-arm -shark2 -sharpslpart -shiftfs -sht15 -sht21 -sht3x -sht4x -shtc1 -si1133 -si1145 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sifive -sii902x -sii9234 -sil-sii8620 -sil164 -silead -simple-bridge -simpledrm -simplefb -siox-bus-gpio -siox-core -sir_ir -sis190 -sis5595 -sis900 -sis_i2c -sisfb -sisusbvga -sit -sja1000 -sja1000_isa -sja1000_platform -sja1105 -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -slcan -slg51000-regulator -slic_ds26522 -slicoss -slim-qcom-ctrl -slim-qcom-ngd-ctrl -slimbus -slip -slram -sm2_generic -sm3_generic -sm4_generic -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smartpqi -smb347-charger -smc -smc911x -smc91x -smc_diag -smd-rpm -smem -smipcie -smm665 -smp2p -smsc -smsc47b397 -smsc47m1 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsm -smsmdtv -smssdio -smsusb -snd-aaci -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4xxx-adda -snd-aloop -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-cs4281 -snd-cs46xx -snd-ctl-led -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-ens1370 -snd-ens1371 -snd-fireface -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-motu -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-cs8409 -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-intel -snd-hda-tegra -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel-dspcfg -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcxhr -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-63xx -snd-soc-ac97 -snd-soc-acp-rt5645-mach -snd-soc-adau-utils -snd-soc-adau1372 -snd-soc-adau1372-i2c -snd-soc-adau1372-spi -snd-soc-adau1701 -snd-soc-adau1761 -snd-soc-adau1761-i2c -snd-soc-adau1761-spi -snd-soc-adau17x1 -snd-soc-adau7002 -snd-soc-adau7118 -snd-soc-adau7118-hw -snd-soc-adau7118-i2c -snd-soc-adi-axi-i2s -snd-soc-adi-axi-spdif -snd-soc-ak4104 -snd-soc-ak4118 -snd-soc-ak4458 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-ak5558 -snd-soc-alc5623 -snd-soc-alc5632 -snd-soc-apq8016-sbc -snd-soc-apq8096 -snd-soc-aries-wm8994 -snd-soc-arizona -snd-soc-armada-370-db -snd-soc-arndale -snd-soc-audio-graph-card -snd-soc-bd28623 -snd-soc-bt-sco -snd-soc-cpcap -snd-soc-cros-ec-codec -snd-soc-cs35l32 -snd-soc-cs35l33 -snd-soc-cs35l34 -snd-soc-cs35l35 -snd-soc-cs35l36 -snd-soc-cs35l41 -snd-soc-cs35l41-i2c -snd-soc-cs35l41-lib -snd-soc-cs35l41-spi -snd-soc-cs4234 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l42 -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs43130 -snd-soc-cs4341 -snd-soc-cs4349 -snd-soc-cs53l30 -snd-soc-cx2072x -snd-soc-da7213 -snd-soc-da7219 -snd-soc-davinci-mcasp -snd-soc-dmic -snd-soc-es7134 -snd-soc-es7241 -snd-soc-es8316 -snd-soc-es8328 -snd-soc-es8328-i2c -snd-soc-es8328-spi -snd-soc-eukrea-tlv320 -snd-soc-fsi -snd-soc-fsl-asoc-card -snd-soc-fsl-asrc -snd-soc-fsl-aud2htx -snd-soc-fsl-audmix -snd-soc-fsl-easrc -snd-soc-fsl-esai -snd-soc-fsl-micfil -snd-soc-fsl-mqs -snd-soc-fsl-rpmsg -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-xcvr -snd-soc-gtm601 -snd-soc-hdmi-codec -snd-soc-i2s -snd-soc-ics43432 -snd-soc-idma -snd-soc-imx-audmix -snd-soc-imx-card -snd-soc-imx-es8328 -snd-soc-imx-hdmi -snd-soc-imx-rpmsg -snd-soc-imx-spdif -snd-soc-inno-rk3036 -snd-soc-kirkwood -snd-soc-lochnagar-sc -snd-soc-lpass-apq8016 -snd-soc-lpass-cpu -snd-soc-lpass-hdmi -snd-soc-lpass-ipq806x -snd-soc-lpass-platform -snd-soc-lpass-rx-macro -snd-soc-lpass-sc7180 -snd-soc-lpass-tx-macro -snd-soc-lpass-va-macro -snd-soc-lpass-wsa-macro -snd-soc-max9759 -snd-soc-max98088 -snd-soc-max98090 -snd-soc-max98095 -snd-soc-max98357a -snd-soc-max98373 -snd-soc-max98373-i2c -snd-soc-max98373-sdw -snd-soc-max98390 -snd-soc-max98504 -snd-soc-max9860 -snd-soc-max9867 -snd-soc-max98927 -snd-soc-meson-aiu -snd-soc-meson-axg-fifo -snd-soc-meson-axg-frddr -snd-soc-meson-axg-pdm -snd-soc-meson-axg-sound-card -snd-soc-meson-axg-spdifin -snd-soc-meson-axg-spdifout -snd-soc-meson-axg-tdm-formatter -snd-soc-meson-axg-tdm-interface -snd-soc-meson-axg-tdmin -snd-soc-meson-axg-tdmout -snd-soc-meson-axg-toddr -snd-soc-meson-card-utils -snd-soc-meson-codec-glue -snd-soc-meson-g12a-toacodec -snd-soc-meson-g12a-tohdmitx -snd-soc-meson-gx-sound-card -snd-soc-meson-t9015 -snd-soc-midas-wm1811 -snd-soc-mikroe-proto -snd-soc-msm8916-analog -snd-soc-msm8916-digital -snd-soc-mt6351 -snd-soc-mt6358 -snd-soc-mt6359 -snd-soc-mt6660 -snd-soc-mt6797-afe -snd-soc-mt8183-afe -snd-soc-mt8192-afe -snd-soc-mt8195-afe -snd-soc-mtk-common -snd-soc-nau8315 -snd-soc-nau8540 -snd-soc-nau8810 -snd-soc-nau8822 -snd-soc-nau8824 -snd-soc-odroid -snd-soc-omap-abe-twl6040 -snd-soc-omap-dmic -snd-soc-omap-mcbsp -snd-soc-omap-mcpdm -snd-soc-omap-twl4030 -snd-soc-omap3pandora -snd-soc-pcm -snd-soc-pcm1681 -snd-soc-pcm1789-codec -snd-soc-pcm1789-i2c -snd-soc-pcm179x-codec -snd-soc-pcm179x-i2c -snd-soc-pcm179x-spi -snd-soc-pcm186x -snd-soc-pcm186x-i2c -snd-soc-pcm186x-spi -snd-soc-pcm3060 -snd-soc-pcm3060-i2c -snd-soc-pcm3060-spi -snd-soc-pcm3168a -snd-soc-pcm3168a-i2c -snd-soc-pcm3168a-spi -snd-soc-pcm5102a -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-qcom-common -snd-soc-rcar -snd-soc-rk3288-hdmi-analog -snd-soc-rk3328 -snd-soc-rk3399-gru-sound -snd-soc-rk817 -snd-soc-rl6231 -snd-soc-rockchip-i2s -snd-soc-rockchip-max98090 -snd-soc-rockchip-pcm -snd-soc-rockchip-pdm -snd-soc-rockchip-rt5645 -snd-soc-rockchip-spdif -snd-soc-rt1015 -snd-soc-rt1015p -snd-soc-rt1308-sdw -snd-soc-rt1316-sdw -snd-soc-rt5514 -snd-soc-rt5514-spi -snd-soc-rt5616 -snd-soc-rt5631 -snd-soc-rt5640 -snd-soc-rt5645 -snd-soc-rt5659 -snd-soc-rt5663 -snd-soc-rt5677 -snd-soc-rt5677-spi -snd-soc-rt5682 -snd-soc-rt5682-i2c -snd-soc-rt5682-sdw -snd-soc-rt700 -snd-soc-rt711 -snd-soc-rt711-sdca -snd-soc-rt715 -snd-soc-rt715-sdca -snd-soc-rx51 -snd-soc-s3c-dma -snd-soc-samsung-spdif -snd-soc-sc7180 -snd-soc-sdm845 -snd-soc-sdw-mockup -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-sigmadsp-regmap -snd-soc-simple-amplifier -snd-soc-simple-card -snd-soc-simple-card-utils -snd-soc-simple-mux -snd-soc-sm8250 -snd-soc-smdk-spdif -snd-soc-smdk-wm8994 -snd-soc-smdk-wm8994pcm -snd-soc-snow -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2305 -snd-soc-ssm2518 -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-storm -snd-soc-tas2552 -snd-soc-tas2562 -snd-soc-tas2764 -snd-soc-tas2770 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tas5720 -snd-soc-tas6424 -snd-soc-tda7419 -snd-soc-tegra-audio-graph-card -snd-soc-tegra-machine -snd-soc-tegra-pcm -snd-soc-tegra-wm8903 -snd-soc-tegra186-dspk -snd-soc-tegra20-ac97 -snd-soc-tegra20-das -snd-soc-tegra20-i2s -snd-soc-tegra20-spdif -snd-soc-tegra210-admaif -snd-soc-tegra210-ahub -snd-soc-tegra210-dmic -snd-soc-tegra210-i2s -snd-soc-tegra30-ahub -snd-soc-tegra30-i2s -snd-soc-tfa9879 -snd-soc-tfa989x -snd-soc-ti-edma -snd-soc-ti-sdma -snd-soc-ti-udma -snd-soc-tlv320adcx140 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic32x4 -snd-soc-tlv320aic32x4-i2c -snd-soc-tlv320aic32x4-spi -snd-soc-tlv320aic3x -snd-soc-tlv320aic3x-i2c -snd-soc-tlv320aic3x-spi -snd-soc-tm2-wm5110 -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-tscs42xx -snd-soc-tscs454 -snd-soc-twl4030 -snd-soc-twl6040 -snd-soc-uda1334 -snd-soc-uniphier-aio-cpu -snd-soc-uniphier-aio-ld11 -snd-soc-uniphier-aio-pxs2 -snd-soc-uniphier-evea -snd-soc-wcd-mbhc -snd-soc-wcd9335 -snd-soc-wcd934x -snd-soc-wcd938x -snd-soc-wcd938x-sdw -snd-soc-wm-adsp -snd-soc-wm-hubs -snd-soc-wm5110 -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8524 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8782 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8904 -snd-soc-wm8960 -snd-soc-wm8962 -snd-soc-wm8974 -snd-soc-wm8978 -snd-soc-wm8985 -snd-soc-wm8994 -snd-soc-wm9712 -snd-soc-wsa881x -snd-soc-xlnx-formatter-pcm -snd-soc-xlnx-i2s -snd-soc-xlnx-spdif -snd-soc-xtfpga-i2s -snd-soc-zl38060 -snd-sof -snd-sof-of -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-variax -snd-usbmidi-lib -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-ymfpci -sni_ave -snic -snps_udc_core -snps_udc_plat -snvs_pwrkey -socfpga -socfpga-a10 -socinfo -softdog -softing -solo6x10 -solos-pci -sony-btf-mpx -soundwire-bus -soundwire-qcom -sp2 -sp805_wdt -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -speedfax -speedtch -spi-altera-core -spi-altera-dfl -spi-altera-platform -spi-amd -spi-armada-3700 -spi-axi-spi-engine -spi-bitbang -spi-butterfly -spi-cadence -spi-cadence-quadspi -spi-dln2 -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-imx -spi-lm70llp -spi-loopback-test -spi-meson-spicc -spi-meson-spifc -spi-mt65xx -spi-mtk-nor -spi-mux -spi-mxic -spi-nor -spi-npcm-fiu -spi-npcm-pspi -spi-nxp-fspi -spi-oc-tiny -spi-orion -spi-pl022 -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-qcom-qspi -spi-qup -spi-rockchip -spi-rockchip-sfc -spi-rpc-if -spi-rspi -spi-s3c64xx -spi-sc18is602 -spi-sh-hspi -spi-sh-msiof -spi-sifive -spi-slave-mt27xx -spi-slave-system-control -spi-slave-time -spi-tegra114 -spi-tegra20-sflash -spi-tegra20-slink -spi-tegra210-quad -spi-ti-qspi -spi-tle62x0 -spi-uniphier -spi-xcomm -spi-zynqmp-gqspi -spi_ks8995 -spidev -spinand -spmi -spmi-pmic-arb -sprd_serial -sps30 -sps30_i2c -sps30_serial -sr030pc30 -sr9700 -sr9800 -srf04 -srf08 -ssb -ssbi -ssd1307fb -ssfdc -ssi_protocol -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -sstfb -ssu100 -st -st-asc -st-mipid02 -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st7586 -st7735r -st95hf -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_lsm6dsx -st_lsm6dsx_i2c -st_lsm6dsx_i3c -st_lsm6dsx_spi -st_lsm9ds0 -st_lsm9ds0_i2c -st_lsm9ds0_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -st_uvis25_core -st_uvis25_i2c -st_uvis25_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -stex -stinger -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm-drm -stm_console -stm_core -stm_ftrace -stm_heartbeat -stm_p_basic -stm_p_sys-t -stmfts -stmfx -stmmac -stmmac-pci -stmmac-platform -stmpe-adc -stmpe-keypad -stmpe-ts -stowaway -stp -stpddc60 -stpmic1 -stpmic1_onkey -stpmic1_regulator -stpmic1_wdt -streamzap -streebog_generic -stts751 -stusb160x -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv0910 -stv6110 -stv6110x -stv6111 -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -surface3_spi -svc-i3c-master -svgalib -switchtec -sx8654 -sx9310 -sx9500 -sy8106a-regulator -sy8824x -sy8827n -sym53c8xx -symbolserial -synaptics_i2c -synaptics_usb -synclink_gt -syscon-reboot-mode -syscopyarea -sysfillrect -sysimgblt -sysv -t5403 -tag_ar9331 -tag_brcm -tag_dsa -tag_gswip -tag_hellcreek -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 -tc-dwc-g210 -tc-dwc-g210-pci -tc-dwc-g210-pltfrm -tc358743 -tc358762 -tc358764 -tc358767 -tc358768 -tc358775 -tc3589x-keypad -tc654 -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcan4x5x -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -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 -tcpci -tcpci_maxim -tcpci_mt6360 -tcpci_rt1711h -tcpm -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18250 -tda18271 -tda18271c2dd -tda1997x -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda9950 -tda998x -tdfxfb -tdo24m -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tee -tef6862 -tegra-bpmp-thermal -tegra-drm -tegra-gmi -tegra-kbc -tegra-vde -tegra-video -tegra-xudc -tegra186-cpufreq -tegra30-devfreq -tegra30-tsensor -tegra_cec -tegra_nand -tegra_wdt -tehuti -teranetics -test-kprobes -test_blackhole_dev -test_bpf -test_div64 -test_power -tg3 -thc63lvd1024 -thermal-generic-adc -thermal_mmio -thmc50 -ths7303 -ths8200 -thunderbolt -thunderbolt-net -ti-adc081c -ti-adc0832 -ti-adc084s021 -ti-adc108s102 -ti-adc12138 -ti-adc128s052 -ti-adc161s626 -ti-ads1015 -ti-ads124s08 -ti-ads131e08 -ti-ads7950 -ti-ads8344 -ti-ads8688 -ti-cal -ti-csc -ti-dac082s085 -ti-dac5571 -ti-dac7311 -ti-dac7612 -ti-emif-sram -ti-eqep -ti-lmu -ti-sc -ti-sn65dsi83 -ti-sn65dsi86 -ti-soc-thermal -ti-tfp410 -ti-tlc4541 -ti-tpd12s015 -ti-tsc2046 -ti-vpdma -ti-vpe -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_cpsw_new -ti_davinci_emac -ti_edac -ti_hecc -ti_usb_3410_5052 -tidss -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -tilcdc -timeriomem-rng -tipc -tlan -tls -tlv320aic23b -tm2-touchkey -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmio_mmc -tmio_mmc_core -tmio_nand -tmiofb -tmp006 -tmp007 -tmp102 -tmp103 -tmp108 -tmp117 -tmp401 -tmp421 -tmp513 -toshsd -touchit213 -touchright -touchwin -tpci200 -tpl0102 -tpm_ftpm_tee -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_key_parser -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tpm_tis_i2c_cr50 -tpm_tis_spi -tpm_vtpm_proxy -tps23861 -tps40422 -tps51632-regulator -tps53679 -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65086 -tps65086-regulator -tps65090-charger -tps65090-regulator -tps65132-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps65218-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps6598x -tps80031-regulator -tqmx86 -trace-printk -trancevibrator -trf7970a -tridentfb -ts2020 -ts4800-ts -ts4800_wdt -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2591 -tsl2772 -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -ttynull -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -turingcc-qcs404 -turris-mox-rwtm -tusb6010 -tvaudio -tve200_drm -tveeprom -tvp514x -tvp5150 -tvp7002 -tw2804 -tw5864 -tw68 -tw686x -tw9903 -tw9906 -tw9910 -twidjoy -twl4030-madc -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6040-vibra -twofish_common -twofish_generic -typec -typec_displayport -typec_nvidia -typec_ucsi -typhoon -u132-hcd -uPD60620 -u_audio -u_ether -u_serial -uacce -uartlite -uas -ubi -ubifs -ubuntu-host -ucan -ucb1400_core -ucb1400_ts -ucc_uart -ucd9000 -ucd9200 -ucs1002_power -ucsi_ccg -uda1342 -udc-xilinx -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufs-exynos -ufs-hisi -ufs-mediatek -ufshcd-core -ufshcd-dwc -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dfl -uio_dmem_genirq -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uleds -uli526x -ulpi -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -uniphier-mdmac -uniphier-regulator -uniphier-sd -uniphier-xdmac -uniphier_thermal -uniphier_wdt -unix_diag -upd64031a -upd64083 -upd78f0730 -us5182d -usb-conn-gpio -usb-dmac -usb-serial-simple -usb-storage -usb251xb -usb3503 -usb4604 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_tcm -usb_f_uac1 -usb_f_uac1_legacy -usb_f_uac2 -usb_f_uvc -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbip-vudc -usbkbd -usblcd -usblp -usbmisc_imx -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usdhi6rol0 -userio -userspace-consumer -ushc -uss720 -uvcvideo -uvesafb -v4l2-async -v4l2-dv-timings -v4l2-flash-led-class -v4l2-fwnode -v4l2-h264 -v4l2-jpeg -v4l2-mem2mem -v4l2-tpg -vcan -vcnl3020 -vcnl4000 -vcnl4035 -vctrl-regulator -vdpa -vdpa_sim -vdpa_sim_blk -vdpa_sim_net -vduse -veml6030 -veml6070 -ves1820 -ves1x93 -veth -vexpress-hwmon -vexpress-regulator -vexpress-spc-cpufreq -vf610_adc -vf610_dac -vfio -vfio-amba -vfio-pci -vfio-pci-core -vfio-platform -vfio-platform-amdxgbe -vfio-platform-base -vfio-platform-calxedaxgmac -vfio_iommu_type1 -vfio_virqfd -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_iotlb -vhost_net -vhost_scsi -vhost_vdpa -vhost_vsock -via-rhine -via-sdmmc -via-velocity -via686a -vicodec -video-i2c -video-mux -videobuf-core -videobuf-dma-sg -videobuf-vmalloc -videobuf2-common -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videocc-sc7180 -videocc-sc7280 -videocc-sdm845 -videocc-sm8150 -videocc-sm8250 -videocodec -videodev -vim2m -vimc -viperboard -viperboard_adc -virt_wifi -virtio-gpu -virtio-rng -virtio_blk -virtio_bt -virtio_crypto -virtio_dma_buf -virtio_input -virtio_net -virtio_rpmsg_bus -virtio_scsi -virtio_snd -virtio_vdpa -virtiofs -virtual -virtual_ncidev -visor -vitesse -vitesse-vsc73xx-core -vitesse-vsc73xx-platform -vitesse-vsc73xx-spi -vivid -vkms -vl53l0x-i2c -vl6180 -vmac -vme_fake -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmw_pvrdma -vmw_vsock_virtio_transport -vmw_vsock_virtio_transport_common -vmxnet3 -vp27smpx -vp_vdpa -vport-geneve -vport-gre -vport-vxlan -vpx3220 -vqmmc-ipq4019-regulator -vrf -vringh -vs6624 -vsock -vsock_diag -vsock_loopback -vsockmon -vsp1 -vsxxxaa -vt1211 -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxcan -vxge -vxlan -vz89x -w1-gpio -w1_ds2405 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2430 -w1_ds2431 -w1_ds2433 -w1_ds2438 -w1_ds250x -w1_ds2780 -w1_ds2781 -w1_ds2805 -w1_ds28e04 -w1_ds28e17 -w1_smem -w1_therm -w5100 -w5100-spi -w5300 -w6692 -w83627ehf -w83627hf -w83773g -w83781d -w83791d -w83792d -w83793 -w83795 -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -walkera0701 -wanxl -warrior -wcd934x -wcn36xx -wcnss_ctrl -wd719x -wdt87xx_i2c -wdt_pci -wfx -whiteheat -wil6210 -wilc1000 -wilc1000-sdio -wilc1000-spi -winbond-840 -wire -wireguard -wishbone-serial -wkup_m3_rproc -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994 -wm8994-regulator -wm97xx-ts -wp512 -wwan_hwsim -x25 -x_tables -xbox_remote -xc4000 -xc5000 -xcbc -xdpe12284 -xfrm4_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_interface -xfrm_ipcomp -xfrm_user -xfs -xgmac -xhci-histb -xhci-mtk-hcd -xhci-pci -xhci-pci-renesas -xhci-plat-hcd -xhci-tegra -xilinx-csi2rxss -xilinx-pr-decoupler -xilinx-spi -xilinx-tpg -xilinx-video -xilinx-vtc -xilinx-xadc -xilinx_dpdma -xilinx_emac -xilinx_emaclite -xilinx_gmii2rgmii -xilinx_sdfec -xilinx_uartps -xillybus_class -xillybus_core -xillybus_of -xillybus_pcie -xillyusb -xiphera-trng -xlnx_vcu -xor -xor-neon -xpad -xr_serial -xrs700x -xrs700x_i2c -xrs700x_mdio -xsens_mt -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 -xtkbd -xusbatm -xxhash_generic -xz_dec_test -yam -yamaha-yas530 -yealink -yellowfin -yurex -z3fold -zaurus -zd1201 -zd1211rw -zd1301 -zd1301_demod -zet6223 -zforce_ts -zhenhua -ziirave_wdt -zinitix -zl10036 -zl10039 -zl10353 -zl6100 -zonefs -zopt2201 -zpa2326 -zpa2326_i2c -zpa2326_spi -zr36016 -zr36050 -zr36060 -zr36067 -zr364xx -zram -zstd -zstd_compress reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/armhf/generic.modules.builtin +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/armhf/generic.modules.builtin @@ -1,479 +0,0 @@ -8250 -8250_base -8250_mtk -8250_of -8250_omap -8250_pci -8250_tegra -88pm860x -ac97_bus -adpll -aead -aes_generic -af_packet -ahci_imx -ahci_platform -akcipher -altera-sysmgr -altera_edac -amba-pl011 -arm-cci -arm-cci -arm-ccn -armada_thermal -armada_xp_edac -armmmci -as3722 -as3722-poweroff -asiliantfb -asn1_decoder -asn1_encoder -aspeed_wdt -asymmetric_keys -atkbd -backlight -bch -bcm84881 -binfmt_elf -binfmt_elf_fdpic -binfmt_script -bsg -btree -cbc -cdrom -cfbcopyarea -cfbfillrect -cfbimgblt -charger-manager -chipreg -clk-fixed-mmio -clk-hi3559a -clk-imx8mm -clk-imx8mn -clk-imx8mp -clk-imx8mq -clk-mpll -clk-pll -clk-regmap -clk-vexpress-osc -cma_heap -cmd-db -cmdlinepart -cn -configfs -cpsw-common -cpts -cpufreq-dt -cpufreq_conservative -cpufreq_ondemand -cpufreq_performance -cpufreq_powersave -cpufreq_userspace -cpuidle-mvebu-v7 -cqhci -crc-ccitt -crc-t10dif -crc16 -crc32 -crc32c_generic -crc8 -crct10dif_common -crct10dif_generic -crypto -crypto_acompress -crypto_algapi -crypto_hash -crypto_null -cryptomgr -ctr -cts -da903x -da9052-core -da9052-i2c -da9052-spi -da9055 -da9063 -davinci_mdio -dax -deflate -dh_generic -digsig -dm-mod -dma -dns_resolver -drbg -drm_mipi_dsi -drm_panel_orientation_quirks -drop_monitor -dwc2 -dwc2_pci -ecb -ecryptfs -edac_core -edma -efivarfs -ehci-exynos -ehci-hcd -ehci-orion -ehci-pci -em_sti -emxx_udc -encrypted-keys -evdev -exportfs -ext4 -extcon-core -exynos-bus -exynos-nocp -exynos-ppmu -exynos_thermal -ezx-pcap -fat -fb -fddi -fec -firmware_class -fixed -fixed_phy -font -freq_table -fuse -fwnode_mdio -gcm -geniv -gf128mul -ghash-generic -glob -governor_passive -governor_performance -governor_powersave -governor_simpleondemand -governor_userspace -gpio-aspeed-sgpio -gpio-generic -gpio-mxc -gpio-omap -gpio-pl061 -gpio-poweroff -gpio-rda -gpio-restart -gpio-tegra -gpio-twl4030 -gpio-twl6040 -gpio-xilinx -hmac -hwmon -hwspinlock_core -i2c-core -i2c-designware-core -i2c-designware-platform -i2c-dev -i2c-imx -i2c-omap -i2c-s3c2410 -icc-core -imsttfb -imx -imx-pcm-dma -imx-pcm-fiq -imx-scu -imx-weim -input-core -ipu_idmac -ipv6 -irq-al-fic -irq-renesas-intc-irqpin -irq-renesas-irqc -irq-renesas-rza1 -jbd2 -jitterentropy_rng -kgdboc -kpp -led-class -leds-asic3 -libaes -libahci -libahci_platform -libata -libblake2s -libphy -libps2 -libsha256 -linear_ranges -loop -lp8788 -ltc2952-poweroff -lz4_decompress -lzo -lzo-rle -lzo_compress -lzo_decompress -map_funcs -max14577 -max310x -max77686 -max77693 -mbcache -md-mod -md5 -mdio-bitbang -mdio_devres -meson-clk-measure -meson-ee-pwrc -meson-gx-pwrc-vpu -meson_uart -mfd-core -mmc_block -mmc_core -mousedev -mpi -mq-deadline -msm_serial -mt6323-poweroff -mtd -mtd_blkdevs -mtdblock -mtk-eint -musb_hdrc -mvebu-devbus -mx3fb -mxc-clk -n_null -nand -nandcore -nfs_ssc -nls_base -nls_cp437 -npcm_wdt -nvmem_core -of_mdio -ofpart -ohci-exynos -ohci-hcd -ohci-pci -oid_registry -omap-cpufreq -omap-dma -omap-usb-host -omap-usb-tll -omap2_nand -omap_elm -omap_hsmmc -omap_l3_noc -omap_l3_smx -owl-uart -packing -palmas -pci-ep-cfs -pci-epc-core -pci-epc-mem -pci-epf-core -pci-host-common -pci-host-generic -pci-tegra -pcie-altera -pcie-altera-msi -pcie-histb -pcie-mediatek -pcie-microchip-host -phy-exynos-dp-video -phy-exynos-mipi-video -phy-exynos5250-sata -phy-generic -phy-gmii-sel -phy-meson-axg-mipi-pcie-analog -phy-meson-axg-pcie -phy-mxs-usb -pinctrl-as3722 -pinctrl-imx -pinctrl-imx8mm -pinctrl-imx8mn -pinctrl-imx8mp -pinctrl-imx8mq -pinctrl-meson -pinctrl-meson8-pmx -pinctrl-msm -pinctrl-mtk-common-v2 -pinctrl-npcm7xx -pinctrl-palmas -pinctrl-rockchip -pinctrl-rza1 -pinctrl-rza2 -pinctrl-rzn1 -pinctrl-s500 -pinctrl-single -pinctrl-ti-iodelay -pkcs7_message -pldmfw -power_supply -powercap_sys -ppp_generic -pps_core -pretimeout_noop -pstore -ptp -public_key -qcom-ebi2 -qcom-ipcc -qcom-pdc -qcom-scm -qcom_rpmh -ramoops -rapidio -rational -rcar-usb2-clock-sel -rda-uart -reed_solomon -regmap-i2c -regmap-mmio -regmap-spi -regulator-poweroff -remoteproc -renesas-cpg-mssr -reset-berlin -reset-imx7 -reset-meson -reset-qcom-aoss -restart-poweroff -rfkill -rng -rng-core -rockchip-mailbox -roles -rpmhpd -rsa_generic -rtc-efi -rtc-mv -rtc-omap -rtc-pcf8523 -rtc-pl031 -rtc-s3c -rtc-twl -sata_highbank -sccnxp -scmi-module -scsi_common -scsi_mod -scu-pd -sd_mod -sdhci -sdhci-esdhc-imx -sdhci-pltfm -sec-core -sec-irq -selftests -seqiv -serdev -serial_core -serial_mctrl_gpio -serio -sg -sh-sci -sh_cmt -sh_mtu2 -sh_tmu -sha1_generic -sha256_generic -sha512_generic -simple-pm-bus -skcipher -slhc -sm501 -smartreflex -snd -snd-compress -snd-pcm -snd-pcm-dmaengine -snd-soc-core -snd-soc-fsl-ssi -snd-soc-imx-audmux -snd-soc-imx-sgtl5000 -snd-soc-sgtl5000 -snd-timer -soundcore -spi-fsl-lib -spi-fsl-spi -spi-omap2-mcspi -squashfs -sr_mod -stmpe-i2c -stmpe-spi -system_heap -t10-pi -t7l66xb -tc3589x -tc6387xb -tc6393xb -tcp_cubic -tegra-ahb -tegra-mc -tegra-tcu -tegra124-cpufreq -tegra124-emc -tegra20-apb-dma -tegra20-cpufreq -tegra20-emc -tegra30-emc -ti-abb-regulator -ti-cpufreq -ti-opp-supply -ti-pwmss -ti-sysc -ti_cpsw -timer-ti-dm -tpm -tpm_tis -tpm_tis_core -tps65086-restart -tps65217 -tps65217-regulator -tps6586x -tps65912-core -tps65912-i2c -tps65912-spi -trusted -ttyprintk -tun -twl-regulator -twl4030-audio -twl4030-power -twl6030-regulator -twl6040 -ucs2_string -udc-core -udmabuf -uhci-hcd -uinput -unicode -uniphier-system-bus -unix -usb-common -usbcore -vexpress-config -vexpress-sysreg -vfat -virt-dma -virtio -virtio_balloon -virtio_console -virtio_mmio -virtio_pci -virtio_pci_modern_dev -virtio_ring -vrfb -watch_queue -watchdog -wwan -x509_key_parser -xgmac_mdio -xhci-hcd -xts -xxhash -xz_dec -zbud -zlib_deflate -zlib_inflate -zpool -zsmalloc -zstd_decompress -zswap reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/armhf/generic.retpoline +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/armhf/generic.retpoline @@ -1 +0,0 @@ -# RETPOLINE NOT ENABLED reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/fwinfo +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/fwinfo @@ -1,1962 +0,0 @@ -firmware: 3826.arm -firmware: 3com/typhoon.bin -firmware: 6fire/dmx6fireap.ihx -firmware: 6fire/dmx6firecf.bin -firmware: 6fire/dmx6firel2.ihx -firmware: BCM2033-FW.bin -firmware: BCM2033-MD.hex -firmware: BT3CPCC.bin -firmware: RTL8192E/boot.img -firmware: RTL8192E/data.img -firmware: RTL8192E/main.img -firmware: RTL8192U/boot.img -firmware: RTL8192U/data.img -firmware: RTL8192U/main.img -firmware: acenic/tg1.bin -firmware: acenic/tg2.bin -firmware: adaptec/starfire_rx.bin -firmware: adaptec/starfire_tx.bin -firmware: advansys/3550.bin -firmware: advansys/38C0800.bin -firmware: advansys/38C1600.bin -firmware: advansys/mcode.bin -firmware: agere_ap_fw.bin -firmware: agere_sta_fw.bin -firmware: aic94xx-seq.fw -firmware: 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: ar5523.bin -firmware: asihpi/dsp5000.bin -firmware: asihpi/dsp6200.bin -firmware: asihpi/dsp6205.bin -firmware: asihpi/dsp6400.bin -firmware: asihpi/dsp6600.bin -firmware: asihpi/dsp8700.bin -firmware: asihpi/dsp8900.bin -firmware: ast_dp501_fw.bin -firmware: ath10k/QCA6174/hw2.1/board-2.bin -firmware: ath10k/QCA6174/hw2.1/board.bin -firmware: ath10k/QCA6174/hw2.1/firmware-4.bin -firmware: ath10k/QCA6174/hw2.1/firmware-5.bin -firmware: ath10k/QCA6174/hw3.0/board-2.bin -firmware: ath10k/QCA6174/hw3.0/board.bin -firmware: ath10k/QCA6174/hw3.0/firmware-4.bin -firmware: ath10k/QCA6174/hw3.0/firmware-5.bin -firmware: ath10k/QCA6174/hw3.0/firmware-6.bin -firmware: ath10k/QCA9377/hw1.0/board.bin -firmware: ath10k/QCA9377/hw1.0/firmware-5.bin -firmware: ath10k/QCA9377/hw1.0/firmware-6.bin -firmware: ath10k/QCA9887/hw1.0/board-2.bin -firmware: ath10k/QCA9887/hw1.0/board.bin -firmware: ath10k/QCA9887/hw1.0/firmware-5.bin -firmware: ath10k/QCA988X/hw2.0/board-2.bin -firmware: ath10k/QCA988X/hw2.0/board.bin -firmware: ath10k/QCA988X/hw2.0/firmware-2.bin -firmware: ath10k/QCA988X/hw2.0/firmware-3.bin -firmware: ath10k/QCA988X/hw2.0/firmware-4.bin -firmware: ath10k/QCA988X/hw2.0/firmware-5.bin -firmware: ath11k/QCA6390/hw2.0/amss.bin -firmware: ath11k/QCA6390/hw2.0/board-2.bin -firmware: ath11k/QCA6390/hw2.0/m3.bin -firmware: ath3k-1.fw -firmware: ath6k/AR6003/hw2.0/athwlan.bin.z77 -firmware: ath6k/AR6003/hw2.0/bdata.SD31.bin -firmware: ath6k/AR6003/hw2.0/bdata.bin -firmware: ath6k/AR6003/hw2.0/data.patch.bin -firmware: ath6k/AR6003/hw2.0/otp.bin.z77 -firmware: ath6k/AR6003/hw2.1.1/athwlan.bin -firmware: ath6k/AR6003/hw2.1.1/bdata.SD31.bin -firmware: ath6k/AR6003/hw2.1.1/bdata.bin -firmware: ath6k/AR6003/hw2.1.1/data.patch.bin -firmware: ath6k/AR6003/hw2.1.1/otp.bin -firmware: ath6k/AR6004/hw1.0/bdata.DB132.bin -firmware: ath6k/AR6004/hw1.0/bdata.bin -firmware: ath6k/AR6004/hw1.0/fw.ram.bin -firmware: ath6k/AR6004/hw1.1/bdata.DB132.bin -firmware: ath6k/AR6004/hw1.1/bdata.bin -firmware: ath6k/AR6004/hw1.1/fw.ram.bin -firmware: ath6k/AR6004/hw1.2/bdata.bin -firmware: ath6k/AR6004/hw1.2/fw.ram.bin -firmware: ath6k/AR6004/hw1.3/bdata.bin -firmware: ath6k/AR6004/hw1.3/fw.ram.bin -firmware: ath9k_htc/htc_7010-1.4.0.fw -firmware: ath9k_htc/htc_9271-1.4.0.fw -firmware: atmel/wilc1000_wifi_firmware-1.bin -firmware: atmel_at76c502-wpa.bin -firmware: atmel_at76c502.bin -firmware: atmel_at76c502_3com-wpa.bin -firmware: atmel_at76c502_3com.bin -firmware: atmel_at76c502d-wpa.bin -firmware: atmel_at76c502d.bin -firmware: atmel_at76c502e-wpa.bin -firmware: atmel_at76c502e.bin -firmware: atmel_at76c503-i3861.bin -firmware: atmel_at76c503-i3863.bin -firmware: atmel_at76c503-rfmd-acc.bin -firmware: atmel_at76c503-rfmd.bin -firmware: atmel_at76c504-wpa.bin -firmware: atmel_at76c504.bin -firmware: atmel_at76c504_2958-wpa.bin -firmware: atmel_at76c504_2958.bin -firmware: atmel_at76c504a_2958-wpa.bin -firmware: atmel_at76c504a_2958.bin -firmware: atmel_at76c505-rfmd.bin -firmware: atmel_at76c505-rfmd2958.bin -firmware: atmel_at76c505a-rfmd2958.bin -firmware: atmel_at76c505amx-rfmd.bin -firmware: atmel_at76c506-wpa.bin -firmware: atmel_at76c506.bin -firmware: atmsar11.fw -firmware: atsc_denver.inp -firmware: av7110/bootcode.bin -firmware: b43/ucode11.fw -firmware: b43/ucode13.fw -firmware: b43/ucode14.fw -firmware: b43/ucode15.fw -firmware: b43/ucode16_lp.fw -firmware: b43/ucode16_mimo.fw -firmware: b43/ucode24_lcn.fw -firmware: b43/ucode25_lcn.fw -firmware: b43/ucode25_mimo.fw -firmware: b43/ucode26_mimo.fw -firmware: b43/ucode29_mimo.fw -firmware: b43/ucode30_mimo.fw -firmware: b43/ucode33_lcn40.fw -firmware: b43/ucode40.fw -firmware: b43/ucode42.fw -firmware: b43/ucode5.fw -firmware: b43/ucode9.fw -firmware: b43legacy/ucode2.fw -firmware: b43legacy/ucode4.fw -firmware: bfubase.frm -firmware: bnx2/bnx2-mips-06-6.2.3.fw -firmware: bnx2/bnx2-mips-09-6.2.1b.fw -firmware: bnx2/bnx2-rv2p-06-6.0.15.fw -firmware: bnx2/bnx2-rv2p-09-6.0.17.fw -firmware: bnx2/bnx2-rv2p-09ax-6.0.17.fw -firmware: bnx2x/bnx2x-e1-7.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: brcm/bcm43xx-0.fw -firmware: brcm/bcm43xx_hdr-0.fw -firmware: brcm/brcmfmac*-pcie.*.bin -firmware: brcm/brcmfmac*-pcie.*.txt -firmware: brcm/brcmfmac*-pcie.txt -firmware: brcm/brcmfmac*-sdio.*.bin -firmware: brcm/brcmfmac*-sdio.*.txt -firmware: brcm/brcmfmac43012-sdio.bin -firmware: brcm/brcmfmac43012-sdio.clm_blob -firmware: brcm/brcmfmac43143-sdio.bin -firmware: brcm/brcmfmac43143.bin -firmware: brcm/brcmfmac43236b.bin -firmware: brcm/brcmfmac43241b0-sdio.bin -firmware: brcm/brcmfmac43241b4-sdio.bin -firmware: brcm/brcmfmac43241b5-sdio.bin -firmware: brcm/brcmfmac43242a.bin -firmware: brcm/brcmfmac4329-sdio.bin -firmware: brcm/brcmfmac4330-sdio.bin -firmware: brcm/brcmfmac4334-sdio.bin -firmware: brcm/brcmfmac43340-sdio.bin -firmware: brcm/brcmfmac4335-sdio.bin -firmware: brcm/brcmfmac43362-sdio.bin -firmware: brcm/brcmfmac4339-sdio.bin -firmware: brcm/brcmfmac43430-sdio.bin -firmware: brcm/brcmfmac43430-sdio.clm_blob -firmware: brcm/brcmfmac43430a0-sdio.bin -firmware: brcm/brcmfmac43430b0-sdio.bin -firmware: brcm/brcmfmac43455-sdio.bin -firmware: brcm/brcmfmac43455-sdio.clm_blob -firmware: brcm/brcmfmac43456-sdio.bin -firmware: brcm/brcmfmac4350-pcie.bin -firmware: brcm/brcmfmac4350c2-pcie.bin -firmware: brcm/brcmfmac4354-sdio.bin -firmware: brcm/brcmfmac4354-sdio.clm_blob -firmware: brcm/brcmfmac4356-pcie.bin -firmware: brcm/brcmfmac4356-pcie.clm_blob -firmware: brcm/brcmfmac4356-sdio.bin -firmware: brcm/brcmfmac4356-sdio.clm_blob -firmware: brcm/brcmfmac43569.bin -firmware: brcm/brcmfmac43570-pcie.bin -firmware: brcm/brcmfmac43570-pcie.clm_blob -firmware: brcm/brcmfmac4358-pcie.bin -firmware: brcm/brcmfmac4359-pcie.bin -firmware: brcm/brcmfmac4359-sdio.bin -firmware: brcm/brcmfmac43602-pcie.bin -firmware: brcm/brcmfmac4364-pcie.bin -firmware: brcm/brcmfmac4365b-pcie.bin -firmware: brcm/brcmfmac4365c-pcie.bin -firmware: brcm/brcmfmac4366b-pcie.bin -firmware: brcm/brcmfmac4366c-pcie.bin -firmware: brcm/brcmfmac4371-pcie.bin -firmware: brcm/brcmfmac4373-sdio.bin -firmware: brcm/brcmfmac4373-sdio.clm_blob -firmware: brcm/brcmfmac4373.bin -firmware: brcm/brcmfmac43752-sdio.bin -firmware: brcm/brcmfmac43752-sdio.clm_blob -firmware: c218tunx.cod -firmware: c320tunx.cod -firmware: cadence/mhdp8546.bin -firmware: carl9170-1.fw -firmware: cavium/cnn55xx_se.fw -firmware: cbfw-3.2.5.1.bin -firmware: cf-fsi-fw.bin -firmware: cis/3CCFEM556.cis -firmware: cis/3CXEM556.cis -firmware: cis/COMpad2.cis -firmware: cis/COMpad4.cis -firmware: cis/DP83903.cis -firmware: cis/LA-PCM.cis -firmware: cis/MT5634ZLX.cis -firmware: cis/NE2K.cis -firmware: cis/PCMLM28.cis -firmware: cis/PE-200.cis -firmware: cis/PE520.cis -firmware: cis/RS-COM-2P.cis -firmware: cis/SW_555_SER.cis -firmware: cis/SW_7xx_SER.cis -firmware: cis/SW_8xx_SER.cis -firmware: cis/tamarack.cis -firmware: cmmb_ming_app.inp -firmware: cmmb_vega_12mhz.inp -firmware: cmmb_venice_12mhz.inp -firmware: comedi/jr3pci.idm -firmware: cp204unx.cod -firmware: cpia2/stv0672_vp4.bin -firmware: cs46xx/cwc4630 -firmware: cs46xx/cwcasync -firmware: cs46xx/cwcbinhack -firmware: cs46xx/cwcdma -firmware: cs46xx/cwcsnoop -firmware: ct2fw-3.2.5.1.bin -firmware: ctefx-desktop.bin -firmware: ctefx-r3di.bin -firmware: ctefx.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: daqboard2000_firmware.bin -firmware: digiface_firmware.bin -firmware: digiface_firmware_rev11.bin -firmware: dvb-cx18-mpc718-mt352.fw -firmware: dvb-demod-m88ds3103.fw -firmware: dvb-demod-m88ds3103b.fw -firmware: dvb-demod-m88rs6000.fw -firmware: dvb-demod-mn88472-02.fw -firmware: dvb-demod-mn88473-01.fw -firmware: dvb-demod-mxl692.fw -firmware: dvb-demod-si2165.fw -firmware: dvb-demod-si2168-a20-01.fw -firmware: dvb-demod-si2168-a30-01.fw -firmware: dvb-demod-si2168-b40-01.fw -firmware: dvb-demod-si2168-d60-01.fw -firmware: dvb-fe-af9013.fw -firmware: dvb-fe-cx24117.fw -firmware: dvb-fe-drxj-mc-1.0.8.fw -firmware: dvb-fe-ds3000.fw -firmware: dvb-fe-tda10071.fw -firmware: dvb-fe-xc4000-1.4.1.fw -firmware: dvb-fe-xc4000-1.4.fw -firmware: dvb-fe-xc5000-1.6.114.fw -firmware: dvb-fe-xc5000c-4.1.30.7.fw -firmware: dvb-tuner-si2141-a10-01.fw -firmware: dvb-tuner-si2157-a30-01.fw -firmware: dvb-tuner-si2158-a20-01.fw -firmware: dvb-usb-af9015.fw -firmware: dvb-usb-af9035-02.fw -firmware: dvb-usb-dib0700-1.20.fw -firmware: dvb-usb-dw2101.fw -firmware: dvb-usb-dw2102.fw -firmware: dvb-usb-dw2104.fw -firmware: dvb-usb-dw3101.fw -firmware: dvb-usb-ec168.fw -firmware: dvb-usb-it9135-01.fw -firmware: dvb-usb-it9135-02.fw -firmware: dvb-usb-it9303-01.fw -firmware: dvb-usb-lme2510-lg.fw -firmware: dvb-usb-lme2510-s0194.fw -firmware: dvb-usb-lme2510c-lg.fw -firmware: dvb-usb-lme2510c-rs2000.fw -firmware: dvb-usb-lme2510c-s0194.fw -firmware: dvb-usb-lme2510c-s7395.fw -firmware: dvb-usb-p1100.fw -firmware: dvb-usb-p7500.fw -firmware: dvb-usb-s630.fw -firmware: dvb-usb-s660.fw -firmware: dvb-usb-terratec-h7-az6007.fw -firmware: dvb_nova_12mhz.inp -firmware: dvb_nova_12mhz_b0.inp -firmware: dvb_rio.inp -firmware: dvbh_rio.inp -firmware: e100/d101m_ucode.bin -firmware: e100/d101s_ucode.bin -firmware: e100/d102e_ucode.bin -firmware: ea/3g_asic.fw -firmware: ea/darla20_dsp.fw -firmware: ea/darla24_dsp.fw -firmware: ea/echo3g_dsp.fw -firmware: ea/gina20_dsp.fw -firmware: ea/gina24_301_asic.fw -firmware: ea/gina24_301_dsp.fw -firmware: ea/gina24_361_asic.fw -firmware: ea/gina24_361_dsp.fw -firmware: ea/indigo_dj_dsp.fw -firmware: ea/indigo_djx_dsp.fw -firmware: ea/indigo_dsp.fw -firmware: ea/indigo_io_dsp.fw -firmware: ea/indigo_iox_dsp.fw -firmware: ea/layla20_asic.fw -firmware: ea/layla20_dsp.fw -firmware: ea/layla24_1_asic.fw -firmware: ea/layla24_2A_asic.fw -firmware: ea/layla24_2S_asic.fw -firmware: ea/layla24_dsp.fw -firmware: ea/loader_dsp.fw -firmware: ea/mia_dsp.fw -firmware: ea/mona_2_asic.fw -firmware: ea/mona_301_1_asic_48.fw -firmware: ea/mona_301_1_asic_96.fw -firmware: ea/mona_301_dsp.fw -firmware: ea/mona_361_1_asic_48.fw -firmware: ea/mona_361_1_asic_96.fw -firmware: ea/mona_361_dsp.fw -firmware: edgeport/boot.fw -firmware: edgeport/boot2.fw -firmware: edgeport/down.fw -firmware: edgeport/down2.fw -firmware: edgeport/down3.bin -firmware: emi26/bitstream.fw -firmware: emi26/firmware.fw -firmware: emi26/loader.fw -firmware: emi62/bitstream.fw -firmware: emi62/loader.fw -firmware: emi62/spdif.fw -firmware: emu/audio_dock.fw -firmware: emu/emu0404.fw -firmware: emu/emu1010_notebook.fw -firmware: emu/emu1010b.fw -firmware: emu/hana.fw -firmware: emu/micro_dock.fw -firmware: ene-ub6250/ms_init.bin -firmware: ene-ub6250/ms_rdwr.bin -firmware: ene-ub6250/msp_rdwr.bin -firmware: ene-ub6250/sd_init1.bin -firmware: ene-ub6250/sd_init2.bin -firmware: ene-ub6250/sd_rdwr.bin -firmware: ess/maestro3_assp_kernel.fw -firmware: ess/maestro3_assp_minisrc.fw -firmware: f2255usb.bin -firmware: fm_radio.inp -firmware: fm_radio_rio.inp -firmware: fw.ram.bin -firmware: go7007/go7007fw.bin -firmware: go7007/go7007tv.bin -firmware: go7007/lr192.fw -firmware: go7007/px-m402u.fw -firmware: go7007/px-tv402u.fw -firmware: go7007/s2250-1.fw -firmware: go7007/s2250-2.fw -firmware: go7007/wis-startrek.fw -firmware: 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: icom_asc.bin -firmware: icom_call_setup.bin -firmware: icom_res_dce.bin -firmware: idt82p33xxx.bin -firmware: imx/sdma/sdma-imx6q.bin -firmware: imx/sdma/sdma-imx7d.bin -firmware: intel/ibt-11-5.ddc -firmware: intel/ibt-11-5.sfi -firmware: intel/ibt-12-16.ddc -firmware: intel/ibt-12-16.sfi -firmware: intel/ice/ddp/ice.pkg -firmware: ipw2100-1.3-i.fw -firmware: ipw2100-1.3-p.fw -firmware: ipw2100-1.3.fw -firmware: ipw2200-bss.fw -firmware: ipw2200-ibss.fw -firmware: ipw2200-sniffer.fw -firmware: isci/isci_firmware.bin -firmware: isdbt_nova_12mhz.inp -firmware: isdbt_nova_12mhz_b0.inp -firmware: isdbt_pele.inp -firmware: isdbt_rio.inp -firmware: isdn/ISAR.BIN -firmware: isight.fw -firmware: isl3886pci -firmware: isl3886usb -firmware: isl3887usb -firmware: iwlwifi-100-5.ucode -firmware: iwlwifi-1000-5.ucode -firmware: iwlwifi-105-6.ucode -firmware: iwlwifi-135-6.ucode -firmware: iwlwifi-2000-6.ucode -firmware: iwlwifi-2030-6.ucode -firmware: iwlwifi-3160-17.ucode -firmware: iwlwifi-3168-29.ucode -firmware: iwlwifi-3945-2.ucode -firmware: iwlwifi-4965-2.ucode -firmware: iwlwifi-5000-5.ucode -firmware: iwlwifi-5150-2.ucode -firmware: iwlwifi-6000-6.ucode -firmware: iwlwifi-6000g2a-6.ucode -firmware: iwlwifi-6000g2b-6.ucode -firmware: iwlwifi-6050-5.ucode -firmware: iwlwifi-7260-17.ucode -firmware: iwlwifi-7265-17.ucode -firmware: iwlwifi-7265D-29.ucode -firmware: iwlwifi-8000C-36.ucode -firmware: iwlwifi-8265-36.ucode -firmware: iwlwifi-9000-pu-b0-jf-b0-46.ucode -firmware: iwlwifi-9260-th-b0-jf-b0-46.ucode -firmware: iwlwifi-Qu-b0-hr-b0-66.ucode -firmware: iwlwifi-Qu-b0-jf-b0-66.ucode -firmware: iwlwifi-Qu-c0-hr-b0-66.ucode -firmware: iwlwifi-QuQnj-b0-hr-b0-66.ucode -firmware: iwlwifi-QuQnj-b0-jf-b0-66.ucode -firmware: iwlwifi-QuZ-a0-hr-b0-66.ucode -firmware: iwlwifi-QuZ-a0-jf-b0-66.ucode -firmware: iwlwifi-SoSnj-a0-gf-a0-66.ucode -firmware: iwlwifi-SoSnj-a0-gf4-a0-66.ucode -firmware: iwlwifi-SoSnj-a0-hr-b0-66.ucode -firmware: iwlwifi-SoSnj-a0-jf-b0-66.ucode -firmware: iwlwifi-SoSnj-a0-mr-a0-66.ucode -firmware: iwlwifi-bz-a0-gf-a0-66.ucode -firmware: iwlwifi-bz-a0-gf4-a0-66.ucode -firmware: iwlwifi-bz-a0-hr-b0-66.ucode -firmware: iwlwifi-bz-a0-mr-a0-66.ucode -firmware: iwlwifi-cc-a0-66.ucode -firmware: iwlwifi-ma-a0-fm-a0-66.ucode -firmware: iwlwifi-ma-a0-gf-a0-66.ucode -firmware: iwlwifi-ma-a0-gf4-a0-66.ucode -firmware: iwlwifi-ma-a0-hr-b0-66.ucode -firmware: iwlwifi-ma-a0-mr-a0-66.ucode -firmware: iwlwifi-so-a0-gf-a0-66.ucode -firmware: iwlwifi-so-a0-hr-b0-66.ucode -firmware: iwlwifi-so-a0-jf-b0-66.ucode -firmware: iwlwifi-ty-a0-gf-a0-66.ucode -firmware: kaweth/new_code.bin -firmware: kaweth/new_code_fix.bin -firmware: kaweth/trigger_code.bin -firmware: kaweth/trigger_code_fix.bin -firmware: keyspan/mpr.fw -firmware: keyspan/usa18x.fw -firmware: keyspan/usa19.fw -firmware: keyspan/usa19qi.fw -firmware: keyspan/usa19qw.fw -firmware: keyspan/usa19w.fw -firmware: keyspan/usa28.fw -firmware: keyspan/usa28x.fw -firmware: keyspan/usa28xa.fw -firmware: keyspan/usa28xb.fw -firmware: keyspan/usa49w.fw -firmware: keyspan/usa49wlc.fw -firmware: keyspan_pda/keyspan_pda.fw -firmware: keyspan_pda/xircom_pgs.fw -firmware: korg/k1212.dsp -firmware: ks7010sd.rom -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: lbtf_usb.bin -firmware: lgs8g75.fw -firmware: libertas/cf8305.bin -firmware: libertas/cf8381.bin -firmware: libertas/cf8381_helper.bin -firmware: libertas/cf8385.bin -firmware: libertas/cf8385_helper.bin -firmware: libertas/gspi8385.bin -firmware: libertas/gspi8385_helper.bin -firmware: libertas/gspi8385_hlp.bin -firmware: libertas/gspi8686.bin -firmware: libertas/gspi8686_hlp.bin -firmware: libertas/gspi8686_v9.bin -firmware: libertas/gspi8686_v9_helper.bin -firmware: libertas/gspi8688.bin -firmware: libertas/gspi8688_helper.bin -firmware: libertas/sd8385.bin -firmware: libertas/sd8385_helper.bin -firmware: libertas/sd8686_v8.bin -firmware: libertas/sd8686_v8_helper.bin -firmware: libertas/sd8686_v9.bin -firmware: libertas/sd8686_v9_helper.bin -firmware: libertas/sd8688.bin -firmware: libertas/sd8688_helper.bin -firmware: libertas/usb8388.bin -firmware: libertas/usb8388_v5.bin -firmware: libertas/usb8388_v9.bin -firmware: libertas/usb8682.bin -firmware: libertas_cs.fw -firmware: libertas_cs_helper.fw -firmware: liquidio/lio_210nv_nic.bin -firmware: liquidio/lio_210sv_nic.bin -firmware: liquidio/lio_23xx_nic.bin -firmware: liquidio/lio_410nv_nic.bin -firmware: me2600_firmware.bin -firmware: me4000_firmware.bin -firmware: mediatek/WIFI_MT7922_patch_mcu_1_1_hdr.bin -firmware: mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin -firmware: mediatek/WIFI_RAM_CODE_MT7922_1.bin -firmware: mediatek/WIFI_RAM_CODE_MT7961_1.bin -firmware: mediatek/mt7610e.bin -firmware: mediatek/mt7610u.bin -firmware: mediatek/mt7615_cr4.bin -firmware: mediatek/mt7615_n9.bin -firmware: mediatek/mt7615_rom_patch.bin -firmware: mediatek/mt7622_n9.bin -firmware: mediatek/mt7622_rom_patch.bin -firmware: mediatek/mt7622pr2h.bin -firmware: mediatek/mt7650e.bin -firmware: mediatek/mt7663_n9_rebb.bin -firmware: mediatek/mt7663_n9_v3.bin -firmware: mediatek/mt7663pr2h.bin -firmware: mediatek/mt7663pr2h_rebb.bin -firmware: mediatek/mt7668pr2h.bin -firmware: mediatek/mt7915_rom_patch.bin -firmware: mediatek/mt7915_wa.bin -firmware: mediatek/mt7915_wm.bin -firmware: mellanox/mlxsw_spectrum-13.2008.2406.mfa2 -firmware: mellanox/mlxsw_spectrum2-29.2008.2406.mfa2 -firmware: mellanox/mlxsw_spectrum3-30.2008.2406.mfa2 -firmware: microchip/mscc_vsc8574_revb_int8051_29e8.bin -firmware: microchip/mscc_vsc8584_revb_int8051_fb48.bin -firmware: mixart/miXart8.elf -firmware: mixart/miXart8.xlx -firmware: mixart/miXart8AES.xlx -firmware: moxa/moxa-1110.fw -firmware: moxa/moxa-1130.fw -firmware: moxa/moxa-1131.fw -firmware: moxa/moxa-1150.fw -firmware: moxa/moxa-1151.fw -firmware: mrvl/sd8688.bin -firmware: mrvl/sd8688_helper.bin -firmware: mrvl/sd8786_uapsta.bin -firmware: mrvl/sd8787_uapsta.bin -firmware: mrvl/sd8797_uapsta.bin -firmware: mrvl/sd8887_uapsta.bin -firmware: mrvl/sd8897_uapsta.bin -firmware: mrvl/sd8987_uapsta.bin -firmware: mrvl/sdsd8977_combo_v2.bin -firmware: mrvl/sdsd8997_combo_v4.bin -firmware: mrvl/usb8766_uapsta.bin -firmware: mrvl/usb8797_uapsta.bin -firmware: mrvl/usb8801_uapsta.bin -firmware: mrvl/usbusb8997_combo_v4.bin -firmware: mt7601u.bin -firmware: mt7603_e1.bin -firmware: mt7603_e2.bin -firmware: mt7628_e1.bin -firmware: mt7628_e2.bin -firmware: mt7662.bin -firmware: mt7662_rom_patch.bin -firmware: mts_cdma.fw -firmware: mts_edge.fw -firmware: mts_gsm.fw -firmware: mts_mt9234mu.fw -firmware: mts_mt9234zba.fw -firmware: multiface_firmware.bin -firmware: multiface_firmware_rev11.bin -firmware: mwl8k/fmimage_8363.fw -firmware: mwl8k/fmimage_8366.fw -firmware: mwl8k/fmimage_8366_ap-3.fw -firmware: mwl8k/fmimage_8687.fw -firmware: mwl8k/helper_8363.fw -firmware: mwl8k/helper_8366.fw -firmware: mwl8k/helper_8687.fw -firmware: myri10ge_eth_z8e.dat -firmware: myri10ge_ethp_z8e.dat -firmware: myri10ge_rss_eth_z8e.dat -firmware: myri10ge_rss_ethp_z8e.dat -firmware: 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: ni6534a.bin -firmware: niscrb01.bin -firmware: niscrb02.bin -firmware: nvidia/gk20a/fecs_data.bin -firmware: nvidia/gk20a/fecs_inst.bin -firmware: nvidia/gk20a/gpccs_data.bin -firmware: nvidia/gk20a/gpccs_inst.bin -firmware: nvidia/gk20a/sw_bundle_init.bin -firmware: nvidia/gk20a/sw_ctx.bin -firmware: nvidia/gk20a/sw_method_init.bin -firmware: nvidia/gk20a/sw_nonctx.bin -firmware: nvidia/gm200/acr/bl.bin -firmware: nvidia/gm200/acr/ucode_load.bin -firmware: nvidia/gm200/acr/ucode_unload.bin -firmware: nvidia/gm200/gr/fecs_bl.bin -firmware: nvidia/gm200/gr/fecs_data.bin -firmware: nvidia/gm200/gr/fecs_inst.bin -firmware: nvidia/gm200/gr/fecs_sig.bin -firmware: nvidia/gm200/gr/gpccs_bl.bin -firmware: nvidia/gm200/gr/gpccs_data.bin -firmware: nvidia/gm200/gr/gpccs_inst.bin -firmware: nvidia/gm200/gr/gpccs_sig.bin -firmware: nvidia/gm200/gr/sw_bundle_init.bin -firmware: nvidia/gm200/gr/sw_ctx.bin -firmware: nvidia/gm200/gr/sw_method_init.bin -firmware: nvidia/gm200/gr/sw_nonctx.bin -firmware: nvidia/gm204/acr/bl.bin -firmware: nvidia/gm204/acr/ucode_load.bin -firmware: nvidia/gm204/acr/ucode_unload.bin -firmware: nvidia/gm204/gr/fecs_bl.bin -firmware: nvidia/gm204/gr/fecs_data.bin -firmware: nvidia/gm204/gr/fecs_inst.bin -firmware: nvidia/gm204/gr/fecs_sig.bin -firmware: nvidia/gm204/gr/gpccs_bl.bin -firmware: nvidia/gm204/gr/gpccs_data.bin -firmware: nvidia/gm204/gr/gpccs_inst.bin -firmware: nvidia/gm204/gr/gpccs_sig.bin -firmware: nvidia/gm204/gr/sw_bundle_init.bin -firmware: nvidia/gm204/gr/sw_ctx.bin -firmware: nvidia/gm204/gr/sw_method_init.bin -firmware: nvidia/gm204/gr/sw_nonctx.bin -firmware: nvidia/gm206/acr/bl.bin -firmware: nvidia/gm206/acr/ucode_load.bin -firmware: nvidia/gm206/acr/ucode_unload.bin -firmware: nvidia/gm206/gr/fecs_bl.bin -firmware: nvidia/gm206/gr/fecs_data.bin -firmware: nvidia/gm206/gr/fecs_inst.bin -firmware: nvidia/gm206/gr/fecs_sig.bin -firmware: nvidia/gm206/gr/gpccs_bl.bin -firmware: nvidia/gm206/gr/gpccs_data.bin -firmware: nvidia/gm206/gr/gpccs_inst.bin -firmware: nvidia/gm206/gr/gpccs_sig.bin -firmware: nvidia/gm206/gr/sw_bundle_init.bin -firmware: nvidia/gm206/gr/sw_ctx.bin -firmware: nvidia/gm206/gr/sw_method_init.bin -firmware: nvidia/gm206/gr/sw_nonctx.bin -firmware: nvidia/gm20b/acr/bl.bin -firmware: nvidia/gm20b/acr/ucode_load.bin -firmware: nvidia/gm20b/gr/fecs_bl.bin -firmware: nvidia/gm20b/gr/fecs_data.bin -firmware: nvidia/gm20b/gr/fecs_inst.bin -firmware: nvidia/gm20b/gr/fecs_sig.bin -firmware: nvidia/gm20b/gr/gpccs_data.bin -firmware: nvidia/gm20b/gr/gpccs_inst.bin -firmware: nvidia/gm20b/gr/sw_bundle_init.bin -firmware: nvidia/gm20b/gr/sw_ctx.bin -firmware: nvidia/gm20b/gr/sw_method_init.bin -firmware: nvidia/gm20b/gr/sw_nonctx.bin -firmware: nvidia/gm20b/pmu/desc.bin -firmware: nvidia/gm20b/pmu/image.bin -firmware: nvidia/gm20b/pmu/sig.bin -firmware: nvidia/gp100/acr/bl.bin -firmware: nvidia/gp100/acr/ucode_load.bin -firmware: nvidia/gp100/acr/ucode_unload.bin -firmware: nvidia/gp100/gr/fecs_bl.bin -firmware: nvidia/gp100/gr/fecs_data.bin -firmware: nvidia/gp100/gr/fecs_inst.bin -firmware: nvidia/gp100/gr/fecs_sig.bin -firmware: nvidia/gp100/gr/gpccs_bl.bin -firmware: nvidia/gp100/gr/gpccs_data.bin -firmware: nvidia/gp100/gr/gpccs_inst.bin -firmware: nvidia/gp100/gr/gpccs_sig.bin -firmware: nvidia/gp100/gr/sw_bundle_init.bin -firmware: nvidia/gp100/gr/sw_ctx.bin -firmware: nvidia/gp100/gr/sw_method_init.bin -firmware: nvidia/gp100/gr/sw_nonctx.bin -firmware: nvidia/gp102/acr/bl.bin -firmware: nvidia/gp102/acr/ucode_load.bin -firmware: nvidia/gp102/acr/ucode_unload.bin -firmware: nvidia/gp102/acr/unload_bl.bin -firmware: nvidia/gp102/gr/fecs_bl.bin -firmware: nvidia/gp102/gr/fecs_data.bin -firmware: nvidia/gp102/gr/fecs_inst.bin -firmware: nvidia/gp102/gr/fecs_sig.bin -firmware: nvidia/gp102/gr/gpccs_bl.bin -firmware: nvidia/gp102/gr/gpccs_data.bin -firmware: nvidia/gp102/gr/gpccs_inst.bin -firmware: nvidia/gp102/gr/gpccs_sig.bin -firmware: nvidia/gp102/gr/sw_bundle_init.bin -firmware: nvidia/gp102/gr/sw_ctx.bin -firmware: nvidia/gp102/gr/sw_method_init.bin -firmware: nvidia/gp102/gr/sw_nonctx.bin -firmware: nvidia/gp102/nvdec/scrubber.bin -firmware: nvidia/gp102/sec2/desc-1.bin -firmware: nvidia/gp102/sec2/desc.bin -firmware: nvidia/gp102/sec2/image-1.bin -firmware: nvidia/gp102/sec2/image.bin -firmware: nvidia/gp102/sec2/sig-1.bin -firmware: nvidia/gp102/sec2/sig.bin -firmware: nvidia/gp104/acr/bl.bin -firmware: nvidia/gp104/acr/ucode_load.bin -firmware: nvidia/gp104/acr/ucode_unload.bin -firmware: nvidia/gp104/acr/unload_bl.bin -firmware: nvidia/gp104/gr/fecs_bl.bin -firmware: nvidia/gp104/gr/fecs_data.bin -firmware: nvidia/gp104/gr/fecs_inst.bin -firmware: nvidia/gp104/gr/fecs_sig.bin -firmware: nvidia/gp104/gr/gpccs_bl.bin -firmware: nvidia/gp104/gr/gpccs_data.bin -firmware: nvidia/gp104/gr/gpccs_inst.bin -firmware: nvidia/gp104/gr/gpccs_sig.bin -firmware: nvidia/gp104/gr/sw_bundle_init.bin -firmware: nvidia/gp104/gr/sw_ctx.bin -firmware: nvidia/gp104/gr/sw_method_init.bin -firmware: nvidia/gp104/gr/sw_nonctx.bin -firmware: nvidia/gp104/nvdec/scrubber.bin -firmware: nvidia/gp104/sec2/desc-1.bin -firmware: nvidia/gp104/sec2/desc.bin -firmware: nvidia/gp104/sec2/image-1.bin -firmware: nvidia/gp104/sec2/image.bin -firmware: nvidia/gp104/sec2/sig-1.bin -firmware: nvidia/gp104/sec2/sig.bin -firmware: nvidia/gp106/acr/bl.bin -firmware: nvidia/gp106/acr/ucode_load.bin -firmware: nvidia/gp106/acr/ucode_unload.bin -firmware: nvidia/gp106/acr/unload_bl.bin -firmware: nvidia/gp106/gr/fecs_bl.bin -firmware: nvidia/gp106/gr/fecs_data.bin -firmware: nvidia/gp106/gr/fecs_inst.bin -firmware: nvidia/gp106/gr/fecs_sig.bin -firmware: nvidia/gp106/gr/gpccs_bl.bin -firmware: nvidia/gp106/gr/gpccs_data.bin -firmware: nvidia/gp106/gr/gpccs_inst.bin -firmware: nvidia/gp106/gr/gpccs_sig.bin -firmware: nvidia/gp106/gr/sw_bundle_init.bin -firmware: nvidia/gp106/gr/sw_ctx.bin -firmware: nvidia/gp106/gr/sw_method_init.bin -firmware: nvidia/gp106/gr/sw_nonctx.bin -firmware: nvidia/gp106/nvdec/scrubber.bin -firmware: nvidia/gp106/sec2/desc-1.bin -firmware: nvidia/gp106/sec2/desc.bin -firmware: nvidia/gp106/sec2/image-1.bin -firmware: nvidia/gp106/sec2/image.bin -firmware: nvidia/gp106/sec2/sig-1.bin -firmware: nvidia/gp106/sec2/sig.bin -firmware: nvidia/gp107/acr/bl.bin -firmware: nvidia/gp107/acr/ucode_load.bin -firmware: nvidia/gp107/acr/ucode_unload.bin -firmware: nvidia/gp107/acr/unload_bl.bin -firmware: nvidia/gp107/gr/fecs_bl.bin -firmware: nvidia/gp107/gr/fecs_data.bin -firmware: nvidia/gp107/gr/fecs_inst.bin -firmware: nvidia/gp107/gr/fecs_sig.bin -firmware: nvidia/gp107/gr/gpccs_bl.bin -firmware: nvidia/gp107/gr/gpccs_data.bin -firmware: nvidia/gp107/gr/gpccs_inst.bin -firmware: nvidia/gp107/gr/gpccs_sig.bin -firmware: nvidia/gp107/gr/sw_bundle_init.bin -firmware: nvidia/gp107/gr/sw_ctx.bin -firmware: nvidia/gp107/gr/sw_method_init.bin -firmware: nvidia/gp107/gr/sw_nonctx.bin -firmware: nvidia/gp107/nvdec/scrubber.bin -firmware: nvidia/gp107/sec2/desc-1.bin -firmware: nvidia/gp107/sec2/desc.bin -firmware: nvidia/gp107/sec2/image-1.bin -firmware: nvidia/gp107/sec2/image.bin -firmware: nvidia/gp107/sec2/sig-1.bin -firmware: nvidia/gp107/sec2/sig.bin -firmware: nvidia/gp108/acr/bl.bin -firmware: nvidia/gp108/acr/ucode_load.bin -firmware: nvidia/gp108/acr/ucode_unload.bin -firmware: nvidia/gp108/acr/unload_bl.bin -firmware: nvidia/gp108/gr/fecs_bl.bin -firmware: nvidia/gp108/gr/fecs_data.bin -firmware: nvidia/gp108/gr/fecs_inst.bin -firmware: nvidia/gp108/gr/fecs_sig.bin -firmware: nvidia/gp108/gr/gpccs_bl.bin -firmware: nvidia/gp108/gr/gpccs_data.bin -firmware: nvidia/gp108/gr/gpccs_inst.bin -firmware: nvidia/gp108/gr/gpccs_sig.bin -firmware: nvidia/gp108/gr/sw_bundle_init.bin -firmware: nvidia/gp108/gr/sw_ctx.bin -firmware: nvidia/gp108/gr/sw_method_init.bin -firmware: nvidia/gp108/gr/sw_nonctx.bin -firmware: nvidia/gp108/nvdec/scrubber.bin -firmware: nvidia/gp108/sec2/desc.bin -firmware: nvidia/gp108/sec2/image.bin -firmware: nvidia/gp108/sec2/sig.bin -firmware: nvidia/gp10b/acr/bl.bin -firmware: nvidia/gp10b/acr/ucode_load.bin -firmware: nvidia/gp10b/gr/fecs_bl.bin -firmware: nvidia/gp10b/gr/fecs_data.bin -firmware: nvidia/gp10b/gr/fecs_inst.bin -firmware: nvidia/gp10b/gr/fecs_sig.bin -firmware: nvidia/gp10b/gr/gpccs_bl.bin -firmware: nvidia/gp10b/gr/gpccs_data.bin -firmware: nvidia/gp10b/gr/gpccs_inst.bin -firmware: nvidia/gp10b/gr/gpccs_sig.bin -firmware: nvidia/gp10b/gr/sw_bundle_init.bin -firmware: nvidia/gp10b/gr/sw_ctx.bin -firmware: nvidia/gp10b/gr/sw_method_init.bin -firmware: nvidia/gp10b/gr/sw_nonctx.bin -firmware: nvidia/gp10b/pmu/desc.bin -firmware: nvidia/gp10b/pmu/image.bin -firmware: nvidia/gp10b/pmu/sig.bin -firmware: nvidia/gv100/acr/bl.bin -firmware: nvidia/gv100/acr/ucode_load.bin -firmware: nvidia/gv100/acr/ucode_unload.bin -firmware: nvidia/gv100/acr/unload_bl.bin -firmware: nvidia/gv100/gr/fecs_bl.bin -firmware: nvidia/gv100/gr/fecs_data.bin -firmware: nvidia/gv100/gr/fecs_inst.bin -firmware: nvidia/gv100/gr/fecs_sig.bin -firmware: nvidia/gv100/gr/gpccs_bl.bin -firmware: nvidia/gv100/gr/gpccs_data.bin -firmware: nvidia/gv100/gr/gpccs_inst.bin -firmware: nvidia/gv100/gr/gpccs_sig.bin -firmware: nvidia/gv100/gr/sw_bundle_init.bin -firmware: nvidia/gv100/gr/sw_ctx.bin -firmware: nvidia/gv100/gr/sw_method_init.bin -firmware: nvidia/gv100/gr/sw_nonctx.bin -firmware: nvidia/gv100/nvdec/scrubber.bin -firmware: nvidia/gv100/sec2/desc.bin -firmware: nvidia/gv100/sec2/image.bin -firmware: nvidia/gv100/sec2/sig.bin -firmware: nvidia/tegra124/vic03_ucode.bin -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: nvidia/tu102/acr/bl.bin -firmware: nvidia/tu102/acr/ucode_ahesasc.bin -firmware: nvidia/tu102/acr/ucode_asb.bin -firmware: nvidia/tu102/acr/ucode_unload.bin -firmware: nvidia/tu102/acr/unload_bl.bin -firmware: nvidia/tu102/gr/fecs_bl.bin -firmware: nvidia/tu102/gr/fecs_data.bin -firmware: nvidia/tu102/gr/fecs_inst.bin -firmware: nvidia/tu102/gr/fecs_sig.bin -firmware: nvidia/tu102/gr/gpccs_bl.bin -firmware: nvidia/tu102/gr/gpccs_data.bin -firmware: nvidia/tu102/gr/gpccs_inst.bin -firmware: nvidia/tu102/gr/gpccs_sig.bin -firmware: nvidia/tu102/gr/sw_bundle_init.bin -firmware: nvidia/tu102/gr/sw_ctx.bin -firmware: nvidia/tu102/gr/sw_method_init.bin -firmware: nvidia/tu102/gr/sw_nonctx.bin -firmware: nvidia/tu102/nvdec/scrubber.bin -firmware: nvidia/tu102/sec2/desc.bin -firmware: nvidia/tu102/sec2/image.bin -firmware: nvidia/tu102/sec2/sig.bin -firmware: nvidia/tu104/acr/bl.bin -firmware: nvidia/tu104/acr/ucode_ahesasc.bin -firmware: nvidia/tu104/acr/ucode_asb.bin -firmware: nvidia/tu104/acr/ucode_unload.bin -firmware: nvidia/tu104/acr/unload_bl.bin -firmware: nvidia/tu104/gr/fecs_bl.bin -firmware: nvidia/tu104/gr/fecs_data.bin -firmware: nvidia/tu104/gr/fecs_inst.bin -firmware: nvidia/tu104/gr/fecs_sig.bin -firmware: nvidia/tu104/gr/gpccs_bl.bin -firmware: nvidia/tu104/gr/gpccs_data.bin -firmware: nvidia/tu104/gr/gpccs_inst.bin -firmware: nvidia/tu104/gr/gpccs_sig.bin -firmware: nvidia/tu104/gr/sw_bundle_init.bin -firmware: nvidia/tu104/gr/sw_ctx.bin -firmware: nvidia/tu104/gr/sw_method_init.bin -firmware: nvidia/tu104/gr/sw_nonctx.bin -firmware: nvidia/tu104/nvdec/scrubber.bin -firmware: nvidia/tu104/sec2/desc.bin -firmware: nvidia/tu104/sec2/image.bin -firmware: nvidia/tu104/sec2/sig.bin -firmware: nvidia/tu106/acr/bl.bin -firmware: nvidia/tu106/acr/ucode_ahesasc.bin -firmware: nvidia/tu106/acr/ucode_asb.bin -firmware: nvidia/tu106/acr/ucode_unload.bin -firmware: nvidia/tu106/acr/unload_bl.bin -firmware: nvidia/tu106/gr/fecs_bl.bin -firmware: nvidia/tu106/gr/fecs_data.bin -firmware: nvidia/tu106/gr/fecs_inst.bin -firmware: nvidia/tu106/gr/fecs_sig.bin -firmware: nvidia/tu106/gr/gpccs_bl.bin -firmware: nvidia/tu106/gr/gpccs_data.bin -firmware: nvidia/tu106/gr/gpccs_inst.bin -firmware: nvidia/tu106/gr/gpccs_sig.bin -firmware: nvidia/tu106/gr/sw_bundle_init.bin -firmware: nvidia/tu106/gr/sw_ctx.bin -firmware: nvidia/tu106/gr/sw_method_init.bin -firmware: nvidia/tu106/gr/sw_nonctx.bin -firmware: nvidia/tu106/nvdec/scrubber.bin -firmware: nvidia/tu106/sec2/desc.bin -firmware: nvidia/tu106/sec2/image.bin -firmware: nvidia/tu106/sec2/sig.bin -firmware: nvidia/tu116/acr/bl.bin -firmware: nvidia/tu116/acr/ucode_ahesasc.bin -firmware: nvidia/tu116/acr/ucode_asb.bin -firmware: nvidia/tu116/acr/ucode_unload.bin -firmware: nvidia/tu116/acr/unload_bl.bin -firmware: nvidia/tu116/gr/fecs_bl.bin -firmware: nvidia/tu116/gr/fecs_data.bin -firmware: nvidia/tu116/gr/fecs_inst.bin -firmware: nvidia/tu116/gr/fecs_sig.bin -firmware: nvidia/tu116/gr/gpccs_bl.bin -firmware: nvidia/tu116/gr/gpccs_data.bin -firmware: nvidia/tu116/gr/gpccs_inst.bin -firmware: nvidia/tu116/gr/gpccs_sig.bin -firmware: nvidia/tu116/gr/sw_bundle_init.bin -firmware: nvidia/tu116/gr/sw_ctx.bin -firmware: nvidia/tu116/gr/sw_method_init.bin -firmware: nvidia/tu116/gr/sw_nonctx.bin -firmware: nvidia/tu116/nvdec/scrubber.bin -firmware: nvidia/tu116/sec2/desc.bin -firmware: nvidia/tu116/sec2/image.bin -firmware: nvidia/tu116/sec2/sig.bin -firmware: nvidia/tu117/acr/bl.bin -firmware: nvidia/tu117/acr/ucode_ahesasc.bin -firmware: nvidia/tu117/acr/ucode_asb.bin -firmware: nvidia/tu117/acr/ucode_unload.bin -firmware: nvidia/tu117/acr/unload_bl.bin -firmware: nvidia/tu117/gr/fecs_bl.bin -firmware: nvidia/tu117/gr/fecs_data.bin -firmware: nvidia/tu117/gr/fecs_inst.bin -firmware: nvidia/tu117/gr/fecs_sig.bin -firmware: nvidia/tu117/gr/gpccs_bl.bin -firmware: nvidia/tu117/gr/gpccs_data.bin -firmware: nvidia/tu117/gr/gpccs_inst.bin -firmware: nvidia/tu117/gr/gpccs_sig.bin -firmware: nvidia/tu117/gr/sw_bundle_init.bin -firmware: nvidia/tu117/gr/sw_ctx.bin -firmware: nvidia/tu117/gr/sw_method_init.bin -firmware: nvidia/tu117/gr/sw_nonctx.bin -firmware: nvidia/tu117/nvdec/scrubber.bin -firmware: nvidia/tu117/sec2/desc.bin -firmware: nvidia/tu117/sec2/image.bin -firmware: nvidia/tu117/sec2/sig.bin -firmware: orinoco_ezusb_fw -firmware: ositech/Xilinx7OD.bin -firmware: pca200e.bin -firmware: pca200e_ecd.bin2 -firmware: pcxhr/dspb1222e.b56 -firmware: pcxhr/dspb1222hr.b56 -firmware: pcxhr/dspb882e.b56 -firmware: pcxhr/dspb882hr.b56 -firmware: pcxhr/dspb924.b56 -firmware: pcxhr/dspd1222.d56 -firmware: pcxhr/dspd222.d56 -firmware: pcxhr/dspd882.d56 -firmware: pcxhr/dspe882.e56 -firmware: pcxhr/dspe924.e56 -firmware: pcxhr/xlxc1222e.dat -firmware: pcxhr/xlxc1222hr.dat -firmware: pcxhr/xlxc222.dat -firmware: pcxhr/xlxc882e.dat -firmware: pcxhr/xlxc882hr.dat -firmware: pcxhr/xlxc924.dat -firmware: pcxhr/xlxint.dat -firmware: phanfw.bin -firmware: prism2_ru.fw -firmware: prism_ap_fw.bin -firmware: prism_sta_fw.bin -firmware: qat_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: qed/qed_init_values_zipped-8.42.2.0.bin -firmware: ql2100_fw.bin -firmware: ql2200_fw.bin -firmware: ql2300_fw.bin -firmware: ql2322_fw.bin -firmware: ql2400_fw.bin -firmware: ql2500_fw.bin -firmware: qlogic/1040.bin -firmware: qlogic/12160.bin -firmware: qlogic/1280.bin -firmware: qlogic/sd7220.fw -firmware: 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: renesas_usb_fw.mem -firmware: riptide.hex -firmware: rockchip/dptx.bin -firmware: rp2.fw -firmware: rpm_firmware.bin -firmware: rs9113_wlan_qspi.rps -firmware: rt2561.bin -firmware: rt2561s.bin -firmware: rt2661.bin -firmware: rt2860.bin -firmware: rt2870.bin -firmware: rt73.bin -firmware: rtl_bt/rtl8723a_fw.bin -firmware: rtl_bt/rtl8723b_config.bin -firmware: rtl_bt/rtl8723b_fw.bin -firmware: rtl_bt/rtl8723bs_config.bin -firmware: rtl_bt/rtl8723bs_fw.bin -firmware: rtl_bt/rtl8723ds_config.bin -firmware: rtl_bt/rtl8723ds_fw.bin -firmware: rtl_bt/rtl8761a_config.bin -firmware: rtl_bt/rtl8761a_fw.bin -firmware: rtl_bt/rtl8821a_config.bin -firmware: rtl_bt/rtl8821a_fw.bin -firmware: rtl_bt/rtl8822b_config.bin -firmware: rtl_bt/rtl8822b_fw.bin -firmware: rtl_bt/rtl8852au_config.bin -firmware: rtl_bt/rtl8852au_fw.bin -firmware: rtl_nic/rtl8105e-1.fw -firmware: rtl_nic/rtl8106e-1.fw -firmware: rtl_nic/rtl8106e-2.fw -firmware: rtl_nic/rtl8107e-1.fw -firmware: rtl_nic/rtl8107e-2.fw -firmware: rtl_nic/rtl8125a-3.fw -firmware: rtl_nic/rtl8125b-2.fw -firmware: rtl_nic/rtl8153a-2.fw -firmware: rtl_nic/rtl8153a-3.fw -firmware: rtl_nic/rtl8153a-4.fw -firmware: rtl_nic/rtl8153b-2.fw -firmware: rtl_nic/rtl8153c-1.fw -firmware: rtl_nic/rtl8156a-2.fw -firmware: rtl_nic/rtl8156b-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: rtlwifi/rtl8188efw.bin -firmware: rtlwifi/rtl8188eufw.bin -firmware: rtlwifi/rtl8192cfw.bin -firmware: rtlwifi/rtl8192cfwU.bin -firmware: rtlwifi/rtl8192cfwU_B.bin -firmware: rtlwifi/rtl8192cufw.bin -firmware: rtlwifi/rtl8192cufw_A.bin -firmware: rtlwifi/rtl8192cufw_B.bin -firmware: rtlwifi/rtl8192cufw_TMSC.bin -firmware: rtlwifi/rtl8192defw.bin -firmware: rtlwifi/rtl8192eefw.bin -firmware: rtlwifi/rtl8192eu_nic.bin -firmware: rtlwifi/rtl8192sefw.bin -firmware: rtlwifi/rtl8712u.bin -firmware: rtlwifi/rtl8723aufw_A.bin -firmware: rtlwifi/rtl8723aufw_B.bin -firmware: rtlwifi/rtl8723aufw_B_NoBT.bin -firmware: rtlwifi/rtl8723befw.bin -firmware: rtlwifi/rtl8723befw_36.bin -firmware: rtlwifi/rtl8723bu_bt.bin -firmware: rtlwifi/rtl8723bu_nic.bin -firmware: rtlwifi/rtl8723efw.bin -firmware: rtlwifi/rtl8821aefw.bin -firmware: rtlwifi/rtl8821aefw_29.bin -firmware: rtw88/rtw8723d_fw.bin -firmware: rtw88/rtw8821c_fw.bin -firmware: rtw88/rtw8822b_fw.bin -firmware: rtw88/rtw8822c_fw.bin -firmware: rtw88/rtw8822c_wow_fw.bin -firmware: rtw89/rtw8852a_fw.bin -firmware: s5k4ecgx.bin -firmware: sd8385.bin -firmware: sd8385_helper.bin -firmware: sd8686.bin -firmware: sd8686_helper.bin -firmware: sd8688.bin -firmware: sd8688_helper.bin -firmware: slicoss/gbdownload.sys -firmware: slicoss/gbrcvucode.sys -firmware: slicoss/oasisdownload.sys -firmware: slicoss/oasisrcvucode.sys -firmware: sms1xxx-hcw-55xxx-dvbt-02.fw -firmware: sms1xxx-hcw-55xxx-isdbt-02.fw -firmware: sms1xxx-nova-a-dvbt-01.fw -firmware: sms1xxx-nova-b-dvbt-01.fw -firmware: sms1xxx-stellar-dvbt-01.fw -firmware: softing-4.6/bcard.bin -firmware: softing-4.6/bcard2.bin -firmware: softing-4.6/cancard.bin -firmware: softing-4.6/cancrd2.bin -firmware: softing-4.6/cansja.bin -firmware: softing-4.6/ldcard.bin -firmware: softing-4.6/ldcard2.bin -firmware: solos-FPGA.bin -firmware: solos-Firmware.bin -firmware: solos-db-FPGA.bin -firmware: sun/cassini.bin -firmware: symbol_sp24t_prim_fw -firmware: symbol_sp24t_sec_fw -firmware: tdmb_denver.inp -firmware: tdmb_nova_12mhz.inp -firmware: tdmb_nova_12mhz_b0.inp -firmware: tehuti/bdx.bin -firmware: ti-connectivity/wl1251-fw.bin -firmware: ti-connectivity/wl1251-nvs.bin -firmware: ti-connectivity/wl127x-fw-5-mr.bin -firmware: ti-connectivity/wl127x-fw-5-plt.bin -firmware: ti-connectivity/wl127x-fw-5-sr.bin -firmware: ti-connectivity/wl128x-fw-5-mr.bin -firmware: ti-connectivity/wl128x-fw-5-plt.bin -firmware: ti-connectivity/wl128x-fw-5-sr.bin -firmware: ti-connectivity/wl18xx-fw-4.bin -firmware: ti_3410.fw -firmware: ti_5052.fw -firmware: tigon/tg3.bin -firmware: tigon/tg357766.bin -firmware: tigon/tg3_tso.bin -firmware: tigon/tg3_tso5.bin -firmware: ttusb-budget/dspbootcode.bin -firmware: ueagle-atm/930-fpga.bin -firmware: ueagle-atm/CMV4i.bin -firmware: ueagle-atm/CMV4i.bin.v2 -firmware: ueagle-atm/CMV4p.bin -firmware: ueagle-atm/CMV4p.bin.v2 -firmware: ueagle-atm/CMV9i.bin -firmware: ueagle-atm/CMV9i.bin.v2 -firmware: ueagle-atm/CMV9p.bin -firmware: ueagle-atm/CMV9p.bin.v2 -firmware: ueagle-atm/CMVei.bin -firmware: ueagle-atm/CMVei.bin.v2 -firmware: ueagle-atm/CMVep.bin -firmware: ueagle-atm/CMVep.bin.v2 -firmware: ueagle-atm/DSP4i.bin -firmware: ueagle-atm/DSP4p.bin -firmware: ueagle-atm/DSP9i.bin -firmware: ueagle-atm/DSP9p.bin -firmware: ueagle-atm/DSPei.bin -firmware: ueagle-atm/DSPep.bin -firmware: ueagle-atm/adi930.fw -firmware: ueagle-atm/eagle.fw -firmware: ueagle-atm/eagleI.fw -firmware: ueagle-atm/eagleII.fw -firmware: ueagle-atm/eagleIII.fw -firmware: ueagle-atm/eagleIV.fw -firmware: usb8388.bin -firmware: usbdux_firmware.bin -firmware: usbduxfast_firmware.bin -firmware: usbduxsigma_firmware.bin -firmware: v4l-cx231xx-avcore-01.fw -firmware: v4l-cx23418-apu.fw -firmware: v4l-cx23418-cpu.fw -firmware: v4l-cx23418-dig.fw -firmware: v4l-cx2341x-dec.fw -firmware: v4l-cx2341x-enc.fw -firmware: v4l-cx2341x-init.mpg -firmware: v4l-cx23885-avcore-01.fw -firmware: v4l-cx23885-enc.fw -firmware: v4l-cx25840.fw -firmware: v4l-pvrusb2-24xxx-01.fw -firmware: v4l-pvrusb2-29xxx-01.fw -firmware: v4l-pvrusb2-73xxx-01.fw -firmware: vicam/firmware.fw -firmware: vntwusb.fw -firmware: vpdma-1b8.bin -firmware: vx/bd56002.boot -firmware: vx/bd563s3.boot -firmware: vx/bd563v2.boot -firmware: vx/bx_1_vp4.b56 -firmware: vx/bx_1_vxp.b56 -firmware: vx/l_1_v22.d56 -firmware: vx/l_1_vp4.d56 -firmware: vx/l_1_vx2.d56 -firmware: vx/l_1_vxp.d56 -firmware: vx/x1_1_vp4.xlx -firmware: vx/x1_1_vx2.xlx -firmware: vx/x1_1_vxp.xlx -firmware: vx/x1_2_v22.xlx -firmware: vxge/X3fw-pxe.ncf -firmware: vxge/X3fw.ncf -firmware: wd719x-risc.bin -firmware: wd719x-wcs.bin -firmware: whiteheat.fw -firmware: whiteheat_loader.fw -firmware: wil6210.brd -firmware: wil6210.fw -firmware: wil6210_sparrow_plus.fw -firmware: wil6436.brd -firmware: wil6436.fw -firmware: wlan/prima/WCNSS_qcom_wlan_nv.bin -firmware: xc3028-v27.fw -firmware: xc3028L-v36.fw -firmware: yam/1200.bin -firmware: yam/9600.bin -firmware: yamaha/ds1_ctrl.fw -firmware: yamaha/ds1_dsp.fw -firmware: yamaha/ds1e_ctrl.fw -firmware: zd1201-ap.fw -firmware: zd1201.fw -firmware: zd1211/zd1211_ub -firmware: zd1211/zd1211_uphr -firmware: zd1211/zd1211_ur -firmware: zd1211/zd1211b_ub -firmware: zd1211/zd1211b_uphr -firmware: zd1211/zd1211b_ur reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/ppc64el/generic +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/ppc64el/generic @@ -1,24687 +0,0 @@ -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 -CXL EXPORT_SYMBOL_GPL 0x3a5788ba devm_cxl_add_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3d839090 devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x43973f62 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x43c6eede is_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x452988be __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4bd12bf1 cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x53fe1b69 cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6ee8c83d to_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8b644562 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb17eb9c2 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb38e19f8 cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb8e58ac9 devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xdbee61cf is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf13e717c cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf2c0b41e cxl_add_dport drivers/cxl/core/cxl_core -EXPORT_SYMBOL arch/powerpc/kvm/kvm 0xfa063a95 kvmppc_core_queue_syscall -EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0x913f1e6d hvcs_get_partner_info -EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0xa73464c7 hvcs_register_connection -EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0xbdf97f58 hvcs_free_connection -EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0xc39c3704 hvcs_free_partner_info -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 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/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 0x0dae716c pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0x1078e73b pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x245fdca9 pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0x258a3269 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x66e4b3f0 pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0x6e804dc9 paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0x6ef8c7a8 pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x8be3b977 pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -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/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 -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x157221c6 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x31cab048 ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x3bcaa77e ipmi_add_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e42cfe3 ipmi_get_smi_info -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 0xc2491cce ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x45d41410 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x4f894951 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x55672e8d st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xa5646279 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x354b4c5d xillybus_find_inode -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x8dbcdc26 xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xdfe82c65 xillybus_cleanup_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x1fe65248 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x9fcb3b69 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xeaaa17de xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x04d7734b atmel_i2c_enqueue -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x19cf89f5 atmel_i2c_probe -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 0xca327c2b atmel_i2c_send_receive -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfaab573f atmel_i2c_init_ecdh_cmd -EXPORT_SYMBOL drivers/firewire/firewire-core 0x011fa802 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x199bce6c fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4764db6d fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x516db8a9 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x69f3575c fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x72af4267 fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x73c5f86f fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7495568a fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0x74d19ca9 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7ccbd1a3 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x88882d54 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8981d8d8 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x97c017b6 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa934ddda fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xad473d5a fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb856630b fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb93035d6 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbd829620 fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbef2df84 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc1b658bf fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc88118d7 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcf347103 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0xdabef4eb fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe868c789 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xec361af3 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf065eab2 fw_core_add_address_handler -EXPORT_SYMBOL drivers/fpga/dfl 0x1471922b dfl_driver_unregister -EXPORT_SYMBOL drivers/fpga/dfl 0x893a1c56 __dfl_driver_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00b776b9 drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0163ba61 drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0211add2 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x028f2bfe drmm_kfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0357c299 drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03bb24fa drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03bbeb1e drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03d74f11 drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x041b92d8 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04ee6a20 drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x059047bf drm_gem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06252540 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x066500fd drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07843c80 drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x091a2695 drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09350075 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09e47f90 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09fe468a drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c00a498 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d35f305 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d656e90 drm_gem_cma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e53d217 drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1043b06b drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x115ca244 drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11cfce17 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1282908e drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x137fe812 drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13d3b178 drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1402783f drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x144db798 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1475b42f drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1627d695 drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1686d9d2 drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x191010bb drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1933df0c drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a0fb665 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a13244c drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a4b99f8 drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a7bfef0 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1aec30e7 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b169e58 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1db85161 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ef11014 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f5ab9cb drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fcd4f71 drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x200ca270 drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x225335f0 drm_atomic_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x237fecb2 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f654d8 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2485ac23 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x256d021e of_drm_get_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25837894 drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25d821ad drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26b8c8ee drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x270bd464 drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28513f77 drm_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28a1e658 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2923c9ca drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a526b3e drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2af3da65 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b13f76e drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c01609b drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c43e8b1 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d0c89be drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d4d8c15 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d9c0ae1 drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2db99274 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f450719 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f69d559 drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f6a6210 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fe6b146 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30537270 drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33088445 drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x356bfd42 drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35a72ef6 drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35e1fd88 drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/drm 0x376e21f3 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x379250e7 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37d85a1a drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x382f7bb8 drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x386bee10 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3888929e drm_gem_cma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39fcd448 drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a64c300 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab141d0 drmm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab7be01 drm_property_create_signed_range -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 0x3b28007e drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c862b1c __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cc24bbb drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d0414dc drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3df479e5 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3edff586 drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f211584 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40188307 drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x404827b9 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x405faa15 drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4167a22c drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42de8ddf drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4363540a drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4370d5f2 drm_flip_work_init -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 0x453ed322 drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4545125e drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4599e0f6 drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x459bab65 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x481889cd drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48fc0f63 drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a3330dd drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a414375 drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a7d75b0 drm_memcpy_from_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ad354d8 drm_bridge_chain_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aef87da drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4afdd387 drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b8839a1 drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c311e91 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c433c42 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c84bec2 drm_hdmi_avi_infoframe_colorspace -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d6bba2e drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e090a2a drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e84126b drm_connector_attach_dp_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4eff9d0e drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fdb5952 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50d3dee0 drm_atomic_get_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51866baa drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51a8111b drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5279d329 drm_prime_sg_to_page_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52b5238d drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53244083 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x534f0aa7 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53b4b39d drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5468f8d5 drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54e1ec41 drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x566ff868 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56b6580e drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0x577d3241 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57d0a260 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x581b7dec drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58bba7b6 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x596ccb5f drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a1fdff0 drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a494fc0 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a83d977 drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5aa4dc97 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5abcb914 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b3813a5 drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c3e06c6 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cb771ce drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd8b3cb drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d405196 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5db53d52 drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5db7f672 drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dd6eb20 drm_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e72a71d drm_client_modeset_commit_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f83d2ee drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fbb44f3 drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x604692c4 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6189ac51 drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63a6e5e0 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x647112bc drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64e367e0 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65a26350 drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67b2569b drm_dev_has_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a416214 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b932f62 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cdf3772 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d00385e drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d02ec36 drm_atomic_set_fence_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d4c8281 drm_of_crtc_port_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e0dd60a __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e321c0b drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6eda4960 drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f73f5a4 drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x707a7c4d drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x713de444 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7164173d drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71d90505 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72383d43 drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x728fcc0f drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72931396 drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x730d2fcf drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73ed6441 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x746a8f80 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75bbf4ca drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x760d978a drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77672078 drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x785d0eaf drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x789bcb4d drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78cb3d3b drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7930f5fd drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79b52827 drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79cebea9 drm_client_modeset_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79dc7eb9 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a1b29e1 drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7aae9f76 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ae240ec drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7af8aad8 drm_gem_fence_array_add_implicit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b213d10 of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b9a6ef8 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c348720 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ceaa62b drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d2cdc78 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dddcb7d drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f140299 drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fbb478a drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80f580a4 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80fd126a drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8147f737 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8205b01b drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8231024c drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82b3a63b drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x834d9bc6 drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83833b95 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x839a110a drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84bf6a07 drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85ae7a6d drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86beccb0 drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87463e81 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88699a52 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x886c179d drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89235963 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8953ee89 drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x897b39d8 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89851425 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a2cf56e drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a7bbfde drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ab96294 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c1ed792 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ccffc5b drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d1df337 drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d6ebd53 drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e11d340 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e8efece drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f966796 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9125d1c3 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9148b384 drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91f38a28 __drmm_add_action_or_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x923a882c drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x932eb6e4 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93669390 drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x937787c1 drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9392536b drm_atomic_bridge_chain_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94c4d6a6 drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x953a7ce5 drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x954241d1 drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96221476 drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9666a147 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96aea3c9 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96b3186a drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x973938aa __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9847c256 drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98794369 drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x997690da drm_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99854dd2 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99892524 drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x998b4eb4 __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x999f855c drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a4f7f10 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a8773b1 drm_plane_enable_fb_damage_clips -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 0x9ba067ef drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d953271 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e81ddc0 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ebba417 drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2216645 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa360cf52 drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa36aa984 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa385a76e drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4b973fa drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4c8c407 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4e40ea8 drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5f8cb68 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6d95805 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7250c75 drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8654dc6 drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8b154ec drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9db5847 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa41b7d8 drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaabf48c8 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaaf8359a drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab2fdecd drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac07896d drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad3109b5 __drmm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadca3896 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadded19c drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaec02e79 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf05ee4d drm_connector_attach_hdr_output_metadata_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb03dfc97 drm_bridge_remove -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 0xb11ac7a7 __drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1584cad drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2027869 drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb387c752 drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3d41d9f drm_panel_disable -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 0xb6042cc7 drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6a7d098 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb80e917e drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb81ca870 drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb84b8b63 drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb911da20 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9720273 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba009019 drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb350da5 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc512f37 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbce7b167 drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdb1ffaf drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdfb8741 drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe0a632c drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf344f2c drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf44c703 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfc8f5fd drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0031070 drm_crtc_vblank_helper_get_vblank_timestamp_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc14d0e5e drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1862545 drm_vblank_work_schedule -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc254c360 drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2d2afe5 drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2ee652d drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3678726 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc375ef00 drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc40346ee drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4291107 drm_panel_of_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4c21149 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5014df9 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc640f6d9 drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7738823 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7849663 __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7b4a97a drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc99ac26f __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca673854 drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca9a6971 drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaeef458 drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcba80656 drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc42b6a3 drm_crtc_vblank_helper_get_vblank_timestamp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc7559ef drm_hdmi_avi_infoframe_bars -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc4731f drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccea45dc drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdd9c6fe drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf313c53 drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcff675ad drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd38a2746 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3a2ea4d drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3bc4d3d drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd56a677e drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5b580f2 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5ca2177 drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6ab1e03 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7fa046b drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd84454d2 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8e4f5d9 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9421a80 drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc02d28c drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdca9c7d7 drm_connector_attach_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcf4a377 drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd0a2c9c drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd671fc8 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd8fbc3e drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde4aed3a drm_add_override_edid_modes -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 0xdf96c608 drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe198cf51 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2f9af63 drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3d4a049 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe542a045 drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6e01800 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe70b81a3 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7e429cd drm_connector_set_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8daa2db drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9b1628d drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9ff4eb3 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeab313a7 drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec0c9d97 drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec6bfd60 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec75707e drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec995a07 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed047cc4 drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed4e67f2 drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed5a6ca0 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed7f0e56 drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xedcb8850 drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee6d26c6 drm_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeefb18dd drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef46e021 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef547282 drm_plane_get_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0b6d00f drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1040f07 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1e0cf0a drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2b36848 drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2ed7b42 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf35c085b drm_gem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3b2e155 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf405f15a drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4ecd335 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5778745 drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5930f4a drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf59814ba drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5bd777a drm_crtc_commit_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6748220 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf774e913 drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf93e13a8 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa20136c drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaf0eb5b drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb799ef6 devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbc84b5e drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd058514 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd6f2d87 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffd179bf drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x010aacc6 drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c7b0fd __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0404b681 drm_dp_pcon_convert_rgb_to_ycbcr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04b20c4a drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06f50fa7 drm_gem_fb_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x074b249f drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x082602dd drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09d56fe7 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0aa0dcb6 drm_dp_get_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c5db7d5 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c875661 drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e4eca2c drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ee01321 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x130db12f drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x134072c2 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16eceb82 drm_fb_helper_cfb_copyarea -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 0x1943ec7c drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1985ab4c drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ae81455 drm_fb_helper_lastclose -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 0x1b12fb64 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b7457bc drm_dp_read_dpcd_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1be4b954 drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fea80b4 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ff5e8e6 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x208a4017 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21a761e8 drm_edp_backlight_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21da8b50 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21f1c507 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23961837 drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23f09fa6 drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2403e441 drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24dd8a87 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2747a23d drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28410ac3 devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29acffe9 drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b622d36 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d38cec7 drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fd44611 drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30249ed3 drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35475083 drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35670ad3 drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35c73e7e drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3825c2d5 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3934d9ad __drmm_simple_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a0ae155 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ad2187a drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3add59f5 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b5b60c9 drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b767536 drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bbd93b2 drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c1da424 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3dd3d742 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e6f7bc3 drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f63411f drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fb3e187 drm_dp_downstream_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x401003f9 drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40d2e6fc drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40f3140a drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x411a02fa drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41f5de2d drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x421ee734 drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4402735f drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x442c3ab2 drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4481b64a drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x456d338f drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45c5991c drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45dfa3e2 drm_dp_pcon_pps_override_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46334de9 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48d68df3 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49002183 drm_dp_vsc_sdp_log -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4981ac45 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4acf2b54 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b0c8114 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b4bc1a2 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5008fd88 drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x508ac35a drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52b79bc2 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x536ef1d7 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537b8893 drm_fb_blit_rect_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x539853ec drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53c47152 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54732812 drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5591860b drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56a663e9 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57726864 drm_dp_read_sink_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58379fb2 __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58c4f227 drm_dp_pcon_reset_frl_config -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 0x5b306148 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b9d8cf3 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bbc65af drm_dp_set_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c43a216 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c581799 drm_panel_dp_aux_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ffb3354 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60391e8f drm_atomic_helper_commit_duplicated_state -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 0x648dfd7e drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64f0eef7 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64f6bba9 drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64fed18b drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6565c479 drm_dp_mst_atomic_enable_dsc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6645b04a drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66bf327c drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68303e78 __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x683c32ac drm_dp_read_sink_count_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6850af67 drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68d8dce7 drm_dp_downstream_is_tmds -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6969b49b __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6988dfde drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x699ea9f9 drm_atomic_helper_set_config -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 0x6da519d4 drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7004d0a1 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7159934c __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72009751 drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72e55830 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x749a43ac drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7500a8d8 drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7513072c drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x757c17a2 drm_atomic_helper_commit_cleanup_done -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 0x77008265 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77a24313 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77b9a03c drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7924fe88 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae669d0 drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c0cb8b2 drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cbe2f6e drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ece3f4f drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f1bfdd6 drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fbd7ae1 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7feba718 drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80011c19 drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80e181f6 drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81783f16 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81eb3ed0 drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x829b6048 drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82cb5362 drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x832f20c5 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8527fb0c drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85296ef5 __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86ca6cc4 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x873578de drm_atomic_helper_bridge_propagate_bus_fmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8832e9be drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894b1f57 drm_dp_get_adjust_request_post_cursor -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89820b8b drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8990092e drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89d100ba drm_fb_xrgb8888_to_rgb888_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bff7694 drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cb58201 drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cb94827 drm_gem_simple_kms_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e5e6073 drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e6f341c drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f23993d __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f876021 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x907943f3 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90c6dc20 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x916f841f drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9223a23c drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x932bb9e0 drm_edp_backlight_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x934307b5 drm_gem_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93e612e7 drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97d61ca9 drm_dp_set_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98173b61 drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98803a28 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x989c38fa drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98a34f84 drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98fe19ac drm_dp_pcon_frl_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x997fc6cf drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99ac63fc drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a9f3dcd drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c42c896 drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cc8eb46 drm_dp_pcon_hdmi_frl_link_error_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f6dc9eb drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f8dc891 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa138fcfa drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1b4b214 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa36f6521 drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4cfae4a drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa56ef015 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa79d2ef6 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa833174a __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa843606e drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9c3b933 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9db1a14 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaae8481f drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabb0ee73 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac6b6260 drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad5205ab drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadce66e4 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae093a5c drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae54d2a4 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf116e9c drm_gem_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf60e640 drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2bc5196 drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb30b0f83 drm_dp_remote_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3cd1393 __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3fc93da drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7336c2d __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb761b02e drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7668b21 drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7d65291 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb820eedb drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb94b7ba7 drm_gem_simple_kms_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba20ebca drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc6c38fa __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd5d647d drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbed320c4 drm_dp_send_query_stream_enc_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbedfcff8 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf6ad26d drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc216553b __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc795a2d9 drm_atomic_helper_duplicate_state -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 0xc8f04e73 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca9ef3ec drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb42fb21 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc87d9ed drm_dp_pcon_pps_default -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccee5700 drm_dp_pcon_frl_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd0e66ca drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd870281 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfd178e2 drm_edp_backlight_set_level -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0d8276a drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1e28117 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd233631b drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3c15509 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd65076e9 drm_dp_atomic_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6b2c275 drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd77de51f drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd97ca9cc __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd99574f4 drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9eb5d60 devm_drm_of_get_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9ed4ebc drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda50eae5 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdaf68cac drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb4cef93 drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc3d8ca7 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddc8dff8 drm_dp_lttpr_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe01cf428 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1059a1f drm_gem_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1ce5219 drm_dp_read_downstream_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe32cec96 __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe33dcc88 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe570a2e1 drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5fd59da drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6185204 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6cabe8e drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6f06f86 drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe75bb3b4 drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7d5eb67 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9208ec1 drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9d488d6 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb112b43 __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb32a6e5 drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb640a2d drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed8eb29f drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef526535 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf03b816a devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf144a430 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf15e0d8e drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2407c94 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf52b9729 drm_primary_helper_funcs -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 0xf727422c drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7bcf476 drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8119e8e drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8737b2c drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfaff45f0 drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb7db8f6 drm_dp_pcon_pps_override_param -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdcf3bf8 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe94b4a5 drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfecfc44a drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff4e0949 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0d7e76a2 mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x26aceb7a mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x27c16615 mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x41cb43b2 mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x622843b9 mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x693ba679 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x778f93f6 mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x78a34377 mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7c4c8bd8 mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9203f172 mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9df483d2 mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa336552d mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xba6a0bd0 mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd4141e39 mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xfd8c3238 mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xfdbd9b38 mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xfed8dc9b mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_panel_orientation_quirks 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x037b7fda drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x3bcdab5c drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x50600217 drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x6100111b drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x940127b3 drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0226e6ab drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x125c8e7c drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x230fed27 drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x299337fa drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x67ec3baf drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6a099fe1 drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6bac843e drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8e8da39f drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9316a803 drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa71e5071 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbc2d7cb3 drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd2a2cbcc drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd98e7fcb drm_gem_vram_plane_helper_prepare_fb -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 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 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 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 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 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 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 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 -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x15521136 ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x184e4298 ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x184faf6b ttm_range_man_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2671e2a2 ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x26bcce07 ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3064f75a ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x30bf0f11 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x377b0e6c ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3d786f2a ttm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x426cb2ef ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x44b58358 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4bb0b377 ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d37f0d0 ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4faa91a9 ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5133e2df ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x53f36dca ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x54149cb6 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x54b28a38 ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x58382244 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ad8f52b ttm_range_man_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b911409 ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5d7d9f07 ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6123fc63 ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61af6c82 ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x65d8a4f0 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6da5554d ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x72994045 ttm_pool_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f21765e ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c9b421c ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x915caa00 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x91eb3dfc ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa42ba19c ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa53376b8 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa9ab5592 ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaa173299 ttm_agp_destroy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xab9964ea ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb05d2327 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb688c30e ttm_global_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb909e0b0 ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbffb2c25 ttm_agp_is_bound -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2327d96 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd3865fe8 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd95b58e0 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdb6aee8a ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde556d54 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeaa336a1 ttm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeebd72ee ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xefbea9ab ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf0a65100 ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf0eab891 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf1554c34 ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf65ae574 ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfa84b2dc ttm_tt_destroy_common -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfb504dab ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfcb54f38 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/hid/hid 0x4d2a2fe0 hid_bus_type -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x787d360e i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xc08ecfa2 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xf2440b09 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x59419e20 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x8f650681 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x7dacda91 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x6613c61b bma400_probe -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xb5c6c424 bma400_regmap_config -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xf9d553cc bma400_remove -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x7e9e8ee3 kxsd9_dev_pm_ops -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xc06fe0f1 kxsd9_common_probe -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xd2d02aa8 kxsd9_common_remove -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x37b07986 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4de28f9e mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x51451f23 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6372c54c mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6893d788 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7215ca0e mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb5098724 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbf413721 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc2048f20 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc42c199a mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc4f8e429 mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc73f1fae mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdea38bc3 mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe5a3971c mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe9c07c30 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf2bb3157 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x084f39ef st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x3620c612 st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x71f44901 st_accel_get_settings -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x12402a0a qcom_vadc_scale -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x47f699dd qcom_adc5_decimation_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x4e64cdb9 qcom_adc5_hw_settle_time_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x53546ecd qcom_adc5_avg_samples_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xc61e7a34 qcom_adc5_prescaling_from_dt -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xb2bb7aff iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xda674c22 iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xe650be87 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xfbfa79ff iio_kfifo_free -EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x5769fda1 bme680_regmap_config -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x1041b5be scd30_probe -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x29a50a7f scd30_suspend -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xdff086f1 scd30_resume -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x03773990 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x47337278 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4ba1a66a ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x648e4494 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x92841a80 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xacb87484 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe56164f0 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe81c316d ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xec98b5f9 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x1a39434a ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x1e763042 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x744291be ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xa2b4e8e4 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xa9cf8612 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x0bf927a0 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x4edf8b6d ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xb8eed773 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0a0073ac st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x189341af st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x18dfe601 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1d63cc56 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x35f0ced3 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x370e5a02 st_sensors_get_settings_index -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x588fcd9d st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x632d6066 st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x77bbade3 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7bd036ba st_sensors_dev_name_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7dbdcbd1 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa573f0c1 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb41c0e66 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc761edfc st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcb7048b0 st_sensors_verify_id -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdcbc3099 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdf2f82ce st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfdd838bc st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x3c7aade0 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x08a1440f st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x9dacaecb mpu3050_common_probe -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xb940b7d9 mpu3050_dev_pm_ops -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xf93d7e8d mpu3050_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x80190aea st_gyro_get_settings -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x9a961f50 st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xe53971bd st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x3705a3a4 hts221_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0xf11b5d52 hts221_pm_ops -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x462ee1df bmi160_regmap_config -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x28ba91f6 fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xb3d532de st_lsm6dsx_pm_ops -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xc158a46a st_lsm6dsx_probe -EXPORT_SYMBOL drivers/iio/industrialio 0x13c08e99 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x1781519c iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bdb6b __iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0x41c57b5d iio_device_get_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x44a1b7db iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x5167f68f iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x557b0ebe iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x58c98cf2 iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0x5f4cf244 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x680ebc4d iio_get_time_res -EXPORT_SYMBOL drivers/iio/industrialio 0x6deed8b3 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x84d76193 iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0x8b224670 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x94035deb iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x9404d7d3 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0xa3d36a52 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0xaca393a8 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0xb20cfd26 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xb3d6d1a1 __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0xcab752ef iio_device_set_clock -EXPORT_SYMBOL drivers/iio/industrialio 0xcdad7ea0 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0xde165fc0 iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xde9bb9ec iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x4709d836 iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x8b6871f6 iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x90d830cf iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xc2e6e4eb iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xedaa03f1 iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x823b7167 iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xa6b524d5 iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc8ddf864 iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xe9381c60 iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x6ccf4347 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xdb2c4dda iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x7e3de63e st_uvis25_probe -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xe96828d7 st_uvis25_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x132a1f6a bmc150_magn_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x141d52f2 bmc150_magn_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xb76a19c6 bmc150_magn_remove -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xd818b70c bmc150_magn_regmap_config -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x2d43a2a2 hmc5843_common_suspend -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x52433d5c hmc5843_common_resume -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x6825ad16 hmc5843_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xba83d217 hmc5843_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x06927b39 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x11edc14b st_magn_get_settings -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xd1cbac25 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x12384b05 bmp280_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x70f686c8 bmp180_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x9a705baa bmp280_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xe952c230 bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x62304d47 ms5611_probe -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 0x0f59edf6 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x15a69343 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x162fd0a5 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x20e2e8dd ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x24291b8a ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x29ac0530 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x314c018a ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x340b42e9 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4010b5dc ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6d1c37c2 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x70c087d7 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x89791429 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8c2df5aa ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdda93d86 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe76128ea ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0003c2f2 ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x005f3a13 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02564e9a ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03616258 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04ffd76f ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05bd2f10 ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x074cd5ac ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08ea066e rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x091eea49 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a4b89cf rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b0ce29b rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b6d69fc ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0cc52776 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d6c2c99 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0df6ef2f ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10a954e7 ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11c6f697 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1221b39f rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1398caea ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13df7339 rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1aabbace ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1aee120c rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1afe0f2b _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ebe547c ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ff62d6e rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ff75604 rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x218a044c rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x225d17d0 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22930add ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24309b4f ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x258907f5 rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2597a6a4 rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26d9da1b rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x279d853d ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b700048 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cee5e4d rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cf69454 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed84703 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3115a0d4 rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35a90427 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36fd6261 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x380b0f45 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3858344a ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3897e34b __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39335187 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39c45680 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39cf94fa ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3aa2b56f ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bf09014 rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c1a7bfd ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d57eace ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e6be62d ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f7ed53a ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fa1580d __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fb01850 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40a5f37a ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4425f3d9 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x466ed2c8 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47c0a43c ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47e14bea ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49cb8d1a rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a65ba3f rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b844984 ib_device_get_by_netdev -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 0x4f4cd2c4 ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fbcdfe9 rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54305e1d ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5562b0bb rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5645a067 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5725b35f rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5788751e ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59010d65 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a5367d0 rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c0ea64d ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d25bcd1 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5df00271 rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e7ab4fc __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f4583be rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f786cbf rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6069493d ib_set_vf_link_state -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 0x62033a46 ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62555b1d rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62ef1327 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6480c305 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6770c922 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a14d262 ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6aac8e6d rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c946ba2 rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fa3ab36 ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ff6f297 rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x724f4020 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74733f4b ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75720c27 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a5c675e rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cb0ab0e ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x807df53f ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80add9ea rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80d99901 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8248ab26 ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8317bf47 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85fba72c ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x874bdf7f ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89380006 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x897b8abd ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a199405 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d1a6723 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8dd05f7b ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f1680a5 rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9198f538 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x929d486a ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x943d03a5 ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95919866 ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96344aba ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x975ff2b9 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bf1b8bb rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c15010c ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cbd8288 ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ce5f11b ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9dcba1a1 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e27ba47 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e80b94c ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0b98d33 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0f79cfc ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1c163b1 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2bb6104 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa444bd26 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4bb322c ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4ec1b71 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa547d77 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabde53d8 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae4ac2fb ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaef2503f ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb07c3a86 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb103328a ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb188f52d ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1e0b829 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb31a4bcb ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4fc693b rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8458cc7 rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8fb237b ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9a394e6 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcee5365 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd2c93f2 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc078a856 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0d83784 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3c778ce ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5636b3b rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6c47b30 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc87aaf7c ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9c91f54 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9e52f31 rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccf3aa86 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce8bca6b rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce937c5f ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfcea101 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd16cb207 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3f46e74 rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3fe9612 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7789e70 rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc1c93ab rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xddde2f60 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0a2675e rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe25534cc ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4837b99 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4c9826e rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe53ea2ff rdma_rw_mr_factor -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 0xe7a6cf5c ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7d914cc ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7e9cb98 rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeab2ef9b rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb1cdbda rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed57f875 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee9285ea ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefcef2e0 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefe1c446 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0cd379c ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf17562e6 ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3568f8c ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3d713ed rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5f5652b ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7089c2f rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf970b3cb ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa0649c4 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa722d10 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa85f42d ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdf96ef4 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe6a5063 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff89a76c rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff8a0cc8 rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x00a0d5dc ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x03a8b042 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x03e64156 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x118fa2a7 _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x122c9cd8 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1588fd56 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x20de85ba ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2b261519 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2d41beb4 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3358fddd _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x377fc362 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4dfaa8ff flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4e1eb989 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x644b9128 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6485e396 uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7a003f92 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7d16ec0c ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7d6a0764 uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7ec2e194 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7f185eab ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8059f563 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8fe3e396 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x920699d1 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaedfd679 ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaf2a6205 uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb01f2adb 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 0xbe9f1292 ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd025a126 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdfc533a7 ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe213db58 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe366310c uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xedce0f8c uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf3f51b97 ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf5d0ee25 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf79e0501 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfa339f6c ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1fc293e2 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3468a434 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x432306d9 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x487b4680 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5dc11028 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x66c01dab iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xae1ad403 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc72b42ee iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x00a76b30 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x18fab8c4 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1bc880d1 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x225e5e16 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x25a93d43 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2977f102 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2a41db38 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2e6c393b rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x38bf7fde rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3a6e8c98 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x41ad5214 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4946c425 __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x52ac1ac3 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x60478c90 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x635197f5 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6467f825 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x64e7e148 rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x747d3ac9 rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7edc9187 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8284627d rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9d91f5b4 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa80bd2d2 rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa84a76e8 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xac0999ef rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xac69fdff rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb1f011b7 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb76f7e7d rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbfbb799c rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdf2de04c rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xebf37e96 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xee5209bc rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf2393da7 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf34f57ad rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf5967684 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x1760c3c1 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x483fb557 rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x5009a28e rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xc3e2985e rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xc5540842 rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf62a7617 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf9bdfc3c rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x438cf8a8 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 0x6886db20 rtrs_ib_dev_put -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x76d98e6d rtrs_rdma_dev_pd_deinit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x7f479ac5 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 0x0fa1ec69 rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x591d6dde rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x5fd8fb60 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x8e393660 rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9fbaa64e rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xce317e16 rtrs_srv_get_queue_depth -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 -EXPORT_SYMBOL drivers/input/gameport/gameport 0x92c65294 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x9347dffb gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0xa600ef39 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xa7de4d03 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xcfbb7bc1 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xf0b483e1 gameport_set_phys -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x6abc6722 iforce_process_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xb6ba5bdd iforce_send_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xc30b5a52 iforce_init_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x1d73eea8 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x1bccfdfb ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0x513e70fe ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x61aa2e70 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xb3c521d8 cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x3f76895c rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x0131ac0b sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x12b44bfa sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x6c58c239 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xa0df0d40 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xbca1d268 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x25e502f4 ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x36ebb6ce ad7879_probe -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x259f1744 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5711f130 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9cce4dee detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaaf25096 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf3f3da92 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x27c58fd5 isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x4644eea5 isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x5b835a58 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0xef4ee223 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 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/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x226a3527 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 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 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x58e216c8 mISDN_unregister_device -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 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 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_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x15e9fdae ti_lmu_common_get_brt_res -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x17032c9c 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 0x980ac9d7 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0xa5b39370 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0xd9a43cf4 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0xdae3f9af dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x4459faaa dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x82bfe5a5 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x8fcc8301 dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0xa245df36 dm_exception_store_type_register -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/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 -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2a84daea cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0x474e2ee7 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0x8242e006 cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0xb2b9efb7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cypress_firmware 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/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 -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 0x432c29cb vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x59e53dca vb2_verify_memory_type -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-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 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 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x66a68864 dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x66bd7694 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x67c93c54 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6ab6aac6 dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6ef5628b dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6fa353a7 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70e92b05 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x788bd78e dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x81488249 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x82878c35 dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8327513c dvb_register_device -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 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 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb5a3524f dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbc05d026 dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbf7f538b dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc6d8969c dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xce748c8d dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcfa7584d dvb_ca_en50221_release -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/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 -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6f948583 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8127f3bd au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd1849333 au8522_readreg -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/cx24113 0x006af237 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x734e95c8 cx24123_get_tuner_i2c_adapter -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 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb66d9154 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0a78f889 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x366b3cdc dib0090_get_tune_state -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 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 -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 0xf2d99832 dib0090_set_switch -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 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 0x790d9893 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xacd88b82 dib7000m_pid_filter_ctrl -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 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2a6d144e dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x30196b4c dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5ded8b90 dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6bb57cff dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7c28e454 dib9000_get_i2c_master -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 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/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/lgs8gl5 0x4402888a lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0xc807fe7c lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xb5020d57 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x937e0026 s5h1420_get_tuner_i2c_adapter -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/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/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 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd8fb9180 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xda08b291 bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x27b705f2 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x57573946 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x84b8d888 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0171db3d dst_error_bailout -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 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/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/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xbd2ab821 altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x671147dc cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7c2a3bb8 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x84f19863 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc0902f7a cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc39db7f5 cx25821_riscmem_alloc -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/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 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/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 -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x39c62a5d ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x401eff19 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4996243f ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5a922634 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5fd5805d ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7ee6dfdf ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x96239da2 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9f473ad7 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xae2e11a0 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xafe4c725 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbe2299e4 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbfa1f3ac ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc08b5cc7 ivtv_vapi -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 0x4e418c3a saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5b90ed0f saa7134_pgtable_free -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/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 -EXPORT_SYMBOL drivers/media/radio/tea575x 0x7a5b8321 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xb9e5b00b snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xcbab7fea snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0xcc400591 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl -EXPORT_SYMBOL drivers/media/rc/rc-core 0x3d155a27 ir_raw_handler_register -EXPORT_SYMBOL drivers/media/rc/rc-core 0x5e46249d ir_raw_handler_unregister -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/fc0013 0xc8d7205c fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xeabf5c08 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x6088d1d0 xc2028_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/dvb-usb 0x8b6f5395 dvb_usb_get_hexline -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-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/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 -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x39abd21e go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5458c893 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7d120b4b go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb4bc99d2 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc2ffd1c6 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe9822259 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf0793cf7 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf98d77b4 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0daac9ee gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1ef222ec gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x355ee19f gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x420cd1a4 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8ea4afa1 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xbbd6601b gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xbe327c8a gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xeaad94b1 gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x900cf883 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x9870a34e tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xdbca955a tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x04219096 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x2fe6915c ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x0322b952 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x347c2a8a v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xaf4fde5a v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xca300458 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xdd91eda6 v4l2_async_subdev_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xf8fe1410 v4l2_async_notifier_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x36bb57fa v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x4cea4a12 v4l2_m2m_buf_done_and_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x7d1fd650 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xac6d2fab v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0346bdb1 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0c86e97a __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x10ab6205 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1316007f v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x155e43ee v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1dd7a594 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x22d22483 v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2592a977 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x26360e20 __v4l2_ctrl_s_ctrl_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2b5c8288 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2f26bad1 v4l2_ctrl_new_std_compound -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 0x34a4568a video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x350c4064 v4l2_ctrl_auto_cluster -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 0x3fbbb36f v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x419d4592 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4821fc0d v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x53ab27c5 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5ed4a41e v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5ef27fcb v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x63084d1f __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6bd0624a v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e8cf4fe video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6fdd2959 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x71051134 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73e4530c v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x793d9f9c __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x79f0f291 v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7dea7549 v4l2_ctrl_new_fwnode_properties -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ffde39a video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x80899b17 v4l2_ctrl_handler_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 0x8b2cc0d9 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x900f4632 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x904e35ad v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x97e77903 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99e76d4b video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa22d30bb v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xab5e2680 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xab79e165 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb46759b5 v4l2_ctrl_new_std -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 0xbe860139 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc90c3f9c v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xca7108f1 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd21b95d6 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd28ff0f2 v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc7e0128 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe4ce7169 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8e913c4 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xebddc620 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed0b1572 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf1af98a7 v4l2_ctrl_new_std_menu -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 0xf84971c1 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfb59e593 v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/memstick/core/memstick 0x0b40dbfc memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x236b0c3b memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x2aa5b840 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x35961382 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x39d5c9d5 memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5c019f3a memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8cef8e0e memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8d52d610 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xaef2543d memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb1bf1bdf memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb2357570 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xce070fda memstick_next_req -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x052f78c0 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0dbeda0f mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1dbb0d27 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1f29b89c mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2b12b03a mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2c07a7bc mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x33b08a4d mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x421d343c mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x43f98549 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x49bad889 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4a817b16 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4a928a00 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4dd3711a mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x641116d5 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6910d79e mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6b55738d mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7496ecec mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7e18e653 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x82b03f8e mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8b461e13 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8c6ccf78 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8cb71c5d mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8f9c8796 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa9284d35 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb7e04e9a mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc8a8f969 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc9907e32 mpt_detach -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 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 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 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/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 -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0dfbd062 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x10e90c78 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4e1cd985 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5a6041c3 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x719fad3f mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8f389b3f mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xaa4acbb7 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc2317448 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc9e8daba mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfcc2a5bb 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 0x07c195ef wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0x5b7b6153 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x6941daca wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x804b5be5 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0x9b1f82d3 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xf623d8e7 wm1811_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x237f2b54 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xfc3684be ad_dpot_probe -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x06191ebe c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0x4504eeb4 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x166580b8 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x3973f01b tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0x4f4322b2 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x5b4126a6 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x6600962b tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x6a954cbf tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x8c8c1a0a tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x8dec9c30 tifm_alloc_device -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/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 -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x50aaaccb cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8b176f93 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xbe7f6c50 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd03c6b0b cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd228b6be cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xeebb1c05 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x14187174 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x3ba503f9 map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x7e3bccc9 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xe70e4230 do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xf7e09b68 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x5ce38045 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xac45b1b3 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x62165cb7 mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0xc6228994 mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0dd4c3b7 nand_ecc_prepare_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x19f9b9a7 nand_ecc_finish_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x1fafa553 nand_ecc_sw_hamming_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x28948ef1 nand_ecc_get_on_die_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x29222ec2 nand_ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3b661463 nand_ecc_sw_bch_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x427f0fc5 nand_ecc_is_strong_enough -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x72e8278e nand_ecc_sw_hamming_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xaed412dd nand_ecc_sw_bch_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb1c698a6 nand_ecc_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xbd840049 nand_ecc_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc805f841 nand_ecc_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd67aeb2e nand_ecc_sw_hamming_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xdde8429c nand_ecc_get_sw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe955d2ba nand_ecc_sw_bch_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe9ad85f8 of_get_nand_ecc_user_config -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf116bea6 nand_ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xffe1af63 nand_ecc_sw_bch_get_engine -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x81a3ab7b onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xf4c8c2b0 flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x392c6c49 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xc6e6b5b8 denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x115f3f9b nand_get_set_features_notsupp -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x28888291 rawnand_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x2eefa382 rawnand_sw_hamming_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3187515d nand_monolithic_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x38e2cb21 nand_scan_with_ids -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3e197d14 nand_read_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4863e6a9 rawnand_dt_parse_gpio_cs -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4ddaa291 nand_create_bbt -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4ea942d6 rawnand_sw_bch_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x6e5a9c59 rawnand_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x895354e9 nand_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xcf6ae468 rawnand_sw_hamming_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd9831e84 nand_monolithic_write_page_raw -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 0x095fd999 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1a10bdab arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1ced5e4e arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4d378164 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5caf06cb arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x88952b55 free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x92235532 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa05ffe0e arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb8b0553a arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xda1a8e35 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe8a9f01e arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -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 0x04f98015 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x07352cfd b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2aa38915 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2afdcf4c b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2e59a72b b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x314cb684 b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x327ac285 b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x34551950 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x44c265f7 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x45df1611 b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4b0b5760 b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4bff1212 b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x63895810 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x63beb9c5 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6b168fb1 b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x739688d6 b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x852acd22 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x85f244d7 b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9a5ff154 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9d1b8423 b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa93e6f0a b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xab7ddf22 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xac205853 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb1232366 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb56fe153 b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbac9a85f b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbb0c18fa b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc1052892 b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc166ac4f b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcc368a92 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcea8434b b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd0896c1d b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd7049c2f b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe0446a6a b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe41e7b55 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe4549924 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe485c770 b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xed7ce8a4 b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfa900e51 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfe29fb6f b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xff639a4c b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x19c86442 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x73143ddf b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x7ad63aea b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xaa5402e6 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xbd29a2b9 b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xc7e417df b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x1ac1fb19 lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x9f332f48 lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xd22a3a87 lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0xb7a6b95d ksz8_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x5bdbafc1 ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xa30a7360 ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xd67a3038 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xedafe939 ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x0823b0d1 vsc73xx_probe -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xb4bb19d1 vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xe61cd6dc vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x1a27bf8b 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 0x9db2623c xrs700x_switch_remove -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xa576dff4 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 0xbfbbdaf6 xrs700x_switch_register -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0cb48a18 ei_poll -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 0x1f9cb514 bnxt_ulp_probe -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xeac5eb1a 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 -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x34eeb48a bgx_set_dmac_cam_filter -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x46cdf933 bgx_config_timestamping -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x539ca253 bgx_get_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x60cd1f2f bgx_lmac_get_pfc -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6ca2152d bgx_lmac_set_pfc -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x716fd7f0 bgx_reset_xcast_mode -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x72b238e4 bgx_get_rx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xbe654297 bgx_get_tx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xd8ed0bcc bgx_set_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state -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 0x130c6898 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x181907e8 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1fd9e784 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2eae2799 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5342a4b5 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x642285fc cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x64c977a6 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x87831e6e cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8c572215 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x93319a59 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9bb9b348 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa5b4a9fa t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaf014102 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd06c885c cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xda3d4882 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdc7d234d t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x015f0760 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x04284ab6 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x087ebb77 cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x10735a8d cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1af7c6b5 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1d6809a0 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x21c2d2d1 cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x308bc413 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3a52092b t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3d3aa65e cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4641f91f cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4c44e945 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x527f35c7 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x667e9543 cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66e84541 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x67281fff cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6b948422 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6f9631e3 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x73a52100 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7482e367 cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fa8e0b3 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x85d8fb1f cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9497ae9f cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9b84fabc cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9d0a7ba0 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9db00e86 cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa75c9e77 cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa9cfaa2c cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb2bdbf09 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb6efea20 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb8fb347b cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc0ac3e8b cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc3d89cc3 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd4f4e7f3 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd586e5b8 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd7df28c1 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xda54813f cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdd93926e cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdffd46e7 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe19e3728 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe6d88280 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xea459f7c cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xecebe22c cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf116a634 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf1fb0fde cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf8fa1802 cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfa59d4be cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x13a701ee cxgb_find_route6 -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 0x5c053978 cxgb_find_route -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 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/emulex/benet/be2net 0x23ae37dd be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x89e0c03a be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x9720ce96 enetc_ierb_register_pf -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x4f631172 iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xc5811b53 iavf_unregister_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/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 0x000f706a mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x046bc37a mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06184089 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0771976c mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0984180d mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d3c1ad2 mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11eca4b2 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1227ca76 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15836449 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x171eded0 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17b158a0 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17e7b374 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19b3a6f8 mlx5_core_query_sq -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 0x23cc532a mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25f44a40 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3282347b mlx5_eq_destroy_generic -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 0x33fd7030 mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34650516 mlx5_core_roce_gid_set -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 0x360b890e mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x367bc011 __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a0ff793 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3aec50af mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47773aec mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b1f372b mlx5_create_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54fc3557 mlx5_comp_vectors_count -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 0x559db57b mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bab2154 mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e67dbe5 mlx5_notifier_register -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 0x61492bb7 mlx5_rl_are_equal -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 0x66b56598 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66edf25e mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6726dfda mlx5_eswitch_add_send_to_vport_rule -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 0x690927ad mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6957e79c mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69e24d3a mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a2b47f5 mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a4161d7 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b053064 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bd73eae mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70d9ee7c mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7148b98a mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7261330b __SCK__tp_func_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x742df4c2 mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78a324c9 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a345379 mlx5_packet_reformat_dealloc -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 0x7cbe7e5c mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d37e50e mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e27c184 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f95f1ee __traceiter_mlx5_fs_set_fte -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 0x824f435b mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x828ace9b mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82b7f696 mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8459514d mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86c0f1dd mlx5_fpga_mem_write -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 0x88e983d6 mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89e68ae3 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8dc241f3 mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fa31e65 mlx5_eswitch_vport_match_metadata_enabled -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 0x93ed1367 mlx5_fs_add_rx_underlay_qpn -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 0x96ae399b mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98edd256 __traceiter_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a077544 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cae811a mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d6135dc __SCK__tp_func_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ff31da9 mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0dae726 __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa14d25bb mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa18deace mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1922985 mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1d3494a mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4e8612e mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa58258cf mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa013d72 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xada40698 mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadf562d4 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaff5ffc6 mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb165f244 mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1ec0540 mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2470e07 mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4da7a43 mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb56dfa04 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb56f0d28 mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb618418c mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6f2be2c mlx5_lag_get_peer_mdev -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 0xb99e9701 mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9db2f69 mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb475e47 __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbdbe7449 mlx5_core_modify_tis -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 0xbfef4cb7 mlx5_eq_enable -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 0xc48c16b1 mlx5_put_uars_page -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 0xc8ae8ff1 mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfacd046 mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd02afdfc mlx5_modify_header_dealloc -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 0xd2450bbe mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd302a10c mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4e24845 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd53f49f8 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6c3be3d __tracepoint_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7a858ae mlx5_eswitch_uplink_get_proto_dev -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 0xde70c17a mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0516dc7 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2a4fd41 mlx5_cmd_exec_polling -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 0xe530f46a mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe591f9cd mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe84afc99 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea56a406 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb87d6a3 mlx5_cmd_init_async_ctx -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 0xebb6b143 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedcc2558 mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee2c405a mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf162fb3a mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1f8c183 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2bcdf9b mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3071c8f mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4a2c7fa mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf53172a1 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6fcfaff mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf79d1ef5 mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf839b97b mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf84ec269 mlx5_rdma_rn_get_params -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 0xf8f50522 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfaf5c9e8 mlx5_lag_is_sriov -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 0xfda35117 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfed9182c mlx5_core_modify_sq -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/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 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 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 0x4a6ed376 mlxsw_core_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b0bae55 mlxsw_core_kvd_sizes_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a099407 mlxsw_afa_block_append_qos_dscp -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ae92a69 mlxsw_afa_create -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 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 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 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 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 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 0xe63cc8ba mlxsw_core_port_eth_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 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 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 0x01084b35 ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x02afaef5 ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08498da3 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0b2eaada ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0d6b88fa ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e69dcb8 ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x100558e6 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x142c1249 ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1a53989a ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d3ba4b7 ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d76fe98 ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x219fb530 ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x24ef8ff2 ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x26b75b3f ocelot_sb_occ_tc_port_bind_get -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 0x2aad3662 ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x326c0fad ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x37a93181 ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4079174d ocelot_apply_bridge_fwd_mask -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x48d2c7bf ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4fc74715 ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50944e67 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5527bae4 ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5986239e ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5c57acf4 ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x609761e3 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x65e92c94 ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x67154bf0 ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68620c7e ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ba99355 ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7411f904 ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7589307b ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7781ae57 ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7b02e1a2 ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7df017c5 ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a85c6a8 ocelot_vcap_block_find_filter_by_id -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8e2028f0 ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8ea6ce7c ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x95322873 ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x966bd6cb ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x96d20afd ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x97a63c25 ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9eab91d0 ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9fc02376 ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa1df6396 ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa321644a ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa6fda631 ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaa19931f ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaa3c2bfa ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaa8c41d4 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xacb63ffe ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad081305 ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xae1d1b18 ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xae3baf80 ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb24d527f ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb7a462b6 ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb945287f ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc62e1d3 ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcb4e96ba ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcd3b6145 ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd363d74a ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xda936921 ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe600b057 ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea597d18 ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf2e8a97f ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf8e701a3 ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfb1dd417 ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfd0810af ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfe2b75de ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x12af9d62 qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x26de5467 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 0x82880e09 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 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/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 0x683ff7e9 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x7fb58f8d alloc_mdio_bitbang -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/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/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x9c496bfe sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x18a18284 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x6940adb1 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x7385d609 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x7c4adee2 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x85256fb9 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xbaf43d30 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0xeb2a7e0e team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0xf08bd710 team_option_inst_set_change -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/wireless/ath/ath 0x0faa433b ath_hw_keysetmac -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x24bdc021 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x25eafbe5 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3695073a ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x37b20394 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x40300b18 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4053b761 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x49b74888 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb55e3a12 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc3b02920 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xddac16ea ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe75a69a1 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe967746e dfs_pattern_detector_init -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 0x047dc98d ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x10ad924a ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x150af64c ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1c43e6f4 ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2028ba4e ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x20ff6a26 ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x216e1b11 ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x21b32dbc ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2e700962 ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x358de695 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4170a865 ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x42c7c831 ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4bf80dd0 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4d10622d ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x54f911e2 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x597287a4 ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5d124161 ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x666c7a34 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x690e31df ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x70ad40aa ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x75f2d4c8 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x788416bb __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7e7ee72f ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7f8d5e4c ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x80dafae6 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x847310e4 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x861c3315 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8ef1ff77 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8f208506 ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x939e4547 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9c94d1b5 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9d711130 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9f17bf07 ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9fa71258 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1e4849a __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb05790ad ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb0cc270d ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb95ac49d ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbabd1891 ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbb97219c ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbff18fce ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcc1a6461 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcdc22623 ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xce7bd1e7 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd07baf28 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd0949c11 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd0d4a04c ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdacae798 ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe25baf19 ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe67340c3 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe994cc35 ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xed39e6de ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xedf48d49 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf0ba95f1 ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf971921d ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf9d2f7e7 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfc10f27e ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0086f6db ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x034110f5 ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x06c9949a ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x097f10df ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0cc352e0 ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x183c5e21 ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x23daf2aa ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x290d36a0 ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x312d0bbe ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3e9f8abe ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3fde0290 ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x45cd218d ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x578356c5 ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6f6c8b61 ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x74ec0743 ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa62e4209 ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb1215ab2 ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb2dc20ee ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xba1cadb7 ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd38a6a0d ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe03de52c 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 0xf64b8db2 ath11k_qmi_deinit_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 0x1354043d ath6kl_warn -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 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 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 0x1e8fc8e7 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x45115969 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x59e204a4 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x68c46003 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6c43d86d ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6fcec549 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x73f412f5 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7a4b9838 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7ba95439 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x83a0bc1c ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x88f9b938 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x89b85923 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8e58354d ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x90a4c5fc ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x94535e97 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9974fcae ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9c68cd72 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa9d1b4c1 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb770f22f ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xca264f20 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcb1549de 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 0xf5cf634c ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xff4a2a03 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0158ca1e ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03eb7f8e ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05c831c6 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0abfe537 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b25cbcf ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b7169e3 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10e4c8ab ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x149e727e ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x150e4c79 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x164703bf ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x193c306a ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a14784f ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a32cfd4 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e9e2934 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2163dd11 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2397571b ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24fed77a ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25c7ffcb ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29136d49 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d9f7d22 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e97e21b ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30081f90 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37299268 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b50ae6c ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d158c2b ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3fbdfad2 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x422c36e4 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44348185 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4680e6c5 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48fdc10b ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4fc7ac02 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5011c8c0 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5494824e ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x575c2e7e ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58df33fd ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f028f48 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x604db7d3 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60e28a4d ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x623067cb ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62cae75f ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6495d792 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65de9894 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66e615e7 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c040c6d ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d638493 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f9dec64 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7047e38b ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x748ff505 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79f5c52c ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a3f1cc2 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bc92552 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8140e93d ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83e25849 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x847874db ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x852f134a ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88217856 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x888cc8a9 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8924fb4f ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d890230 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x929ca650 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94113423 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x944620e3 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95f483b2 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9945f75d ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d0c0b3b ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9dd5409d ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1f1f2af ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5b40251 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7832c4e ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9301ada ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac1aaf10 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb454680a ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd5cf687 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe70582e ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc080e84c ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc17af4b3 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc701cf43 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc694b7f ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce791f43 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf2368df ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcfe04fb2 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2caf1e4 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd51bea38 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd704d858 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd72b16af ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7329ec9 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdac2651b ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb90acab ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdea7eef2 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe22ffa8a ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4f6692f ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5491118 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe849fcd3 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9d6f33b ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb07eeb3 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed542a8f ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee59c282 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xefc63dd6 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0f05ad6 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf35440ab ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4782c5b ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6155cc8 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf686fc6f ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa00d068 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfea19df5 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfee34c6b ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff6482d1 ath9k_hw_check_nav -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/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 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 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 0x022330c0 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x025a11cf il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x03ea382a il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b200efc il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d247a7d il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f00babc il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x112c924a il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x11700cb1 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x149fbded _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1564fba5 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x15e3c911 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x15e7fb89 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x16e8d9fc il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b33017b il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2081829a il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x271e823f il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf77873 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33b53e95 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x371299a8 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3ade8ac4 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3e9a09e8 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 0x4353fe34 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x435c1458 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x461cb291 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4ac678c5 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4cc0d955 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52c7e1ae il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55d4242f il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x59d5d637 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5a375323 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5b5439c5 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5fef1cad il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6409996d il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6874f1e5 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6923e8f6 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6966c088 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x69aed1d3 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a1849e6 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a6c00c5 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ccc1e8f il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6dcb1705 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7520fca4 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x79ca5c60 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7aa259d5 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b880644 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x80b15264 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x832fe22b il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x850345e7 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x868e2044 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87e74e36 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a378fff il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ad3ed2a il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b3af8d8 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b5bd13d il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8d1c4676 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x90674b3c il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x921b41c6 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x93452386 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x955c460e il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b237ae9 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b4a1dff il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d379977 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9f2d26f1 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa23d72c0 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa2e2a3a5 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa37f4b55 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa564e6ba il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa1d8deb il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaaa55ec0 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xabf36d9a il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad0e8d1f il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xadce4a3f il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaed472e5 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb2a5ba3c il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb49d6d8d il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb68d0740 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb695e209 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb6a6c682 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbacec0cf il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb70311f il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbfc8a53b il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc401f7a2 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc9b644e1 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcadee7fc il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb15fe92 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcbbc70c2 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd175309d il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd5703c62 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda977afd il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc27a5e2 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe11d541f il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe7642869 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe7b5d1dd il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeb6109bf il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xecf56a69 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xef9cfa5e il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0fa1424 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf5fa81c4 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x024adf12 __traceiter_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2c2b97f2 __traceiter_iwlwifi_dev_ucode_wrap_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 0x90f43ffe __traceiter_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x970bf4ef __SCK__tp_func_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaaafbd3e __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x02701133 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x097e6de8 hostap_free_data -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 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 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 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/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 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x34156a26 mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x8185ed3f rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0333336f _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0a21958b rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x16ef6790 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1e065115 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1f038205 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x26ccae1e _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2f96f67d rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x34268c71 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x344c3bdf rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3f9db1a6 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x42c9e57a rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x44104461 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x46a377db rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x48e18c67 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4ec17d7e _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x583479f7 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6a1e8e3b _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6fb6c928 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7846e8ad rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7ca6ef14 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x84a3fd1d rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x86096922 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9408dd9b rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x98052656 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9af9dd94 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa670c2e7 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb4665300 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb78781d3 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb7d780e2 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc12813b4 _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc3dbdd4d rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcb8fef1d _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd3927dcf rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd89f38f7 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xddfa9260 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe6b79813 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xebe660b2 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf007513b _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf0104ed1 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf659db87 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfc455e61 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x388c2cc6 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x61218a95 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x65bbf573 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xef65b53d rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8a57b478 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc2533118 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xefb968c3 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xfd1b5dba rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0c4beddb rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0ed24b92 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b657092 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d35bdac rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3509adbd rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x435eb9fa efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x44b96d82 rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4db6d6fe rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5ff9dba0 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6f180be2 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x746059b1 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x77ef7c28 rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8a19f7bf rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x91fa6071 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x96291b4a rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97a8960b rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x99f3a92b rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xacce2f0d rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaf0c3c60 rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc17dd2c2 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc254f262 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc5a57412 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf6f4eda rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe134443c rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xedda26d9 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf2137992 efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfbbef9ee efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfceeec17 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfe24b826 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfed157d1 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x0fe5fa7b rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x92258df6 rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xe40580c9 rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x0bc7ebf7 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x037a6e96 rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x043fd4de rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x087bc442 rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0b3267c3 rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x11543401 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x12436ebf rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x16076f2e rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2354546b rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x292a38dd check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x293240e2 rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2c04575f rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2e83f17f rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x31ff1d73 rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x357333bb rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3a2385b8 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3cb5e1fc rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x44d15123 rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x49138ffb rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4d344b7f rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4e8707b1 rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x57894852 rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x596437e0 rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5a8f37c3 rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5dad381f rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x610427b8 rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x689e89f4 rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6de232c2 rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x71bf0317 rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x73d6974c rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7486b27c rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x78ac87ad rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7c09e8a4 rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7cf93619 rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7d538822 rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x83f00773 rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x879f6516 rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x89742c21 rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8c24bf7e __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8f03d648 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9349166a rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x94440de2 rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa70baa7f rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa8aaece9 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa94fc4c3 rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaa413bef rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaad7ae0b rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb894da93 rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb8c351f8 rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbec37ab1 rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc41cbc14 rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc8a22e30 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd19f6a46 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd3b7666a rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd3b88060 rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd4f046eb rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xde2724fa rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf1be0ba4 rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x36c32af9 rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x68ad88c0 rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x8d39283f rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xce48f56c rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x06dfac71 rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0b610614 rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0c2a732d rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x14d2a561 rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x30220aff rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x324d0375 rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x444a3512 __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x65f45bf0 rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6b42fd52 rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x78d4c850 rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7e6d3af9 rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa31f3286 rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb8dd8fb9 rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc515060d rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc9a1fe64 rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd92b2688 rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdd488db8 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 0xe77de0d9 rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf36d52e8 rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfc43a677 rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd4f37f94 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x4c846dbf rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x3d3610f6 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x9674ecba wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xb7036305 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe787c0c2 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 -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/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 -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x8c04809d s3fwrn5_phy_power_ctrl -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xbe34be08 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xd67a93d2 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 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 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 -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf25bac9c ndlc_close -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0a8f8c32 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x136fd3e1 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1645b628 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1caad1d6 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x36a52aaa st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4160558c st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x63833793 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6682e978 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x68d5405d st21nfca_im_send_dep_req -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 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 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 -EXPORT_SYMBOL drivers/ntb/ntb 0x07e44f21 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x0992310a ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x12f47250 ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x13b321cb ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x16e66c3f ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x26fac528 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x31eb3d02 ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x4043dbda ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0x4f147396 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x6121b404 ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0x6b8cf45b ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0x7ae788c7 ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0x8bcb86cd ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0xb59594a4 ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0xc84ac8c9 ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0xcafbc9e4 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xcba202b9 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xd6a68aba ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0xdf762b89 ntb_default_peer_port_number -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x074593be nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x9157d28c nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/parport/parport 0x021b27ed parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x17c21ef1 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x29200415 parport_release -EXPORT_SYMBOL drivers/parport/parport 0x37ef548b parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x3c0f1d1a parport_write -EXPORT_SYMBOL drivers/parport/parport 0x3d8b941f parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x54cd1723 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x5dc72ac7 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x74a27dde parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x75796fa0 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x84381eae parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x8b7c0db4 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x8cd7fe92 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x961695de parport_read -EXPORT_SYMBOL drivers/parport/parport 0x97610be3 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x9816ee05 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xa4b6bc66 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0xabcbe90e parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xad873abc parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0xb2e25ecd parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xb5e2c2dc parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0xb88a872e parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xba4527be parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0xbbaf2622 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xcc3fcdd7 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0xe259ceeb parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xe4670816 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xe48ac68e parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xe6b8c424 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0xfbb3b903 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0xfd4ebfd5 parport_ieee1284_epp_write_addr -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 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 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/scsi/esp_scsi 0x29a103cf scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -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 0x20c47a0b fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3b43ba7b fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3eaba3e0 fcoe_fcf_get_selected -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 0x622ab21d fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7ecb79f4 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x90b1c3a8 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe7fb9fbf fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf0bc42db fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfaf1143d fcoe_ctlr_destroy -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 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 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 0x76d4e505 fc_frame_crc_check -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 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 0x9fd2f61a fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -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 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 0xca81018f _fc_frame_alloc -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 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/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 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 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 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 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 0xf62eac33 fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x002039ff sas_rphy_unlink -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 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 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 -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_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 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 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 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/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 -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2447d8e3 sdw_bus_master_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x248b87d1 sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x33d3d91f sdw_stream_remove_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x42c9482a sdw_bwrite_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x44c13a0a sdw_extract_slave_id -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x50440b83 sdw_bus_exit_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x54b7c5cf sdw_stream_add_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x54d8e6fc sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x58f77af1 sdw_bus_master_delete -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x61cf6c70 sdw_bread_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x752292d6 sdw_read_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x79bb7ac8 sdw_bus_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x895e70cf sdw_nwrite -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x990739c4 sdw_slave_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa0dc9535 sdw_read -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa96a7114 sdw_update_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xab16ed33 sdw_write -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb732745d sdw_bus_prep_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb8d00225 sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbe215909 sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc909fae8 sdw_compare_devid -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe3d542fd sdw_write_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe5a0d44e sdw_clear_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xecd3f55d sdw_stream_add_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf759824c sdw_nread -EXPORT_SYMBOL drivers/ssb/ssb 0x1ea4a214 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x232a70d4 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x38a2a1f9 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x4effbf3c ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x5907cdce ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x5c53e6cd ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x5d1c005d ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x66fc0110 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x786a51f7 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x7d218300 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x899d1635 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x936a938c ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x9464b768 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x9a566733 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xbcc3b88f ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xd07c7baa ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0xd61b6e54 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -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 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 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 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 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/iio/addac/adt7316 0x3d65a181 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x86a053aa ade7854_probe -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 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 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/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 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 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 0x021e2107 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x09b6803e iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0c42ce9d iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x13a06996 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1bcb9772 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1ff2bd34 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2203dbee iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x22f66e9e iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2455b852 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x250dc32a iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2541aea1 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2f258263 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3313b3a9 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3beb4524 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3ee98012 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x47422085 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4b84d8df iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4eb96284 iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x52749457 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5a0502ba iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5cdcba94 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6addfbbe __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6da228b8 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6dba8050 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c8c1771 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x843f1d9d iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x909742aa iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d1ea51a iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d3e0be9 iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa24b8b57 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa7a44507 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb0010cfe iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb7745240 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbf2e6817 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcae3a742 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd8c4ff3c iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdca3b5fd iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe2724e57 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe7b37ac9 iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeaaaab8b iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xed0f41c5 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf75944f6 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfa1fda5c iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfa944936 iscsit_add_reject -EXPORT_SYMBOL drivers/target/target_core_mod 0x020e3d8d transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x0381f46f target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x03dc759f target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x05621e1e target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0925b917 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x0e09e319 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x117c7e28 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x150810dc target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x1538d2c4 target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x181d4cbb transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x24473977 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x281a3a1d transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x2a267322 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x2c7043f3 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x2d25b8fa target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x2e551d9e core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x2f5ff7ad transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x317d7216 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x31936fcd sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x34e16345 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a995c1d transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x41935afd target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x468af9ae core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x46ca0044 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x499b8646 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x536e344c target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x53f9872c transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x540b3517 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x54b6f901 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 0x59b1ca64 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x5aa7f329 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x5df98de4 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x636aefaa transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x6be90631 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x6d94664c target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x6edba64d target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x76577f1c core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x7899bbf7 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x78f0fff5 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7aac101d target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x7cad431b target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x7d56009c target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x84faf40b target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x860a56ca transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x8798a4b0 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x910eb15a target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x92390528 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x9ccbed78 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xa1bb74f3 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xa76c6c02 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xa86e409e target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xaac17621 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xae368578 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xb107645f spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xb7ba3edd transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xbd0b141c target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xbd80acf7 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xc1339111 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xc4803668 target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc63544de core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xca5f03b5 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xcaa0ff80 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xcf2bddb4 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xd2393e9e target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xd9182dee transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xe0750372 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xe7d0780e transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3286d0c target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0xf32ac1bb transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf60393fd passthrough_parse_cdb -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/usb/class/cdc-wdm 0x326e142d 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/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 -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa10e56e9 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xaceb557b usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc09bd13e usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xcb11827e usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdd1f8a04 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe036665c usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe4e898cf usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xff7e9553 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xacd9ce4e usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xeaed2088 usb_serial_resume -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x1a7ee357 mdev_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x1e8d8ede mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x277475eb mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x37e1d236 mdev_register_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x4922d514 mdev_unregister_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x8d6afb2b mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa20115f7 mtype_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xbc1b1246 mtype_get_parent_dev -EXPORT_SYMBOL drivers/vhost/vhost 0xc3d474ed vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vhost 0xe9db6980 vhost_chr_write_iter -EXPORT_SYMBOL drivers/vhost/vringh 0x03f16e62 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x0498feb9 vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x04fde01d vringh_notify_disable_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x17958c34 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x1d3f5a75 vringh_complete_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x29f5fa0d vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0x33e11a49 vringh_init_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x3973a07c vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3d44657b vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x42cb4111 vringh_abandon_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4a6c3df7 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x4db86f30 vringh_notify_disable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4fc577dc vringh_set_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x5e661a87 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x660779c8 vringh_kiov_advance -EXPORT_SYMBOL drivers/vhost/vringh 0x6769867f vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x91c18462 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb0b57107 vringh_notify_enable_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xc62aa61e vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0xc9d39032 vringh_iov_push_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xc9fb475c vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd9cd6edc vringh_iov_pull_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xe583840f vringh_need_notify_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xe674e8b2 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0xe7204e1a vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xea03b482 vringh_getdesc_iotlb -EXPORT_SYMBOL drivers/video/backlight/lcd 0x5170b6ee devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x551b697d lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xa275dd9c lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xa93dce08 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x512dc83e svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x648019e1 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x66bea589 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x85a0391c svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x98d48976 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xbe736f23 svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2756eef svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x021d093f sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xe5f5f1fd sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x45e4e586 sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xa99e7fa3 cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x5fca432f matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x62b16327 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xa5831f08 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x0c47eac2 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x2de55c36 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xaf2d0a41 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xb8f329f6 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xeacf9cac matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x68215191 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x2b528825 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x7d0270cb matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xe32659e5 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xf72b608c matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x714477ac matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x77a95129 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x13ed3e04 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x30c0ca66 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x567c4a81 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5e1ee020 matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xbcca8381 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x3a6d1369 is_virtio_dma_buf -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x60574f92 virtio_dma_buf_attach -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x7e1f623f virtio_dma_buf_export -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xe22116e2 virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x8dd9ca1e w1_ds2780_io -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 0xf52ef609 w1_register_family -EXPORT_SYMBOL fs/fscache/fscache 0x0460dfac __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x17e48bde __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x1892e375 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x194d7c11 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x19ac55e0 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x1cbd6c4b fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x24fcf55f fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x2797800f __fscache_begin_read_operation -EXPORT_SYMBOL fs/fscache/fscache 0x2854b730 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x5408d6f3 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x55321520 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x55f38265 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x56edd2df __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x5c945dfc fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x611a1406 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x71bc0a9b __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x720925b8 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x74849266 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x770d1ed7 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x8516d061 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0x87fb5a52 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x94824d9b __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x9f346986 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xa5ed0def __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xb1a70e16 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0xb36d05ef __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xb73e19a5 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0xb8647972 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xc22ddd1a fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0xd222e764 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0xe42f82b1 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xe7791451 __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0xe8a64ed1 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0xf18eabc9 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0xf3364e28 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xf3dd9ae2 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xf67196cb __fscache_register_netfs -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 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 -EXPORT_SYMBOL fs/quota/quota_tree 0x4e781d73 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x8c6109bf qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x9887b32d qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xad7c54ae 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 0x1179064c lc_seq_dump_details -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 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 0xd7b26642 lc_seq_printf_stats -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 0xc8e3332b raid6_gflog -EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0xefc78e77 raid6_empty_zero_page -EXPORT_SYMBOL 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 0x4a8be861 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0x50ea8b75 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x53dbca80 lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x5e505ea9 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xd4f247a2 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xfb96025c lowpan_unregister_netdev -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 0x01003904 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0x0154280b v9fs_unregister_trans -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 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 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 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 0x93ca9566 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini -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 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 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 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 0x6adc0196 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0x6aea3d7d aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0xe073dca1 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xecc98b08 alloc_ltalkdev -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/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x2f2fe776 atm_charge -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 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 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 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer -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 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x73b347e4 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x7a6ddf64 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0x7d2998b5 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xaf1d5108 ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0xb5672593 ax25_listen_register -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/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/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 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 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 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 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 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 0x70debb6a ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x85de4cf2 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa3556f5d ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc011dfbc ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd85e04d3 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe644bdcd ebt_register_template -EXPORT_SYMBOL net/caif/caif 0x01b88478 get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0x0c8706ed cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x32d8e5f7 caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 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 0x02760416 ceph_con_close -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 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/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 0x1ec1bb87 ceph_msg_new2 -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 0x22b4c95c ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x26cb9f4c osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x274ec8c6 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x275df886 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x295ec17d ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x29814e6f ceph_msg_data_add_pagelist -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 0x2a983d26 ceph_pagelist_release -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 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 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x395e1448 ceph_copy_to_page_vector -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 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3ca89851 ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0x3e8a087c ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x4023f552 ceph_osdc_notify -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 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 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 0x53bde46a ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x543df775 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5af423dd ceph_osdc_alloc_request -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 0x66a41f89 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -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 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 0x7d8507c0 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x81218596 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x81401501 ceph_msg_new -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 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 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 0x9cd22ccc ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x9fbba67f ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 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 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 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb4cc0a1b ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -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 0xc2dbeb37 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xc2ffda89 ceph_open_session -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 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 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 0xdb63402f ceph_msg_data_add_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 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 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 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 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 0x4c407811 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xb053e255 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/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x59364007 __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xb47511f7 __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0x8fa7f0e1 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x214dbbc3 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x4c9186a7 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x9f9f51cd ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf08227e4 ip_tunnel_get_iflink -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 0xcda1ec62 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xdeccadac ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe0bef081 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe772682a ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/tunnel4 0x62824501 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0x663e2dcf xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xad38d9e9 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1c4364f6 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x29ca8848 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x367abf91 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x39364d64 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x41be8732 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x47d543ff ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x915cec15 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbffc34aa ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd25e42d4 ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x1fdd76b9 ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x554b4f0e ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xafaa9471 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf7fdd35e ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x09fa5fdd xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0x5a1aa09c xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x7b764eb0 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xabf0beac 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/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 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 0x0048e45c ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x03f25780 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x044db53d ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x053c28e9 ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x09108502 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x0a81ff07 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x0f09b821 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x103a0674 ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x117db72f ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x13480abf ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x1377cef0 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x156fc7ae ieee80211_return_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x161323c3 ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x184542c4 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x19165095 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 0x1e1647ef rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x1fa814f7 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x2393d3c5 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x2828ef88 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x2e3e8d4d ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x35db64ae ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0x3fe4911a ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x4234fb04 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x42820ee9 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x4355ab4f ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x47bb4605 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x482530fb ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x494e5afb ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x499e387b ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x4a9f92f9 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x4e0288bd ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x51f91ab7 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x53797178 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x5649de9a ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x5926a4e7 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x614cb7f4 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x63bd9048 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x63e95fc2 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x655523a3 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x66c82e83 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x6b13f045 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x6d2a7712 ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x6e68ede0 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x6f08f23b ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x6fb7cdd0 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x70de65c8 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x755352c7 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0x76df7ae6 ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0x76e6192e ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x776e60db ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x7d33ac37 ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0x7dd091cb ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x7f9ee4a1 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x83406d81 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x8343e6e5 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x84afc424 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x85857e18 ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0x87874c05 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x892d4e3f ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x95110972 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0x95da52f0 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0x960c513b ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x970b0d10 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x9b5795a4 ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x9bb4e7d2 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x9c80a19a ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x9d7d7555 ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0x9fdbbdfe ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xa31d020f __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xa43f8b69 ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0xa71e0d74 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0xa7b9ed03 ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0xa89227b8 ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0xa8edfc39 ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xac43bc8a ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0xb334badf ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xb6a08b79 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xb780b44d ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xbde76547 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xbe43d6d9 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xc0fe0b53 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xc37efa17 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xc542455b ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0xc569246d ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xc62e2b7a ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xc755cf40 ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0xc7aebc62 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xd43954b7 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0xd60f9df9 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xd69d8c6f ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0xd89eab20 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0xd9bda9e1 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xdf5ac7ac ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0xef959f6c ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0xf1a2ebdd ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0xf6da3f71 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xf872c334 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xf8bb29ce ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0xfde0dcb4 ieee80211_rx_napi -EXPORT_SYMBOL net/mac802154/mac802154 0x0870263e ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x1ea9873b ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x34c6af72 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x3eba54f3 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xa0ab8c89 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xb8c66d38 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xd55ff0d0 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xed3382cf ieee802154_rx_irqsafe -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x02f5d91e ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1264ca49 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x29ab8f31 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2e2ceb73 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6242352a register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7151677f ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8d5ee52c ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9f15b90d ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb887b115 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbbb4e5c1 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc28525f8 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc63fd464 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc6b631fc ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe3035160 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf583c617 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x7484498c nf_ct_ext_add -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x083d1e23 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x3b600cf7 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x64eea830 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x780174d1 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy -EXPORT_SYMBOL net/netfilter/x_tables 0x08c44a22 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x157fa4ef xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x37589cef 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 0x6e2940f9 xt_find_table -EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x991a40ed xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xa82cf6d0 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xd529628c xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xd5620c45 xt_unregister_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 0xea7c7b58 xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xfba95f59 xt_find_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 -EXPORT_SYMBOL net/nfc/hci/hci 0x1e5565c1 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x22f93410 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x2f8bedca nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x2ff5929f nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x3062aa94 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x3627f9ff nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x38985a87 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0x45725b5c nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0x4e772b7e nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x51720516 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x54547475 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0x6b40aa32 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x6d739323 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0xb8235163 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0xc02eb612 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xd8c185f0 nfc_hci_send_cmd_async -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 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/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 0x18ca9168 rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0x2153691c rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x2859bec8 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x2b46be92 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x522372f7 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5448553f rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x554e1a8d rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x66d657b4 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6bebb90f rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0x72fd4d95 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0xba3801c5 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc26ceef8 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc3b46e01 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc9eff70f rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd1e36811 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe8df89d6 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xeca70ee6 rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf62ff627 rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/sctp/sctp 0xc7463dc6 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x0b9a69aa gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x5e52104c gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7feab85e gss_mech_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0x67ef2550 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0x74d164a6 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x8294f044 get_srcport -EXPORT_SYMBOL net/sunrpc/sunrpc 0x88601e5f xdr_restrict_buflen -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 0x1145f4fc 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 0x0b5dac6b ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x0c2716b7 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x0c2a172d wiphy_read_of_freq_limits -EXPORT_SYMBOL net/wireless/cfg80211 0x0dd8dc91 cfg80211_get_drvinfo -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 0x15a37cf3 cfg80211_calculate_bitrate -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 0x2310adee ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x23ffcaa5 cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x26c2683f ieee80211_get_channel_khz -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 0x2a5d816f cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x2c5a57c8 cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0x2d1bd2f1 cfg80211_get_station -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 0x3d002113 cfg80211_bss_flush -EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3fcf563b cfg80211_check_station_change -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 0x4e713c4b cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x4feeb091 cfg80211_rx_spurious_frame -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 0x6289dfaa cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x6301ad29 cfg80211_conn_failed -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 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x69e21845 __cfg80211_send_event_skb -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 0x79b82a71 cfg80211_find_vendor_elem -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 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 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 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 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9e72120d wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xa0782d7c cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0xa403c600 cfg80211_iter_combinations -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 0xb2be6a2e cfg80211_classify8021d -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 0xbe3bfd23 ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz -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 0xca7c5ee6 cfg80211_check_combinations -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 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd99d417f cfg80211_stop_iface -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 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 0xe61b87e7 cfg80211_send_layer2_update -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 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 0xf50d8a70 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -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/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 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 -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3603586f snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x67a925da snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xd20bb689 snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe78e64c9 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf912f0c8 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x072d978b snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x13a17752 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2eed26bf snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5ca523 snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x592f6e9b snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xddcf2191 snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe60fb228 snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x308f9576 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x00dda311 snd_device_register -EXPORT_SYMBOL sound/core/snd 0x056ebbd8 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x0d641ed0 snd_register_device -EXPORT_SYMBOL sound/core/snd 0x0dd0b811 snd_info_register -EXPORT_SYMBOL sound/core/snd 0x15e1aaef snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program -EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1c15e90d snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x1dd01c1a snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0x20809054 snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x21a127fc snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x28701ceb snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x2898b756 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x2fbdf611 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3c8f1630 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x5621ef39 _snd_ctl_add_follower -EXPORT_SYMBOL sound/core/snd 0x59667b75 snd_card_free -EXPORT_SYMBOL sound/core/snd 0x5ac20fd5 snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x5e3eb026 snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0x5ed013ea snd_card_register -EXPORT_SYMBOL sound/core/snd 0x6a9abcc6 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0x6d1e3e29 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x6ee5d9f1 snd_ctl_make_virtual_master -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 0x7547010c snd_card_new -EXPORT_SYMBOL sound/core/snd 0x7580b32c snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x77e4c8f9 snd_device_new -EXPORT_SYMBOL sound/core/snd 0x78d2f676 snd_ctl_notify_one -EXPORT_SYMBOL sound/core/snd 0x7d39ec11 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0x7e46cce8 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0x9f25b965 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0xa2b0cbb4 snd_device_free -EXPORT_SYMBOL sound/core/snd 0xaa2bbdfa snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0xada5fa21 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb3561294 snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0xbb183afb snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0xc215046d snd_component_add -EXPORT_SYMBOL sound/core/snd 0xc2a791b8 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0xc9227dda snd_jack_report -EXPORT_SYMBOL sound/core/snd 0xca813e9e snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0xcbebe52a snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0xd4c48446 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0xd7236988 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0xe0d1e599 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0xe2e16aad snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0xe83c7b42 snd_power_wait -EXPORT_SYMBOL sound/core/snd 0xe9428ff0 snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0xea6df31f snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0xea7e09a6 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0xf224ac09 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0xf429613f snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-compress 0x2cf1907f snd_compr_malloc_pages -EXPORT_SYMBOL sound/core/snd-compress 0xa6d2e1a1 snd_compr_free_pages -EXPORT_SYMBOL sound/core/snd-hwdep 0xf6065931 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x0175dc99 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x0227b903 snd_pcm_hw_constraint_pow2 -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 0x0c647675 snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x0d013ad5 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x1177ab6a snd_pcm_set_managed_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL sound/core/snd-pcm 0x1b062165 snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x23c08bdc snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0x27f87d3d snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x2b107c07 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0x2b642b11 snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x2c94e068 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0x330a23fb _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x35cc4066 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x3692897d snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x3861e57d snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x4424a88e snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x463eef12 snd_sgbuf_get_page -EXPORT_SYMBOL sound/core/snd-pcm 0x4ab32f80 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x4de12ce6 snd_pcm_set_managed_buffer_all -EXPORT_SYMBOL sound/core/snd-pcm 0x4e39a19c snd_pcm_lib_mmap_iomem -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 0x5369173d snd_pcm_period_elapsed_under_stream_lock -EXPORT_SYMBOL sound/core/snd-pcm 0x56509355 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x575cace9 snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x65245646 snd_dma_buffer_mmap -EXPORT_SYMBOL sound/core/snd-pcm 0x65d784f1 snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0x6818f598 snd_pcm_hw_param_last -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 0x7a3cd2c9 snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0x813224dd snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x845d13a6 snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0x93854cec snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x99efcf25 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x9b995eca snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x9c9f651e snd_pcm_create_iec958_consumer -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 0xb44d04f3 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xbbea1a72 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0xc6bd79ee snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xd47642cd snd_sgbuf_get_addr -EXPORT_SYMBOL sound/core/snd-pcm 0xd81e1e8b snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xd9705bbe snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0xd9a5bd22 snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0xdda6cddb snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xe444d6c5 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xe4d48c3b snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xe6d79ce0 snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0xed9287d6 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0xf9768484 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xf9f0c279 __snd_pcm_lib_xfer -EXPORT_SYMBOL sound/core/snd-pcm 0xfa1d7637 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0xfb48fba2 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x01baf35e snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x02d3efdb snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1058e111 snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1fed4189 snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2050df24 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2c41279c __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3757fcd1 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4caca60d snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6e2f468b snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x828a7384 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x841e8b46 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9015bdb5 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xaf059156 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb370c0e1 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0xbeb6e80e __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd55f9cd4 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf0777687 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf86117e7 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf88b588e snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf8f9b087 snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/snd-seq-device 0x7bc26c97 snd_seq_device_new -EXPORT_SYMBOL sound/core/snd-timer 0x003a60b4 snd_timer_instance_free -EXPORT_SYMBOL sound/core/snd-timer 0x0a63e8f0 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0x2f394244 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0x59c60b7c snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x7282addf snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0x75ac6cc5 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0x806b5791 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0x8fad3999 snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0xb2ada9b8 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0xc134d947 snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0xc8875489 snd_timer_instance_new -EXPORT_SYMBOL sound/core/snd-timer 0xd05bb691 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0xdd6396a2 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0xf0aa9176 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0xf148912c snd_timer_resolution -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x7bc80bf8 snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x03f45db9 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x331ba815 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4eac7213 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5ac8a367 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x607b364f snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xad2048d2 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbb12cc03 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xdffa99f6 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xecdbcb9e snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0581ad76 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x544783b4 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x835b44a5 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8ec78550 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xaad0e68a snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb05916e6 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc522b6a9 snd_vx_setup_firmware -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 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 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 -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 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 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 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 -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7324a5f6 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x77612adc snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7ccb046b snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb11a941b snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd2ea57db snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xdf184e81 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe3d2dfe5 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x1bc3bfb1 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x2d86663a snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xb34dbb7c snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xfc3adac7 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x67c9a769 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xd6e8b85f snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-i2c 0x1e36be1e snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x54e6687d snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xc2d23718 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xc5b09f83 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xc6fcd11a snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0xceb7dd5f snd_i2c_probeaddr -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0d7499f8 snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x2d0a1692 snd_sbdsp_reset -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x4155fbe5 snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x56f49ed9 snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5e119aed snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8de4c02e snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8f858360 snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc7db72d0 snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xcf975f86 snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe4871c86 snd_sbmixer_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x01c917c9 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x043f7926 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x16b3ab62 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1e97a080 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x203a24da snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3290321f snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x43dd4e34 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4e89674b snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5048fc5b snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6cab2720 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6efc9ce5 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa2678c0d snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb6519f34 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb7f34d82 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd03dfa1e snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe4317f08 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xeb34fba1 snd_ac97_update -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x1101a51a snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x3dc4c574 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xadfd13dd snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0f8d2bfe oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x110636a4 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1789dae0 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x20595560 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3143e423 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3949125d oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3d5a5cc7 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3db7dd97 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6b3e8cac oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa0d47d1a oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa35398b1 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb8473694 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcffe1f64 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd93f7d62 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd970bbfc oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe0055338 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe06f8e92 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe1d9579f oxygen_pci_probe -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-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 -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x7dbb6536 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xe584ff0d tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x06462fc8 aic32x4_regmap_config -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 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 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/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 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 0x2d0c4134 snd_sof_pcm_period_elapsed -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 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 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 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 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 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 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 0xee70ef40 snd_sof_resume -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/soundcore 0x03182195 register_sound_special -EXPORT_SYMBOL sound/soundcore 0x2868ff82 register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xb5826b01 sound_class -EXPORT_SYMBOL sound/soundcore 0xc2b7513a register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0xca45d118 register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -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 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 0x00148653 vsnprintf -EXPORT_SYMBOL vmlinux 0x00293974 vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0x003a7a96 h_ipi_redirect -EXPORT_SYMBOL vmlinux 0x009249fe gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x00a271fd sockfd_lookup -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 0x00b926ec sock_create_kern -EXPORT_SYMBOL vmlinux 0x00ca49b8 xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00e2aa89 ptp_schedule_worker -EXPORT_SYMBOL vmlinux 0x00e793a2 inet_offloads -EXPORT_SYMBOL vmlinux 0x00e9a5a1 phy_disconnect -EXPORT_SYMBOL vmlinux 0x00f2692a vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0x00f7bd30 __skb_wait_for_more_packets -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 0x0137288d flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x01407c12 skb_mac_gso_segment -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 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 0x018574a1 mb_cache_entry_delete -EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent -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 0x01a3bd66 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01d1f6f0 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x01d797a2 agp_unbind_memory -EXPORT_SYMBOL vmlinux 0x01e80408 timer_interrupt -EXPORT_SYMBOL vmlinux 0x02084611 netdev_update_features -EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x020a97b0 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x0218a5aa unregister_shrinker -EXPORT_SYMBOL vmlinux 0x021f5c72 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo -EXPORT_SYMBOL vmlinux 0x023c178f __napi_schedule -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 0x025c1602 __debugger_sstep -EXPORT_SYMBOL vmlinux 0x02619b32 filemap_range_has_page -EXPORT_SYMBOL vmlinux 0x026541da netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x026ccd74 is_nvdimm_bus_locked -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 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 0x02c065f8 ucc_set_qe_mux_mii_mng -EXPORT_SYMBOL vmlinux 0x02c3c40e __debugger_break_match -EXPORT_SYMBOL vmlinux 0x02df50b0 jiffies -EXPORT_SYMBOL vmlinux 0x02e31fdf udplite_prot -EXPORT_SYMBOL vmlinux 0x02e57cbd kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0x02e82763 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x02f0a214 vme_slot_num -EXPORT_SYMBOL vmlinux 0x031f2bf5 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x032123aa security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x034fa5e6 config_item_set_name -EXPORT_SYMBOL vmlinux 0x03576ccd mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x03634db8 pcim_iomap -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x03788d84 filp_open -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x03801c65 put_cmsg -EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x0388bdda i2c_verify_client -EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x03acf1e1 blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0x03b3e9c5 dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0x03c7d268 tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x03d7e419 genphy_c37_config_aneg -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 0x0419fd3d sk_reset_timer -EXPORT_SYMBOL vmlinux 0x0427ae02 proc_create_data -EXPORT_SYMBOL vmlinux 0x042fe86d netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x0447747c page_pool_release_page -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x045b58b7 __phy_write_mmd -EXPORT_SYMBOL vmlinux 0x045bd253 skb_store_bits -EXPORT_SYMBOL vmlinux 0x045d0b11 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x046c18bf __scsi_add_device -EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x047994f3 xsk_get_pool_from_qid -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 0x04b83d7d skb_eth_pop -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 0x04f158be cpu_sibling_map -EXPORT_SYMBOL vmlinux 0x04f4c688 dqget -EXPORT_SYMBOL vmlinux 0x04f6371f cdev_add -EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x0528dfc3 __vfs_setxattr -EXPORT_SYMBOL vmlinux 0x05359f6b kernel_bind -EXPORT_SYMBOL vmlinux 0x05398740 dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0x053fe695 kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x054cb6e6 dst_dev_put -EXPORT_SYMBOL vmlinux 0x05553414 rt_dst_clone -EXPORT_SYMBOL vmlinux 0x05843809 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x058ed4cc iunique -EXPORT_SYMBOL vmlinux 0x0597535f devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x05af5907 blackhole_netdev -EXPORT_SYMBOL vmlinux 0x05b5f651 d_find_alias -EXPORT_SYMBOL vmlinux 0x05bdd59f __serio_register_port -EXPORT_SYMBOL vmlinux 0x05df5aaa input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x05e9b3c8 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x05f56bb1 pci_request_region -EXPORT_SYMBOL vmlinux 0x05fd0c39 netdev_lower_get_next_private -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 0x06287331 sock_i_uid -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x063fbb83 ns_capable -EXPORT_SYMBOL vmlinux 0x0640da1e mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x064e56a5 xfrm_input_resume -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 0x0692ebc9 skb_tx_error -EXPORT_SYMBOL vmlinux 0x0693e747 fiemap_prep -EXPORT_SYMBOL vmlinux 0x06a0cc52 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 -EXPORT_SYMBOL vmlinux 0x06c2236d of_node_put -EXPORT_SYMBOL vmlinux 0x06c32b91 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x06c83ae8 tcp_v4_conn_request -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 0x071ae5a6 qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0x07295af6 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x072fa3fb dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x0737be08 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x074378bc vme_bus_type -EXPORT_SYMBOL vmlinux 0x074f301a bdi_register -EXPORT_SYMBOL vmlinux 0x075eb2a8 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x077ec73a phy_attach -EXPORT_SYMBOL vmlinux 0x07a23ba2 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x07a58062 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07a9d977 rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0x07abddab blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07db43ae redraw_screen -EXPORT_SYMBOL vmlinux 0x07dee121 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x07e5accd unregister_filesystem -EXPORT_SYMBOL vmlinux 0x07e69dfd security_inode_listsecurity -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 0x082249a3 mdiobus_register_device -EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point -EXPORT_SYMBOL vmlinux 0x08265650 tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x0830e985 scsi_scan_target -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x084fcbd7 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x0869cadd simple_rename -EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x08972052 i2c_register_driver -EXPORT_SYMBOL vmlinux 0x08be0a41 skb_vlan_push -EXPORT_SYMBOL vmlinux 0x08cc35e5 dma_map_resource -EXPORT_SYMBOL vmlinux 0x09012efa devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x09137244 unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x091b19a1 vio_cmo_set_dev_desired -EXPORT_SYMBOL vmlinux 0x0936d6c0 security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0x0938c124 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x093fd701 pci_clear_master -EXPORT_SYMBOL vmlinux 0x096a7e99 mutex_lock -EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x09a411cf tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09f75753 ptp_clock_index -EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0a079994 of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key -EXPORT_SYMBOL vmlinux 0x0a23f7c1 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x0a368a47 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x0a46ee66 security_path_mknod -EXPORT_SYMBOL vmlinux 0x0a4dde71 inet_stream_connect -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -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 0x0ab230e9 dma_mmap_attrs -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 0x0ad927f9 flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x0ae9eecb simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x0aeb077b pci_disable_device -EXPORT_SYMBOL vmlinux 0x0af5de2a ip6tun_encaps -EXPORT_SYMBOL vmlinux 0x0b14b1f5 tty_port_close_start -EXPORT_SYMBOL vmlinux 0x0b19b445 ioread8 -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b248d09 scsi_host_put -EXPORT_SYMBOL vmlinux 0x0b25f304 netif_carrier_on -EXPORT_SYMBOL vmlinux 0x0b2e1ec7 h_get_mpp -EXPORT_SYMBOL vmlinux 0x0b32614d netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0x0b3b2b0f sock_wake_async -EXPORT_SYMBOL vmlinux 0x0b3c09ff ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x0b3e97ee netdev_notice -EXPORT_SYMBOL vmlinux 0x0b3fef42 mipi_dsi_attach -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 0x0b7d5086 __wait_on_buffer -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 0x0bc4e780 register_filesystem -EXPORT_SYMBOL vmlinux 0x0be7d42b phy_write_paged -EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x0bf36885 do_wait_intr -EXPORT_SYMBOL vmlinux 0x0bf94a6e mmc_retune_release -EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user -EXPORT_SYMBOL vmlinux 0x0c03433a _dev_warn -EXPORT_SYMBOL vmlinux 0x0c0aa4d6 seq_escape_mem -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 0x0c1a70dc pfifo_qdisc_ops -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 0x0c40d6b9 nonseekable_open -EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c770823 get_vm_area -EXPORT_SYMBOL vmlinux 0x0c7b928a devfreq_unregister_notifier -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 0x0cc2a732 max8925_reg_read -EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false -EXPORT_SYMBOL vmlinux 0x0cc69c9e mr_mfc_seq_next -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 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 0x0d1a4a45 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x0d215ac2 input_grab_device -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 0x0d6ded29 dma_free_attrs -EXPORT_SYMBOL vmlinux 0x0d74cf34 xfrm_input -EXPORT_SYMBOL vmlinux 0x0d7b42c1 nvmem_get_mac_address -EXPORT_SYMBOL vmlinux 0x0d89364e devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x0dba21ae mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0x0ded534d fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0x0df48da1 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x0df8023f dma_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x0e001cf9 ip_tunnel_header_ops -EXPORT_SYMBOL vmlinux 0x0e0af30e fasync_helper -EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e2b7e8e shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x0e3b7390 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0x0e416e6c cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x0e5aec08 udp_seq_start -EXPORT_SYMBOL vmlinux 0x0e711ff8 kill_block_super -EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor -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 0x0ec626c9 mr_fill_mroute -EXPORT_SYMBOL vmlinux 0x0ece5747 page_mapping -EXPORT_SYMBOL vmlinux 0x0ed87a80 mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0x0edb565f sk_net_capable -EXPORT_SYMBOL vmlinux 0x0eeca845 jbd2_journal_finish_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x0f0536c0 param_get_byte -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 0x0f1b8a0a rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x0f5f37a4 blk_mq_unique_tag -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 0x0f9b2bdf mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0x0f9f038f iov_iter_npages -EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fb7b537 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0fedf263 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm -EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed -EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source -EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x1057a279 bsearch -EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x1074327b __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x107fdde7 sg_alloc_append_table_from_pages -EXPORT_SYMBOL vmlinux 0x10802ded dcache_dir_open -EXPORT_SYMBOL vmlinux 0x109b61ec lookup_one -EXPORT_SYMBOL vmlinux 0x10a597b1 dev_remove_pack -EXPORT_SYMBOL vmlinux 0x10aefec0 xsk_tx_peek_desc -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 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x10e76419 nd_pfn_probe -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 0x111b40ac kset_register -EXPORT_SYMBOL vmlinux 0x111fa7c9 qe_pin_set_dedicated -EXPORT_SYMBOL vmlinux 0x11344473 padata_do_serial -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 0x11688155 arp_tbl -EXPORT_SYMBOL vmlinux 0x116bd1f6 of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable -EXPORT_SYMBOL vmlinux 0x1195b03e neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x11a12d07 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0x11cd1747 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x11cd7e4d neigh_seq_next -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 0x11e65b66 twl6040_power -EXPORT_SYMBOL vmlinux 0x11e923f3 netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0x11f067b4 kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp -EXPORT_SYMBOL vmlinux 0x11f60982 skb_dump -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 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120bbb65 inc_node_state -EXPORT_SYMBOL vmlinux 0x1211a1a2 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x121894ff pcim_pin_device -EXPORT_SYMBOL vmlinux 0x1226829f mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0x122a64f2 migrate_vma_finalize -EXPORT_SYMBOL vmlinux 0x123e5b4b eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x123ec54b lock_rename -EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x125429b1 pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0x125be6bf default_llseek -EXPORT_SYMBOL vmlinux 0x12675755 pldmfw_flash_image -EXPORT_SYMBOL vmlinux 0x126e8be1 inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0x127fd675 nd_device_register -EXPORT_SYMBOL vmlinux 0x1282998d md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x12914d8b rproc_detach -EXPORT_SYMBOL vmlinux 0x12ad2399 cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x12addf22 inet6_bind -EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12d40574 tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0x12dab932 fs_param_is_string -EXPORT_SYMBOL vmlinux 0x12dfdec8 genl_register_family -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 0x12f5c3fd iterate_fd -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 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x132efb70 napi_enable -EXPORT_SYMBOL vmlinux 0x13386e5f skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x133eed38 gen_pool_dma_zalloc_algo -EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x1360d438 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x13760e1d neigh_lookup -EXPORT_SYMBOL vmlinux 0x13862fff __page_cache_alloc -EXPORT_SYMBOL vmlinux 0x1388daef get_thermal_instance -EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13c49cc2 _copy_from_user -EXPORT_SYMBOL vmlinux 0x13cead77 __SCK__tp_func_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x13cf7a7b open_exec -EXPORT_SYMBOL vmlinux 0x13d01072 xp_dma_sync_for_cpu_slow -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -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 0x13f53da6 CMO_PageSize -EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node -EXPORT_SYMBOL vmlinux 0x1439a71f md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x143b43f2 inet_recvmsg -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 0x147e0857 gen_pool_dma_alloc_algo -EXPORT_SYMBOL vmlinux 0x14a2b413 gen_pool_first_fit_order_align -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 0x14d77fd8 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x14e760be mmc_sw_reset -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 0x151f4898 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x15530cf3 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x156c4dc7 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x156c5c56 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x1585b0af ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0x15932e16 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x159878be inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x15a94fdd posix_lock_file -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial -EXPORT_SYMBOL vmlinux 0x15c57392 netlink_net_capable -EXPORT_SYMBOL vmlinux 0x15d42deb reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0x15ec9947 t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x15edfaec inet_add_offload -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 0x15fe7df5 iterate_dir -EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token -EXPORT_SYMBOL vmlinux 0x161ec940 ptp_clock_event -EXPORT_SYMBOL vmlinux 0x1620b68c pci_find_resource -EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi -EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize -EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x163b9833 of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x164ff3c7 cdev_alloc -EXPORT_SYMBOL vmlinux 0x1675c8f8 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x167997bf mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x169ccc86 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x169e936b fscrypt_ioctl_set_policy -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 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 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 0x1710cdd8 __mdiobus_write -EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock -EXPORT_SYMBOL vmlinux 0x17670986 poll_initwait -EXPORT_SYMBOL vmlinux 0x1771f17a inet_add_protocol -EXPORT_SYMBOL vmlinux 0x178347a3 seq_file_path -EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware -EXPORT_SYMBOL vmlinux 0x17932b42 _dev_info -EXPORT_SYMBOL vmlinux 0x17ac6f1b sock_sendmsg -EXPORT_SYMBOL vmlinux 0x17b93ede vfs_rename -EXPORT_SYMBOL vmlinux 0x17b9f559 tcp_init_sock -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 0x180d8258 __d_drop -EXPORT_SYMBOL vmlinux 0x1811ac64 do_clone_file_range -EXPORT_SYMBOL vmlinux 0x181daf0f phy_detach -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 0x185a0d0c inet_sk_set_state -EXPORT_SYMBOL vmlinux 0x186cea81 load_nls -EXPORT_SYMBOL vmlinux 0x18729c9d netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free -EXPORT_SYMBOL vmlinux 0x187aff13 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x187df1f5 irq_set_chip -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x189c4400 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x18b17ab3 invalidate_bdev -EXPORT_SYMBOL vmlinux 0x18b57476 wireless_spy_update -EXPORT_SYMBOL vmlinux 0x18bc81f1 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x18c6ff92 filp_close -EXPORT_SYMBOL vmlinux 0x18d1bdb0 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18e8fed2 ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0x19155c11 xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x1922565c of_device_alloc -EXPORT_SYMBOL vmlinux 0x193844fe mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x194078aa path_is_mountpoint -EXPORT_SYMBOL vmlinux 0x1944a87d __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0x194a4b67 param_set_copystring -EXPORT_SYMBOL vmlinux 0x19567d06 vfio_info_cap_shift -EXPORT_SYMBOL vmlinux 0x195a579c tty_hangup -EXPORT_SYMBOL vmlinux 0x19654a5e deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x196a5a99 radix_tree_tag_get -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 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19b16b34 up_read -EXPORT_SYMBOL vmlinux 0x19b8d124 tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19c8725c pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0x19d68628 xa_get_mark -EXPORT_SYMBOL vmlinux 0x19e64e79 read_cache_page -EXPORT_SYMBOL vmlinux 0x1a100315 ip_sock_set_tos -EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x1a2a6a75 sk_dst_check -EXPORT_SYMBOL vmlinux 0x1a382e63 tcp_peek_len -EXPORT_SYMBOL vmlinux 0x1a412a76 nd_device_unregister -EXPORT_SYMBOL vmlinux 0x1a416735 datagram_poll -EXPORT_SYMBOL vmlinux 0x1a7158be xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x1a8ffcb8 seg6_hmac_info_add -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 0x1aa9fba0 vfio_dma_rw -EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ae3ff97 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x1ae8056a mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x1afdc244 mutex_trylock -EXPORT_SYMBOL vmlinux 0x1aff7644 ip6_err_gen_icmpv6_unreach -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 0x1b3dd4e6 pci_set_master -EXPORT_SYMBOL vmlinux 0x1b4f2573 kthread_create_worker_on_cpu -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 0x1b782951 proto_unregister -EXPORT_SYMBOL vmlinux 0x1b863e2f pci_map_rom -EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -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 0x1bb51249 tcp_have_smc -EXPORT_SYMBOL vmlinux 0x1bb64c9d netdev_warn -EXPORT_SYMBOL vmlinux 0x1bc33fa0 devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent -EXPORT_SYMBOL vmlinux 0x1bf5a72e fs_lookup_param -EXPORT_SYMBOL vmlinux 0x1c20f5f3 pagecache_write_end -EXPORT_SYMBOL vmlinux 0x1c2d562a vio_disable_interrupts -EXPORT_SYMBOL vmlinux 0x1c36fa97 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x1c3e02e4 memcmp -EXPORT_SYMBOL vmlinux 0x1c457731 dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x1c46aec8 copy_string_kernel -EXPORT_SYMBOL vmlinux 0x1c4f29bf ata_print_version -EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c6b6298 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x1c6cf07e __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x1c77c365 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x1c7cfdb1 __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x1c9e5937 skb_pull -EXPORT_SYMBOL vmlinux 0x1ca1b1be radix_tree_delete -EXPORT_SYMBOL vmlinux 0x1ca527fa ioread64be_hi_lo -EXPORT_SYMBOL vmlinux 0x1cb552b1 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x1cc80295 xfrm_register_km -EXPORT_SYMBOL vmlinux 0x1ccab462 scsi_print_command -EXPORT_SYMBOL vmlinux 0x1cde0a51 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x1ce15d0a __irq_regs -EXPORT_SYMBOL vmlinux 0x1ce5689e srp_rport_put -EXPORT_SYMBOL vmlinux 0x1ce9b425 bd_abort_claiming -EXPORT_SYMBOL vmlinux 0x1cecc26b pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x1d25c94f fb_blank -EXPORT_SYMBOL vmlinux 0x1d294e30 sock_no_listen -EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x1d3a0517 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0x1d40d2cb i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x1d4bcafb generic_ro_fops -EXPORT_SYMBOL vmlinux 0x1d58c6c8 d_alloc_anon -EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x1d669a8b __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x1d6c8f63 igrab -EXPORT_SYMBOL vmlinux 0x1d8edd01 dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x1d8f2297 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x1d9cae4d mr_table_alloc -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 0x1df335a7 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x1dfddab3 __bswapdi2 -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 0x1e30f4cc block_write_full_page -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 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1eaad988 mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0x1eb7ad70 md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0x1eba3379 sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x1ec596c7 phy_queue_state_machine -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 0x1f115f93 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x1f1f8f2a ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x1f2d52be genphy_loopback -EXPORT_SYMBOL vmlinux 0x1f33de97 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x1f3ace75 d_genocide -EXPORT_SYMBOL vmlinux 0x1f5018af pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x1f51feb2 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x1f541d16 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x1f59a99e uart_match_port -EXPORT_SYMBOL vmlinux 0x1f5ee4f7 ip_getsockopt -EXPORT_SYMBOL vmlinux 0x1f676736 max8998_read_reg -EXPORT_SYMBOL vmlinux 0x1f6c698e mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x1f7c44ba of_parse_phandle -EXPORT_SYMBOL vmlinux 0x1f8c1ec0 dquot_drop -EXPORT_SYMBOL vmlinux 0x1f9ad3af napi_schedule_prep -EXPORT_SYMBOL vmlinux 0x1fb5b134 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fc0aea7 dma_resv_copy_fences -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 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200292e8 nf_ip6_checksum -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 0x202ff240 elv_rb_find -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 0x205e0ffc vme_register_driver -EXPORT_SYMBOL vmlinux 0x206c33a6 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x206fd485 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20aa3b6a tcp_release_cb -EXPORT_SYMBOL vmlinux 0x20c5426e seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0x20c5ddf0 sock_release -EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20e3e0fd clocksource_unregister -EXPORT_SYMBOL vmlinux 0x20f6ba7c pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x20f7d4ad mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize -EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context -EXPORT_SYMBOL vmlinux 0x212db40d md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc -EXPORT_SYMBOL vmlinux 0x213bfdfd tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x213ea1b6 tty_vhangup -EXPORT_SYMBOL vmlinux 0x213fdc3c ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x216dc268 giveup_all -EXPORT_SYMBOL vmlinux 0x217e3a26 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x2181e2f4 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x218a751e tcp_poll -EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x21963432 bio_endio -EXPORT_SYMBOL vmlinux 0x21977dad serio_close -EXPORT_SYMBOL vmlinux 0x219fb1fb watchdog_register_governor -EXPORT_SYMBOL vmlinux 0x21a4dd81 seq_write -EXPORT_SYMBOL vmlinux 0x21b60242 bit_waitqueue -EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance -EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21c3bf1b agp_copy_info -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 0x21e5655b xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0x21e85c35 deactivate_super -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x22307d61 d_alloc_name -EXPORT_SYMBOL vmlinux 0x22576b6c qdisc_hash_del -EXPORT_SYMBOL vmlinux 0x22578332 simple_fill_super -EXPORT_SYMBOL vmlinux 0x2266987d _dev_err -EXPORT_SYMBOL vmlinux 0x22944839 input_unregister_handle -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 0x22b392ec inet_getname -EXPORT_SYMBOL vmlinux 0x22b43883 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x22ba5a8f register_md_personality -EXPORT_SYMBOL vmlinux 0x22c01a77 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x22c82ed4 dev_disable_lro -EXPORT_SYMBOL vmlinux 0x22d46619 ll_rw_block -EXPORT_SYMBOL vmlinux 0x22db1be6 security_sk_clone -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 0x230ff02a xfrm_alloc_spi -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 0x2361046f __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x23619cff jiffies_64 -EXPORT_SYMBOL vmlinux 0x23621522 mmc_retune_pause -EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x236d74eb __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x2377f7b4 md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x2392d2e8 __traceiter_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x23b4cbe7 dquot_acquire -EXPORT_SYMBOL vmlinux 0x23b5b617 mempool_create -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x23f14f94 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x23f4bea6 lookup_one_len -EXPORT_SYMBOL vmlinux 0x23f737c0 page_pool_return_skb_page -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x24147f35 trace_event_printf -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 0x2428a4a3 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x24481d21 of_node_to_nid -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 0x24adfdaa pci_get_subsys -EXPORT_SYMBOL vmlinux 0x24bb75e0 elv_rb_add -EXPORT_SYMBOL vmlinux 0x24c83587 pci_read_vpd -EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24e479ab elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x24f8890c qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x250788f0 rename_lock -EXPORT_SYMBOL vmlinux 0x250c2130 xfrm_state_add -EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x2523948e agp_find_bridge -EXPORT_SYMBOL vmlinux 0x253dde39 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x254c9287 ioremap -EXPORT_SYMBOL vmlinux 0x254e2a14 skb_checksum_help -EXPORT_SYMBOL vmlinux 0x25725192 tcf_block_put -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x259b2f35 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x25a2b0b4 tty_port_close -EXPORT_SYMBOL vmlinux 0x25a77d1a vfs_tmpfile -EXPORT_SYMBOL vmlinux 0x25be6045 give_up_console -EXPORT_SYMBOL vmlinux 0x25db6c86 lookup_one_positive_unlocked -EXPORT_SYMBOL vmlinux 0x25e3c287 qdisc_put_unlocked -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 0x26599920 param_get_bool -EXPORT_SYMBOL vmlinux 0x2662aade blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x266751b7 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x266f6283 __inc_node_page_state -EXPORT_SYMBOL vmlinux 0x267104dd tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc -EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x268b1326 kthread_create_worker -EXPORT_SYMBOL vmlinux 0x268efa5a vmap -EXPORT_SYMBOL vmlinux 0x26931cfc _dev_alert -EXPORT_SYMBOL vmlinux 0x2698f51b kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x269deae8 __destroy_inode -EXPORT_SYMBOL vmlinux 0x26b73d1d flow_rule_match_ct -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be -EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x270d8990 inet_frag_pull_head -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 0x276f6415 devm_of_clk_del_provider -EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string -EXPORT_SYMBOL vmlinux 0x277ecee1 down_write -EXPORT_SYMBOL vmlinux 0x277f2f7b inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27a990ef sock_queue_err_skb -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 0x27c87cbd nf_hook_slow_list -EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27dce74b pnv_cxl_alloc_hwirq_ranges -EXPORT_SYMBOL vmlinux 0x27fddcdc __devm_mdiobus_register -EXPORT_SYMBOL vmlinux 0x28088eba inet_accept -EXPORT_SYMBOL vmlinux 0x2817e3f9 ___pskb_trim -EXPORT_SYMBOL vmlinux 0x28180033 param_get_hexint -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x28458fff shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x285351d4 iw_handler_get_spy -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 0x289a7a42 agp_enable -EXPORT_SYMBOL vmlinux 0x28b0e182 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -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 0x2951d01d inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x295c09b5 vma_set_file -EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -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 0x29a1e214 release_pages -EXPORT_SYMBOL vmlinux 0x29b2a9d7 mipi_dsi_compression_mode -EXPORT_SYMBOL vmlinux 0x29bf4735 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x29e16369 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29f0fb17 param_get_string -EXPORT_SYMBOL vmlinux 0x2a0c085d netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0x2a147d0e phy_start_cable_test -EXPORT_SYMBOL vmlinux 0x2a2e40be of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -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 0x2aabcdc8 vmalloc_array -EXPORT_SYMBOL vmlinux 0x2ad6f09e i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0x2b04ae9b udp_prot -EXPORT_SYMBOL vmlinux 0x2b4428d2 skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0x2b708263 __skb_vlan_pop -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 0x2bceff85 __skb_pad -EXPORT_SYMBOL vmlinux 0x2bddb5df backlight_device_get_by_type -EXPORT_SYMBOL vmlinux 0x2beb46ee inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x2bedede8 blkdev_put -EXPORT_SYMBOL vmlinux 0x2bff2b63 blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c3ac457 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x2c4dc895 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x2c4de3ed backlight_device_register -EXPORT_SYMBOL vmlinux 0x2c5ea2e6 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x2c66a707 empty_aops -EXPORT_SYMBOL vmlinux 0x2c74b162 param_ops_bool -EXPORT_SYMBOL vmlinux 0x2c83c270 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x2c90e039 skb_queue_head -EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -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 0x2d20407f build_skb -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 -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 0x2d830d30 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x2d83ba64 dev_uc_sync_multiple -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 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 0x2dc91a0d md_write_start -EXPORT_SYMBOL vmlinux 0x2dcdea36 chip_to_vas_id -EXPORT_SYMBOL vmlinux 0x2dce19f1 __wait_on_bit -EXPORT_SYMBOL vmlinux 0x2dd41c22 iptun_encaps -EXPORT_SYMBOL vmlinux 0x2df6080a pci_free_irq_vectors -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 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2e713fa0 vfs_parse_fs_param_source -EXPORT_SYMBOL vmlinux 0x2e91ef3f twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x2e938bc7 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x2e9fff72 of_get_next_cpu_node -EXPORT_SYMBOL vmlinux 0x2ebd4cbc unpin_user_pages -EXPORT_SYMBOL vmlinux 0x2ec6258e ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ecf8bbd _dev_crit -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 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 0x2f1254d1 ucc_tdm_init -EXPORT_SYMBOL vmlinux 0x2f1b719d mmc_can_trim -EXPORT_SYMBOL vmlinux 0x2f2198f3 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security -EXPORT_SYMBOL vmlinux 0x2f36e469 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x2f3cbf3e tcp_parse_options -EXPORT_SYMBOL vmlinux 0x2f473e94 xp_alloc -EXPORT_SYMBOL vmlinux 0x2f4dd4c1 flush_all_to_thread -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 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f8264bd gtm_get_timer16 -EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock -EXPORT_SYMBOL vmlinux 0x2fc78fcc xa_erase -EXPORT_SYMBOL vmlinux 0x2fca728a phy_device_free -EXPORT_SYMBOL vmlinux 0x2fcb8fba rio_query_mport -EXPORT_SYMBOL vmlinux 0x2fddc03a alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x300fbb4d seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0x30194edd __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x301db1b1 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x3025af75 key_validate -EXPORT_SYMBOL vmlinux 0x302f2fb6 generic_error_remove_page -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 0x30601c8f tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0x306cf2e0 proc_set_size -EXPORT_SYMBOL vmlinux 0x306f6a06 ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a4f858 sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id -EXPORT_SYMBOL vmlinux 0x30bcac03 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x30d59cfb request_firmware -EXPORT_SYMBOL vmlinux 0x30de7c0e path_get -EXPORT_SYMBOL vmlinux 0x30efca84 make_kprojid -EXPORT_SYMBOL vmlinux 0x30fd2788 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x3111a27f blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x31137fb0 mdiobus_scan -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 0x319d90ed dev_open -EXPORT_SYMBOL vmlinux 0x31b1a41c __debugger_fault_handler -EXPORT_SYMBOL vmlinux 0x31b505ae nf_log_trace -EXPORT_SYMBOL vmlinux 0x31be2509 vga_con -EXPORT_SYMBOL vmlinux 0x3203cd9f irq_domain_set_info -EXPORT_SYMBOL vmlinux 0x320f861c phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x3217c3a3 __memset32 -EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd -EXPORT_SYMBOL vmlinux 0x3242f795 blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0x3250de25 serio_bus -EXPORT_SYMBOL vmlinux 0x325ab32b phy_device_register -EXPORT_SYMBOL vmlinux 0x325cb0ab flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0x3268529c tcf_em_unregister -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 0x32856dee jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x32b54e05 tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0x32b7d5b2 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x32c3f8dd security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32da4e60 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x331618a4 component_match_add_release -EXPORT_SYMBOL vmlinux 0x331ceec1 md_bitmap_free -EXPORT_SYMBOL vmlinux 0x331e0c09 dma_supported -EXPORT_SYMBOL vmlinux 0x33261d8c twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x33328494 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down -EXPORT_SYMBOL vmlinux 0x3352a140 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x338b5fa1 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x3398c8d3 generic_setlease -EXPORT_SYMBOL vmlinux 0x33a57896 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page -EXPORT_SYMBOL vmlinux 0x33cae023 dump_skip_to -EXPORT_SYMBOL vmlinux 0x33e0a386 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x33e6c468 __frontswap_test -EXPORT_SYMBOL vmlinux 0x33ee6102 sk_stop_timer -EXPORT_SYMBOL vmlinux 0x33f05011 copy_page_to_iter -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 0x34068dbc filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x3409511d xfrm4_rcv -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 0x3441e860 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x3443300d block_truncate_page -EXPORT_SYMBOL vmlinux 0x345305bf ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x345c8916 strict_msr_control -EXPORT_SYMBOL vmlinux 0x3463a1b7 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x348b91d2 jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0x34943597 seq_printf -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x349f791a vfs_create_mount -EXPORT_SYMBOL vmlinux 0x34a2a59f giveup_fpu -EXPORT_SYMBOL vmlinux 0x34c0b4ea unix_attach_fds -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 0x34fd42f0 xp_dma_unmap -EXPORT_SYMBOL vmlinux 0x35105e0e bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x35257e6c epapr_hypercall_start -EXPORT_SYMBOL vmlinux 0x352bb201 xa_store -EXPORT_SYMBOL vmlinux 0x35306693 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x355f4593 fget_raw -EXPORT_SYMBOL vmlinux 0x3564593f cdrom_release -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x35701ddd tcf_qevent_handle -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 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35af05da phy_device_create -EXPORT_SYMBOL vmlinux 0x35b6bd1c alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 -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 0x362736a4 vga_put -EXPORT_SYMBOL vmlinux 0x36549729 inet_release -EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x3668ddfb pmem_sector_size -EXPORT_SYMBOL vmlinux 0x36807290 netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0x3681cef9 security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0x3684b4a4 get_fs_type -EXPORT_SYMBOL vmlinux 0x3688c278 from_kprojid -EXPORT_SYMBOL vmlinux 0x36a51148 napi_get_frags -EXPORT_SYMBOL vmlinux 0x36baf7a7 arp_create -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 0x36e9e093 mptcp_subflow_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x36e9ed59 generic_file_fsync -EXPORT_SYMBOL vmlinux 0x36eaafe2 __cpu_active_mask -EXPORT_SYMBOL vmlinux 0x36f67788 phy_get_pause -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 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x374969b9 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x374d90bf dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream -EXPORT_SYMBOL vmlinux 0x377dc3a7 mdiobus_free -EXPORT_SYMBOL vmlinux 0x37878579 eth_header_parse -EXPORT_SYMBOL vmlinux 0x3788b32a blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x3789b258 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x37947189 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x3795bbc6 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0x37b48ce9 fwnode_phy_find_device -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -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 0x38212133 security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0x38221ba7 ipmr_rule_default -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 0x3854774b kstrtoll -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 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 0x38c4f8a2 may_setattr -EXPORT_SYMBOL vmlinux 0x38d540e9 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x38de28cd revert_creds -EXPORT_SYMBOL vmlinux 0x38ed94eb tcp_simple_retransmit -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 0x39390770 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x393accd1 tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach -EXPORT_SYMBOL vmlinux 0x394ad9e4 dev_get_by_name -EXPORT_SYMBOL vmlinux 0x394da354 __vfs_getxattr -EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x3956deef flow_rule_match_meta -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 0x399df280 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39b8761c __dquot_free_space -EXPORT_SYMBOL vmlinux 0x39f9e18c dma_fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x39fafd94 tcf_exts_change -EXPORT_SYMBOL vmlinux 0x3a0f0fcf tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc -EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x3a38e7c7 fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0x3a3b28fc kobject_init -EXPORT_SYMBOL vmlinux 0x3a43910d pci_enable_ptm -EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a5ff8b6 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0x3a6a5551 from_kgid -EXPORT_SYMBOL vmlinux 0x3a875620 __xa_store -EXPORT_SYMBOL vmlinux 0x3ab59f61 _dev_notice -EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3afd8640 pci_restore_state -EXPORT_SYMBOL vmlinux 0x3b05e5a4 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x3b0b4f27 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x3b1bb98b pci_release_region -EXPORT_SYMBOL vmlinux 0x3b1be733 inet_del_protocol -EXPORT_SYMBOL vmlinux 0x3b1e945b pnv_cxl_release_hwirq_ranges -EXPORT_SYMBOL vmlinux 0x3b1f8579 simple_dir_operations -EXPORT_SYMBOL vmlinux 0x3b2d4fbe __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b4df80e __alloc_disk_node -EXPORT_SYMBOL vmlinux 0x3b528ed8 sk_wait_data -EXPORT_SYMBOL vmlinux 0x3b5df07e inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b65ee55 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x3b6a78d7 skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint -EXPORT_SYMBOL vmlinux 0x3b77064d import_iovec -EXPORT_SYMBOL vmlinux 0x3b7ea51a phy_find_first -EXPORT_SYMBOL vmlinux 0x3b84c50c tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0x3b9432b4 sock_from_file -EXPORT_SYMBOL vmlinux 0x3b9f70dc scsi_register_driver -EXPORT_SYMBOL vmlinux 0x3bae7fb8 __skb_ext_del -EXPORT_SYMBOL vmlinux 0x3bb31b09 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x3bbed9a5 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x3bc1fd1f pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x3bd03cec lock_page_memcg -EXPORT_SYMBOL vmlinux 0x3bd55276 of_mdiobus_child_is_phy -EXPORT_SYMBOL vmlinux 0x3bdaaeb8 iov_iter_pipe -EXPORT_SYMBOL vmlinux 0x3be0ca65 udp_set_csum -EXPORT_SYMBOL vmlinux 0x3be175be phy_stop -EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -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 0x3c06c1ac pcie_ptm_enabled -EXPORT_SYMBOL vmlinux 0x3c0aa598 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr -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 0x3c40629f dev_activate -EXPORT_SYMBOL vmlinux 0x3c480e81 rproc_get_by_child -EXPORT_SYMBOL vmlinux 0x3c5d1302 __ip_options_compile -EXPORT_SYMBOL vmlinux 0x3ca2e29f __sk_dst_check -EXPORT_SYMBOL vmlinux 0x3ca4bb06 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x3ca66be8 page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0x3cb6da26 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x3cc42247 rproc_set_firmware -EXPORT_SYMBOL vmlinux 0x3cd4a49d of_graph_is_present -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3cecd228 skb_expand_head -EXPORT_SYMBOL vmlinux 0x3d275134 i8042_install_filter -EXPORT_SYMBOL vmlinux 0x3d2ae135 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x3d370161 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x3d3a459c __of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x3d478536 clear_bdi_congested -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 0x3d5f2101 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0x3d666c30 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x3d862734 tty_port_put -EXPORT_SYMBOL vmlinux 0x3d9ad418 inet_proto_csum_replace4 -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 0x3dc03f08 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x3dc27ee7 d_add -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 0x3e108bff blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0x3e336dbb page_pool_destroy -EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e51d096 __traceiter_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x3e684e5e inet_shutdown -EXPORT_SYMBOL vmlinux 0x3e759c2e nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0x3e853cf4 dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0x3e896727 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x3e9dcc37 pid_task -EXPORT_SYMBOL vmlinux 0x3e9f27c8 pci_claim_resource -EXPORT_SYMBOL vmlinux 0x3ea1b6e4 __stack_chk_fail -EXPORT_SYMBOL vmlinux 0x3eb19209 simple_statfs -EXPORT_SYMBOL vmlinux 0x3ebce3dd __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x3ec2426c touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x3ec2f228 gnet_stats_start_copy_compat -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 0x3ef593cc netdev_reset_tc -EXPORT_SYMBOL vmlinux 0x3efd548c __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3eff19e3 generic_file_llseek -EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f219897 __udp_disconnect -EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec -EXPORT_SYMBOL vmlinux 0x3f44ed57 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f6465c4 __xfrm_policy_check -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 0x3fb9f764 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fc12136 devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fdeeebe generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x4007cbbf xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x400fa1d2 inet6_offloads -EXPORT_SYMBOL vmlinux 0x40260e18 ethtool_rx_flow_rule_destroy -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 0x4078620b filemap_invalidate_lock_two -EXPORT_SYMBOL vmlinux 0x407996dd inet_del_offload -EXPORT_SYMBOL vmlinux 0x408792c1 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x40a165a2 mntget -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40b07ed7 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x40b84fcc param_ops_hexint -EXPORT_SYMBOL vmlinux 0x40be8c1e inet_get_local_port_range -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 0x40d5c3f1 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams -EXPORT_SYMBOL vmlinux 0x40e62120 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x40f37b03 nla_reserve -EXPORT_SYMBOL vmlinux 0x40f4641f ip_check_defrag -EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc -EXPORT_SYMBOL vmlinux 0x40ff433e mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x41047288 vfs_get_link -EXPORT_SYMBOL vmlinux 0x410de385 mini_qdisc_pair_swap -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 0x415e0672 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x4174ec34 configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x41792a3a cdev_del -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -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 0x41b512e9 dquot_alloc -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 0x422349ac devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x42261123 try_to_release_page -EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x42405c63 get_tree_keyed -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x4249f682 vfs_get_tree -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -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 0x4263830d inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x42736793 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x427731bc phy_driver_register -EXPORT_SYMBOL vmlinux 0x42787842 filemap_map_pages -EXPORT_SYMBOL vmlinux 0x42971504 xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0x42aa7da4 bdev_read_only -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 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4303e468 serio_interrupt -EXPORT_SYMBOL vmlinux 0x4306dd8f vif_device_init -EXPORT_SYMBOL vmlinux 0x4312f0c6 d_rehash -EXPORT_SYMBOL vmlinux 0x4316fbbf seq_puts -EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate -EXPORT_SYMBOL vmlinux 0x4322f9a8 can_nice -EXPORT_SYMBOL vmlinux 0x43307782 neigh_parms_release -EXPORT_SYMBOL vmlinux 0x433efbf2 scsi_host_busy -EXPORT_SYMBOL vmlinux 0x4349de75 of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x43530e86 dev_change_proto_down_generic -EXPORT_SYMBOL vmlinux 0x436714e2 sk_free -EXPORT_SYMBOL vmlinux 0x436c6cb5 fs_param_is_blockdev -EXPORT_SYMBOL vmlinux 0x43771831 fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x4380d34b fb_set_suspend -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 0x43b04031 __inet_hash -EXPORT_SYMBOL vmlinux 0x43c82edf wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43e4ae3b dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x43e58bdb __post_watch_notification -EXPORT_SYMBOL vmlinux 0x43f654ba tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember -EXPORT_SYMBOL vmlinux 0x441acb10 nf_reinject -EXPORT_SYMBOL vmlinux 0x441b8082 __blk_rq_map_sg -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 0x4437c144 eth_validate_addr -EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq -EXPORT_SYMBOL vmlinux 0x4467d6c9 vfs_link -EXPORT_SYMBOL vmlinux 0x446dec79 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x4474dcf2 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x4480c1f0 xfrm_trans_queue_net -EXPORT_SYMBOL vmlinux 0x4488bc8a prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x44d34e77 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x44dc3c28 task_work_add -EXPORT_SYMBOL vmlinux 0x44dfcb7a vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x44e03d3a gen_pool_dma_zalloc -EXPORT_SYMBOL vmlinux 0x44e668ba kill_anon_super -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44efb6d6 vfs_symlink -EXPORT_SYMBOL vmlinux 0x44f00c04 fs_param_is_path -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 0x4515915c netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0x452287df gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x452b22e7 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -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 0x45658d20 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x4565994a xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0x457678d3 dquot_disable -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -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 0x45ce9999 d_alloc -EXPORT_SYMBOL vmlinux 0x45d54e0e jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x45eb6aaa skb_copy_expand -EXPORT_SYMBOL vmlinux 0x45f1a888 set_anon_super_fc -EXPORT_SYMBOL vmlinux 0x45f37c99 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x46001d34 percpu_counter_add_batch -EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x460fbe0c done_path_create -EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents -EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user -EXPORT_SYMBOL vmlinux 0x462356e1 __page_symlink -EXPORT_SYMBOL vmlinux 0x4626b420 fs_param_is_blob -EXPORT_SYMBOL vmlinux 0x46632bbe dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x4674ec42 __pgd_val_bits -EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x46bda794 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46f1b410 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x46f9f2b5 xa_find_after -EXPORT_SYMBOL vmlinux 0x46ffa157 jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0x4705107d xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset -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 0x475943d4 rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x477a2287 scm_detach_fds -EXPORT_SYMBOL vmlinux 0x479f5d4c __ps2_command -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 0x47cfd825 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0x47d9acef rproc_add_carveout -EXPORT_SYMBOL vmlinux 0x47e86954 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x4803885d bio_free_pages -EXPORT_SYMBOL vmlinux 0x480415bb sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x4807a2a2 dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0x480ebc60 xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0x481177bb put_devmap_managed_page -EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x4818cc03 sock_create_lite -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 0x4831c851 ip_mc_check_igmp -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 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 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 0x48a81d7e vfio_group_pin_pages -EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48b08494 __lock_page -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48d6ad6c genphy_setup_forced -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 0x4937e172 napi_gro_flush -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 0x4956ab1c __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x496f41c7 param_get_ushort -EXPORT_SYMBOL vmlinux 0x497d4d80 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x49805675 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize -EXPORT_SYMBOL vmlinux 0x499bfc6d __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x49a516bd __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x49a9a182 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x49cb4acb tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x49e136aa d_exact_alias -EXPORT_SYMBOL vmlinux 0x49e28e5a udp6_seq_ops -EXPORT_SYMBOL vmlinux 0x49e42c69 phy_suspend -EXPORT_SYMBOL vmlinux 0x49e49d5b mark_info_dirty -EXPORT_SYMBOL vmlinux 0x49ff17fa udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x4a09b6ca vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 -EXPORT_SYMBOL vmlinux 0x4a4623f3 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x4a55c8ea ioremap_wc -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 0x4a9c81b2 srp_rport_get -EXPORT_SYMBOL vmlinux 0x4a9f58a9 vc_cons -EXPORT_SYMBOL vmlinux 0x4ab90e16 kvmppc_hv_find_lock_hpte -EXPORT_SYMBOL vmlinux 0x4abe3eb4 __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0x4ad2a57a opal_event_request -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 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b15b71d km_policy_notify -EXPORT_SYMBOL vmlinux 0x4b222adc netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x4b369246 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b738195 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x4b7e55ca reuseport_alloc -EXPORT_SYMBOL vmlinux 0x4b97c74b netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x4bbf1b6b mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x4be07305 xfrm4_protocol_deregister -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 0x4c38d4e0 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c45aebf __i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x4c5fe6b1 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x4c9465d0 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x4ca8a541 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x4cba06ad hmm_range_fault -EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x4cc6534b cpu_l2_cache_map -EXPORT_SYMBOL vmlinux 0x4d0b5a7e kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x4d0c90e3 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x4d11de4e dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x4d379ce5 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x4d4ed69c pci_reenable_device -EXPORT_SYMBOL vmlinux 0x4d5c654f blk_mq_init_allocated_queue -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 0x4daddb26 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x4dbd042e scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x4dc371e3 lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0x4ddf1f81 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x4ddf3d33 proc_mkdir -EXPORT_SYMBOL vmlinux 0x4de997af config_group_init -EXPORT_SYMBOL vmlinux 0x4dec735c vlan_vid_add -EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be -EXPORT_SYMBOL vmlinux 0x4df1a439 inet_listen -EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read -EXPORT_SYMBOL vmlinux 0x4df45de3 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x4e2e95e5 inet_sendmsg -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow -EXPORT_SYMBOL vmlinux 0x4e3b0b37 nf_hook_slow -EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e752227 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x4ea6df13 finish_swait -EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0x4eb7ae3d hvc_get_chars -EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ee25535 dst_init -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f20a370 skb_find_text -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f2e7998 PageMovable -EXPORT_SYMBOL vmlinux 0x4f394b18 dec_node_page_state -EXPORT_SYMBOL vmlinux 0x4f5ad1bd neigh_xmit -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 0x4fbbc09c ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x4fbe93cf write_inode_now -EXPORT_SYMBOL vmlinux 0x4fc95eaa fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x4fdc6499 pneigh_lookup -EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x4fdf4b11 sock_no_linger -EXPORT_SYMBOL vmlinux 0x4ff0c72f dst_discard_out -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 0x501c9fa9 blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0x503e5e83 generic_write_end -EXPORT_SYMBOL vmlinux 0x50624917 sha1_init -EXPORT_SYMBOL vmlinux 0x506a6594 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x506d0a7d pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x5079c9d7 __pte_index_size -EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check -EXPORT_SYMBOL vmlinux 0x508fe2d4 seq_lseek -EXPORT_SYMBOL vmlinux 0x509143b3 devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu -EXPORT_SYMBOL vmlinux 0x509b1812 mpage_readpage -EXPORT_SYMBOL vmlinux 0x509d4a2b __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0x50aba2d2 gro_find_complete_by_type -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 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin -EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf -EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr -EXPORT_SYMBOL vmlinux 0x5111b1ad __break_lease -EXPORT_SYMBOL vmlinux 0x5119ddfe jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x513cccbb jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x5147584f phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x5164da54 ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x5167b0be kfree_skb_list -EXPORT_SYMBOL vmlinux 0x517fd661 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x518540ac dup_iter -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 0x51d33805 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0x51e2a4bc fqdir_exit -EXPORT_SYMBOL vmlinux 0x51e51c46 bio_kmalloc -EXPORT_SYMBOL vmlinux 0x51e69ee7 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x51f3ecc3 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x520dfd08 param_set_uint -EXPORT_SYMBOL vmlinux 0x5211ec1f register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x521e46fa capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x52442253 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x524c9fb7 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x525db41a csum_partial_copy_generic -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 0x52859605 lru_cache_add -EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x529f1129 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x52a3f055 xfrm_state_free -EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52dc2d7d dma_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x52e2669f inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0x52e896fd mmu_feature_keys -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 0x5305be13 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x53061e1a __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x5308e350 __vmalloc_start -EXPORT_SYMBOL vmlinux 0x5309b27c param_get_uint -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -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 0x5356bcd5 __sock_i_ino -EXPORT_SYMBOL vmlinux 0x535d2f61 __nla_put_64bit -EXPORT_SYMBOL vmlinux 0x5380197e nvdimm_check_and_set_ro -EXPORT_SYMBOL vmlinux 0x5389c3aa inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x538b5c88 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x53ae167b blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x53b79bb0 simple_nosetlease -EXPORT_SYMBOL vmlinux 0x53d25083 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0x53d4bf93 sk_stream_error -EXPORT_SYMBOL vmlinux 0x53e14182 scsi_register_interface -EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock -EXPORT_SYMBOL vmlinux 0x53fb3f5d ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x54009548 of_phy_find_device -EXPORT_SYMBOL vmlinux 0x5412c7c7 up -EXPORT_SYMBOL vmlinux 0x54135038 param_set_byte -EXPORT_SYMBOL vmlinux 0x543215c6 udp_ioctl -EXPORT_SYMBOL vmlinux 0x543aaddf neigh_app_ns -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 0x545c0ad4 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x54768763 rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0x548026ef phy_init_eee -EXPORT_SYMBOL vmlinux 0x548c699a to_nd_pfn -EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value -EXPORT_SYMBOL vmlinux 0x54bb954e xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x54bec89b backlight_device_get_by_name -EXPORT_SYMBOL vmlinux 0x54c82b76 simple_release_fs -EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x54d93e9c mmc_put_card -EXPORT_SYMBOL vmlinux 0x54e0f3a1 jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0x54e3d5fd __pmd_frag_nr -EXPORT_SYMBOL vmlinux 0x54e4730a ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54fd5c17 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x550051d8 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x550ef898 pci_write_config_dword -EXPORT_SYMBOL vmlinux 0x5510fe92 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x551ca0ed thaw_super -EXPORT_SYMBOL vmlinux 0x551d9b79 tcp_md5_do_del -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 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 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x5599dd89 lookup_one_unlocked -EXPORT_SYMBOL vmlinux 0x55a6ca2c pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x55ab8a66 set_capacity -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 0x562e9776 fsl_lbc_find -EXPORT_SYMBOL vmlinux 0x5633d48a fc_mount -EXPORT_SYMBOL vmlinux 0x56358ba1 mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x56368164 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x563d860a send_sig -EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk -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 0x568d726b sg_miter_start -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 0x56b4ef8d netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x56b569c6 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x56b5d3ed ihold -EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress -EXPORT_SYMBOL vmlinux 0x56c31b07 wake_up_process -EXPORT_SYMBOL vmlinux 0x56c3b75c secpath_set -EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56cad0fc seq_pad -EXPORT_SYMBOL vmlinux 0x56e2564c set_anon_super -EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x5708915d key_type_keyring -EXPORT_SYMBOL vmlinux 0x571442c6 of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x572ae748 dma_fence_chain_ops -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 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x57798e05 seq_putc -EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx -EXPORT_SYMBOL vmlinux 0x578c7379 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x579c950b devm_iounmap -EXPORT_SYMBOL vmlinux 0x579d96f6 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x579fd914 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x57a37630 tso_build_data -EXPORT_SYMBOL vmlinux 0x57c6c0cb key_reject_and_link -EXPORT_SYMBOL vmlinux 0x57cd8afd neigh_destroy -EXPORT_SYMBOL vmlinux 0x57ea599d vmemmap -EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info -EXPORT_SYMBOL vmlinux 0x57f7fd10 netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0x58065742 param_ops_uint -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 0x587b0954 kvasprintf -EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc -EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x5888fbbb kernel_getpeername -EXPORT_SYMBOL vmlinux 0x58947e18 memory_cgrp_subsys -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 0x58b77505 dev_change_proto_down_reason -EXPORT_SYMBOL vmlinux 0x58bc366b agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0x58cb15b3 fb_set_cmap -EXPORT_SYMBOL vmlinux 0x58cd120b __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x58d094cf __register_nls -EXPORT_SYMBOL vmlinux 0x58d8ded8 __ip_dev_find -EXPORT_SYMBOL vmlinux 0x58e02405 kernel_accept -EXPORT_SYMBOL vmlinux 0x58e2737b fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58ed3b64 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x58faa703 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x590b648e scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x59128802 dev_mc_init -EXPORT_SYMBOL vmlinux 0x592359df generic_file_open -EXPORT_SYMBOL vmlinux 0x5923c773 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x595a49ca skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page -EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5965add3 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x596ab361 cad_pid -EXPORT_SYMBOL vmlinux 0x596ce4d3 audit_log_start -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 0x5985886f ip_frag_next -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 0x59d75643 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x59e0cb48 vfs_readlink -EXPORT_SYMBOL vmlinux 0x59e5566e vga_client_register -EXPORT_SYMBOL vmlinux 0x59e83977 request_key_tag -EXPORT_SYMBOL vmlinux 0x59f22020 cdev_init -EXPORT_SYMBOL vmlinux 0x59f40db2 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0x59fcbe3d kernel_getsockname -EXPORT_SYMBOL vmlinux 0x5a025f7b arch_local_irq_restore -EXPORT_SYMBOL vmlinux 0x5a032030 gtm_put_timer16 -EXPORT_SYMBOL vmlinux 0x5a06bc89 mmc_detect_change -EXPORT_SYMBOL vmlinux 0x5a088923 up_write -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a11786e vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x5a23abb2 consume_skb -EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5a29bf41 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq -EXPORT_SYMBOL vmlinux 0x5a48df11 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a54e6a1 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict -EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove -EXPORT_SYMBOL vmlinux 0x5ab4bd20 param_set_ullong -EXPORT_SYMBOL vmlinux 0x5abfeaa6 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x5ac29105 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x5adad8e9 tty_unthrottle -EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5ae82057 inet6_release -EXPORT_SYMBOL vmlinux 0x5b09bd7e get_acl -EXPORT_SYMBOL vmlinux 0x5b315e59 set_disk_ro -EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax -EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present -EXPORT_SYMBOL vmlinux 0x5b45988f neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b6eeeed follow_pfn -EXPORT_SYMBOL vmlinux 0x5b760467 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x5b89aed4 fwnode_irq_get -EXPORT_SYMBOL vmlinux 0x5b96fbe3 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock -EXPORT_SYMBOL vmlinux 0x5ba72feb netif_tx_stop_all_queues -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 0x5bd4ff88 flow_action_cookie_create -EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5bf22775 __sock_queue_rcv_skb -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 0x5c6bdab5 blk_mq_delay_run_hw_queues -EXPORT_SYMBOL vmlinux 0x5c905b8a xmon -EXPORT_SYMBOL vmlinux 0x5c908a56 set_cached_acl -EXPORT_SYMBOL vmlinux 0x5c928ed0 param_set_short -EXPORT_SYMBOL vmlinux 0x5c937023 of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0x5cabd33b inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x5cbe5a57 fsync_bdev -EXPORT_SYMBOL vmlinux 0x5cbf0619 skb_free_datagram -EXPORT_SYMBOL vmlinux 0x5cbf2ef8 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x5cd3aa16 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5d1f4f74 alloc_fddidev -EXPORT_SYMBOL vmlinux 0x5d322993 eth_type_trans -EXPORT_SYMBOL vmlinux 0x5d35e559 mdiobus_read -EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d59b36e skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x5d6cfc70 genphy_handle_interrupt_no_ack -EXPORT_SYMBOL vmlinux 0x5d7addb4 flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x5d8abba8 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x5d980fc5 _copy_to_iter -EXPORT_SYMBOL vmlinux 0x5da5d4a2 blk_get_queue -EXPORT_SYMBOL vmlinux 0x5daf54b2 phy_validate_pause -EXPORT_SYMBOL vmlinux 0x5db01b36 dev_uc_del -EXPORT_SYMBOL vmlinux 0x5db6f61e sock_no_getname -EXPORT_SYMBOL vmlinux 0x5df37bbe mmc_of_parse_clk_phase -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 0x5e021fc6 has_capability -EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e179492 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e3bae0b nf_ct_attach -EXPORT_SYMBOL vmlinux 0x5e42b1d8 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x5e4b2d68 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x5e4f4e4c jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x5e59ff4d __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x5e6f8e46 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x5e924a44 clear_user_page -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5e99dfca uaccess_flush_key -EXPORT_SYMBOL vmlinux 0x5e9ac96e __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x5ea4b0ec __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x5ea60ddb xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x5ecb18f1 nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5eddb914 lockref_put_return -EXPORT_SYMBOL vmlinux 0x5ee0a3c9 __alloc_pages -EXPORT_SYMBOL vmlinux 0x5ee41d25 nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0x5eeb6cad pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0x5eed1429 inode_nohighmem -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 0x5f284405 inet_put_port -EXPORT_SYMBOL vmlinux 0x5f3c772c dev_load -EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption -EXPORT_SYMBOL vmlinux 0x5f6662fa __ip_select_ident -EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -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 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 0x5fdb0415 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x5fdc5920 genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x6001bad3 tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0x6004d612 phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x6016531a gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x6017cf0e bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602b75cf sock_common_getsockopt -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 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x607a6a5f input_register_device -EXPORT_SYMBOL vmlinux 0x60835f67 sync_file_create -EXPORT_SYMBOL vmlinux 0x6087d073 param_set_int -EXPORT_SYMBOL vmlinux 0x608de8de mdio_device_remove -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 0x60a565d5 ip6_frag_next -EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x61011ccd pci_iomap -EXPORT_SYMBOL vmlinux 0x6118dc26 start_thread -EXPORT_SYMBOL vmlinux 0x6121bd54 dql_init -EXPORT_SYMBOL vmlinux 0x6123fd4d skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get -EXPORT_SYMBOL vmlinux 0x61402acc sock_edemux -EXPORT_SYMBOL vmlinux 0x6147d448 mach_pseries -EXPORT_SYMBOL vmlinux 0x6158a4b3 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x615f2cdf sock_no_connect -EXPORT_SYMBOL vmlinux 0x61601aea input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x6160b320 complete_and_exit -EXPORT_SYMBOL vmlinux 0x6160d47c inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x6161c583 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge -EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x618ba352 __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x61980eae __mdiobus_read -EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61b25e1f i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x61b42918 pci_get_device -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -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 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 0x620fcc8f inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -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 0x623a0758 srp_reconnect_rport -EXPORT_SYMBOL vmlinux 0x624495a4 unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0x6267775c devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x627f7fd3 km_state_expired -EXPORT_SYMBOL vmlinux 0x6280f5d8 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62934f95 page_pool_alloc_frag -EXPORT_SYMBOL vmlinux 0x62957374 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x62a0e24c km_report -EXPORT_SYMBOL vmlinux 0x62a34c08 inc_nlink -EXPORT_SYMBOL vmlinux 0x62aa0ab4 pci_enable_wake -EXPORT_SYMBOL vmlinux 0x62b0c486 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x62b6821c sock_rfree -EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62d541d0 __nlmsg_put -EXPORT_SYMBOL vmlinux 0x62df8b0e netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x62e89cd4 scsi_device_get -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 0x63298735 vfs_fsync -EXPORT_SYMBOL vmlinux 0x634e58ab pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x63505e29 input_register_handle -EXPORT_SYMBOL vmlinux 0x635295c8 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x6357b133 skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0x635c4db9 agp_free_memory -EXPORT_SYMBOL vmlinux 0x635ef92e skb_ensure_writable -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 0x63a3fa9e ndo_dflt_fdb_add -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 0x63bffd8e neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -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 0x6449ca1e netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0x6451717b phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x6451b5fa zpool_register_driver -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 0x646fd017 sock_set_reuseaddr -EXPORT_SYMBOL vmlinux 0x6477f400 devm_of_iomap -EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 -EXPORT_SYMBOL vmlinux 0x64831cb8 xa_extract -EXPORT_SYMBOL vmlinux 0x6487f363 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x649a9fd7 user_path_create -EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64aa92bf refcount_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x64b828f8 of_find_node_by_name -EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64d71e62 netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0x64e8b452 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x64ec1228 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x6506de06 xfrm_state_check_expire -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 0x65373a64 neigh_update -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 0x656b0009 vfio_pin_pages -EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem -EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf -EXPORT_SYMBOL vmlinux 0x657b9994 radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x6582e152 rproc_add_subdev -EXPORT_SYMBOL vmlinux 0x65846d95 block_commit_write -EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x658e4fb2 netif_receive_skb -EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65a72dd5 sk_common_release -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 0x65ea1276 srp_timed_out -EXPORT_SYMBOL vmlinux 0x65eb630b __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x65fb4d65 udp_disconnect -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 0x66628bf3 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin -EXPORT_SYMBOL vmlinux 0x66739caf input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x66810a44 skb_copy_header -EXPORT_SYMBOL vmlinux 0x6694dda0 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x669f8030 arch_free_page -EXPORT_SYMBOL vmlinux 0x66a3be7c netdev_pick_tx -EXPORT_SYMBOL vmlinux 0x66b2dda7 qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup -EXPORT_SYMBOL vmlinux 0x66bef880 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x66ca02ee cpumask_any_but -EXPORT_SYMBOL vmlinux 0x66d4648e flow_rule_alloc -EXPORT_SYMBOL vmlinux 0x66f34eb9 read_cache_pages -EXPORT_SYMBOL vmlinux 0x6717b49c tcp_check_req -EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable -EXPORT_SYMBOL vmlinux 0x67470fe0 scsi_done -EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x676bcbde posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x678c26ee vio_unregister_driver -EXPORT_SYMBOL vmlinux 0x679612d0 i2c_del_driver -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67b7af8f netdev_name_node_alt_create -EXPORT_SYMBOL vmlinux 0x67c23b6d skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0x67d4430a dev_mc_add -EXPORT_SYMBOL vmlinux 0x67e368a6 __nla_reserve -EXPORT_SYMBOL vmlinux 0x67ea0e01 dev_alloc_name -EXPORT_SYMBOL vmlinux 0x67fc472c gen_pool_dma_alloc_align -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 0x684a633e ipv6_dev_find -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 0x686899a8 unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x68712c6c dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x6882f271 start_tty -EXPORT_SYMBOL vmlinux 0x689bb7ee kernel_connect -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 0x68e010fa crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x68e7c574 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x68ec451e iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s -EXPORT_SYMBOL vmlinux 0x6901fb86 ram_aops -EXPORT_SYMBOL vmlinux 0x6909440b __pgd_table_size -EXPORT_SYMBOL vmlinux 0x69159709 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x693245ad dev_uc_sync -EXPORT_SYMBOL vmlinux 0x69341280 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x69585523 __ksize -EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -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 0x6979b9cf mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad -EXPORT_SYMBOL vmlinux 0x6980dc10 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x69a5624b proc_create -EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le -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 0x6a1a7a45 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x6a315bea mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0x6a44b874 nd_dev_to_uuid -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 0x6a82d8f8 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x6a870a90 mmc_gpio_set_cd_wake -EXPORT_SYMBOL vmlinux 0x6a8e2cbd xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x6a9698f4 mac_find_mode -EXPORT_SYMBOL vmlinux 0x6a9f6985 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x6aa38522 tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0x6ab3eedb jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x6abc2535 uart_get_divisor -EXPORT_SYMBOL vmlinux 0x6ade6454 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6afd307d show_init_ipc_ns -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 0x6b831392 eeh_dev_release -EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval -EXPORT_SYMBOL vmlinux 0x6b876330 tty_port_tty_set -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 0x6baac525 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x6badcd1e rproc_resource_cleanup -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -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 0x6c050510 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x6c13790b phy_do_ioctl_running -EXPORT_SYMBOL vmlinux 0x6c28be5a vfio_info_add_capability -EXPORT_SYMBOL vmlinux 0x6c429902 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x6c49a512 timestamp_truncate -EXPORT_SYMBOL vmlinux 0x6c4c5f91 mmc_cqe_recovery -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 0x6c6a3dd9 devm_ioremap_np -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 0x6c843e00 __kfree_skb -EXPORT_SYMBOL vmlinux 0x6c8d355e pipe_unlock -EXPORT_SYMBOL vmlinux 0x6c972fe2 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x6c99e24e udp_gro_complete -EXPORT_SYMBOL vmlinux 0x6cac832f sync_filesystem -EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cc09945 ioread32_rep -EXPORT_SYMBOL vmlinux 0x6ccdbcac set_binfmt -EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums -EXPORT_SYMBOL vmlinux 0x6cf2511b pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x6cf8dddb inet_bind -EXPORT_SYMBOL vmlinux 0x6d1fec06 netdev_sk_get_lowest_dev -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d3bdb79 ether_setup -EXPORT_SYMBOL vmlinux 0x6d4c7e78 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x6d5121d1 dma_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x6d525ac2 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x6d55370a dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0x6d653125 __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x6d6efb9a vme_bus_num -EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d7e7f73 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x6d82bb57 dev_add_pack -EXPORT_SYMBOL vmlinux 0x6d8de428 of_device_get_match_data -EXPORT_SYMBOL vmlinux 0x6d8e4a58 put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0x6d9d6b21 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x6db77498 iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df224f9 udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x6df52fc9 passthru_features_check -EXPORT_SYMBOL vmlinux 0x6e14e3b4 bdev_check_media_change -EXPORT_SYMBOL vmlinux 0x6e313e47 tc_setup_cb_call -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 0x6e8e846a __netif_napi_del -EXPORT_SYMBOL vmlinux 0x6e9a448d __pte_frag_nr -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea60eb0 sock_set_reuseport -EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6edba421 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x6ee8af0b scsi_add_device -EXPORT_SYMBOL vmlinux 0x6ef6633d of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x6f08b1c6 mempool_exit -EXPORT_SYMBOL vmlinux 0x6f1283ee idr_for_each -EXPORT_SYMBOL vmlinux 0x6f30d1a5 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x6f335680 pipe_lock -EXPORT_SYMBOL vmlinux 0x6f3c1dd7 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x6f525a27 rc5t583_ext_power_req_config -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 0x6f87adcc xfrm6_rcv_encap -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 0x6fb49676 queue_rcu_work -EXPORT_SYMBOL vmlinux 0x6fc5461f tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fe5e135 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x6fedb7f0 account_page_redirty -EXPORT_SYMBOL vmlinux 0x6ff183ad msi_bitmap_alloc_hwirqs -EXPORT_SYMBOL vmlinux 0x6ff1fed1 inet_sendpage -EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x7038376c __get_hash_from_flowi6 -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 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 0x70ab586f __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x70b5a8ee con_copy_unimap -EXPORT_SYMBOL vmlinux 0x70c29d5c pci_write_config_byte -EXPORT_SYMBOL vmlinux 0x70dfd9c3 dev_addr_del -EXPORT_SYMBOL vmlinux 0x70ee97df security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0x710929e9 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x710c7c8c tty_write_room -EXPORT_SYMBOL vmlinux 0x7125a8d2 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x7131bf58 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x71380ac8 cpumask_next_wrap -EXPORT_SYMBOL vmlinux 0x7145b4eb ip_fraglist_init -EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x715b225f scsi_remove_target -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 0x71afa006 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x71cdeed6 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0x71d452d3 __neigh_event_send -EXPORT_SYMBOL vmlinux 0x71ebece0 __invalidate_device -EXPORT_SYMBOL vmlinux 0x71ef7671 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x71f68d98 dma_get_sgtable_attrs -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 0x723995c9 __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0x723f30c9 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x7240ff76 devm_clk_release_clkdev -EXPORT_SYMBOL vmlinux 0x7248e771 genphy_resume -EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x72535d2c component_match_add_typed -EXPORT_SYMBOL vmlinux 0x72608c0e do_uaccess_flush -EXPORT_SYMBOL vmlinux 0x726443a8 dev_deactivate -EXPORT_SYMBOL vmlinux 0x7297ea3a mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x729b1731 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x729e7706 security_socket_socketpair -EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable -EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72b3ddfd xsk_tx_peek_release_desc_batch -EXPORT_SYMBOL vmlinux 0x72b8042f input_set_poll_interval -EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72c3707d input_release_device -EXPORT_SYMBOL vmlinux 0x72c6f7f8 i8042_remove_filter -EXPORT_SYMBOL vmlinux 0x72c92838 inet6_getname -EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 -EXPORT_SYMBOL vmlinux 0x72d20d9e tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72f17a38 inet_select_addr -EXPORT_SYMBOL vmlinux 0x73109446 down_interruptible -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 0x7320ec96 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x732d06a3 ptp_cancel_worker_sync -EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x73313ff0 mdio_bus_type -EXPORT_SYMBOL vmlinux 0x73360aff eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x73410724 sock_set_mark -EXPORT_SYMBOL vmlinux 0x7353c56d __lock_sock_fast -EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x7382bb6d i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x738ad91f nf_log_set -EXPORT_SYMBOL vmlinux 0x738dc46d unlock_page_memcg -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 0x73b1f5b2 follow_up -EXPORT_SYMBOL vmlinux 0x73b20740 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x7408929c try_to_writeback_inodes_sb -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 0x7439fd86 radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x7440e648 pps_unregister_source -EXPORT_SYMBOL vmlinux 0x744e2ff5 skb_push -EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x74648e93 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x747bea30 napi_consume_skb -EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x748842e0 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x749bfd83 mmc_card_alternative_gpt_sector -EXPORT_SYMBOL vmlinux 0x74a8e273 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x74aaf646 tty_kref_put -EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss -EXPORT_SYMBOL vmlinux 0x74bbb964 tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c18454 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x74d89aaf pci_iomap_range -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74f1cd69 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x750f257e sock_wfree -EXPORT_SYMBOL vmlinux 0x75113e35 vfs_mkobj -EXPORT_SYMBOL vmlinux 0x751900ff skb_flow_dissect_meta -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 0x754a10d9 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x754f5b2a vme_irq_generate -EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic -EXPORT_SYMBOL vmlinux 0x7568dd66 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x756ec788 scsi_scan_host -EXPORT_SYMBOL vmlinux 0x75920f28 tty_unlock -EXPORT_SYMBOL vmlinux 0x75aa6ca1 __kernel_virt_start -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 0x75f2823b file_modified -EXPORT_SYMBOL vmlinux 0x75f45963 decrementer_clockevent -EXPORT_SYMBOL vmlinux 0x76044e38 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x760e0b95 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0x7620b7d9 register_netdev -EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x762d0b85 agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x765bfdf9 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x76844b35 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x76973463 ip_frag_init -EXPORT_SYMBOL vmlinux 0x7698a5c7 of_get_ibm_chip_id -EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76baffa0 module_refcount -EXPORT_SYMBOL vmlinux 0x76be7017 of_iomap -EXPORT_SYMBOL vmlinux 0x76c409a8 vfs_mknod -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d486ec security_unix_may_send -EXPORT_SYMBOL vmlinux 0x76e8d0c6 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0x76fabbd8 block_write_begin -EXPORT_SYMBOL vmlinux 0x77234d37 downgrade_write -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 0x776ca93a __clzdi2 -EXPORT_SYMBOL vmlinux 0x77808a48 vm_event_states -EXPORT_SYMBOL vmlinux 0x7782d7e1 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x7783f514 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x7793997a noop_llseek -EXPORT_SYMBOL vmlinux 0x77a3172b dquot_transfer -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77d01fa5 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x77d4cd43 md_flush_request -EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77fee50d register_sysctl_table -EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x7820fbb8 md_handle_request -EXPORT_SYMBOL vmlinux 0x7824cd9b neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x7834defd vfio_group_unpin_pages -EXPORT_SYMBOL vmlinux 0x7842a657 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x786acd4a jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x787f23c9 of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x78851d2f _outsb -EXPORT_SYMBOL vmlinux 0x78896548 xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x789e5b50 km_state_notify -EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78a9e905 _numa_mem_ -EXPORT_SYMBOL vmlinux 0x78b11e40 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78ded67a phy_get_internal_delay -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78e0b408 tcp_mmap -EXPORT_SYMBOL vmlinux 0x78ef5204 arp_send -EXPORT_SYMBOL vmlinux 0x78f8674e param_get_charp -EXPORT_SYMBOL vmlinux 0x79072688 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits -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 0x793f481e tso_count_descs -EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin -EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x798c35fe param_get_ulong -EXPORT_SYMBOL vmlinux 0x79900a1e mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x79906ae2 pci_domain_nr -EXPORT_SYMBOL vmlinux 0x799810ec is_nd_pfn -EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79c8d8e4 tcf_qevent_init -EXPORT_SYMBOL vmlinux 0x79d6e540 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0x79e63e00 migrate_page -EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug -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 0x7a276517 ping_prot -EXPORT_SYMBOL vmlinux 0x7a2d6c97 __debugger_ipi -EXPORT_SYMBOL vmlinux 0x7a372130 dev_trans_start -EXPORT_SYMBOL vmlinux 0x7a3dd697 sk_error_report -EXPORT_SYMBOL vmlinux 0x7a5073db proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists -EXPORT_SYMBOL vmlinux 0x7a5ff2cd proto_register -EXPORT_SYMBOL vmlinux 0x7a6e9600 pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0x7a71741f __xa_cmpxchg -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 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7ab5f8c3 _insw_ns -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -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 0x7ad75e53 dev_get_flags -EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum -EXPORT_SYMBOL vmlinux 0x7afa296f generic_writepages -EXPORT_SYMBOL vmlinux 0x7b002a1a find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0x7b069b85 of_get_child_by_name -EXPORT_SYMBOL vmlinux 0x7b0c11f8 neigh_event_ns -EXPORT_SYMBOL vmlinux 0x7b2782a4 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x7b36f9f9 xp_raw_get_data -EXPORT_SYMBOL vmlinux 0x7b5332c9 iov_iter_xarray -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 0x7bb97eee inet_addr_type -EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bd69e89 seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0x7bd8f50d radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0x7bde0c6b blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x7be5bbaa mmc_get_card -EXPORT_SYMBOL vmlinux 0x7bec9901 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x7bed61e7 xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x7bf3f359 nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0x7bfd2985 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x7c058738 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x7c0fd5cd jbd2_fc_end_commit -EXPORT_SYMBOL vmlinux 0x7c12cd3d dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c3f54f9 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c63a098 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x7c73c0cf sock_no_accept -EXPORT_SYMBOL vmlinux 0x7c865edf blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x7c8d937c backlight_force_update -EXPORT_SYMBOL vmlinux 0x7c97bd7c dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7ca9905f agp_backend_release -EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL vmlinux 0x7cbc986e netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0x7cbf9827 dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0x7cd1ae7e vme_irq_handler -EXPORT_SYMBOL vmlinux 0x7cd22bb2 blk_queue_split -EXPORT_SYMBOL vmlinux 0x7cd8cab7 rt_mutex_base_init -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce1bc8e tcp_add_backlog -EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc -EXPORT_SYMBOL vmlinux 0x7ced58ce skb_trim -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d1249e6 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x7d2530c5 kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0x7d299d72 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x7d3871d9 tcp_sock_set_user_timeout -EXPORT_SYMBOL vmlinux 0x7d4574d4 pci_request_regions -EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -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 0x7d7ba2c8 rtnl_notify -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 0x7d88391e mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x7d892ca7 fs_param_is_u32 -EXPORT_SYMBOL vmlinux 0x7da20acc nf_setsockopt -EXPORT_SYMBOL vmlinux 0x7dad6687 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7dc76163 file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max -EXPORT_SYMBOL vmlinux 0x7dd17904 vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0x7dd17a68 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x7dd89cbf gro_cells_receive -EXPORT_SYMBOL vmlinux 0x7de4c0cc devm_rproc_add -EXPORT_SYMBOL vmlinux 0x7def3bf7 skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7dfc8277 isa_mem_base -EXPORT_SYMBOL vmlinux 0x7e026fbb pci_find_bus -EXPORT_SYMBOL vmlinux 0x7e2a8d11 mmc_free_host -EXPORT_SYMBOL vmlinux 0x7e2d6436 ida_free -EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e3ebb8e inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x7e42a8db alloc_pages -EXPORT_SYMBOL vmlinux 0x7e448f63 sock_bindtoindex -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 0x7e5b9cae sock_recvmsg -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 0x7e83af4f bio_init -EXPORT_SYMBOL vmlinux 0x7ea73d65 of_chosen -EXPORT_SYMBOL vmlinux 0x7ead00b1 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x7ebf2604 unregister_qdisc -EXPORT_SYMBOL vmlinux 0x7ec45525 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x7eceba78 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x7ee06785 ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x7eed724c generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f2309be skb_append -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 0x7f52071a net_dim -EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table -EXPORT_SYMBOL vmlinux 0x7f5c1028 param_ops_charp -EXPORT_SYMBOL vmlinux 0x7f705020 __pci_register_driver -EXPORT_SYMBOL vmlinux 0x7f71fb97 xa_load -EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7fad98ef __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x7fb4609f jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x7fb4e344 kthread_blkcg -EXPORT_SYMBOL vmlinux 0x7fcd7128 vfs_getattr -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fee8f05 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x7ffba964 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x800f2ad8 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x8011b113 d_drop -EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x80510daa tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x8062137d seq_read_iter -EXPORT_SYMBOL vmlinux 0x806829e9 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x8091a823 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x809449de tcf_idr_create_from_flags -EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x809c2c84 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x809ea025 pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0x80a437d6 vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0x80ac850e mmc_calc_max_discard -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 0x80e5f86f fscrypt_fname_alloc_buffer -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 0x814856a1 mount_bdev -EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815c6f7e scsi_block_requests -EXPORT_SYMBOL vmlinux 0x8160148d vm_map_pages -EXPORT_SYMBOL vmlinux 0x81606c46 mmc_alloc_host -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 0x818416e1 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0x81878460 padata_free -EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc -EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand -EXPORT_SYMBOL vmlinux 0x81b21535 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81dd60d2 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x81eb53d6 param_set_hexint -EXPORT_SYMBOL vmlinux 0x81f3c54c kill_litter_super -EXPORT_SYMBOL vmlinux 0x81fee9cd pci_get_class -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 0x8249ad5e fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x8283c22e skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x82a18d7a register_fib_notifier -EXPORT_SYMBOL vmlinux 0x82a60567 seq_vprintf -EXPORT_SYMBOL vmlinux 0x82a9b18d reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0x82c8632b kill_pgrp -EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82d49bb5 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync -EXPORT_SYMBOL vmlinux 0x82f48ad3 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x832f5945 set_bdi_congested -EXPORT_SYMBOL vmlinux 0x833eaa38 d_delete -EXPORT_SYMBOL vmlinux 0x834658ac cmxgcr_lock -EXPORT_SYMBOL vmlinux 0x83492c1e __dev_direct_xmit -EXPORT_SYMBOL vmlinux 0x8351059d netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x8359a713 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x838b30a5 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x83930c23 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x8397ce48 tcp_seq_next -EXPORT_SYMBOL vmlinux 0x83a150e1 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x83b2094d __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0x83c03620 security_sb_mnt_opts_compat -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 0x8406005f set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x840d7b6a mmc_add_host -EXPORT_SYMBOL vmlinux 0x841520de jbd2_journal_grab_journal_head -EXPORT_SYMBOL vmlinux 0x8419e846 genphy_read_lpa -EXPORT_SYMBOL vmlinux 0x842323ef __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x8425cafa inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x8426e45b of_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0x842c8e9d ioread16 -EXPORT_SYMBOL vmlinux 0x84484e6a sock_i_ino -EXPORT_SYMBOL vmlinux 0x846ad9c3 devm_clk_put -EXPORT_SYMBOL vmlinux 0x84766db8 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x847e8b5c devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x847ea01e security_d_instantiate -EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy -EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 -EXPORT_SYMBOL vmlinux 0x849f834b nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0x84b2c16b rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x84bae718 dm_get_device -EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock -EXPORT_SYMBOL vmlinux 0x84ca22d1 tcp_ioctl -EXPORT_SYMBOL vmlinux 0x84d438a2 dev_addr_flush -EXPORT_SYMBOL vmlinux 0x84d6a389 dev_set_threaded -EXPORT_SYMBOL vmlinux 0x84f37c3f pps_event -EXPORT_SYMBOL vmlinux 0x84f3c134 proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x84fa54ed pci_set_mwi -EXPORT_SYMBOL vmlinux 0x84fab0a5 __sock_create -EXPORT_SYMBOL vmlinux 0x8500f7c4 nd_btt_version -EXPORT_SYMBOL vmlinux 0x851ffbdf reuseport_has_conns_set -EXPORT_SYMBOL vmlinux 0x85209054 __mmap_lock_do_trace_acquire_returned -EXPORT_SYMBOL vmlinux 0x85228975 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x85250ccc xa_store_range -EXPORT_SYMBOL vmlinux 0x8526558b phy_free_interrupt -EXPORT_SYMBOL vmlinux 0x852f0d3c rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0x853b66d8 vio_unregister_device -EXPORT_SYMBOL vmlinux 0x8554b804 simple_getattr -EXPORT_SYMBOL vmlinux 0x85586173 vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0x855c55a7 netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x856f9c7d blk_integrity_register -EXPORT_SYMBOL vmlinux 0x857fb7eb napi_disable -EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x8597eb47 plpar_hcall -EXPORT_SYMBOL vmlinux 0x85a7e6ed find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0x85b051f4 of_find_device_by_node -EXPORT_SYMBOL vmlinux 0x85b1fe1a skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85c43710 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f84723 netlink_capable -EXPORT_SYMBOL vmlinux 0x860607b7 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x864135d9 vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0x864428cf udp_lib_setsockopt -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 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86ae2910 nd_dax_probe -EXPORT_SYMBOL vmlinux 0x86b1026f proc_douintvec -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 0x86e999b9 ip6_xmit -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x8706595f register_mii_timestamper -EXPORT_SYMBOL vmlinux 0x8714563b csum_and_copy_from_user -EXPORT_SYMBOL vmlinux 0x8714991b vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x871ffec3 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x8727a18c fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x872a5283 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x8737388b tcp_child_process -EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 -EXPORT_SYMBOL vmlinux 0x873d123a of_graph_get_remote_node -EXPORT_SYMBOL vmlinux 0x874eee5e cont_write_begin -EXPORT_SYMBOL vmlinux 0x8753a27a vfio_unpin_pages -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 0x878469bd ZSTD_decompressStream -EXPORT_SYMBOL vmlinux 0x87848971 forget_cached_acl -EXPORT_SYMBOL vmlinux 0x878883f7 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x879106a2 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds -EXPORT_SYMBOL vmlinux 0x87a51216 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x87b0cdd5 phy_request_interrupt -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 0x87d5dd46 __SetPageMovable -EXPORT_SYMBOL vmlinux 0x87e780fb nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x87e87f75 sock_efree -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 0x8804de8f tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x88152820 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x88163c66 mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate -EXPORT_SYMBOL vmlinux 0x8835b8d7 bioset_init -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 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 0x888eee59 mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0x88972a8e scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x88993295 dma_fence_match_context -EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x88ae654a icmp_ndo_send -EXPORT_SYMBOL vmlinux 0x88ce5fd2 new_inode -EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88f2c1bd __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0x88fe64b7 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x88ff3cd0 gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0x8916e24e km_policy_expired -EXPORT_SYMBOL vmlinux 0x895577b0 numa_cpu_lookup_table -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 0x8971eaec ip_do_fragment -EXPORT_SYMBOL vmlinux 0x897e51da seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0x89890fdb simple_transaction_set -EXPORT_SYMBOL vmlinux 0x89898459 kvm_irq_bypass -EXPORT_SYMBOL vmlinux 0x89edb7cd free_cgroup_ns -EXPORT_SYMBOL vmlinux 0x89ef7457 tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x8a05c9bc sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x8a10553f of_get_mac_address -EXPORT_SYMBOL vmlinux 0x8a1acde9 seq_path -EXPORT_SYMBOL vmlinux 0x8a1eaa57 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x8a362caa dma_fence_signal_timestamp -EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a54050b __pud_cache_index -EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a7ed485 pci_irq_vector -EXPORT_SYMBOL vmlinux 0x8a98afcb dev_uc_add -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aa966fc xattr_supported_namespace -EXPORT_SYMBOL vmlinux 0x8ab0360b xsk_tx_completed -EXPORT_SYMBOL vmlinux 0x8abaddf9 inet6_add_offload -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 0x8ae90aa4 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0x8b3238f8 flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0x8b38998b dma_resv_add_excl_fence -EXPORT_SYMBOL vmlinux 0x8b485b89 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b74e759 ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0x8b790d6e dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b821a5b security_path_mkdir -EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8b95ba41 dma_fence_signal -EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx -EXPORT_SYMBOL vmlinux 0x8ba94186 textsearch_prepare -EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable -EXPORT_SYMBOL vmlinux 0x8be2246b mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x8bfec18b input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0x8bfff2f9 d_make_root -EXPORT_SYMBOL vmlinux 0x8c15eca8 kobject_add -EXPORT_SYMBOL vmlinux 0x8c2b1f0b i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x8c3d6264 mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0x8c539734 page_cache_next_miss -EXPORT_SYMBOL vmlinux 0x8c6310a0 inet_frag_kill -EXPORT_SYMBOL vmlinux 0x8c63f321 ps2_begin_command -EXPORT_SYMBOL vmlinux 0x8c745ff9 pci_scan_bus -EXPORT_SYMBOL vmlinux 0x8c7874d4 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c9d34e6 thaw_bdev -EXPORT_SYMBOL vmlinux 0x8ca71836 ip_defrag -EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid -EXPORT_SYMBOL vmlinux 0x8cb7426f devfreq_add_device -EXPORT_SYMBOL vmlinux 0x8cbfb009 pci_scan_slot -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 0x8d0f8ecb pnv_phb_to_cxl_mode -EXPORT_SYMBOL vmlinux 0x8d180592 iov_iter_advance -EXPORT_SYMBOL vmlinux 0x8d2753bc radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d668150 blk_get_request -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d769119 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x8d9ce724 trace_print_hex_dump_seq -EXPORT_SYMBOL vmlinux 0x8db55e18 node_data -EXPORT_SYMBOL vmlinux 0x8dd4f251 buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x8ddd1121 sync_blockdev -EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum -EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv -EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8dfcf4d7 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x8e2458a6 d_add_ci -EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable -EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma -EXPORT_SYMBOL vmlinux 0x8e6f91db fddi_type_trans -EXPORT_SYMBOL vmlinux 0x8e8a1ee5 register_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8e975b86 keyring_search -EXPORT_SYMBOL vmlinux 0x8eab9fe0 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x8eb31463 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x8ebb9186 __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0x8ebe5489 sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0x8ec4bf83 __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x8ee4bd55 fb_set_var -EXPORT_SYMBOL vmlinux 0x8eec42b2 __debugger_bpt -EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f11ea71 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x8f29a04e inet_frag_find -EXPORT_SYMBOL vmlinux 0x8f3121b1 input_get_poll_interval -EXPORT_SYMBOL vmlinux 0x8f598f0b pagecache_get_page -EXPORT_SYMBOL vmlinux 0x8f68da79 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x8f7c5cb5 blk_rq_init -EXPORT_SYMBOL vmlinux 0x8f7e4fd9 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x8f87de8d input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x8f8cad06 blkdev_compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8fa686e3 mdio_device_create -EXPORT_SYMBOL vmlinux 0x8fc6b992 fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0x8fd241a7 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x8fd5303f devm_extcon_register_notifier_all -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 0x901d6697 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x902187c8 udp_pre_connect -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 0x909ad529 is_subdir -EXPORT_SYMBOL vmlinux 0x90b630c0 __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x90b81d03 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x90c067b5 register_qdisc -EXPORT_SYMBOL vmlinux 0x90c73b85 _dev_emerg -EXPORT_SYMBOL vmlinux 0x90d2fabf sg_miter_skip -EXPORT_SYMBOL vmlinux 0x90eca80b pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x91057c24 request_key_rcu -EXPORT_SYMBOL vmlinux 0x910fd3b7 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x9116b01b vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x911b289d inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x912557ce rtas_busy_delay -EXPORT_SYMBOL vmlinux 0x913043e5 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x9139f5ae seq_hex_dump -EXPORT_SYMBOL vmlinux 0x91421d73 register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x91489e84 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x9149a080 ps2_sliced_command -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 0x9183e1d5 vme_dma_request -EXPORT_SYMBOL vmlinux 0x91933df2 peernet2id -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 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 0x91e9ecd8 fput -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 0x920bfc55 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x921563d4 dquot_release -EXPORT_SYMBOL vmlinux 0x9219096e memcpy_page_flushcache -EXPORT_SYMBOL vmlinux 0x921a7c2f mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x92392d6b genphy_read_abilities -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x924f1da2 pin_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x9251f0d2 wait_for_completion -EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x926f7121 pskb_expand_head -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 0x92ad5d5c udp_read_sock -EXPORT_SYMBOL vmlinux 0x92b43754 bio_uninit -EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92c1f89c sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0x92c4b5db wireless_send_event -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 0x92eb4c93 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0x92ebd7e2 skb_tunnel_check_pmtu -EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92f217b3 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x92fbaec1 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x93357f1d max8925_reg_write -EXPORT_SYMBOL vmlinux 0x934998f5 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x9353f3c4 scsi_ioctl -EXPORT_SYMBOL vmlinux 0x936ada45 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x936db07a msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x9372817d xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x93871ed7 mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0x939dcd6f sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93e42718 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x93f5a874 mntput -EXPORT_SYMBOL vmlinux 0x9401c98a mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0x9410ed96 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x94114844 of_node_get -EXPORT_SYMBOL vmlinux 0x9417e708 __devm_request_region -EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x942e303e finalize_exec -EXPORT_SYMBOL vmlinux 0x9433f492 tcp_time_wait -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 0x94737c23 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x94745ff8 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94a5fd84 proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x94a9a4aa _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x94ade7d0 xfrm_state_insert -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 0x94d8f433 sock_init_data -EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier -EXPORT_SYMBOL vmlinux 0x94e69d51 netif_receive_skb_core -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 0x952ef794 agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0x9539b847 input_inject_event -EXPORT_SYMBOL vmlinux 0x954495d3 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc -EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x9552db4b skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x9556b792 in_dev_finish_destroy -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 0x9570e2ce fs_context_for_mount -EXPORT_SYMBOL vmlinux 0x9589555f pagevec_lookup_range -EXPORT_SYMBOL vmlinux 0x95a943a3 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x95ae9e68 dentry_path_raw -EXPORT_SYMBOL vmlinux 0x95c6c48a qe_pin_set_gpio -EXPORT_SYMBOL vmlinux 0x95d8b1f1 tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x96014fb4 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x961d3c38 sk_mc_loop -EXPORT_SYMBOL vmlinux 0x962c4977 clkdev_add -EXPORT_SYMBOL vmlinux 0x962d691a nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x962f4008 phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0x963785c5 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x965ef50f blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x96683b50 rtnl_nla_parse_ifinfomsg -EXPORT_SYMBOL vmlinux 0x966bca8f sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x967eab41 mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0x96848186 scnprintf -EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0x969f154d trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96c07cc0 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96e1f5de ip_sock_set_recverr -EXPORT_SYMBOL vmlinux 0x96f13a20 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x96f6b305 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x97075d2a tso_start -EXPORT_SYMBOL vmlinux 0x97087fea netlink_ack -EXPORT_SYMBOL vmlinux 0x97092c69 noop_qdisc -EXPORT_SYMBOL vmlinux 0x97096a1c tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x971563fa blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x971ec27c hvc_put_chars -EXPORT_SYMBOL vmlinux 0x9731450f rt6_lookup -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 0x9746eb89 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x9775e180 dev_lstats_read -EXPORT_SYMBOL vmlinux 0x97837263 netif_device_detach -EXPORT_SYMBOL vmlinux 0x97a43de2 file_open_root -EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97b5ff6f ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x97f03d6f vio_cmo_entitlement_update -EXPORT_SYMBOL vmlinux 0x98071cde rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0x981fd977 netlink_broadcast -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 0x98559fa0 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x985b14fd percpu_counter_set -EXPORT_SYMBOL vmlinux 0x98635b96 input_event -EXPORT_SYMBOL vmlinux 0x986d9bb7 genphy_check_and_restart_aneg -EXPORT_SYMBOL vmlinux 0x9876b570 no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0x988aaa61 init_task -EXPORT_SYMBOL vmlinux 0x98b74ef9 param_ops_byte -EXPORT_SYMBOL vmlinux 0x98badeab flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x98c64a5c tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen -EXPORT_SYMBOL vmlinux 0x98dd01f3 rtc_add_group -EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98f6405b invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x98f8289d ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x99023cef crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x9916a652 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x992ff7ec netdev_emerg -EXPORT_SYMBOL vmlinux 0x9932d795 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x99379391 max8998_update_reg -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x9942c4f7 __neigh_create -EXPORT_SYMBOL vmlinux 0x99454d46 sock_no_bind -EXPORT_SYMBOL vmlinux 0x99458750 secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0x994731df dquot_scan_active -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x9961f12e __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x99871e07 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -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 0x99d55ea5 fb_validate_mode -EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99f0c79a single_open -EXPORT_SYMBOL vmlinux 0x99f7ff27 tcp_connect -EXPORT_SYMBOL vmlinux 0x99f8e585 tcp_seq_start -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 0x9a1b04cb inet_frags_init -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a2e33cb mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0x9a446998 pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0x9a48d9a6 kmem_cache_create -EXPORT_SYMBOL vmlinux 0x9a48f8dd __pagevec_release -EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x9a7ecd6a dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0x9a8ac492 get_tree_bdev -EXPORT_SYMBOL vmlinux 0x9a97a20f pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0x9a9bb311 skb_ext_add -EXPORT_SYMBOL vmlinux 0x9a9d0b03 mmc_command_done -EXPORT_SYMBOL vmlinux 0x9aa4c175 inc_node_page_state -EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9acaccb4 zerocopy_sg_from_iter -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 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9ae4d6fd phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0x9aee162e mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x9af11afb pldmfw_op_pci_match_record -EXPORT_SYMBOL vmlinux 0x9af383f6 udp_skb_destructor -EXPORT_SYMBOL vmlinux 0x9af6ede1 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x9afdf30d netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x9b16f49a scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x9b1ff47f sync_mapping_buffers -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 0x9b420478 utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b67f011 devm_memremap -EXPORT_SYMBOL vmlinux 0x9b6b834c key_unlink -EXPORT_SYMBOL vmlinux 0x9b6da59b agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0x9b70da78 d_instantiate_anon -EXPORT_SYMBOL vmlinux 0x9b71d784 key_payload_reserve -EXPORT_SYMBOL vmlinux 0x9b8d7f1b vfs_ioctl -EXPORT_SYMBOL vmlinux 0x9ba81dca vme_master_request -EXPORT_SYMBOL vmlinux 0x9bb4e317 ioread32be -EXPORT_SYMBOL vmlinux 0x9bc32c8b inode_io_list_del -EXPORT_SYMBOL vmlinux 0x9bd048a5 cpumask_next_and -EXPORT_SYMBOL vmlinux 0x9bd0f16e xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x9bdd3422 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x9be25a8f free_netdev -EXPORT_SYMBOL vmlinux 0x9bf1c81f sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x9bf931c0 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x9bff280a seq_release_private -EXPORT_SYMBOL vmlinux 0x9c0400e4 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x9c404068 lease_get_mtime -EXPORT_SYMBOL vmlinux 0x9c40e5a5 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs -EXPORT_SYMBOL vmlinux 0x9c5f01ce dquot_destroy -EXPORT_SYMBOL vmlinux 0x9c681161 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x9c723829 unregister_console -EXPORT_SYMBOL vmlinux 0x9c7a8ae4 pskb_extract -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 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 0x9cf42d85 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -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 0x9d231ecb inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d35f7d9 generic_copy_file_range -EXPORT_SYMBOL vmlinux 0x9d5720d2 flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0x9d5da42d dev_mc_sync -EXPORT_SYMBOL vmlinux 0x9d744b45 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x9d7ac534 tcp_sock_set_quickack -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 0x9d993773 neigh_seq_start -EXPORT_SYMBOL vmlinux 0x9da2352b eth_gro_complete -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 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 0x9e3dbe53 blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e565955 xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e8d1b8d bio_split -EXPORT_SYMBOL vmlinux 0x9e97375d rtas_busy_delay_time -EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -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 0x9ecedc90 touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0x9ed24fb1 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x9ed52765 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9ee28d25 current_time -EXPORT_SYMBOL vmlinux 0x9ef3c923 mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0x9f44804f phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f4f2921 genphy_read_status -EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict -EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f5fcecf flush_signals -EXPORT_SYMBOL vmlinux 0x9f6c7ad8 fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x9f7ebe9a tcp_read_sock -EXPORT_SYMBOL vmlinux 0x9f80cffe flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0x9f90b9ca kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x9f978788 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9f9d6112 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x9fa30878 register_quota_format -EXPORT_SYMBOL vmlinux 0x9fa3b25c netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fad518e irq_stat -EXPORT_SYMBOL vmlinux 0x9fcb43a7 of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x9fcdc664 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa01333bd update_region -EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0xa0262284 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0xa0299002 mmc_can_discard -EXPORT_SYMBOL vmlinux 0xa02aa459 thermal_zone_device_critical -EXPORT_SYMBOL vmlinux 0xa033d747 next_arg -EXPORT_SYMBOL vmlinux 0xa03afd00 phy_sfp_probe -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 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 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 -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 0xa0fcb663 skb_eth_push -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 0xa15789ff config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0xa1662bf3 skb_queue_purge -EXPORT_SYMBOL vmlinux 0xa17387d1 configfs_register_default_group -EXPORT_SYMBOL vmlinux 0xa17b1dd9 key_link -EXPORT_SYMBOL vmlinux 0xa17d81ec inet_csk_clear_xmit_timers -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 0xa1cb80cf remove_proc_entry -EXPORT_SYMBOL vmlinux 0xa1d500ad inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0xa1e62a01 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0xa1eaa2cd mempool_init -EXPORT_SYMBOL vmlinux 0xa1ebdb42 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0xa1ed6a7f framebuffer_release -EXPORT_SYMBOL vmlinux 0xa2056ea6 get_tz_trend -EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa20d3ba6 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0xa20e0f77 vfs_fileattr_set -EXPORT_SYMBOL vmlinux 0xa21122ad xfrm6_rcv -EXPORT_SYMBOL vmlinux 0xa213671c jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0xa218b635 __ClearPageMovable -EXPORT_SYMBOL vmlinux 0xa22d0fe6 unload_nls -EXPORT_SYMBOL vmlinux 0xa2380642 complete_request_key -EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort -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 0xa2691234 vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0xa28119a2 submit_bio_noacct -EXPORT_SYMBOL vmlinux 0xa28cb281 close_fd_get_file -EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa291e9bb i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register -EXPORT_SYMBOL vmlinux 0xa2d3378e get_mem_cgroup_from_mm -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 0xa2fa030e pci_back_from_sleep -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 0xa34ea576 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0xa3582189 pci_disable_msix -EXPORT_SYMBOL vmlinux 0xa366ff8d xa_get_order -EXPORT_SYMBOL vmlinux 0xa372568e crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xa383f73e netif_carrier_off -EXPORT_SYMBOL vmlinux 0xa38e691a ioremap_bot -EXPORT_SYMBOL vmlinux 0xa391fae7 unlock_buffer -EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay -EXPORT_SYMBOL vmlinux 0xa3a2a15c sock_kmalloc -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 0xa3e9ec4b nla_reserve_64bit -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 0xa439623b sock_wmalloc -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 0xa45c9d10 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0xa470006b __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0xa47708ce dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0xa4835155 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0xa484116e find_vma -EXPORT_SYMBOL vmlinux 0xa48904a0 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0xa49a7e9c kernel_sendpage -EXPORT_SYMBOL vmlinux 0xa49a9b46 mempool_alloc -EXPORT_SYMBOL vmlinux 0xa49f050a mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0xa4b78074 clk_hw_get_clk -EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4f65fc6 fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0xa5014b1d __alloc_skb -EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit -EXPORT_SYMBOL vmlinux 0xa51888fd xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0xa522bf57 agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0xa524175b __put_cred -EXPORT_SYMBOL vmlinux 0xa5297c86 mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0xa5475e3a kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa557592c alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0xa56280fb rproc_coredump_set_elf_info -EXPORT_SYMBOL vmlinux 0xa5640be0 udp_sendmsg -EXPORT_SYMBOL vmlinux 0xa58eff37 dma_map_sg_attrs -EXPORT_SYMBOL vmlinux 0xa5912647 proc_set_user -EXPORT_SYMBOL vmlinux 0xa5a30d85 tc_setup_cb_replace -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 0xa5c9815c jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0xa5e87da9 mdio_device_register -EXPORT_SYMBOL vmlinux 0xa5fda8c3 bprm_change_interp -EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa63459bc tcp_rcv_state_process -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 0xa6579f21 __pud_val_bits -EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio -EXPORT_SYMBOL vmlinux 0xa6625a21 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xa670ae20 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xa6805541 of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa68b35d3 proc_symlink -EXPORT_SYMBOL vmlinux 0xa68cfcb8 remap_pfn_range -EXPORT_SYMBOL vmlinux 0xa696c47f jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0xa69d208f tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0xa6af6d32 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0xa6b57957 skb_clone -EXPORT_SYMBOL vmlinux 0xa6b8cbe0 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0xa6c8ccff blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0xa6d0d8fd fb_get_mode -EXPORT_SYMBOL vmlinux 0xa6d18902 eth_header_cache -EXPORT_SYMBOL vmlinux 0xa6de1d0f inode_init_owner -EXPORT_SYMBOL vmlinux 0xa6fdbaea scmd_printk -EXPORT_SYMBOL vmlinux 0xa7097649 km_new_mapping -EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector -EXPORT_SYMBOL vmlinux 0xa717dcd2 neigh_table_clear -EXPORT_SYMBOL vmlinux 0xa71d2e2c ioread16be -EXPORT_SYMBOL vmlinux 0xa71dfe7a devm_request_resource -EXPORT_SYMBOL vmlinux 0xa729f155 security_sock_graft -EXPORT_SYMBOL vmlinux 0xa737aaf0 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xa73aeda7 inet_stream_ops -EXPORT_SYMBOL vmlinux 0xa741cc89 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa76d8e29 simple_transaction_release -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 0xa790d700 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xa79bff2d hpage_shift -EXPORT_SYMBOL vmlinux 0xa79ccdf1 __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xa7ad5947 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xa7b96b6d dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0xa7bf838c mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xa7cc3aac skb_split -EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa8077ea2 kobject_put -EXPORT_SYMBOL vmlinux 0xa82e449a dns_query -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 0xa851d9e4 kern_path_create -EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa8827150 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0xa8896319 __xa_clear_mark -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 0xa8e4ab11 __skb_recv_udp -EXPORT_SYMBOL vmlinux 0xa8e65a8f tcf_idr_search -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 0xa94a91f0 page_pool_update_nid -EXPORT_SYMBOL vmlinux 0xa95bcadd input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa9722f79 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa98aff8c skb_clone_sk -EXPORT_SYMBOL vmlinux 0xa98c9c2d address_space_init_once -EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa9caa00a qe_pin_request -EXPORT_SYMBOL vmlinux 0xa9db072f dev_set_mtu -EXPORT_SYMBOL vmlinux 0xa9dffce5 mempool_free -EXPORT_SYMBOL vmlinux 0xa9fbe553 pci_find_hose_for_OF_device -EXPORT_SYMBOL vmlinux 0xaa00f9ef ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0xaa01bdb7 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf -EXPORT_SYMBOL vmlinux 0xaa192987 user_path_at_empty -EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa3f6f04 radix__flush_tlb_kernel_range -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa9179c4 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic -EXPORT_SYMBOL vmlinux 0xaaab45e2 clk_get -EXPORT_SYMBOL vmlinux 0xaab2ee91 complete_all -EXPORT_SYMBOL vmlinux 0xaab4f6d8 ipv4_specific -EXPORT_SYMBOL vmlinux 0xaab61b7a security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0xaacc8583 bioset_exit -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad34842 tcp_md5_do_add -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 0xaaf89bad truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab110091 phy_write_mmd -EXPORT_SYMBOL vmlinux 0xab1b8560 file_update_time -EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init -EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab5e4a34 dev_change_flags -EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab7ea351 ptp_find_pin_unlocked -EXPORT_SYMBOL vmlinux 0xab7fa26a flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0xab840d7b __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xab9a2971 dma_resv_init -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 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xabf77ea6 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xac1525b0 init_special_inode -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac1ac1e3 reuseport_select_sock -EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac3340cf inet_csk_accept -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 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac61913c of_match_device -EXPORT_SYMBOL vmlinux 0xac79ed2a dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0xac8a360c sock_register -EXPORT_SYMBOL vmlinux 0xaca3a673 __vio_register_driver -EXPORT_SYMBOL vmlinux 0xacaa5e22 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacab3463 netif_rx_ni -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index -EXPORT_SYMBOL vmlinux 0xacdde8d6 genl_unregister_family -EXPORT_SYMBOL vmlinux 0xace27b25 tcp_prot -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 0xad0c2d2c ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0xad10629f jbd2_journal_submit_inode_data_buffers -EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xad1efdd9 __frontswap_store -EXPORT_SYMBOL vmlinux 0xad319aa9 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node -EXPORT_SYMBOL vmlinux 0xad4aeda8 dentry_open -EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock -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 0xada4afe4 bdi_alloc -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 0xadbeed61 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize -EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xadd7377d ip_ct_attach -EXPORT_SYMBOL vmlinux 0xaddf4a54 vfs_create -EXPORT_SYMBOL vmlinux 0xadf9c40b netdev_change_features -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 0xae1a6551 release_sock -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 0xae4c8439 __pte_table_size -EXPORT_SYMBOL vmlinux 0xae4ee984 dm_register_target -EXPORT_SYMBOL vmlinux 0xae65cfe4 __dev_set_mtu -EXPORT_SYMBOL vmlinux 0xae70bae1 sock_gettstamp -EXPORT_SYMBOL vmlinux 0xae714b3f blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0xae890f12 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid -EXPORT_SYMBOL vmlinux 0xaec5039e of_create_pci_dev -EXPORT_SYMBOL vmlinux 0xaf0df373 unregister_key_type -EXPORT_SYMBOL vmlinux 0xaf1d9c23 submit_bio -EXPORT_SYMBOL vmlinux 0xaf2ccf4b netdev_alert -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 0xaf6ade2b pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0xaf6d3c85 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0xaf941476 serio_open -EXPORT_SYMBOL vmlinux 0xafa115ec regset_get_alloc -EXPORT_SYMBOL vmlinux 0xafb19cd4 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0xafc06bcd wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name -EXPORT_SYMBOL vmlinux 0xafd76543 xfrm4_udp_encap_rcv -EXPORT_SYMBOL vmlinux 0xafe11e87 file_ns_capable -EXPORT_SYMBOL vmlinux 0xafeda6c0 mmc_can_gpio_ro -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 0xb02fbde4 dump_skip -EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats -EXPORT_SYMBOL vmlinux 0xb0596ec3 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xb05acc06 param_ops_ullong -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb066c2a2 sock_pfree -EXPORT_SYMBOL vmlinux 0xb08bb736 stop_tty -EXPORT_SYMBOL vmlinux 0xb08d64e5 __scm_destroy -EXPORT_SYMBOL vmlinux 0xb08fade2 fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0ac726b ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0xb0adafc7 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xb0dd140e sock_recv_errqueue -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 0xb10f23be mdio_find_bus -EXPORT_SYMBOL vmlinux 0xb1297b58 pci_bus_type -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -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 0xb155ba23 get_tree_single -EXPORT_SYMBOL vmlinux 0xb1566c44 inode_get_bytes -EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec -EXPORT_SYMBOL vmlinux 0xb17e16fd inet6_protos -EXPORT_SYMBOL vmlinux 0xb18e8a26 sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0xb19d55df fsl_upm_run_pattern -EXPORT_SYMBOL vmlinux 0xb1b37394 qdisc_hash_add -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1c5c64e gtm_set_exact_timer16 -EXPORT_SYMBOL vmlinux 0xb1d1a885 tcp_mtu_to_mss -EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug -EXPORT_SYMBOL vmlinux 0xb1d77f12 netlink_unicast -EXPORT_SYMBOL vmlinux 0xb1d7e34e __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -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 0xb242d553 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0xb2460eb0 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xb25c632a d_lookup -EXPORT_SYMBOL vmlinux 0xb25d2cdd vc_resize -EXPORT_SYMBOL vmlinux 0xb2acc4cd __msr_check_and_clear -EXPORT_SYMBOL vmlinux 0xb2acd9e5 free_bucket_spinlocks -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 0xb308c97d wait_woken -EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one -EXPORT_SYMBOL vmlinux 0xb32117ea eth_header -EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 -EXPORT_SYMBOL vmlinux 0xb334d198 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0xb344ea91 jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0xb350f6f2 dqstats -EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb36d3f93 device_add_disk -EXPORT_SYMBOL vmlinux 0xb38ba6f6 clk_bulk_get -EXPORT_SYMBOL vmlinux 0xb3b2bd48 ip_output -EXPORT_SYMBOL vmlinux 0xb3b64b7e skb_copy_and_csum_bits -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 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 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 0xb467c496 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0xb46ca764 simple_rmdir -EXPORT_SYMBOL vmlinux 0xb4708707 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0xb473e2c2 lockref_get -EXPORT_SYMBOL vmlinux 0xb475503e sock_setsockopt -EXPORT_SYMBOL vmlinux 0xb4779e83 netdev_name_node_alt_destroy -EXPORT_SYMBOL vmlinux 0xb47be20e pseries_disable_reloc_on_exc -EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb492311d scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xb4a3ee7e hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xb4a743ac sock_init_data_uid -EXPORT_SYMBOL vmlinux 0xb4cee94e mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb4f3ca65 inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0xb4f3e5d3 validate_sp -EXPORT_SYMBOL vmlinux 0xb4fed96e tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0xb521b33c bio_integrity_trim -EXPORT_SYMBOL vmlinux 0xb539b516 dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0xb543db5c ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xb545298b blk_rq_map_user -EXPORT_SYMBOL vmlinux 0xb54a971a _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0xb54ce212 tty_register_device -EXPORT_SYMBOL vmlinux 0xb555f9f3 gtm_get_specific_timer16 -EXPORT_SYMBOL vmlinux 0xb55f5952 nexthop_bucket_set_hw_flags -EXPORT_SYMBOL vmlinux 0xb568692d unregister_framebuffer -EXPORT_SYMBOL vmlinux 0xb56a30e4 devm_of_find_backlight -EXPORT_SYMBOL vmlinux 0xb5726565 tcf_qevent_dump -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -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 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5af7d20 of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5b6dca0 get_unmapped_area -EXPORT_SYMBOL vmlinux 0xb5ba00a4 wait_on_page_private_2_killable -EXPORT_SYMBOL vmlinux 0xb5be593d __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0xb5dcd4f9 dev_mc_flush -EXPORT_SYMBOL vmlinux 0xb5de1ec3 devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0xb5e36b1c tcp_disconnect -EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5ef6065 locks_free_lock -EXPORT_SYMBOL vmlinux 0xb5ffd3c8 phy_attach_direct -EXPORT_SYMBOL vmlinux 0xb60c2b8b devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0xb619d2b7 napi_gro_frags -EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb6361231 mutex_is_locked -EXPORT_SYMBOL vmlinux 0xb6376c52 __vfs_removexattr -EXPORT_SYMBOL vmlinux 0xb66022c5 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0xb665bf0a skb_dequeue -EXPORT_SYMBOL vmlinux 0xb6713332 shmem_aops -EXPORT_SYMBOL vmlinux 0xb675c917 dget_parent -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor -EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb6809234 napi_complete_done -EXPORT_SYMBOL vmlinux 0xb685374e udp_gro_receive -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 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6b44b00 skb_get_hash_perturb -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 0xb6fde909 close_fd -EXPORT_SYMBOL vmlinux 0xb6ffad09 security_path_unlink -EXPORT_SYMBOL vmlinux 0xb70289d9 call_usermodehelper_exec -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 0xb73bcede xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0xb75b0c9f xfrm_state_unregister_afinfo -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 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb7ba96cc unregister_cdrom -EXPORT_SYMBOL vmlinux 0xb7bc6adc seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xb7c0f443 sort -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -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 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 0xb868ac5c register_sysrq_key -EXPORT_SYMBOL vmlinux 0xb876efb8 inode_permission -EXPORT_SYMBOL vmlinux 0xb87ec028 radix__flush_all_mm -EXPORT_SYMBOL vmlinux 0xb8846fe1 __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0xb88dc5b4 pci_write_config_word -EXPORT_SYMBOL vmlinux 0xb8926f21 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0xb8979d8d backlight_device_set_brightness -EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb89ffabe vfs_iocb_iter_write -EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xb8be60b1 module_layout -EXPORT_SYMBOL vmlinux 0xb8f25706 mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory -EXPORT_SYMBOL vmlinux 0xb9106e75 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -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 0xb946896d dev_set_promiscuity -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 0xb975c2ff vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0xb9846257 of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9ed5956 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xb9f0c2c7 end_page_writeback -EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat -EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba26eea0 dev_set_group -EXPORT_SYMBOL vmlinux 0xba3153bd blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xba340508 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0xba385f47 rproc_put -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 0xba707a78 qe_get_brg_clk -EXPORT_SYMBOL vmlinux 0xba712d44 filemap_fault -EXPORT_SYMBOL vmlinux 0xbaa028fd d_instantiate_new -EXPORT_SYMBOL vmlinux 0xbaa1789d inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0xbae8e28f dev_close -EXPORT_SYMBOL vmlinux 0xbaed693c pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xbaf434ac ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0xbafd7acb twl6040_reg_write -EXPORT_SYMBOL vmlinux 0xbaffb47b devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -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 0xbb855d6c generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0xbb8c9992 tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0xbb8d51af phy_register_fixup -EXPORT_SYMBOL vmlinux 0xbba14512 finish_open -EXPORT_SYMBOL vmlinux 0xbba75607 down_killable -EXPORT_SYMBOL vmlinux 0xbba8ce77 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xbbafb121 dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0xbbc27ebd devfreq_update_status -EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order -EXPORT_SYMBOL vmlinux 0xbc020df6 iput -EXPORT_SYMBOL vmlinux 0xbc1ff75f fault_in_iov_iter_readable -EXPORT_SYMBOL vmlinux 0xbc29c89a tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0xbc38d596 register_netdevice -EXPORT_SYMBOL vmlinux 0xbc39ec8f phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0xbc42c17f mutex_unlock -EXPORT_SYMBOL vmlinux 0xbc45c9e9 pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0xbc5e9af7 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0xbc6a988c xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xbc982b06 eeh_subsystem_flags -EXPORT_SYMBOL vmlinux 0xbc9b14f0 loop_register_transfer -EXPORT_SYMBOL vmlinux 0xbca0aba3 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcad0c22 gen_new_estimator -EXPORT_SYMBOL vmlinux 0xbcc9307f ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0xbcde959a pci_request_irq -EXPORT_SYMBOL vmlinux 0xbcef8220 tcp_req_err -EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 -EXPORT_SYMBOL vmlinux 0xbcf54e7f _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0xbcff5715 dst_destroy -EXPORT_SYMBOL vmlinux 0xbd0648b8 md_update_sb -EXPORT_SYMBOL vmlinux 0xbd118dee elevator_alloc -EXPORT_SYMBOL vmlinux 0xbd2ad89c jbd2_journal_put_journal_head -EXPORT_SYMBOL vmlinux 0xbd317ae0 ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0xbd393ca3 ioread64be_lo_hi -EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -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 0xbdbb2b6e grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xbde7f923 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock -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 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe84542a security_path_rename -EXPORT_SYMBOL vmlinux 0xbe87cda6 generic_delete_inode -EXPORT_SYMBOL vmlinux 0xbea1c4bd sk_stop_timer_sync -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 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 0xbf24080f inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0xbf2408cd tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xbf24fabb sock_alloc_file -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 0xbf596f45 _insl_ns -EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf5b9d5d serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0xbf6908b2 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xbf82276a pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0xbf872018 agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0xbf8b4e39 __serio_register_driver -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfb53dc7 netdev_info -EXPORT_SYMBOL vmlinux 0xbfbae9b0 skb_copy_bits -EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfd3cd13 follow_down_one -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 0xc01d2c81 ps2_end_command -EXPORT_SYMBOL vmlinux 0xc02f1469 dma_fence_array_create -EXPORT_SYMBOL vmlinux 0xc0302d3d netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable -EXPORT_SYMBOL vmlinux 0xc0455c79 bio_chain -EXPORT_SYMBOL vmlinux 0xc04fe047 softnet_data -EXPORT_SYMBOL vmlinux 0xc05d04f1 phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0xc06abbf5 __mdiobus_register -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 0xc08886bd unlock_rename -EXPORT_SYMBOL vmlinux 0xc0a65e09 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL vmlinux 0xc0b346d8 opal_nx_coproc_init -EXPORT_SYMBOL vmlinux 0xc0ba59b6 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress -EXPORT_SYMBOL vmlinux 0xc0c78864 of_platform_device_create -EXPORT_SYMBOL vmlinux 0xc0cb4a2d netdev_state_change -EXPORT_SYMBOL vmlinux 0xc0cf48bf I_BDEV -EXPORT_SYMBOL vmlinux 0xc0d6d78f __var_waitqueue -EXPORT_SYMBOL vmlinux 0xc0dac601 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xc0e8cb42 pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0xc0edb7bd frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup -EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor -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 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 0xc16410b9 ZSTD_getDictID_fromDDict -EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc16c88e1 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xc17aeb61 vm_insert_page -EXPORT_SYMBOL vmlinux 0xc183bdef xfrm_state_update -EXPORT_SYMBOL vmlinux 0xc18c8856 netpoll_send_skb -EXPORT_SYMBOL vmlinux 0xc1b19a69 pps_lookup_dev -EXPORT_SYMBOL vmlinux 0xc1b1ef4e mpage_readahead -EXPORT_SYMBOL vmlinux 0xc1b6994c md_finish_reshape -EXPORT_SYMBOL vmlinux 0xc1cb693f fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0xc1ce2bd1 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0xc1d5530e neigh_for_each -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 0xc1f29225 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0xc1f3f5e7 __put_user_ns -EXPORT_SYMBOL vmlinux 0xc1f65380 __lock_buffer -EXPORT_SYMBOL vmlinux 0xc204221c scm_fp_dup -EXPORT_SYMBOL vmlinux 0xc2078f75 vmf_insert_mixed_prot -EXPORT_SYMBOL vmlinux 0xc22d7f2a phy_print_status -EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc2490212 _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc293ded7 vio_h_cop_sync -EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc2a7050d sock_set_priority -EXPORT_SYMBOL vmlinux 0xc2ac19b5 kmem_cache_free -EXPORT_SYMBOL vmlinux 0xc2afbc66 paca_ptrs -EXPORT_SYMBOL vmlinux 0xc2b491d0 netdev_crit -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2ef42a0 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xc300aa1f request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state -EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr -EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc330cc9f netdev_lower_get_next_private_rcu -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 0xc37f9c6e cpufreq_update_policy -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 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 0xc3e9869f xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0xc3f99a30 vlan_vid_del -EXPORT_SYMBOL vmlinux 0xc3fc6f8b devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0xc410e17e put_fs_context -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 0xc457f1b6 page_get_link -EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr -EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc481ef9a unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xc4bb7730 brioctl_set -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 0xc51a3640 down_write_killable -EXPORT_SYMBOL vmlinux 0xc524b1fb of_get_next_child -EXPORT_SYMBOL vmlinux 0xc529db24 is_nd_btt -EXPORT_SYMBOL vmlinux 0xc52c68ec sock_no_socketpair -EXPORT_SYMBOL vmlinux 0xc531f9ff dev_mc_unsync -EXPORT_SYMBOL vmlinux 0xc54beff2 tcp_close -EXPORT_SYMBOL vmlinux 0xc5565bdd tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xc57193b4 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0xc5885159 module_put -EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0xc5972b1e tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xc5a396fd udplite_table -EXPORT_SYMBOL vmlinux 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 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 0xc61b1577 path_put -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 0xc652927a kern_path -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 0xc6676d11 netlink_set_err -EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xc68edc4f filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0xc68efe0d uart_update_timeout -EXPORT_SYMBOL vmlinux 0xc6964b6b reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0xc6a9be17 lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0xc6b40ff5 param_ops_string -EXPORT_SYMBOL vmlinux 0xc6ba0f46 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware -EXPORT_SYMBOL vmlinux 0xc6d6af46 ppc_pci_io -EXPORT_SYMBOL vmlinux 0xc6d6fa58 devfreq_update_interval -EXPORT_SYMBOL vmlinux 0xc6f0cc7b inet_protos -EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one -EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc6fc006a inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0xc71a48c2 flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc723a27d __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xc73a882f sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0xc748e41b fb_find_mode -EXPORT_SYMBOL vmlinux 0xc74e4842 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xc759c6f7 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0xc779e253 flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0xc77aad60 get_user_pages_remote -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 0xc7e91cf7 pci_get_slot -EXPORT_SYMBOL vmlinux 0xc7ec8cc2 genl_notify -EXPORT_SYMBOL vmlinux 0xc7f484b1 ida_destroy -EXPORT_SYMBOL vmlinux 0xc81c8a29 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0xc8269ad2 fs_param_is_enum -EXPORT_SYMBOL vmlinux 0xc8396fd3 rproc_coredump_using_sections -EXPORT_SYMBOL vmlinux 0xc83f8b51 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc85b424e inet_register_protosw -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -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 0xc8b47e97 vga_get -EXPORT_SYMBOL vmlinux 0xc8b54707 simple_recursive_removal -EXPORT_SYMBOL vmlinux 0xc8c38965 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0xc8d4f67b tty_port_destroy -EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc -EXPORT_SYMBOL vmlinux 0xc8dfc41c dst_release_immediate -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 0xc8f63869 __netif_schedule -EXPORT_SYMBOL vmlinux 0xc9073c78 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0xc90f4980 fqdir_init -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 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 0xc95b71d8 security_inode_copy_up -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -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 0xc991a920 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9a27055 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xc9bfbafe dma_pool_create -EXPORT_SYMBOL vmlinux 0xc9c1198c alloc_buffer_head -EXPORT_SYMBOL vmlinux 0xc9c8142c unregister_md_personality -EXPORT_SYMBOL vmlinux 0xc9dc3d79 __pte_frag_size_shift -EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -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 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca2b2b02 __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0xca312b4f d_find_any_alias -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 0xca46c8ce neigh_ifdown -EXPORT_SYMBOL vmlinux 0xca5f3154 radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0xca8351b2 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xca85b010 fs_context_for_submount -EXPORT_SYMBOL vmlinux 0xca8764b9 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xcaa26b95 fault_in_iov_iter_writeable -EXPORT_SYMBOL vmlinux 0xcab4b0aa page_pool_create -EXPORT_SYMBOL vmlinux 0xcab89273 seq_open -EXPORT_SYMBOL vmlinux 0xcabbd1b7 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0xcade7f20 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcaf9cd56 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb2560dd poll_freewait -EXPORT_SYMBOL vmlinux 0xcb275611 sock_alloc -EXPORT_SYMBOL vmlinux 0xcb2ea0b5 finish_wait -EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb3c8a7d ___ratelimit -EXPORT_SYMBOL vmlinux 0xcb55e793 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0xcb5f560e configfs_depend_item -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 0xcba21826 skb_copy -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 0xcbc3b94e eeh_check_failure -EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame -EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbd55465 tcp_filter -EXPORT_SYMBOL vmlinux 0xcbdbde47 __debugger_iabr_match -EXPORT_SYMBOL vmlinux 0xcbe87221 textsearch_destroy -EXPORT_SYMBOL vmlinux 0xcbf7b698 freeze_bdev -EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev -EXPORT_SYMBOL vmlinux 0xcc169448 sg_miter_next -EXPORT_SYMBOL vmlinux 0xcc17637a skb_seq_read -EXPORT_SYMBOL vmlinux 0xcc1e8f2b scsi_remove_device -EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc2723d5 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class -EXPORT_SYMBOL vmlinux 0xcc32ac40 rproc_get_by_phandle -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 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 0xccaf31f5 mmc_start_request -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 0xccde3a8d generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0xccea8a5a rtas -EXPORT_SYMBOL vmlinux 0xcceafe35 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize -EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics -EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0xcd17ea75 md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0xcd1b0d2d xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xcd1f4bbf tty_insert_flip_string_fixed_flag -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 0xcd538cc9 tso_build_hdr -EXPORT_SYMBOL vmlinux 0xcd71a2b2 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xcd88325e dev_set_allmulti -EXPORT_SYMBOL vmlinux 0xcd8c43ee input_flush_device -EXPORT_SYMBOL vmlinux 0xcdb4a497 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0xcdb830f6 write_cache_pages -EXPORT_SYMBOL vmlinux 0xcdc0349c add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc68c0e kernel_sendmsg -EXPORT_SYMBOL vmlinux 0xcdceab1d netif_skb_features -EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcdee038f _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0xcdf8528c genphy_update_link -EXPORT_SYMBOL vmlinux 0xce0eeebb blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0xce13defe open_with_fake_path -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 0xce3cb070 neigh_carrier_down -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 0xce5c3d3d rt_dst_alloc -EXPORT_SYMBOL vmlinux 0xce687cce mount_single -EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0xce7bbabd sock_no_ioctl -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 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 0xcedea948 xsk_tx_release -EXPORT_SYMBOL vmlinux 0xcee01c17 d_mark_dontcache -EXPORT_SYMBOL vmlinux 0xcef4528c __bread_gfp -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf222b5f nf_getsockopt -EXPORT_SYMBOL vmlinux 0xcf26c0a0 devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xcf2faf11 key_revoke -EXPORT_SYMBOL vmlinux 0xcf6d291f radix__local_flush_tlb_page -EXPORT_SYMBOL vmlinux 0xcf80ae6c alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0xcf86a1a5 rproc_free -EXPORT_SYMBOL vmlinux 0xcf891324 mmc_is_req_done -EXPORT_SYMBOL vmlinux 0xcf8db5e7 ip6_output -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 0xcfee2542 ip_local_deliver -EXPORT_SYMBOL vmlinux 0xd00c0f2a __put_page -EXPORT_SYMBOL vmlinux 0xd020415b block_write_end -EXPORT_SYMBOL vmlinux 0xd024f9f0 vfs_mkdir -EXPORT_SYMBOL vmlinux 0xd027d1c0 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0xd043444a __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0xd0481b16 nf_log_register -EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd0545a18 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0xd05b8a86 input_free_device -EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd0696019 of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0xd075f71a of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd0947ec8 skb_csum_hwoffload_help -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 0xd0bc27d7 tcp_md5_hash_key -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 0xd1005346 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0xd106f86f fwnode_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0xd10cf18b __traceiter_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0xd11f9dcd sock_bind_add -EXPORT_SYMBOL vmlinux 0xd1262886 rtas_data_buf -EXPORT_SYMBOL vmlinux 0xd1370b4b padata_alloc_shell -EXPORT_SYMBOL vmlinux 0xd138c542 dev_get_stats -EXPORT_SYMBOL vmlinux 0xd1641eb5 xp_free -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 0xd1c2a016 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0xd1c87bac get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1dcda11 vfs_statfs -EXPORT_SYMBOL vmlinux 0xd1df85c8 dev_remove_offload -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 0xd221b792 bdev_dax_pgoff -EXPORT_SYMBOL vmlinux 0xd2287021 submit_bio_wait -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 0xd274cf06 io_uring_get_socket -EXPORT_SYMBOL vmlinux 0xd2779731 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xd27a3164 sk_alloc -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0xd281e046 input_register_handler -EXPORT_SYMBOL vmlinux 0xd292cad4 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xd292fe4c flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller -EXPORT_SYMBOL vmlinux 0xd2d3f463 fb_show_logo -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xd2e5aece end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0xd2f11f59 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0xd31c13e8 phy_start_cable_test_tdr -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -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 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 0xd36f8bd1 __cancel_dirty_page -EXPORT_SYMBOL vmlinux 0xd37972c7 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0xd381b593 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xd391c25b __cpuhp_remove_state_cpuslocked -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 0xd3c1fb7b unregister_netdev -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 0xd3fc17f7 dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd40832f4 del_gendisk -EXPORT_SYMBOL vmlinux 0xd412c4a6 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0xd42bf7cd of_device_unregister -EXPORT_SYMBOL vmlinux 0xd439f7cf dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0xd43c1edc udp_seq_ops -EXPORT_SYMBOL vmlinux 0xd443e5e6 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xd44519a4 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd4753cb5 skb_set_owner_w -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 0xd49bab39 dquot_load_quota_sb -EXPORT_SYMBOL vmlinux 0xd49f7984 rproc_elf_load_segments -EXPORT_SYMBOL vmlinux 0xd4b90f3e generic_permission -EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4d7c068 fsl_upm_find -EXPORT_SYMBOL vmlinux 0xd4e13c85 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0xd4ea54a5 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd4fd0ec2 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0xd4fd85af nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xd4ff2b88 blk_mq_queue_stopped -EXPORT_SYMBOL vmlinux 0xd51cb4c9 dquot_commit -EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd52cbfa3 kfree_skb_reason -EXPORT_SYMBOL vmlinux 0xd5411844 init_pseudo -EXPORT_SYMBOL vmlinux 0xd5415069 udp_poll -EXPORT_SYMBOL vmlinux 0xd543a4ea ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0xd559f486 __check_sticky -EXPORT_SYMBOL vmlinux 0xd584881c dev_get_by_index -EXPORT_SYMBOL vmlinux 0xd5864012 param_set_ushort -EXPORT_SYMBOL vmlinux 0xd586697f set_user_nice -EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise -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 0xd5be130e cpu_core_map -EXPORT_SYMBOL vmlinux 0xd5ca3b9b sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0xd5eff0fe of_io_request_and_map -EXPORT_SYMBOL vmlinux 0xd6051728 seq_open_private -EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd60b2043 of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0xd6175023 dquot_free_inode -EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax -EXPORT_SYMBOL vmlinux 0xd645dd67 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0xd64b88c7 netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0xd65707b6 of_node_name_eq -EXPORT_SYMBOL vmlinux 0xd663ec04 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0xd66b18f5 mark_page_accessed -EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness -EXPORT_SYMBOL vmlinux 0xd678010e inet6_del_protocol -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource -EXPORT_SYMBOL vmlinux 0xd69948fb proc_dointvec -EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6aee149 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0xd6b36036 kthread_bind -EXPORT_SYMBOL vmlinux 0xd6c17744 mfd_remove_devices_late -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 -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 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd7406a76 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0xd745ff3f __of_get_address -EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc -EXPORT_SYMBOL vmlinux 0xd755674e __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0xd785aef3 rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0xd786c0ea plpar_hcall9 -EXPORT_SYMBOL vmlinux 0xd7abb8a4 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0xd7b9b625 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0xd7c01f8f xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0xd7cdabb8 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0xd7ce045d dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -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 0xd80351c4 eth_platform_get_mac_address -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 0xd8215bed of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0xd8517876 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0xd8548b30 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0xd8881372 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0xd89c3e37 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font -EXPORT_SYMBOL vmlinux 0xd8c4a4d4 ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0xd8d1aa33 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0xd8fc83ae dev_addr_add -EXPORT_SYMBOL vmlinux 0xd910b5b3 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0xd914ef87 page_symlink -EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd923e3bf dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0xd9261b57 xfrm_init_state -EXPORT_SYMBOL vmlinux 0xd927f70c jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0xd92d8510 i2c_transfer -EXPORT_SYMBOL vmlinux 0xd9316ab7 tcf_block_get -EXPORT_SYMBOL vmlinux 0xd931ebc0 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0xd93427b3 __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0xd937951f twl6040_set_bits -EXPORT_SYMBOL vmlinux 0xd95a7cb2 tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0xd97645f8 agp_generic_enable -EXPORT_SYMBOL vmlinux 0xd984e51a mmc_wait_for_req_done -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd992b593 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0xd9a539cb generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0xd9a6298e __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xd9a681ce bio_reset -EXPORT_SYMBOL vmlinux 0xd9b76cae kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0xd9d79c9c __mod_lruvec_page_state -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9e4705d scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xd9f0ecd5 tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0xda04a897 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0xda07e136 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xda0c9daf seq_release -EXPORT_SYMBOL vmlinux 0xda28457b vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda7bbbf8 create_empty_buffers -EXPORT_SYMBOL vmlinux 0xda843a16 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -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 0xdaede2b4 iget_locked -EXPORT_SYMBOL vmlinux 0xdafef2ff agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0xdb0057a4 rproc_shutdown -EXPORT_SYMBOL vmlinux 0xdb23e0e4 km_query -EXPORT_SYMBOL vmlinux 0xdb244136 ppp_input_error -EXPORT_SYMBOL vmlinux 0xdb24de34 fd_install -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 0xdb53fc27 netdev_printk -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb7a875d xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0xdb802715 dquot_quota_on -EXPORT_SYMBOL vmlinux 0xdb8ada9f pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0xdb907a4b nf_log_packet -EXPORT_SYMBOL vmlinux 0xdba59d95 ip6_frag_init -EXPORT_SYMBOL vmlinux 0xdbc040be napi_gro_receive -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 0xdc37b9c3 jbd2_submit_inode_data -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc3fcbcb __mutex_init -EXPORT_SYMBOL vmlinux 0xdc40c759 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc51d21b neigh_direct_output -EXPORT_SYMBOL vmlinux 0xdc51ffd2 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0xdc540866 udp_seq_stop -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 0xdc8c2f75 netpoll_setup -EXPORT_SYMBOL vmlinux 0xdc9333c2 kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0xdc938b22 page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0xdc9498dd down -EXPORT_SYMBOL vmlinux 0xdc96d706 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0xdcb3e5f1 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xdcb482d9 nobh_write_begin -EXPORT_SYMBOL vmlinux 0xdcb764ad memset -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 0xdcff125f tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0xdd047dca thread_group_exited -EXPORT_SYMBOL vmlinux 0xdd0a0806 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd2d066e mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0xdd3fd3a8 pin_user_pages -EXPORT_SYMBOL vmlinux 0xdd54d719 dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0xdd596fd1 dst_alloc -EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd75159c __neigh_set_probe_once -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 0xddc5eee0 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0xddd5b5f7 phy_modify_paged -EXPORT_SYMBOL vmlinux 0xddd98345 sget_fc -EXPORT_SYMBOL vmlinux 0xde30c9b5 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0xde461484 set_groups -EXPORT_SYMBOL vmlinux 0xde4c6434 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xde883066 key_put -EXPORT_SYMBOL vmlinux 0xde8aa926 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0xde8ba007 __netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state -EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -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 0xdec66869 dev_get_mac_address -EXPORT_SYMBOL vmlinux 0xdec76fe9 blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0xdece8c50 sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdeea68ca fs_bio_set -EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdf00b5d7 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xdf0ef5bc tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf2eb1c8 inet6_del_offload -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf5ade3c __blk_alloc_disk -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 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfd287f7 may_umount -EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe006bbb9 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0xe0094905 pcie_set_mps -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 0xe0588762 pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0xe0604a61 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups -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 -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 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 0xe0ca4936 __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0xe0cc914c md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0xe0cec2d4 remove_arg_zero -EXPORT_SYMBOL vmlinux 0xe0e629b0 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0xe0efa9c0 blk_put_request -EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict -EXPORT_SYMBOL vmlinux 0xe121ae5e f_setown -EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release -EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xe14b86c1 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xe14db3de ethtool_notify -EXPORT_SYMBOL vmlinux 0xe15af9e7 md_write_end -EXPORT_SYMBOL vmlinux 0xe15c74f3 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0xe166389a seg6_push_hmac -EXPORT_SYMBOL vmlinux 0xe16ec9b7 blk_cleanup_disk -EXPORT_SYMBOL vmlinux 0xe1a6b29b flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0xe1ad4f23 __sk_receive_skb -EXPORT_SYMBOL vmlinux 0xe1c4b754 inode_set_flags -EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1f6a1bb neigh_table_init -EXPORT_SYMBOL vmlinux 0xe1f91b5c __inet_stream_connect -EXPORT_SYMBOL vmlinux 0xe21c9c9a tcf_idr_release -EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense -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 0xe2681638 mmc_request_done -EXPORT_SYMBOL vmlinux 0xe26d6567 sk_capable -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 0xe2930e80 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0xe2a82084 __bforget -EXPORT_SYMBOL vmlinux 0xe2bf5708 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0xe2d0242e pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0xe2d4d96e netif_rx -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2d8ab2e netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xe2e54381 par_io_of_config -EXPORT_SYMBOL vmlinux 0xe2f8a338 vio_find_node -EXPORT_SYMBOL vmlinux 0xe303956e sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xe30e03db pcibus_to_node -EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe32f34af prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0xe34aac2c inetdev_by_index -EXPORT_SYMBOL vmlinux 0xe3518d83 ip_options_compile -EXPORT_SYMBOL vmlinux 0xe363ee52 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0xe364e59d rproc_of_parse_firmware -EXPORT_SYMBOL vmlinux 0xe36637f0 generic_fillattr -EXPORT_SYMBOL vmlinux 0xe36cb45c iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0xe39a5a55 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe39ce961 __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0xe3aaaa48 security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0xe3acc311 dquot_get_next_id -EXPORT_SYMBOL vmlinux 0xe3bc0f08 rproc_alloc -EXPORT_SYMBOL vmlinux 0xe3e3766c netdev_set_tc_queue -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 0xe4041d19 reuseport_add_sock -EXPORT_SYMBOL vmlinux 0xe40ff6bf misc_register -EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be -EXPORT_SYMBOL vmlinux 0xe43b48f7 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0xe44eabf2 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0xe454680f inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0xe47ff916 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0xe4896487 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xe48d5e42 ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0xe49b9e75 phy_start -EXPORT_SYMBOL vmlinux 0xe49beea6 security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xe4bc0e90 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack -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 0xe513ddd6 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0xe514f3a7 filemap_check_errors -EXPORT_SYMBOL vmlinux 0xe5233c60 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe52c1bfc tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0xe5312391 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0xe5368fc1 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe53c1535 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0xe5434b98 bio_put -EXPORT_SYMBOL vmlinux 0xe544fcb5 textsearch_register -EXPORT_SYMBOL vmlinux 0xe56481fd icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe58a1429 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe59cd465 xp_dma_map -EXPORT_SYMBOL vmlinux 0xe5a5f8d4 d_prune_aliases -EXPORT_SYMBOL vmlinux 0xe5a63b4c remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xe5bd25e7 xfrm_lookup -EXPORT_SYMBOL vmlinux 0xe5c349da agp_backend_acquire -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -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 0xe5d71a61 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xe5ee668d mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xe627aa11 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0xe6287de8 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0xe62c515d __fs_parse -EXPORT_SYMBOL vmlinux 0xe6339927 __icmp_send -EXPORT_SYMBOL vmlinux 0xe64606b5 pcie_print_link_status -EXPORT_SYMBOL vmlinux 0xe658ed74 nobh_write_end -EXPORT_SYMBOL vmlinux 0xe664c77a unregister_quota_format -EXPORT_SYMBOL vmlinux 0xe665f329 tcp_shutdown -EXPORT_SYMBOL vmlinux 0xe6790bf8 mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0xe6793c7e __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xe68c1c23 tcf_classify -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 0xe6b072f4 sock_create -EXPORT_SYMBOL vmlinux 0xe6b94982 vme_master_mmap -EXPORT_SYMBOL vmlinux 0xe6cf1f8f inet_ioctl -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 0xe7027ecd mmc_release_host -EXPORT_SYMBOL vmlinux 0xe706089f mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xe72712ba vm_iomap_memory -EXPORT_SYMBOL vmlinux 0xe72f5738 netdev_features_change -EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe73302f2 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xe73e078c fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0xe75057cd do_SAK -EXPORT_SYMBOL vmlinux 0xe75d2965 __skb_checksum -EXPORT_SYMBOL vmlinux 0xe76335c5 __debugger -EXPORT_SYMBOL vmlinux 0xe780eb7d tcf_exts_terse_dump -EXPORT_SYMBOL vmlinux 0xe79a735c fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0xe7a838a1 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0xe7a8fd6a iov_iter_revert -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 0xe7dc410f mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0xe80c44f9 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xe80d49e2 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0xe81d18fa arch_debugfs_dir -EXPORT_SYMBOL vmlinux 0xe8208023 nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0xe8281c82 flow_block_cb_free -EXPORT_SYMBOL vmlinux 0xe848d453 devm_memunmap -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 0xe8aa4712 neigh_connected_output -EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get -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 0xe9041276 napi_build_skb -EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf -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 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe96cb656 mroute6_is_socket -EXPORT_SYMBOL vmlinux 0xe97f2919 phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0xe9aa8925 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0xe9ae800c devm_register_netdev -EXPORT_SYMBOL vmlinux 0xe9b9dc87 fget -EXPORT_SYMBOL vmlinux 0xe9daa75e con_is_visible -EXPORT_SYMBOL vmlinux 0xe9eafeb6 file_fdatawait_range -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 0xea3a0897 tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea426e43 mempool_resize -EXPORT_SYMBOL vmlinux 0xea4affb9 netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0xea4b6138 qdisc_reset -EXPORT_SYMBOL vmlinux 0xea517866 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0xea604dcc tty_port_hangup -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 0xeab79a65 md_unregister_thread -EXPORT_SYMBOL vmlinux 0xead59a0b of_n_size_cells -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 0xeb102f82 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xeb126af4 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0xeb135c0d inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc -EXPORT_SYMBOL vmlinux 0xeb2ba9f0 unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0xeb2c1a91 arp_xmit -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -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 0xeb9e913d sgl_alloc_order -EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xeba0d23d kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0xeba1309a tcf_qevent_destroy -EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present -EXPORT_SYMBOL vmlinux 0xebaf4606 vfio_register_notifier -EXPORT_SYMBOL vmlinux 0xebb15a70 vfs_unlink -EXPORT_SYMBOL vmlinux 0xebb4d27b get_agp_version -EXPORT_SYMBOL vmlinux 0xebbe9812 tcp_splice_read -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 0xec0663b6 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0xec0a4564 path_is_under -EXPORT_SYMBOL vmlinux 0xec1b39bc set_security_override -EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec4fb493 remove_wait_queue -EXPORT_SYMBOL vmlinux 0xec579c32 dquot_initialize -EXPORT_SYMBOL vmlinux 0xec617496 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xec8b00d9 inet_frags_fini -EXPORT_SYMBOL vmlinux 0xec8de50b param_set_bint -EXPORT_SYMBOL vmlinux 0xec95942f mmc_run_bkops -EXPORT_SYMBOL vmlinux 0xec97ead8 __kernel_io_start -EXPORT_SYMBOL vmlinux 0xecac545a skb_put -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 0xece40461 tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0xece75514 prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecf21ddc dev_printk_emit -EXPORT_SYMBOL vmlinux 0xed0cc817 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xed11415e config_item_get -EXPORT_SYMBOL vmlinux 0xed25075f audit_log -EXPORT_SYMBOL vmlinux 0xed362545 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0xed3e250f device_match_acpi_dev -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 0xed80c730 vio_register_device_node -EXPORT_SYMBOL vmlinux 0xed8e266e netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0xed9bb1b5 dev_add_offload -EXPORT_SYMBOL vmlinux 0xedb5b8f5 unix_gc_lock -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedcf6297 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0xedcf6a72 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0xeddc0b8c skb_checksum -EXPORT_SYMBOL vmlinux 0xeddffe1c __scm_send -EXPORT_SYMBOL vmlinux 0xedea3374 xfrm_user_policy -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 0xee17d7c3 param_get_int -EXPORT_SYMBOL vmlinux 0xee18c545 mpage_writepage -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee5b9ebd inet_addr_type_table -EXPORT_SYMBOL vmlinux 0xee7cc70f tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0xee827372 register_shrinker -EXPORT_SYMBOL vmlinux 0xee83e780 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0xee85d1d3 phy_ethtool_get_stats -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 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee9612ae __hw_addr_ref_unsync_dev -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 0xeec1053b rtnl_create_link -EXPORT_SYMBOL vmlinux 0xeed5bcca __pud_table_size -EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init -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 0xef1dcc0c scsi_host_lookup -EXPORT_SYMBOL vmlinux 0xef369091 dm_put_device -EXPORT_SYMBOL vmlinux 0xef4824da nf_log_unregister -EXPORT_SYMBOL vmlinux 0xef4d6a83 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0xef554732 netdev_err -EXPORT_SYMBOL vmlinux 0xef56eceb dquot_operations -EXPORT_SYMBOL vmlinux 0xef57ab13 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0xef6e1549 serio_unregister_port -EXPORT_SYMBOL vmlinux 0xef71a22c wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0xef7408a5 scsi_print_result -EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefce5181 __register_binfmt -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 0xf0315a64 locks_init_lock -EXPORT_SYMBOL vmlinux 0xf0329ad1 down_read_trylock -EXPORT_SYMBOL vmlinux 0xf0355487 mmc_erase -EXPORT_SYMBOL vmlinux 0xf0390301 ilookup -EXPORT_SYMBOL vmlinux 0xf0459e01 __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0xf0533c47 dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0xf07350bd proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0xf07fe9a0 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0xf08f705c setup_arg_pages -EXPORT_SYMBOL vmlinux 0xf090b2ef devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0bae21d make_kgid -EXPORT_SYMBOL vmlinux 0xf0d3476a always_delete_dentry -EXPORT_SYMBOL vmlinux 0xf0d83f97 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0xf0dc8869 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xf0e316fb stream_open -EXPORT_SYMBOL vmlinux 0xf0eb8b02 sock_set_keepalive -EXPORT_SYMBOL vmlinux 0xf0f32ef1 skb_unlink -EXPORT_SYMBOL vmlinux 0xf0fe16db misc_deregister -EXPORT_SYMBOL vmlinux 0xf1022618 netif_rx_any_context -EXPORT_SYMBOL vmlinux 0xf110d1cb pseries_enable_reloc_on_exc -EXPORT_SYMBOL vmlinux 0xf11b20a0 skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0xf11b9e44 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf12b9dd5 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0xf12df058 unregister_nexthop_notifier -EXPORT_SYMBOL vmlinux 0xf1349228 swake_up_locked -EXPORT_SYMBOL vmlinux 0xf151ec81 to_nd_btt -EXPORT_SYMBOL vmlinux 0xf158a02e iov_iter_alignment -EXPORT_SYMBOL vmlinux 0xf1750b29 netdev_set_sb_channel -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 0xf1a4ddc5 pci_dev_put -EXPORT_SYMBOL vmlinux 0xf1d18e90 _outsw_ns -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1e046cc panic -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1fadd64 __block_write_full_page -EXPORT_SYMBOL vmlinux 0xf21fca3c console_stop -EXPORT_SYMBOL vmlinux 0xf2252a95 mfd_add_devices -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 0xf2670b4b skb_queue_tail -EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf28da992 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0xf29f0d6b add_watch_to_object -EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xf2b019f3 mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0xf2b4f300 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0xf2c39181 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2df25f7 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free -EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf32f4fe5 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0xf33a2931 rproc_report_crash -EXPORT_SYMBOL vmlinux 0xf33d038f udp6_csum_init -EXPORT_SYMBOL vmlinux 0xf33da42b netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf34f3bc3 dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf36ee8ab readahead_expand -EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xf381e968 tcp_sendpage -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused -EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3b340ca pnv_cxl_get_irq_count -EXPORT_SYMBOL vmlinux 0xf3c10a73 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0xf3d98aa7 dev_driver_string -EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -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 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 0xf42d64ca proc_dostring -EXPORT_SYMBOL vmlinux 0xf4315e68 tcp_syn_ack_timeout -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 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 0xf485320b nf_log_unset -EXPORT_SYMBOL vmlinux 0xf4a72f18 dev_set_alias -EXPORT_SYMBOL vmlinux 0xf4bc04f4 netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0xf4bd3aff agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4cf9cd6 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4df0099 cred_fscmp -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf50878d6 dcache_readdir -EXPORT_SYMBOL vmlinux 0xf51820af ip_mc_join_group -EXPORT_SYMBOL vmlinux 0xf51f8708 cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf53f722e trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xf5488fd9 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xf54945ee dump_emit -EXPORT_SYMBOL vmlinux 0xf55b3b3d __arch_hweight16 -EXPORT_SYMBOL vmlinux 0xf56a55ae ilookup5 -EXPORT_SYMBOL vmlinux 0xf5757d7b netif_device_attach -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 0xf5d4ccf3 mr_table_dump -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 0xf60675d4 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0xf606d23a tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0xf60f64b5 mmc_can_erase -EXPORT_SYMBOL vmlinux 0xf61396eb generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0xf6150d63 __xa_set_mark -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 0xf63e9ec0 mr_dump -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 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 0xf6817966 eth_gro_receive -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf6883957 iov_iter_init -EXPORT_SYMBOL vmlinux 0xf6a044e0 no_llseek -EXPORT_SYMBOL vmlinux 0xf6ab2ef9 of_phy_get_and_connect -EXPORT_SYMBOL vmlinux 0xf6b2ed11 pci_choose_state -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 0xf6e1fc45 icmp6_send -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 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 0xf74d8a07 reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0xf751f8d7 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xf755b200 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xf7895b01 giveup_altivec -EXPORT_SYMBOL vmlinux 0xf7b1ff72 mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0xf7c2df39 __wake_up_bit -EXPORT_SYMBOL vmlinux 0xf7c48778 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0xf7f33ec5 tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0xf8003ef0 mdiobus_write -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 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf839a084 param_ops_short -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 0xf86fc19f pci_save_state -EXPORT_SYMBOL vmlinux 0xf87eccfc trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -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 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf9000451 xfrm_register_type -EXPORT_SYMBOL vmlinux 0xf91133e9 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0xf919339f sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0xf926377c skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0xf92874d4 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0xf93c287e blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf9423175 udp_seq_next -EXPORT_SYMBOL vmlinux 0xf94ba813 msi_bitmap_free_hwirqs -EXPORT_SYMBOL vmlinux 0xf954bf20 vme_slave_request -EXPORT_SYMBOL vmlinux 0xf9579721 xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0xf9713b3a mmc_set_blocklen -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 0xf99e5154 bdi_put -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9b1cdcd smp_call_function_many -EXPORT_SYMBOL vmlinux 0xf9b40754 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xf9c38384 eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xf9cdd179 locks_remove_posix -EXPORT_SYMBOL vmlinux 0xf9e091de dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xf9e7b27c genlmsg_put -EXPORT_SYMBOL vmlinux 0xf9f7b77e mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0xf9ffdb62 mount_nodev -EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa1a4ed8 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0xfa1b12e0 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0xfa1f250a netif_napi_add -EXPORT_SYMBOL vmlinux 0xfa2aaa7f of_mdio_find_device -EXPORT_SYMBOL vmlinux 0xfa2aec87 vm_insert_pages -EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec -EXPORT_SYMBOL vmlinux 0xfa35c4f7 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0xfa3b65c8 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0xfa45deb8 mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0xfa579f75 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa59ab94 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xfa59cccb tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0xfa6e64da kernel_listen -EXPORT_SYMBOL vmlinux 0xfa7dec5e pci_find_next_bus -EXPORT_SYMBOL vmlinux 0xfa824f9e pci_read_config_word -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 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfac94849 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0xfacd8c28 nla_put -EXPORT_SYMBOL vmlinux 0xfb145a7c nf_register_sockopt -EXPORT_SYMBOL vmlinux 0xfb1a38ba __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0xfb232c7e idr_get_next_ul -EXPORT_SYMBOL vmlinux 0xfb276fe6 jbd2_fc_get_buf -EXPORT_SYMBOL vmlinux 0xfb2a760d ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable -EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb3a97dc __getblk_gfp -EXPORT_SYMBOL vmlinux 0xfb57185f blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb8beabf qdisc_put -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 -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 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbc58db3 touch_buffer -EXPORT_SYMBOL vmlinux 0xfbe2e587 put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0xfbec6e45 keyring_clear -EXPORT_SYMBOL vmlinux 0xfbfa9ea6 load_nls_default -EXPORT_SYMBOL vmlinux 0xfc12ce74 rfkill_alloc -EXPORT_SYMBOL vmlinux 0xfc198352 override_creds -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 0xfc56e6dd serio_reconnect -EXPORT_SYMBOL vmlinux 0xfc7a5875 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0xfc8721d9 key_invalidate -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 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfd03a452 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0xfd0ad3e3 bio_advance -EXPORT_SYMBOL vmlinux 0xfd1704bd pcie_get_mps -EXPORT_SYMBOL vmlinux 0xfd38175c page_readlink -EXPORT_SYMBOL vmlinux 0xfd41462d tcf_exts_validate -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 0xfd898690 kset_unregister -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 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 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 0xfe0d8573 __skb_checksum_complete -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 0xfe310c6d genphy_read_status_fixed -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 0xfe82f5ff rawv6_mh_filter_register -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 0xfeb5d0aa verify_spi_info -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfee0d0f4 udp_lib_get_port -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 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff249277 build_skb_around -EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff530f7f vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0xff667c5b kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff90dab7 reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0xffa8a587 dst_release -EXPORT_SYMBOL vmlinux 0xffaae21a uart_add_one_port -EXPORT_SYMBOL vmlinux 0xffb4ac83 follow_down -EXPORT_SYMBOL vmlinux 0xffb83ee9 ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffe690fd udp_table -EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0xfffbe50d bpf_prog_get_type_path -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 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 0x0e168494 kvm_get_kvm -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0f06f6aa kvmppc_core_prepare_to_enter -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 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 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 0x41291964 kvmppc_core_queue_data_storage -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 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 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 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 0x5f389e37 kvmppc_handle_load -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start -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 0x6892e3c3 kvm_set_pfn_accessed -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 0x7efc9a9f gfn_to_pfn_memslot -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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/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 -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x00c70ac7 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xf8db26fe async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x6da6d546 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xe16ac738 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x1a68846f async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x3effe8f9 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x8343fcfc __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xa104da6f async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x3514d7e1 async_xor_val_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x6270241f async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7a2af693 async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x85570095 async_xor_offs -EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xda1e0521 blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xce7b67fa 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 0x716c0711 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 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 -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd316ab4e serpent_setkey -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 0xb4dc8df7 twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x04b08b4d spk_var_show -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x07543860 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x0ef1d765 speakup_info -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1c438f80 spk_ttyio_release -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2e561798 spk_do_catch_up_unicode -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41a160e5 synth_buffer_empty -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4449e1dd synth_buffer_clear -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x448877a4 spk_var_store -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x466f5eb7 synth_putwc -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x46891e01 spk_ttyio_synth_immediate -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x5210138a spk_ttyio_ops -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6ea167a0 spk_synth_is_alive_restart -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 0x8843c561 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x89b0bab2 synth_add -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8b84bc04 spk_synth_get_index -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 0x92391545 spk_ttyio_synth_probe -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xa02ac0f8 synth_remove -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaadb0612 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb1a5e01d synth_current -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xba0088e0 speakup_event -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc319c604 synth_putws_s -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc6a06d16 spk_get_var -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd8fd86cf synth_release_region -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe194d0ef synth_printf -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xf5b5e959 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1386f9dc ahci_shost_attrs -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 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 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 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 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 -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-i3c 0xd73c097e __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x03c26054 __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x3c85fd17 __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x16c91f55 __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xc88a0364 __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x1e178c6f __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xf983aaaa __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x2334519c __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xb85ee949 __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x7474af36 __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x86c25a89 __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x0c320911 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x5cb312c0 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x6bed40a6 __devm_regmap_init_spmi_ext -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/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/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 -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0eadc4ae mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1603c521 mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1c6fc272 mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x31a54f28 mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x36e2d335 mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4ef77665 mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5d15499c __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5e762e6b mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x62c97853 mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x697bb105 mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6a3de197 mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x70cbe1a7 mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x71322a70 mhi_poll -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x819752b5 mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9f3f54e3 mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9f9cc907 mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa09825e4 mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa1a089fd mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa45785c9 mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa48cac28 mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa9e25fca mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb21382f0 mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd281de98 mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe045f877 mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf570a662 mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf9bc7fb2 mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xfa681432 mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x192a1767 __moxtet_register_driver -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x5aa151b3 moxtet_device_read -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x7b8b66ff moxtet_device_written -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x95256450 moxtet_device_write -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x01be859c comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x08a67063 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x15b931bf comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1e28b925 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2819aff9 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x28e11db1 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2c10c614 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x35844003 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4b2eb108 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x52f6e337 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x53441d3c comedi_event -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5b4a53ad comedi_timeout -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x611de1b3 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x69cc65b3 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x74ad0424 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x75e784d6 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x76b2ee04 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x774cf4a5 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x877a95fa comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8c877fbc comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8d6a5e63 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa9964797 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb3070d51 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb8f87b75 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd05b2111 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd19a0095 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd70a8cba comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd7f5e13a __comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdc163b0e comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xde0e0ab7 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe2e2be15 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe7beb3c8 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xebb80cce comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf154fe73 comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf76b0154 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfcd1cf8d comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x10c99182 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x21bf9c0d comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x2ebcace7 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x421f2a73 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x68738d5b comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xb6de1c4a comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xdcbf20e6 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xfdecc292 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x071e88e2 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x8250f96e comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xa266a0ad comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xa3c3210a comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xb0599a2e comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xdece7974 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x92ff595a addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x39bf21e8 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xb9382e35 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xa1036cde amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1545f803 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x27769986 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x27a7af57 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x34a69fed comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x3583ba14 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4de3e24e comedi_8254_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4f0177d0 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6622d3f5 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x68382036 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x75e35446 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x9f351de8 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xd42a8553 comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xfeefa117 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x0e2d7c49 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x1926234e subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xe1525b71 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xc3166ec8 comedi_isadma_poll -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xca784d4b comedi_isadma_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xd7f10997 comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xe8e86542 comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xea878430 comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x3c141d31 das08_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x01a960d9 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x024ae785 mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0263059d mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x29330d55 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x46b017ac mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4978bba2 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x67b06bad mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6e91b794 mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x77b1e9ef mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x79014ee5 mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9d963890 mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xcb240759 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xcc21ad8a mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xccd52178 mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd0a7368e mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe87d2286 mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x4d790df1 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xc70cbf6a labpc_common_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x13802e8c labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x253433f8 labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x26c279d0 labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x45476bdc labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x9f8b9cee labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x85e75c94 ni_assign_device_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x04a658a5 ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x0e631035 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x136e6840 ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x22105c76 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x25d63d4b ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4f257447 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x553c66f1 ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x637d55f9 ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x65c30294 ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x68c9c416 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7f8a459f ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x82c5193c ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd8d371ca ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe1339675 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe1692cf9 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf7c5c1cb ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x2d2646cd ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x3e5fecad ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x4f3c9eaf ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x58e5aac4 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x99763b46 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xd3a73b02 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x0056e47b comedi_dio_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x6f6e479b comedi_close -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x84293c2f comedi_open -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xabda6e10 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xd4af0811 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xfc69761b comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xfe2f9f92 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/counter/counter 0x5e23c08a counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0xbe045227 counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0xc1dfec84 devm_counter_register -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x208d9d29 nx842_crypto_init -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xd0ac46ca nx842_crypto_decompress -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xd5f3f064 nx842_crypto_exit -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xdbcd46fc nx842_crypto_compress -EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x22839a7c dev_dax_probe -EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0xbca0b5e9 __dax_pmem_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xe009e563 dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xf75240c3 dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0bd336e9 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x27b7260a idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x381e4429 dw_dma_remove -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 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 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 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/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 -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x91c65007 vchan_init -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xd047a964 vchan_dma_desc_free_list -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 0x238ec53d dfl_fpga_cdev_assign_port -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 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 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 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 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 -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x08cca6b0 devm_fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2ac81d49 of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x361a9ba4 fpga_bridge_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5401d39e fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x55075204 of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x596d3698 fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x6dab21d1 fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x730d5c17 fpga_bridge_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x84291ed0 fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x847ff920 fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xbaf4123b fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3c6a8d66 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x411ab154 fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x537975d0 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6091fd15 devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x726c87f9 fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x745a870b fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7d055e42 fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9db3a143 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9e7e36d9 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa5e40118 fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc66297df fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc8280f20 fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf5334e3a fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xffef7e29 devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x007415fc fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x15a25816 fpga_region_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x67d583d6 fpga_region_class_find -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 0x0fb0df2c fsi_device_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range -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 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 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 -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x0598b12f gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x1a4f0793 gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x3646fff7 gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xb9908b85 gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xf7c9a597 gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x0da119b8 gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x3c1d8dd1 gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x6c8499e6 gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x7798ebb9 gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x85722c15 gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x08fce6c0 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x29fd31bb __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x352a5589 analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x48171550 analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x52436a3c analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x6dc41e3a analogix_dp_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xb061fd05 analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xc24117f5 analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xcab7b215 analogix_dp_unbind -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 0x1461e227 dw_hdmi_set_channel_status -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x157e02b6 dw_hdmi_phy_reset -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2d1c0e80 dw_hdmi_setup_rx_sense -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 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 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 -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd8fe547b dw_hdmi_audio_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xdafa1790 dw_hdmi_phy_read_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xf5922009 dw_hdmi_phy_update_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x129871bb drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x18439dc8 drmm_kstrdup -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x19033447 drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1e5280d6 drm_of_encoder_active_endpoint -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2aa0f15d drm_of_component_match_add -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3f84cd5d drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x56711afe drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x56ef8a66 drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5b8bb7b4 drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6113d585 drm_of_lvds_get_dual_link_pixel_order -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6d532e6c drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x721e0ac6 drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x83141e2c drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x89f2f594 drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x948610e4 drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x96311786 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x99a0b49d drm_gem_cma_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa4a73d93 drm_of_find_panel_or_bridge -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa7963847 drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xac0ee62b drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb4b2e45c drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb79592d5 drm_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbcc95c8f of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcd1282bf drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcf231074 drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd3baa229 drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd3cc6a1f drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd51cd73e drm_gem_shmem_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xddc8a1b4 drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe382a4e4 drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xea75a3a9 drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf20fd4ec drm_gem_cma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf2835750 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf44d2312 drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf9c98807 drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x0542cfa0 of_dp_aux_populate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x58d0143b devm_of_dp_aux_populate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x5ef09399 of_dp_aux_depopulate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x6408e258 dp_aux_dp_driver_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xb232c46e __dp_aux_dp_driver_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x18942e78 drm_fb_cma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x21434938 drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x214fbf04 drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x407db734 drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x46938e94 drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6576e171 drm_bridge_connector_disable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x84ec9fe2 drm_fb_cma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8c26fb85 drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x93af5e02 drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc37b9de9 drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcaf1d142 drm_bridge_connector_enable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xee0bc65d drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf09fe0f2 drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x15722275 s6e63m0_remove -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 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 -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x164d0786 gb_connection_create_offloaded -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 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 -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5aa2d1cb gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5ad3f2d7 __tracepoint_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5c0a8043 __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5f7d0165 gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6213634d __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x62663246 gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d02d712 gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x74d457f1 gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x75109d97 gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7660757b gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8487784a gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x84f84c49 greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x86c90956 __traceiter_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8879247b gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9246ab0a gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x96d6fa84 gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x98fb89cb __traceiter_gb_message_submit -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 -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc566de0c gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcaa4d640 greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd0de2785 gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd316cfbf gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3e646d9 __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd530fa15 gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd5780359 gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdcc23727 gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xddcddd84 gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 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 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 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 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 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 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 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/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 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/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 -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x549317f6 hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x572acbff hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x64bae45a hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x714b8db7 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x76350173 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x79fc84b6 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8571a8ab hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x86866d5c hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa7599b12 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa8b93a2c hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcf6e5202 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd0fb80ef hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xec6ee8d9 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfbd40e62 hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfd74c4e6 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfff43c86 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x6fb60ca7 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x89e9c479 adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xb6d4a356 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x70d8c135 ltc2947_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x01e1882c intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0307bdcf intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2ce16396 intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x58fd294c intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8236b93c intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x93a3b864 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb7da0b91 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd4d72751 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd53e701e intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x1bfe6efc intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x6b47d028 intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x85ed93dd intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x01e2767b stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1ec69840 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7fb085dd stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x863d8fe9 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa58085e4 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xcf2116a0 to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd616ae61 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe353c653 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe6bbb38b stm_data_write -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x5e222c93 i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x63fd7ccc i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x8f412eaf i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xea5ce404 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xb48d7e10 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x114e44a6 i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x114e8b81 i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x16b6959d i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1b22809b i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2e1d1f30 i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5856e307 i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5b232b8c i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6e76a4a5 i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x70b3eab2 i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8c49ba72 i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x92e775dc i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x97011eab i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x97513196 i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9d80891e dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xade2c9c2 i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb19c3353 i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb1def1e0 i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb84e2598 i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbd2cb25a i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbe2a0c8a i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd385dbcb i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe38f4414 i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe829c67f i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xeea9c1d4 i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf7693770 i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x14649475 adxl372_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xaa08703a adxl372_readable_noinc_reg -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x7ee20e04 bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x9405d7fe bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xa4dbdef2 bmc150_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xc6a976f2 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x03e23a41 bmi088_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x3af2ba57 bmi088_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x85a3e22b bmi088_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x9fcb7186 bmi088_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x44287ce4 fxls8962af_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x71b9aae9 fxls8962af_i2c_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xd3673e2c fxls8962af_spi_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xecaefd1b fxls8962af_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x1f5172bd mma7455_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x4c03f433 mma7455_core_regmap -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x5e1800cb mma7455_core_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xafa579e7 ad7091r_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xeee559bd ad7091r_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x08624631 ad7606_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xcf54ff6b ad7606_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x29327769 ad_sd_reset -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x443da54f devm_ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x71b2aa9b ad_sd_calibrate -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x793ec40f ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7cb04119 ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x93b8425c ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9c601631 ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xaf519219 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc724e5ae ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd78e0356 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x1457355b devm_adi_axi_adc_conv_register -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x7c8e17f8 adi_axi_adc_conv_priv -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x73492970 iio_channel_cb_get_iio_dev -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7c8cbc6d iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xdd4242e1 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x19ccd7c5 iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x452ae3d6 iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x63f1f169 iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6dbad905 iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7dc5f070 iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x84e77eb2 iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x8ceebf55 iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb00134e9 iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xbbb7cf0a iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc115b3b7 iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe39ec114 iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf362293e iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x03fa29f5 devm_iio_dmaengine_buffer_setup -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x4578020e devm_iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x81ae9972 iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xc7f8111f devm_iio_triggered_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x3ba882ee devm_iio_kfifo_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x3b54d462 bme680_core_probe -EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0xe8876c81 sps30_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x1415be41 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xa738b3bf ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x17adda7b ad5686_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x2664a443 ad5686_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x47755c60 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x7def156a bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xf5c8d236 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x6ab3536e fxas21002c_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xe9ebd9fc fxas21002c_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xf7202656 fxas21002c_core_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xbc1c8666 bmi160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0xbe435cbe fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x2824f360 inv_icm42600_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x3443436d inv_icm42600_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x768f650b inv_icm42600_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x38a92a48 inv_mpu_pmops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xe50c7078 inv_mpu_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x37d8587b st_lsm9ds0_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xbff5cfae st_lsm9ds0_remove -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0064cadd of_iio_channel_get_by_name -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 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 -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2fbf5e9f iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3482f0c6 iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3508b038 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3802ea4d devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3dc66418 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x45ffb35a iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x46a9f2fd iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x49e15495 iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x50c8b7c9 iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x51e371c0 iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x524afaaa iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x581720ac iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5b172b06 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6941bf27 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x70c66425 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x73c90d41 iio_read_channel_processed_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x75958864 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x77f13d40 devm_iio_channel_get -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 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 0xa6f3d9ce iio_device_id -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa7092ddf iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb0ed4825 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbc0d8add iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc4008829 devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc51ac9fa iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xccc0f443 devm_of_iio_channel_get_by_name -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 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 -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xece93eb8 iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf99440a7 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfe015738 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xbfa97161 rm3100_common_probe -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table -EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0x2a8300ee mpl115_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x0c157327 zpa2326_isreg_readable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x50074adc zpa2326_remove -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x6c2e4636 zpa2326_isreg_writeable -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 0x0756cca7 rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x26781738 rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2b8ef649 rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3415b3d9 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x38cf81d4 rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x59264a89 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5aff10b1 rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x72b50829 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa924dc97 rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb9fa6185 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xce1e119e rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xdad516af rtrs_iu_post_recv -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 -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x04c573c5 rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0945a5c0 rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0a3a5f5d rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0a656de8 rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3eced838 rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x57ecf59f rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x992ad142 rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb23b807f rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb8562b0a rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xba3ce26a rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xba3de2dd rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbc90d820 rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd72c3c7b __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x00e3504b cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x0f405ec5 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x9017db5d cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x5283bc15 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x54a2fb69 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x99649b1a cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xbd94739e cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x048eabbc tsc200x_remove -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/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 -EXPORT_SYMBOL_GPL drivers/iommu/iova 0x42f5e1c3 free_iova -EXPORT_SYMBOL_GPL drivers/iommu/iova 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL drivers/iommu/iova 0x92193414 reserve_iova -EXPORT_SYMBOL_GPL drivers/iommu/iova 0xa690fe20 init_iova_domain -EXPORT_SYMBOL_GPL drivers/iommu/iova 0xc3604a46 free_iova_fast -EXPORT_SYMBOL_GPL drivers/iommu/iova 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL drivers/iommu/iova 0xdda7295e alloc_iova -EXPORT_SYMBOL_GPL drivers/iommu/iova 0xe3c5537e find_iova -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0cc1e9fa ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0de07538 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x19659b46 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7795ccf4 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x87a75f89 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xac461474 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc4210137 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc8c81957 ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf116dae0 ipack_device_add -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x0c79f3fb led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1620daad led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x38820a60 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa756fc58 devm_led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb1d54258 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe2d81263 led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xf941fc2f devm_led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xfacd66fe led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x2f486792 devm_led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x40a6953b devm_led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x63bbbe33 led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x74289f2f led_mc_calc_color_components -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x760338b7 led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x450563ff lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5d579fe6 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x68ab1989 lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6e90daa8 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xad573983 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb71b4b40 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbbbb4993 lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbd7f0f1a lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc87106a6 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xef21b700 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x0a0527be wf_register_client -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x1a2962ad wf_register_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x2a3c4dc6 wf_unregister_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x2d92c6b0 wf_unregister_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x2e5c42bc wf_put_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x8bbeb5d5 wf_put_control -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xabc484c8 wf_register_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xc7c332cf wf_get_sensor -EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 0xf984029d __traceiter_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb3d6c67 __tracepoint_bcache_request_end -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 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 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x22839aa5 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x37dd1fee dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4312d2bd dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x49b95f38 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6550cf2c dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6631ab80 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x67fbc44f dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6a1344ad dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8e8be8ad dm_cell_quiesce_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x932d7d48 dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9664b251 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa1ab724c dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xba86693c dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc678a263 dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xceb08202 dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x1c41a6b6 dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 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 0x255cd39a dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x4eb87cc8 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7890d535 dm_cache_policy_get_name -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 0x6aa8bf82 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xbf57755a 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 0x2bdc5dc0 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 0x3b7d2b65 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x541f4195 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5def6949 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x71471956 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9f531e6a dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 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 0xa65b1014 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa9cf611b dm_btree_insert_notify -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb3d7482b dm_bitset_new -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb6879c01 dm_btree_lookup_next -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 0x124bbfcf cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1ea388bd cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3e7def5e cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4ed34230 cec_received_msg_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x53e35959 cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x55f5ac84 cec_s_log_addrs -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5e1282ff cec_notifier_conn_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x680c9cb3 cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x72f4e555 cec_register_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7402e9b1 cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x77e1decf cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8550452f cec_s_conn_info -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa29ddf90 cec_s_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa5b18506 cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa6a50a21 cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaa94f86c cec_unregister_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb3351e65 cec_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc86cbe62 cec_transmit_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xeb98b401 cec_transmit_msg -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf6688ba3 cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0e2172a6 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x14591c97 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3478bfe2 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x40178181 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x96026659 saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa458b67a saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xab4792b5 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb560fc67 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xdddd2097 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf0d2d4bd saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x2e2975ce saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x323e43a0 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3fe576d3 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x81fb0cc6 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x825b03b0 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x85902390 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb74f7b7c saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x093d4ca1 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0a0028af smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x27a82ea8 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3c6c41eb sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x441d6588 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x675694eb sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6b615dd9 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6da2f3ac sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6fb021e1 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x877a4e29 smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xaae06b61 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe49934dd smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe8b873fe smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xeb4b08f7 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf02ac66c smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf60bac26 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfc45f1c3 smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings -EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init -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 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 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 -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x44e349a5 vb2_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4c0eaa89 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5e4016fb vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x630b24d3 __tracepoint_vb2_qbuf -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 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 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 -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xeb601044 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf6c8f4f0 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf703a3f9 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfd8f8731 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x0997858e vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x31b6ae12 vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x33eee76b vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x0462b281 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0003d0d6 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2129438d vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x274f3484 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x29a39419 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x324f3868 vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x371404b1 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x38d444e8 vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4e89ac86 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5e9b7a3f vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x658491e2 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x677c8630 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x680512d4 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x788051f2 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7c22caac vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fee4336 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8eb438eb vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x901e7e83 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x964a02cc vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9779a2f6 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa2cf99b6 vb2_find_timestamp -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa5083b53 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa99f6f39 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xaff6dcab vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb8362ce8 vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb9a4402c vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb9f0b48b vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xccb2f80c vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xce0ae352 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdb431c81 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdbb0a315 vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xec0ec0b9 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xed6fa6e9 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf2dfd50b vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf709ee13 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0xa38e2c0a vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xa513b4dd dvb_create_media_graph -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 -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x656f7bc7 max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x66fbdb5f max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7ab62e65 max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7ab92b63 max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x86ee4888 max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8a3b0eb3 max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb4f6e90c max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc06fc5bb max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc6f68fa4 max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe518a18d max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe6ac0f43 max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf8695392 max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0db4b56f media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0e1c5a23 media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0e6b674b __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0ec1e5cf media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x12b2af76 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x155b7d42 __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1c16880c media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3123ecc0 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x31cee6cd media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x380f52ab media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4070888a media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x51ae93fc __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5713e7c7 media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5c4c75da media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x63f3b3d5 media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x655dca1e __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x75e84e2b media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x814a5c71 __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x92ea7956 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x92fb3bec media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x97885cff media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x98705cae __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x991576bb media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa0013443 media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa03e6f2a media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa1ef30e3 media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa523cc3d __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa89c6809 media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc65b1d5d media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc7fb46f1 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcc758d74 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcd9d99d7 __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd084243d media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd08a9b50 media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd0b23d37 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd1d6361a media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd2c46f96 media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd4bccd4d media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdfe27755 media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe3365121 media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe4fdc441 media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5275950 media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe575cb62 media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -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/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 0x98d844db 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 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/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/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 -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x78754415 mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x99d10870 mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x297bebb3 xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x2a271bcb xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x410d679a xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x6f321ce6 xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xaf5ba841 xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb962f818 xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xceaaf2aa xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xd10e564a xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x2007b763 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x4a9f5812 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x5df2249e si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x7e9c92f9 si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xa4735e66 si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xc91a278d si470x_start -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xd4eea4d1 si470x_stop -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x09898123 ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x09ae3156 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x17f62df1 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x27473df9 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2a8963b7 devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x609dd532 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x61ede845 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x72f01f3e rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x79008384 lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8582d127 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8837b68d rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8cfc9e5c rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x927eb9a4 ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9f8304c4 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa7e3f746 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaf1c6040 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb6c66619 ir_raw_event_store -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 -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xee31fe6a tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xdca26df0 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x689f7e52 tea5761_autodetection -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 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x12011bb4 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2bd8eb30 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x30fa615a cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6e47e76f cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8f00d92b cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x95f3d1d8 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9d3f5f31 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9fe18240 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa5a345ad cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbb27eb97 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbf65c454 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc47f2ec2 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcb9140f9 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcc69d6a5 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd8f6c99b cx231xx_send_gpio_cmd -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/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 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x41de736d em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4e57ec04 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4fabf233 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x582577ac em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa561bd68 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb4380bc1 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb6bd04e1 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb9ead452 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xca674b9d em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdf12700e em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe2860fe1 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe5310300 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe76c886f em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xed8b61d8 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfc5e1e5e em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x06cd7e26 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x5d54a1a8 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x700778b4 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xce3d0118 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x1d98bf54 __v4l2_async_notifier_add_fwnode_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x236a6ed2 v4l2_async_notifier_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x67f904fd __v4l2_async_notifier_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xb49f3981 __v4l2_async_notifier_add_i2c_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xcf67d063 __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-flash-led-class 0x0eefe8bd v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x14581958 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x95b70225 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x49ab8260 v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x53d9e52f v4l2_async_register_subdev_sensor -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x59cd7534 v4l2_async_notifier_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x68fedce9 v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x77255aa5 v4l2_fwnode_device_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x844ea33a v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x9274c8c2 v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x9c890a9d v4l2_fwnode_connector_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xaf269d5c v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf8915102 v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0c104d77 v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0c59fc2e v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x18b53059 v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1c7f011d v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1cdb06f5 v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1fc0aa94 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2b7ee5ae v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2cb78a33 v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3078d055 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x320e628b v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x516a930f v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x54ba7fda v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5704031c v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x57b5b13e v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x58b2903b v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5d39e31f v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x62b481c3 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x655760fe v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6e224d43 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7511e95f v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8648c28f v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8aedadbf v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x916f6f5b v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x96169f9e v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa0061634 v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xac394b13 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xacc683a6 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb1a772f8 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb31b3b4b v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb3cac4b7 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb918b129 v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbc5a6a57 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc224f1a1 v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc96029bd v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcfcde006 v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd2298b39 v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd62eb72b v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd77515b1 v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd9cab16b v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xddeaaa26 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe2bc3b50 v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe42dd883 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf1caa83e v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf9ed7e9a v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x000e902b videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2360a2ff videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x240ad296 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2c524f7c videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4115a862 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x42853b94 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4bb2a092 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4edd1018 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x63232f6f videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x656fc317 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x73520819 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7d2bfac7 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x81a5074d __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x833147d5 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8bab6306 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9f9eeb78 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa0711f81 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xac515d4f videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb61afb67 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbb4bb6e1 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcc831a51 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd06c1bab videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd28057f6 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd852e231 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x211a63fa videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x3e84bb84 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x5c5b4e55 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xcfea9531 videobuf_dma_unmap -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 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 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 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1454b6eb v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1fc47d42 v4l2_event_wake_all -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 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 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x35ac0d93 v4l2_mc_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x37b9e85e v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3a771876 v4l2_src_change_event_subscribe -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 0x479a38d4 v4l2_subdev_alloc_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x47c77539 v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x554b6dba v4l2_pipeline_link_notify -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 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x77848e4c __v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x780fe1c2 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7943de66 v4l2_device_disconnect -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 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 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9e7f2af6 v4l2_ctrl_request_hdl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1c847ff v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa31cd263 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa5d4a784 v4l2_create_fwnode_links_to_pad -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa8025390 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaa18b325 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae695f78 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaf672413 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb10dd4fa v4l2_device_register_subdev -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 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc86f140 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd6be992a v4l2_fh_del -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 0xe728dfe9 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xefcf8f77 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf1140344 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf4860fbd v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf67bb3b7 v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfc4fe96f v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x1576acb3 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x2eb97ec0 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xaea36efc pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x133e4091 wm8997_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x19267c60 arizona_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1ac9c050 wm5110_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2ee94470 cs47l24_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3c013778 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x455768ca arizona_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x49bbf5f5 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6ecb20c0 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7f39f634 wm5102_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x826aa209 wm5110_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x85966d68 arizona_request_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9e7b7dcf arizona_clk32k_disable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa6b70564 wm8997_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa727bd3b cs47l24_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa73e158c arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xaaf78759 wm5110_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb89f97bf arizona_set_irq_wake -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc1526345 wm5110_i2c_regmap -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/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 -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8a09a17b da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xbcec1136 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xcb2a2f05 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xfd753364 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xa142a524 gsc_read -EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xb7abd1c4 gsc_write -EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x08741613 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0cfdc552 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x150efc1a kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2cfe5dfd kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x561b661f kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6f7c126f kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x95f399da kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd75ff586 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x8112e8f4 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xb4b8bd5c lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc9dadc07 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x08800ed8 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x74930d85 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x78fb6063 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9eb0c053 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xafb0ed70 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xcb99834a lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf5b0e981 lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x65098f61 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xf6b88bd9 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xf9d275f9 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0d267a95 cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0d2ba6d5 cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x10008da0 cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x100d51e0 cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x11543361 cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x11e59495 cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x227216d8 cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x227fca98 cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2cdf9b6e cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3aa76168 cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3aaabd28 cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x400557d9 madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4db64b56 cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4e136799 cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4e1ebbd9 cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x533590ac cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x53384cec cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x61470bd4 cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x614ad794 cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x79927c64 cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x799fa024 cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x960f1ccc cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x99f63a60 cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x99fbe620 cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcd8f9a74 madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd76ff657 madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdac3276c cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdacefb2c cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8115312e mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa17c75a4 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb37380cc mc13xxx_variant_mc13783 -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/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/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 -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/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 -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x0ba26645 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x23da64f5 alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x2c45c2ec alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x3c25113c alcor_read32 -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_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 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x372d12d2 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x389736d0 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3dc820c3 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x504fe9da rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x506f3b4c rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6c095b25 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7750a7a1 rtsx_usb_ep0_read_register -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 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 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 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 0x9ec41948 cxllib_get_PE_attributes -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xbf750c17 cxl_set_master -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 0xe9630ef5 cxl_fd_poll -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/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 -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x4b711f77 oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x5909e701 oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x780d3f01 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x84eba96d oslec_free -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 0x2f5a0292 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x40497bda enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x40738336 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6c5abcc7 enclosure_add_device -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/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 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x1d3bad17 ocxl_link_release -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x1f26e847 ocxl_afu_config -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x236da438 ocxl_context_detach -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x239cb375 ocxl_afu_put -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x2c0b7e65 ocxl_global_mmio_set64 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x2d876dd2 ocxl_link_remove_pe -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x2f307b85 ocxl_global_mmio_read32 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x31ec6bd5 ocxl_global_mmio_write32 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x55ebc42e ocxl_config_terminate_pasid -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x585a3305 ocxl_config_set_afu_state -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x586425a2 ocxl_context_attach -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x5d8814ea ocxl_link_free_irq -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x6995414b ocxl_afu_irq_free -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x69d95e78 ocxl_afu_irq_get_addr -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x6aef498c ocxl_afu_get -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x6b3c97c3 ocxl_config_set_afu_pasid -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x6ef2dd12 ocxl_global_mmio_read64 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x70f709de ocxl_config_read_afu -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x73de2822 ocxl_context_alloc -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x769bd215 ocxl_function_afu_list -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x82920d39 ocxl_config_read_function -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x8382c4b5 ocxl_link_setup -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x87b38650 ocxl_function_close -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x883098f7 ocxl_context_free -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x9dd9094b ocxl_function_fetch_afu -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xb40229f2 ocxl_afu_set_private -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xc3e7d18f ocxl_global_mmio_clear64 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xc7932759 ocxl_irq_set_handler -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd1958c55 ocxl_config_get_actag_info -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd2d83c39 ocxl_config_set_TL -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd57e0fa7 ocxl_link_irq_alloc -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xe1c272ef ocxl_global_mmio_write64 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xe27f6ee1 ocxl_afu_get_private -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xe33737eb ocxl_afu_irq_alloc -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xea70fc26 ocxl_function_open -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/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-pltfm 0x43df1336 sdhci_pltfm_pmops -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 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 -EXPORT_SYMBOL_GPL drivers/most/most_core 0x3dd6aadf most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0x5b05a733 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x69090b76 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x711efccc most_register_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x73705854 most_stop_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x7f2afd2d most_start_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x9ddcc7c9 most_put_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa651d518 most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0xb9e4f574 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xd7a7e794 most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xefc04be8 most_deregister_component -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x1d845180 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x22ad7468 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xdfb351fe cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x3d39e69c cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x436bad4c cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xcec0291a cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xacfe801b cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x19ec8283 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x5ae5c17b cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x7b94bb70 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x721d641d hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xc0598380 hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x001a0dfb mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x09d48d61 mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c2cf296 mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x18f0a267 mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1a90628a mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1f0bbf05 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1f62ec41 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2ae9d284 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x31a52fcb mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x38c60fc3 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3b7057e6 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3f155bde __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3f60cb3a mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x40026221 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x40f6133b mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4185cd4f mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4aeb8ff3 mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4b0b81a7 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4f98bc7b mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50b17d9a mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5170e7db mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x52a9f3f3 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x55c65dd7 mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x57e9966d deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5f027ccb mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x60e74f06 mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x65455cd1 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6a9566a5 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6d0c1caf mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7c70cbbe unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x80de6486 get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x84c58e25 mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x872f1ee3 mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8e8a7cbf __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8f73a862 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x911434c0 mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9bbeeb68 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa477240b put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa96d8d5c mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaf62c44b mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb24bd6bc mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7440604 get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb92f2560 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xba277b15 mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbffd2e02 mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc07a484e mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc1e562ac mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc2052ccc mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc49f1a73 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe3c04608 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe6da358d mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeed9b497 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf5bc4997 mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf99f53ae mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x6630ffad deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xaafe3bbe mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xaf4c59ed add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xc1257eda del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xee658a74 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x16c49f11 nanddev_ecc_engine_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x38bb6083 nanddev_mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4b7bf7e7 nanddev_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5e419d7b nanddev_bbt_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5ebb247a nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5f3baafa nand_ecc_restore_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x66c0efb3 nand_ecc_init_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7edfe3f8 nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8012aea7 nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x83e811c6 nanddev_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8e833e7b nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8f17a501 nanddev_isbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa3bea792 nand_ecc_cleanup_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa5c01c2f nanddev_bbt_update -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xbdbd32c7 nanddev_ecc_engine_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc7286436 nanddev_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc98aab07 nanddev_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd42da74b nand_ecc_tweak_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdaa9b2fc nanddev_markbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe9414c12 nand_get_large_page_hamming_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf5573537 nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf979cebd nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x0909aed4 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x14df49ee onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x2f109083 denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x09b01b3c nand_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x227d707e nand_gpio_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x25ff654d nand_write_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2fe91844 nand_op_parser_exec_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x386d947a nand_reset -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x49d7fd45 nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4c51b8af nand_readid_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5e1159b5 nand_prog_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x652971b2 nand_erase_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x74f5d7cb nand_read_page_hwecc_oob_first -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8e5f1b46 nand_deselect_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8e893474 nand_decode_ext_id -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x960a6d74 nand_ecc_choose_conf -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa8c364f7 nand_read_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xaeb13ab5 nand_read_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb5c9490c nand_status_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xba86cc2f nand_select_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbbc7fcf6 nand_reset_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc0aacdf8 nand_prog_page_begin_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd146e097 nand_prog_page_end_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3c672b8 nand_subop_get_data_len -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd41ff2ac nand_subop_get_data_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xdd46835c nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xecff0db0 nand_change_read_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf6982b23 nand_read_oob_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf79dc720 nand_soft_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x57705a34 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xaa0cfd50 spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xdbf20ae9 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1045292c ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1ae094b3 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2dad6399 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x311b54e2 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x57abb52e ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x60bb6936 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x629afa8b ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb3e52b5e ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb422f4a5 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb4eb13dc ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb4fd8ff5 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd00d0620 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe8053edf ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf7fa6604 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x14a38f16 mux_control_try_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x37293491 mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x4aac5bb8 mux_chip_free -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5cb91a9e mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7b2ad1bb mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x9e035da9 mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x9fb0e6dc mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xba381105 mux_control_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xcdaa9d21 mux_chip_alloc -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 0x0547efbc arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xe7554cf5 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/bareudp 0x9e27a945 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/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 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 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/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 0x19f579b5 lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x021b868b ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x111f4f50 ksz_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x118ff178 ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2cccd524 ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3f5ff299 ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4d68a42a ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7afc0cd8 ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7e0cfc6f ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x920977ed ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9a5ad554 ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa95a7d28 ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb6af7147 ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbbf6da0f ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf4a67762 ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0512cc46 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x08ffd85f rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0f6cbfaf rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x315b5d26 rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x507e6122 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x8320c9f2 rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x8a374d43 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xae13b881 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb096c952 rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb701aaad rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbd4bf688 realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc062633d rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd4617ac8 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf585d0aa rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xfe0b8c44 rtl8366_get_sset_count -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/ethernet/freescale/enetc/fsl-enetc-mdio 0x57974f0f 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 0x35943859 i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x868b1b06 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x54c16a90 ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x800d6073 ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x9fb7736d ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xac281fb0 ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc66c2211 ice_del_rdma_qset -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 0x0643d63c mlx4_set_vf_link_state -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 0x16d48efd __mlx4_unregister_mac -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 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 0x2592697b mlx4_get_counter_stats -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 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 0x3408e5df mlx4_free_cmd_mailbox -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 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 0x5210b67b mlx4_vf_smi_enabled -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 0x58dddb5c mlx4_set_vf_spoofchk -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 0x5b432520 mlx4_alloc_cmd_mailbox -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 0x5f406834 mlx4_vf_get_enable_smi_admin -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 0x611ed655 __mlx4_cmd -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 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 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 0x85ecdeac mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x876c10e5 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8969db19 mlx4_get_active_ports -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 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 0x95f9566f mlx4_vf_set_enable_smi_admin -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 0x9f3b5e66 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fb6b0ab mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa245cbcf mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5df4eee __mlx4_register_mac -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 0xb810eb6f mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba64d4d3 mlx4_get_vf_stats -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 0xbfbdf4f9 mlx4_get_vf_config -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 0xd4511aae mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd55c8dde mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6e8e269 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd703551b mlx4_slave_convert_port -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 0xdebe058b mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0062180 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe13864b3 mlx4_set_vf_rate -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 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 0x00525971 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01c1a6b9 mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03577a52 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07af6c77 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x095bf975 mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x097778df mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e5e2643 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f4e7410 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x149f44a1 mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a835712 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b3645d7 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x246d71f2 mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2796ed50 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ba6c20d mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d932d79 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3849213a mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c8917a3 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ddebf18 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f7c7794 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d1c504a mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50a79c22 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5686b8c7 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a8a2eea mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5df33529 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6511a741 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67bb878d mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x692c3900 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ac263ad mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72b38550 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72c0be74 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x733f5a61 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79883119 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79a511f6 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cb5d64b mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d2c2778 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d9190ac mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x827d4a1c mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8958002d mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d71464a mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f91c1ff mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa256ca97 mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa69c4e98 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa72c6d4a mlx5_nic_vport_enable_roce -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 0xa7693f00 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac5d0f6b mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae7ca5f1 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2e277f1 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb41b31b0 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7e4b7ff mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb954dc40 mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbabeb8f6 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe3342d6 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc01387ed mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3cd3522 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc735ae66 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb06ab39 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1e447f3 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd24baf8c mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd336c239 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd543a06b mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd70cb620 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd225b2a mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf5ec3c4 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2021571 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe21c18b2 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe410b23d mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5a45ea4 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9fd4daa mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5de3a58 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcc4a8d8 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfebd0566 mlx5_query_port_pause -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/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 0x0a42b158 ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2a5838ef ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a46abfb ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5e469667 ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x602a3b85 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x722487a8 __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a792c4a ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x893a5fe4 __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb46feb73 ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdb8e4475 __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe84c431d ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf6c336ed ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf786e582 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 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 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 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 0xc2f6d8f5 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x491dfaa3 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x5cd3c911 ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x71873cc4 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc0f4f1ee ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xce4e58f5 ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/macsec 0x41ef033c macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x83806444 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x84443678 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb7361c9e macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf5313179 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/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 -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/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 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 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 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 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 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 0x32441740 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 0x4c866878 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x881f30b2 vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x8e3efec9 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x9db4d77d vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x77950f12 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x37abc1c4 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb20e151b il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc90c602e il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdb05de0c il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf255f616 il_dealloc_bcast_stations -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/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 0x229d8b26 iwl_init_notification_wait -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 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 0x5987fe45 iwl_fw_lookup_assert_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 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 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 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 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 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 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 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 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 0x080bd5a6 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x141131b4 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x18593466 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x29a7f8bc p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x73a1ce2f p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x9eaaa76c p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb495e7f2 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd78da20f p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe5fba4cf p54_parse_eeprom -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/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 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0d0e7cae lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x32ac8522 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7c4a1f99 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xbc90bd08 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xbdd36f6b __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 0xcce2c546 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xd7078bef lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xfdc21dbc lbtf_cmd_copyback -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/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 0x030ea94c ____mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1066f6e4 __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x14ffee84 mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x151cbb6b mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -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 0x20f812d5 mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x271c4038 mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2f399bc9 mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x343ea955 mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3751628f mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x399f399e mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3cdcbcc1 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d26d092 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d5bd55f mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d6e6761 mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3ed76e54 mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3f3d54a2 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3f47ffdf mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3f7d866d mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4141768d mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x421912e9 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x422b5c24 mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4248d204 mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x42c6779d mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x43ba9aa0 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4478ab9e mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x597c1061 mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1b4e42 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5ddae72e mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6c3e760d mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6e231750 __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7068be33 mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7280aa15 mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x74497f90 mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x746494f1 mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x76eb101f mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7ac3fef8 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7ba5ba19 mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x822bde5f mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x83d623d4 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x844b0019 __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8b6bc84e mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8e84883a mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8eba1f96 mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9210d261 mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9491f7e5 mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9538eb53 mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x979376c3 mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x99f6d3c3 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 0x9b5940c5 mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa018610b __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa0e51dfb mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xac3a06de mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaf522219 mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb487c4fb mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb4f4f89c mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb9391a00 mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb9839829 __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xba7b3d8c mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xba924e69 mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbd049d89 mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc21972e3 mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc2447c61 mt76_get_rate_power_limits -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 0xd28dc21d mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd2e4612b mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd3e5c1fd mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd73de709 mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd7872f30 mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd8199516 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xda65e0cd mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdab49bd8 mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe1d0f7eb mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe3648438 mt76_get_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe5ef4573 mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xea063cb0 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xea3d910f mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf25031ba __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf6deb310 mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfe72d4b9 mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0536417f mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x095116b6 mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0e44495d mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0f559053 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x173eb15a mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x261c5148 mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2624ced5 mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2ef3514d mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2fe7125e mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x33bb4978 mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x361df53e mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3c710e9e mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3f45caea mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x452c8a48 mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4c7c1e87 mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5051ecaa mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x51ebf515 mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x520050cf mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5f1908a4 mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x61182c87 mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x62942193 mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x688c02c0 mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6aa76fbb mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x79c02be3 mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fd8478f mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8b48f675 mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x997d1f7f mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9ec6aefa mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9fa8fb89 mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaaa5eb19 mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xafaa6052 mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb934f167 mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc439dab3 mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc44c5997 mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc54f981c mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc62144f2 mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcb14a0d6 mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xce6a4c30 mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd84dc5b3 mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe253d437 mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xef13de38 mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf7dd32c4 mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf87cafc0 mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x603e50b5 mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xbd09a9f0 mt76s_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd22acf1b mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4b6cce0e mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5fbd3e55 mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6de356b5 mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7a4d1677 mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7b916426 mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x97e0edcf mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9c8c2b5f mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa3376249 mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe601f55c mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0c713fe8 mt7615_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1cd62e00 mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2497f0d6 mt7615_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2c8a09a5 mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2fa9ae30 mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3305ffc8 mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x366eb265 __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x486d009d mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5c0ede10 mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5c3b02c5 mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x767e3cf0 mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7b3426e5 mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x88d51039 mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8dd8be98 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8fa92c84 mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x90894026 mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x91ad24ca mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9b5b5b7b mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9dde99d6 mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xba440011 mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbd86568d mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc17eac42 mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc26fc34a mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcb545807 mt7615_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xce2ec8ab mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd60f9f6c mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe5bc87f3 mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf35c4aa9 mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf8e1ba64 mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x19ca80c1 mt7615_dma_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x06c45c24 mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1506ffca mt7663_usb_sdio_reg_map -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x89ab1fb7 mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xb1997c76 mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xc4dad965 mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x09c3ec28 mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x3e0e2f36 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x4bb5fec4 mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x4d65a280 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7413e6ab mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xa408ae59 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0137ad5b mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x01bd76d5 mt76x02_dma_disable -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 0x0d4023ec mt76x02_get_max_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1143066a mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x15b35323 mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1841c6c5 mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1f67dc79 mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x23597424 mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x25a68fbc mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x25f779bf mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x279868d2 mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x297d1256 mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2e5dbc5e mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x30579497 mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3523109b mt76x02_dfs_init_params -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 0x3da7187f mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4152c9b2 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x42dfd8c4 mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4aa19ad2 mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4e138bae mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x53d76297 mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x544b7adb mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5a18b8da mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5b9de514 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x62d3a9c9 mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x67774c13 mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6b9db8a2 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x708446c2 mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x71d13257 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x814f6cac mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x83b44952 mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x85566e8b mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8845ac15 mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x88f42da3 mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x89f14cee mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8a4e2093 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8d545a85 mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8d7fc5e3 mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x90d56e34 mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9babc147 mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa121534d mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa61a52bc mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa9c3d62b mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xab0d7b4c mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xad8af78b mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb484aa9f mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb7ac0ace mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb931c295 mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb948770c mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb95d566f mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbd8af405 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc395af2c mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc6a25b5c mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcc7db3f7 mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcf202e5d mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdc0ec6e3 mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe0953f6a mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe4233e08 mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe631ae0c mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xea6b302d mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf099eeaa mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf134a53d mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf4274e41 mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf62e4f7c mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfa8680db mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfae59581 mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfd4affa4 mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x1c68f8bf mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x2e6bddef mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x3e89de6c mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x59e72d3c mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5ccb1dd6 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x785546be mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xab91c112 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xb297427e mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x03b0b252 mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x06d9c62c mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0c84eedf mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x23338a6a mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x25754f38 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2e501ac4 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3245d6ad mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x461936fd mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5862bfd5 mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5e8b67e7 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x63543229 mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6c4dbcb6 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x85026b53 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x94aa23bf mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x99b714f7 mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc724cae9 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc9afdcab mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd423b32e mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf62cbee7 mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x07716fef host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x11e5ce6c wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x3433323b host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x8229c642 chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x8f910184 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb7f9a4b9 wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xd6764a41 chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x1105524e 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 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 0x03a81b42 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x116fc1bc rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x12368ad5 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1bbce459 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1e8a959c rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1ea5eb57 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x22d7a7be rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2eeb6078 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x331ab67c rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x41b13528 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x431f28e9 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x444c833a rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x500536b4 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x523caf4b rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5938e5aa rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5dff273c rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x62c4660e rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6e3a59b3 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x708233c6 rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x72d4115c rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x75b27578 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7b8d259e rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x98c2b138 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9996a8c9 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x99cf8ebd rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb0a842d1 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb38c94b1 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb4798397 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb6c86434 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc73c6a68 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xca9971f0 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcbc0b22b rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd2b6072a rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd709d353 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdb1559f7 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdfcf845a rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xea867291 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeac539c7 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf503875a rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf66df890 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf77062e9 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfcf0b791 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfd6977f6 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xff063fa0 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x006d9347 rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x079fe4ff rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1f1618cf 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 0x5028bbb2 rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x554d2537 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5f075d77 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x610acf2d rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x65b6716e rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x941fa329 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9bc5173a rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb9cf4026 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc9124f76 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xccb884b5 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd1659075 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xdf530552 rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf388848e rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfaf1a952 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0384f05a rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x04a1e02b rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x05f9a434 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0f1de897 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1450f326 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1e8d75fa rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1eb6e3ef rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x23dfc167 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x25670ca3 rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x29146907 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x293a967c rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2d0984d5 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2db09205 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x33996602 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3828c11f rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3a9923d1 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3cf0ab02 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x407eb92a rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4687b374 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x49884b25 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4cc9d34a rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x51ad559c rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5c7a2614 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5d10e5c4 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x69d6d559 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x739f8602 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7ce7df3a rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7faaf4f8 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8caa63c4 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8fd6634a rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x91e555f8 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x928ccf2e rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x93eb13b9 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9f9ad0f2 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xad641b0f rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb024f0e4 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb1501d10 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbdceebdd rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc173e6e6 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc4b5e5cc rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdbd0daf2 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdd84e620 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xddd5e869 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe5424581 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe630fd3a rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe85bce16 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xea3ba9e9 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x33f9d5f3 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x54f67398 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x9de5fb44 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xd680a5a8 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xf28a6423 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x058553df rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x1bcba23c rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x94d2a712 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x162d7199 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1dd4673c rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x28776c7b rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x29ef05c7 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x403bd69b rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x509fac06 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5228247d rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5c8231fd rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5d86327e rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa44cf363 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa8ef895e rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb0de660a rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbc0d8000 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbc1538ff rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf5602fbe rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf8014d41 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x01af55c7 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x74863807 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7ecaf09e dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd3ae1204 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0a1f3ab2 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0bb7b58f rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0ccd1dba rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1090a765 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x14f11d57 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x326c713c rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x32ade542 rtl8723_write_fw -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 0x3fddcfb0 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6070765a rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x627bf3df rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x663ebf1f 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 0x913a616a rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9a2a8f19 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa040ab9c rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb2a5a48a rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb5baae8e rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb92fd627 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc765b50c rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc7f14e6e rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd1f6a043 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xda9860e5 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe0653dc6 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xeb217ca7 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf27f51ae rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf5351d58 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d55a238 rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d672131 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d9c62cd rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0e27ffe0 rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x11581023 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1a6a707f rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x23b97199 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 0x2d32cdfc rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e51b32d rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e9d732e rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54939ca7 rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6ad63690 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x753febaa rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7cdc5abb rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x80f265c6 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ffda27d rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa73b6484 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaf902c1f read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb39ec783 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcc1503e9 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd5b3f2a2 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdd9ae849 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdfd94dd2 rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe9b3f52a rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed8ae175 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf821fb7e rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xb7010de8 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xb85a9e2d rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd43ec922 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd90147e3 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xed7e0a2d rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x62762652 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x81ce3983 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x91de3008 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xd51ce111 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x857e5f73 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xab96334f wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xff0bb408 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x010c0324 wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0dae0f3f wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0e1881ff wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0e61d4ac wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0fe462cd wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x13c4bccc wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1586332d wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x15c14ac3 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1b61a7e8 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2fa3d087 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3260f2bb wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x35c4421b wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x451014ad wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x474e2f28 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4e3fa5a4 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x591f42d3 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x61d3c7b8 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x68c8edcf wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6b9e42e4 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x74ce3e9d wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x75053d47 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7b8a58a4 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x840dbcec wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8b736f63 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91e2c74f wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x944cb3d9 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9ec68e9c wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa287ba17 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa47a2bd9 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa735b777 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb312ab52 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb56894ab wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb97103e5 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xba69a2b9 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc0d75330 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc3684bc0 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe03bc163 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe0c79386 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe53da89a wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe55b694e wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf2ccdd65 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf8e20dee wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfa13a550 wlcore_cmd_wait_for_event_or_timeout -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 0xdecfd339 pn533_rx_frame_is_ack -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 -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x31b13083 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa3f8b930 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc5e5ba66 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc89cf2e7 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xfef26853 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x4a812753 st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xb0a9111d st95hf_spi_recv_response -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xb5d5c5c4 st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7505b97c ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9210a74a 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 0xe0a5ba9a ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x35ee7d33 async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xf993b7a2 virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x02ab8fd3 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0e404cc6 nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1869ce8f nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x195921ed nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1e08487d nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1f8d91d4 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2473e3f9 nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2522d8ab nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x31c7fdec nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3620ebdf nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3a04c297 nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3b0dd1d8 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3d68477f nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x46d9578f nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4942a79d nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4b71077e nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4be1bfe9 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x691385a6 nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x717d60ce nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x79b4e200 __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x83583fa5 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 0x91ceae9a nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x94992298 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x98efc28e nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9fa640d6 nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa179c765 nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa2b92742 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb849e018 nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb9361f68 __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbea2e5bf nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xca26d9c0 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xca662b2d nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcd42856f nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xce0e8f38 nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xceebe18c nvme_delete_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 0xdb7d6ed4 nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdc142e0f nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe1733bd7 nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeafd9a1f nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeb911d20 nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfd7c19cf nvme_setup_cmd -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 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x420ef1ca nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4f3d3114 nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9d6d1821 nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc13a3c2e nvmf_ip_options_match -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 0xfca9dc99 nvme_fc_unregister_remoteport -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 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 -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 0xef5f4025 nvmet_fc_register_targetport -EXPORT_SYMBOL_GPL drivers/pci/hotplug/pnv-php 0x0ad9048a pnv_php_set_slot_power_state -EXPORT_SYMBOL_GPL drivers/pci/hotplug/pnv-php 0x5cc75072 pnv_php_find_slot -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x01cc7086 rpaphp_slot_head -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x2b45c9c6 rpaphp_deregister_slot -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x928ae3dc rpaphp_check_drc_props -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0xdac5e324 rpaphp_add_slot -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xaea0d01b switchtec_class -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x4420eeef mcp23x17_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x6b284f44 mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x745b4a00 mcp23x08_regmap -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x34f85fef reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x52fa4db9 devm_reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x63d4913f devm_reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xc986cc95 reboot_mode_unregister -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/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 -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x6c36ed6f ptp_qoriq_adjtime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x88c44b4d ptp_qoriq_gettime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xba63a3d9 ptp_qoriq_init -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xd73f38a5 ptp_qoriq_adjfine -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 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/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 0x0f521614 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x12911275 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x15baf8c2 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1b822650 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1c64eb58 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x24486b75 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x24f08346 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x26b08bd8 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a1dd943 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2cbca704 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2fa3b0b3 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x41f5aecc cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x43ebc2a9 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x48980dad cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4e6bf749 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x53e80596 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5589f11a cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5cf6a4bc cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6156e1bd cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x65068752 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x69d01480 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6fa645a0 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x723b6f10 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x73515d76 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c4b1b85 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x852899fa cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8fc4c941 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x91640a9a cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9594f7ed cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x97cdaaac cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa4560c29 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa5e1e734 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaee36f7c cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb9e8c468 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbca864e4 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc1086420 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc18d46d6 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc1e0dfcb cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc70430cd cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd1c39aaa cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd539a3d8 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd89c1b74 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdca7bc7d cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe65fb3d1 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x12c45b5b fcoe_clean_pending_queue -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 0x98209e58 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa729d54d fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbb378a9f fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbdb9a835 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc0185d2d fcoe_get_lesb -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 0xd1684f31 fcoe_validate_vport_create -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 0xed89b2cd fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -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 -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x2959d805 iscsi_boot_create_acpitbl -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x48e452c5 iscsi_boot_create_initiator -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 0x050ee9c9 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0b1f97ad iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1e45c958 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2536a2c9 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2f3ca4b8 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x372a2c99 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3b1ddeaf iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3b3d5058 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3c4b4333 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3e1da1fe iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x40b72467 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x45688361 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x46cdd445 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x49f56153 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4c4557bf iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x54fcc836 iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5e27d2f2 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5e661d0a iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x63ab4b98 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x659f7eb9 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x65f37c21 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6fd63f1d iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x71fa1429 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x721cd0ac iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7984c1f9 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x86089da1 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x867890ea iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x874ef8b1 iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9016d837 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91a34f8c __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa14185f6 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4a2ff30 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa5729991 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xad2e6732 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5a5ba7c __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbbe4e071 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc2d539ea iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc2e2a0a7 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6ce864b iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc76f980c iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcbfc80dc iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd51c30f iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd10111d7 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8408f23 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xef496e62 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf4553dcc iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf7cf8cc0 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfe317c0b iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3771ecc5 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x429be980 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x45569fe6 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4702b57a iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6b49a4e8 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x70acd59d iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8ceac51e iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x911e5c6b iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9b1a54ed iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9ee2921c iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa28d1bdb iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa94e0eb6 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe02c4989 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe73e44d2 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xec7b897f iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf252e168 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf39afe56 iscsi_segment_seek_sg -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 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 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 0x027438d0 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x03a52a0e iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x04eac972 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0b178c47 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0ecf97ab iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x162cb75c iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x19d0a8cc iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1eda0a79 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f504e77 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1ffb7589 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2764df54 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2b0910d8 iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2c3994c0 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2dc5eb70 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3467618b __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x420e32d4 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x45953d87 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d8faf5d iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4e61e051 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5219ea16 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54a7d8a8 __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a3d2a73 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67ae2e53 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6c9abe10 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6d052765 __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x74ec0f47 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7951f863 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7f41c4b2 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8211a8d3 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82b33cf4 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84f4fbea iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x879d8579 iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x93729d4c iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9517ff1f iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9bbf9ee0 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa56862a6 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa5b32cfe iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa69b3582 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa6f6b3da iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa3e46e4 iscsi_session_chkready -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 0xabf5219a iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbe151c13 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbebe4f54 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd2011b58 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf5c579d iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe19e18e5 iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe702dfb5 __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeec14652 iscsi_flashnode_bus_match -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/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 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 0x48dba633 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 0x7e8e8531 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -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 -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2330b70d slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2433a558 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2ad2b833 slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3700e575 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5667c66b slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x67e84b59 slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6fd6cc30 slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x77c1e23e slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8596cf5e slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x88f5c407 slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8aca90bc slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xac62457f slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xad56c9f5 slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbdfaacf2 slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc27c45e9 slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xca4cd7fc slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcc30ba50 of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd2266b06 slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd327dd50 slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd8188185 slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe114941a slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe4a269eb slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf4683cd8 slim_read -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x38422d72 __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x3c09dc1c sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x730e47df sdw_bus_type -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xa9f1af1e altera_spi_init_master -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0a58c173 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x53ae91b3 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x62eb3b91 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xcd31ce20 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xd7c29d95 spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xecec2643 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x444e6f20 dw_spi_dma_setup_generic -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4763e604 dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4f0ea859 dw_spi_update_config -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x6bdee211 dw_spi_check_status -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x7afa22f6 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xc515a2f6 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xcb8f6ddc dw_spi_dma_setup_mfld -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf3786095 dw_spi_remove_host -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 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 -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x44683a88 anybuss_recv_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4f9f5d4c anybuss_send_ext -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x50f8be4c anybuss_write_input -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x60ce042f anybuss_set_power -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x6e836299 anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x74298b96 devm_anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x99e43e09 anybuss_send_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc6d3e5d9 anybuss_start_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xd4ebcd58 anybuss_client_driver_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xd5173073 anybuss_client_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xeca2b12c anybuss_read_output -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x622bbc15 fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xa326f892 fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xc335995a fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xf18340b4 fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x17fb7e9d gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x275a7260 gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2adab075 gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x358ab56b gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x42e567ae gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x43276473 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x643471e2 gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6f8f03ec gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa7b42f71 gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xafa7daf4 gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xbd771dff gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc90632ec gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf5a26c73 gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x05c3ded5 gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x0da15b00 gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1476b28d gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x17a73437 gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x19002efb gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2a5140d5 gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x52234853 gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x942b2e4d gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9a8c3481 gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa225a21b gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa7adb8a4 gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xdeafe0fe gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf6bb477e gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x479c066e gb_audio_manager_get_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x852a1e2e gb_audio_manager_put_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x1ee6f300 gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x5bf7a127 gb_gbphy_register_driver -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/staging/media/av7110/sp8870 0xb45c3116 sp8870_attach -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x1a0d754f target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x4afaa80f target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x9043a16d target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xf9a4c065 target_queue_submission -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 -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x106ccc81 tb_xdomain_release_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x127455c7 tb_ring_alloc_tx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1bf296df tb_ring_poll -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x26ef9ae0 tb_xdomain_find_by_route -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x34dca84e tb_unregister_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3f1619f0 tb_ring_stop -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3f169901 tb_xdomain_alloc_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x48b1339b __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 0x50d2ff03 tb_xdomain_alloc_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x52b44721 tb_register_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x55141bb7 tb_ring_poll_complete -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x64222c93 tb_service_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x64d0375b tb_xdomain_response -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73711d7d tb_ring_free -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x76bc55cf tb_xdomain_enable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x83b19df3 tb_xdomain_lane_bonding_enable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8a4b81ca tb_xdomain_request -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8a7dc6a6 tb_xdomain_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x918d1bea tb_ring_alloc_rx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9497c08f tb_xdomain_lane_bonding_disable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbd450676 tb_xdomain_release_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd2941830 tb_xdomain_find_by_uuid -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 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 0x12548798 cdns_set_active -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x3d851df7 cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x6c546a7a cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x8063b3a4 cdns_set_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x85282a54 cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa6af27b6 cdns_init -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 0xd47a13af hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xed2c7033 ci_hdrc_remove_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 -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xdab73d69 imx_usbmisc_hsic_set_clk -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xe8628e7a imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xef705658 imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x4879836a ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x50a5249c ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6546a5ab ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7cfa8fc4 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc2253a39 __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xdcbcfdcf ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0f387aac u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x14116da6 u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x43b04bd3 u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5c1bb4e9 u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7b2eeac1 g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7e442e7f u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xcfdf77e4 u_audio_get_volume -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 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_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 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4a3df9d0 gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4b405d8e gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60ea48a0 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x9d08d4fc gserial_resume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc0a01527 gserial_set_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x02739dce ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x1f1383f6 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x8d6cdf69 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x06ea89b7 fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x071f072c fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ebb6ff9 fsg_store_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x20c0c909 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x36619f05 fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x46bb6d35 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5cf51674 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x789ca3e7 fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8823e599 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8fdd60d1 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab6c68ac fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xad821dce fsg_show_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcee590f3 fsg_common_set_cdev -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 0xd4290e79 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdaf1e5fa fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdc2aba51 fsg_show_nofua -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/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 -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0e472288 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x101fbf85 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x115ef205 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1952f8d3 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x208e1046 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x29838b97 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x38abc8d0 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3ef60b5d usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3fc1c462 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x415d3f52 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4ae6f93c config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x55cc5893 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x66cc8115 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6d5500b3 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7067ba56 config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x76c24fe1 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x79e47530 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7f6fcaf4 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8fe365bc usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9081c79b usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x93fd41d1 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9dcb2a58 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9dd488e8 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa18d6d3e usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa1e18585 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb14851d9 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb775db55 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdaf7da0d usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe92b993d usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe9b09f5f usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf2c2a93f usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x00b3ee48 udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x0fc6c9c8 udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x3d593590 udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7caaccee gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7d604d08 udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x90ec6902 free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xbcd0a443 empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd2726867 init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xdf23ffcd udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x00f98e6f usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01b12bfb usb_ep_free_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x05a63cff usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0a8c3b4b usb_ep_set_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0acfe2e7 usb_ep_set_wedge -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0d90d784 usb_ep_fifo_flush -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1074e4a0 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x37179140 usb_gadget_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3f79a57e usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49d9f030 usb_ep_fifo_status -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4a896b77 usb_gadget_map_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x506ab3a9 usb_ep_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5fc294ef usb_ep_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x77a8df6b usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7a41b9f2 usb_ep_set_maxpacket_limit -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7ab05fce usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7be89624 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x882077d5 usb_ep_dequeue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9468e088 usb_gadget_vbus_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9eb52803 usb_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa7e2474b usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa9a45b20 usb_gadget_vbus_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa9e74462 usb_ep_alloc_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaf201fa6 usb_ep_enable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb35fd149 usb_del_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbae9508d usb_gadget_set_remote_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbdb6a964 usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbe3417be usb_gadget_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbee81156 usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc9864b48 usb_add_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcbfd3663 usb_initialize_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd3998634 usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd7194bf0 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xda1b7fac usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe0bc24a4 usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe977554a usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xed63373b usb_gadget_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xedc45abb usb_gadget_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xef08cab1 usb_gadget_frame_number -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf5486f5d usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf99ce6e0 usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfba79eae usb_gadget_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfe3dcbc8 usb_gadget_check_config -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/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 -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2624a03e musb_root_disconnect -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af8c6dc musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x7d71ec50 musb_set_peripheral -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x8b1978ba musb_set_host -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xadcec45b musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xc03d16e6 musb_get_mode -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 0xfd296950 usb_phy_gen_create_phy -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 -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x12510147 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x239f1882 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x33ab08bb usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x346c50bf usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4180dc1a usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x44ae25c0 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4c34c780 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x53d96c7f usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5d63b3ef usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x601c7593 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x76421342 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7c103518 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7d108fad usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7de7f1cc usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x950a24a7 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9ec0973d usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa82c8c8b usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb7ded58c usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xffd65ae3 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x1f2609e8 dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xd0e11af1 dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xba4dde41 tcpci_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc0a0e9c7 tcpm_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc37b9769 tcpm_cc_change -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xceb50012 tcpm_vbus_change -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0c9f03c0 typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0f2ff9cd typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x10f29446 typec_partner_set_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x110500fa __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x13bebe78 typec_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b006a6b typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2a73a7c6 typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2bbea88e typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x343e6197 typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x34c618c5 typec_plug_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3521ac59 typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x374111d8 typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3df1adb9 fwnode_typec_mux_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x44473e1f typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x58cfb2b9 typec_get_fw_cap -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x59e61e4e typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5e55203f typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x65a2b390 typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x691044a5 typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x71bff73e typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7b10015f typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7e070986 typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7ed79157 typec_mux_unregister -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 -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa08db85c typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa74e8a73 typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa905a5b0 typec_port_register_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xab152ff2 typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb708a758 typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb7c26f19 typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbd693cb8 typec_unlink_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc0083b81 typec_cable_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc18b430c typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc334f9d8 typec_altmode_get_partner -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 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 -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdf0c60b0 typec_link_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdf2e6cb3 typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe9e1f018 typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xea680410 typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xea8c4999 typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeb6560df typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xec38bfa1 typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xed151089 typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf2f5ddb2 typec_partner_set_pd_revision -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf5a1d631 fwnode_typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf60646f6 typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf6cf6b28 typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfd3ed4bc typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xffdc3a5f typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x1881b1e8 ucsi_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x5d1ad85e ucsi_create -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x67656d3a ucsi_destroy -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x8802be18 ucsi_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x8ff866a3 ucsi_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x9353528f ucsi_connector_change -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 0x7e30caf5 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x90b0cbef usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa291f4e4 usbip_in_eh -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 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/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 -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0b557c39 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0f0de0ac vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x21489a1a vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x246d2734 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x25fda300 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x291bc3a1 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2d4ca137 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3682e22e vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3cb2ee0d vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3fd35b96 vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x418d601c vhost_clear_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4732bba1 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4be33b0c vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x50f2cc0f vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5bff5be1 vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6766192e vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6e6a6f98 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7845f62a vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x79bae636 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x79cfd4b6 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7b48c5ee vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x83e730c8 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8efd0398 vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x94b48897 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9a8af4d9 vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9b316392 vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa46d6ac4 vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xab1dd4b5 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaf73a9ac vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb28793dc vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb3b623a0 vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb4be5644 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb8662d23 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd1b0cdc7 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd35d1b1a vhost_work_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd8c95994 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe50a1416 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe8b4eb1d vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf1c86217 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf87fd638 vhost_vq_is_setup -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/ili9320 0x1938e50e ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2d117fdb ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x35dbe11a ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6c2a9154 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x95b6d105 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa86259b2 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xbb8a221c ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x5a6927dd fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x2574864d fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x555e1ac2 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x3596ac0d sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xb53b804d sis_malloc_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x0ad02abb w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x185063ab w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0x22e12dff w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x3d8d5109 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x48fdca49 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x785f293b w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9720c33f w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0xa3922111 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0xbbe9d47d w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0xcff8b608 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0xd206e8d9 w1_read_block -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x43bc9ffe dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x567756b1 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock -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 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x835b24f3 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x88a0b36e nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8e119de7 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9d683126 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xdbdefb25 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe78c9116 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf2771bc5 lockd_down -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0356cca7 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x063f9cd1 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b26678b nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d464b68 __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e4e95f6 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ea579ee nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x131517d4 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13ca91e3 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x140c36f8 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x151925a5 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17b40874 nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e450060 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e92161b nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x206f02e0 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20fd5c4b nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23056511 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x249c4f42 nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24c9dcd2 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x267ee49f nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a6200ff nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ef2ecf5 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30379ea0 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x361ba71a nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36c272d8 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37fb747c nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x385aaadf nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3870c32f nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b207191 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3dbfa4f4 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40d3f80c nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x410c5544 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41d5f139 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x429a9d29 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43882c5f nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43a99e97 nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x447fa2a4 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45aa0021 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4631c23c nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46579c27 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46d12c3c nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x482ff164 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e9449e6 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5126d4bd nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51c83f8d nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5250a085 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54389c90 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x565076c9 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x579bd98f nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5840f610 nfs_dentry_operations -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 0x5d8a706a nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e4ab01e nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61241da8 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x614ba917 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x647376c3 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x667d3e0a nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x677a6c76 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a45fbeb nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6da0b3ef nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x707ca030 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72e74eb4 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73af464d nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79ba88b5 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7aca5488 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ad19745 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c2e402a nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7dbfc689 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e4915c9 __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80b21883 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82ee457f nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83460b36 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x843e547b nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88d34adc nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a82338c nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ecbc5a3 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9117fd6f unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x923b262e nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95c0b5c0 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9732232a nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97a2338f nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a167052 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d6c3c75 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa32fa795 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa48a5918 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5c14237 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa706c0bb nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa743837d nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaabf6a3 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaade2476 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab36f9c4 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad43b526 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb30e3147 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb44336e1 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba5e9870 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbaa78ebd nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbde63743 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf72f901 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbff3ae29 nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0c6fd22 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc12274d9 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2c7abc0 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2ef3ca3 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc58760d1 nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6b0e474 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb5dead2 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc089860 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcfc5aebb nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd02e81ec nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd128de87 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd51622d3 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5d4122a nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd78e66c9 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8ab92fa nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbcbf564 __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbef7803 nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc88e58d nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe08b2fd2 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1cb0699 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8f4239b nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec085d1b nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeec1d912 nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefe35b29 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1583f15 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3d3e75c nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6236045 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf75f386e nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf81f8522 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf823056c nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8fcd0cd get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9f00626 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb07112f nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc62e289 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcd5f520 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfdcf2c4c nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfdf4c202 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfebcc660 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x2742bf5c nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x023f9553 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x03bcac15 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x05b4ab36 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a4fa7c0 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b4876a4 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d8b0b26 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f01076e __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0fc41b61 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x157cd74e pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1a5dfac4 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f9912ca nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b658cf8 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x302b2e20 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31b1394b pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bb6e05 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x335bc6ad pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x33c1ad59 __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36fb1511 nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3913c313 __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39db3359 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b835ecb pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3bde9e3d pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c27dced nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c2ee664 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d53a339 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e2a8a42 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3fc9baa9 pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x42e0c5e1 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46794f90 __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4756e727 __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x47ef73f6 __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x483c7ce6 __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4cc47b8d pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53565c13 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x57e7888c nfs41_sequence_done -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 0x600f86a3 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x621a7e65 __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66ecad2d pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x688d07b2 pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ec22306 pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x740b9865 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76b4f1a0 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76cb9e2b pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78c354f2 pnfs_error_mark_layout_for_return -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 0x7ad738b3 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x811c1cd0 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x84a11e92 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x856255f2 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ae10315 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f0533ab nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9177e490 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x947d0a3d nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98892be0 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9aa1fca2 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b15a74f pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d37c784 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2fc3369 pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3a93ccd nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa58783a8 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9922868 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa62b586 __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa955301 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xabb321dd pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac4a8a8f nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb0eb53c nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc75f171 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd7832a4 nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbdcffdb3 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbfde521f __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc2357f80 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3ad3e07 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcbeedc22 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xccde5935 __traceiter_ff_layout_write_error -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 0xd5f125b6 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd059430 pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd75ab39 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe2a82bb0 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe8699b95 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeae8522f __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec8ac988 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeca7eb5a pnfs_ld_read_done -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 0xf28d9090 __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x0236899c locks_in_grace -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/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 0x88ae1d20 nfsd4_ssc_init_umount_work -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1a9bf8ff o2nm_node_get -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 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 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 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 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 0x29d37a14 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4f836d27 dlmlock -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 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 0x22ce1d90 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x51205fce ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7c04f83a ocfs2_kset -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xae3b4045 ocfs2_stack_glue_unregister -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 0x3d093016 unregister_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x9d764cc6 register_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x5037cd35 unregister_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x9451c509 register_pstore_zone -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xabd9af6d cifs_arc4_crypt -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xc4c73891 cifs_arc4_setkey -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0x798f3830 cifs_md4_init -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xceecd9e4 cifs_md4_final -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xdef1096d cifs_md4_update -EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress -EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress -EXPORT_SYMBOL_GPL lib/bch 0x0c303f52 bch_encode -EXPORT_SYMBOL_GPL lib/bch 0x0d3e3481 bch_free -EXPORT_SYMBOL_GPL lib/bch 0x1a267fa8 bch_init -EXPORT_SYMBOL_GPL lib/bch 0x860a2eab bch_decode -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 0x31d4e581 poly1305_init_generic -EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0xd7219de2 poly1305_update_generic -EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0xf3945fcd poly1305_final_generic -EXPORT_SYMBOL_GPL lib/crypto/libsm4 0x24e254e8 sm4_expandkey -EXPORT_SYMBOL_GPL lib/crypto/libsm4 0xfa81970e sm4_crypt_block -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x7e900f4f notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xc5ec85ed 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 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 0xbf7e0fda lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xfdaa5f54 lowpan_header_decompress -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 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 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 0x0038759d br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0609fecb br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0c25107d br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0f091ffe br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x109f3818 br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x183db8fb br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4d44a370 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5a6ba735 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6b9c1a74 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7cd99264 br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0x846c4dc5 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x849938e2 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9c84f594 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa63945c3 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa82a05ef br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb62ef440 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc07d9a82 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0xcc90876b br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xcd082a4f br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd76b2041 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd841afa5 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe3054f6b br_multicast_has_router_adjacent -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 0x00428ca0 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e3f5bbb dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0ed7c0e5 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1cef473d dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2192224d dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x24d8bd17 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2f58267f dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2f98e106 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x30837337 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x316ffe9c dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x31f5ace9 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4184fbe0 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e2efece dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x502fd595 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5cbb626e inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x64779a30 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7cb48f96 dccp_set_state -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 0x8cf59353 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x918aed1f dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x92e28605 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x93e6b901 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x964fcc9a dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa097c5c9 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb5401295 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbd65b356 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbe0c1469 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc10a3705 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc6a35e26 dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd7767320 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe0cad7d2 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe11aae6a dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe95cb1c6 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf5080cfc dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfad6726f dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0a7311cf dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x25de73f2 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4f949e05 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xafc00b8f dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd359e6e3 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfa0fcd58 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0020c2b1 dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0e94bc7c dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1760f25b dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1cba970b dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1d47a35e dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x21b55b62 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x29832022 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3449a0d6 dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3a00eab3 dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x444dd987 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4857c8af dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4fe6d37c dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x54a20145 dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5d28f395 dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x64e68625 dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x694f7d86 dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x69a65cbe dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6b3bd423 dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6e623c6f dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x743d6252 dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x77cdde51 dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x96aaf826 dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x974e604d dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa7e3bde5 dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xca7d8eea dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd3b242cd dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd926e85d dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xda1c1ec5 dsa_tag_8021q_bridge_tx_fwd_offload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdbca0efd dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe8f0fb36 dsa_tag_8021q_bridge_tx_fwd_unoffload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xeccecfda dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf2e078f8 dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfbb721e0 dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd85755f dsa_devlink_params_register -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 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/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 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x52aeb0c0 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xdaed5c06 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xedbd4cbb esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/gre 0xe734149a gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xf8d63d9f gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x249c689c inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x44f20eea inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x45ae2ed5 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x79292854 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa797b7f6 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc6767062 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd9de3e86 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe02695ed inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf2eccb22 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x21ad3397 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x21d5c317 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4c224e40 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x51b48a58 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x54428c22 ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x56e71971 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x71839af9 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x80ed13fc ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x915564d1 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9dd658c0 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa6c7d94f ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaa8d3abd ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb2965e5e ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc85fd3a3 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xde76c223 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xecf684e3 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xee7b23f4 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf89c55a6 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xe2ba41a0 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x8021092f ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x831a6c52 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xe29d0d1c nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xead339c0 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1ec1d4f8 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x238947cf nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x343b1cfe nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3691f21b nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x77829840 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x85a0d7ec nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xdd4b822e nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x365dc0d3 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x19af4693 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x771c40d3 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xd201ca39 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x1d4c69ba nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xbae2092b nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2e29af2a tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x4ca2f3b8 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x4f07f898 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xaa7580e6 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xde123c97 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x322cee64 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3c32181e udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x69d98dce setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6dd40f5e udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x99cc98fd udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xacec979c udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xdeafdd5a udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe3f44c28 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xaae43518 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xc03d7c03 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xeca3491c esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x1d131b71 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x30629a76 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe7b846ad ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x2e7ce4b6 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xcbc0fbf1 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x7b8a3213 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x0d4eddab nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x16247743 nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x2c5419bc nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x8867ce31 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x30b5419d nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x359f434b nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x39003b37 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3febc291 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xce3d4959 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xdd18d2ba nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xdd7e9edf nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xb13a61ba nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x0142ea69 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x2e19c5cf nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x80366ee4 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x0f908565 nft_fib6_eval -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x729d85b4 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0b36c7bb l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1b0546fa l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x24c7ba42 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x268afe54 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2897c317 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2cab125d l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x405c01c3 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x504a4667 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x519986f3 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x541636eb l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x54c3d0d4 l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x59fde515 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x77f94e34 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8d8aa6e8 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x96d92e5b l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9847acdb l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xca73925e l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd4babd9b l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xde85b75e l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf3badbac l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf8d6aa89 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x8025317f l2tp_ioctl -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x0c223d44 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0c0840ba ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1a053512 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x347a47ca ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x43c2b044 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x48fae7aa ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x55256c2b ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5a473bdc ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5c8f2dca ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x64b6149c ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x65f1bb69 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x87dfef0a ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8824a865 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x99c6a528 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9f8cffb8 ieeee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1247034 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4b2b77e ieee80211_key_replay -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xaa611113 ieee80211_color_change_finish -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad9f1067 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbbac44a9 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbbdff376 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbd575c7c ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe0b42e4b ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x316e5ce1 mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x38e5408f mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x526709a4 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xbe1332da mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd6d6244b mpls_output_possible -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0939114d 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 0x2383b42e ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x30952bfc ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3c85eab0 ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4a5972b0 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x600de42a ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x60cafcfc ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6498b99c ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x657e8433 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x66766435 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7da21f64 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8e1186e7 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa27f3b01 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 0xa46d896a ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb68b0917 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc9adaff8 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd73dc789 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe0a61ac2 ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe2c8f301 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x508d2010 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa6947a81 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe1c88d0d unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xfadd0e06 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x162e96f1 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3967ad63 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x97cfcc50 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9abe2fdb nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xa1edc6cb nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf2728e70 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xfa90e9cb nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01ff7cf7 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0586c416 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d00c9ac nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0de956e4 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0eab370e nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x112cf148 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12e8b523 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1582b770 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20c08e47 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2211e98d nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22b91dfc nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27a431d7 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2856c556 nf_ct_remove_expectations -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 0x34107f8b nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x357f9c85 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x365d72f3 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ba0593d nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4bad869b nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5540f1de nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57397531 nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e7c3a6f nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5fc41b75 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6609526c nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67a1d6d9 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x699030c5 nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a3bdfc0 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c340c1e nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e41675c nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f437248 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70ddf5fa nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x737c88c4 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x748bf266 nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75e207fa nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x762c0109 nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7903945c nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f7ccb13 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8efdcc5d nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90a4f19c nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92b05b60 nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92dd157a nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x936fda61 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93d129af nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x953481fc nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x973d88d9 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9cc6b0d2 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa23e4605 nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa36daeeb nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6a3afd8 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xabbc28eb nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xabde10d3 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad88568e nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae30cfc8 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaec60154 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4035e3b nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb788e96f nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba6291ef nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb84ec2b nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd10ad3d __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe26abc7 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0eafee9 nf_ct_untimeout -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 0xc5caeba0 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc932a6a1 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcdeb3513 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce2e1ccb nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd292ba4c nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd385d50a nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda661189 nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda86b628 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb10d161 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdecba09a nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf5fd62d nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe061b2c7 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1d3129f nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1d6ae0e nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3f4bc6e nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4cdfc4e nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee673b19 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeebad536 nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0ac0ce7 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2dbdd06 nf_ct_set_auto_assign_helper_warned -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf454ebf1 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfda9f7b5 nf_ct_bridge_unregister -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 0xbac650a6 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x684a453c nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x321776b8 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1b6e6363 set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1fbe7c28 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x309cab96 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x39b7e8eb get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4639f485 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x488982d1 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7e7aafb1 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x92bb6a8b nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc1a3373c set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd73939ba nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xb9e7e835 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x420a0114 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x510c6057 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xa05d4e5a nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xdd34aada nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0d112ab6 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x67660508 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x816935f1 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa13caabb ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb7a0a02e ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xca80ca23 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfe7462db nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x89752ed7 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x0e50a628 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 0x171f6f67 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1e15cf16 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2f022874 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3f40c73b nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5310bd8d nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x555f39dd nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x55e4e156 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x72e4acd6 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7367bf80 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x816b1f5b flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9ad01905 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9c136e2c flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xacf2b447 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb2425b9e flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb5ba8a08 flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xce7ca97c nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdea989a9 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x05c97a8d nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x34d4a8be nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x35c434af nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x51ca28ca nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x60893c96 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x617c54a3 nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6b9f0eee nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6cbaf427 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8c63be21 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9b102200 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa885e376 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 0xdf025d3f nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xeb94d47d nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf03e9d49 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfbdb68af nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfcb14402 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x138c3bee ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x48897471 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x50738cac ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6504af49 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc26ea306 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd27c54da synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe813d41c nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe8a2b7c7 nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xeb2dfbc1 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xeb9c981a nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xee497fdc synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x052988b5 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0aa8ee92 nft_meta_set_eval -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 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 0x36e04272 nft_meta_set_dump -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 0x57cc74a5 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5cf8b71f nft_register_obj -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 0x6ceabdf5 nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6d6d4490 nft_meta_set_init -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 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 0x9b76ad00 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa87faad0 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb5034731 nft_meta_get_dump -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 0xc4deab16 nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcce396d9 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdbb050b9 nf_tables_deactivate_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 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/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/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 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_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf757ab33 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xb15e9a13 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xdf4be81f nf_osf_find -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/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x3cedfc97 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x66b96742 nft_reject_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xc9d273b0 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 0x163a8f1b xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x23a56882 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4fdbf973 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x53e5bc9a xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x664801db xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x81660052 xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x82bd3190 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8961a8e0 xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9130688f xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa50162f4 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa810d180 xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfa5d7ce xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc56a52da xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd0a58c01 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd0da24b1 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd4f47cde xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe14c10e5 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe4c84692 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe63c85e5 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xee478f24 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf412b50d xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf8149b47 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf9ee410c xt_compat_target_to_user -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/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 0x1bae1888 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x32d9bec6 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x33b962e1 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6f675b2b ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8313d474 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe092842f __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/psample/psample 0x0af82365 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0x2cd4ed3b psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0xa71e4ddc psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0xb3e5859a psample_group_take -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x613344a9 qrtr_endpoint_register -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 0xa47e91ba qrtr_ns_init -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xea7664af qrtr_endpoint_post -EXPORT_SYMBOL_GPL net/rds/rds 0x0010cc62 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x091a917f rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x0cd00598 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x128bad39 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x17936bb4 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x1886aa7c rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x2817db55 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x2d3b2e29 rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x37c27413 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x39e4d5ac rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x4097eed3 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x48d5fc7a rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x4d2e6c32 rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x525a1c08 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x5cf01e2d rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0x61766259 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x761ec5cb rds_send_path_reset -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 0x8ea6cd8a rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x918969e3 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x9ea1ff9b rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xb04fe9e2 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xb0612de0 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0xb4cdb036 rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xbe3ba34b rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc8dbccb5 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0xdef58aa0 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0xf217fe09 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xf49dbd98 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xff18120b rds_inc_put -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x94af0a03 pie_drop_early -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xd92290a2 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 0x228e9c23 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0x645949dd sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0x890743ae sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xc0d1fe59 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/smc/smc 0x12de7d20 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0x25acdf90 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x3dab4a99 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0xab4897ac smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xc26967dc smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xcb613344 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xcc4ccabd smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xce888427 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0xd9b5b337 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0xf8573294 smcd_register_dev -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x288d0891 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x5e4a885a gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7438071c svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xbc073f94 svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x010e9c82 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01fcdd8f xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x025cb885 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x033bff5b rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0377768c rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03e3406f rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x049277fc svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06fe9b1e rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x078cf296 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x095ac7c1 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a328643 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c222f7f xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d99d1b6 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10d9680a xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10fc5f94 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x121bcc65 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x139d7c0f rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14127cb8 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14b462ac rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15e72618 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1624b707 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16f9f0c8 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x170fd6bd svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1741f4f5 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18c43462 rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19a4e099 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19e22942 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a078d65 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a472cf7 xdr_align_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ae608bc xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f36cccc xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f9ccce2 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20f80f7e rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2288781e svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2493b1a7 xdr_expand_hole -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24ad5666 xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25557ebf rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x257aead5 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25858184 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26da27d9 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28c6a173 svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2918d0db xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a4d6405 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a52c621 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a7dcb12 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c6728a7 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d6e7712 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d7e0c87 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e959a14 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3207c663 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33a25dc7 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34c25cc9 rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3696158f _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e1acb08 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40098047 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x404316bc rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42f1872d xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44d4e6e9 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44ec840c rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45316c0b rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4564de01 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47cda389 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x482aa734 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x487ea1f5 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48cbaf85 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4944458b rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49a005ea rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ab7c439 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d6f00a4 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e65423d svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x503410d3 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x510d00af xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52253a1f sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52385f07 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5280d71b rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5410a482 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5452abd5 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5677af61 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5aa3f962 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c543c40 rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f8d4a56 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61655737 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61c73d77 xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62f172bb svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x653d73e5 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65876423 svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66d8eea4 svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6773b078 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67a4f7a8 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bb373b7 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d02a679 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d69221d svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ddfd4b2 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f6c05e4 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x702a71eb rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7061119c svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70dc1fed rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7119daf8 xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7151f2ab sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x715a16cf xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x726459cf rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7304f023 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73b786c9 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7424109d svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7846cf4c rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x789a4436 xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x795bc3a3 xprt_destroy_backchannel -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 0x7b8f14cd cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f1fabd0 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f47ab27 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80cec372 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81b6d0cc xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82697d54 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82933c7b svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x831fb54c rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x838ccd17 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83bac999 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83f11870 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x857ed250 svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x858c941f svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88845dc8 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x890736c0 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8934f7a5 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a465e19 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d66a053 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dc2c79d svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f3b109b cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91a440cc rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92274ffa rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92c71639 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x960bf307 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9832d273 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9967a6f1 svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9977f55e xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b39a7a7 xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b7b3d67 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cc647b4 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d98c0e9 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e81293b rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1c1da13 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa37a2aaa svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4434934 rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa44fa473 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa465df36 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4da20e9 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa50980b8 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa54e96c0 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5a11a1c __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa60d45d7 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa91272ed xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa94a4940 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9be26ae svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9ef1e3f rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa9625d8 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab6a3ba7 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabb3e913 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabbbd807 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac411e1c sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae38c847 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf50765e svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf53a0c3 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb162009b rpc_task_release_transport -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 0xb84ceecd xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb880d0db xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb974f562 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9ad4df7 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc977bdd rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcd5a9e8 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdaceeb3 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdadbd37 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe756020 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf1560ec sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbff8e1c9 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc314ed35 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc332f624 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc40ca2f3 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5bbdd74 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb13a55b rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb1b1d5b cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb6d9c29 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc28a193 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc5b6752 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc7a0b51 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce1cf7d9 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf63e72e svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfff2777 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d82ca xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1f875a8 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd66cd21a gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd758d57b xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7cb9702 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd96d0456 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9c0826c rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9fb0be9 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda33b2b6 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb38d635 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbd86bc6 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe082fbc8 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0fd9ee0 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe29ece16 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe40ffc1a rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4b41243 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4b9a16f svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5311428 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5a55c27 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe86017a2 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe930f7ed xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe986c82f cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9bb9ec0 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea7513db cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb7d75b1 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec3748fb svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecf5a3c5 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee47b03a rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef1bf3fb xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef425c39 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef83c475 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefff1716 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf048fb00 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf11340bc put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1a29e4a rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4d3ad60 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf62069d2 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6228257 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa803360 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfaca810e sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb2579dd svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb9c9287 rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcf5a5ae xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdd347ca xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe05a1f1 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe26476e rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe51f1b8 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe8c45db svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfef1de70 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff515d15 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/tls/tls 0x23d970e1 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x3fe96bce tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0x6abf3e61 tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0xa2b47011 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 0x051d41bf virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x09078911 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1876b75b virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1acaeb1f virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2132385b virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2bd15e3f virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2d449601 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2d834239 virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x394a8f0b virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3fef832f virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x419528c2 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x465982e4 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x474da7d8 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x505c5e5c virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x54dd0833 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5ba76f00 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5fa29ea2 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7b9b65d3 virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7ceb7563 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8c9045ed virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x910fd366 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa4626110 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xab1a5bfb virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb84571ee virtio_transport_dgram_bind -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 0xc185a480 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc48e5e11 virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc4a37d30 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcf398187 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd2f72b6c virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd81b781a virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf1f76c07 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf288f24e virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf89e1c76 virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfe063a6d virtio_transport_dgram_dequeue -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 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 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 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 0x77c14317 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x79ad724d vsock_remove_sock -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 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 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/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 0x2349d866 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x643deb85 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xa709aa9e ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb303490f 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 0xef05ca75 snd_ac97_reset -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe50413d7 snd_seq_client_ioctl_lock -EXPORT_SYMBOL_GPL sound/core/snd 0x0139e503 snd_card_ref -EXPORT_SYMBOL_GPL sound/core/snd 0x0479b913 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x132f1bdb snd_ctl_apply_vmaster_followers -EXPORT_SYMBOL_GPL sound/core/snd 0x14377a5f snd_devm_card_new -EXPORT_SYMBOL_GPL sound/core/snd 0x1b5a2d6b snd_card_free_on_error -EXPORT_SYMBOL_GPL sound/core/snd 0x232bbb0f snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x23411d6b snd_ctl_register_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x253fb134 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0x49211a3c snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0x576ac811 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free -EXPORT_SYMBOL_GPL sound/core/snd 0x6338d546 snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x6542feac snd_device_get_state -EXPORT_SYMBOL_GPL sound/core/snd 0x6fe9fc57 snd_ctl_disconnect_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x71039e49 snd_fasync_helper -EXPORT_SYMBOL_GPL sound/core/snd 0x9dd750b8 snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0xa6b3ed7f snd_devm_request_dma -EXPORT_SYMBOL_GPL sound/core/snd 0xb0b1900e snd_card_rw_proc_new -EXPORT_SYMBOL_GPL sound/core/snd 0xdfa3e24d snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0xf522018c snd_power_ref_and_wait -EXPORT_SYMBOL_GPL sound/core/snd 0xf8f2a4eb snd_kill_fasync -EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x28f4654b snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xc30b95a1 snd_compr_stop_error -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x13ee8b82 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1f1aa1a5 _snd_pcm_stream_lock_irqsave_nested -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3452e54e _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x43bc7d9d snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4eb11a4f snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x63de4147 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x65ab2f82 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7e1b9b2a snd_pcm_fill_iec958_consumer -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x948ac3d1 snd_devm_alloc_pages -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa257d72f snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbf3547b3 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc1c8297b snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe0cf9773 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1313bfe0 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x56f60ae9 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7b6d1bdb snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7ba48743 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x83379a46 snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x888fbe21 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8be3280d snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9f0e6b6c snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xaadb2fd4 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd614df7a snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd747fa77 snd_dmaengine_pcm_get_chan -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 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 0x400b049d amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x66a2340c amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x69c7b837 amdtp_am824_midi_trigger -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 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 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 -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1423f53c snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x148d6f4e snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1bde0670 snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x238e98de snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2b264209 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x30d7cca3 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x357a12bf snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39f4697c snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b345fd4 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3be638c8 snd_hdac_stop_streams -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e799f17 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4598b050 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x497c61a2 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4be6cf29 snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4dbf5e7d snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x56e26420 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d43855b snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f9cf994 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x606ae75f snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6162c27b snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6539daa9 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x683e7ab6 snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6fad5c20 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71ebd13e snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72821a3e snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x793daba7 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ca9ae7f snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8003841b snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8095ae24 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x86bdba2b snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x896da734 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8a553501 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c12bc50 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8dd7de41 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9421ce39 snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x947615f5 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a3bdebd snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b8b0130 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d2ad410 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d481bd1 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e4b092c snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9ffada76 snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa047e3e7 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3c8f2d0 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab84c457 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae6785d8 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf9f977c snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1c101d1 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1d3b066 snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4b031b7 snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb56d1bbc snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb67898a6 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbbd258a7 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbff1b3c1 snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc084d90b snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc32c5250 snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc5563886 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc5d97c36 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc9d98fc4 snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca02c3ba snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca37fa2f snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcb1d8b01 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcb6cf0c2 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd4d1b53 snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd1d6e0f1 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd289d321 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd42f0465 snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd52ff2f4 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd62481ad snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd7c3ae10 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xda4994c1 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb852b13 snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd301c79 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd3e8149 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf8dcce2 snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe337c495 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe359ac94 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf33d0c6d snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf3411c39 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf416b978 snd_hdac_stop_streams_and_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf53a819b snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf9bbc5b3 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x84d45d47 snd_intel_acpi_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xa9106981 snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x42503194 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x6767feb7 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x774ae690 snd_ak4113_external_rate -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 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 0x0cb2cab4 snd_hda_get_hint -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 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 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 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 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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3eac73fd snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f211db3 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f43f698 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3fa0c44d snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42530fdd snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42f614cb snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x463ba30e snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x481da8bc snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49d7e0f4 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b456f04 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f33f784 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f8cfd2f snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x523c1f27 snd_hda_override_conn_list -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 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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x619d6f7c snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61e699bb snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62c94c08 snd_hda_create_spdif_share_sw -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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x860a8bb8 snd_hda_codec_amp_stereo -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 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 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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1b2d691 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa214f140 snd_hda_codec_cleanup_for_unbind -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2767a35 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa495bd00 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4b01b2c snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa78464fe snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7c15f35 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa18911b snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab4051f0 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae1b74ee snd_hda_mixer_amp_volume_put -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 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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcba5a87 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcdf6432 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf93ebf8 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbfbb97df snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc048bd54 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc544d899 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc56a4449 snd_hda_parse_pin_defcfg -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 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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd73499a6 snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd969009a snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd862a17 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde105cdf snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe33ed7ab snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe34ab58b snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe698cbb7 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6be9d35 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea0ca9bd snd_hda_get_default_vref -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 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-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 -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x17b60a05 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1855cadc snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1a0a7bd5 snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3f1ea806 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x44045269 snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4b0223da snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6b960508 snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x73f7c9e9 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7eb0c7a3 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x87774df1 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x899fe758 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8cb66d10 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbf575877 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc2ffde9d snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe51b2b12 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe7990e8c snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xef37cbb3 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf25fd638 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x9762c47d adau1372_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x4df6ec2d adau1761_regmap_config -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 0xcabcc616 adau17x1_volatile_register -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 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 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x48e71f5b cs35l41_regmap_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x8301c22d cs35l41_otp_unpack -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xc4c68a41 cs35l41_register_errata_patch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf0bf0912 cs35l41_test_key_unlock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf6fe8333 cs35l41_set_channels -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xfeb21984 cs35l41_regmap_spi -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x4d213204 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x945a127d cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x61e3e6af cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x9afbef2c cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xc9b0cc68 cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xdcf4742f cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xf6bc1483 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0a834e79 cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x34f3a8aa cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -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 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-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 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x9cf02cd8 pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x9ef6d1f2 pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x47b9f2e5 pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x5ad58ea5 pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x304bdcd2 pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xa4336d5b pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xc9f18a98 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xed06acd0 pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x1a990e96 pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x36195765 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x8f39e97f pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x9697083b pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 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-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 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 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-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-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 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 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 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 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 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 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 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-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/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-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 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 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 0xf3bafb75 asoc_simple_convert_fixup -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 0x027f609c snd_soc_of_parse_audio_simple_widgets -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 0x044bd807 snd_soc_add_card_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 0x0b3b06f2 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c38445f snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c4af77b snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c794cfd snd_soc_lookup_component_nolocked -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 0x0fa26250 snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1055d6e9 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x113d94e0 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11672b39 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x149a95f9 snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x150411e8 snd_soc_dai_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17d66449 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1829a9cc snd_soc_find_dai_with_mutex -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 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 0x1dc0202c snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x256a2071 snd_soc_register_card -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 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 0x36e21a92 snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x378eb712 snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3cf4e336 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3db7af82 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e0b2e3e snd_soc_dapm_kcontrol_dapm -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 0x406603ca snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42b32101 snd_soc_dai_link_set_capabilities -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 0x45fc02c0 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48837c37 snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48ced26c snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a4a8f4b snd_soc_get_dai_id -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 0x4b5414e5 snd_soc_add_dai_controls -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 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 0x5b3f520e snd_soc_of_parse_audio_routing -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 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 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 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 0x61ad9b2a snd_soc_dai_is_dummy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x621cf358 dapm_regulator_event -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 0x693c4521 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69821324 snd_soc_unregister_component -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 0x7333f08e snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73a682c6 snd_soc_dai_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73ccb89c snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76835781 snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a20d294 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d89b50d snd_soc_component_read_field -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 0x80905953 snd_soc_unregister_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x821dae89 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 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 0x8aea4a20 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b96ce41 snd_soc_info_enum_double -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 0x9104fa14 snd_soc_component_compr_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x924a6e4d snd_soc_component_read -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 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 0x9bfde704 snd_soc_daifmt_clock_provider_fliped -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c1fab8e snd_soc_of_parse_aux_devs -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 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 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 0xaa7a3a28 snd_soc_resume -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 0xaeca6591 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb34f1f2b snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3668f68 snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5412d24 snd_soc_jack_add_pins -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 0xb80accdb snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8c4d67b snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb98df671 snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba010c6f 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 0xc2e1d481 snd_soc_close_delayed_work -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 0xc628dd7e snd_soc_lookup_component -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 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 0xd1716ce4 snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2610ac1 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3a9fa3e snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3c4264f snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3f25ab4 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd429969d snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd50861da soc_ac97_ops -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 0xdb27499a snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd0418e8 snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd89d875 snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde67c38b snd_soc_card_jack_new -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 0xe4c019b9 snd_soc_component_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5e5f0c5 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8443785 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8f8e25c snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe917132a snd_soc_link_compr_startup -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 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 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 0xf0bd3781 snd_soc_component_initialize -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 0xf40979de snd_soc_dapm_weak_routes -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 0xf8c02df5 snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd4a63d8 snd_soc_get_pcm_runtime -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/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 -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x24dafa90 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2f2aeae8 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3374748b line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x362f4b83 line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5d47647f line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x61a08341 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x67435583 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x79a03fbd line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x92c9c21a line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa6c0673c line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xab4a3c8c line6_read_serial_number -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 0x0025be69 nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0x00263596 platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x0037c0cb rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0x003a7cad pci_store_saved_state -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 0x0081e30b crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00afe9f5 __devm_rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0x00b60e9b i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval -EXPORT_SYMBOL_GPL vmlinux 0x00dde467 sysfs_remove_device_from_node -EXPORT_SYMBOL_GPL vmlinux 0x01074a36 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x011d3519 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x01419dd2 pci_user_read_config_byte -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 0x017451f8 xfrm_output_resume -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 0x01a0cb78 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x01a1075f cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x01b42f7f dev_attr_ncq_prio_enable -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 0x020490a6 scsi_free_sgtables -EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x0233987c serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x0237dc68 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x02603dd5 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x026dfdce crypto_comp_compress -EXPORT_SYMBOL_GPL vmlinux 0x02a81550 fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0x02ce7e9c mm_iommu_lookup -EXPORT_SYMBOL_GPL vmlinux 0x02f676ec da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x02f8e8bb sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x03094f10 iommu_map -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 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 0x0368541b validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x037e76e7 wwan_port_rx -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 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 0x03b85eff perf_tp_event -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 0x03d2e9b9 netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x03dc6a55 scsi_mode_select -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 0x04042528 devlink_param_unregister -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 0x042c9a04 em_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x043a8a29 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x043eb2ab nvmem_cell_read_u8 -EXPORT_SYMBOL_GPL vmlinux 0x043fa88f raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x04636618 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x04644a68 do_tcp_sendpages -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 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 0x04a3a082 pci_load_saved_state -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 0x04f6e014 serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0x04fc7341 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x0510dbab skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x0511d7e9 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x05196b49 __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x0525d4d1 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x0528e961 devm_device_add_groups -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 0x054e550b kernel_halt -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 0x05883efb __traceiter_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x05a0ab78 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x05b4df1a fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x05c4cf94 pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0x05d04326 pcie_reset_flr -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 0x064d69c9 pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x06601c8b irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x066eb713 clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x06b4740d virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x06b5829a __phy_modify_mmd_changed -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 0x06db788a switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x06e50194 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x06e923a2 regulator_is_enabled_regmap -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 0x07174cbf mmu_interval_notifier_insert_locked -EXPORT_SYMBOL_GPL vmlinux 0x0718f6dd raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x071bbf52 of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0x071fb465 vp_modern_generation -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 -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 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 0x0773b1c1 __tcp_send_ack -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 0x07a409b2 srp_release_transport -EXPORT_SYMBOL_GPL vmlinux 0x07a57898 sdio_readsb -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 0x07e19eba ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x07e96aee pseries_eeh_init_edev_recursive -EXPORT_SYMBOL_GPL vmlinux 0x07f914f0 fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0x0802e50a gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x0819aa92 devlink_dpipe_table_register -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 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x08861428 devlink_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x08a66d10 tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0x08b7bc5c nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x08be3d44 mmc_pwrseq_register -EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x08ce56ab device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x08d8d99a dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x08fe10bd pci_traverse_device_nodes -EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str -EXPORT_SYMBOL_GPL vmlinux 0x093ffc63 nfs_ssc_client_tbl -EXPORT_SYMBOL_GPL vmlinux 0x094af376 xas_load -EXPORT_SYMBOL_GPL vmlinux 0x09636e9b dma_buf_move_notify -EXPORT_SYMBOL_GPL vmlinux 0x09664a30 dma_vmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x09865d27 pci_iov_virtfn_devfn -EXPORT_SYMBOL_GPL vmlinux 0x0990e159 ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0x0997d948 md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x09a71d8d devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x09af8caa balloon_page_list_dequeue -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 0x09cb402d ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x0a00ee53 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x0a13fd0c xhci_get_ep_ctx -EXPORT_SYMBOL_GPL vmlinux 0x0a16679c tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x0a231a9f ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x0a34ce88 auxiliary_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0a3e77f3 devlink_net -EXPORT_SYMBOL_GPL vmlinux 0x0a44ea22 xfrm_audit_state_delete -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 0x0a6ac1c7 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0x0a716e98 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x0a773177 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x0a94684a unregister_ftrace_function -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 0x0b07abe2 unshare_fs_struct -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 0x0b4c2e1b devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0b568a2e fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x0b56e055 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0b57d1e9 inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0x0b69e06c irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x0b75aca0 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x0b7b6745 sk_msg_return -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 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 0x0bdd343e watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x0bdd3626 dw_pcie_setup_rc -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 0x0c2c5802 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0c2fbd1d devlink_port_params_register -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 0x0c4cbad8 event_triggers_post_call -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 0x0c70e7e7 pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x0c8271a9 fib_nh_common_init -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 0x0c8bf749 pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0x0c97ebb2 device_rename -EXPORT_SYMBOL_GPL vmlinux 0x0cad260b irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0x0cb26c3c spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister -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 0x0d5cecc6 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x0d6ef94c crypto_stats_skcipher_encrypt -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 0x0dcbedee kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -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 0x0defb4cd tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x0df238c4 i2c_of_match_device -EXPORT_SYMBOL_GPL vmlinux 0x0df8d4d2 cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0x0e0a168b btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x0e0cc7e7 gen10g_config_aneg -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 0x0e2db4b0 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x0e426c1c usb_pipe_type_check -EXPORT_SYMBOL_GPL vmlinux 0x0e521b82 btree_update -EXPORT_SYMBOL_GPL vmlinux 0x0e546d94 of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x0e61e39e pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x0e68905f inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x0e68c2ca rcu_read_unlock_trace_special -EXPORT_SYMBOL_GPL vmlinux 0x0e69a129 ip_route_output_tunnel -EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e753734 udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0x0e75e227 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x0e762fed spi_async_locked -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 0x0ed0c39e devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x0ee8e400 kvmppc_h_set_xdabr -EXPORT_SYMBOL_GPL vmlinux 0x0eec596d tcp_twsk_unique -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 0x0f11c064 edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page -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 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 0x100e1be6 compat_only_sysfs_link_entry_to_kobj -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 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 0x10be11ee vfio_pci_core_write -EXPORT_SYMBOL_GPL vmlinux 0x10bfcf97 get_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x10d4ff5a skb_zerocopy_iter_stream -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 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 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 0x11856a99 vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x118b539e blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0x11978fc1 switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x119f51b2 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -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 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 0x1234e483 get_cpu_iowait_time_us -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 0x12537dae __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x125768fa pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0x1257ddfe sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0x12661fb6 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x12673b03 fwnode_graph_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x127da5e0 ima_inode_hash -EXPORT_SYMBOL_GPL vmlinux 0x1289a7f3 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x12983632 lwtunnel_output -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 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 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -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 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 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x138fcf4b inet_twsk_alloc -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 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 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13d2ca0c dev_pm_opp_cpumask_remove_table -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 0x13efab80 sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0x13f2234a bpf_prog_sub -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 0x143e9fba crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x144ea7fe dev_pm_opp_get_of_node -EXPORT_SYMBOL_GPL vmlinux 0x1454f2a4 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x14560fda xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x147e413f wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x148b92f1 inet_hash_connect -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 0x14b6a5d6 cgrp_dfl_root -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 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 0x1506613c crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x152ddffd pm_generic_suspend_noirq -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 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x1556ae34 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x15600607 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x1591ce77 dev_pm_opp_set_opp -EXPORT_SYMBOL_GPL vmlinux 0x159e9b83 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks -EXPORT_SYMBOL_GPL vmlinux 0x15aebe78 bus_register -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 0x15db9c2c validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0x15dcbf72 edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0x15e9124c nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x15ffeafd pci_ecam_free -EXPORT_SYMBOL_GPL vmlinux 0x16102874 css_next_descendant_pre -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 0x16369a27 xive_native_sync_queue -EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model -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 0x1687ec20 tty_get_frame_size -EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x16a6711b ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x16a90252 pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0x16afafac usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x16c5ec08 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x16c85214 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x16d2855d __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put -EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x16ed82c0 fsnotify_alloc_user_group -EXPORT_SYMBOL_GPL vmlinux 0x16fcf68c device_find_child_by_name -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 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 0x17571cd2 to_nd_desc -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 0x17b70701 blkcg_policy_register -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 0x17d3db4b irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x17d710b9 dax_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x17e279d8 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x17f69e9d bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x18057422 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x180d430b devm_phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x180ef01d ip6_input -EXPORT_SYMBOL_GPL vmlinux 0x18105b37 fib_nl_newrule -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 0x18428692 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x1843e540 cpu_bit_bitmap -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 0x18687ce2 of_genpd_add_provider_onecell -EXPORT_SYMBOL_GPL vmlinux 0x186ed04d inet_csk_route_child_sock -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 0x18a8958a iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x18d01b0e devlink_traps_register -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 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL vmlinux 0x190a73fa mdiobus_modify -EXPORT_SYMBOL_GPL vmlinux 0x190fa7ce tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x1918cc8a input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x1927f154 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x193c5530 __traceiter_neigh_event_send_done -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 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 0x197f4ffc devlink_alloc_ns -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 0x1990855c inet6_compat_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x19a08bb7 gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19a81e33 sbitmap_add_wait_queue -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 0x19d64b8a bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0x19dd8076 power_supply_get_property_from_supplier -EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc -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 0x1a2453e7 iomap_dio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0x1a3e7963 copro_handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x1a40d9be rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1a59c6cc devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1a602d3f sk_clone_lock -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 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 0x1a9e053e rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x1ab66dd5 get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0x1acaadc5 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1ad22b9d tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0x1ad31203 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x1ad41fe3 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x1aebe972 ip6_update_pmtu -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 0x1b4c4da1 flush_vsx_to_thread -EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x1b5266dd devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x1b78ee3f of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0x1b7d3bb5 devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1b812aed crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0x1b85f3b8 skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1b9664d1 __destroy_context -EXPORT_SYMBOL_GPL vmlinux 0x1bad8403 inet_hashinfo_init -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 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bc8b910 devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x1bca4b30 phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0x1bcef770 __fscrypt_prepare_readdir -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 0x1c1e5091 ip6_dst_lookup_tunnel -EXPORT_SYMBOL_GPL vmlinux 0x1c257836 vfio_external_group_match_file -EXPORT_SYMBOL_GPL vmlinux 0x1c29bbb6 __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x1c2cdf3e nf_queue_entry_free -EXPORT_SYMBOL_GPL vmlinux 0x1c406d35 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x1c4ee475 fl6_merge_options -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 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 0x1c96118b __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x1c988728 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x1c9acc80 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x1ca78a6c __devm_irq_alloc_descs -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 0x1cc4acac devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x1cc69cc0 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x1ccdeb11 __traceiter_pelt_rt_tp -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 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 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 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 0x1d8cf40f fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x1d8ff047 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x1db0f623 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x1dbe6d7c xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x1dbff27a fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0x1dc580a3 ata_bmdma_setup -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 0x1df5baaf skb_gso_validate_network_len -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 0x1e0747e9 is_skb_forwardable -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 0x1e366606 power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x1e5ce877 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x1e5f7692 blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1e6bee90 klp_get_state -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -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 -EXPORT_SYMBOL_GPL vmlinux 0x1ec0feef trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x1ed05c82 __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x1ed07a28 is_transparent_hugepage -EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm -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 0x1ee4d4fb ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x1ef28618 bpf_trace_run1 -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 0x1f1e357d netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x1f26fe15 driver_register -EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit -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 0x1facc698 devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0x1fad3170 sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0x1fb57b1f devm_of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0x1fb6fb6a of_genpd_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x1fc0436a sk_msg_memcopy_from_iter -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 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 0x2017c10e iommu_aux_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x2019152a crypto_drop_spawn -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 0x204c0d61 edac_pci_create_generic_ctl -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 0x20abb5be ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0x20c2f83d synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0x20c55ffc of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0x20e70395 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x20e9cca0 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x20f95ab8 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x20f9ba00 xhci_check_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0x210294b2 tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0x21088a63 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x211850f5 htab_hash_mask -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 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 0x216181e8 devlink_region_create -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 0x2188e98f devm_clk_get_prepared -EXPORT_SYMBOL_GPL vmlinux 0x2192ccf4 xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0x219e97ea sysfs_file_change_owner -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 0x21b88c5f pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x21c08bea xdp_master_redirect -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 0x21db7083 rtnl_af_register -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 0x220ffe14 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks -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 0x224002b9 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x224f51bf nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x226b9395 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x2276ec2f fscrypt_mergeable_bio -EXPORT_SYMBOL_GPL vmlinux 0x2296b16b anon_inode_getfile -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 0x22f2de47 mptcp_get_reset_option -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 0x23254d24 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x23312441 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x233c5e06 report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x2358af18 xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0x236d46d8 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -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 0x23af84b8 crypto_stats_kpp_compute_shared_secret -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 0x23d3e8cf __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x23d40d13 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x23e67a8a nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0x23ebf1ed devm_clk_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const -EXPORT_SYMBOL_GPL vmlinux 0x242a6c64 __device_reset -EXPORT_SYMBOL_GPL vmlinux 0x242bd413 __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x24414649 ipv6_find_tlv -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 0x2464a1fe sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0x24686193 fwnode_get_phy_mode -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 0x24b9f356 mmu_partition_table_set_entry -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 0x24e58b8c net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24ecb936 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0x24f115f2 devlink_dpipe_entry_ctx_prepare -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 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 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 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x2595090c usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x259564eb __hrtimer_get_remaining -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 0x25d07a81 msg_zerocopy_alloc -EXPORT_SYMBOL_GPL vmlinux 0x25d7f9b7 crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x25e71e22 phy_speed_down -EXPORT_SYMBOL_GPL vmlinux 0x25f4825d bio_end_io_acct_remapped -EXPORT_SYMBOL_GPL vmlinux 0x2602379e of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x261cc863 usb_control_msg_send -EXPORT_SYMBOL_GPL vmlinux 0x262cfc41 usb_of_get_companion_dev -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 0x266b0654 serial8250_do_shutdown -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 0x26ab4755 put_old_itimerspec32 -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 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 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 0x27795ca8 of_mm_gpiochip_add_data -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 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 0x27d2d933 clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0x27d812f7 clk_fractional_divider_ops -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 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 0x281c6c16 pci_dev_trylock -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x28326121 dev_pm_opp_init_cpufreq_table -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 0x286922f9 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2882d8ae pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x288ad410 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x28927b2a uprobe_register_refctr -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 0x28ae0022 crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28b253c7 inet_csk_listen_start -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 0x28dd3d35 devm_regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x28f8bf45 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x290feee6 __traceiter_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine -EXPORT_SYMBOL_GPL vmlinux 0x2927eee4 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x292cebec dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x29378491 mm_iommu_get -EXPORT_SYMBOL_GPL vmlinux 0x2940032d pnv_pci_get_power_state -EXPORT_SYMBOL_GPL vmlinux 0x29407d17 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x29572c58 bpfilter_umh_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x29763f9c do_xdp_generic -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 0x29c0eebf __traceiter_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x29c89977 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x29cda0ca watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x29d3de96 dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0x29d5e4c1 skb_mpls_update_lse -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 0x29e9aa87 devlink_region_snapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -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 -EXPORT_SYMBOL_GPL vmlinux 0x2a512710 vp_modern_probe -EXPORT_SYMBOL_GPL vmlinux 0x2a5d29c1 class_find_device -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 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 0x2a9e285e ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x2aadc36f iommu_page_response -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 0x2ac696c3 tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0x2ac979c4 gpiod_set_raw_value_cansleep -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 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 0x2b080d64 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0x2b1bae0e cpu_to_core_id -EXPORT_SYMBOL_GPL vmlinux 0x2b1fba0f xive_native_disable_queue -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 0x2b6d960d synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x2b74f89c fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x2b878ef2 vfio_assign_device_set -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -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 0x2bd072b9 kvmppc_set_msr_hv -EXPORT_SYMBOL_GPL vmlinux 0x2beb670b sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0x2bec8857 dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0x2bf2de79 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x2bf919b0 nfs_ssc_unregister -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 0x2c790d4a __tracepoint_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c81f6eb skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x2c861cce dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x2c867260 sk_set_memalloc -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 0x2cf9ddce device_add -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d1d0587 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d35d339 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -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 0x2d7c0189 of_pci_dma_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x2d7d0520 bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0x2d936a18 kick_process -EXPORT_SYMBOL_GPL vmlinux 0x2db25638 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x2db8317e bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x2db988d6 thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0x2ddb634d dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x2dde84ab __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x2de3ec01 addrconf_add_linklocal -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 0x2e04abad metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x2e051039 sched_setattr_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x2e0578ac pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0x2e073a8a icc_set_bw -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 0x2eaa3f15 tcp_enter_memory_pressure -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 0x2ee615e0 pci_dev_lock -EXPORT_SYMBOL_GPL vmlinux 0x2eedaa8c tty_port_register_device -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 -EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx -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 0x2f649560 of_icc_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x2f7984a6 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x2f8c33c8 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x2f9242ae devm_serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fcaa211 dev_pm_opp_unregister_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x2fe5f4e0 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x2ffbd18c opal_message_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2fffc564 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x30123eeb virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0x301832fb opal_async_get_token_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x3045578a usb_get_current_frame_number -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 0x309a044c usb_free_streams -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 0x30e880fc __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk -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 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 0x316a9773 bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0x316b90ad regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x316bd96a wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0x317aea3d virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x317cdcf4 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x3181bfdd dst_cache_get -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 0x319fe84f xfrm_audit_policy_add -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 0x31b64f69 mm_iommu_newdev -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 0x31e3059f kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x321d05cb netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl -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 0x3262df7a edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0x327ff578 __traceiter_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x32804d31 dev_pm_opp_of_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x329bea98 devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0x32a11d55 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x32a1a805 remove_phb_dynamic -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 0x32d2e75c devlink_port_param_value_changed -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 0x32e4a24a devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0x32e61558 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key -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 0x33350de7 __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0x33518a24 __irq_resolve_mapping -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x337af7d8 wwan_create_port -EXPORT_SYMBOL_GPL vmlinux 0x3382fa80 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x33853343 skb_clone_tx_timestamp -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 0x33cd9e97 of_pm_clk_add_clks -EXPORT_SYMBOL_GPL vmlinux 0x33ce56e8 __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0x33d79a88 __traceiter_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x33dc80b1 dma_map_sgtable -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 0x341f0f5b get_task_pid -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 -EXPORT_SYMBOL_GPL vmlinux 0x342f12b1 yield_to -EXPORT_SYMBOL_GPL vmlinux 0x342f419d devlink_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0x343171da __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0x3433944a tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x3437a12c ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x34380fc9 of_phandle_iterator_next -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 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x3464eff4 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend -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 0x34efb518 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x34efd99b devlink_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0x34f94566 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x35028200 open_related_ns -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 0x35533d1f sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x355939ea usb_autopm_get_interface -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 0x3588553f __traceiter_sched_cpu_capacity_tp -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 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 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3607f69a skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x3616a27c ipv6_bpf_stub -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 0x363098c6 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x363d3922 sk_free_unlock_clone -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 0x3687041b nvmem_device_find -EXPORT_SYMBOL_GPL vmlinux 0x368c2dbd irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36abfbbf fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0x36baa139 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x36c619d4 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x36d83ede pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x36fb98b9 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x3706b229 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x37262964 scsi_build_sense -EXPORT_SYMBOL_GPL vmlinux 0x372ad326 fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript -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 0x37707bb4 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state -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 -EXPORT_SYMBOL_GPL vmlinux 0x37b7b408 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x37b9d9d0 devlink_port_type_eth_set -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 0x37c6ac6c devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x37e2fe08 stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x37e5458e fscrypt_ioctl_remove_key -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 0x38235710 devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable -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 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 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0x386d6e41 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x3875f197 umd_unload_blob -EXPORT_SYMBOL_GPL vmlinux 0x3877de16 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0x3879f37a trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x387b39e8 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x38946e42 __traceiter_pelt_thermal_tp -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 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 0x38d925f2 to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0x38d927a1 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x394c8dcd extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x394e95cb sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0x395d5ccf platform_unregister_drivers -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 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 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 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 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 0x3a80f230 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3a85092d fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x3a8b65e4 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x3a8cb8aa sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3ab87392 serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0x3abc486a split_page -EXPORT_SYMBOL_GPL vmlinux 0x3aca7a7e clockevents_register_device -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 0x3b0a7159 pinmux_generic_get_function_groups -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 0x3b46ed05 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x3b757ff3 mm_account_pinned_pages -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 0x3bcbea11 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test -EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3bfebc3d devm_blk_ksm_init -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 -EXPORT_SYMBOL_GPL vmlinux 0x3c357c8f sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0x3c37cbf8 machine_check_print_event_info -EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3c46ce14 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x3c472315 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x3c5efe55 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x3c611f06 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0x3c61bcdc housekeeping_affine -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 0x3c7ed865 __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x3ca59539 trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0x3cb6a2fe eeh_pe_configure -EXPORT_SYMBOL_GPL vmlinux 0x3cc2862f fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3cd681d1 bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0x3cd7a1bb debugfs_create_x32 -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 0x3d017e1d strp_check_rcv -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 0x3d3351a5 mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -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 0x3d866e05 __SCK__tp_func_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x3d867dd0 raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x3d94e479 netlink_remove_tap -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 0x3daa2540 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3db31b1d inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x3db601b6 i2c_adapter_depth -EXPORT_SYMBOL_GPL vmlinux 0x3dbf61c7 crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x3dc29b7f regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -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 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 0x3ea09902 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x3ea773d0 crypto_shash_tfm_digest -EXPORT_SYMBOL_GPL vmlinux 0x3ebfd73d sfp_bus_add_upstream -EXPORT_SYMBOL_GPL vmlinux 0x3ec17829 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x3ecdaa2b __find_linux_pte -EXPORT_SYMBOL_GPL vmlinux 0x3ee0c0f6 icmp_build_probe -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 0x3ef45994 devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access -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 0x3f660011 iommu_fwspec_add_ids -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 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 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put -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 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 0x4044ca16 pkcs7_verify -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 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 0x40d22c09 genphy_c45_pma_resume -EXPORT_SYMBOL_GPL vmlinux 0x40e466e6 dev_pm_domain_start -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 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 0x41394219 sched_trace_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0x413cda4e sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0x41440aab devlink_register -EXPORT_SYMBOL_GPL vmlinux 0x414617d9 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x414d5cdd find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x414d7aae xive_native_get_queue_state -EXPORT_SYMBOL_GPL vmlinux 0x4158d0f5 pci_epc_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x416f3713 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x416fdc08 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x417d09db udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x41821d0d skb_gso_validate_mac_len -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 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 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 0x42041512 i2c_get_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -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 0x424f5ea4 __raw_v4_lookup -EXPORT_SYMBOL_GPL vmlinux 0x425412da wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x4259aac4 lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x426d9fb3 spi_statistics_add_transfer_stats -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 0x4298ca7f gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x429d1817 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x42b96e70 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x42dddf98 perf_event_read_value -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 0x430d88ec __traceiter_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x430fdf91 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x431d2723 device_remove_bin_file -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 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 0x43947791 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x4394d6b5 devlink_port_type_ib_set -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 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 0x440710a6 fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0x440916eb dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x441fd68e tcp_bpf_update_proto -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 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 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 0x447f5379 __traceiter_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x44898619 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x449663c9 nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x449fa45d btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x44b09de0 iommu_tce_check_ioba -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44c5d913 tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str -EXPORT_SYMBOL_GPL vmlinux 0x44d0e0c1 mptcp_subflow_init_cookie_req -EXPORT_SYMBOL_GPL vmlinux 0x44d6db55 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x44f44bdf device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x44ff3187 edac_mc_find_csrow_by_page -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 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 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 0x45ad6736 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x45bc9e6f ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x45e36b6b devm_memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x460f49d1 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4616555c inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x4618a6e0 screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x462a8475 call_switchdev_blocking_notifiers -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 0x4688d7ec pvclock_gtod_unregister_notifier -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 0x46cf4984 switchdev_bridge_port_unoffload -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 0x46fd8921 crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x4705c76c trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0x470b591d power_supply_powers -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 0x47403805 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x47464c5a device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x47496ce2 __account_locked_vm -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 0x476e22da bpf_prog_free -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 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 0x4794d18d sched_trace_cfs_rq_cpu -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 0x47b15cac rtnl_link_unregister -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 0x47eefe85 srp_attach_transport -EXPORT_SYMBOL_GPL vmlinux 0x47f7abe0 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x47fc212a devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x480e3cf4 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x4814f8e0 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm -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 0x4851d09d kvmppc_do_h_enter -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 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 0x48cbd5b0 clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x48e2878c pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x48e6615a regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x48efb4c5 tcp_cong_avoid_ai -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 -EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x49365ead device_attach -EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node -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 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x499a537d cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x49a042e5 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -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 0x4a123bc1 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a1f1f6a free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0x4a2cb583 iommu_add_device -EXPORT_SYMBOL_GPL vmlinux 0x4a3002f7 tps65912_device_init -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 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 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 0x4a8d0dde bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x4a924b8c bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0x4a9f047a tm_enable -EXPORT_SYMBOL_GPL vmlinux 0x4aaa6cb7 __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x4aad3005 fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0x4acabbcb crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x4acf9f39 crypto_stats_get -EXPORT_SYMBOL_GPL vmlinux 0x4ad993f6 pci_epf_remove_vepf -EXPORT_SYMBOL_GPL vmlinux 0x4aded346 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4ae3dcd7 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x4af40e79 relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0x4afdd5e1 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x4afffe32 dm_start_time_ns_from_clone -EXPORT_SYMBOL_GPL vmlinux 0x4b05feee __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x4b180573 tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0x4b254456 cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0x4b4449f3 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x4b449f3f usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x4b48c1d4 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x4b519793 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask -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 0x4b7b7f47 blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x4b83da84 fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0x4ba24f35 pinctrl_generic_get_group_count -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 0x4be043c2 ip_local_out -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 0x4c3b2976 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c65f49a tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x4c6a0c02 devm_platform_get_irqs_affinity -EXPORT_SYMBOL_GPL vmlinux 0x4c7da7be regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x4c989531 nfs42_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cb41423 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x4cb75439 devm_nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4cc5160d fs_kobj -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 0x4cf699b8 vfio_pci_core_set_params -EXPORT_SYMBOL_GPL vmlinux 0x4cff9fdd devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d0ae285 sk_msg_alloc -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 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 0x4dd76a9d blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x4de0c7eb devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4de25f22 ip6_pol_route -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 0x4e118488 fwnode_get_name -EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4e27bac8 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x4e294d6d crypto_unregister_instance -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 0x4e56ef59 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x4e5c7a85 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x4e633c7f hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4e665881 __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x4e6dce24 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0x4e6f9f03 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x4e79058f da9052_enable_irq -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 0x4ed596d0 regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x4ed5c19d tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x4edf2aa6 set_primary_fwnode -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 0x4f2c996d kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4f32711c wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4f5b9b1e ncsi_unregister_dev -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 0x4fa7bd08 of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0x4fa836dc mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x4fade444 devlink_rate_leaf_destroy -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 0x4fcb0221 inet6_cleanup_sock -EXPORT_SYMBOL_GPL vmlinux 0x4fcc7e00 power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x4fd23cb2 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x4fd7b9f6 call_switchdev_notifiers -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 0x4ffb4d4c __netpoll_setup -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 0x500e2491 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x503eecd7 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x5040bb89 device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x505edce3 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x506e36d1 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x5076f1b9 mmc_cmdq_disable -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 0x509bb2bd bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0x509cebab vfio_pci_core_request -EXPORT_SYMBOL_GPL vmlinux 0x50b658e6 syscon_regmap_lookup_by_phandle_args -EXPORT_SYMBOL_GPL vmlinux 0x50dd1af5 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -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 0x5111a3d4 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x51177180 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x5122937e __spi_register_driver -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 -EXPORT_SYMBOL_GPL vmlinux 0x513a18de tpm2_flush_context -EXPORT_SYMBOL_GPL vmlinux 0x514c99ae irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x5153834c kset_create_and_add -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 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 0x51b65a26 rtc_lock -EXPORT_SYMBOL_GPL vmlinux 0x51c6d2d5 devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x51eb1da1 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x51f92fdb power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0x520d009b devlink_port_attrs_pci_pf_set -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 0x522e180d wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock -EXPORT_SYMBOL_GPL vmlinux 0x524516b4 pm_relax -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 0x52859d77 spi_res_add -EXPORT_SYMBOL_GPL vmlinux 0x528e396b verify_signature -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 0x52f06f3e fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0x52f79ebb regulator_set_load -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 0x532cd94c perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x5338d467 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5338e2a8 mptcp_token_get_sock -EXPORT_SYMBOL_GPL vmlinux 0x53470eb9 fib_rules_dump -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 0x536f9f3f netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int -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 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL vmlinux 0x53a0e57c nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x53a21dac xfrm_dev_resume -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 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 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x544c0193 rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table -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 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54971060 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x54a9fc07 sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x54ac3907 irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0x54f13e5b regulator_set_pull_down_regmap -EXPORT_SYMBOL_GPL vmlinux 0x54f3b745 led_set_brightness_nopm -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 0x550ddd86 ncsi_vlan_rx_kill_vid -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 0x552f0e4a ip6_route_output_flags_noref -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 0x553661c9 devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x554d95aa __traceiter_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x5554b36d msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0x555bc470 alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0x556a56f5 pci_generic_ecam_ops -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -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 0x558c1e5d devlink_port_unregister -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 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 0x560ec062 dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits -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 0x56674c69 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x56767825 ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x56861e51 inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x56863ebc powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0x56b0c5b3 pci_dev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x56ba428e ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x56e90c83 sched_trace_rq_cpu_capacity -EXPORT_SYMBOL_GPL vmlinux 0x56e92f8f md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x57028146 vfs_inode_has_locks -EXPORT_SYMBOL_GPL vmlinux 0x57172563 crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0x571f7877 espintcp_queue_out -EXPORT_SYMBOL_GPL vmlinux 0x57282ec8 stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0x572fcecf apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x5736a330 mm_iommu_ua_to_hpa -EXPORT_SYMBOL_GPL vmlinux 0x5739eb79 fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x5740bdb4 skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x57476b66 thp_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0x57548ddd hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x575d2b2e perf_event_period -EXPORT_SYMBOL_GPL vmlinux 0x57716c73 synth_event_trace_end -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 0x578eeb4d hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x5796e0e3 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -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 0x57d4050a xhci_get_endpoint_index -EXPORT_SYMBOL_GPL vmlinux 0x57dae617 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x57f1578a kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -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 0x5835ec1d gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x5838f0a7 crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x583c6848 __root_device_register -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 -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 0x58d39abe fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0x58dad86a dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58e3176c __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0x58ed08e4 inet6_sock_destruct -EXPORT_SYMBOL_GPL vmlinux 0x58f730f1 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x58f9b854 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x5909fc18 opal_tpo_read -EXPORT_SYMBOL_GPL vmlinux 0x59129991 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0x59184c2f devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x591a6ccc crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0x592315a5 lwtunnel_encap_del_ops -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 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 0x59d0d398 devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x59d43dd7 attribute_container_unregister -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 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle -EXPORT_SYMBOL_GPL vmlinux 0x5a1fbed9 spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5a2b5bdc dev_pm_opp_of_get_opp_desc_node -EXPORT_SYMBOL_GPL vmlinux 0x5a2ba61e rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x5a3b6594 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a44c7cc cpu_remove_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -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 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 0x5aad1064 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x5aaeefa1 fscrypt_ioctl_get_key_status -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 0x5ab76cb2 dax_copy_to_iter -EXPORT_SYMBOL_GPL vmlinux 0x5ac0e32c ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x5ac62a62 dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x5ac7593b rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x5ad5bfc5 devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0x5ada74ee shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0x5b19db9c virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0x5b1ec043 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -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 0x5b791116 pci_common_swizzle -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 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 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 0x5bf7b895 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x5c1ab660 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x5c27671c security_kernel_read_file -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 0x5c5288e5 perf_pmu_unregister -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 0x5c7025cf seg6_do_srh_encap -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 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 0x5cd305ed digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x5cec6a59 __cpuhp_state_remove_instance -EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5d03eb90 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x5d1af695 find_get_pid -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 0x5d4ac9de init_pid_ns -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 0x5d7a1d8a gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x5d8243ba usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc -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 0x5db3c93e sched_trace_rq_nr_running -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 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e1a7f37 usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0x5e1ca0b5 regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0x5e2f8316 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x5e34e698 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5e398845 sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x5e3cd0be bpf_redirect_info -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 0x5e5c1583 sbitmap_queue_wake_all -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 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 0x5eb46bb2 devlink_rate_leaf_create -EXPORT_SYMBOL_GPL vmlinux 0x5ebde96e balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5ec9ca7c devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x5ed0da6c tm_disable -EXPORT_SYMBOL_GPL vmlinux 0x5ed212e3 of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x5edc0a42 irq_to_desc -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 0x5ef0cd0d cpci_hp_register_bus -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 0x5f40531b crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x5f58db42 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0x5f5bed39 xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0x5f612b45 devm_kmalloc -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 0x5f7ae919 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x5f84e4be dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x5f85b17c devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point -EXPORT_SYMBOL_GPL vmlinux 0x5fab9fad synth_event_create -EXPORT_SYMBOL_GPL vmlinux 0x5fb15fb1 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x5fb933ff __bio_try_merge_page -EXPORT_SYMBOL_GPL vmlinux 0x5fbf8028 sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x5fd10333 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x5fd1dc8d raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x5fdbf45c of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp -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 0x5ff60af8 __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x5ffeb556 put_pid -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 0x6045dd50 devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x60477427 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x604a153d ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0x604bc904 crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0x604dd9f8 ata_common_sdev_attrs -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 0x608b294d bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x60902720 dma_buf_pin -EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -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 0x60df15d8 __page_mapcount -EXPORT_SYMBOL_GPL vmlinux 0x60e32cdd debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x60e9028d nl_table -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 0x61347a57 lwtunnel_input -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 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 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x6183c545 __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x6198ae61 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x619a8194 threads_core_mask -EXPORT_SYMBOL_GPL vmlinux 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 0x61d8ea7b pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0x61dc0032 of_device_request_module -EXPORT_SYMBOL_GPL vmlinux 0x61e1a766 devm_thermal_of_cooling_device_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 0x622c7922 register_oom_notifier -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 0x6257dda7 clk_rate_exclusive_get -EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x625ad352 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x628148be _kvmppc_restore_tm_pr -EXPORT_SYMBOL_GPL vmlinux 0x62b99549 iomap_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62bfc413 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x62c55c15 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x62c5725e trace_put_event_file -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 0x63059a39 mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x630d2f82 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x63245b18 fscrypt_set_bio_crypt_ctx -EXPORT_SYMBOL_GPL vmlinux 0x632ca807 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x633718c5 bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0x63472be9 __traceiter_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x634be1c3 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x63785b2c tty_init_termios -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 -EXPORT_SYMBOL_GPL vmlinux 0x639cabce power_supply_get_drvdata -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 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 0x63e4d95f bio_start_io_acct -EXPORT_SYMBOL_GPL vmlinux 0x63f38334 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0x640bb4c5 fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0x6418789c xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0x641f6d2f ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0x642f1dab simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x64319050 sk_psock_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 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 0x64c54520 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x64d198af nf_nat_hook -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 0x64f36620 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x64fb3871 unmap_mapping_pages -EXPORT_SYMBOL_GPL vmlinux 0x6506604f perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0x652149ca iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x6529d903 tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x653723f3 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x6542ffe4 devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x655088a4 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x6552f8e7 switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x6557756c pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0x656496fd ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x65737d9e devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x658598e0 trace_get_event_file -EXPORT_SYMBOL_GPL vmlinux 0x65874a22 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x65901137 nvmem_cell_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x65af481f tty_set_termios -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 0x65d55ad3 __traceiter_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x65eac411 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x65eb8d72 tps65912_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x65f47f66 cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x65f5ad5a fuse_do_open -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 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 0x6683d513 devlink_dpipe_action_put -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 0x669efef8 virtqueue_enable_cb_delayed -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 0x66c891c9 devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -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 0x6740505b nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x674d13e7 tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x676a0a39 netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x676d2ee5 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x678a81a9 devm_kasprintf -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 0x67c8f258 ip6_redirect -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 0x67f1a6a9 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x680209ce pnv_ocxl_get_tl_cap -EXPORT_SYMBOL_GPL vmlinux 0x6813b77c xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0x6819448f governor_sysfs_ops -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 0x683bf0de net_selftest -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 0x688aa804 ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0x6894f8fe pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -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 0x68ed8a2e bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x68f3207f synth_event_add_next_val -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 0x69060200 xfrm_state_afinfo_get_rcu -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 0x69214f73 crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0x6928269b xive_native_disable_vp -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 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 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 0x69f16f02 crypto_type_has_alg -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 0x6a1ba0e5 __devm_clk_hw_register_divider -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 0x6a4cb86d inet6_csk_xmit -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 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 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a84eb27 led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0x6a8ccdf0 kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x6a9026f8 devm_thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x6aa6d7b1 iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0x6abbad7d __regmap_init_i2c -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 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 0x6ba1d51b int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x6ba8fb38 debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0x6bab479e ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init -EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save -EXPORT_SYMBOL_GPL vmlinux 0x6bedc53e devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x6bfbb9c6 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x6c15bf67 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print -EXPORT_SYMBOL_GPL vmlinux 0x6c237581 dst_cache_set_ip4 -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 0x6c7837be devlink_port_type_clear -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 0x6c956075 __SCK__tp_func_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -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 -EXPORT_SYMBOL_GPL vmlinux 0x6cdef2d9 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x6ce2a560 hwspin_lock_free -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 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 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 0x6d72b9aa pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d88d779 netif_carrier_event -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 0x6d989546 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x6d9f919b regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x6daea1f8 __netdev_watchdog_up -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 0x6dd91dd4 devlink_free -EXPORT_SYMBOL_GPL vmlinux 0x6ddea51f nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0x6df05bce pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x6df47176 dm_disk -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 0x6e3250f6 firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0x6e3a9ffb kthread_func -EXPORT_SYMBOL_GPL vmlinux 0x6e3d5406 software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e42ea33 devlink_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free -EXPORT_SYMBOL_GPL vmlinux 0x6e4ec9d2 store_sampling_rate -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 0x6e6cf42c synth_event_gen_cmd_array_start -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 0x6e89a560 regmap_irq_chip_get_base -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 0x6efe4d36 pskb_put -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 0x6f1647ef metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f207d09 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x6f4c4465 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x6f4d6fbe genpd_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x6f59687a msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0x6f59e57e sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6f9f8724 usb_get_maximum_ssp_rate -EXPORT_SYMBOL_GPL vmlinux 0x6fa754e0 irq_domain_update_bus_token -EXPORT_SYMBOL_GPL vmlinux 0x6fab3e92 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x6fc98831 iommu_uapi_sva_bind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fd582d5 bus_find_device -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 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x701e71c3 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x702c6133 regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x702e4988 extcon_get_extcon_dev -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 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 0x708327b1 udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x7085e9e9 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x7096b79c of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0x709f8f46 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x70a0ab36 policy_has_boost_freq -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 0x70c6d827 mc146818_set_time -EXPORT_SYMBOL_GPL vmlinux 0x70c9b6ec __traceiter_pelt_se_tp -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 0x70dd4172 devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0x70ddf0d2 devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0x70e026fd clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x70e06e33 pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x70f91373 devlink_params_publish -EXPORT_SYMBOL_GPL vmlinux 0x7109ef3f serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7123ffce devlink_region_snapshot_id_put -EXPORT_SYMBOL_GPL vmlinux 0x7124c7b9 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x71386922 tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0x713abd4d inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x71445b17 __udp_enqueue_schedule_skb -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 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x717b9e3e iomap_finish_ioends -EXPORT_SYMBOL_GPL vmlinux 0x717ce0aa __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x718726d1 regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x71a767c4 __fl6_sock_lookup -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 0x71e314b5 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x7203b5ac sdio_retune_crc_enable -EXPORT_SYMBOL_GPL vmlinux 0x7206fe7b perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0x721e3b6c regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x72427950 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x7248ff1b devm_kfree -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 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x727c03b0 blk_queue_zone_write_granularity -EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x72953527 platform_find_device_by_driver -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 0x72edf918 __tracepoint_kfree_skb -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 0x731ccf9d kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x7326a520 devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0x732a5ce2 pci_generic_config_write -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 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73db9821 wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0x73e33f4a fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0x73e61fe8 badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0x73ef943f switchdev_handle_fdb_add_to_device -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 0x74329470 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x7432962b srp_rport_del -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x7443f014 irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x7460f3eb usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x746b068e __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x748fca3d ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0x74a2d392 perf_event_update_userpage -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 0x74cd4750 nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x74db4945 blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0x74e36c1a nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74fe33c0 ip6_dst_lookup_flow -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 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 0x757ea235 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x758eff6e crypto_register_instance -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 0x75a47427 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x75c8c621 dma_mmap_noncontiguous -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 0x7602f150 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x7607063c regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x760c091c devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x760ebf1a iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x7612743a srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x762fe6ad regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register -EXPORT_SYMBOL_GPL vmlinux 0x7651290e lwtunnel_state_alloc -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 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 0x769ddb26 fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0x76a57e0b devm_regmap_add_irq_chip -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 0x76c4dd35 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x76ca220a trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0x76d09d71 iomap_writepage -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 0x77222306 ring_buffer_read_page -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 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 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 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 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 0x77d4df48 fsl_mc_device_group -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 0x78041b8f byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x782286fa ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x78414777 mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0x78426402 ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x7850e3fd aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x785dbd57 extcon_set_property_capability -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 0x788bfbad ring_buffer_empty -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 0x78a35774 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x78a4a3fd pinctrl_generic_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x78b83062 hwmon_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x78e58a4e xive_native_has_single_escalation -EXPORT_SYMBOL_GPL vmlinux 0x78f4870d pci_cfg_access_unlock -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 0x793dec22 devlink_trap_policers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x793f98bc __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x794c2f03 spi_res_alloc -EXPORT_SYMBOL_GPL vmlinux 0x795483a7 blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x7955a6c9 devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x797804e4 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x79878b8e of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0x799cea1d sfp_bus_find_fwnode -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 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 0x7a18e643 udp_destruct_common -EXPORT_SYMBOL_GPL vmlinux 0x7a1b2340 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x7a23b2c8 dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table -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 -EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group -EXPORT_SYMBOL_GPL vmlinux 0x7aa95a91 of_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x7aaf3e29 mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0x7ab937f3 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x7ab94b26 __traceiter_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x7abf441b ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7ac7a18a usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0x7ac918ca __synth_event_gen_cmd_start -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 0x7ae08268 crypto_alg_extsize -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 0x7b351c2a do_splice_to -EXPORT_SYMBOL_GPL vmlinux 0x7b40c752 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0x7b448599 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x7b4ff8f4 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x7b5199ee fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -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 -EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode -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 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 0x7bebed97 vas_register_api_powernv -EXPORT_SYMBOL_GPL vmlinux 0x7c07a6ea spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0x7c19b236 mptcp_pm_get_local_addr_max -EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0x7c29cd44 fib_rules_register -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 0x7c63693b regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x7c732cff ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x7c73a9e0 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x7c8d1e01 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x7c94d015 devfreq_event_is_enabled -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 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 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 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cec4b22 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d084929 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x7d10e0d2 phy_set_media -EXPORT_SYMBOL_GPL vmlinux 0x7d1ad713 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn -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 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 0x7d917a6d regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x7da1f368 ip6_sk_redirect -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 0x7dc13f31 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0x7dc5b209 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x7dcafc1d devlink_port_param_driverinit_value_set -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 0x7e07f6c7 reserve_pmc_hardware -EXPORT_SYMBOL_GPL vmlinux 0x7e1e1bd3 iommu_tce_check_gpa -EXPORT_SYMBOL_GPL vmlinux 0x7e21dc27 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x7e24f1d9 devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0x7e253125 blk_ksm_intersect_modes -EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -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 -EXPORT_SYMBOL_GPL vmlinux 0x7e66a8e2 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x7e6a9ae0 kvmppc_h_clear_ref -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 0x7e9f1361 perf_event_refresh -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 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 0x7f03a783 skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x7f047e6e pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x7f0babdb __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0x7f0ddc19 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x7f234a6f dev_pm_opp_set_prop_name -EXPORT_SYMBOL_GPL vmlinux 0x7f34e18d bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0x7f3d4b69 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x7f524652 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x7f607329 md_stop_writes -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 0x7f979c34 devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x7fa2223d srp_rport_add -EXPORT_SYMBOL_GPL vmlinux 0x7fafdec9 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0x7fc17b5c iommu_sva_bind_device -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 0x803347f6 phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put -EXPORT_SYMBOL_GPL vmlinux 0x80682e48 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x806e608f regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x808bc2a2 usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80915a38 mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0x80b7e79e of_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x80bf60ca crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80ebf0d0 ping_recvmsg -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 0x81121435 trace_event_ignore_this_pid -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 0x8139cb7f tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x814086c1 nvdimm_has_flush -EXPORT_SYMBOL_GPL vmlinux 0x81499716 to_software_node -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 0x8161778f __ndisc_fill_addr_option -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 0x819f3f86 espintcp_push_skb -EXPORT_SYMBOL_GPL vmlinux 0x81a6562c dw_pcie_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init -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 0x82226c53 pinctrl_unregister_mappings -EXPORT_SYMBOL_GPL vmlinux 0x8230ac64 skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x823ba14d tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x823be531 __devm_clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x82403e21 perf_event_release_kernel -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 0x82bbf30b __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x82c01ea6 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82eac3fd dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x82f358a1 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x82ff4b95 clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x830e8e17 rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0x8310d088 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x83116f1c vc_scrolldelta_helper -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 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 0x83743837 hash__has_transparent_hugepage -EXPORT_SYMBOL_GPL vmlinux 0x83806d7c gpiod_set_config -EXPORT_SYMBOL_GPL vmlinux 0x83888405 flush_fp_to_thread -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 0x83addc24 of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x83b3ea8d gpiod_get_from_of_node -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 0x83bfdd0f gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x83c56b2e bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0x83c78cb5 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x83e0b01f fib_add_nexthop -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 0x841278f6 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x841bb01e vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x841d06b1 blk_add_driver_data -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 0x844c2f3d vfio_spapr_pci_eeh_release -EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x8450a6cf create_signature -EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x846d6e96 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x847588e1 fwnode_get_phy_node -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 0x84a806cf xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert -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 0x84e78e2d pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x84f57b77 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x84fe2e8b anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x8502928a usb_ep0_reinit -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 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 0x8558cc32 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x855ca28f iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0x855cc5d0 ethnl_cable_test_pulse -EXPORT_SYMBOL_GPL vmlinux 0x8569c6a8 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x856ed08a ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x857ec7c7 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x858600ca pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x8597e294 bpf_trace_run3 -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 0x86087056 pci_epc_start -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 0x8639147a __traceiter_neigh_timer_handler -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 0x86585a33 devlink_fmsg_obj_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x865d84c8 relay_close -EXPORT_SYMBOL_GPL vmlinux 0x865fed3a input_device_enabled -EXPORT_SYMBOL_GPL vmlinux 0x866e59e9 crypto_stats_akcipher_sign -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 0x86ae5e3a sched_trace_rq_avg_irq -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 0x86dbd328 ipv6_stub -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 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 0x8716c0b4 fuse_conn_get -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 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 0x87689bae udp_abort -EXPORT_SYMBOL_GPL vmlinux 0x8779691e crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x877c5a64 debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0x878156cc __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x8795e7d7 cpci_hp_unregister_controller -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 0x88153e28 mptcp_token_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x882d0525 platform_get_resource_byname -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 0x886be575 of_clk_src_onecell_get -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 0x8896df7d mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x889c754d genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0x88a973d3 nd_blk_memremap_flags -EXPORT_SYMBOL_GPL vmlinux 0x88aa1f23 skb_segment_list -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88c9909b __dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x88dcbe40 clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x88e38b39 ipv4_sk_update_pmtu -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 0x8900303d cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x89019f8a devm_gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x89020cc2 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x89031a8a usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start -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 -EXPORT_SYMBOL_GPL vmlinux 0x8938231f trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x894b3b1d iommu_dev_feature_enabled -EXPORT_SYMBOL_GPL vmlinux 0x8951f0d5 ata_bmdma_start -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 0x8981b4b6 devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0x899a039f vfio_device_get_from_dev -EXPORT_SYMBOL_GPL vmlinux 0x89a5b4d2 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x89a8a862 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x89ab1cfc register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key -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 0x89caf6f3 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x89f2443f addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0x8a094793 irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0x8a09d07b lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0x8a175457 pcie_aspm_capable -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 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 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 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8a8b3faf devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8a8c54fe mptcp_pm_get_add_addr_signal_max -EXPORT_SYMBOL_GPL vmlinux 0x8a9dbcad opal_message_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8abb0dd2 sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0x8ad43541 add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0x8ad67aa0 devlink_flash_update_timeout_notify -EXPORT_SYMBOL_GPL vmlinux 0x8afbd4c0 nf_route -EXPORT_SYMBOL_GPL vmlinux 0x8b032cb8 iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0x8b05ecc8 copro_flush_all_slbs -EXPORT_SYMBOL_GPL vmlinux 0x8b12c78d transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -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 0x8b3b0634 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x8b3d5bbb fwnode_handle_get -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 0x8b646b02 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x8b6c761a __xive_enabled -EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception -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 0x8b9e3fd6 perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0x8b9e8bd6 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x8ba666ca crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x8bc536ef ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0x8bcb67d6 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x8bd96600 switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x8be27e54 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x8bef5ac0 sched_trace_rq_avg_rt -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 0x8c12823f inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x8c130ddb spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0x8c1b4178 eeh_pe_state_mark -EXPORT_SYMBOL_GPL vmlinux 0x8c2fbbc2 extcon_set_state_sync -EXPORT_SYMBOL_GPL vmlinux 0x8c3dcbf6 gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0x8c63ca74 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -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 0x8cd94f86 pernet_ops_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap -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 -EXPORT_SYMBOL_GPL vmlinux 0x8cf91ec2 nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0x8cff521d vfio_group_get_external_user -EXPORT_SYMBOL_GPL vmlinux 0x8d01c49e vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x8d051f67 firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault -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 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 0x8d8193c5 crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0x8d919e3b vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL vmlinux 0x8d9a3910 __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x8da04bb9 dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0x8da974e8 sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0x8dbf5a20 kvmppc_hv_entry_trampoline -EXPORT_SYMBOL_GPL vmlinux 0x8dce32fd virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x8dda257f devlink_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8deec1c6 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8df51555 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0x8e011417 lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0x8e0211c2 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x8e0fcbcc virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x8e1f2226 skb_consume_udp -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 0x8e4acd22 fib_alias_hw_flags_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 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 0x8e6fc2a6 cgroup_get_e_css -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 0x8e713b4c cgroup_get_from_id -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 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 0x8ed28b43 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8ef3c837 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x8f005888 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f1e4fcb regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x8f2efbf6 pnv_ocxl_get_xsl_irq -EXPORT_SYMBOL_GPL vmlinux 0x8f35923b shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x8f4d4d10 inet6_sk_rebuild_header -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 0x8f75891a pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -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 0x8fb04d68 pnv_ocxl_spa_release -EXPORT_SYMBOL_GPL vmlinux 0x8fbdedce ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x8fc08c98 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x8fc7d729 balloon_page_dequeue -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 0x90142ded handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x9034c6a3 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x903d4623 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put -EXPORT_SYMBOL_GPL vmlinux 0x907bd7de debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes -EXPORT_SYMBOL_GPL vmlinux 0x90ae58f2 blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0x90d2fd97 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp -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 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 0x91c6e5b0 pcap_to_irq -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 0x920991a6 bpf_prog_create -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 0x92238bcb xas_find_marked -EXPORT_SYMBOL_GPL vmlinux 0x922e6955 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0x92382f3c nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0x923bf2ad spi_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x92571f5f spi_controller_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9269a509 usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x9278b9ed gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x9279b081 edac_device_del_device -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 0x92aa373b idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0x92b38155 dma_async_device_channel_register -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 -EXPORT_SYMBOL_GPL vmlinux 0x92dd95cb genphy_c45_an_config_aneg -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 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 0x93458a98 blk_mq_rdma_map_queues -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 0x9385ca85 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x93a5441b blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x93abebc7 tun_get_tx_ring -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 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 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 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 0x945e5f81 tty_port_tty_wakeup -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 0x94704b3d i2c_parse_fw_timings -EXPORT_SYMBOL_GPL vmlinux 0x9479500c skb_pull_rcsum -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 0x94b9757c tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x94bc6ee3 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x94c34470 dev_pm_qos_remove_request -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 -EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -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 0x95501b0f crypto_enqueue_request -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 0x9576bbde metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x95819975 bio_trim -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 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 -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 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 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 0x96851a3a devm_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0x96ac3218 blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0x96bc1140 __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x96bf336f irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0x96c06503 pcibios_free_controller_deferred -EXPORT_SYMBOL_GPL vmlinux 0x96ca63f5 __rht_bucket_nested -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 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x9724824d led_classdev_unregister -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 0x976c3b16 iommu_uapi_cache_invalidate -EXPORT_SYMBOL_GPL vmlinux 0x978555f9 kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x9795b021 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x9799e0b7 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x97c38ca5 __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97de3ed1 of_resolve_phandles -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 0x980b6717 pnv_pci_get_slot_id -EXPORT_SYMBOL_GPL vmlinux 0x980dff8d power_supply_put_battery_info -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 0x98607965 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x9860d978 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x9866cc15 device_match_name -EXPORT_SYMBOL_GPL vmlinux 0x986d5f43 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x987c5274 __ip6_local_out -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 0x98b142fa blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x98bc6ec1 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle -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 0x9927d7ee umd_load_blob -EXPORT_SYMBOL_GPL vmlinux 0x99347c99 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x99490869 __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0x994e1361 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -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 0x99ce1ecb clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x99d94a82 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x99d992b6 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x99dda093 cgroup_path_ns -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 0x99f55ef5 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x9a098651 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x9a0df72f __traceiter_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a187a84 vfio_virqfd_enable -EXPORT_SYMBOL_GPL vmlinux 0x9a3af2b2 alloc_empty_file -EXPORT_SYMBOL_GPL vmlinux 0x9a41c850 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x9a4de20f phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x9a5a00ff devm_irq_alloc_generic_chip -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 0x9a9dc431 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x9aae88ac mmc_sanitize -EXPORT_SYMBOL_GPL vmlinux 0x9aafcac3 spi_setup -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 0x9af49514 icc_bulk_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x9af61b3d irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x9b130ca5 h_query_vas_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x9b22b7ff rtnl_put_cacheinfo -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 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 0x9b84289a pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x9b85e0cf __reset_control_bulk_get -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 0x9b913d0c __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9b92d6d9 vas_tx_win_open -EXPORT_SYMBOL_GPL vmlinux 0x9ba00e0b sk_msg_free -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 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 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 0x9c3010ea sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x9c31fe1a da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x9c51561b blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0x9c5b4e7e devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x9c5e8830 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var -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 0x9cb4d285 irq_domain_free_fwnode -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 0x9ccf40ad mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9cf74b3b skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x9cf8aacb crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d0b718b ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x9d1ce964 phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x9d340c7a hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x9d35d0ad strp_process -EXPORT_SYMBOL_GPL vmlinux 0x9d3cbb0e devm_of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x9d4271bf xhci_update_hub_device -EXPORT_SYMBOL_GPL vmlinux 0x9d4b4bb1 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x9d769a72 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x9d7ff409 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x9dad4fc6 iommu_tce_table_get -EXPORT_SYMBOL_GPL vmlinux 0x9dba5286 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x9de2b847 sched_trace_cfs_rq_path -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 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 0x9e51ad42 phy_put -EXPORT_SYMBOL_GPL vmlinux 0x9e7a0640 usb_string -EXPORT_SYMBOL_GPL vmlinux 0x9e82c258 genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x9eb7f057 proc_create_net_data_write -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 0x9ef1019f ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x9ef58bc5 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9f08da10 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x9f2c3157 devlink_port_attrs_pci_sf_set -EXPORT_SYMBOL_GPL vmlinux 0x9f3622b0 devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0x9f39e09b bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9f3bfc79 devlink_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0x9f3f1b7d tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns -EXPORT_SYMBOL_GPL vmlinux 0x9f4eee0c badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x9f57a0bd soc_device_match -EXPORT_SYMBOL_GPL vmlinux 0x9f5922aa crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x9f5c8338 genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0x9f746cae iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x9f99c331 sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9fa66134 security_inode_mkdir -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 0x9ff54ae5 pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0x9ffcf2db crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0xa0064958 dev_pm_opp_find_freq_floor -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 0xa0444858 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xa04f3b91 stmpe_enable -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 0xa089164b l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0xa08dcd07 kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0xa0ad8f3f usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0xa0afdd6a crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xa0b87fc9 edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -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 0xa1201aa3 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0xa13b2962 pnv_ocxl_tlb_invalidate -EXPORT_SYMBOL_GPL vmlinux 0xa145e757 xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xa1474e62 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0xa1575ae6 of_clk_hw_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0xa16aa99d skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xa183a899 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xa183c559 devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xa184d5f2 mmu_vmalloc_psize -EXPORT_SYMBOL_GPL vmlinux 0xa1a6069e regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xa1a88fa5 security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0xa1b2bc4d badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0xa1b900ce devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0xa1c77d0f pinctrl_generic_add_group -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 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 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 0xa2686fd8 thermal_zone_of_get_sensor_id -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa28cd8bc fsnotify -EXPORT_SYMBOL_GPL vmlinux 0xa290b195 lwtunnel_build_state -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 -EXPORT_SYMBOL_GPL vmlinux 0xa29bb057 power_supply_get_battery_info -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 0xa2ea8037 sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0xa2f067f3 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xa30a6498 xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0xa316e8b9 phy_pm_runtime_get_sync -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 0xa36f50fb is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xa370a258 ip_valid_fib_dump_req -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 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa39d81fa tpm_tis_core_init -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range -EXPORT_SYMBOL_GPL vmlinux 0xa3a3ee7a tcp_sendpage_locked -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 0xa3c998a0 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0xa3ce4a98 irq_domain_disconnect_hierarchy -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 -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 0xa410a295 devlink_region_destroy -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 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 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa483dc8e max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0xa48d468d dst_blackhole_redirect -EXPORT_SYMBOL_GPL vmlinux 0xa49d2eb9 ping_init_sock -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 0xa4bfb313 __traceiter_neigh_update_done -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 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 0xa4f3243c vfio_pci_core_disable -EXPORT_SYMBOL_GPL vmlinux 0xa4fc1323 da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xa4ff9790 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0xa5149b6d cpu_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0xa516c0e4 tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa5482eca usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xa54bcc72 devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xa55f4f70 lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0xa56886bc dev_attr_em_message -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 0xa5b00659 ppc_proc_freq -EXPORT_SYMBOL_GPL vmlinux 0xa5c3059f __sync_filesystem -EXPORT_SYMBOL_GPL vmlinux 0xa5d3d437 phy_package_leave -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 0xa602bc29 crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0xa613d599 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xa626d84b __traceiter_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0xa63a0660 cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xa6404734 trace_array_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0xa64cc259 __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0xa65038c9 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0xa6542d90 devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xa6628df4 xdp_rxq_info_reg -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 -EXPORT_SYMBOL_GPL vmlinux 0xa6a45ed9 tpm_chip_stop -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 0xa6b0ffa3 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6b5a5fb trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split -EXPORT_SYMBOL_GPL vmlinux 0xa6d1e06f splpar_spin_yield -EXPORT_SYMBOL_GPL vmlinux 0xa6dde540 mmu_interval_read_begin -EXPORT_SYMBOL_GPL vmlinux 0xa6df00ee nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6ee15ca __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa704535d ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa728441a netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0xa73a6aa5 input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa746bf57 unregister_cxl_calls -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 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 0xa78134c0 lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0xa7979679 __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xa79c906a of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0xa7b22b2f attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0xa7b96f53 attribute_container_find_class_device -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 0xa7e0f207 __traceiter_sched_util_est_se_tp -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 0xa805080d xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0xa818a4c1 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0xa824bd66 usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xa82e56e4 fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0xa8331133 devlink_param_publish -EXPORT_SYMBOL_GPL vmlinux 0xa83b0629 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa8792383 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa87f7aec sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0xa88c1917 bpf_trace_run12 -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 0xa925952e shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa93e3689 usb_role_switch_get -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 0xa9773075 virtqueue_get_used_addr -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 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 0xa9bf35df tty_buffer_unlock_exclusive -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 0xa9ee7a8b gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xa9f26995 devres_add -EXPORT_SYMBOL_GPL vmlinux 0xaa015e22 tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0xaa02acce component_unbind_all -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 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa2f5946 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0xaa3ee531 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0xaa4963a2 cxl_update_properties -EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa73bf49 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xaa957fec device_create_file -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 0xaae108ed init_dummy_netdev -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 0xab1520b2 skb_tstamp_tx -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 0xab2c3812 __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xab30e856 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0xab3ab8b3 pci_host_common_remove -EXPORT_SYMBOL_GPL vmlinux 0xab3e8f5f get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0xab46fc70 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0xab47f3f4 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0xab48746d sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0xab4ceb77 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xab59d29a pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xab64d545 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0xab653a03 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0xab714109 tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0xab813417 gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0xab98d7a7 fib6_get_table -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 0xabb71b58 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -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 0xabe99b0a sched_show_task -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 0xac32915d devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0xac32aa85 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xac91e96d flush_altivec_to_thread -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 -EXPORT_SYMBOL_GPL vmlinux 0xacbdc580 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xaccbd52d do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xacd9f9b0 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0xacdfc057 rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0xace1f48d of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0xacea9a4d tty_buffer_lock_exclusive -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 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 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad673c08 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xad688bdd sched_trace_cfs_rq_avg -EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done -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 0xadb75741 virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0xadbbdc13 iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xadbebcce blk_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0xadc5c0d0 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xadd46af2 debugfs_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0xadf67371 devm_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xae01ef61 regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0xae04575b nvdimm_bus_register -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 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae442152 dawr_force_enable -EXPORT_SYMBOL_GPL vmlinux 0xae5b5456 clk_hw_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0xae64f1dd __tracepoint_block_bio_remap -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 0xae8b6443 kvmppc_h_clear_mod -EXPORT_SYMBOL_GPL vmlinux 0xaeb87303 bpf_prog_get_type_dev -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 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 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -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 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 0xaf8a0471 devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0xaf982554 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xaf984953 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xafba96d8 iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0xafbc80e9 __traceiter_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0xafbe6c9e kvmppc_hwrng_present -EXPORT_SYMBOL_GPL vmlinux 0xafc15090 blk_trace_remove -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 0xaffb85ab led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0xb007a54e crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xb02e08f2 vmalloc_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xb03f3bc5 blk_ksm_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xb053fff0 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0xb05c7bc8 skb_mpls_dec_ttl -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 0xb08fb46c kvmppc_h_protect -EXPORT_SYMBOL_GPL vmlinux 0xb09439fa __vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xb0a487a8 nf_queue -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0c72782 i2c_dw_configure_master -EXPORT_SYMBOL_GPL vmlinux 0xb0ce692e usb_phy_get_charger_current -EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0edbcb4 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0xb0f73f8e __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xb0f78d9c kset_find_obj -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 0xb131787b icc_enable -EXPORT_SYMBOL_GPL vmlinux 0xb143fead blk_ksm_update_capabilities -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 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1e8daaf crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xb1f44c77 task_cls_state -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 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 0xb24b4c4e rio_free_net -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 0xb28eb1f6 xdp_rxq_info_is_reg -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 0xb296704f scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0xb29a73d8 dbs_update -EXPORT_SYMBOL_GPL vmlinux 0xb29ce0ca devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0xb2a653fc confirm_error_lock -EXPORT_SYMBOL_GPL vmlinux 0xb2b32326 irq_generic_chip_ops -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 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 0xb3623bb4 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0xb3815329 raw_abort -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 0xb3a2e2c5 clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0xb3a4da43 sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0xb3b359db sched_set_fifo -EXPORT_SYMBOL_GPL vmlinux 0xb3c73180 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xb3f86999 usb_hcd_platform_shutdown -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 0xb44bdeae inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb453b402 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xb46554ce dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xb473163f spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0xb479e83d vfio_iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xb4816f39 skb_mpls_pop -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 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb4f1ac3c fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc -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 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 0xb5a4cb9c pid_nr_ns -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 0xb5cc23c0 sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb5e59fe2 led_put -EXPORT_SYMBOL_GPL vmlinux 0xb60758aa dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq -EXPORT_SYMBOL_GPL vmlinux 0xb623871c serial8250_em485_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb624bbe1 lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb63356ef cxl_afu_get -EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device -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 0xb6490b11 pnv_power9_force_smt4_release -EXPORT_SYMBOL_GPL vmlinux 0xb64ae121 vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar -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 0xb6a63c51 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0xb6ae9433 devm_bitmap_zalloc -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 0xb6feae1b regmap_write -EXPORT_SYMBOL_GPL vmlinux 0xb704d56c clean_acked_data_disable -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 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 0xb79dd397 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7bef634 of_genpd_remove_last -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 0xb7dc71aa __traceiter_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xb7f15e49 clk_hw_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0xb7f18b1e usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0xb7f7ba7a gpiochip_get_desc -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 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 0xb871fc0f devlink_param_unpublish -EXPORT_SYMBOL_GPL vmlinux 0xb87494ec vfio_pci_core_uninit_device -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 0xb8b2117c __dev_forward_skb -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 0xb90b01b2 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0xb90dcb8d bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable -EXPORT_SYMBOL_GPL vmlinux 0xb91ed88d usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0xb926349e led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0xb92cef6a ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb94eb8ff tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb9894e2e security_path_rmdir -EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features -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 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 0xb9c425de register_syscore_ops -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 0xb9fe71e2 mbox_flush -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 0xba284314 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -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 0xba4cc84c bpf_offload_dev_match -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 0xbad716cc device_reprobe -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 0xbb0519cc __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb1dc1c8 crypto_inst_setname -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 0xbb6508da random_get_entropy_fallback -EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn -EXPORT_SYMBOL_GPL vmlinux 0xbbabf12d sysfs_remove_file_self -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 0xbbd22111 sk_msg_recvmsg -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 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 0xbc0bfa3c fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0xbc23f3c7 dma_resv_get_fences -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 0xbc58d76a rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0xbc60836f spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -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 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 0xbcee1c7c set_thread_tidr -EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbd04d5c8 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xbd0f64a0 pci_get_dsn -EXPORT_SYMBOL_GPL vmlinux 0xbd201f7c debugfs_write_file_bool -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 0xbd5574cd __traceiter_br_fdb_update -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 -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 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 0xbddb88f2 of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xbdddb9a9 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xbde5d60f devlink_param_register -EXPORT_SYMBOL_GPL vmlinux 0xbde7f018 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0xbdeb7ed2 pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0xbdefb8fb __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xbe11ebac ip_icmp_error_rfc4884 -EXPORT_SYMBOL_GPL vmlinux 0xbe1bd613 dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0xbe2b6e63 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe59db42 ping_unhash -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 0xbe7888c6 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xbe8d8bbd devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbea63e77 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xbeb24cfe switchdev_port_attr_set -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 0xbef3251b tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf082dc9 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0xbf314b6a rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xbf57ae7b kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xbf57bfa7 strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xbf632b68 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xbf75292e mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0xbf7e291e trace_array_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xbf865787 of_icc_bulk_get -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 0xbf9e6e3f sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xbfa51906 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xbfb9fcca adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbfbb3e9a platform_device_register_full -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 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 0xbfe533f2 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbff570fa gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xc0199533 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0xc0215c61 ata_scsi_dma_need_drain -EXPORT_SYMBOL_GPL vmlinux 0xc03764ab devlink_reload_enable -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 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 0xc0a2f070 __traceiter_neigh_event_send_dead -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 0xc0f40a6e ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc0f84ca9 regmap_raw_write_async -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 0xc1263635 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc1482733 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xc14ff0ff mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0xc16e93c7 __trace_array_puts -EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc1af6661 cpufreq_dbs_governor_exit -EXPORT_SYMBOL_GPL vmlinux 0xc1af8755 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0xc1c1f096 sk_clear_memalloc -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 -EXPORT_SYMBOL_GPL vmlinux 0xc1f0cb01 pci_epc_mem_exit -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 0xc218c911 ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xc22392ba regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc225fa5f fw_devlink_purge_absent_suppliers -EXPORT_SYMBOL_GPL vmlinux 0xc2262e85 sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc2532495 perf_trace_run_bpf_submit -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 -EXPORT_SYMBOL_GPL vmlinux 0xc27daf53 serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0xc27fcdc7 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc28c0254 handle_irq_desc -EXPORT_SYMBOL_GPL vmlinux 0xc296d0d5 dev_get_tstats64 -EXPORT_SYMBOL_GPL vmlinux 0xc29a6799 crypto_register_skciphers -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 0xc2b9773a __tracepoint_neigh_update_done -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 0xc2c3d870 __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0xc2c4b3f0 pci_cfg_access_trylock -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 0xc30cdad4 usb_hcd_resume_root_hub -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 0xc34d1a48 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xc3505841 fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xc35da1ab tcpv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xc35f5b85 security_path_link -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 0xc378494c xfrm_audit_policy_delete -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 0xc3bf25c4 extcon_set_property_sync -EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -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 0xc3ecd25c crypto_skcipher_setkey -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 0xc412fdf3 radix__flush_all_lpid -EXPORT_SYMBOL_GPL vmlinux 0xc4197daa __inet_lookup_established -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 0xc442c42a skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xc44a27c0 irq_domain_create_simple -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 0xc4698dcd crypto_enqueue_request_head -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 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL vmlinux 0xc49190e3 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0xc49af297 mmc_send_status -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 0xc4ab8c32 trace_array_put -EXPORT_SYMBOL_GPL vmlinux 0xc4afe6c6 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0xc4b1cdc0 of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xc4b242e7 devm_device_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xc4ba1eb5 cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc4c61af1 serial8250_rpm_put -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 0xc4e967af kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc50cde44 pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0xc531ea0b of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xc54851f8 crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0xc55c29d8 fib4_rule_default -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 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 0xc58075d1 mptcp_pm_get_add_addr_accept_max -EXPORT_SYMBOL_GPL vmlinux 0xc580cb93 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xc582b203 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0xc586d29a spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc5907699 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc59e22b2 netdev_rx_handler_register -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 0xc5b7cdd6 paste_selection -EXPORT_SYMBOL_GPL vmlinux 0xc5b8eef4 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0xc5b9a197 sock_map_close -EXPORT_SYMBOL_GPL vmlinux 0xc5c7d29f gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xc5dd289b __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xc5e09b22 pci_epc_multi_mem_init -EXPORT_SYMBOL_GPL vmlinux 0xc5e79e53 is_current_mnt_ns -EXPORT_SYMBOL_GPL vmlinux 0xc5fd9d89 mmc_crypto_setup_queue -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 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 0xc64693db __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xc64f44c5 irq_chip_disable_parent -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 -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 0xc68a0075 crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0xc68dcaec dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0xc692ab3e __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0xc69648fc led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read -EXPORT_SYMBOL_GPL vmlinux 0xc698afdc mm_kobj -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 0xc6d5d5af watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within -EXPORT_SYMBOL_GPL vmlinux 0xc6eabb54 icc_node_del -EXPORT_SYMBOL_GPL vmlinux 0xc71cb086 bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc72c7988 srp_remove_host -EXPORT_SYMBOL_GPL vmlinux 0xc72cc45d device_unregister -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 0xc7512802 regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xc75b6880 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0xc76182e0 skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xc7857279 pnv_ocxl_spa_setup -EXPORT_SYMBOL_GPL vmlinux 0xc7901389 led_blink_set_oneshot -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 0xc7e376d4 klist_next -EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer -EXPORT_SYMBOL_GPL vmlinux 0xc7e8417c shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xc7f2e703 ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0xc7f6858d inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc80405f9 ata_sff_wait_ready -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 0xc84cb696 kthread_data -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 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 0xc8922574 sk_msg_is_readable -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 0xc8e4e8b1 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0xc8ee9ea8 dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0xc8fc1083 devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0xc904c323 to_nvdimm_bus_dev -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 0xc959c7a2 ip4_datagram_release_cb -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 0xc97c98f0 dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0xc97f2f74 __traceiter_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc99c58e2 device_register -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 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 0xc9fecd5e sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0xca0bb20f l3mdev_table_lookup_unregister -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 0xca685295 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xca7165fd dev_pm_opp_put_clkname -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -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 0xca9a1d5e ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0xca9d5cb9 copro_calculate_slb -EXPORT_SYMBOL_GPL vmlinux 0xcaa0fa49 __rtnl_link_unregister -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 0xcadab7df blkg_rwstat_exit -EXPORT_SYMBOL_GPL vmlinux 0xcaed72a8 hvc_instantiate -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 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb33335a tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0xcb4c7a3d sch_frag_xmit_hook -EXPORT_SYMBOL_GPL vmlinux 0xcb5401ac phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0xcb547ebd usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb6a5b49 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0xcb84ce81 of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0xcb914013 i2c_new_client_device -EXPORT_SYMBOL_GPL vmlinux 0xcb91501b perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0xcb99535b syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xcb9ce6c0 of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0xcbb5460f of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0xcbd336d4 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcbe51c1e pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbf50adb regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcc11e00a xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0xcc1c8070 ncsi_stop_dev -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 0xcc664b2e mmc_cmdq_enable -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 0xcc9268fc hwpoison_filter_enable -EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xcc9b3eb6 of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0xccb3de6a clk_register_divider_table -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 0xcd0e37e1 usb_hcd_amd_remote_wakeup_quirk -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 0xcd57fae1 regulator_set_voltage_time_sel -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 0xcd9a34e9 switchdev_bridge_port_offload -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 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdb9fe8e early_find_capability -EXPORT_SYMBOL_GPL vmlinux 0xcdbf65ab devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdd1a841 xive_tima -EXPORT_SYMBOL_GPL vmlinux 0xcdd60470 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xcddaf099 devm_krealloc -EXPORT_SYMBOL_GPL vmlinux 0xcde9ea9e transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xce0406bc spi_finalize_current_message -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 0xce3be282 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0xce4ebd76 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0xce4f365d pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xce5f7301 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce8a6a31 switchdev_handle_fdb_del_to_device -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 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 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 0xceecd689 crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xcef55e85 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xcf00988e phy_set_speed -EXPORT_SYMBOL_GPL vmlinux 0xcf1185f1 phy_save_page -EXPORT_SYMBOL_GPL vmlinux 0xcf133159 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0xcf2bde63 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xcf3cf374 bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0xcf482668 spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0xcf6e7935 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0xcf731c53 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xcf84ba5b skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0xcf90ef4f crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xcfa8831e usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0xcfabbc9f ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0xcfe4efc6 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0xcffe4ab5 fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0xd00d66a2 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0xd016dbef sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xd0190cdb pcibios_unmap_io_space -EXPORT_SYMBOL_GPL vmlinux 0xd0250ec5 usb_disable_autosuspend -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 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd08ba238 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xd0abbca6 ohci_init_driver -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 0xd111c4a3 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xd1229dad blk_ksm_reprogram_all_keys -EXPORT_SYMBOL_GPL vmlinux 0xd1386738 x509_cert_parse -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 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 0xd15fa6cf usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features -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 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1cc6041 ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -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 -EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset -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 0xd2326051 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xd23bb0b6 pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd25fcec0 xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0xd2640fd4 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd28f297f net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0xd292886a fscrypt_mergeable_bio_bh -EXPORT_SYMBOL_GPL vmlinux 0xd2a14bf6 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xd2a9b5ae crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -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 0xd2d0ffa1 do_truncate -EXPORT_SYMBOL_GPL vmlinux 0xd2efdca8 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0xd2fda33d phy_pm_runtime_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 0xd347ce04 dev_pm_opp_put_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0xd35a200c mmu_interval_notifier_insert -EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xd3754ae8 crypto_spawn_tfm2 -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 0xd396de02 dev_fill_forward_path -EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -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 0xd3ae93af i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xd3d6dbbb spi_take_timestamp_pre -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 0xd41c3459 phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xd427370a __traceiter_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd4303f90 file_ra_state_init -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 0xd48f47e3 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume -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 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 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 0xd525c6a6 rio_route_add_entry -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 0xd55daf83 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xd56940e8 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0xd5816542 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xd58a31a6 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd59c05cf device_dma_supported -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 0xd5da05a3 of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0xd5df087b skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0xd5eb61fe __iptunnel_pull_header -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 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 0xd68295c1 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0xd68f5eee ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0xd6930ef9 acct_bioset_init -EXPORT_SYMBOL_GPL vmlinux 0xd69f127d bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0xd6a02d23 nf_hook_entries_insert_raw -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 0xd6d8cc07 bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0xd6d94063 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xd6ec0a50 sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xd6f07a35 irq_domain_add_legacy -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 0xd740f9d8 of_platform_device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd7468650 irq_get_irq_data -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 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 0xd7af2354 em_dev_unregister_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0xd7c275f0 __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xd7d13405 gpiochip_irqchip_add_domain -EXPORT_SYMBOL_GPL vmlinux 0xd7d66417 ping_close -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 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 0xd812b45a nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0xd81598c4 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd8629203 sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0xd867dd09 irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0xd879292a event_triggers_call -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 0xd895addc regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xd8cd7fbb tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0xd8deb464 inet_csk_reqsk_queue_hash_add -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 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 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 0xd97b1599 bpf_prog_inc_not_zero -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 0xd9b3607c iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xd9b634d6 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0xd9ccf89a usb_of_get_device_node -EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0xd9eb6a9d __traceiter_br_fdb_external_learn_add -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 0xda35068b nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0xda432887 tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0xda437b75 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0xda49318f phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0xda7ad329 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xda8a4651 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xdaa4e099 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdad0fc4c rio_alloc_net -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 0xdb06d561 br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0xdb0b2546 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0xdb1fa1a9 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xdb2b7320 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xdb3794ce emulate_vsx_load -EXPORT_SYMBOL_GPL vmlinux 0xdb3f25b5 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0xdb47fab9 __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0xdb4f3528 rdev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xdb60d343 strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb9d68cf raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0xdb9e7616 pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0xdbb4e217 preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xdbc72ac2 xive_native_alloc_irq_on_chip -EXPORT_SYMBOL_GPL vmlinux 0xdbcbeafa of_mpc8xxx_spi_probe -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 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 0xdc0b2b5b opal_flash_write -EXPORT_SYMBOL_GPL vmlinux 0xdc3a9a3f xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0xdc3b0c96 bpf_map_inc_with_uref -EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc49dcc7 sock_prot_inuse_get -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 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdc8e24eb devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc97ba1c dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdcb0a9f5 gpiod_set_raw_value -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 0xdd227dd6 devlink_trap_groups_register -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 0xdd59ba47 clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0xdd602483 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xdd7324a2 skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0xdd7a2aa8 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0xdd7e7251 crypto_spawn_tfm -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 0xdd904f42 iommu_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd9fe994 blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddd90569 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0xddd974cd inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xddf29775 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle -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 0xde1e687b devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0xde245280 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0xde3574eb devm_clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xde422369 spi_take_timestamp_post -EXPORT_SYMBOL_GPL vmlinux 0xde44cae4 devlink_rate_nodes_destroy -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 0xdea8f27d devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xdec131e8 __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xded2bf9d usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0xded360e7 get_pid_task -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 0xdeffa0a7 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf1ba72f udp_tunnel_nic_ops -EXPORT_SYMBOL_GPL vmlinux 0xdf1e9cfa btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync -EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf4139f5 __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0xdf43e19b disable_kprobe -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 0xdfb82200 trace_array_init_printk -EXPORT_SYMBOL_GPL vmlinux 0xdfc94206 power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfcd04f8 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xdfd84809 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xdfe018b1 __iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0xdfe13578 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0xdff568cb klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe00205a3 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0xe007209e blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0xe00bc1fa sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0xe01cda4e phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe0209948 dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0xe0224854 peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe02267a9 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0xe028d51e icc_sync_state -EXPORT_SYMBOL_GPL vmlinux 0xe034dbf4 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0xe03b1700 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xe0429f84 vfio_pci_core_read -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 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 0xe0a95dba dev_queue_xmit_nit -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 0xe0bd5e18 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0xe0c9fb8e usb_disable_xhci_ports -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 0xe10dec1e stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0xe122e1ea register_kprobe -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 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1c19e76 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx -EXPORT_SYMBOL_GPL vmlinux 0xe1d524fd pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0xe1db7609 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0xe1e59258 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0xe1e6c5bc genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0xe1e75fa9 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xe1ef5ad0 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xe1fccce4 dev_forward_skb -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 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 0xe23f7c3c mmc_regulator_set_vqmmc -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 0xe2a7fffe fib6_new_table -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 0xe2c0fcbd ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xe2ca999c spi_controller_dma_unmap_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe2d54587 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe2df2ea2 nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0xe3002c25 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0xe303ba1d vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0xe30c0717 ethnl_cable_test_result -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 0xe349487f phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0xe34fba24 devm_gpiod_get -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 0xe3840e18 secure_ipv4_port_ephemeral -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 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 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 0xe42cf06b inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe43347d3 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xe4484f8d pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xe4574669 mmput -EXPORT_SYMBOL_GPL vmlinux 0xe46cf0f2 bio_start_io_acct_time -EXPORT_SYMBOL_GPL vmlinux 0xe484c9d6 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0xe48a8c89 regulator_get_drvdata -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 0xe4ababb1 strp_done -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 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4f09c23 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xe4f5b558 synth_event_trace_start -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 0xe532df1e usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0xe53a2f3e rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xe540e6b0 rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0xe5438ad7 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0xe56dc682 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0xe57a7150 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe59e4f6a ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xe5a831f1 spi_res_release -EXPORT_SYMBOL_GPL vmlinux 0xe5d5d240 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xe5ec503b __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0xe5ed4fbd kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0xe5fc18e5 icc_provider_del -EXPORT_SYMBOL_GPL vmlinux 0xe60218a6 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe6160052 ip_route_output_flow -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 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 0xe6a13e7d xive_native_configure_irq -EXPORT_SYMBOL_GPL vmlinux 0xe6a49a88 sched_trace_rq_avg_dl -EXPORT_SYMBOL_GPL vmlinux 0xe6b0c942 fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xe6bbeb96 of_device_uevent_modalias -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 0xe7112794 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0xe713296a crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0xe7153bf9 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xe716c6bb devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xe71ad6fb hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0xe71fe38a trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0xe750985f relay_reset -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 0xe7bf89d6 crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0xe7c3568a tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0xe7c9116a pcie_bus_configure_settings -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 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 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 0xe82b6d41 devlink_port_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0xe8330622 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0xe83b5acd dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0xe8424c62 spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe852e21b ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe86a4c84 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xe870dbc2 gpiochip_populate_parent_fwspec_fourcell -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 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 0xe8e4b42e get_kernel_pages -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 0xe909eee3 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xe9108974 tracing_snapshot_cond_enable -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 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe94d8f06 device_match_devt -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 0xe9882d81 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xe99ed486 devm_regulator_register_notifier -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 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 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 0xea9fecac trace_event_raw_init -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 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 -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 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 0xeb1a4f29 opal_error_code -EXPORT_SYMBOL_GPL vmlinux 0xeb1c62f0 cpufreq_driver_resolve_freq -EXPORT_SYMBOL_GPL vmlinux 0xeb1f2416 synth_event_trace -EXPORT_SYMBOL_GPL vmlinux 0xeb281af0 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0xeb5607a8 unregister_pernet_device -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 0xeb732487 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xebb1f303 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0xebb93ff2 device_get_child_node_count -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 0xebda69bb iommu_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0xebe7f3f5 srcu_torture_stats_print -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 0xec54cafb pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range -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 0xecb440cc tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0xecb6576d md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0xecbedc37 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xecfa4c4d device_driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xed005dea usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xed0975ce platform_bus -EXPORT_SYMBOL_GPL vmlinux 0xed0c02b5 is_swiotlb_active -EXPORT_SYMBOL_GPL vmlinux 0xed1b6d51 platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID -EXPORT_SYMBOL_GPL vmlinux 0xed3a9d86 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0xed424c03 __mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xed4ab6ed bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0xed4c6719 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0xed533ad5 devlink_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0xed56936c power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0xed69102a of_mm_gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0xed6cf6e6 bpf_preload_ops -EXPORT_SYMBOL_GPL vmlinux 0xede4f09b dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0xee00d520 fixed_phy_change_carrier -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 0xee2dc156 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xee35c841 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -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 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 0xee914b44 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0xee9332eb of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0xee9a0e50 dst_blackhole_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xeea6618a devlink_port_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeea82b1e devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xeeaacf90 nfs_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0xeeb4e87c l3mdev_table_lookup_register -EXPORT_SYMBOL_GPL vmlinux 0xeebe1bd9 receive_fd -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 -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 0xef0943b9 kvmppc_h_enter -EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xef32cd8f skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0xef33c2a6 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef4e636e tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0xef5cd8d2 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xef672a71 bpf_prog_select_runtime -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 0xef79b313 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0xef85182b component_add -EXPORT_SYMBOL_GPL vmlinux 0xefa0765a devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefa79cd3 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xefa81e98 regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xefaa90ce vfio_uninit_group_dev -EXPORT_SYMBOL_GPL vmlinux 0xefb16a5f sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xefb7fbd3 fsnotify_find_mark -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 0xf010b0a5 vfio_pci_core_close_device -EXPORT_SYMBOL_GPL vmlinux 0xf0141485 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0xf044b4c3 usb_hcd_check_unlink_urb -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 0xf09976c5 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xf0b4cadd usb_enable_lpm -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 0xf0e52db0 set_secondary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xf0ea1f13 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xf1045757 dev_pm_genpd_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf10c8a0f serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0xf122e212 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xf127d6a1 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xf12fb7a4 vp_modern_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xf139f07d regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0xf13f8788 regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xf1549dc1 __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0xf154af55 pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0xf17882d5 device_link_add -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 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 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 0xf22390fb ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0xf258fb9d sock_map_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf259ccbe sata_scr_write_flush -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 0xf29bb5cb fib6_rule_default -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 0xf2c293da of_css -EXPORT_SYMBOL_GPL vmlinux 0xf2c3f893 nvdimm_to_bus -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 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 0xf30ea4a9 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0xf319c605 vas_copy_crb -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf32e6e9b fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -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 0xf3659826 iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit -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 0xf39a2794 pci_slots_kset -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 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 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 0xf47022b3 find_pid_ns -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 0xf4a00349 __tracepoint_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xf4a6eb06 tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4c38825 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf500d7ab nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0xf51dcb6e tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0xf537b37b scsi_target_unblock -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 0xf54ea996 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf567f588 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0xf578e918 crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xf58d0e18 crypto_shash_update -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 0xf5ea9b2b msg_zerocopy_realloc -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 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 0xf6455caa synth_event_trace_array -EXPORT_SYMBOL_GPL vmlinux 0xf64c5bd9 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf67ee37d of_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xf685224e devlink_port_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0xf689fa85 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0xf68c24c6 device_remove_software_node -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 -EXPORT_SYMBOL_GPL vmlinux 0xf6a3dce7 dma_request_chan_by_mask -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 0xf6c8dc62 cpu_hotplug_enable -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 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 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 0xf758ac16 ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0xf7650a9b iommu_detach_device -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 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 0xf7d16a0e inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite -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 0xf852d746 __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xf88c6b75 irq_chip_get_parent_state -EXPORT_SYMBOL_GPL vmlinux 0xf89106cb bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xf89891e8 strp_init -EXPORT_SYMBOL_GPL vmlinux 0xf89cb7fc spi_mem_poll_status -EXPORT_SYMBOL_GPL vmlinux 0xf8d0aa97 kvmppc_update_dirty_map -EXPORT_SYMBOL_GPL vmlinux 0xf8d9bc68 phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf8e420bd sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0xf8e84f1d fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0xf8f12c1a skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf902ad49 regulator_register_notifier -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 0xf923d695 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf96d0774 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xf96dca63 eeh_dev_check_failure -EXPORT_SYMBOL_GPL vmlinux 0xf9741751 genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0xf97471ef opal_i2c_request -EXPORT_SYMBOL_GPL vmlinux 0xf98638ac clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9c551ea dma_resv_test_signaled -EXPORT_SYMBOL_GPL vmlinux 0xf9c9588b inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xf9caa4ee subsys_dev_iter_next -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 0xfa030dd4 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa265366 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xfa385bf7 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0xfa3e327b inet_csk_clone_lock -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 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 0xfa8e7da9 sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0xfa90765f relay_flush -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 0xfaea340d bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0xfaead15d cgroup_get_from_fd -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 0xfb0ce20a dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0xfb113448 dst_blackhole_mtu -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 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb3c699a cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0xfb56f6b4 skb_scrub_packet -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 -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb738290 trace_seq_bprintf -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 0xfb8dacd3 perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb9cfccf led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0xfb9d4393 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0xfbb27e4f spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -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 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key -EXPORT_SYMBOL_GPL vmlinux 0xfc1b58e0 blk_trace_startstop -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 0xfc464a86 icc_node_create -EXPORT_SYMBOL_GPL vmlinux 0xfc481af3 cxl_afu_put -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 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 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 0xfcf9f042 crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0xfd36335f wm831x_bulk_read -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 0xfdb39eb7 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0xfdb5b41e netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdd45828 strp_stop -EXPORT_SYMBOL_GPL vmlinux 0xfded4202 list_lru_del -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 -EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release -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 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 0xfe5bbbf2 perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0xfe5f86c5 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0xfe79b9bc crypto_unregister_skcipher -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 0xfecd2380 cpu_add_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xfee3655a ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0xfeeaeb1f transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xfef3b80d icc_std_aggregate -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 0xff243c5b of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -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 0xff4240da nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff4a6f00 thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0xff5acf70 devlink_params_unpublish -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 0xff985b7e __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key -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 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 0xffeba9ef ip6_datagram_connect -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 -IIO_ADISLIB EXPORT_SYMBOL 0x5563bee4 __adis_enable_irq drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x49119140 __adis_write_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x5dcb42ce adis_single_conversion drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x682675d8 adis_update_scan_mode drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x78130b20 adis_init drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x8854aca1 __adis_read_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xd867a911 devm_adis_probe_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xda7c3ab8 __adis_update_bits_base drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xe4cab8d0 __adis_check_status drivers/iio/imu/adis_lib -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 0x702632d8 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 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 -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 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 -MCB EXPORT_SYMBOL_GPL 0xedad7468 mcb_unregister_driver drivers/mcb/mcb -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x4751da28 nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x4c03781a nvme_execute_passthru_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x57e35d4f nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xbf9ffcec nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xeb8ac0dd nvme_command_effects 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 -PMBUS EXPORT_SYMBOL_GPL 0x497710e8 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x5b399326 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x708f61c5 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x8d7a05c2 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xa11b13c4 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xa1b9e151 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xb435a846 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xc5916de1 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xcf910ee3 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xd453d89b pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xd839dbe5 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xdfe991fe pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xed4c9625 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xf2c76dac pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -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 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 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 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 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 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 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 reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/ppc64el/generic.compiler +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/ppc64el/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/ppc64el/generic.modules +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/ppc64el/generic.modules @@ -1,5712 +0,0 @@ -3c59x -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8021q -8139cp -8139too -8250_dw -8250_exar -8250_men_mcb -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pg86x -88pm800 -88pm800-regulator -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -abp060mg -ac97_bus -acard-ahci -acecad -acenic -acp_audio_dma -act8865-regulator -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 -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad5110 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5272 -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5686-spi -ad5696-i2c -ad5755 -ad5758 -ad5761 -ad5764 -ad5766 -ad5770r -ad5791 -ad5820 -ad5933 -ad7091r-base -ad7091r5 -ad7124 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7192 -ad7266 -ad7280a -ad7291 -ad7292 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7606_par -ad7606_spi -ad7746 -ad7766 -ad7768-1 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad7949 -ad799x -ad8366 -ad8801 -ad9389b -ad9467 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc-joystick -adc-keys -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adf4371 -adf7242 -adfs -adi -adi-axi-adc -adiantum -adin -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16209 -adis16240 -adis16260 -adis16400 -adis16460 -adis16475 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1177 -adm1266 -adm1275 -adm8211 -adm9240 -adp1653 -adp5061 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adux1020 -adv7170 -adv7175 -adv7180 -adv7183 -adv7343 -adv7393 -adv748x -adv7511_drm -adv7604 -adv7842 -adv_pci1710 -adv_pci1720 -adv_pci1723 -adv_pci1724 -adv_pci1760 -adv_pci_dio -advansys -adxl34x -adxl34x-i2c -adxl34x-spi -adxl372 -adxl372_i2c -adxl372_spi -adxrs290 -adxrs450 -aegis128 -aes_ti -af9013 -af9033 -af_alg -af_key -af_packet_diag -afe4403 -afe4404 -affs -ah4 -ah6 -ahci -ahci_ceva -ahci_platform -ahci_qoriq -aht10 -aic79xx -aic7xxx -aic94xx -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airo -airspy -ak7375 -ak881x -ak8974 -ak8975 -al3010 -al3320a -alcor -alcor_pci -algif_aead -algif_hash -algif_rng -algif_skcipher -alim7101_wdt -altera-ci -altera-cvp -altera-freeze-bridge -altera-msgdma -altera-pr-ip-core -altera-pr-ip-core-plat -altera-ps-spi -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am2315 -am53c974 -amc6821 -amd -amd5536udc_pci -amd8111e -amdgpu -amlogic-gxl-crypto -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams-iaq-core -ams369fg06 -analog -analogix-anx6345 -analogix-anx78xx -analogix_dp -ansi_cprng -anx7625 -anybuss_core -aoe -apbps2 -apds9300 -apds9802als -apds990x -apds9960 -apple-mfi-fastcharge -appledisplay -appletalk -appletouch -applicom -aptina-pll -aqc111 -aquacomputer_d5next -aquantia -ar1021_i2c -ar5523 -ar7part -ar9331 -arasan-nand-controller -arc-rawmode -arc-rimi -arc_ps2 -arc_uart -arcmsr -arcnet -arcpgu -arcx-anybus -arcxcnn_bl -arizona -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -arp_tables -arpt_mangle -arptable_filter -as102_fe -as370-hwmon -as3711-regulator -as3711_bl -as3722-regulator -as3935 -as5011 -as73211 -asc7621 -ascot2e -ashmem_linux -asix -aspeed-pwm-tacho -aspeed-video -ast -asym_tpm -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -at25 -at76c50x-usb -at803x -at86rf230 -ata_generic -ata_piix -atbm8830 -atc260x-core -atc260x-i2c -atc260x-onkey -atc260x-poweroff -atc260x-regulator -aten -ath -ath10k_core -ath10k_pci -ath10k_sdio -ath10k_usb -ath11k -ath11k_ahb -ath11k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ath9k_pci_owl_loader -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atlantic -atlas-ezo-sensor -atlas-sensor -atm -atmel -atmel-ecc -atmel-flexcom -atmel-hlcdc -atmel-i2c -atmel-sha204a -atmel_captouch -atmel_mxt_ts -atmel_pci -atmtcp -atp870u -atusb -atxp1 -aty128fb -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -auo-pixcir-ts -auth_rpcgss -authenc -authencesn -autofs4 -avmfritz -ax25 -ax88179_178a -ax88796b -axi-fan-control -axis-fifo -axp20x -axp20x-i2c -axp20x-pek -axp20x-regulator -axp20x_ac_power -axp20x_adc -axp20x_battery -axp20x_usb_power -axp288_adc -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -b53_common -b53_mdio -b53_mmap -b53_serdes -b53_spi -b53_srab -ba431-rng -bareudp -batman-adv -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bch -bcm-keypad -bcm-phy-lib -bcm-sf2 -bcm203x -bcm3510 -bcm54140 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm63xx_uart -bcm7xxx -bcm87xx -bcm_vk -bcma -bcma-hcd -bcmsysport -bd6107 -bd71815-regulator -bd71828-regulator -bd718x7-regulator -bd9571mwv -bd9571mwv-regulator -bd9576-regulator -bd9576_wdt -bd99954-charger -bdc -be2iscsi -be2net -befs -bel-pfe -belkin_sa -bfa -bfq -bfs -bfusb -bh1750 -bh1770glc -bh1780 -binder_linux -binfmt_misc -blake2b_generic -block2mtd -blocklayoutdriver -blowfish_common -blowfish_generic -bluetooth -bluetooth_6lowpan -bma150 -bma220_spi -bma400_core -bma400_i2c -bma400_spi -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmc150_magn_i2c -bmc150_magn_spi -bme680_core -bme680_i2c -bme680_spi -bmg160_core -bmg160_i2c -bmg160_spi -bmi088-accel-core -bmi088-accel-spi -bmi160_core -bmi160_i2c -bmi160_spi -bmp280 -bmp280-i2c -bmp280-spi -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bnxt_re -bochs -bonding -bpa-rs600 -bpa10x -bpck -bpfilter -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq2515x_charger -bq256xx_charger -bq25890_charger -bq25980_charger -bq27xxx_battery -bq27xxx_battery_hdq -bq27xxx_battery_i2c -br2684 -br_netfilter -brcmfmac -brcmsmac -brcmutil -brd -bridge -broadcom -bsd_comp -bsr -bt819 -bt856 -bt866 -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btmtksdio -btmtkuart -btqca -btrfs -btrsi -btrtl -btsdio -bttv -btusb -bu21013_ts -bu21029_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -ca8210 -cachefiles -cadence-nand-controller -cadence_wdt -cafe_ccic -cafe_nand -caif -caif_serial -caif_socket -caif_usb -caif_virtio -camellia_generic -can -can-bcm -can-dev -can-gw -can-isotp -can-j1939 -can-raw -cap11xx -capmode -carl9170 -carminefb -cassini -cast5_generic -cast6_generic -cast_common -catc -cavium_ptp -cb710 -cb710-mmc -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc10001_adc -cc2520 -cc770 -cc770_isa -cc770_platform -ccm -ccree -ccs -ccs-pll -ccs811 -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_ether -cdc_mbim -cdc_ncm -cdc_subset -cdns-csi2rx -cdns-csi2tx -cdns-dphy -cdns-dsi -cdns-mhdp8546 -cdns-pltfrm -cdns-usb-common -cdns3 -cec -ceph -cfb -cfg80211 -cfi_cmdset_0001 -cfi_cmdset_0002 -cfi_cmdset_0020 -cfi_probe -cfi_util -ch -ch341 -ch7006 -ch7322 -ch9200 -ch_ipsec -ch_ktls -chacha20poly1305 -chacha_generic -chaoskey -charlcd -chcr -chipone-icn6211 -chipone_icn8318 -chipreg -chnl_net -chrontel-ch7033 -ci_hdrc -ci_hdrc_imx -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_tegra -ci_hdrc_usb2 -cicada -cifs -cifs_arc4 -cifs_md4 -cirrus -cirrusfb -clip -clk-axi-clkgen -clk-bd718x7 -clk-cdce706 -clk-cdce925 -clk-cs2000-cp -clk-lmk04832 -clk-lochnagar -clk-max77686 -clk-max9485 -clk-palmas -clk-pwm -clk-rk808 -clk-s2mps11 -clk-si514 -clk-si5341 -clk-si5351 -clk-si544 -clk-si570 -clk-twl6040 -clk-versaclock5 -clk-wm831x -clk-xlnx-clock-wizard -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm3605 -cm36651 -cma3000_d0x -cma3000_d0x_i2c -cmac -cmdlinepart -cmm -cmtp -cnic -cobra -coda -colibri-vf50-ts -com20020 -com20020-pci -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_example_test -comedi_isadma -comedi_parport -comedi_pci -comedi_test -comedi_usb -comm -contec_pci_dio -cordic -core -corsair-cpro -corsair-psu -cortina -counter -cp210x -cpc925_edac -cpcap-adc -cpcap-battery -cpcap-pwrbutton -cpcap-regulator -cpia2 -cqhci -cramfs -crc-itu-t -crc-vpmsum_test -crc32_generic -crc32c-vpmsum -crc4 -crc64 -crc7 -crc8 -crct10dif-vpmsum -cryptd -crypto_engine -crypto_safexcel -crypto_user -cryptoloop -cs3308 -cs5345 -cs53l32a -csiostor -curve25519-generic -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cw2015_battery -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxd2880 -cxd2880-spi -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cxgbit -cxl -cxl_core -cxl_pci -cxl_pmem -cxlflash -cy8ctma140 -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da280 -da311 -da7280 -da9030_battery -da9034-ts -da903x-regulator -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062-thermal -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9121-regulator -da9150-charger -da9150-core -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -davicom -dax_pmem -dax_pmem_compat -dax_pmem_core -db9 -dc395x -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -ddbridge -ddbridge-dummy-fe -de2104x -de4x5 -defxx -denali -denali_dt -denali_pci -des_generic -designware_i2s -device_dax -dfl -dfl-afu -dfl-emif -dfl-fme -dfl-fme-br -dfl-fme-mgr -dfl-fme-region -dfl-n3000-nios -dfl-pci -dht11 -diag -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dib9000 -dibx000_common -digi_acceleport -digicolor-usart -diskonchip -display-connector -dl2k -dlhl60d -dlink-dir685-touchkeys -dlm -dln2 -dln2-adc -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 -dm1105 -dm9601 -dmard06 -dmard09 -dmard10 -dmfe -dmm32at -dmx3191d -dnet -dp83640 -dp83822 -dp83848 -dp83867 -dp83869 -dp83tc811 -dpot-dac -dps310 -dps920ab -dpt_i2o -drbd -drivetemp -drm -drm_dp_aux_bus -drm_kms_helper -drm_mipi_dbi -drm_panel_orientation_quirks -drm_ttm_helper -drm_vram_helper -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1803 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds4424 -ds620 -dsa_core -dsbr100 -dst -dst_ca -dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-core -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-dibusb-mc-common -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_dummy_fe -dvb_usb_v2 -dw-axi-dmac-platform -dw-edma -dw-edma-pcie -dw-hdmi -dw-hdmi-ahb-audio -dw-hdmi-cec -dw-hdmi-i2s-audio -dw-i3c-master -dw-xdata-pcie -dw9714 -dw9768 -dw9807-vcm -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_wdt -dwc-xlgmac -dwc2_pci -dwc3 -dwc3-haps -dwc3-of-simple -dwmac-dwc-qos-eth -dwmac-generic -dwmac-intel-plat -dwmac-loongson -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -earth-pt1 -earth-pt3 -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -ecc -ecdh_generic -ecdsa_generic -echainiv -echo -ecrdsa_generic -edt-ft5x06 -ee1004 -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efa -efct -efs -egalax_ts -egalax_ts_serial -ehci-fsl -ehci-platform -ehset -ektf2127 -elan_i2c -elants_i2c -elo -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_ipt -em_meta -em_nbyte -em_text -em_u32 -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_usb -emu10k1-gp -ena -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -eni -enic -envelope-detector -epat -epia -epic100 -eql -erofs -esas2r -esd_usb2 -esp4 -esp4_offload -esp6 -esp6_offload -esp_scsi -essiv -et1011c -et131x -et8ek8 -etas_es58x -ethoc -evbug -exc3000 -exfat -extcon-adc-jack -extcon-fsa9480 -extcon-gpio -extcon-max14577 -extcon-max3355 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-ptn5150 -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -extcon-usbc-tusb320 -ezusb -f2fs -f75375s -f81232 -f81534 -f81601 -failover -fakelb -fan53555 -fan53880 -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 -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_pci -fdp -fdp_i2c -fealnx -ff-memless -fhci -fieldbus_dev -firedtv -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fit2 -fit3 -fixed -fl512 -flexcan -floppy -fm10k -fm801-gp -fm_drv -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fou6 -fpga-bridge -fpga-mgr -fpga-region -freevxfs -friq -frpw -fscache -fsi-core -fsi-master-aspeed -fsi-master-gpio -fsi-master-hub -fsi-occ -fsi-sbefifo -fsi-scom -fsia6b -fsl-edma -fsl-edma-common -fsl-enetc -fsl-enetc-ierb -fsl-enetc-mdio -fsl-enetc-ptp -fsl-enetc-vf -fsl-mph-dr-of -fsl_linflexuart -fsl_lpuart -fsl_pq_mdio -fsl_ucc_hdlc -fsp-3y -ftdi-elan -ftdi_sio -ftl -ftm-quaddec -ftsteutates -fujitsu_ts -fusb302 -fxas21002c_core -fxas21002c_i2c -fxas21002c_spi -fxls8962af-core -fxls8962af-i2c -fxls8962af-spi -fxos8700_core -fxos8700_i2c -fxos8700_spi -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -garp -gateworks-gsc -gb-audio-apbridgea -gb-audio-codec -gb-audio-gb -gb-audio-manager -gb-audio-module -gb-bootrom -gb-es2 -gb-firmware -gb-gbphy -gb-gpio -gb-hid -gb-i2c -gb-light -gb-log -gb-loopback -gb-power-supply -gb-pwm -gb-raw -gb-sdio -gb-spi -gb-spilib -gb-uart -gb-usb -gb-vibrator -gdmtty -gdmulte -gemini -gen_probe -generic -generic-adc-battery -genet -geneve -genwqe_card -gf2k -gfs2 -gianfar_driver -gl518sm -gl520sm -gl620a -gluebi -gm12u320 -gnss -gnss-mtk -gnss-serial -gnss-sirf -gnss-ubx -go7007 -go7007-loader -go7007-usb -goku_udc -goldfish_battery -goodix -gp2ap002 -gp2ap020a00f -gp8psk-fe -gpio -gpio-74x164 -gpio-74xx-mmio -gpio-adnp -gpio-adp5520 -gpio-adp5588 -gpio-aggregator -gpio-altera -gpio-amd-fch -gpio-arizona -gpio-bd70528 -gpio-bd71815 -gpio-bd71828 -gpio-bd9571mwv -gpio-beeper -gpio-cadence -gpio-charger -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-exar -gpio-fan -gpio-grgpio -gpio-gw-pld -gpio-hlwd -gpio-ir-recv -gpio-ir-tx -gpio-janz-ttl -gpio-kempld -gpio-logicvc -gpio-lp3943 -gpio-lp873x -gpio-lp87565 -gpio-madera -gpio-max3191x -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-max77620 -gpio-max77650 -gpio-mb86s7x -gpio-mc33880 -gpio-menz127 -gpio-moxtet -gpio-pca953x -gpio-pca9570 -gpio-pcf857x -gpio-pci-idio-16 -gpio-pcie-idio-24 -gpio-pisosr -gpio-rdc321x -gpio-regulator -gpio-sama5d2-piobu -gpio-siox -gpio-syscon -gpio-tpic2810 -gpio-tps65086 -gpio-tps65218 -gpio-tps65912 -gpio-tqmx86 -gpio-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-vibra -gpio-viperboard -gpio-virtio -gpio-wcd934x -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio-xra1403 -gpio_backlight -gpio_decoder -gpio_keys -gpio_keys_polled -gpio_mouse -gpio_wdt -gpu-sched -gr_udc -grace -grcan -gre -greybus -grip -grip_mp -gs1662 -gs_fpga -gs_usb -gsc-hwmon -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtp -gud -guillemot -gunze -gve -habanalabs -hackrf -hamachi -hampshire -hangcheck-timer -hanwang -hci -hci_nokia -hci_uart -hci_vhci -hd3ss3220 -hd44780 -hd44780_common -hdc100x -hdc2010 -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcdrv -hdma -hdma_mgmt -hdpvr -he -helene -hellcreek_sw -hexium_gemini -hexium_orion -hfcmulti -hfcpci -hfcsusb -hfs -hfsplus -hi311x -hi556 -hi6210-i2s -hi6421-pmic-core -hi6421-regulator -hi6421-spmi-pmic -hi6421v530-regulator -hi6421v600-irq -hi6421v600-regulator -hi8435 -hid -hid-a4tech -hid-accutouch -hid-alps -hid-apple -hid-appleir -hid-asus -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-bigbenff -hid-cherry -hid-chicony -hid-cmedia -hid-corsair -hid-cougar -hid-cp2112 -hid-creative-sb0540 -hid-cypress -hid-dr -hid-elan -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-ft260 -hid-gaff -hid-gembird -hid-generic -hid-gfrm -hid-glorious -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-icade -hid-ite -hid-jabra -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-led -hid-lenovo -hid-lg-g15 -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-macally -hid-magicmouse -hid-maltron -hid-mcp2221 -hid-mf -hid-microsoft -hid-monterey -hid-multitouch -hid-nti -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-playstation -hid-primax -hid-prodikeys -hid-redragon -hid-retrode -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-semitek -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-custom-intel-hinge -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-humidity -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-temperature -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steam -hid-steelseries -hid-sunplus -hid-thrustmaster -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-u2fzero -hid-uclogic -hid-udraw-ps3 -hid-viewsonic -hid-vivaldi -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hideep -hidp -hih6130 -hisi-spmi-controller -hisi_hikey_usb -hmc425a -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hms-profinet -hopper -horus3a -hostap -hostap_pci -hostap_plx -hp03 -hp206c -hpfs -hpilo -hpsa -hptiop -hsi -hsi_char -hso -hsr -ht16k33 -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hvcs -hvcserver -hwmon-vid -hwpoison-inject -hx711 -hx8357 -hx8357d -hycon-hy46xx -hyperbus-core -i2c-algo-bit -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd8111 -i2c-arb-gpio-challenge -i2c-cbus-gpio -i2c-cp2615 -i2c-demux-pinctrl -i2c-designware-pci -i2c-diolan-u2c -i2c-dln2 -i2c-fsi -i2c-gpio -i2c-hid -i2c-hid-of -i2c-hid-of-goodix -i2c-i801 -i2c-isch -i2c-kempld -i2c-matroxfb -i2c-mpc -i2c-mux -i2c-mux-gpio -i2c-mux-gpmux -i2c-mux-ltc4306 -i2c-mux-mlxcpld -i2c-mux-pca9541 -i2c-mux-pca954x -i2c-mux-pinctrl -i2c-mux-reg -i2c-nforce2 -i2c-nvidia-gpu -i2c-ocores -i2c-parport -i2c-pca-platform -i2c-piix4 -i2c-rk3x -i2c-robotfuzz-osif -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-tiny-usb -i2c-via -i2c-viapro -i2c-viperboard -i2c-virtio -i2c-xiic -i3c -i3c-master-cdns -i40e -i5k_amb -i6300esb -i740fb -iavf -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mthca -ib_srp -ib_srpt -ib_umad -ib_uverbs -ibm-cffps -ibmaem -ibmpex -ibmpowernv -ibmveth -ibmvfc -ibmvmc -ibmvnic -ibmvscsi -ibmvscsis -ice -ice40-spi -icom -icp -icp10100 -icp_multi -icplus -ics932s401 -ideapad_slidebar -idma64 -idmouse -idt77252 -idt_89hpesx -idt_gen2 -idt_gen3 -idtcps -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -ifcvf -ife -ifi_canfd -iforce -iforce-serio -iforce-usb -igb -igbvf -igc -igorplugusb -iguanair -ii_pci20kc -iio-mux -iio-rescale -iio-trig-hrtimer -iio-trig-interrupt -iio-trig-loop -iio-trig-sysfs -iio_dummy -iio_hwmon -ila -ili210x -ili9225 -ili922x -ili9320 -ili9341 -ili9486 -ilitek_ts_i2c -img-ascii-lcd -img-i2s-in -img-i2s-out -img-parallel-out -img-spdif-in -img-spdif-out -imm -imon -imon_raw -ims-pcu -imx208 -imx214 -imx219 -imx258 -imx274 -imx290 -imx319 -imx334 -imx335 -imx355 -imx412 -imx6ul_tsc -ina209 -ina2xx -ina2xx-adc -ina3221 -industrialio -industrialio-buffer-cb -industrialio-buffer-dma -industrialio-buffer-dmaengine -industrialio-configfs -industrialio-hw-consumer -industrialio-sw-device -industrialio-sw-trigger -industrialio-triggered-buffer -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -inspur-ipsps -int51x1 -intel-m10-bmc -intel-m10-bmc-hwmon -intel-nand-controller -intel-qep -intel-xway -intel_pmt -intel_th -intel_th_gth -intel_th_msu -intel_th_msu_sink -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -interact -interrupt-cnt -inv-icm42600 -inv-icm42600-i2c -inv-icm42600-spi -inv-mpu6050 -inv-mpu6050-i2c -inv-mpu6050-spi -io_edgeport -io_ti -ionic -iosm -iova -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_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_tunnel -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 -ipaq -ipcomp -ipcomp6 -iphase -ipheth -ipip -ipmi_devintf -ipmi_msghandler -ipmi_powernv -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -ips -ipt_CLUSTERIP -ipt_ECN -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipvtap -ipw -ipw2100 -ipw2200 -iqs269a -iqs5xx -iqs620at-temp -iqs621-als -iqs624-pos -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-usb -ir-xmp-decoder -ir35221 -ir36021 -ir38064 -ir_toy -irdma -irps5401 -irq-madera -iscsi_boot_sysfs -iscsi_target_mod -iscsi_tcp -isdnhdlc -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl29501 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl68137 -isl9305 -isofs -isp116x-hcd -isp1704_charger -isp1760 -it913x -itd1000 -ite-it66121 -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_cm -iw_cxgb4 -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jffs2 -jfs -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -kafs -kalmia -kaweth -kbic -kbtab -kcm -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kfifo_buf -kheaders -kl5kusb105 -kmem -kmx61 -kobil_sct -komeda -ks0108 -ks0127 -ks7010 -ks8842 -ks8851_common -ks8851_par -ks8851_spi -ksmbd -ksz8795 -ksz8795_spi -ksz884x -ksz8863_smi -ksz9477 -ksz9477_i2c -ksz9477_spi -ksz_common -ktd253-backlight -ktti -kvaser_pci -kvaser_pciefd -kvaser_usb -kvm -kvm-hv -kvm-pr -kxcjk-1013 -kxsd9 -kxsd9-i2c -kxsd9-spi -kxtj9 -kyber-iosched -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l4f00242t03 -l64781 -lan743x -lan78xx -lan9303-core -lan9303_i2c -lan9303_mdio -lanai -lantiq_gswip -lapb -lapbether -lattice-ecp3-config -lcd -lcd2s -ldusb -lec -led-class-flash -led-class-multicolor -led_bl -leds-88pm860x -leds-aat1290 -leds-adp5520 -leds-an30259a -leds-as3645a -leds-aw2013 -leds-bcm6328 -leds-bcm6358 -leds-bd2802 -leds-blinkm -leds-cpcap -leds-cr0014114 -leds-da903x -leds-da9052 -leds-dac124s085 -leds-el15203000 -leds-gpio -leds-is31fl319x -leds-is31fl32xx -leds-ktd2692 -leds-lm3530 -leds-lm3532 -leds-lm3533 -leds-lm355x -leds-lm3601x -leds-lm36274 -leds-lm3642 -leds-lm3692x -leds-lm3697 -leds-lp3944 -leds-lp3952 -leds-lp50xx -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max77650 -leds-max77693 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-mlxreg -leds-mt6323 -leds-pca9532 -leds-pca955x -leds-pca963x -leds-powernv -leds-pwm -leds-regulator -leds-rt4505 -leds-rt8515 -leds-sgm3140 -leds-spi-byte -leds-tca6507 -leds-ti-lmu-common -leds-tlc591xx -leds-tps6105x -leds-wm831x-status -leds-wm8350 -ledtrig-activity -ledtrig-audio -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-netdev -ledtrig-oneshot -ledtrig-pattern -ledtrig-timer -ledtrig-transient -ledtrig-tty -ledtrig-usbport -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gl5 -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libahci -libahci_platform -libarc4 -libceph -libchacha -libchacha20poly1305 -libcomposite -libcrc32c -libcurve25519 -libcurve25519-generic -libcxgb -libcxgbi -libdes -libertas -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libpoly1305 -libsas -libsm4 -lightning -lineage-pem -linear -liquidio -liquidio_vf -lis3lv02d -lis3lv02d_i2c -lis3lv02d_spi -liteuart -litex_liteeth -litex_soc_ctrl -lkkbd -ll_temac -llc -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3560 -lm3630a_bl -lm3639_bl -lm363x-regulator -lm3646 -lm63 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lmp91000 -lms283gf05 -lms501kf03 -lnbh25 -lnbh29 -lnbp21 -lnbp22 -lochnagar-hwmon -lochnagar-regulator -lockd -lontium-lt8912b -lontium-lt9611 -lontium-lt9611uxc -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp873x -lp873x-regulator -lp8755 -lp87565 -lp87565-regulator -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -lt3651-charger -ltc1660 -ltc2471 -ltc2485 -ltc2496 -ltc2497 -ltc2497-core -ltc2632 -ltc2941-battery-gauge -ltc2945 -ltc2947-core -ltc2947-i2c -ltc2947-spi -ltc2978 -ltc2983 -ltc2990 -ltc2992 -ltc3589 -ltc3676 -ltc3815 -ltc4151 -ltc4162-l-charger -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv0104cs -lv5207lp -lvds-codec -lvstest -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -m2m-deinterlace -m52790 -m5mols -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -m_can_pci -m_can_platform -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -mac802154_hwsim -mac_hid -macb -macb_pci -machxo2-spi -macsec -macvlan -macvtap -madera -madera-i2c -madera-spi -mag3110 -magellan -mailbox-altera -mailbox-test -mantis -mantis_core -map_absent -map_funcs -map_ram -map_rom -marvell -marvell-88x2222 -marvell10g -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max11100 -max1111 -max1118 -max11801_ts -max1241 -max127 -max1363 -max14577-regulator -max14577_charger -max14656_charger_detector -max15301 -max1586 -max16064 -max16065 -max1619 -max16601 -max1668 -max17040_battery -max17042_battery -max1721x_battery -max197 -max20730 -max20751 -max2165 -max2175 -max30100 -max30102 -max3100 -max31722 -max31730 -max31785 -max31790 -max31856 -max3420_udc -max3421-hcd -max34440 -max44000 -max44009 -max517 -max5432 -max5481 -max5487 -max5821 -max63xx_wdt -max6621 -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77620-regulator -max77620_thermal -max77620_wdt -max77650 -max77650-charger -max77650-onkey -max77650-regulator -max77686-regulator -max77693-haptic -max77693-regulator -max77693_charger -max77802-regulator -max77826-regulator -max8649 -max8660 -max8688 -max8893 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997-regulator -max8997_charger -max8997_haptic -max8998 -max8998_charger -max9271 -max9286 -max9611 -maxim_thermocouple -mb1232 -mb862xxfb -mb86a16 -mb86a20s -mc -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc3230 -mc44s803 -mcam-core -mcb -mcb-lpc -mcb-pci -mcba_usb -mceusb -mchp23k256 -mchp48l640 -mcp16502 -mcp251x -mcp251xfd -mcp3021 -mcp320x -mcp3422 -mcp3911 -mcp4018 -mcp41010 -mcp4131 -mcp4531 -mcp4725 -mcp4922 -mcr20a -mcs5000_ts -mcs7830 -mcs_touchkey -mct_u232 -mctp -md-cluster -md4 -md5-ppc -mdc800 -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 -mdio-mux-gpio -mdio-mux-mmioreg -mdio-mux-multiplexer -mdio-mvusb -mdio-octeon -mdio-thunder -me4000 -me_daq -mediatek-ge -megachips-stdpxxxx-ge-b850v3-fw -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -melfas_mip4 -memory-notifier-error-inject -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -menz69_wdt -metro-usb -metronomefb -mf6x4 -mgag200 -mhi -mhi_net -mhi_pci_generic -mhi_wwan_ctrl -mhi_wwan_mbim -mi0283qt -michael_mic -micrel -microchip -microchip-tcb-capture -microchip_t1 -microread -microread_i2c -microtek -mii -minix -mip6 -mipi-i3c-hci -mite -mk712 -mkiss -ml86v7667 -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx5_vdpa -mlx90614 -mlx90632 -mlxfw -mlxsw_core -mlxsw_i2c -mlxsw_minimal -mlxsw_pci -mlxsw_spectrum -mma7455_core -mma7455_i2c -mma7455_spi -mma7660 -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_block -mmc_spi -mms114 -mn88443x -mn88472 -mn88473 -mos7720 -mos7840 -most_cdev -most_core -most_dim2 -most_i2c -most_net -most_snd -most_usb -most_video -motorcomm -motorola-cpcap -moxa -moxtet -mp2629 -mp2629_adc -mp2629_charger -mp2888 -mp2975 -mp5416 -mp8859 -mp886x -mpc624 -mpi3mr -mpl115 -mpl115_i2c -mpl115_spi -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpq7920 -mpr121_touchkey -mpt3sas -mptbase -mptcp_diag -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mr75203 -mrf24j40 -mrp -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -mscc -mscc_ocelot -mscc_ocelot_switch_lib -mscc_seville -msdos -msg2638 -msi001 -msi2500 -msp3400 -mspro_block -mt2060 -mt2063 -mt20xx -mt2131 -mt2266 -mt312 -mt352 -mt6311-regulator -mt6315-regulator -mt6323-regulator -mt6358-regulator -mt6359-regulator -mt6360-adc -mt6360-core -mt6360-regulator -mt6360_charger -mt6397 -mt6397-regulator -mt7530 -mt76 -mt76-connac-lib -mt76-sdio -mt76-usb -mt7601u -mt7603e -mt7615-common -mt7615e -mt7663-usb-sdio-common -mt7663s -mt7663u -mt76x0-common -mt76x02-lib -mt76x02-usb -mt76x0e -mt76x0u -mt76x2-common -mt76x2e -mt76x2u -mt7915e -mt7921e -mt9m001 -mt9m032 -mt9m111 -mt9p031 -mt9t001 -mt9t112 -mt9v011 -mt9v032 -mt9v111 -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdblock_ro -mtdoops -mtdpstore -mtdram -mtdswap -mtip32xx -mtk-pmic-keys -mtk-sd -mtouch -multipath -multiq3 -musb_hdrc -mux-adg792a -mux-adgs1408 -mux-core -mux-gpio -mux-mmio -mv88e6060 -mv88e6xxx -mv_u3d_core -mv_udc -mvmdio -mvsas -mvumi -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxc6255 -mxic_nand -mxl-gpy -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxl5xx -mxl692 -mxser -mxuport -myrb -myri10ge -myrs -n5pf -n_gsm -n_hdlc -nand -nandcore -nandsim -national -natsemi -nau7802 -navman -nbd -nci -nci_spi -nci_uart -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -nd_virtio -ne2k-pci -neofb -net1080 -net2272 -net2280 -net_failover -netconsole -netdevsim -netfs -netjet -netlink_diag -netrom -netup-unidvb -netxen_nic -newtonkbd -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 -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -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 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -nhpoly1305 -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_labpc -ni_labpc_common -ni_labpc_isadma -ni_labpc_pci -ni_pcidio -ni_pcimio -ni_routes_test -ni_routing -ni_tio -ni_tiocmd -ni_usb6501 -nicpf -nicstar -nicvf -nilfs2 -niu -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 -noa1305 -noon010pc30 -nosy -notifier-error-inject -nouveau -nozomi -npcm750-pwm-fan -nps_enet -ns558 -ns83820 -nsh -ntb -ntb_hw_epf -ntb_hw_idt -ntb_hw_switchtec -ntb_netdev -ntb_perf -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -ntfs3 -ntxec -null_blk -nvidiafb -nvme -nvme-core -nvme-fabrics -nvme-fc -nvme-loop -nvme-rdma -nvme-tcp -nvmem-rave-sp-eeprom -nvmem-reboot-mode -nvmem-rmem -nvmem_qcom-spmi-sdam -nvmet -nvmet-fc -nvmet-rdma -nvmet-tcp -nwl-dsi -nx-compress -nx-compress-powernv -nx-compress-pseries -nxp-c45-tja11xx -nxp-nci -nxp-nci_i2c -nxp-ptn3460 -nxp-tja11xx -nxt200x -nxt6000 -nzxt-kraken2 -objagg -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -ocxl -of-fpga-region -of_mmc_spi -of_pmem -of_xilinx_wdt -ofb -ofpart -ohci-platform -omap4-keypad -omfs -omninet -on20 -on26 -onenand -opal-prd -opencores-kbd -openvswitch -opt3001 -opticon -option -or51132 -or51211 -orangefs -orinoco -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -oti6858 -otm3225a -ov02a10 -ov13858 -ov2640 -ov2659 -ov2680 -ov2685 -ov5640 -ov5645 -ov5647 -ov5648 -ov5670 -ov5675 -ov5695 -ov6650 -ov7251 -ov7640 -ov7670 -ov772x -ov7740 -ov8856 -ov8865 -ov9282 -ov9640 -ov9650 -overlay -oxu210hp-hcd -p54common -p54pci -p54spi -p54usb -p8022 -pa12203001 -palmas-pwrbutton -palmas-regulator -palmas_gpadc -pandora_bl -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 -papr_scm -parade-ps8622 -parade-ps8640 -paride -parkbd -parman -parport -parport_ax88796 -parport_pc -parport_serial -pata_ali -pata_amd -pata_artop -pata_atiixp -pata_atp867x -pata_cmd640 -pata_cmd64x -pata_cypress -pata_efar -pata_hpt366 -pata_hpt37x -pata_hpt3x2n -pata_hpt3x3 -pata_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_of_platform -pata_oldpiix -pata_opti -pata_optidma -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sis -pata_sl82c105 -pata_triflex -pata_via -pc300too -pca9450-regulator -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcd -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-epf-ntb -pci-pf-stub -pci-stub -pci200syn -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmda12 -pcmmio -pcmuio -pcnet32 -pcrypt -pcs-lynx -pcs_xpcs -pcspkr -pcwd_pci -pcwd_usb -pd -pda_power -pdc_adma -peak_pci -peak_pciefd -peak_usb -pegasus -pegasus_notetaker -penmount -pf -pf8x00-regulator -pfuze100-regulator -pg -phantom -phonet -phram -phy-bcm-kona-usb2 -phy-cadence-salvo -phy-cadence-sierra -phy-cadence-torrent -phy-can-transceiver -phy-cpcap-usb -phy-exynos-usb2 -phy-fsl-imx8-mipi-dphy -phy-fsl-imx8mq-usb -phy-generic -phy-gpio-vbus-usb -phy-isp1301 -phy-mapphone-mdm6600 -phy-ocelot-serdes -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-qcom-usb-hs -phy-qcom-usb-hsic -phy-tahvo -phy-tusb1210 -phylink -physmap -pi3usb30532 -pi433 -pim4328 -pinctrl-axp209 -pinctrl-da9062 -pinctrl-lochnagar -pinctrl-madera -pinctrl-max77620 -pinctrl-mcp23s08 -pinctrl-mcp23s08_i2c -pinctrl-mcp23s08_spi -pinctrl-rk805 -pinctrl-stmfx -ping -pistachio-internal-dac -pixcir_i2c_ts -pkcs7_test_key -pkcs8_key_parser -pktcdvd -pktgen -pl2303 -plat-ram -plat_nand -platform_lcd -platform_mhu -plip -plusb -pluto2 -plx_dma -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm6764tr -pm80xx -pmbus -pmbus_core -pmc551 -pmcraid -pms7003 -pn532_uart -pn533 -pn533_i2c -pn533_usb -pn544 -pn544_i2c -pn_pep -pnv-php -poly1305_generic -port100 -powermate -powernv-op-panel -powernv-rng -powernv_flash -powr1220 -ppa -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_parport -pptp -prestera -prestera_pci -pretimeout_panic -prism2_usb -ps2-gpio -ps2mult -psample -pseries-rng -pseries_energy -psmouse -psnap -pstore_blk -pstore_zone -psxpad-spi -pt -ptp-qoriq -ptp_clockmatrix -ptp_idt82p33 -ptp_ines -ptp_ocp -pulse8-cec -pulsedlight-lidar-lite-v2 -pv88060-regulator -pv88080-regulator -pv88090-regulator -pvpanic -pvpanic-mmio -pvpanic-pci -pvrusb2 -pwc -pwm-atmel-hlcdc -pwm-atmel-tcb -pwm-beeper -pwm-dwc -pwm-fan -pwm-fsl-ftm -pwm-iqs620a -pwm-ir-tx -pwm-lp3943 -pwm-ntxec -pwm-pca9685 -pwm-regulator -pwm-twl -pwm-twl-led -pwm-vibra -pwm_bl -pwrseq_emmc -pwrseq_sd8787 -pwrseq_simple -pxa27x_udc -pxe1610 -pxrc -qca8k -qca_7k_common -qcaspi -qcauart -qcaux -qcom-emac -qcom-labibb-regulator -qcom-pm8008 -qcom-spmi-adc5 -qcom-spmi-iadc -qcom-spmi-vadc -qcom-vadc-common -qcom-wled -qcom_glink -qcom_glink_rpm -qcom_spmi-regulator -qcom_usb_vbus-regulator -qcserial -qed -qede -qedf -qedi -qedr -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qm1d1b0004 -qm1d1c0042 -qmi_helpers -qmi_wwan -qnx4 -qnx6 -qrtr -qrtr-mhi -qrtr-smd -qrtr-tun -qsemi -qt1010 -qt1050 -qt1070 -qt2160 -qtnfmac -qtnfmac_pcie -quatech2 -quota_tree -quota_v1 -quota_v2 -qwiic-joystick -qxl -r592 -r6040 -r8152 -r8153_ecm -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723bs -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si470x-common -radio-si470x-i2c -radio-si470x-usb -radio-si476x -radio-tea5764 -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid_class -rainshadow-cec -ramoops -rave-sp -rave-sp-backlight -rave-sp-pwrbutton -rave-sp-wdt -raw_diag -raw_gadget -raydium_i2c_ts -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 -rc5t583-regulator -rcar_dw_hdmi -rdacm20 -rdacm21 -rdc321x-southbridge -rdma_cm -rdma_rxe -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -realtek-smi -reboot-mode -redboot -redrat3 -reed_solomon -regmap-i3c -regmap-sccb -regmap-sdw -regmap-sdw-mbq -regmap-slimbus -regmap-spi-avmm -regmap-spmi -regmap-w1 -regulator-haptic -reiserfs -repaper -reset-ti-syscon -resistive-adc-touch -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd77402 -rfd_ftl -rfkill-gpio -rio-scan -rio_cm -rio_mport_cdev -rionet -rivafb -rj54n1cb0c -rk805-pwrkey -rk808 -rk808-regulator -rm3100-core -rm3100-i2c -rm3100-spi -rmd160 -rmi_core -rmi_i2c -rmi_smbus -rmi_spi -rmnet -rn5t618 -rn5t618-adc -rn5t618-regulator -rn5t618_power -rn5t618_wdt -rnbd-client -rnbd-server -rndis_host -rndis_wlan -rockchip -rocker -rohm-bd70528 -rohm-bd71828 -rohm-bd718x7 -rohm-bd9576 -rohm-regulator -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpadlpar_io -rpaphp -rpcrdma -rpcsec_gss_krb5 -rpi-panel-attiny-regulator -rpmsg_char -rpmsg_core -rpmsg_ns -rpmsg_wwan_ctrl -rpr0521 -rsi_91x -rsi_sdio -rsi_usb -rsmu-i2c -rsmu-spi -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt4801-regulator -rt4831 -rt4831-backlight -rt4831-regulator -rt5033 -rt5033-regulator -rt5033_battery -rt6160-regulator -rt61pci -rt6245-regulator -rt73usb -rt9455_charger -rtas_flash -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab-eoz9 -rtc-abx80x -rtc-as3722 -rtc-bd70528 -rtc-bq32k -rtc-bq4802 -rtc-cadence -rtc-cmos -rtc-cpcap -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1302 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-em3027 -rtc-fm3130 -rtc-ftrtc010 -rtc-goldfish -rtc-hid-sensor-time -rtc-hym8563 -rtc-isl12022 -rtc-isl12026 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max6916 -rtc-max77686 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-msm6242 -rtc-mt6397 -rtc-ntxec -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf85363 -rtc-pcf8563 -rtc-pcf8583 -rtc-r7301 -rtc-r9701 -rtc-rc5t583 -rtc-rc5t619 -rtc-rk808 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3028 -rtc-rv3029c2 -rtc-rv3032 -rtc-rv8803 -rtc-rx4581 -rtc-rx6110 -rtc-rx8010 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-sd3078 -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-twl -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtc-zynqmp -rtc_cmos_setup -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rtmv20-regulator -rtq2134-regulator -rtq6752-regulator -rtrs-client -rtrs-core -rtrs-server -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rtw88_8723d -rtw88_8723de -rtw88_8821c -rtw88_8821ce -rtw88_8822b -rtw88_8822be -rtw88_8822c -rtw88_8822ce -rtw88_core -rtw88_pci -rtw89_core -rtw89_pci -rx51_battery -rxrpc -s1d13xxxfb -s2250 -s2255drv -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s3fwrn82_uart -s526 -s5c73m3 -s5h1409 -s5h1411 -s5h1420 -s5h1432 -s5k4ecgx -s5k5baf -s5k6a3 -s5k6aa -s5m8767 -s626 -s6sy761 -s921 -saa6588 -saa6752hs -saa7110 -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7185 -saa7706h -safe_serial -sample-trace-array -samsung-keypad -samsung-sxgbe -sata_dwc_460ex -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_sil -sata_sil24 -sata_sis -sata_svw -sata_sx4 -sata_uli -sata_via -sata_vsc -savagefb -sbp_target -sbrmi -sbs-battery -sbs-charger -sbs-manager -sbtsi_temp -sc16is7xx -sc92031 -sca3000 -sca3300 -scanlog -scd30_core -scd30_i2c -scd30_serial -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_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -sctp -sctp_diag -sd_adc_modulator -sdhci -sdhci-cadence -sdhci-milbeaut -sdhci-of-arasan -sdhci-of-aspeed -sdhci-of-at91 -sdhci-of-dwcmshc -sdhci-of-esdhc -sdhci-of-hlwd -sdhci-omap -sdhci-pci -sdhci-pltfm -sdhci-xenon-driver -sdhci_am654 -sdhci_f_sdh30 -sdio_uart -sensorhub -serial_ir -serio_raw -sermouse -serpent_generic -serport -ses -sf-pdma -sfc -sfc-falcon -sfp -sgi_w1 -sgp30 -sgp40 -sha1-powerpc -sha3_generic -shark2 -shiftfs -sht15 -sht21 -sht3x -sht4x -shtc1 -si1133 -si1145 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sifive -sii902x -sii9234 -sil-sii8620 -sil164 -silead -simple-bridge -simpledrm -simplefb -siox-bus-gpio -siox-core -sir_ir -sis190 -sis5595 -sis900 -sis_i2c -sisfb -sisusbvga -sit -siw -sja1000 -sja1000_isa -sja1000_platform -sja1105 -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -slcan -slg51000-regulator -slicoss -slim-qcom-ctrl -slimbus -slip -slram -sm2_generic -sm3_generic -sm4_generic -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smartpqi -smb347-charger -smc -smc_diag -smipcie -smm665 -smsc -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4xxx-adda -snd-aloop -snd-als4000 -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-compress -snd-cs4281 -snd-cs46xx -snd-ctl-led -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-ens1370 -snd-ens1371 -snd-fireface -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-motu -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-cs8409 -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-hwdep -snd-i2c -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel-dspcfg -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-lx6464es -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcm -snd-pcm-dmaengine -snd-pcxhr -snd-portman2x4 -snd-pt2258 -snd-rawmidi -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-sb-common -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-63xx -snd-soc-ac97 -snd-soc-acp-rt5645-mach -snd-soc-adau-utils -snd-soc-adau1372 -snd-soc-adau1372-i2c -snd-soc-adau1372-spi -snd-soc-adau1701 -snd-soc-adau1761 -snd-soc-adau1761-i2c -snd-soc-adau1761-spi -snd-soc-adau17x1 -snd-soc-adau7002 -snd-soc-adau7118 -snd-soc-adau7118-hw -snd-soc-adau7118-i2c -snd-soc-adi-axi-i2s -snd-soc-adi-axi-spdif -snd-soc-ak4104 -snd-soc-ak4118 -snd-soc-ak4458 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-ak5558 -snd-soc-alc5623 -snd-soc-audio-graph-card -snd-soc-bd28623 -snd-soc-bt-sco -snd-soc-core -snd-soc-cpcap -snd-soc-cs35l32 -snd-soc-cs35l33 -snd-soc-cs35l34 -snd-soc-cs35l35 -snd-soc-cs35l36 -snd-soc-cs35l41 -snd-soc-cs35l41-i2c -snd-soc-cs35l41-lib -snd-soc-cs35l41-spi -snd-soc-cs4234 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l42 -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs43130 -snd-soc-cs4341 -snd-soc-cs4349 -snd-soc-cs53l30 -snd-soc-cx2072x -snd-soc-da7213 -snd-soc-dmic -snd-soc-es7134 -snd-soc-es7241 -snd-soc-es8316 -snd-soc-es8328 -snd-soc-es8328-i2c -snd-soc-es8328-spi -snd-soc-fsl-asrc -snd-soc-fsl-audmix -snd-soc-fsl-easrc -snd-soc-fsl-esai -snd-soc-fsl-micfil -snd-soc-fsl-mqs -snd-soc-fsl-rpmsg -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-fsl-xcvr -snd-soc-gtm601 -snd-soc-hdmi-codec -snd-soc-ics43432 -snd-soc-imx-audmux -snd-soc-inno-rk3036 -snd-soc-lochnagar-sc -snd-soc-lpass-rx-macro -snd-soc-lpass-tx-macro -snd-soc-lpass-va-macro -snd-soc-lpass-wsa-macro -snd-soc-max9759 -snd-soc-max98088 -snd-soc-max98357a -snd-soc-max98373 -snd-soc-max98373-i2c -snd-soc-max98373-sdw -snd-soc-max98390 -snd-soc-max98504 -snd-soc-max9860 -snd-soc-max9867 -snd-soc-max98927 -snd-soc-mikroe-proto -snd-soc-msm8916-analog -snd-soc-msm8916-digital -snd-soc-mt6351 -snd-soc-mt6358 -snd-soc-mt6660 -snd-soc-nau8315 -snd-soc-nau8540 -snd-soc-nau8810 -snd-soc-nau8822 -snd-soc-nau8824 -snd-soc-pcm1681 -snd-soc-pcm1789-codec -snd-soc-pcm1789-i2c -snd-soc-pcm179x-codec -snd-soc-pcm179x-i2c -snd-soc-pcm179x-spi -snd-soc-pcm186x -snd-soc-pcm186x-i2c -snd-soc-pcm186x-spi -snd-soc-pcm3060 -snd-soc-pcm3060-i2c -snd-soc-pcm3060-spi -snd-soc-pcm3168a -snd-soc-pcm3168a-i2c -snd-soc-pcm3168a-spi -snd-soc-pcm5102a -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rk3328 -snd-soc-rk817 -snd-soc-rl6231 -snd-soc-rt1308-sdw -snd-soc-rt1316-sdw -snd-soc-rt5616 -snd-soc-rt5631 -snd-soc-rt5640 -snd-soc-rt5645 -snd-soc-rt5659 -snd-soc-rt5682 -snd-soc-rt5682-sdw -snd-soc-rt700 -snd-soc-rt711 -snd-soc-rt711-sdca -snd-soc-rt715 -snd-soc-rt715-sdca -snd-soc-sdw-mockup -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-sigmadsp-regmap -snd-soc-simple-amplifier -snd-soc-simple-card -snd-soc-simple-card-utils -snd-soc-simple-mux -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2305 -snd-soc-ssm2518 -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-tas2552 -snd-soc-tas2562 -snd-soc-tas2764 -snd-soc-tas2770 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tas5720 -snd-soc-tas6424 -snd-soc-tda7419 -snd-soc-tfa9879 -snd-soc-tfa989x -snd-soc-tlv320adcx140 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic32x4 -snd-soc-tlv320aic32x4-i2c -snd-soc-tlv320aic32x4-spi -snd-soc-tlv320aic3x -snd-soc-tlv320aic3x-i2c -snd-soc-tlv320aic3x-spi -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-tscs42xx -snd-soc-tscs454 -snd-soc-uda1334 -snd-soc-wcd-mbhc -snd-soc-wcd9335 -snd-soc-wcd934x -snd-soc-wcd938x -snd-soc-wcd938x-sdw -snd-soc-wm-adsp -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8524 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8782 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8904 -snd-soc-wm8960 -snd-soc-wm8962 -snd-soc-wm8974 -snd-soc-wm8978 -snd-soc-wm8985 -snd-soc-wsa881x -snd-soc-xlnx-formatter-pcm -snd-soc-xlnx-i2s -snd-soc-xlnx-spdif -snd-soc-xtfpga-i2s -snd-soc-zl38060 -snd-sof -snd-sof-of -snd-timer -snd-ua101 -snd-usb-6fire -snd-usb-audio -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-usx2y -snd-usb-variax -snd-usbmidi-lib -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-ymfpci -snic -snps_udc_core -snps_udc_plat -softdog -softing -solo6x10 -solos-pci -sony-btf-mpx -soundcore -soundwire-bus -soundwire-qcom -sp2 -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speakup -speakup_acntsa -speakup_apollo -speakup_audptr -speakup_bns -speakup_decext -speakup_dectlk -speakup_dummy -speakup_ltlk -speakup_soft -speakup_spkout -speakup_txprt -speedfax -speedtch -spi-altera-core -spi-altera-dfl -spi-altera-platform -spi-amd -spi-axi-spi-engine -spi-bitbang -spi-butterfly -spi-cadence -spi-dln2 -spi-dw -spi-dw-mmio -spi-dw-pci -spi-fsi -spi-gpio -spi-lm70llp -spi-loopback-test -spi-mux -spi-mxic -spi-nor -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 -spi_ks8995 -spidev -spinand -spl -spmi -sprd_serial -sps30 -sps30_i2c -sps30_serial -sr030pc30 -sr9700 -sr9800 -srf04 -srf08 -ssb -ssb-hcd -ssd1307fb -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -sstfb -ssu100 -st -st-mipid02 -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st7586 -st7735r -st95hf -st_accel -st_accel_i2c -st_accel_spi -st_drv -st_gyro -st_gyro_i2c -st_gyro_spi -st_lsm6dsx -st_lsm6dsx_i2c -st_lsm6dsx_i3c -st_lsm6dsx_spi -st_lsm9ds0 -st_lsm9ds0_i2c -st_lsm9ds0_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -st_uvis25_core -st_uvis25_i2c -st_uvis25_spi -starfire -stb0899 -stb6000 -stb6100 -ste10Xp -stex -stinger -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stm_ftrace -stm_heartbeat -stm_p_basic -stm_p_sys-t -stmfts -stmfx -stmmac -stmmac-pci -stmmac-platform -stmpe-adc -stmpe-keypad -stmpe-ts -stowaway -stp -stpddc60 -stpmic1 -stpmic1_onkey -stpmic1_regulator -stpmic1_wdt -streamzap -streebog_generic -stts751 -stusb160x -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv0910 -stv6110 -stv6110x -stv6111 -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sunrpc -sur40 -surface3_spi -svc-i3c-master -svgalib -switchtec -sx8654 -sx9310 -sx9500 -sy8106a-regulator -sy8824x -sy8827n -sym53c8xx -symbolserial -synaptics_i2c -synaptics_usb -synclink_gt -syscon-reboot-mode -syscopyarea -sysfillrect -sysimgblt -sysv -t5403 -tag_ar9331 -tag_brcm -tag_dsa -tag_gswip -tag_hellcreek -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 -tc-dwc-g210 -tc-dwc-g210-pci -tc-dwc-g210-pltfrm -tc358743 -tc358762 -tc358764 -tc358767 -tc358768 -tc358775 -tc3589x-keypad -tc654 -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcan4x5x -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -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 -tcpci -tcpci_maxim -tcpci_mt6360 -tcpci_rt1711h -tcpm -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18250 -tda18271 -tda18271c2dd -tda1997x -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda827x -tda8290 -tda9840 -tda9887 -tda9950 -tda998x -tdfxfb -tdo24m -tea575x -tea5761 -tea5767 -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tef6862 -tehuti -teranetics -test_blackhole_dev -test_bpf -test_div64 -test_power -tg3 -thc63lvd1024 -thermal-generic-adc -thermal_mmio -thmc50 -ths7303 -ths8200 -thunder_bgx -thunder_xcv -thunderbolt -thunderbolt-net -ti-adc081c -ti-adc0832 -ti-adc084s021 -ti-adc108s102 -ti-adc12138 -ti-adc128s052 -ti-adc161s626 -ti-ads1015 -ti-ads124s08 -ti-ads131e08 -ti-ads7950 -ti-ads8344 -ti-ads8688 -ti-dac082s085 -ti-dac5571 -ti-dac7311 -ti-dac7612 -ti-lmu -ti-sn65dsi83 -ti-sn65dsi86 -ti-tfp410 -ti-tlc4541 -ti-tpd12s015 -ti-tsc2046 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_usb_3410_5052 -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timeriomem-rng -tipc -tlan -tls -tlv320aic23b -tm2-touchkey -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmp006 -tmp007 -tmp102 -tmp103 -tmp108 -tmp117 -tmp401 -tmp421 -tmp513 -toshsd -touchit213 -touchright -touchwin -tpci200 -tpl0102 -tpm_atmel -tpm_key_parser -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tpm_tis_i2c_cr50 -tpm_tis_spi -tpm_vtpm_proxy -tps23861 -tps40422 -tps51632-regulator -tps53679 -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65086 -tps65086-regulator -tps65090-charger -tps65090-regulator -tps65132-regulator -tps65218 -tps65218-pwrbutton -tps65218-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps6598x -tps80031-regulator -tqmx86 -trace-printk -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsi568 -tsi57x -tsl2550 -tsl2563 -tsl2583 -tsl2591 -tsl2772 -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -ttynull -tua6100 -tua9001 -tulip -tuner -tuner-simple -tuner-types -tuner-xc2028 -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp514x -tvp5150 -tvp7002 -tw2804 -tw5864 -tw68 -tw686x -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6030-regulator -twl6040-vibra -twofish_common -twofish_generic -typec -typec_displayport -typec_nvidia -typec_ucsi -typhoon -u132-hcd -uPD60620 -u_audio -u_ether -u_serial -uacce -uartlite -uas -ubi -ubifs -ubuntu-host -ucan -ucb1400_core -ucb1400_ts -ucc_uart -ucd9000 -ucd9200 -ucs1002_power -ucsi_ccg -uda1342 -udc-core -udc-xilinx -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd-core -ufshcd-dwc -ufshcd-pci -ufshcd-pltfrm -uhid -uio -uio_aec -uio_cif -uio_dfl -uio_dmem_genirq -uio_fsl_elbc_gpcm -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uleds -uli526x -ulpi -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -unix_diag -upd64031a -upd64083 -upd78f0730 -us5182d -usb-conn-gpio -usb-serial-simple -usb-storage -usb251xb -usb3503 -usb4604 -usb8xxx -usb_8dev -usb_debug -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_phonet -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_tcm -usb_f_uac1 -usb_f_uac1_legacy -usb_f_uac2 -usb_f_uvc -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbip-vudc -usbkbd -usblcd -usblp -usbmisc_imx -usbmon -usbmouse -usbnet -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usdhi6rol0 -userio -userspace-consumer -ushc -uss720 -uvcvideo -uvesafb -v4l2-async -v4l2-dv-timings -v4l2-flash-led-class -v4l2-fwnode -v4l2-mem2mem -v4l2-tpg -vcan -vcnl3020 -vcnl4000 -vcnl4035 -vctrl-regulator -vdpa -vdpa_sim -vdpa_sim_blk -vdpa_sim_net -vduse -veml6030 -veml6070 -ves1820 -ves1x93 -veth -vf610_adc -vf610_dac -vga16fb -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_iotlb -vhost_net -vhost_scsi -vhost_vdpa -vhost_vsock -via-rhine -via-sdmmc -via-velocity -via686a -vicodec -video-i2c -video-mux -videobuf-core -videobuf-dma-sg -videobuf-vmalloc -videobuf2-common -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-dvb -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videocodec -videodev -vim2m -vimc -viperboard -viperboard_adc -virt-dma -virt_wifi -virtio-gpu -virtio-rng -virtio_blk -virtio_bt -virtio_crypto -virtio_dma_buf -virtio_input -virtio_net -virtio_pmem -virtio_rpmsg_bus -virtio_scsi -virtio_snd -virtio_vdpa -virtiofs -virtual -virtual_ncidev -visor -vitesse -vitesse-vsc73xx-core -vitesse-vsc73xx-platform -vitesse-vsc73xx-spi -vivid -vkms -vl53l0x-i2c -vl6180 -vmac -vme_fake -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmw_vsock_virtio_transport -vmw_vsock_virtio_transport_common -vmx-crypto -vp27smpx -vp_vdpa -vport-geneve -vport-gre -vport-vxlan -vpx3220 -vrf -vringh -vs6624 -vsock -vsock_diag -vsock_loopback -vsockmon -vsxxxaa -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxcan -vxge -vxlan -vz89x -w1-gpio -w1_ds2405 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2430 -w1_ds2431 -w1_ds2433 -w1_ds2438 -w1_ds250x -w1_ds2780 -w1_ds2781 -w1_ds2805 -w1_ds28e04 -w1_ds28e17 -w1_smem -w1_therm -w5100 -w5100-spi -w5300 -w6692 -w83773g -w83781d -w83791d -w83792d -w83793 -w83795 -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -walkera0701 -wanxl -warrior -wbsd -wcd934x -wcn36xx -wd719x -wdrtas -wdt87xx_i2c -wdt_pci -wfx -whiteheat -wil6210 -wilc1000 -wilc1000-sdio -wilc1000-spi -winbond-840 -windfarm_core -wire -wireguard -wishbone-serial -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994 -wm8994-regulator -wm97xx-ts -wp512 -wwan_hwsim -x25 -x_tables -xbox_remote -xc4000 -xc5000 -xcbc -xdpe12284 -xfrm4_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_interface -xfrm_ipcomp -xfrm_user -xfs -xhci-pci -xhci-pci-renesas -xhci-plat-hcd -xilinx-csi2rxss -xilinx-pr-decoupler -xilinx-spi -xilinx-tpg -xilinx-video -xilinx-vtc -xilinx-xadc -xilinx_dpdma -xilinx_emac -xilinx_emaclite -xilinx_gmii2rgmii -xilinx_ps2 -xilinx_sdfec -xilinx_uartps -xillybus_class -xillybus_core -xillybus_of -xillybus_pcie -xillyusb -xiphera-trng -xlnx_vcu -xor -xpad -xr_serial -xrs700x -xrs700x_i2c -xrs700x_mdio -xsens_mt -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 -xtkbd -xusbatm -xxhash_generic -xz_dec_test -yam -yamaha-yas530 -yealink -yellowfin -yurex -z3fold -zaurus -zavl -zcommon -zd1201 -zd1211rw -zd1301 -zd1301_demod -zet6223 -zforce_ts -zfs -zhenhua -ziirave_wdt -zinitix -zl10036 -zl10039 -zl10353 -zl6100 -zlua -znvpair -zonefs -zopt2201 -zpa2326 -zpa2326_i2c -zpa2326_spi -zr36016 -zr36050 -zr36060 -zr36067 -zr364xx -zram -zstd -zstd_compress -zunicode -zzstd reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/ppc64el/generic.modules.builtin +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/ppc64el/generic.modules.builtin @@ -1,291 +0,0 @@ -8250 -8250_base -8250_of -8250_pci -88pm860x -aead -aes_generic -af_packet -agpgart -akcipher -as3722 -as3722-poweroff -asiliantfb -asn1_decoder -asn1_encoder -asymmetric_keys -atkbd -backlight -bcm84881 -binfmt_elf -binfmt_script -bitrev -bsg -btree -cbc -cdrom -cfbcopyarea -cfbfillrect -cfbimgblt -charger-manager -clk-fixed-mmio -cn -compat_binfmt_elf -configfs -cpufreq-dt -cpufreq_conservative -cpufreq_ondemand -cpufreq_performance -cpufreq_powersave -cpufreq_userspace -crc-ccitt -crc-t10dif -crc16 -crc32 -crc32c_generic -crct10dif_common -crct10dif_generic -crypto -crypto_acompress -crypto_algapi -crypto_hash -crypto_null -cryptomgr -ctr -cts -da903x -da9052-core -da9052-i2c -da9052-spi -da9055 -da9063 -dax -deflate -dh_generic -digsig -dm-mod -dns_resolver -drbg -drm_mipi_dsi -drop_monitor -dwc2 -ecb -ecryptfs -edac_core -ehci-hcd -ehci-pci -encrypted-keys -evdev -exportfs -ext4 -extcon-core -ezx-pcap -fat -fb -fddi -firmware_class -fixed_phy -font -freq_table -fuse -fwnode_mdio -gcm -geniv -gf128mul -ghash-generic -glob -governor_passive -governor_performance -governor_powersave -governor_simpleondemand -governor_userspace -gpio-generic -gpio-poweroff -gpio-restart -gpio-xilinx -gxt4500 -hmac -hwmon -hwspinlock_core -i2c-core -i2c-designware-core -i2c-designware-platform -i2c-dev -i2c-opal -i8042 -icc-core -imsttfb -input-core -ipv6 -irq-al-fic -irqbypass -jbd2 -jitterentropy_rng -kgdboc -kpp -led-class -libaes -libata -libblake2s -libnvdimm -libphy -libps2 -libsha256 -linear_ranges -loop -lp8788 -ltc2952-poweroff -lz4_decompress -lzo -lzo-rle -lzo_compress -lzo_decompress -macmodes -max14577 -max310x -max77686 -max77693 -mbcache -md-mod -md5 -mdio_devres -mfd-core -mmc_core -mousedev -mpi -mq-deadline -mt6323-poweroff -n_null -nfs_ssc -nls_base -nls_cp437 -nvmem_core -nvram -of_mdio -offb -ohci-hcd -ohci-pci -oid_registry -packing -palmas -pci-ep-cfs -pci-epc-core -pci-epc-mem -pci-epf-core -pci-host-common -pci-host-generic -pcie-microchip-host -pinctrl-as3722 -pinctrl-palmas -pinctrl-single -pkcs7_message -pldmfw -power_supply -powercap_sys -powernv-cpufreq -ppp_generic -pps_core -pretimeout_noop -pstore -ptp -public_key -rapidio -rational -regmap-i2c -regmap-mmio -regmap-spi -regulator-poweroff -remoteproc -restart-poweroff -rfkill -rng -rng-core -roles -rsa_generic -rtc-generic -rtc-opal -sccnxp -scsi_common -scsi_mod -scsi_transport_srp -sd_mod -sec-core -sec-irq -selftests -seqiv -serdev -serial_core -serial_mctrl_gpio -serio -sg -sha1_generic -sha256_generic -sha512_generic -simple-pm-bus -skcipher -slhc -spi-fsl-lib -spi-fsl-spi -squashfs -sr_mod -stmpe-i2c -stmpe-spi -system_heap -t10-pi -tc3589x -tcp_cubic -tpm -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_ibmvtpm -tpm_tis -tpm_tis_core -tps65086-restart -tps6586x -tps65912-core -tps65912-i2c -tps65912-spi -trusted -ttyprintk -tun -twl4030-audio -twl6040 -udmabuf -uhci-hcd -uinput -unicode -unix -usb-common -usbcore -vfat -vfio -vfio-pci -vfio-pci-core -vfio_iommu_spapr_tce -vfio_spapr_eeh -vfio_virqfd -vgacon -virtio -virtio_balloon -virtio_console -virtio_mmio -virtio_pci -virtio_pci_modern_dev -virtio_ring -watch_queue -watchdog -wwan -x509_key_parser -xgmac_mdio -xhci-hcd -xts -xxhash -xz_dec -zbud -zlib_deflate -zlib_inflate -zpool -zsmalloc -zstd_decompress -zswap reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/ppc64el/generic.retpoline +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/ppc64el/generic.retpoline @@ -1 +0,0 @@ -# RETPOLINE NOT ENABLED reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/s390x/generic +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/s390x/generic @@ -1,13833 +0,0 @@ -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 -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 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 -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/gpu/drm/drm 0x004b31b1 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01184e23 drm_connector_attach_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0270e808 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03156232 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x036de128 drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03822c00 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x040a42b3 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0537ade2 drm_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x053c41c3 drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05b01491 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06617f41 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06ac1d6b drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06b12bf0 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07e81388 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09786467 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a89c1eb drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae421f2 drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bcb9b59 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c2dcb4c drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c35eedd drm_dev_has_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c448c16 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d3d807f drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dab178e drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e3ee931 drm_debugfs_remove_files -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 0x106e33d0 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10c9d796 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1168a5f9 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x123df7bb drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x124125eb drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1282908e drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12a7e3e1 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12d7f7db drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1336a22b drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x142f09f1 drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14682d4c drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14bf1efe drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17626af3 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1766fcbe drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1794a1fb drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17ae45a5 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x191010bb drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19c7da94 drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a87966d drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c93c97b drm_hdmi_avi_infoframe_colorspace -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d3cc5fd drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d52e59f drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1df6751b drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e674bce drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f92b9a5 drm_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20282960 drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x211fb838 drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x215f102a drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21b6af87 drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21c85f83 drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x224eb77e drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22dee693 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f654d8 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2427e4f1 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x244efa37 drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x247a58be drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25266506 drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25ce17ce drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25dc010d drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26536b02 drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x265eaf07 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26fd33a8 drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x275c70fd drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x276bc15e drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27d2bf16 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29e28099 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a66b72f drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2aec002d drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2afbc980 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b0d966b drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b27ed2b drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b2c7bc2 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bb37e4b __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cadfbd0 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e05f73c __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e1bed14 drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ec75201 drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f506768 drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f9189a3 drm_hdmi_avi_infoframe_bars -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fb24008 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30ba2fbb drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31729cd1 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32365081 drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35054cd9 drm_gem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36243751 drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3747352e drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x385f0e72 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38afe637 drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x394c1c5d drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39f2d6d1 drm_crtc_cleanup -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 0x3cb803c8 drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ce21c98 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e92f1a6 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f59f26d drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x401bdf00 drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4029a2f5 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4228ad75 drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4270b476 drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42c49a81 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x431f3938 drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43e7c64e drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43f71770 drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x443ed21c drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4462a36c drm_dev_unplug -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 0x45cd173e drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45ece21d drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x463b3d91 drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46663da4 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46fc1b98 drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4709e8a3 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4737a6da drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47eaa07a drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48ac6bee drm_gem_map_attach -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 0x4aab7e90 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b26f6de drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b3008c7 drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b5ad168 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b5d3469 drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d8a7a22 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e28bcd9 drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f020e6b drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f025f33 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x502687fe drm_add_modes_noedid -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 0x5195cafc drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5322c080 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54c0cdbe drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x552f6f7e drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5619608d drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x574cd590 drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57556497 drm_atomic_state_default_clear -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 0x581c2446 __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59cca009 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a36a9c7 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a8d89cb drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5aa2b037 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ac29c15 drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ada642b drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b102b3c drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b5f61e5 drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b978b09 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bfe8689 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c11a4e4 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c2631bc drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd8b3cb drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d337a14 drm_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e217361 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f23defd drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6046faa4 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60c431ed drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6310deed drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x633ed718 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6488c8d3 drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x665c24d4 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x669e0f9e drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66d7d645 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67189e19 drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6809d91b __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x682097f2 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x682fbda3 drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68aafa08 drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69fafdfe drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a2346ef drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b00607d drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c8ac363 drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ce65e5a drm_connector_attach_dp_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dd5e217 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e2d9013 drm_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f83ef29 drmm_kfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x702bc414 drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x702eeeb0 drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71467507 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x727c409c drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7296d9da drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73050088 __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7479a6df drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74c20b4c drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74eae476 drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7624c7fd drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76979bc9 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77082ea6 drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77538d24 drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7817236c drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7882cced drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78b99033 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7940fe94 drmm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79517d4f drm_client_modeset_commit_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7964f9dc drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7975b794 drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x797f8165 drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a7dfba0 drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7af20c16 drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c27d1a7 drm_atomic_bridge_chain_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d3bbae9 drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d7f692f drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d8dbb54 drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d9b3370 drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e8985d4 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f0d6889 drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f935cba drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81227101 drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x815029f1 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81a40c96 __drmm_add_action_or_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81bfda50 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81d1d9f0 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8276d5cd drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x829329cd drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82daf09e drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x838f5158 drm_add_override_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8392ecd9 drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83c73987 drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x848d3a1f drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84bb5cc2 drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x861b3e09 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b043a60 drm_gem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bec2868 drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cd1f61b drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d306866 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d3642fd drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ea198da drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fe1414b drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90751caa drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x912e6ef4 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91c5cc22 drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9258dabe drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f95705 drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93669390 drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93cec5c7 drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x948f847f drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x954e02ad drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96399be2 drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96d65a77 drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x971c8179 drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97e10ab2 drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x980f9333 drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled -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 0x9ba5f5b9 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c062ebe drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c69cfdd drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cc8d63f drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d9bb4e4 drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dc1dede drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ebba417 drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9efd23a7 drm_client_modeset_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f67b6c0 drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa22d239e drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa23ba137 drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa24a736d drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28d1e69 drm_prime_sg_to_page_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3ace751 __drmm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5ec2523 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa69b00ba drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6ff255b drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7ff050f drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa92342dc drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9815fd4 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaab8af0e drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaafaf381 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab68b7bb drm_crtc_commit_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac7d07b5 drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac82bf9a drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaddec75b drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae0eac68 drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae56fd23 drm_vblank_work_schedule -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaea3769a drm_connector_set_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaed4038c drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaee15487 drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaee2432e drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf0ced44 drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xafd5617f drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0335a4e drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb09d810f drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0f384f7 drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb248ac95 drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2acc1a7 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb343194c drm_crtc_send_vblank_event -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 0xb4496aa4 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4fe0501 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb55e7cb9 drm_atomic_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5e6466a drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7de6b83 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb98c8a4f drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9c96cbe drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba17775d drm_plane_get_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba3c59b4 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba4f9087 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb740c0e drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbb8b8d2 drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc9df83a drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd09d68a drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd792ad4 drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdbef5b1 drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe00f0d2 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbed274e3 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc14f7e91 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc19f7b42 drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1e69281 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1f327ed drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2fe0fb0 drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3652f58 drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3724834 drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc42f7eee drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc460392a drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc66a7903 drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6e32c18 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6f3e416 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6ff3374 drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc93e004d drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc973c22c drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9af9cf5 drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca8dbb0f drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaf7a1c2 drm_atomic_get_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc5abaed drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd4b92bf drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb7008b drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce109637 drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce5b9542 drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd08aced7 drm_connector_attach_hdr_output_metadata_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1b2b475 drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd24b16f1 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd34c798f drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3873448 drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3b8e4ca drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3d6be52 drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd40458b0 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd47a7f47 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4afd314 drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4ffbc79 drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5344bea drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd63d5ecc drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd86d68da drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd90b35b6 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd94f9628 drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd99292ae drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd99a83c7 drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9a39c37 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc6bb971 drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd671fc8 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdebb237d drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf56a657 drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf83e4e5 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfbcd6b1 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0ea1a40 drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1233dc2 drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1460854 drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1aed345 drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1b41956 drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2474269 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe261baf8 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2d3ea86 drm_atomic_set_fence_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe34b09c7 drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe479d586 drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe52037fc drm_gem_fence_array_add_implicit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe561264f drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe82a00ff drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8ab3efe drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea6f7160 drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeafe37df drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb08edf3 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb5d155a drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb6cec79 drm_crtc_vblank_helper_get_vblank_timestamp_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec714bea drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed14cd36 drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed413aa6 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed4e67f2 drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee521d5f drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeed621ed drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf092af45 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1151dfc drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf14bbd18 drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf31aa82a drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3347f0a drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3d99e61 drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf457b93f drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf657a43a drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6c8543b drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf71b35d7 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf734fff0 devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81d26b1 drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf84e6de6 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8c2f9b4 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8db2dac drm_bridge_chain_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9c0e249 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa59a151 drm_crtc_vblank_helper_get_vblank_timestamp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb2cd361 __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc5b32c9 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd1f1981 drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd2286bf drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff35c1ed drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0072ddbe drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02204c15 drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02a01b08 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x039d91b9 drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x057135d2 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05aea210 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06b32db2 drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x091ecaec drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0925a6ad drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a6c787b drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b3bffb5 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0be4a576 drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c6df98e drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d4d520a drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x134c6972 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x142379a3 drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14c7af30 devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14da5a2e drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x156f8fec drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1629c877 drm_simple_encoder_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 0x183ca0b3 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a220778 drm_atomic_helper_connector_destroy_state -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 0x1b87dbf9 drm_dp_atomic_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1bbb5760 drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23961837 drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23d4290d drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23fd19b0 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2415091e drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2709dc71 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x291a8184 drm_gem_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x293f8b5b drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a91a5b0 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2aafe727 drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bf9f48c drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d1b3f8b drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x306e8096 __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31cb5853 drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31e072e4 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32ddc8e2 drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32ef4d5e drm_dp_pcon_convert_rgb_to_ycbcr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32f74ac3 drm_dp_vsc_sdp_log -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3909d667 drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39f12128 drm_atomic_helper_bridge_propagate_bus_fmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a908397 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f1c8f56 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fecc80d drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ff3bbeb drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4016e5f4 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42392dd3 drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4292838e drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4306f440 drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43d6d643 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45ae5c77 drm_dp_remote_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47afef4e drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x483ad812 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49f56029 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a2f7169 drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d8c97a0 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f98874c __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x505f14cd drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x518018f8 drm_gem_fb_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51a6a50f drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x522ea90e drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537b8893 drm_fb_blit_rect_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53eb0c89 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x540726b8 drm_dp_pcon_frl_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x547cdb53 drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x552776e1 drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x566adb70 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56a663e9 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5714a4fb drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x574ca77e drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57ff2da2 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5958ca51 drm_dp_pcon_hdmi_link_mode -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 0x5a14a02d __drmm_simple_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a5e0f7c drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5aff8d7a drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c531fae drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c924fe1 drm_dp_read_downstream_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d5c280f devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d6887bc drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e011f97 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ed48acf drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ee57901 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f40fd56 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6032c44b drm_dp_pcon_pps_default -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60736d80 drm_dp_read_dpcd_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60983a07 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60fef7b3 drm_edp_backlight_set_level -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6120a3ad drm_dp_downstream_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x621bd595 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6276b9b5 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x632e7f8e drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x632feb76 drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x638bc8a4 drm_edp_backlight_enable -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 0x64d06836 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65278234 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x654050d8 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x668b2a18 drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6856ea6e drm_dp_set_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68d1bf6d drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68d8dce7 drm_dp_downstream_is_tmds -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69818edc drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69928dff drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a99e8d4 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ac01f11 drm_gem_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b4f1225 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b53e216 drm_dp_downstream_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6bcdd4fb drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c33982c drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ce66fb5 drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6df4b75b drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70f78176 __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711df1a3 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x715bbdfb drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x720e4990 drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x737b2cf7 drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73d0976f drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75761022 drm_atomic_helper_commit_tail -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 0x775dd42e drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78990c52 __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78fc1243 drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae669d0 drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c966c52 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d418cd0 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d6cd921 drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ececa24 drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7efd33b6 drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f2e2bfd drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f561eee drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fd76ea2 drm_gem_simple_kms_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8013de0b drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81f17c88 drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x829b6048 drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82c8cc0c drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83ff58c7 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8535e373 drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x868996a4 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87150817 drm_fb_helper_initial_config -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 0x8c5efdd2 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c89b06d drm_panel_bridge_remove -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 0x8f076c83 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90036be8 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90984c27 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93f83727 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93f9f321 drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x953402c4 drm_edp_backlight_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x978fb626 drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b384eda drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9efd8888 drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fd72838 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0d08dd4 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0fb4cd2 drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa142a406 drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa182f6ba drm_gem_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa22a99dc drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa24f3407 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa26fd7e1 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4406eaf drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa448c628 drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4ad2638 drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa51bcefe drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5c22af1 drm_dp_pcon_pps_override_param -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5c82c7a drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6166c48 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6f57e17 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa71ae22f drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa843606e drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac479303 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad392aab drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae4b6122 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf01e062 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb01b0963 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb064b469 drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb11c71a2 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2488407 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb24f0976 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5806292 __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5bff488 drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb86cb746 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9451c11 drm_dp_send_query_stream_enc_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9b5a17f drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba22db27 drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba2724cc drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba875f8e drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb91e2b5 drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd820363 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdd5a7e7 drm_dp_mst_atomic_enable_dsc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe4c8675 drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe94af76 drm_dp_get_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf8ad44c drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0ace996 drm_dp_pcon_frl_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4a90334 drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4c6e4b8 drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc661f21f __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc751a0e4 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc799e1b9 drm_simple_display_pipe_init -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 0xc8a476da drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9474976 drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9c2fb77 drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca6cfe22 drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca7fdace drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbdcb966 drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd42bab1 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd578289 drm_dp_read_sink_count_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd8d9dd0 drm_dp_set_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcda7ec15 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf1fd52c drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfbaa2bf drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0681447 __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd212d666 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd271b285 drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2775b96 drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd363c14c drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3f7ffc1 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4030f46 drm_gem_simple_kms_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7803e3a drm_dp_read_sink_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7dceac8 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7f3051f drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd81cc702 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd84dffea drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9132fc4 drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd99155af drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda3edc97 drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc16c634 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd05eecf drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0b71c73 __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe199a573 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1c770b4 drm_dp_pcon_pps_override_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe30ab3d3 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe37c2e0a drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe441c4c9 drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4b03534 drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe54bc6dc drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5c4c2b9 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5e606c4 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe69d44d0 drm_dp_pcon_hdmi_frl_link_error_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe805220d drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8577d51 drm_dp_lttpr_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe90b8fb4 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeaedbe23 drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec3888bf drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed66fb7f drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef9b894e drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefda3b46 drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3eef1c5 __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf472b8ab drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf56e3de3 drm_atomic_helper_async_commit -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 0xf6d83c8a drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf71e815a drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8be0bcd drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8ca8bb1 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc28d6b2 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd07772e drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd09f430 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe091d0e drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe2db862 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff6c5228 __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_panel_orientation_quirks 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x8427df42 drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x8ba20fd7 drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xc55e2a61 drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xd5e633e5 drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xf40f20a6 drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x09f6211d drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x12ae8bca drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1685aa6f drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1b50d93b drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3f3d1d6a drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5d0a23d5 drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6dfc1870 drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6fd3b074 drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6fd947bd drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8d92d218 drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9f88d230 drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb0835de9 drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xca2636a1 drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcbde937d drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xece85e42 drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf2d15b34 drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x04f0c764 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0785b452 ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1abb6d2c ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1dfe24e1 ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1fb0df88 ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x266e49f2 ttm_tt_destroy_common -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2bd96ff0 ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x35b820b0 ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3d155890 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4295b36b ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42b69c30 ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4719eb28 ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a2d87e4 ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x54143a98 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x59dc1405 ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x606abbd3 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6123fc63 ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x664a57d8 ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x68a2ea85 ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x699f9bb0 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6d0d4ab6 ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x775e252b ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x855bd8ef ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x87199f70 ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x88d93fda ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89064190 ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8bb643eb ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8eb23c2c ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8ffd3991 ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x908e7c17 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x957ae7e9 ttm_global_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x98d50c29 ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99b52b22 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9b6a2688 ttm_pool_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9bcfb476 ttm_range_man_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c1bfe91 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9e083aa7 ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9f405923 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5ac1f9d ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xabb58522 ttm_range_man_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb8ffc586 ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbb71560e ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbb86123b ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbbbc2b4f ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc24fa111 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4b29464 ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc603c14a ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc90787cd ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcb11ce8a ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd1890a07 ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe524a252 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf4384adf ttm_bo_vmap -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 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 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 0x0d09e5dc ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2cfdf1a7 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x32a28088 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x348d6881 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3efb5d30 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x43a9a279 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4b00c674 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6ecc538b ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7b3b4fb6 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x83c60f17 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8d1f262f ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbb29ae50 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcf59a9cd ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe362b88d ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf054f491 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x010f34c1 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01fe072f rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x038b4204 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04aca46a ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05bb625f rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06200168 ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06830b9a ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0751b63b roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07a79f4d rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09338ae0 rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09b7f795 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ca4bcec ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dc6e191 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ebcf3fe rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ec431aa rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f224fda rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f97bbb0 ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10e154ac ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12d5d866 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14f1e0dc rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16bdfbf7 ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16df3bc3 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17e271ab ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1af0a6b7 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c1af28b ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d834b9b ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e228387 rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f600d8b ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23a248e9 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23bb5f03 ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x242bc96d rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x259cee7a rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26966bdb rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2bcdcda2 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cb4d3d9 rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x308a84bd ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3459e412 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x355255f6 ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35bdd60f rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3717c0a4 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x377adfbe ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x378deb4f rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x385138c7 ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38ea6a80 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x390033a6 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a2ea78d rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a310e1c rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ae78e84 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3af44ff5 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c9948c6 rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cd75555 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d44164a ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3dde9818 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40357918 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4058c495 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42212bdb ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x432ec0af rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43538e72 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46630672 rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x467c93ae ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x469db37a rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x474c00f5 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47e3ee83 rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a7f4860 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b72a119 rdma_nl_unicast -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 0x500f52f8 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x508da56e ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50f5e91c ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50f9d3e5 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x519885bf rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51b5fcd6 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53aee77d ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x542a748d rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5686d66d ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57bd3f71 ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57dd93b3 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6171256f rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x617d29fe rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61dcea08 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62c03452 ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x635951df ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67e5b6ac ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67f297de ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ba4647d ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fada7c0 ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7048c90c rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71c3e326 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72062b23 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72e495fd rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x748425cb ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a7896b ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7815a545 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ccdc1fb rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d025960 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d125fe7 rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e177e00 ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e6b794d rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ebc86e4 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x824b529e rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x836583ff ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84c520cd ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8537f287 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86d0aa64 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86f744ab ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8703394e ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87a43981 rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b626b21 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c6abc1b ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8dccfcf1 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f54ef4a ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90d7739e ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90eda84e rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9189bde8 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91cfb9df rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93f6be0d ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9573ffe4 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96a05553 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96aa65fb ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x994027d9 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c3d62d1 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c9cec35 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0b80a9a rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0c40dad ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa23fa0c8 rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4da7b8c ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9c35c8a ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac5b7161 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xade3e764 _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf2c6f6b rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafb3bc13 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb04ce002 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb22138ff ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb279edf2 rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb367a1ee rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb394689b rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5b092c3 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6237045 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb94d54f8 rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9d20280 ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba4bfb1e ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd66b2ee __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc05390c7 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4727ca6 ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4dba8ec ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc55eed57 ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5b6cf9b ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca1f92fa ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca21d1be ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc50bf06 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd15216af rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2d21b79 rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd36f60ac rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd41fd49b rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd434f5a2 ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd456b762 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd58c66fd rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5f80f72 ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd62ef814 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7f200dc ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd826ebac ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8a3bfc7 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdaa2ea3b ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdaa92349 rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdcb30925 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xddda66d2 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1d48846 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe238fbe0 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3b83880 ib_destroy_qp_user -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 0xe6bc2c95 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7250fca ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe823b146 rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea131002 ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeaafdcfd ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb61b133 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed0a10ca rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedca1f70 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee8a9c82 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf04d113d ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2e4eddd rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf37dd5d6 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf388c05d rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf514aec9 ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf61ec1fc ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6687d6e ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7606d2e rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf82ed55b ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf96fc9de ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9d3e873 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb138583 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbc57f4e ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe608789 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe7310bc ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0b3a1105 uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2141982f ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x29f62b75 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x39b82133 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x41cae658 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x43a53e38 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4622427b ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x488f9808 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4b31711d _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4eea150b ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4fb319ff ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x53abfdcb uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x577ecaaf _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5c5a748e ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x64f5d60d flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x66887113 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6ee4dbc6 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7117ae46 ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x72242417 ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x78b8ec64 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7b41b4b6 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7cfdf2db ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8bf14def ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8eb18466 ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa25a7111 uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbe2c161b ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbf19f578 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc5f694a4 uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc662d192 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc6de1ff8 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xccc2c7c7 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd5153df9 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd5d9f2c5 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe7f884a5 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xed567980 ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfa324a75 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x05922417 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0d36178f iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3a25cbb5 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x59cb199b iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8263229e iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdd3fc847 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe0f8950e iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xecba1c3e iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x004dcee0 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x05df2cc0 rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0f68b7be rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x111ce2c2 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x15885127 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x18817116 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1d8a63cd rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x23abe539 __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x455f9364 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x462d659d rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4ad4452a rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4d329656 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x52131750 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5b828a57 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x66019f78 rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x66efb2c0 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x67bf006c rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6bf8f89b rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7eb199fc rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8fd64b79 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8ffe4f3a rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9a311aa2 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa792aa73 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaabd3bf6 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbafa57d8 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc8a3f6f1 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd1dde921 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdc82fa24 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xddf1fa29 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xde284d62 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeff5fed9 rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf95624c8 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfb09733e rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfb71079c rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x038545ec rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0d48282a rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x574c4382 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x6254f57b rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x83940298 rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb587945b rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xec94e40c rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x22aa85f4 rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x4d809da3 rtrs_rdma_dev_pd_init -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x87aa50fe 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 0x93e72816 rtrs_rdma_dev_pd_deinit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x99b7caed sockaddr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xc28750dd rtrs_addr_to_sockaddr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x70565ea4 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x7918f89c rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xa8ae58a5 rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xda3be904 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xe183b58f rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xf195d42e rtrs_srv_get_path_name -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 -EXPORT_SYMBOL drivers/md/dm-log 0xe1b92493 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x06e43803 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x0ce5b574 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x26813f82 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x373800d8 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x77f15c39 dm_exception_store_type_register -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 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 0x02669a49 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x042d2c96 mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x043124bd mlx5_lag_get_roce_netdev -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 0x04a90a91 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0efb861a mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f11eca6 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f7d2b09 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ff73189 mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x147bdbfc mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14eb6a8c mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15ee59f7 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ae9e9f9 mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b257091 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 0x1ebb4b15 mlx5_debug_qp_remove -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 0x2269a5b4 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2279af01 mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22bce683 __tracepoint_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23240279 mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x258ff2a6 mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25d48897 mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28a4f746 mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28e829e1 mlx5_core_destroy_tis -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 0x2b9a696a __traceiter_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bc4a5fe mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c7ddefc mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ce62bf4 mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3081485e mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31484244 mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32093b54 mlx5_core_query_vendor_id -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 0x33bca5df mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33c4c169 mlx5_lag_is_roce -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 0x36963d0d mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36dfe318 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x374496cb mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37bf2d3c mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x394c99a0 mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a73cbd9 mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b50782c mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3bf80d55 mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3db85081 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e11b0a3 __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e5ec2a5 mlx5_core_create_tis -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 0x42d46a30 mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42e45a6e mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45027ccc mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45c160ed mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45f410f2 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4890b69c mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a95228a mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ad9b0d8 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4eaabb08 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f269066 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50a39b06 mlx5_fpga_sbu_conn_sendmsg -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 0x567f4572 mlx5_mpfs_del_mac -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 0x5a75c9d3 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f57c574 mlx5_vector2eqn -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 0x65bfb41c __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6815cecf mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69ca4610 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b448238 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e77ed1c mlx5_add_flow_rules -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 0x727fb25a mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74b28ee6 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78efca02 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78f5d165 mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a74452d mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b078a70 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b359a09 __SCK__tp_func_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bbc902c __traceiter_mlx5_fs_del_fg -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 0x8037c467 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81036e74 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84065939 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x872e7c67 __tracepoint_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x886c34ff mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88bfadd4 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x892cb8ee mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bad909a mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c5142dd mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ec81b84 mlx5_comp_irq_get_affinity_mask -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 0x947a08e8 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x959119d6 mlx5_eq_get_eqe -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 0x96eb2c99 mlx5_fc_id -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 0x9ffc7329 mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa013ce21 __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa287a29f mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5c52585 mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa66f9638 mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9a98065 mlx5_core_create_mkey -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 0xad6815cd mlx5_rsc_dump_cmd_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadc737e2 mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf335351 __traceiter_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb04430ce mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2643818 mlx5_core_dealloc_pd -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 0xbb475e47 __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbea32152 mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf09f694 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc25c6ec4 mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc31fde58 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc464d913 mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc47c4f3d mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc756aabe mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7f457cb mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc815f6aa mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd9bad58 mlx5_eswitch_uplink_get_proto_dev -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 0xd2a120bc mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd619cda7 mlx5_core_destroy_mkey -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 0xd77f4aea mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd95e8d8c mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda778eb6 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbf2fedb mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc99c192 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2929332 mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe56fdeb2 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb4b171e mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9a8bcf __SCK__tp_func_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec3801c6 mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec434978 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1f4e412 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf61c38e6 mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf63b83e8 mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf691e9d5 mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6b3f4b4 mlx5_core_alloc_pd -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 0xf88a6e1a mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88d57b1 __SCK__tp_func_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9c57729 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc1c0210 mlx5_core_create_psv -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 0xfde3cdf3 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffaf68f3 mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x802f2063 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 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 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 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 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 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 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 0x4e2424ee mlxsw_reg_trans_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a099407 mlxsw_afa_block_append_qos_dscp -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 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 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 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 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 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 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 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 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 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 0x0b4889e0 mdio_device_remove -EXPORT_SYMBOL drivers/net/phy/libphy 0x0bae19be genphy_check_and_restart_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0x0c538e6d mdiobus_unregister -EXPORT_SYMBOL drivers/net/phy/libphy 0x0d0df8cf mdiobus_write -EXPORT_SYMBOL drivers/net/phy/libphy 0x0e38bbe7 phy_support_asym_pause -EXPORT_SYMBOL drivers/net/phy/libphy 0x166b4173 mdiobus_free -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 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 0x1b3ca320 mdiobus_is_registered_device -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 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 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 0x31d01c62 __mdiobus_write -EXPORT_SYMBOL drivers/net/phy/libphy 0x32aa993f mdio_find_bus -EXPORT_SYMBOL drivers/net/phy/libphy 0x333c161b mdiobus_write_nested -EXPORT_SYMBOL drivers/net/phy/libphy 0x340ae8a1 phy_connect_direct -EXPORT_SYMBOL drivers/net/phy/libphy 0x3736fdee phy_init_eee -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 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 0x4a81b773 phy_ethtool_get_link_ksettings -EXPORT_SYMBOL drivers/net/phy/libphy 0x4ab03ab6 phy_get_c45_ids -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 0x55918878 mdio_driver_register -EXPORT_SYMBOL drivers/net/phy/libphy 0x565d19d0 phy_resume -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 0x57a19da5 phy_validate_pause -EXPORT_SYMBOL drivers/net/phy/libphy 0x597127b8 phy_register_fixup_for_uid -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 0x64f0fe4b __genphy_config_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0x668d10d2 phy_set_sym_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 0x6bcef67a phy_modify_paged_changed -EXPORT_SYMBOL drivers/net/phy/libphy 0x6cec7cc4 phy_do_ioctl -EXPORT_SYMBOL drivers/net/phy/libphy 0x6ed1f65d __mdiobus_read -EXPORT_SYMBOL drivers/net/phy/libphy 0x75f59967 mdio_device_reset -EXPORT_SYMBOL drivers/net/phy/libphy 0x76e78665 mdiobus_get_phy -EXPORT_SYMBOL drivers/net/phy/libphy 0x79680a64 phy_start_aneg -EXPORT_SYMBOL drivers/net/phy/libphy 0x79e1a934 mdiobus_unregister_device -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 0x845cc68b mdiobus_read -EXPORT_SYMBOL drivers/net/phy/libphy 0x84782e46 phy_modify_paged -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 0x9e829378 __mdiobus_register -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 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 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 0xbdcb136a mdiobus_read_nested -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 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL drivers/net/phy/libphy 0xc6f94f19 mdiobus_register_device -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 0xd180c59b mdiobus_alloc_size -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 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 0xdec0972b mdio_bus_type -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 0xe7ba0077 phy_attached_info_irq -EXPORT_SYMBOL drivers/net/phy/libphy 0xea7aa6cd genphy_resume -EXPORT_SYMBOL drivers/net/phy/libphy 0xfb027615 mdiobus_scan -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/mdio_devres 0x6d62c985 __devm_mdiobus_register -EXPORT_SYMBOL drivers/net/phy/mdio_devres 0xdf86ff4a devm_mdiobus_alloc_size -EXPORT_SYMBOL drivers/net/team/team 0x36e5f6cc team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x48334b06 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x64ba4845 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x6517549f team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x87475217 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x99267e55 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0xd24c968b team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xfced0794 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 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 -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x1ca66bcf dasd_enable_device -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x1e8fe00c dasd_set_feature -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x3634647f dasd_reload_device -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x3f9e0f74 dasd_device_clear_timer -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x402fc244 dasd_schedule_requeue -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x48e3691d dasd_add_request_head -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x493ba318 dasd_default_erp_postaction -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x4b9c2bd9 dasd_log_sense_dbf -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x4fac630b dasd_sfree_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x5daaa81d dasd_block_clear_timer -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x693bf5df dasd_schedule_device_bh -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x77c1d6d9 dasd_smalloc_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x7c379db3 dasd_ffree_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x8383d2c2 dasd_int_handler -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x8cee10ad dasd_kick_device -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x8fd5ac40 dasd_start_IO -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x92d7cef2 dasd_sleep_on -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x94235ab8 dasd_sleep_on_immediatly -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x9dfa7446 dasd_path_create_kobj -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb0005dbc dasd_default_erp_action -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb4dcb5de dasd_sleep_on_queue -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb5f513f7 dasd_alloc_erp_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xbc0941d6 dasd_debug_area -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc134caac dasd_sleep_on_queue_interruptible -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc44d4ff2 dasd_free_erp_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc68add0e dasd_fmalloc_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xcdc36467 dasd_path_create_kobjects -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xcdf42135 dasd_device_set_timer -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xd0ec5146 dasd_sleep_on_interruptible -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xd65084ed dasd_diag_discipline_pointer -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xdbf7ea0c dasd_log_sense -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xdf0b5072 dasd_eer_write -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xe1d360b2 dasd_schedule_block_bh -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xe3a3e6c2 dasd_add_request_tail -EXPORT_SYMBOL drivers/s390/char/hmcdrv 0x08e57a2c hmcdrv_ftp_do -EXPORT_SYMBOL drivers/s390/char/hmcdrv 0x3198b5cb hmcdrv_ftp_startup -EXPORT_SYMBOL drivers/s390/char/hmcdrv 0x83a6e87f hmcdrv_ftp_probe -EXPORT_SYMBOL drivers/s390/char/hmcdrv 0xba68949c hmcdrv_ftp_shutdown -EXPORT_SYMBOL drivers/s390/char/tape 0x076b1e5c tape_cancel_io -EXPORT_SYMBOL drivers/s390/char/tape 0x07743b61 tape_std_assign -EXPORT_SYMBOL drivers/s390/char/tape 0x0b1edfe0 tape_alloc_request -EXPORT_SYMBOL drivers/s390/char/tape 0x0bdb14c7 tape_std_display -EXPORT_SYMBOL drivers/s390/char/tape 0x0fc81165 tape_std_mtfsfm -EXPORT_SYMBOL drivers/s390/char/tape 0x105346db tape_std_mtfsr -EXPORT_SYMBOL drivers/s390/char/tape 0x1248929b tape_std_read_backward -EXPORT_SYMBOL drivers/s390/char/tape 0x1844c1ea tape_std_mtweof -EXPORT_SYMBOL drivers/s390/char/tape 0x20bdc060 tape_med_state_set -EXPORT_SYMBOL drivers/s390/char/tape 0x234e6fe2 tape_std_read_block_id -EXPORT_SYMBOL drivers/s390/char/tape 0x2546c415 tape_state_verbose -EXPORT_SYMBOL drivers/s390/char/tape 0x275750c1 tape_std_mtreten -EXPORT_SYMBOL drivers/s390/char/tape 0x42f4a43a tape_std_mtload -EXPORT_SYMBOL drivers/s390/char/tape 0x431316e2 tape_get_device -EXPORT_SYMBOL drivers/s390/char/tape 0x47f798c0 tape_std_write_block -EXPORT_SYMBOL drivers/s390/char/tape 0x590524d9 tape_std_mtreset -EXPORT_SYMBOL drivers/s390/char/tape 0x61569ec5 tape_std_mtunload -EXPORT_SYMBOL drivers/s390/char/tape 0x660b574e tape_std_process_eov -EXPORT_SYMBOL drivers/s390/char/tape 0x66deb66c tape_op_verbose -EXPORT_SYMBOL drivers/s390/char/tape 0x6a223aac tape_std_mteom -EXPORT_SYMBOL drivers/s390/char/tape 0x6e79d222 tape_std_mtfsf -EXPORT_SYMBOL drivers/s390/char/tape 0x748fdbfe tape_generic_online -EXPORT_SYMBOL drivers/s390/char/tape 0x79add3ed tape_std_mtbsfm -EXPORT_SYMBOL drivers/s390/char/tape 0x7dd9cbe6 tape_mtop -EXPORT_SYMBOL drivers/s390/char/tape 0x8ce2b867 tape_std_mtcompression -EXPORT_SYMBOL drivers/s390/char/tape 0x8d91ba5d tape_std_mtnop -EXPORT_SYMBOL drivers/s390/char/tape 0x9247ce27 tape_std_mtoffl -EXPORT_SYMBOL drivers/s390/char/tape 0x94e1b0f4 tape_do_io_async -EXPORT_SYMBOL drivers/s390/char/tape 0x988274b0 tape_do_io -EXPORT_SYMBOL drivers/s390/char/tape 0x9e30efee tape_put_device -EXPORT_SYMBOL drivers/s390/char/tape 0xa9cd5676 tape_state_set -EXPORT_SYMBOL drivers/s390/char/tape 0xa9d05e9b tape_std_mtbsr -EXPORT_SYMBOL drivers/s390/char/tape 0xac690b29 tape_core_dbf -EXPORT_SYMBOL drivers/s390/char/tape 0xb5491187 tape_std_unassign -EXPORT_SYMBOL drivers/s390/char/tape 0xb79b1f48 tape_dump_sense_dbf -EXPORT_SYMBOL drivers/s390/char/tape 0xbbc60d2b tape_std_mtsetblk -EXPORT_SYMBOL drivers/s390/char/tape 0xc9fe13ca tape_std_read_block -EXPORT_SYMBOL drivers/s390/char/tape 0xd15b7d73 tape_generic_remove -EXPORT_SYMBOL drivers/s390/char/tape 0xd7faca62 tape_std_mtbsf -EXPORT_SYMBOL drivers/s390/char/tape 0xdb981ae0 tape_do_io_interruptible -EXPORT_SYMBOL drivers/s390/char/tape 0xea966ab0 tape_generic_probe -EXPORT_SYMBOL drivers/s390/char/tape 0xed1b9d3b tape_std_mterase -EXPORT_SYMBOL drivers/s390/char/tape 0xf9f0c3cd tape_free_request -EXPORT_SYMBOL drivers/s390/char/tape 0xfdd342ea tape_generic_offline -EXPORT_SYMBOL drivers/s390/char/tape 0xfde09561 tape_std_mtrew -EXPORT_SYMBOL drivers/s390/char/tape_34xx 0x3d61a91d tape_34xx_dbf -EXPORT_SYMBOL drivers/s390/char/tape_3590 0xf0bc5f4f tape_3590_dbf -EXPORT_SYMBOL drivers/s390/char/tape_class 0x9b4c65da register_tape_dev -EXPORT_SYMBOL drivers/s390/char/tape_class 0xd9607131 unregister_tape_dev -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x1d08ed65 ccwgroup_create_dev -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x35472939 dev_is_ccwgroup -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x6cb73980 ccwgroup_set_online -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x6ee2c7f3 ccwgroup_set_offline -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x9e1acdc3 ccwgroup_driver_unregister -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xe651209b ccwgroup_remove_ccwdev -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xf4f50db6 ccwgroup_driver_register -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xfb6fa047 ccwgroup_probe_ccwdev -EXPORT_SYMBOL drivers/s390/cio/qdio 0x15416a2c qdio_stop_irq -EXPORT_SYMBOL drivers/s390/cio/qdio 0xde7b4ab9 qdio_start_irq -EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0x00cbfcde __traceiter_vfio_ccw_chp_event -EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0x7acf9c1f __SCK__tp_func_vfio_ccw_fsm_io_request -EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0x87db7cac __traceiter_vfio_ccw_fsm_event -EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0x9cc9b339 __SCK__tp_func_vfio_ccw_fsm_event -EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0xab59e724 __tracepoint_vfio_ccw_fsm_async_request -EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0xb3cb802b __SCK__tp_func_vfio_ccw_chp_event -EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0xc4df2d80 __traceiter_vfio_ccw_fsm_io_request -EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0xc71044f9 __SCK__tp_func_vfio_ccw_fsm_async_request -EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0xc8156451 __tracepoint_vfio_ccw_chp_event -EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0xdb6c0a19 __tracepoint_vfio_ccw_fsm_io_request -EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0xe7175743 __tracepoint_vfio_ccw_fsm_event -EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0xeeaa8b65 __traceiter_vfio_ccw_fsm_async_request -EXPORT_SYMBOL drivers/s390/crypto/pkey 0xa2396123 pkey_keyblob2pkey -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x0327b454 zcrypt_send_cprb -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x0aaeaa9b zcrypt_card_unregister -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x0ebc8b2f __SCK__tp_func_s390_zcrypt_rep -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x1360e3df cca_findcard2 -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x17a7ba6e __SCK__tp_func_s390_zcrypt_req -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x20a6cee7 cca_get_info -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x274ee02a ep11_findcard2 -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x28fa47d3 zcrypt_queue_put -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x2dc30fe9 cca_findcard -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 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 -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x9032dd84 zcrypt_device_status_mask_ext -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x9992a66f cca_clr2seckey -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xa502c213 zcrypt_wait_api_operational -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xa54284be zcrypt_device_status_ext -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xb0b43692 zcrypt_queue_alloc -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xb93625c0 zcrypt_card_put -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xbc82cd3e zcrypt_queue_unregister -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc0c976b6 ep11_get_domain_info -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc20af440 cca_query_crypto_facility -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc23843b6 ep11_genaeskey -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc3d7ba66 zcrypt_card_free -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc3ee9fa0 cca_cipher2protkey -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc79ae663 __tracepoint_s390_zcrypt_rep -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xdb0adadb ep11_kblob2protkey -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xde81d722 __tracepoint_s390_zcrypt_req -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xdef8bea3 ep11_check_aes_key_with_hdr -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xe0d2e366 cca_check_sececckeytoken -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xe2647184 zcrypt_queue_get -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xe7fe16e6 zcrypt_card_get -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xea54d73e cca_clr2cipherkey -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xec4ef2c3 ep11_check_aes_key -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xec693119 cca_ecc2protkey -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xee077284 ep11_get_card_info -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xee0fb8ef zcrypt_card_register -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xee130824 zcrypt_card_alloc -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xfa128312 zcrypt_send_ep11_cprb -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xfd19ed44 zcrypt_queue_register -EXPORT_SYMBOL drivers/s390/net/ctcm 0x40b3051a ctc_mpc_dealloc_ch -EXPORT_SYMBOL drivers/s390/net/ctcm 0x56f42138 ctc_mpc_alloc_channel -EXPORT_SYMBOL drivers/s390/net/ctcm 0x812fa936 ctc_mpc_establish_connectivity -EXPORT_SYMBOL drivers/s390/net/ctcm 0xf5440dc6 ctc_mpc_flow_control -EXPORT_SYMBOL drivers/s390/net/fsm 0x312e1b73 init_fsm -EXPORT_SYMBOL drivers/s390/net/fsm 0x331bbed3 kfree_fsm -EXPORT_SYMBOL drivers/s390/net/fsm 0x92d7bc3b fsm_modtimer -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 0x05f56358 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0b9b202a fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x11ce8844 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x37e685f7 fcoe_ctlr_destroy -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 0x81bb92d8 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa3a37d2c fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc4e47f10 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc7e3d6c5 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdf811c90 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06a1e73f fc_frame_alloc_fill -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 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 0x22b90986 fc_exch_mgr_del -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 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 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 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 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 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 0xb0ddd5a1 fc_rport_flush_queue -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 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 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 0x4a8e3d34 try_test_sas_gpio_gp_bit -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 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 0x5154c83e fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x56d9ff71 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x62d9f314 fc_block_rport -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 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 0x0aff87a7 sas_port_free -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 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 0xca66af96 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd5c7cf03 sas_port_delete -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 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 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 0x0224ec50 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x06ec2317 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x19b88c3b iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x237f1994 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x299297ef iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2e5a6c18 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40e0fce4 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4af322d0 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4b3c1129 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4b8d7692 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4c58541f iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4e9d931f iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5c3e1a6e iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5fed9b50 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x659836bc iscsit_release_cmd -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 0x70adf020 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x722cec9e iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x738c772f iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7b570076 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x828160ea iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ad70b0b iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8f5f30c0 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x908ab0d8 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x90e9f647 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x968b8a1c iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x994e99b3 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d113ee1 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa0dcc629 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa0ed2a44 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb0ded72e iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb2fc84bc iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbce5a12b iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc1ab0392 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc2cb23bd iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcd988844 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd9c799b6 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdd8af23b iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe1adb7c7 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe33edcb4 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe362ec4d iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf1f9698e iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf569ec66 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/target_core_mod 0x011ac506 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x022dc1a5 spc_parse_cdb -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 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x08b21ba3 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x08e3528c target_put_sess_cmd -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 0x1a2c1879 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x1c0d8297 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x1cebd57d core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x24d03a58 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x29ecb893 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x347e1712 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x39c03b4b target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3f551434 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x45229e49 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x4721d8bb target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x4a8e2de7 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x51cbb346 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x5a6af146 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x5e555e2b transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x64822c2e transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x64d22f9f core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x6f4c1950 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x704cb843 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x7323adc3 target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x756c2c09 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x771103a1 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x78d8e002 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x8123bc7d __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x81ab51e3 transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x82738b20 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x82d2bffd core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x86e58681 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x8703df87 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x88645fc5 target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x899a357a core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x8a27e478 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x92ee4d1f target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x963dbeda core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x9732b987 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x9bcf3d9d target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xa03af371 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0xa09224d8 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xa2bc3005 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xa9b55f4e transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xa9d0ca77 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xae105cc5 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xafe0358f target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xb81e5de0 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xbae0d9a3 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xbb013800 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xbbc1f680 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xbfbbf5bc transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc0f57eb0 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0xc117ec9e target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0xc240c434 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xc578ba2d sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0xc62c6100 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc6f9e9f4 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0xc74fba6f target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xca2bca2f transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xca3214d2 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xcff1c6fd target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0xd7c939a5 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xdde34f40 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xe38c555b target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xe4c541ee spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xe8e4177a core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xec3eb727 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xfc4a5e6b transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xfc9204fd target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xfcdafc11 spc_emulate_evpd_83 -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 -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x80b9f2ff uart_unregister_driver -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x8f41f98c uart_get_baud_rate -EXPORT_SYMBOL drivers/tty/serial/serial_core 0x9528eeba uart_get_divisor -EXPORT_SYMBOL drivers/tty/serial/serial_core 0xc1af9c69 uart_suspend_port -EXPORT_SYMBOL drivers/tty/serial/serial_core 0xcf35bdcd uart_register_driver -EXPORT_SYMBOL drivers/tty/serial/serial_core 0xd63086d0 uart_update_timeout -EXPORT_SYMBOL drivers/tty/serial/serial_core 0xed5b8cd1 uart_add_one_port -EXPORT_SYMBOL drivers/tty/serial/serial_core 0xff83258d uart_remove_one_port -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x1a5d6fd3 mdev_register_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x32520144 mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x3856e5e9 mtype_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x6411d620 mdev_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x66d39d2b mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x6d018ba7 mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7425810c mdev_unregister_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf7613101 mtype_get_parent_dev -EXPORT_SYMBOL drivers/vfio/vfio 0x33674d67 vfio_unregister_notifier -EXPORT_SYMBOL drivers/vfio/vfio 0x4232a0c3 vfio_info_cap_shift -EXPORT_SYMBOL drivers/vfio/vfio 0x48a81d7e vfio_group_pin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0x7834defd vfio_group_unpin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0x852d4405 vfio_unpin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0xa0174901 vfio_dma_rw -EXPORT_SYMBOL drivers/vfio/vfio 0xaf25ec54 vfio_register_notifier -EXPORT_SYMBOL drivers/vfio/vfio 0xaf8a4a7f vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL drivers/vfio/vfio 0xf3411eb8 vfio_info_add_capability -EXPORT_SYMBOL drivers/vfio/vfio 0xf655cfdb vfio_pin_pages -EXPORT_SYMBOL drivers/vhost/vhost 0x8830ec3d vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vhost 0xb04c2a21 vhost_chr_write_iter -EXPORT_SYMBOL drivers/video/fbdev/core/cfbcopyarea 0x78d890c3 cfb_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/cfbfillrect 0xd1b69035 cfb_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/cfbimgblt 0x7c329df8 cfb_imageblit -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xc134c6b8 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x685ac64e sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x9b8907e3 sys_imageblit -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x36e730a1 virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xe4bbdf51 is_virtio_dma_buf -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xf93c0055 virtio_dma_buf_attach -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xf9bf1b77 virtio_dma_buf_export -EXPORT_SYMBOL fs/fscache/fscache 0x00d2d5ea __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x01e5ad88 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x03ff4acc __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x0773f3f3 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0x0b7d3024 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x26b34d72 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x2809e330 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x28b82f00 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x2a1c34d0 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x2c18d4f1 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x2d00ddd9 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x2e42d281 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x43ddb7a8 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x45ce0a0f fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x4ed3d1d6 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x51f9339a fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x6208d99e __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x64a9bd56 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x6febfda1 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x7051860d fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x755a9c97 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x7a512951 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x7bcf334d __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x7e98509d __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x89073fc8 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x8e12e8be __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x991525fe __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xaec24cb3 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0xb45ded28 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xbb5f63c5 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0xc09e79b8 __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0xc6f90478 fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0xd7f4806b __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xdf46d8b2 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xe2a18aad fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xe51a048b __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xe8767373 __fscache_begin_read_operation -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 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 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 -EXPORT_SYMBOL fs/quota/quota_tree 0x3933dca3 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x8998fc89 qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0x8e844274 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xc80b7d9b qtree_write_dquot -EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table -EXPORT_SYMBOL lib/crc-itu-t 0xdf59602c crc_itu_t -EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table -EXPORT_SYMBOL lib/crc7 0xc440541c crc7_be -EXPORT_SYMBOL lib/crc8 0x75d9109e crc8 -EXPORT_SYMBOL lib/crc8 0xaa8106bc crc8_populate_msb -EXPORT_SYMBOL lib/crc8 0xc3cd034d crc8_populate_lsb -EXPORT_SYMBOL lib/crypto/libchacha 0xcec122d7 chacha_crypt_generic -EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x161ec81e chacha20poly1305_decrypt -EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x35142bf2 xchacha20poly1305_encrypt -EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x637307c6 chacha20poly1305_encrypt -EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xa3883e62 chacha20poly1305_encrypt_sg_inplace -EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xb9f848ed xchacha20poly1305_decrypt -EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xff3141e0 chacha20poly1305_decrypt_sg_inplace -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 0x0f6f0fdb lc_index_of -EXPORT_SYMBOL lib/lru_cache 0x17c6b1e1 lc_del -EXPORT_SYMBOL lib/lru_cache 0x45b1556e lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0x52857213 lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0x531368c5 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0x6f1d0c3b lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0x7869961b lc_set -EXPORT_SYMBOL lib/lru_cache 0x79c87149 lc_get -EXPORT_SYMBOL lib/lru_cache 0x88713f97 lc_create -EXPORT_SYMBOL lib/lru_cache 0x955d4873 lc_committed -EXPORT_SYMBOL lib/lru_cache 0xbbc7a78d lc_put -EXPORT_SYMBOL lib/lru_cache 0xc1a43316 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0xc3a4ca05 lc_destroy -EXPORT_SYMBOL lib/lru_cache 0xe4a98afa lc_try_get -EXPORT_SYMBOL lib/lru_cache 0xebae3022 lc_reset -EXPORT_SYMBOL lib/lru_cache 0xff3f1db8 lc_find -EXPORT_SYMBOL lib/lru_cache 0xffb12208 lc_is_used -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 0x0f3dcf29 LZ4_loadDictHC -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x7f7bbb7e LZ4_saveDictHC -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC -EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xe06ae6d6 LZ4_compress_HC_continue -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 0x38e157a7 objagg_create -EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put -EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put -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 0x00441ef6 ZSTD_compressStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x040c92d1 ZSTD_CCtxWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0x065b14f3 ZSTD_getBlockSizeMax -EXPORT_SYMBOL lib/zstd/zstd_compress 0x0b9a9379 ZSTD_initCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0x17823f99 ZSTD_compress_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x1ffb27f1 ZSTD_initCStream_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x2411b496 ZSTD_CStreamOutSize -EXPORT_SYMBOL lib/zstd/zstd_compress 0x273a39e7 ZSTD_compressCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0x35adbdc6 ZSTD_compress_usingDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x48bfae8e ZSTD_flushStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x50d289a3 ZSTD_resetCStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x515ab572 ZSTD_compressBegin -EXPORT_SYMBOL lib/zstd/zstd_compress 0x57b1012f ZSTD_compressBegin_usingDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0x66a8b7ab ZSTD_CStreamInSize -EXPORT_SYMBOL lib/zstd/zstd_compress 0x785d10c3 ZSTD_endStream -EXPORT_SYMBOL lib/zstd/zstd_compress 0x84e61bae ZSTD_CDictWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0x8f2f596d ZSTD_compressBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0x97b3b7ca ZSTD_compressEnd -EXPORT_SYMBOL lib/zstd/zstd_compress 0xa4c8127c ZSTD_maxCLevel -EXPORT_SYMBOL lib/zstd/zstd_compress 0xa88b0af5 ZSTD_compressBegin_usingCDict -EXPORT_SYMBOL lib/zstd/zstd_compress 0xc2d4374c ZSTD_CStreamWorkspaceBound -EXPORT_SYMBOL lib/zstd/zstd_compress 0xc83660bd ZSTD_getParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0xd1ad98e7 ZSTD_compressContinue -EXPORT_SYMBOL lib/zstd/zstd_compress 0xd967de6d ZSTD_getCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0xdc157266 ZSTD_adjustCParams -EXPORT_SYMBOL lib/zstd/zstd_compress 0xdfb596f8 ZSTD_copyCCtx -EXPORT_SYMBOL lib/zstd/zstd_compress 0xe02d4179 ZSTD_initCStream -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 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 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 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 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 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 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 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 0xd04cc66a p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -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 0xec8cae29 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0xefae685f p9_client_read_once -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x206c437d ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3d2720fc ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x405047b0 ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x6e0e7af8 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8643fde6 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb0e7f801 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 0x060289c1 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x06456b25 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x0ce74839 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0x0e63993e ceph_con_keepalive -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 0x17506908 ceph_msg_data_add_pagelist -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 0x2087719e ceph_oid_copy -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 0x32dc3d08 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x3524c308 ceph_find_or_create_string -EXPORT_SYMBOL net/ceph/libceph 0x3746c25c ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x38a8b8fe ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 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 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x4ddb1377 osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x50674d87 ceph_con_open -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 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 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5b206afb ceph_con_init -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 0x610bd9f1 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x621057ad __ceph_auth_get_authorizer -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 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x70778fbb ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x73838d08 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x748b9c04 ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0x7781088b osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x7790a91c ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0x7d6f4f1c ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x7fe5e592 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x8111e973 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x81d82bea ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0x8375650f ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0x85a2de51 ceph_monc_renew_subs -EXPORT_SYMBOL net/ceph/libceph 0x86fba49b ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x923fdd93 ceph_copy_user_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 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 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 0xa467a619 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xa57a5188 ceph_auth_invalidate_authorizer -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 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xad814baf ceph_monc_do_statfs -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 0xb54676fa ceph_msg_type_name -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 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 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 0xca80437b ceph_extent_to_file -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 0xce362557 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0xcffb78a0 ceph_auth_handle_bad_authorizer -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 0xdeddd368 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf -EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xe0f075e5 ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0xe3f70c1a ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0xe52bc893 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0xe5c977f1 ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0xe7d2f801 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0xe85108a4 ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0xed4374be ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string -EXPORT_SYMBOL net/ceph/libceph 0xeec94c5e ceph_compare_options -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 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 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 0x81476b29 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x838db936 dccp_req_err -EXPORT_SYMBOL net/ipv4/fou 0x32201296 __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0x3899cd11 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x544fa97f __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xdef70806 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0xf6486ce8 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xaca24cf3 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xaf33b998 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc106dac8 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf0ea2990 ip_tunnel_encap_add_ops -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 0x0e8dd372 ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xad1bd2d5 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd05108ea ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xecd4ea04 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/tunnel4 0x4eb021cd xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0x9fc26ab5 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xa627ed04 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0b34dbbf ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x263a24c6 ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3334e81e ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3865f708 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5a090555 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x63884e82 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x93187cb6 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa08cd342 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc1e0e57f ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x05896a9a ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x0f2bf9eb ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8803f0fa ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd5a37be6 ip6t_do_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x57065bbc xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0x8c535918 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x52762761 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x63b8d48b 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/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 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 0x007cca2f ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x020610c3 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x609b33fc ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x68c8f25c unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x77aa1c69 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x795c04f1 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7b47557c ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8a0bbf65 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x98fcceee ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa2cab0b6 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa7b945fb register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xacf3a551 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb8cb295a ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb936317d ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe582e054 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3f9bf307 nf_ct_ext_add -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x73cdf35d __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xa60daf42 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xd463c61e nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xfa3a7807 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy -EXPORT_SYMBOL net/netfilter/x_tables 0x0c3cc2c0 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x1d6737e2 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x37822ca0 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x39b4d86f xt_find_table -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 0x52770ecd xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x5b0e5fb3 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xb1bfe6b7 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0xb6d9eedc xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xcbb6137f 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 0xe9e87314 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/rxrpc/rxrpc 0x015a9574 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x12f3b992 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1a75fadb rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1aee9ed6 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x2f212f40 rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x31ea2f59 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4cb92e2d rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5a7271ff rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6ce2b5c6 rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0x7c399349 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x849f9064 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xac3f2c18 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xbb5f7e25 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xca79346a key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd7fa64f9 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0xdf59bd69 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe1f8642b rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe8c1b3b2 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/sctp/sctp 0xed63daea sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x73f423f2 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xadc3981c gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xc4788d7d gss_mech_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0x54f362e1 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0x908a9a4d xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe2a60f09 get_srcport -EXPORT_SYMBOL net/sunrpc/sunrpc 0xf73239b9 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 0xd0c87288 tls_get_record -EXPORT_SYMBOL vmlinux 0x0004a9c6 dev_addr_init -EXPORT_SYMBOL vmlinux 0x0008dc08 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x00317a78 reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0x00322f07 security_path_rename -EXPORT_SYMBOL vmlinux 0x005eca05 reset_guest_reference_bit -EXPORT_SYMBOL vmlinux 0x00728cb2 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x009884b0 dev_get_by_name -EXPORT_SYMBOL vmlinux 0x009e49e4 dev_uc_sync -EXPORT_SYMBOL vmlinux 0x00a523da rtnl_create_link -EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00ec4412 ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0x00f4a223 _ebc_toupper -EXPORT_SYMBOL vmlinux 0x00fe4ccd padata_do_parallel -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -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 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 0x0199c3bd ethtool_intersect_link_masks -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 0x01e6e91c __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x01f5f095 mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x020d2c30 mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x0220450b dup_iter -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -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 0x02f034a1 xz_dec_run -EXPORT_SYMBOL vmlinux 0x02f4d77f __SCK__tp_func_s390_cio_tpi -EXPORT_SYMBOL vmlinux 0x02f81c58 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x031e41e0 xfrm6_rcv_encap -EXPORT_SYMBOL vmlinux 0x032a4260 scsi_remove_host -EXPORT_SYMBOL vmlinux 0x033071a6 rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x034a7afe idr_destroy -EXPORT_SYMBOL vmlinux 0x03511a90 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x035b9cb2 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x03690bf3 unlock_page_memcg -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x038762c8 idr_get_next_ul -EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x039ebf78 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x03a088af netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x03d2240c add_virt_timer_periodic -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x0400706c iov_iter_revert -EXPORT_SYMBOL vmlinux 0x040844cc inode_init_always -EXPORT_SYMBOL vmlinux 0x042863cf nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x04444662 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0x0446c1c3 get_fs_type -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x044ab34d napi_consume_skb -EXPORT_SYMBOL vmlinux 0x044f286f dm_put_device -EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu -EXPORT_SYMBOL vmlinux 0x047f491a simple_recursive_removal -EXPORT_SYMBOL vmlinux 0x04887727 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x048b65b4 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x049c5a92 udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x04a30ef1 dump_page -EXPORT_SYMBOL vmlinux 0x04cba1c3 unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x04e5b9e2 iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x04e968d7 netpoll_poll_dev -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 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x05471212 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x056db831 sk_ns_capable -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 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 0x05deae98 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x05ea52a5 ccw_device_clear -EXPORT_SYMBOL vmlinux 0x05efe275 tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0x06142ecd path_put -EXPORT_SYMBOL vmlinux 0x061651be strcat -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 0x063a6b31 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0x065d3d75 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x065e9d96 single_open -EXPORT_SYMBOL vmlinux 0x06618ef5 device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x06764dd2 input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0x069ab3ae skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x06bd9a7c __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x06dc6d66 unregister_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x06e30f7b ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x07297511 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x0736c3ff fault_in_safe_writeable -EXPORT_SYMBOL vmlinux 0x07654b9a cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x0770b860 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x078e6dd0 __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x079615a4 tcp_check_req -EXPORT_SYMBOL vmlinux 0x079e4984 udplite_prot -EXPORT_SYMBOL vmlinux 0x07a472b3 netif_device_detach -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07af96c7 simple_pin_fs -EXPORT_SYMBOL vmlinux 0x07b09a11 dcb_getapp -EXPORT_SYMBOL vmlinux 0x07bf9542 pin_user_pages_locked -EXPORT_SYMBOL vmlinux 0x07cbeb29 sock_create -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07d37cc7 fs_param_is_blob -EXPORT_SYMBOL vmlinux 0x07e57069 register_netdev -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 0x0809816f init_task -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x0835c264 from_kuid -EXPORT_SYMBOL vmlinux 0x08456553 match_string -EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x088c96f6 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x089708f6 security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0x0899ea58 seq_open -EXPORT_SYMBOL vmlinux 0x08aa41bc tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x08ad8521 register_adapter_interrupt -EXPORT_SYMBOL vmlinux 0x08b582bd tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0x08d790ba set_guest_storage_key -EXPORT_SYMBOL vmlinux 0x08dafb0a dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x08ea90ba icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0x09131c69 mr_table_dump -EXPORT_SYMBOL vmlinux 0x09202968 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x0920b173 lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x09494e05 dev_close -EXPORT_SYMBOL vmlinux 0x094e96aa has_capability -EXPORT_SYMBOL vmlinux 0x094effa5 __iucv_message_receive -EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x097cc63e unregister_key_type -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x099656ae pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x09bbba26 __ip_mc_dec_group -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 0x09d7eff7 eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0x09ddf4fd __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0a10c70f sget -EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key -EXPORT_SYMBOL vmlinux 0x0a1e9bee security_binder_transaction -EXPORT_SYMBOL vmlinux 0x0a24eb3d pci_disable_msi -EXPORT_SYMBOL vmlinux 0x0a3b0d94 raw_copy_from_user -EXPORT_SYMBOL vmlinux 0x0a4172bf arp_create -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0aacd352 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x0ade3eb9 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x0ae1487a audit_log_start -EXPORT_SYMBOL vmlinux 0x0ae60c27 utf8_normalize -EXPORT_SYMBOL vmlinux 0x0aea8fe6 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x0aeee170 dump_emit -EXPORT_SYMBOL vmlinux 0x0af70590 __napi_schedule -EXPORT_SYMBOL vmlinux 0x0b013cd0 netif_rx_ni -EXPORT_SYMBOL vmlinux 0x0b1770ff __dev_set_mtu -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b2ced94 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x0b4fffdf ap_queue_init_state -EXPORT_SYMBOL vmlinux 0x0b603ad0 __ClearPageMovable -EXPORT_SYMBOL vmlinux 0x0b6a1aef xfrm_trans_queue_net -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b7b260e iunique -EXPORT_SYMBOL vmlinux 0x0b903cc9 dev_add_pack -EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bc518cc rt_dst_alloc -EXPORT_SYMBOL vmlinux 0x0be7865a xfrm_register_km -EXPORT_SYMBOL vmlinux 0x0bf358e6 fb_pan_display -EXPORT_SYMBOL vmlinux 0x0c11cb7a inet_frags_init -EXPORT_SYMBOL vmlinux 0x0c17a68e zlib_dfltcc_support -EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c2a6b23 fc_mount -EXPORT_SYMBOL vmlinux 0x0c333a7f radix_tree_insert -EXPORT_SYMBOL vmlinux 0x0c6ccf20 s390_isolate_bp -EXPORT_SYMBOL vmlinux 0x0c7cf7c6 zero_page_mask -EXPORT_SYMBOL vmlinux 0x0c8a431f debug_hex_ascii_view -EXPORT_SYMBOL vmlinux 0x0c904c5b mempool_exit -EXPORT_SYMBOL vmlinux 0x0c948e62 secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x0cb7346e udp_skb_destructor -EXPORT_SYMBOL vmlinux 0x0cc0f4c5 __genradix_prealloc -EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x0ceaaead dev_activate -EXPORT_SYMBOL vmlinux 0x0cfcf687 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d233d65 _dev_notice -EXPORT_SYMBOL vmlinux 0x0d31eaaa input_set_capability -EXPORT_SYMBOL vmlinux 0x0d384746 alloc_etherdev_mqs -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 0x0d61f9c8 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x0d6fe393 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x0d78440a pci_iomap -EXPORT_SYMBOL vmlinux 0x0d7ac1ac write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x0dcddd88 bioset_exit -EXPORT_SYMBOL vmlinux 0x0ddf19ee inet_protos -EXPORT_SYMBOL vmlinux 0x0de9777b __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x0df512d9 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x0df70789 load_nls -EXPORT_SYMBOL vmlinux 0x0dfa838f md_handle_request -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 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 0x0e7817d7 skb_find_text -EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill -EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init -EXPORT_SYMBOL vmlinux 0x0ea763c3 sclp_sync_wait -EXPORT_SYMBOL vmlinux 0x0eab56fa __kfifo_max_r -EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint -EXPORT_SYMBOL vmlinux 0x0ebeccf6 xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x0ed24b86 __sk_mem_schedule -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 0x0f1ad8e2 seq_list_start_rcu -EXPORT_SYMBOL vmlinux 0x0f282f44 vm_iomap_memory -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 0x0f5d3efa tcp_mtu_to_mss -EXPORT_SYMBOL vmlinux 0x0f70d0ec flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x0f74d703 eth_platform_get_mac_address -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 0x0fa14d72 reuseport_has_conns_set -EXPORT_SYMBOL vmlinux 0x0fa8847b timestamp_truncate -EXPORT_SYMBOL vmlinux 0x0fb2109f vfs_iter_read -EXPORT_SYMBOL vmlinux 0x0fb22d98 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fb4a31f _copy_to_iter -EXPORT_SYMBOL vmlinux 0x0fbc35c5 sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x0fbe3012 param_array_ops -EXPORT_SYMBOL vmlinux 0x0fc046a4 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x0fc83812 xsk_tx_peek_release_desc_batch -EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0ff8e38b flush_signals -EXPORT_SYMBOL vmlinux 0x0ff9fcbb lock_rename -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 0x10098e71 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x10112f05 ZSTD_DStreamInSize -EXPORT_SYMBOL vmlinux 0x10155d2b wake_up_process -EXPORT_SYMBOL vmlinux 0x102f4d43 __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x1033c028 mini_qdisc_pair_swap -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 0x105549ba netif_carrier_on -EXPORT_SYMBOL vmlinux 0x105ad8e9 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x1071c3df get_watch_queue -EXPORT_SYMBOL vmlinux 0x10776fb9 xa_extract -EXPORT_SYMBOL vmlinux 0x1079e55f ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0x107b1f47 qdisc_reset -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 0x10bba43a fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x10ca99ef ip_route_me_harder -EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x1114da4a call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x112121f7 __traceiter_s390_cio_chsc -EXPORT_SYMBOL vmlinux 0x112de19d jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0x1133bf70 ip6_frag_init -EXPORT_SYMBOL vmlinux 0x114a07be __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x11b702f1 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x11c7d7a0 request_firmware -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 0x11f0f083 kernel_cpumcf_avail -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x1222b0f6 inet_accept -EXPORT_SYMBOL vmlinux 0x12266197 ___pskb_trim -EXPORT_SYMBOL vmlinux 0x12276a4f skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0x12320a5d ccw_driver_register -EXPORT_SYMBOL vmlinux 0x1239fc2d sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -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 0x126e646f scm_detach_fds -EXPORT_SYMBOL vmlinux 0x1283c813 from_kgid -EXPORT_SYMBOL vmlinux 0x12a23078 register_cdrom -EXPORT_SYMBOL vmlinux 0x12b75f9b kset_unregister -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 0x12f8efb8 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x12fe638d diag_stat_inc_norecursion -EXPORT_SYMBOL vmlinux 0x12ffce8d udp_seq_next -EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x133d31b1 alloc_fcdev -EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x135308e4 ip_tunnel_header_ops -EXPORT_SYMBOL vmlinux 0x135c9e54 sock_set_keepalive -EXPORT_SYMBOL vmlinux 0x136e39bf ccw_device_halt -EXPORT_SYMBOL vmlinux 0x13b2ff13 dcache_readdir -EXPORT_SYMBOL vmlinux 0x13bd4907 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x13c53d1c iptun_encaps -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 0x13e22a5e pci_dev_put -EXPORT_SYMBOL vmlinux 0x1421f268 sock_wake_async -EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node -EXPORT_SYMBOL vmlinux 0x145610aa from_kuid_munged -EXPORT_SYMBOL vmlinux 0x1456b0d3 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc -EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x14765eb6 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x14789bad ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x14b8dfd1 netpoll_send_skb -EXPORT_SYMBOL vmlinux 0x14c5e5b3 segment_warning -EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14cacc44 vfs_mknod -EXPORT_SYMBOL vmlinux 0x14ced76e nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x14d8d7fa key_task_permission -EXPORT_SYMBOL vmlinux 0x14e68047 ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0x150983e1 ZSTD_DStreamOutSize -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 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 0x159af946 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x15ac2de2 skb_pull -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 0x15d8072d pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0x15d85a57 down_trylock -EXPORT_SYMBOL vmlinux 0x15e50bab input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x15fb7511 netdev_change_features -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 0x162a1fc0 inet6_del_offload -EXPORT_SYMBOL vmlinux 0x1630a642 kbd_ascebc -EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const -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 0x16411a44 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x164475f8 __mmap_lock_do_trace_acquire_returned -EXPORT_SYMBOL vmlinux 0x165d15e2 down_interruptible -EXPORT_SYMBOL vmlinux 0x167f67c9 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x16a60a12 pcie_ptm_enabled -EXPORT_SYMBOL vmlinux 0x16d05e22 register_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x16de90ce mr_table_alloc -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16f73516 configfs_undepend_item -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 0x17179917 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x171d718d vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0x1737385f md_flush_request -EXPORT_SYMBOL vmlinux 0x17401b5f vlan_vid_add -EXPORT_SYMBOL vmlinux 0x174e0ad9 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x17845ebe genl_unregister_family -EXPORT_SYMBOL vmlinux 0x17916288 try_to_release_page -EXPORT_SYMBOL vmlinux 0x1796a48f dev_get_flags -EXPORT_SYMBOL vmlinux 0x17b40c31 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x17c0aaeb jbd2_fc_get_buf -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 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x184cbabe xsk_tx_peek_desc -EXPORT_SYMBOL vmlinux 0x1858fcc3 scsi_device_get -EXPORT_SYMBOL vmlinux 0x1887f57a netdev_printk -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -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 0x18df6639 __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0x18e46eb7 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18efde29 register_console -EXPORT_SYMBOL vmlinux 0x18f76a51 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x1908cee1 get_unmapped_area -EXPORT_SYMBOL vmlinux 0x191df9a1 sk_alloc -EXPORT_SYMBOL vmlinux 0x1927005b sg_miter_stop -EXPORT_SYMBOL vmlinux 0x192b5223 file_path -EXPORT_SYMBOL vmlinux 0x1944a87d __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0x19640641 mount_nodev -EXPORT_SYMBOL vmlinux 0x19723eb0 pci_read_config_byte -EXPORT_SYMBOL vmlinux 0x197ad7a1 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x1983a7ab inet6_offloads -EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19c59fb1 inet_sendpage -EXPORT_SYMBOL vmlinux 0x19e4688d param_ops_ushort -EXPORT_SYMBOL vmlinux 0x19e53c98 seq_path -EXPORT_SYMBOL vmlinux 0x1a03888a inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x1a08d2ba VMALLOC_START -EXPORT_SYMBOL vmlinux 0x1a12c1ce bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0x1a3397fa __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x1a3c2051 fd_install -EXPORT_SYMBOL vmlinux 0x1a4ae2d3 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x1a7a6c1c sock_set_reuseport -EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1aa7fb28 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x1abc6ebc scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x1ae43a3f dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x1ae6dd36 tcp_recvmsg -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 0x1af38088 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b0288d7 pci_enable_msi -EXPORT_SYMBOL vmlinux 0x1b058b08 sk_mc_loop -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 0x1b272da6 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x1b4b601d inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b7b0698 thaw_super -EXPORT_SYMBOL vmlinux 0x1b8da471 md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x1b9b9d2a neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x1ba04458 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc -EXPORT_SYMBOL vmlinux 0x1bc4ffc9 sock_create_kern -EXPORT_SYMBOL vmlinux 0x1bc7873e configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x1c06ada8 xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0x1c65d1e3 ioremap_wt -EXPORT_SYMBOL vmlinux 0x1c67b0a6 skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0x1c94e903 __vfs_removexattr -EXPORT_SYMBOL vmlinux 0x1cb21f53 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x1cbfb123 hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x1ccab0b4 qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0x1cd42e22 new_inode -EXPORT_SYMBOL vmlinux 0x1cd9a676 param_ops_string -EXPORT_SYMBOL vmlinux 0x1cdb5559 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x1ce4c58d page_cache_next_miss -EXPORT_SYMBOL vmlinux 0x1d041a06 config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0x1d0af893 xfrm_input -EXPORT_SYMBOL vmlinux 0x1d216a6b mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x1d3b96b5 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x1d3e2765 iucv_path_quiesce -EXPORT_SYMBOL vmlinux 0x1d449b90 dfltcc_can_deflate -EXPORT_SYMBOL vmlinux 0x1d4d42cd xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x1d4d6ccb inode_permission -EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x1d64ad22 bio_uninit -EXPORT_SYMBOL vmlinux 0x1d824c7e dentry_path_raw -EXPORT_SYMBOL vmlinux 0x1da9ece9 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x1dadd920 __kmalloc -EXPORT_SYMBOL vmlinux 0x1db996ef skb_flow_dissect_hash -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 0x1e0a0c24 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1e2b10b3 pci_remove_bus -EXPORT_SYMBOL vmlinux 0x1e2ce602 d_lookup -EXPORT_SYMBOL vmlinux 0x1e4d1019 rtnl_configure_link -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 0x1e8ed35c nonseekable_open -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1eb9d9aa may_umount -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 0x1edffa6b mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x1f1dd020 md_cluster_ops -EXPORT_SYMBOL vmlinux 0x1f237952 param_get_hexint -EXPORT_SYMBOL vmlinux 0x1f35946e fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x1f4dc4f9 proc_create_data -EXPORT_SYMBOL vmlinux 0x1f7441e5 sock_init_data -EXPORT_SYMBOL vmlinux 0x1f95657b mempool_resize -EXPORT_SYMBOL vmlinux 0x1fa87551 input_unregister_handle -EXPORT_SYMBOL vmlinux 0x1faebb1d tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0x1fb27078 tcw_get_tccb -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fc5fd4f xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x1fcb720d tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0x1fda8755 __memset32 -EXPORT_SYMBOL vmlinux 0x1fe2daca tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x1fe73f5f con_is_bound -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x20050ce6 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x2014a246 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x2025e9e7 kthread_create_worker_on_cpu -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 0x20592c6f arch_write_lock_wait -EXPORT_SYMBOL vmlinux 0x20645c50 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x207eeedf vfs_readlink -EXPORT_SYMBOL vmlinux 0x2085d576 bdevname -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 0x20c19c15 udp_read_sock -EXPORT_SYMBOL vmlinux 0x20c587cc utf8nagemin -EXPORT_SYMBOL vmlinux 0x20d0f3a1 input_register_handler -EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20ee076e itcw_add_tidaw -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 0x212485ee blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x2160dae2 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x2171b2e6 fs_bio_set -EXPORT_SYMBOL vmlinux 0x21837a33 tcp_add_backlog -EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x219de862 qdisc_class_hash_grow -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 0x21c0dd1a put_cmsg_scm_timestamping64 -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 0x21fecdf0 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x2208d51a vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x220fc382 dst_release -EXPORT_SYMBOL vmlinux 0x2210642c sclp_ap_deconfigure -EXPORT_SYMBOL vmlinux 0x221567e6 __traceiter_s390_cio_tpi -EXPORT_SYMBOL vmlinux 0x22217354 nf_log_trace -EXPORT_SYMBOL vmlinux 0x22226d41 ccw_device_start_timeout -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x223242ce __module_get -EXPORT_SYMBOL vmlinux 0x224b2440 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x229484cd netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0x2298a8e3 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x2299a2e2 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x22acde79 skb_put -EXPORT_SYMBOL vmlinux 0x22b30cc2 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22b4ca2d dmam_pool_create -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 0x22d86e86 complete_request_key -EXPORT_SYMBOL vmlinux 0x22dd6d51 tccb_init -EXPORT_SYMBOL vmlinux 0x22e49ea9 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x231348db ip_output -EXPORT_SYMBOL vmlinux 0x2317c96e d_move -EXPORT_SYMBOL vmlinux 0x233164bb __vfs_getxattr -EXPORT_SYMBOL vmlinux 0x23412bfb tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x235d85f5 blk_put_queue -EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x236c8c64 memcpy -EXPORT_SYMBOL vmlinux 0x23712746 sock_no_accept -EXPORT_SYMBOL vmlinux 0x2378f66e blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x23924a48 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c0a915 ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0x23cd5930 tcp_initialize_rcv_mss -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 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x242f3562 irq_subclass_register -EXPORT_SYMBOL vmlinux 0x243022da dm_table_get_md -EXPORT_SYMBOL vmlinux 0x2435a3b2 xfrm_sad_getinfo -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 0x247a3fe4 LZ4_decompress_fast_continue -EXPORT_SYMBOL vmlinux 0x247c4704 current_time -EXPORT_SYMBOL vmlinux 0x2490d93d csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x24a6376e t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x24b8528f mutex_trylock -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 0x25015902 netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0x25116492 touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x252cf375 scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x252fe7e4 down_read_interruptible -EXPORT_SYMBOL vmlinux 0x25365105 kthread_stop -EXPORT_SYMBOL vmlinux 0x2536c6cb sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x2537a9b5 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x253c690d module_put -EXPORT_SYMBOL vmlinux 0x25405fc0 registered_fb -EXPORT_SYMBOL vmlinux 0x2548c032 __cpu_possible_mask -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 0x25c13a0b d_path -EXPORT_SYMBOL vmlinux 0x25d0cfd4 device_add_disk -EXPORT_SYMBOL vmlinux 0x25d17df7 security_sk_clone -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 0x260a07c5 inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x2623adb3 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x26314c11 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x263abd63 try_module_get -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x2641a1c6 diag224 -EXPORT_SYMBOL vmlinux 0x26600440 tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0x266faac8 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x26886683 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc -EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x26a5b938 sclp_pci_configure -EXPORT_SYMBOL vmlinux 0x26ae5430 pci_clear_master -EXPORT_SYMBOL vmlinux 0x26c4acf3 bio_kmalloc -EXPORT_SYMBOL vmlinux 0x26d8ac71 dquot_writeback_dquots -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 0x26f9db3b __destroy_inode -EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x2719442d writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x272a0ff6 input_grab_device -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 0x2759f2bf radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x275c24a7 kvfree_sensitive -EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x27624b37 pci_request_regions -EXPORT_SYMBOL vmlinux 0x2766bf4c inet_proto_csum_replace16 -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 0x277d4035 gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x2794244c xfrm_state_insert -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 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27bc4574 inetdev_by_index -EXPORT_SYMBOL vmlinux 0x27c994ea set_page_dirty -EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27dadf32 eth_header_parse -EXPORT_SYMBOL vmlinux 0x27eb9cd1 tcw_set_intrg -EXPORT_SYMBOL vmlinux 0x27fb711a sock_rfree -EXPORT_SYMBOL vmlinux 0x28021ed1 pci_bus_write_config_byte -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 0x284a06c9 bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x2859fddb jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x286a3661 airq_iv_scan -EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x290bf84a complete_and_exit -EXPORT_SYMBOL vmlinux 0x292c652d xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x293426e9 eth_gro_receive -EXPORT_SYMBOL vmlinux 0x29391e7d vm_munmap -EXPORT_SYMBOL vmlinux 0x2956cf37 sclp_remove_processed -EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x2968bfc9 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x29789394 empty_zero_page -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 0x29bccce2 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x29c16836 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x29e04d82 pci_set_master -EXPORT_SYMBOL vmlinux 0x2a0474c4 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x2a059dc0 sock_i_uid -EXPORT_SYMBOL vmlinux 0x2a062f4a textsearch_prepare -EXPORT_SYMBOL vmlinux 0x2a160038 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x2a166d63 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x2a41d203 dql_init -EXPORT_SYMBOL vmlinux 0x2a71ebea dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x2a805563 __kernel_cpumcf_end -EXPORT_SYMBOL vmlinux 0x2a842659 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x2a892e38 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x2a96baf7 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x2a9ca59f proc_create -EXPORT_SYMBOL vmlinux 0x2aa71d0c proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x2aab00f3 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x2ab0776a ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x2abfa952 kthread_bind -EXPORT_SYMBOL vmlinux 0x2ac9fb86 __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x2acef6a5 is_subdir -EXPORT_SYMBOL vmlinux 0x2af3f454 ssch -EXPORT_SYMBOL vmlinux 0x2b1c2034 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x2b387822 account_page_redirty -EXPORT_SYMBOL vmlinux 0x2b503dc9 scsi_remove_device -EXPORT_SYMBOL vmlinux 0x2b64893a debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x2b9255ba xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x2b96707d jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -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 0x2bf57579 bmap -EXPORT_SYMBOL vmlinux 0x2bfd7c82 neigh_xmit -EXPORT_SYMBOL vmlinux 0x2bfde40f eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x2c07b275 flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0x2c1bd9ed ccw_device_set_options -EXPORT_SYMBOL vmlinux 0x2c24d700 ihold -EXPORT_SYMBOL vmlinux 0x2c2529cc zpool_register_driver -EXPORT_SYMBOL vmlinux 0x2c252b48 ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c359657 make_bad_inode -EXPORT_SYMBOL vmlinux 0x2c368a91 lookup_one_positive_unlocked -EXPORT_SYMBOL vmlinux 0x2c522c10 ccw_device_tm_start_timeout -EXPORT_SYMBOL vmlinux 0x2c55b5d1 user_revoke -EXPORT_SYMBOL vmlinux 0x2c6e0de1 udp_poll -EXPORT_SYMBOL vmlinux 0x2c7f0c67 vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0x2c846363 pfifo_fast_ops -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 0x2cb824a3 skb_store_bits -EXPORT_SYMBOL vmlinux 0x2cbd23af trace_print_hex_dump_seq -EXPORT_SYMBOL vmlinux 0x2cc45e20 seq_release_private -EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2cd39ba7 alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0x2ce6518a eth_header -EXPORT_SYMBOL vmlinux 0x2cf33716 config_item_get -EXPORT_SYMBOL vmlinux 0x2d08ffc1 d_add -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 0x2d346ea8 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -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 0x2d787277 udp_seq_ops -EXPORT_SYMBOL vmlinux 0x2d7bb3ce mpage_readahead -EXPORT_SYMBOL vmlinux 0x2d8c8db2 seq_lseek -EXPORT_SYMBOL vmlinux 0x2d90d9c1 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x2d97d0a2 skb_tunnel_check_pmtu -EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2d9e04c2 netdev_update_features -EXPORT_SYMBOL vmlinux 0x2da77606 inet_select_addr -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 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 0x2e7131d0 __netif_napi_del -EXPORT_SYMBOL vmlinux 0x2e762665 tty_unlock -EXPORT_SYMBOL vmlinux 0x2e828462 sock_gettstamp -EXPORT_SYMBOL vmlinux 0x2e893eb3 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x2eb8580b kernel_getpeername -EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2edcab17 ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x2edce06d capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x2ee7de9c ethtool_get_phc_vclocks -EXPORT_SYMBOL vmlinux 0x2ef5661d segment_modify_shared -EXPORT_SYMBOL vmlinux 0x2f011b1f vma_set_file -EXPORT_SYMBOL vmlinux 0x2f023420 fqdir_exit -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f08335f __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x2f0d2041 pci_scan_bus -EXPORT_SYMBOL vmlinux 0x2f1bc122 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x2f235031 pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0x2f239168 sk_free -EXPORT_SYMBOL vmlinux 0x2f23d0e0 sock_alloc -EXPORT_SYMBOL vmlinux 0x2f2afc8f watchdog_register_governor -EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security -EXPORT_SYMBOL vmlinux 0x2f2f1139 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x2f305177 super_setup_bdi -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 0x2f72c218 fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2fa5a500 memcmp -EXPORT_SYMBOL vmlinux 0x2fbe3a2e import_iovec -EXPORT_SYMBOL vmlinux 0x2fc42b55 inet6_add_protocol -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 0x2fed0a3c page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x2ffffb6f _ebc_tolower -EXPORT_SYMBOL vmlinux 0x300b293f pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x3027f9f8 file_open_root -EXPORT_SYMBOL vmlinux 0x302c91df pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x30441e4b tcp_ioctl -EXPORT_SYMBOL vmlinux 0x3071b164 km_policy_notify -EXPORT_SYMBOL vmlinux 0x307fae6a __register_chrdev -EXPORT_SYMBOL vmlinux 0x308f7f29 configfs_unregister_group -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -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 0x30cf003b ll_rw_block -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x31352444 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x3154ccc2 md_write_inc -EXPORT_SYMBOL vmlinux 0x3162cf8f inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0x318f4ed8 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0x31a34dc6 dma_fence_match_context -EXPORT_SYMBOL vmlinux 0x31c99399 d_set_fallthru -EXPORT_SYMBOL vmlinux 0x31db53c2 sk_stop_timer_sync -EXPORT_SYMBOL vmlinux 0x31e74d6b tcf_qevent_init -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 0x32122b11 __debug_sprintf_event -EXPORT_SYMBOL vmlinux 0x325401de xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0x3264c3cb netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x32896ef2 padata_alloc -EXPORT_SYMBOL vmlinux 0x329c07ce fb_show_logo -EXPORT_SYMBOL vmlinux 0x32a2ca05 pci_write_vpd -EXPORT_SYMBOL vmlinux 0x32a4a7e3 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x32c6a2d8 _ebcasc_500 -EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32d3fedd scsi_register_interface -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 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 0x33b4ca6b qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x33d573fb tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x33f74de3 _ascebc_500 -EXPORT_SYMBOL vmlinux 0x33fa677f rename_lock -EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq -EXPORT_SYMBOL vmlinux 0x340c20e9 jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0x341bdf58 __netlink_dump_start -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 0x346d802d give_up_console -EXPORT_SYMBOL vmlinux 0x346f4f17 _copy_from_iter -EXPORT_SYMBOL vmlinux 0x3487ddc0 block_write_end -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34a35fc7 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x3507a93d sock_kfree_s -EXPORT_SYMBOL vmlinux 0x350e86e3 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x352438d1 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x35645daa vc_cons -EXPORT_SYMBOL vmlinux 0x3579f12a __neigh_create -EXPORT_SYMBOL vmlinux 0x3581ad8f pci_set_mwi -EXPORT_SYMBOL vmlinux 0x35844729 file_update_time -EXPORT_SYMBOL vmlinux 0x3584780b vfs_fileattr_set -EXPORT_SYMBOL vmlinux 0x3584fd88 km_report -EXPORT_SYMBOL vmlinux 0x358da63b __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x3590acc9 cpumask_any_distribute -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 0x35da72e8 __irq_regs -EXPORT_SYMBOL vmlinux 0x35deee27 udp_gro_complete -EXPORT_SYMBOL vmlinux 0x35ef38fc bio_add_page -EXPORT_SYMBOL vmlinux 0x35f63dd3 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x35fd5110 __devm_release_region -EXPORT_SYMBOL vmlinux 0x35ff82b4 page_readlink -EXPORT_SYMBOL vmlinux 0x3602aba9 raw3270_register_notifier -EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x36671d7b md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0x3681e1b5 input_get_timestamp -EXPORT_SYMBOL vmlinux 0x36908ebc sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x369afd37 icmp_ndo_send -EXPORT_SYMBOL vmlinux 0x36b1fef5 dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x370756ff bitmap_print_bitmask_to_buf -EXPORT_SYMBOL vmlinux 0x371adac3 pci_find_bus -EXPORT_SYMBOL vmlinux 0x3736d025 down_read_killable -EXPORT_SYMBOL vmlinux 0x3738cff0 security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0x374018f0 ip_sock_set_recverr -EXPORT_SYMBOL vmlinux 0x37416867 xfrm_spd_getinfo -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 0x37a5fb7c neigh_table_clear -EXPORT_SYMBOL vmlinux 0x37bd47d4 vfs_parse_fs_param_source -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37c71e3e d_exact_alias -EXPORT_SYMBOL vmlinux 0x37ea3124 dma_unmap_resource -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 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x38575494 xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x38605291 __inc_node_page_state -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -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 0x38bae1cb jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x38c2b164 ipv4_specific -EXPORT_SYMBOL vmlinux 0x38c4fd1e locks_remove_posix -EXPORT_SYMBOL vmlinux 0x38c7f968 tcf_action_update_stats -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 0x39085ae6 __traceiter_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x392a4e30 configfs_depend_item -EXPORT_SYMBOL vmlinux 0x392e0532 seg6_push_hmac -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399b5dd8 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x399f497b pgste_perform_essa -EXPORT_SYMBOL vmlinux 0x39b163c7 vfs_get_link -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39c60ac5 ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0x39cb6686 tcp_peek_len -EXPORT_SYMBOL vmlinux 0x39e09a62 ap_flush_queue -EXPORT_SYMBOL vmlinux 0x39e3bf42 vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0x3a06d5b2 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x3a06f874 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x3a0fd8cc mr_vif_seq_idx -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 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a55dcfd dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0x3a61fb99 __breadahead_gfp -EXPORT_SYMBOL vmlinux 0x3a680123 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x3a8ac26c nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x3a8c196b default_llseek -EXPORT_SYMBOL vmlinux 0x3a8f22ce gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x3a9f3a91 padata_free -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 0x3b176ce7 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x3b3413c3 netdev_alert -EXPORT_SYMBOL vmlinux 0x3b47c1c8 netpoll_setup -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 0x3b87b21c memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x3b8959cc xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x3ba10f40 __breadahead -EXPORT_SYMBOL vmlinux 0x3bb3d40a icmp6_send -EXPORT_SYMBOL vmlinux 0x3bbc253c dev_open -EXPORT_SYMBOL vmlinux 0x3bbdc966 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x3bbe0107 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x3bca4aab ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3beafe0a sclp -EXPORT_SYMBOL vmlinux 0x3bf598da pci_wait_for_pending_transaction -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 0x3c11ff08 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c26380b dqget -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c4d42ab user_path_create -EXPORT_SYMBOL vmlinux 0x3c4dbedb __dec_node_page_state -EXPORT_SYMBOL vmlinux 0x3c50a20c mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x3c5c78d6 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x3c64937e netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x3c666cdd skb_orphan_partial -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 0x3ca80798 inet_add_protocol -EXPORT_SYMBOL vmlinux 0x3cc17d57 jbd2_journal_submit_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x3cc4e0f1 rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0x3cd63155 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0x3ce3b90d generic_write_checks -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3d0f1cd7 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x3d117a60 itcw_calc_size -EXPORT_SYMBOL vmlinux 0x3d3e416b fasync_helper -EXPORT_SYMBOL vmlinux 0x3d4cb9d1 airq_iv_create -EXPORT_SYMBOL vmlinux 0x3d56c2e7 inet_frag_find -EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d67e492 proc_mkdir -EXPORT_SYMBOL vmlinux 0x3d6b3755 empty_name -EXPORT_SYMBOL vmlinux 0x3d79e817 unix_destruct_scm -EXPORT_SYMBOL vmlinux 0x3d7f5092 init_pseudo -EXPORT_SYMBOL vmlinux 0x3da18693 blkdev_put -EXPORT_SYMBOL vmlinux 0x3da94e5d vfs_path_lookup -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 0x3db20f61 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x3db3b5a6 hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x3db94940 fscrypt_fname_disk_to_usr -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 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e0b8ee1 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x3e0fa62d dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0x3e1c5a75 tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0x3e1d817a pskb_expand_head -EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e555f37 debug_unregister -EXPORT_SYMBOL vmlinux 0x3e572682 __wake_up -EXPORT_SYMBOL vmlinux 0x3e8013e8 thread_group_exited -EXPORT_SYMBOL vmlinux 0x3e854230 vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0x3eb94250 itcw_add_dcw -EXPORT_SYMBOL vmlinux 0x3ee9bf02 tcf_qevent_destroy -EXPORT_SYMBOL vmlinux 0x3ef81f75 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x3f028e81 genl_notify -EXPORT_SYMBOL vmlinux 0x3f202860 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x3f3eb6ea pci_read_vpd -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f516876 ip6_frag_next -EXPORT_SYMBOL vmlinux 0x3f7d06d5 end_page_writeback -EXPORT_SYMBOL vmlinux 0x3f7d5d6e inet_del_protocol -EXPORT_SYMBOL vmlinux 0x3f86da14 elv_rb_find -EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -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 0x3fb2aec2 udp_disconnect -EXPORT_SYMBOL vmlinux 0x3fb3c18f kern_unmount -EXPORT_SYMBOL vmlinux 0x3fb8bac6 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fdcfdde inet_offloads -EXPORT_SYMBOL vmlinux 0x40063bef d_invalidate -EXPORT_SYMBOL vmlinux 0x400bf820 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x402a960a jiffies_64 -EXPORT_SYMBOL vmlinux 0x405ec93d flow_rule_match_ipv4_addrs -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 0x40a4738a skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40ab28b5 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x40b77922 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40d67875 scsi_ioctl -EXPORT_SYMBOL vmlinux 0x40d7e45e d_drop -EXPORT_SYMBOL vmlinux 0x40f37b03 nla_reserve -EXPORT_SYMBOL vmlinux 0x4105bf31 bio_copy_data -EXPORT_SYMBOL vmlinux 0x41139680 __frontswap_test -EXPORT_SYMBOL vmlinux 0x412e9a5c mark_info_dirty -EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x4136f7ac __pagevec_release -EXPORT_SYMBOL vmlinux 0x4147aa02 __tracepoint_s390_cio_msch -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x4149b396 s390_isolate_bp_guest -EXPORT_SYMBOL vmlinux 0x4159fd89 unregister_md_personality -EXPORT_SYMBOL vmlinux 0x4168068b nf_log_unset -EXPORT_SYMBOL vmlinux 0x4181fa3c __lock_buffer -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x41988588 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x41a752ee mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0x41d1a2a6 napi_disable -EXPORT_SYMBOL vmlinux 0x41e31efd simple_open -EXPORT_SYMBOL vmlinux 0x41e7b7d7 netdev_features_change -EXPORT_SYMBOL vmlinux 0x4203fd2c ptep_xchg_direct -EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse -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 0x4232fbec kfree_skb_list -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 0x425e9b25 pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x42675e3a readahead_expand -EXPORT_SYMBOL vmlinux 0x429dcdc0 xa_find_after -EXPORT_SYMBOL vmlinux 0x42ae6d99 xa_find -EXPORT_SYMBOL vmlinux 0x42bf2b60 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x42d859f0 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x42df0a8f mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0x42eec4f7 set_capacity -EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x42f8d84f __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x42fc23ac prepare_creds -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate -EXPORT_SYMBOL vmlinux 0x433ad3d1 d_splice_alias -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 0x43915413 blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_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 0x43e097ad tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0x43f1a0d6 xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0x440fcddf __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x4449a6dd register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x445be87b skb_append -EXPORT_SYMBOL vmlinux 0x4463b0ac bdev_check_media_change -EXPORT_SYMBOL vmlinux 0x446a1e08 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x44848017 kernel_recvmsg -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 0x44c82719 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x44c8aeb6 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x44cb6abf __skb_ext_del -EXPORT_SYMBOL vmlinux 0x44d6e188 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44e9b7d0 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x44f7953c inet_stream_ops -EXPORT_SYMBOL vmlinux 0x44f9c4d1 dev_get_by_index -EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x450503e6 mark_page_accessed -EXPORT_SYMBOL vmlinux 0x4513f1a4 dma_pool_create -EXPORT_SYMBOL vmlinux 0x451647c7 I_BDEV -EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -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 0x45f17fb6 __var_waitqueue -EXPORT_SYMBOL vmlinux 0x45fdb146 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents -EXPORT_SYMBOL vmlinux 0x46500535 compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x4690508a jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x469a045d brioctl_set -EXPORT_SYMBOL vmlinux 0x46a3eef1 d_mark_dontcache -EXPORT_SYMBOL vmlinux 0x46a83ada find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x46bd4ca3 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x46cad833 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x46cd8fce iucv_message_send -EXPORT_SYMBOL vmlinux 0x46d59f7d smp_cpu_mt_shift -EXPORT_SYMBOL vmlinux 0x46d6fdf3 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x46e319aa tcw_set_data -EXPORT_SYMBOL vmlinux 0x46e68ccb dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0x46efa658 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x46f3b944 register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x46fac771 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x4727ec6d follow_pfn -EXPORT_SYMBOL vmlinux 0x47307ab4 arp_send -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 0x4757f929 setattr_should_drop_sgid -EXPORT_SYMBOL vmlinux 0x47608f61 param_ops_int -EXPORT_SYMBOL vmlinux 0x476ef362 ip6mr_rule_default -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 0x4779734b udp_seq_stop -EXPORT_SYMBOL vmlinux 0x477ecaf8 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x47805a05 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x4789fc74 set_anon_super -EXPORT_SYMBOL vmlinux 0x4791c6ea gen_pool_create -EXPORT_SYMBOL vmlinux 0x479cc82d vfs_create -EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one -EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47f653c0 skb_split -EXPORT_SYMBOL vmlinux 0x47fd526e tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x4807ac20 pskb_trim_rcsum_slow -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 0x4823819e raw3270_buffer_address -EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0x4829e34a ccw_device_set_offline -EXPORT_SYMBOL vmlinux 0x482da019 nf_log_register -EXPORT_SYMBOL vmlinux 0x48373c5b pci_request_irq -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 0x487370a2 fault_in_writeable -EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim -EXPORT_SYMBOL vmlinux 0x48a029e4 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48bdc110 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x48df7b6f remove_conflicting_pci_framebuffers -EXPORT_SYMBOL vmlinux 0x48f3d17a dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x49050f36 __skb_gro_checksum_complete -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 0x4932011e gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0x493c0322 nf_register_queue_handler -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 0x49635d4a __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x49672828 node_states -EXPORT_SYMBOL vmlinux 0x497b760a __ip_dev_find -EXPORT_SYMBOL vmlinux 0x498d9c25 scsi_host_put -EXPORT_SYMBOL vmlinux 0x49c21451 netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0x49cd88a9 dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x49e5e7f3 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x49e98330 setattr_copy -EXPORT_SYMBOL vmlinux 0x4a34681e input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x4a3cb4d9 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x4a572e3a swake_up_all -EXPORT_SYMBOL vmlinux 0x4a6069f7 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x4a7ce9e5 __dev_direct_xmit -EXPORT_SYMBOL vmlinux 0x4a7d669f inode_init_owner -EXPORT_SYMBOL vmlinux 0x4a848e9f __quota_error -EXPORT_SYMBOL vmlinux 0x4a8870b5 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4ab5f2b1 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x4ac06180 key_put -EXPORT_SYMBOL vmlinux 0x4ac63ed5 block_commit_write -EXPORT_SYMBOL vmlinux 0x4ac906e3 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x4ad81457 skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0x4addd63e jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 -EXPORT_SYMBOL vmlinux 0x4b081d00 cred_fscmp -EXPORT_SYMBOL vmlinux 0x4b0b019e add_device_randomness -EXPORT_SYMBOL vmlinux 0x4b369167 __SCK__tp_func_s390_diagnose -EXPORT_SYMBOL vmlinux 0x4b38ff7b inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x4b44f13c tso_start -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b6043a1 netlink_net_capable -EXPORT_SYMBOL vmlinux 0x4b739612 security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0x4b7f0453 skb_checksum_help -EXPORT_SYMBOL vmlinux 0x4b8bbb8a input_register_device -EXPORT_SYMBOL vmlinux 0x4b8f4e7a down_read_trylock -EXPORT_SYMBOL vmlinux 0x4b97f13c __netif_schedule -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 0x4bcc6aad xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x4bcd4ad0 netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0x4c1c3083 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x4c35cadf __skb_checksum -EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c4c956e nla_memcmp -EXPORT_SYMBOL vmlinux 0x4c55074c netdev_notice -EXPORT_SYMBOL vmlinux 0x4c75b5a0 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x4cd6949b input_release_device -EXPORT_SYMBOL vmlinux 0x4d07356b generic_file_mmap -EXPORT_SYMBOL vmlinux 0x4d1f8571 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x4d370e9b simple_getattr -EXPORT_SYMBOL vmlinux 0x4d3c2b09 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x4d4dbee8 skb_dequeue -EXPORT_SYMBOL vmlinux 0x4d4ed938 tcp_seq_next -EXPORT_SYMBOL vmlinux 0x4d52743c generic_file_llseek -EXPORT_SYMBOL vmlinux 0x4d5fe525 percpu_counter_add_batch -EXPORT_SYMBOL vmlinux 0x4d605e19 key_move -EXPORT_SYMBOL vmlinux 0x4d711db6 tcp_child_process -EXPORT_SYMBOL vmlinux 0x4d8da299 nf_log_set -EXPORT_SYMBOL vmlinux 0x4d97baac proc_set_size -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4db3f113 input_get_keycode -EXPORT_SYMBOL vmlinux 0x4dc939ba neigh_carrier_down -EXPORT_SYMBOL vmlinux 0x4dda726b match_strlcpy -EXPORT_SYMBOL vmlinux 0x4dea1053 memchr -EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read -EXPORT_SYMBOL vmlinux 0x4e0a9d1b xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0x4e14fb7d __traceiter_s390_cio_msch -EXPORT_SYMBOL vmlinux 0x4e1bf4f9 finish_open -EXPORT_SYMBOL vmlinux 0x4e23d57e uv_info -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -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 0x4e5e7498 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x4e67ff96 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e21aa ipv6_dev_find -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 0x4ec649c1 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x4ed6dd60 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x4edf4526 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x4ee35605 tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0x4ef19280 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2cd1b5 __cpcmd -EXPORT_SYMBOL vmlinux 0x4f41149e eth_gro_complete -EXPORT_SYMBOL vmlinux 0x4f5aa411 radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x4f6b3808 netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0x4f751222 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x4f9cbdae pci_write_config_byte -EXPORT_SYMBOL vmlinux 0x4fa79b64 xattr_supported_namespace -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 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 0x50219f84 __page_cache_alloc -EXPORT_SYMBOL vmlinux 0x5026440f pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0x504de4e8 param_ops_bool -EXPORT_SYMBOL vmlinux 0x50540704 sock_edemux -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 0x507b25d0 kstrndup -EXPORT_SYMBOL vmlinux 0x50863162 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x508fc3fd seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu -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 0x50d035c2 vsscanf -EXPORT_SYMBOL vmlinux 0x50e087dc radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0x51003a9d zap_page_range -EXPORT_SYMBOL vmlinux 0x5110d11c scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x5110f6d3 lock_page_memcg -EXPORT_SYMBOL vmlinux 0x51473316 __cpu_present_mask -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 0x51927821 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x51976eca sock_no_connect -EXPORT_SYMBOL vmlinux 0x51c027d3 unload_nls -EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x5206d89a md_register_thread -EXPORT_SYMBOL vmlinux 0x5207bb48 kern_unmount_array -EXPORT_SYMBOL vmlinux 0x522ddd13 udp6_set_csum -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 0x529e468c tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x52a2df91 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x52a9aab5 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x52bd379f __nlmsg_put -EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52e6ccb6 ether_setup -EXPORT_SYMBOL vmlinux 0x52e74f45 inet6_protos -EXPORT_SYMBOL vmlinux 0x52f08a1c inode_nohighmem -EXPORT_SYMBOL vmlinux 0x52fef152 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x530bbc96 __hsiphash_unaligned -EXPORT_SYMBOL vmlinux 0x5310f146 scsi_scan_target -EXPORT_SYMBOL vmlinux 0x531625b6 wait_for_completion -EXPORT_SYMBOL vmlinux 0x5333c7d7 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x5348050e __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x53583b66 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x535d2f61 __nla_put_64bit -EXPORT_SYMBOL vmlinux 0x536a9b45 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x537e7ab8 dev_mc_add -EXPORT_SYMBOL vmlinux 0x539b236e param_set_bool -EXPORT_SYMBOL vmlinux 0x53a2e9d1 dma_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x53c24b01 mutex_is_locked -EXPORT_SYMBOL vmlinux 0x53c2d1c1 sk_stop_timer -EXPORT_SYMBOL vmlinux 0x53d563ac fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0x53dcb619 dquot_free_inode -EXPORT_SYMBOL vmlinux 0x53e5500c scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x53faef2f __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x53fd6dc9 dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0x54006971 tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0x540862e2 diag14 -EXPORT_SYMBOL vmlinux 0x540ab508 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x540ee8a5 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x545107b6 unix_detach_fds -EXPORT_SYMBOL vmlinux 0x54513927 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x546d1053 vfs_tmpfile -EXPORT_SYMBOL vmlinux 0x547d9f6b xsk_get_pool_from_qid -EXPORT_SYMBOL vmlinux 0x548a9011 __frontswap_store -EXPORT_SYMBOL vmlinux 0x548d17c4 airq_iv_alloc -EXPORT_SYMBOL vmlinux 0x549926da address_space_init_once -EXPORT_SYMBOL vmlinux 0x54a3e716 sk_wait_data -EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value -EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x54e5e464 redraw_screen -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54ed6a0e xp_dma_unmap -EXPORT_SYMBOL vmlinux 0x54fd3619 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x550e168b migrate_page -EXPORT_SYMBOL vmlinux 0x551668bc kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x551913d1 __invalidate_device -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x552556a8 gen_pool_dma_alloc_algo -EXPORT_SYMBOL vmlinux 0x5544ed26 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x555ccb97 up_read -EXPORT_SYMBOL vmlinux 0x55848e9f ap_driver_unregister -EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x55a3f3e0 sclp_add_request -EXPORT_SYMBOL vmlinux 0x55ad8121 module_refcount -EXPORT_SYMBOL vmlinux 0x55c0594d set_create_files_as -EXPORT_SYMBOL vmlinux 0x55cbaee9 generic_setlease -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 0x55ef3a81 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x55fb4bfd tcp_seq_start -EXPORT_SYMBOL vmlinux 0x55fbaf1d smsg_unregister_callback -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 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 0x56ad9048 key_invalidate -EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56d78870 chsc -EXPORT_SYMBOL vmlinux 0x5700db2a xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x570cb253 d_instantiate_anon -EXPORT_SYMBOL vmlinux 0x57253352 vmf_insert_mixed_prot -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x575f6db5 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x5764a8d5 dma_set_mask -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x576c9db3 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x57760a20 nf_hook_slow -EXPORT_SYMBOL vmlinux 0x577fd9af flow_block_cb_free -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 0x57aa3819 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x57c615ec cpumask_any_but -EXPORT_SYMBOL vmlinux 0x57f18433 swake_up_one -EXPORT_SYMBOL vmlinux 0x58088042 keyring_search -EXPORT_SYMBOL vmlinux 0x580dd917 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x58254aac dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x5825dfa5 softnet_data -EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb -EXPORT_SYMBOL vmlinux 0x5843d7b9 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x584a03cc pci_dev_driver -EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf -EXPORT_SYMBOL vmlinux 0x587b8563 vfs_getattr -EXPORT_SYMBOL vmlinux 0x5883eabb kernel_connect -EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info -EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58baee04 pipe_lock -EXPORT_SYMBOL vmlinux 0x58bc2c31 napi_get_frags -EXPORT_SYMBOL vmlinux 0x58c8f535 datagram_poll -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 0x5909903d pagecache_get_page -EXPORT_SYMBOL vmlinux 0x592d46b4 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x592f64dc ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x5946dee2 request_partial_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x594ee267 netdev_state_change -EXPORT_SYMBOL vmlinux 0x5950db94 inet_stream_connect -EXPORT_SYMBOL vmlinux 0x5955d729 eth_header_cache -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 0x59dff7e1 pci_pme_active -EXPORT_SYMBOL vmlinux 0x59f322f2 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0x5a01c5dc get_ipc_ns_exported -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a10f98e del_virt_timer -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 0x5a6d664f skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x5a865966 submit_bio_wait -EXPORT_SYMBOL vmlinux 0x5a91e77d lease_modify -EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x5aab93b4 set_bh_page -EXPORT_SYMBOL vmlinux 0x5ac10dae tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5b1b0264 proc_symlink -EXPORT_SYMBOL vmlinux 0x5b1b0b76 fwnode_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x5b25189a eth_type_trans -EXPORT_SYMBOL vmlinux 0x5b2b28ab tcw_add_tidaw -EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax -EXPORT_SYMBOL vmlinux 0x5b39db8a fsync_bdev -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 0x5b68a759 netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0x5b745a3d xa_load -EXPORT_SYMBOL vmlinux 0x5b85e0d1 __pci_register_driver -EXPORT_SYMBOL vmlinux 0x5b935e16 __SetPageMovable -EXPORT_SYMBOL vmlinux 0x5ba54545 mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0x5bacf463 xsk_tx_release -EXPORT_SYMBOL vmlinux 0x5bbb9461 d_find_alias -EXPORT_SYMBOL vmlinux 0x5bc50201 fqdir_init -EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create -EXPORT_SYMBOL vmlinux 0x5bd5ef53 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x5bdcabe7 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5beff46b ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x5c20b390 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x5c2d456c utf8_strncmp -EXPORT_SYMBOL vmlinux 0x5c302236 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x5c3a0bcd simple_get_link -EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c4a00c4 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x5c893751 kernel_write -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 0x5cc80b63 no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0x5cd201f0 dev_driver_string -EXPORT_SYMBOL vmlinux 0x5cd6f99b completion_done -EXPORT_SYMBOL vmlinux 0x5ce1e59c netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -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 0x5d34f7d5 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x5d4647cb security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -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 0x5d919d39 build_skb_around -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 0x5debb46a km_state_expired -EXPORT_SYMBOL vmlinux 0x5df756d7 __crypto_memneq -EXPORT_SYMBOL vmlinux 0x5e043ac8 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x5e09aaa1 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e21cb82 ap_send -EXPORT_SYMBOL vmlinux 0x5e244517 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x5e289b21 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x5e2c5ab1 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e441b3b input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x5e498e15 pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0x5e64e218 fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0x5e754dbd inet_csk_reqsk_queue_drop_and_put -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 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5ea31004 arch_spin_trylock_retry -EXPORT_SYMBOL vmlinux 0x5eadb726 tcp_read_sock -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ec2ef0d tty_vhangup -EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x5ec78252 bdi_alloc -EXPORT_SYMBOL vmlinux 0x5ecfeec6 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed49e08 fscrypt_put_encryption_info -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 0x5f27f58a write_one_page -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 0x5f7aa10c netif_receive_skb -EXPORT_SYMBOL vmlinux 0x5f951c2e xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x5f98458f nf_log_unregister -EXPORT_SYMBOL vmlinux 0x5f98bdb6 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0x5f9ede6c proc_dostring -EXPORT_SYMBOL vmlinux 0x5fa2aad0 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x5fa6c6bc page_symlink -EXPORT_SYMBOL vmlinux 0x5fcf3525 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x5fd2298e strnstr -EXPORT_SYMBOL vmlinux 0x5fda0adb ZSTD_DDictWorkspaceBound -EXPORT_SYMBOL vmlinux 0x5fe1c0e7 blk_mq_requeue_request -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 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x603df472 nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0x605444a5 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x60789be9 scsi_print_command -EXPORT_SYMBOL vmlinux 0x6090f7c8 qdisc_put -EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton -EXPORT_SYMBOL vmlinux 0x609f17ab dump_skip_to -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60ae6268 dm_get_device -EXPORT_SYMBOL vmlinux 0x60b5c8dd register_external_irq -EXPORT_SYMBOL vmlinux 0x60b7c9b8 fb_class -EXPORT_SYMBOL vmlinux 0x60c311d6 raw3270_start -EXPORT_SYMBOL vmlinux 0x60c4d4df sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x60cf0d39 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x60fbe6c1 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x6105bfb5 register_netdevice -EXPORT_SYMBOL vmlinux 0x6108288f complete_all -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get -EXPORT_SYMBOL vmlinux 0x61590ea7 configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0x61591058 follow_up -EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge -EXPORT_SYMBOL vmlinux 0x61732021 ccw_device_is_multipath -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61b8e132 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x61d12c5e sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final -EXPORT_SYMBOL vmlinux 0x61e2fd24 input_set_timestamp -EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x620c0dd3 dev_set_promiscuity -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 0x6274d2f3 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x627bc1c4 smp_ctl_set_clear_bit -EXPORT_SYMBOL vmlinux 0x62813fa7 sock_set_mark -EXPORT_SYMBOL vmlinux 0x628359d8 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62859150 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62c27ea8 reuseport_stop_listen_sock -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 0x631a1eaf __ip_options_compile -EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x636ace72 dma_fence_signal_timestamp -EXPORT_SYMBOL vmlinux 0x6371e098 cio_irb -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 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63deb3e4 tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0x63e096b4 xattr_full_name -EXPORT_SYMBOL vmlinux 0x63e213ef node_data -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x6403d2bb scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x640ec259 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x64270852 blk_integrity_register -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 0x648891ad kill_fasync -EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64e8ff13 dev_deactivate -EXPORT_SYMBOL vmlinux 0x6505adaa gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x650c05f5 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x65109778 ip6_xmit -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 0x65339bd4 lookup_one_len -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 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65a6b3ce dm_io -EXPORT_SYMBOL vmlinux 0x65c6e1a9 __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0x65d5f163 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65f124c1 eth_get_headlen -EXPORT_SYMBOL vmlinux 0x661be3dc _dev_warn -EXPORT_SYMBOL vmlinux 0x6623f2e3 vmalloc_array -EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x66710b8b tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x66a46073 neigh_destroy -EXPORT_SYMBOL vmlinux 0x66e46ce8 dev_trans_start -EXPORT_SYMBOL vmlinux 0x66e5166e netlink_unicast -EXPORT_SYMBOL vmlinux 0x66e69897 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0x6711d79b dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0x672144bd strlcpy -EXPORT_SYMBOL vmlinux 0x6728e30e poll_freewait -EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x6751e532 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x67599430 __skb_pad -EXPORT_SYMBOL vmlinux 0x675d0d84 ip_defrag -EXPORT_SYMBOL vmlinux 0x676155ff dotdot_name -EXPORT_SYMBOL vmlinux 0x6762e507 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x6763471f buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x67715420 inet_twsk_deschedule_put -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 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 0x68031632 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x6813ab90 tcf_idr_search -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 0x685c9793 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x68629665 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x687173de ZSTD_findDecompressedSize -EXPORT_SYMBOL vmlinux 0x687855f4 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x687e072e unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x689a37bc kobject_add -EXPORT_SYMBOL vmlinux 0x68a10e2f neigh_for_each -EXPORT_SYMBOL vmlinux 0x68b861e2 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x68cb33c0 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x68cde660 generic_listxattr -EXPORT_SYMBOL vmlinux 0x68dc37f9 flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0x68ecb5ae filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x68f2a0a1 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x68faa7c5 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x68fe9e66 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x69040ec2 tcf_em_tree_validate -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 0x691f5f30 tcp_close -EXPORT_SYMBOL vmlinux 0x692f9144 unregister_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x694e6fe5 __icmp_send -EXPORT_SYMBOL vmlinux 0x694e796a ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x696e9665 t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x69816287 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x6983d82f nobh_writepage -EXPORT_SYMBOL vmlinux 0x6985c2d8 __neigh_event_send -EXPORT_SYMBOL vmlinux 0x698de6ee simple_statfs -EXPORT_SYMBOL vmlinux 0x699dfb6a rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x69a277a9 cad_pid -EXPORT_SYMBOL vmlinux 0x69a8c630 dev_addr_flush -EXPORT_SYMBOL vmlinux 0x69ac7494 ccw_device_resume -EXPORT_SYMBOL vmlinux 0x69aef34b sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0x69b766f3 arp_tbl -EXPORT_SYMBOL vmlinux 0x69cf77c8 ZSTD_getDictID_fromDict -EXPORT_SYMBOL vmlinux 0x69d7769c __tracepoint_s390_diagnose -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 0x6a3da0d0 ipv6_dev_get_saddr -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 0x6a95a073 tcf_block_get -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 0x6acafe9e __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x6ae8d8cb drop_super_exclusive -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6af76b71 get_tree_nodev -EXPORT_SYMBOL vmlinux 0x6af7bb2f __sock_i_ino -EXPORT_SYMBOL vmlinux 0x6b2caecc netdev_pick_tx -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -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 0x6b6dfd2b crypto_sha1_finup -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 0x6b97fd11 sk_dst_check -EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x6bac671b __crc32c_le -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bdc1fdd dev_uc_init -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 0x6c1b859e seq_bprintf -EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x6c2c57a5 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x6c5149bb truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc -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 0x6cbbccc3 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x6ccc34dd sort -EXPORT_SYMBOL vmlinux 0x6cef9661 mount_single -EXPORT_SYMBOL vmlinux 0x6cf192df kvrealloc -EXPORT_SYMBOL vmlinux 0x6cf635cc find_vma -EXPORT_SYMBOL vmlinux 0x6d1ea6ec strlcat -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d2abaef pcim_iomap -EXPORT_SYMBOL vmlinux 0x6d33228c unpin_user_page -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d5670b0 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x6d5ff6a4 tty_hangup -EXPORT_SYMBOL vmlinux 0x6d61969a input_unregister_handler -EXPORT_SYMBOL vmlinux 0x6d72126a ccw_device_clear_options -EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d81b31a blkdev_get_by_dev -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 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6e00b8cb _ebcasc -EXPORT_SYMBOL vmlinux 0x6e2562c3 do_SAK -EXPORT_SYMBOL vmlinux 0x6e2da197 arch_read_lock_wait -EXPORT_SYMBOL vmlinux 0x6e391636 nvmem_get_mac_address -EXPORT_SYMBOL vmlinux 0x6e4b5f93 input_unregister_device -EXPORT_SYMBOL vmlinux 0x6e54e709 netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0x6e56ddcb vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -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 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6ecb2f17 udp_prot -EXPORT_SYMBOL vmlinux 0x6ede2f3c blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x6ef84303 kvmalloc_node -EXPORT_SYMBOL vmlinux 0x6f1430ec jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x6f200f80 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x6f20e8a0 nla_strscpy -EXPORT_SYMBOL vmlinux 0x6f2df3ef dma_fence_signal -EXPORT_SYMBOL vmlinux 0x6f365e44 ZSTD_decompressContinue -EXPORT_SYMBOL vmlinux 0x6f39991b blk_mq_start_request -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 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 0x6f6e72bc __scm_send -EXPORT_SYMBOL vmlinux 0x6f79375c mempool_free -EXPORT_SYMBOL vmlinux 0x6f7bf9f7 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x6f8420a3 ZSTD_findFrameCompressedSize -EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func -EXPORT_SYMBOL vmlinux 0x6f988cef ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x6fa90acc netif_rx_any_context -EXPORT_SYMBOL vmlinux 0x6fab54fd rtnl_unicast -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 0x6fcc8ff8 napi_build_skb -EXPORT_SYMBOL vmlinux 0x6fe70974 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x6ff6b877 tcp_mmap -EXPORT_SYMBOL vmlinux 0x6ff9ad43 make_kuid -EXPORT_SYMBOL vmlinux 0x6ffbaaef xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x6fff544e dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x7002e58f vfs_unlink -EXPORT_SYMBOL vmlinux 0x701ecd8e ip_do_fragment -EXPORT_SYMBOL vmlinux 0x702c4af6 kernel_sock_shutdown -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 0x707907e0 xp_raw_get_data -EXPORT_SYMBOL vmlinux 0x7092c2a9 ccw_device_tm_start_timeout_key -EXPORT_SYMBOL vmlinux 0x70a09a83 neigh_event_ns -EXPORT_SYMBOL vmlinux 0x70ac4954 kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0x70e95d15 remap_pfn_range -EXPORT_SYMBOL vmlinux 0x70f4d4ab pneigh_lookup -EXPORT_SYMBOL vmlinux 0x70f81b56 ap_max_msg_size -EXPORT_SYMBOL vmlinux 0x71062d74 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x7109f68c pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0x7120f9bd LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x7145aef0 segment_load -EXPORT_SYMBOL vmlinux 0x714c54d9 touch_atime -EXPORT_SYMBOL vmlinux 0x715990ff skb_copy -EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x7161ab65 keyring_alloc -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 0x7199df7e reuseport_select_sock -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 0x71c9dee8 pudp_xchg_direct -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 0x720c73b9 __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0x72105293 tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x7215a982 netdev_reset_tc -EXPORT_SYMBOL vmlinux 0x72297f25 __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x72337246 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x7242ddfb iucv_bus -EXPORT_SYMBOL vmlinux 0x7242e96d strnchr -EXPORT_SYMBOL vmlinux 0x724d4343 param_ops_charp -EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x72690314 kmem_cache_free -EXPORT_SYMBOL vmlinux 0x72704ef7 netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0x72764cae __devm_request_region -EXPORT_SYMBOL vmlinux 0x727e61e5 xp_alloc -EXPORT_SYMBOL vmlinux 0x72a51b7b crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x72a90333 key_validate -EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -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 0x72e71a41 seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72fe7cb3 kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x7303b94e cdev_init -EXPORT_SYMBOL vmlinux 0x7305e891 mr_mfc_find_parent -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 0x7341706f dev_set_alias -EXPORT_SYMBOL vmlinux 0x73519807 sk_net_capable -EXPORT_SYMBOL vmlinux 0x73533939 mroute6_is_socket -EXPORT_SYMBOL vmlinux 0x7371c027 flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x738723e8 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x7389706a __memset16 -EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get -EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73bf20c6 _ascebc -EXPORT_SYMBOL vmlinux 0x73cdf59e netdev_name_node_alt_destroy -EXPORT_SYMBOL vmlinux 0x73e1d036 tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0x73e842f9 tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x741f70a9 debug_stop_all -EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes -EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 -EXPORT_SYMBOL vmlinux 0x744129e1 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x744dec8e pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x746d8f6e generic_fadvise -EXPORT_SYMBOL vmlinux 0x746fd098 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x7470b01a tsb_init -EXPORT_SYMBOL vmlinux 0x74809550 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x749087f5 dquot_resume -EXPORT_SYMBOL vmlinux 0x74bc40bf dev_get_iflink -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 0x74ffeb8b commit_creds -EXPORT_SYMBOL vmlinux 0x752429f6 tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x752bb76c netdev_warn -EXPORT_SYMBOL vmlinux 0x753b94c7 dcb_setapp -EXPORT_SYMBOL vmlinux 0x7547fc5d tcp_poll -EXPORT_SYMBOL vmlinux 0x75816db5 consume_skb -EXPORT_SYMBOL vmlinux 0x758cdb98 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x7599bf62 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x759a0416 __memset64 -EXPORT_SYMBOL vmlinux 0x759d0c90 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x75a014f3 tcp_sock_set_keepintvl -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 0x75debdef discard_new_inode -EXPORT_SYMBOL vmlinux 0x76009017 elv_rb_add -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 0x762f1c37 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x76417510 dst_dev_put -EXPORT_SYMBOL vmlinux 0x76426845 strncpy_from_user -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 0x767971ff dev_set_threaded -EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -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 0x76e7571a __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x77004259 sock_wfree -EXPORT_SYMBOL vmlinux 0x77081ee9 pci_disable_msix -EXPORT_SYMBOL vmlinux 0x771168fa mntget -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 0x7756a1ca do_splice_direct -EXPORT_SYMBOL vmlinux 0x775ae12f ip_check_defrag -EXPORT_SYMBOL vmlinux 0x775f694d sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x77687987 tcp_sock_set_user_timeout -EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 -EXPORT_SYMBOL vmlinux 0x77746c00 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0x77873c71 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x77bbc687 bd_abort_claiming -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77c13e2a iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x77cf5695 page_pool_destroy -EXPORT_SYMBOL vmlinux 0x77e8459e filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77ec5b26 nf_log_packet -EXPORT_SYMBOL vmlinux 0x77ff7981 input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x7801fb26 eth_validate_addr -EXPORT_SYMBOL vmlinux 0x7805d1a0 __put_cred -EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x7814e2eb pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x7819aea9 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x7821df98 ram_aops -EXPORT_SYMBOL vmlinux 0x7827c1bf tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0x782acba5 crc_t10dif -EXPORT_SYMBOL vmlinux 0x78569adf ida_alloc_range -EXPORT_SYMBOL vmlinux 0x785ff5a9 unregister_nls -EXPORT_SYMBOL vmlinux 0x78633cdf ilookup5 -EXPORT_SYMBOL vmlinux 0x7871b949 passthru_features_check -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 0x78a70a1f param_set_byte -EXPORT_SYMBOL vmlinux 0x78b1138b netdev_crit -EXPORT_SYMBOL vmlinux 0x78b2eec0 dma_supported -EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78da6fcc qdisc_watchdog_cancel -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 0x78ef2f9f skb_eth_pop -EXPORT_SYMBOL vmlinux 0x78f1475a __traceiter_s390_cio_rsch -EXPORT_SYMBOL vmlinux 0x790386c4 inet_dev_addr_type -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 0x79395e5a ccw_device_get_path_mask -EXPORT_SYMBOL vmlinux 0x795808c8 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x795c0588 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x7970ef55 swake_up_locked -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 0x79e73281 netdev_upper_dev_unlink -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 0x7a1fa28c pagecache_write_end -EXPORT_SYMBOL vmlinux 0x7a2641ba __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0x7a29973a pci_find_next_bus -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 0x7a5d9a71 ZSTD_DStreamWorkspaceBound -EXPORT_SYMBOL vmlinux 0x7a75a176 skb_eth_push -EXPORT_SYMBOL vmlinux 0x7a7d60e6 iucv_register -EXPORT_SYMBOL vmlinux 0x7a82d26a bio_reset -EXPORT_SYMBOL vmlinux 0x7a8a4b36 dev_set_group -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ab8fc25 seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0x7ac13f7e __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7ad58813 kobject_get -EXPORT_SYMBOL vmlinux 0x7ad9daf7 inet_getname -EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7afc33a8 fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0x7b0615bd noop_llseek -EXPORT_SYMBOL vmlinux 0x7b0939cb udp_set_csum -EXPORT_SYMBOL vmlinux 0x7b09a35a pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0x7b0f6b89 pcie_print_link_status -EXPORT_SYMBOL vmlinux 0x7b20c4b6 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit -EXPORT_SYMBOL vmlinux 0x7b3c81f2 kobject_put -EXPORT_SYMBOL vmlinux 0x7b420751 input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0x7b5a7137 strncat -EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b6e6aa4 __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0x7b74d55f xfrm_state_update -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 0x7bdd05f8 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x7bf02ac3 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x7c09316f fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0x7c14f503 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c2d91c1 d_alloc_anon -EXPORT_SYMBOL vmlinux 0x7c30b48d prepare_to_swait_exclusive -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 0x7c504bd0 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x7c5d4a3a sclp_reactivate -EXPORT_SYMBOL vmlinux 0x7c5d7570 dquot_transfer -EXPORT_SYMBOL vmlinux 0x7c747302 generic_perform_write -EXPORT_SYMBOL vmlinux 0x7c78e3e7 __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x7c90a345 pid_task -EXPORT_SYMBOL vmlinux 0x7c97206a __inet6_lookup_established -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 0x7cb9137c km_new_mapping -EXPORT_SYMBOL vmlinux 0x7cbf08c8 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x7cc27000 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7cf382cc register_mii_tstamp_controller -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 0x7d160845 pagevec_lookup_range -EXPORT_SYMBOL vmlinux 0x7d234761 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x7d31f6d4 vfs_parse_fs_param -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 0x7d522361 mempool_create_node -EXPORT_SYMBOL vmlinux 0x7d5c9767 dquot_alloc -EXPORT_SYMBOL vmlinux 0x7d6dcbc1 unregister_service_level -EXPORT_SYMBOL vmlinux 0x7d8499f4 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x7d98f860 flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0x7d9d2c15 ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -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 0x7dfea9e5 dquot_release -EXPORT_SYMBOL vmlinux 0x7e0307ee dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e4a8c00 kfree_skb_reason -EXPORT_SYMBOL vmlinux 0x7e649d62 __inc_zone_page_state -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 0x7e9228b3 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x7e938bab kernel_accept -EXPORT_SYMBOL vmlinux 0x7e95ee49 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x7e963590 file_modified -EXPORT_SYMBOL vmlinux 0x7eac6623 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x7eccafdd tty_write_room -EXPORT_SYMBOL vmlinux 0x7ee29da3 sock_no_socketpair -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 0x7f0fafb8 dev_load -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f26c9f8 fscrypt_decrypt_block_inplace -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 0x7f6b9c93 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f8a9765 __ip_select_ident -EXPORT_SYMBOL vmlinux 0x7f957121 dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0x7f966de4 fifo_set_limit -EXPORT_SYMBOL vmlinux 0x7fb8cffc d_delete -EXPORT_SYMBOL vmlinux 0x7fc87911 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x7fdf6f24 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x801bb517 generic_file_open -EXPORT_SYMBOL vmlinux 0x80318b30 sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x803de2d1 __dev_kfree_skb_irq -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 0x806342e7 sock_alloc_file -EXPORT_SYMBOL vmlinux 0x806f2c92 tcw_set_tccb -EXPORT_SYMBOL vmlinux 0x8071e9cd inc_node_page_state -EXPORT_SYMBOL vmlinux 0x8072fb72 notify_change -EXPORT_SYMBOL vmlinux 0x808b6a70 bio_chain -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 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80d7f717 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0x80d87d90 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table -EXPORT_SYMBOL vmlinux 0x8111826f d_tmpfile -EXPORT_SYMBOL vmlinux 0x8111d4cd dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x81164daa __SCK__tp_func_s390_cio_rsch -EXPORT_SYMBOL vmlinux 0x8128c039 smsg_register_callback -EXPORT_SYMBOL vmlinux 0x812f78eb xxh64_update -EXPORT_SYMBOL vmlinux 0x81389d52 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x814081f1 blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815dc7aa con_copy_unimap -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 0x81a58001 mempool_init_node -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 0x821a46fa ip_ct_attach -EXPORT_SYMBOL vmlinux 0x824d2417 noop_fsync -EXPORT_SYMBOL vmlinux 0x826e3209 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82806aba vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0x8281b508 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x82be843f sock_i_ino -EXPORT_SYMBOL vmlinux 0x82c2f005 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync -EXPORT_SYMBOL vmlinux 0x8302c119 netif_carrier_off -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 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x836b8552 xfrm4_udp_encap_rcv -EXPORT_SYMBOL vmlinux 0x837787e5 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x837d019e jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x83a368b3 ipv6_sock_mc_join -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 0x83f1b17e lookup_one_unlocked -EXPORT_SYMBOL vmlinux 0x8400f905 flow_rule_match_meta -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 0x84493fa6 skb_clone_sk -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 0x8499b061 gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x849dee99 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x84c18f4f ZSTD_decompress_usingDDict -EXPORT_SYMBOL vmlinux 0x84d4c8cc crc16 -EXPORT_SYMBOL vmlinux 0x84dcb60c pcim_pin_device -EXPORT_SYMBOL vmlinux 0x850ff9f6 ip6_output -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x859bf03f key_payload_reserve -EXPORT_SYMBOL vmlinux 0x859d3e48 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x85abc85f strncmp -EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85c6e7d2 bh_submit_read -EXPORT_SYMBOL vmlinux 0x85d14264 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85e17631 netif_device_attach -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 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x8644112b netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0x866bc907 module_layout -EXPORT_SYMBOL vmlinux 0x8675e173 vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0x8676db46 get_random_bytes -EXPORT_SYMBOL vmlinux 0x8689d3f6 ZSTD_decompressBlock -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x868bde1d down_write_trylock -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 0x86d2335e mempool_create -EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant -EXPORT_SYMBOL vmlinux 0x86da6077 mr_fill_mroute -EXPORT_SYMBOL vmlinux 0x86f5ef9a iov_iter_discard -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x870bab9e utf8ncursor -EXPORT_SYMBOL vmlinux 0x873e0065 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x8746aeaf debug_exception_common -EXPORT_SYMBOL vmlinux 0x87532703 raw3270_start_irq -EXPORT_SYMBOL vmlinux 0x875f73c1 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed -EXPORT_SYMBOL vmlinux 0x8783ef12 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds -EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -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 0x882396ed reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0x8833bc7e __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x883c47fc set_blocksize -EXPORT_SYMBOL vmlinux 0x8840af0e filemap_fdatawrite_wbc -EXPORT_SYMBOL vmlinux 0x8845d89a __kmalloc_track_caller -EXPORT_SYMBOL vmlinux 0x8853929d eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x885bb74a ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0x885ddac6 __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0x887efc6f __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x889fc838 skb_queue_tail -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 0x88f5222a neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x89192ae7 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x891eb7f1 pci_enable_device -EXPORT_SYMBOL vmlinux 0x892c93f8 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0x89472593 neigh_connected_output -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 0x89a56ff8 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x89a72572 __tracepoint_s390_cio_hsch -EXPORT_SYMBOL vmlinux 0x89d35235 fs_param_is_enum -EXPORT_SYMBOL vmlinux 0x89fc39a5 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x8a002373 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x8a42de2a delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x8a45212c blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x8a5b5b1f xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x8a62d686 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x8a65338b percpu_counter_sync -EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags -EXPORT_SYMBOL vmlinux 0x8a741eb8 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x8a75314c netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aaf15f6 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8ad8b97e pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b05a5ea seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0x8b3d9e84 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x8b55fd4f hdmi_spd_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b649625 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x8b6a06fa iov_iter_xarray -EXPORT_SYMBOL vmlinux 0x8b70c42b iov_iter_npages -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b883100 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x8b8cf871 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx -EXPORT_SYMBOL vmlinux 0x8ba0066c jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x8be1a128 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x8be5fea7 fs_param_is_bool -EXPORT_SYMBOL vmlinux 0x8c027982 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x8c11a69d clocksource_unregister -EXPORT_SYMBOL vmlinux 0x8c1afc35 read_cache_page -EXPORT_SYMBOL vmlinux 0x8c3bab0c fs_param_is_u32 -EXPORT_SYMBOL vmlinux 0x8c40ab08 netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0x8c6592fc hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x8c816c50 override_creds -EXPORT_SYMBOL vmlinux 0x8c843fec skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c875be0 tcw_init -EXPORT_SYMBOL vmlinux 0x8c8bd81c shrink_dcache_sb -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 0x8ccbd62d __skb_recv_udp -EXPORT_SYMBOL vmlinux 0x8cce474b param_set_charp -EXPORT_SYMBOL vmlinux 0x8cd7eced tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0x8cdfc002 sclp_unregister -EXPORT_SYMBOL vmlinux 0x8ce5ed9b mr_dump -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 0x8d315aeb skb_vlan_push -EXPORT_SYMBOL vmlinux 0x8d35fc16 filemap_fault -EXPORT_SYMBOL vmlinux 0x8d54bf38 set_nlink -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d708498 jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d823956 seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0x8d874646 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x8d97f326 pipe_unlock -EXPORT_SYMBOL vmlinux 0x8da88d02 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0x8db3b693 jbd2_fc_release_bufs -EXPORT_SYMBOL vmlinux 0x8dc4e786 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x8dcda92f xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x8dd8fb7c scsi_print_result -EXPORT_SYMBOL vmlinux 0x8dd8fd59 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8e09ef98 netdev_err -EXPORT_SYMBOL vmlinux 0x8e205604 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x8e20a340 arch_debugfs_dir -EXPORT_SYMBOL vmlinux 0x8e3dbe75 netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0x8e55cc68 sock_create_lite -EXPORT_SYMBOL vmlinux 0x8e682ca7 page_pool_update_nid -EXPORT_SYMBOL vmlinux 0x8e73ebce proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x8e8a4183 netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8e9502a7 pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x8ea0167e scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x8ea0d626 __blk_alloc_disk -EXPORT_SYMBOL vmlinux 0x8ec12869 d_alloc_parallel -EXPORT_SYMBOL vmlinux 0x8ecb50ec alloc_pages_vma -EXPORT_SYMBOL vmlinux 0x8ecf193b unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x8ed1f50b block_invalidatepage -EXPORT_SYMBOL vmlinux 0x8edf93b9 inet_sendmsg -EXPORT_SYMBOL vmlinux 0x8ee3dc5a setattr_prepare -EXPORT_SYMBOL vmlinux 0x8ee47fd6 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x8ef832bb current_in_userns -EXPORT_SYMBOL vmlinux 0x8f101a80 d_obtain_alias -EXPORT_SYMBOL vmlinux 0x8f17237b vm_map_pages -EXPORT_SYMBOL vmlinux 0x8f2fcb1a init_special_inode -EXPORT_SYMBOL vmlinux 0x8f305496 sock_efree -EXPORT_SYMBOL vmlinux 0x8f3bc8f7 get_user_pages -EXPORT_SYMBOL vmlinux 0x8f456785 iput -EXPORT_SYMBOL vmlinux 0x8f57308d clear_inode -EXPORT_SYMBOL vmlinux 0x8f74b314 sock_kmalloc -EXPORT_SYMBOL vmlinux 0x8f83734c d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x8f8b0cbe setup_arg_pages -EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8f9efaf6 bdi_put -EXPORT_SYMBOL vmlinux 0x8fea5540 blk_mq_alloc_request -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 0x904cee2d devm_release_resource -EXPORT_SYMBOL vmlinux 0x906d283e alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x907484c8 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x907df186 flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0x908207af neigh_seq_next -EXPORT_SYMBOL vmlinux 0x908deeef dquot_quotactl_sysfile_ops -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 0x90cc2d75 poll_initwait -EXPORT_SYMBOL vmlinux 0x90cf749a flow_rule_match_enc_control -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 0x911e6b1b vfs_setpos -EXPORT_SYMBOL vmlinux 0x912ac4ad param_set_copystring -EXPORT_SYMBOL vmlinux 0x91699c78 fb_get_mode -EXPORT_SYMBOL vmlinux 0x916f2b57 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x9184955c inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x91918466 pci_match_id -EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 -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 0x91d0d7e5 dquot_load_quota_sb -EXPORT_SYMBOL vmlinux 0x91e16381 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x91fd28ce cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x92115712 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x921add76 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x922388a9 tso_count_descs -EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x923cd3f2 __dquot_transfer -EXPORT_SYMBOL vmlinux 0x925c99f6 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0x92670644 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool -EXPORT_SYMBOL vmlinux 0x927e2955 xa_get_order -EXPORT_SYMBOL vmlinux 0x92997ed8 _printk -EXPORT_SYMBOL vmlinux 0x92a16af7 lockref_get -EXPORT_SYMBOL vmlinux 0x92a5b220 vif_device_init -EXPORT_SYMBOL vmlinux 0x92bc0c80 netpoll_send_udp -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 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x93021c01 ccw_device_get_mdc -EXPORT_SYMBOL vmlinux 0x932695d1 __inet_hash -EXPORT_SYMBOL vmlinux 0x933afd98 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x9343f77a __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x935f6036 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x9368e321 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x9377ef6a vfs_llseek -EXPORT_SYMBOL vmlinux 0x939176a8 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93abfc1c security_inet_conn_established -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93d1ff25 input_setup_polling -EXPORT_SYMBOL vmlinux 0x93fa58e9 vfs_statfs -EXPORT_SYMBOL vmlinux 0x94065f05 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x94116450 skb_set_owner_w -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 0x9425b273 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x942c21c0 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x942f4c5c iucv_message_reject -EXPORT_SYMBOL vmlinux 0x943083e6 dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0x9432f1fe generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0x943fee0e dev_printk_emit -EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages -EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -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 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94b37859 put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94ca9640 inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier -EXPORT_SYMBOL vmlinux 0x94fb7279 inet_sk_set_state -EXPORT_SYMBOL vmlinux 0x9501da77 fb_set_suspend -EXPORT_SYMBOL vmlinux 0x9506755e nf_ct_attach -EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x950fd526 clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0x951a2dfe iucv_path_accept -EXPORT_SYMBOL vmlinux 0x951b7c95 add_to_pipe -EXPORT_SYMBOL vmlinux 0x9530365d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc -EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x955037b1 sock_release -EXPORT_SYMBOL vmlinux 0x955071ca ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x958981d7 generic_permission -EXPORT_SYMBOL vmlinux 0x958c24a3 sync_blockdev -EXPORT_SYMBOL vmlinux 0x9591f9e2 mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0x959205be jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x9594ef66 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x95981fe2 debug_register -EXPORT_SYMBOL vmlinux 0x95aabc0c tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x95b38ccc resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x95b593ce __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x95b767ea __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x95c95e6c tty_port_open -EXPORT_SYMBOL vmlinux 0x95cd3301 pci_assign_resource -EXPORT_SYMBOL vmlinux 0x95ceb864 key_update -EXPORT_SYMBOL vmlinux 0x95dea7e8 follow_down -EXPORT_SYMBOL vmlinux 0x95e598d1 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x95e63ced prot_virt_host -EXPORT_SYMBOL vmlinux 0x961c796b md_done_sync -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 0x968d614a __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x96a4b01c pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x96af292a __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x96bb352c sk_capable -EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96c19ea1 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x96ca699f sock_no_linger -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x96fb951d cdrom_dummy_generic_packet -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 0x973c1327 inet_listen -EXPORT_SYMBOL vmlinux 0x974d0924 __kernel_cpumcf_begin -EXPORT_SYMBOL vmlinux 0x97608b84 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x9780c2d8 __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x97823904 fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0x9788e2c5 __alloc_pages -EXPORT_SYMBOL vmlinux 0x979b5887 raw3270_start_locked -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 0x97d0dde4 register_framebuffer -EXPORT_SYMBOL vmlinux 0x97dddfe3 freezing_slow_path -EXPORT_SYMBOL vmlinux 0x97e3ad62 skb_trim -EXPORT_SYMBOL vmlinux 0x980b92d1 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x98162a75 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x983a4b82 secpath_set -EXPORT_SYMBOL vmlinux 0x987cb4a1 show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0x989e1516 xa_destroy -EXPORT_SYMBOL vmlinux 0x98a572a3 __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98c8c417 __scsi_execute -EXPORT_SYMBOL vmlinux 0x98cf9474 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x98d629eb remove_arg_zero -EXPORT_SYMBOL vmlinux 0x98de1c15 snprintf -EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x99088040 pci_enable_wake -EXPORT_SYMBOL vmlinux 0x992d6c42 input_register_handle -EXPORT_SYMBOL vmlinux 0x9930e7f3 xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0x9942ec77 itcw_finalize -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x9975b138 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x99897d01 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99a834c4 flow_indr_dev_setup_offload -EXPORT_SYMBOL vmlinux 0x99a99f22 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x99ae0b98 kthread_blkcg -EXPORT_SYMBOL vmlinux 0x99c66361 sockfd_lookup -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 0x99e41e85 mount_subtree -EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x9a14b881 tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0x9a1b96a4 inet_proto_csum_replace_by_diff -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 0x9a400194 key_reject_and_link -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 0x9a906daf memscan -EXPORT_SYMBOL vmlinux 0x9a97a4be pci_find_capability -EXPORT_SYMBOL vmlinux 0x9a9b5f0c inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x9aa45498 ipmr_rule_default -EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -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 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 0x9b6abb52 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x9b6dde5c __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x9b8d07aa strnlen -EXPORT_SYMBOL vmlinux 0x9bc2760b register_quota_format -EXPORT_SYMBOL vmlinux 0x9bce1f69 fb_find_mode -EXPORT_SYMBOL vmlinux 0x9be32631 dev_set_mtu -EXPORT_SYMBOL vmlinux 0x9be3414a inet_add_offload -EXPORT_SYMBOL vmlinux 0x9bedd673 dma_fence_get_status -EXPORT_SYMBOL vmlinux 0x9c48b9bb flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0x9c5bab84 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x9c60586c __dquot_free_space -EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9ca01fe6 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x9cadbd3b __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x9cc02eae unregister_qdisc -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 0x9cf948d5 skb_unlink -EXPORT_SYMBOL vmlinux 0x9cf9f918 get_user_pages_remote -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d101bec inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x9d1da73e raw3270_find_view -EXPORT_SYMBOL vmlinux 0x9d261cd3 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d509dca init_opal_dev -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 0x9db1d584 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x9db7b5dc pci_bus_type -EXPORT_SYMBOL vmlinux 0x9db7d774 udp_pre_connect -EXPORT_SYMBOL vmlinux 0x9dc729cd padata_free_shell -EXPORT_SYMBOL vmlinux 0x9e06e5a1 xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 -EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e2be142 nmi_panic -EXPORT_SYMBOL vmlinux 0x9e37d03c netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x9e3ab96d iucv_if -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -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 0x9ebed933 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ec89d85 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x9ed8206d dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x9ee3f2b6 ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x9eee8103 put_ipc_ns -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict -EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f5d9393 utf8nagemax -EXPORT_SYMBOL vmlinux 0x9f6c4846 _dev_printk -EXPORT_SYMBOL vmlinux 0x9f80058b dentry_open -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fae382a tcp_release_cb -EXPORT_SYMBOL vmlinux 0x9fc96621 bdev_read_only -EXPORT_SYMBOL vmlinux 0x9fd18817 _dev_emerg -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -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 0xa01cc75e truncate_setsize -EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0xa02d5d1b tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0xa033d747 next_arg -EXPORT_SYMBOL vmlinux 0xa03d5004 misc_register -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa044f153 neigh_update -EXPORT_SYMBOL vmlinux 0xa054e8ed iucv_unregister -EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute -EXPORT_SYMBOL vmlinux 0xa066d89f xa_store_range -EXPORT_SYMBOL vmlinux 0xa066e7b0 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0xa06e587a release_firmware -EXPORT_SYMBOL vmlinux 0xa0768de1 dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -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 0xa09c7128 proto_register -EXPORT_SYMBOL vmlinux 0xa09f5046 lookup_one -EXPORT_SYMBOL vmlinux 0xa0a15b49 smp_call_function_many -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 0xa0c8fc90 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xa0d3d560 ksize -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 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 0xa160206b __scm_destroy -EXPORT_SYMBOL vmlinux 0xa163ea72 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0xa173b111 dquot_commit -EXPORT_SYMBOL vmlinux 0xa18dc5c5 tty_devnum -EXPORT_SYMBOL vmlinux 0xa1a86035 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0xa1a8cc6c crc_ccitt_false -EXPORT_SYMBOL vmlinux 0xa1aa4189 inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0xa1aa5474 skb_queue_head -EXPORT_SYMBOL vmlinux 0xa1becf06 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0xa1c2d5d1 kbd_keycode -EXPORT_SYMBOL vmlinux 0xa1d5979b find_first_bit_inv -EXPORT_SYMBOL vmlinux 0xa1e463d2 tcp_time_wait -EXPORT_SYMBOL vmlinux 0xa1ec8f1c __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0xa1eeb4b1 con_is_visible -EXPORT_SYMBOL vmlinux 0xa1fee353 tcw_set_tsb -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 0xa23ffc04 groups_sort -EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa2594e57 user_path_at_empty -EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte -EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled -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 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 0xa2e17323 pmdp_xchg_direct -EXPORT_SYMBOL vmlinux 0xa2eb6001 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0xa2f19080 may_setattr -EXPORT_SYMBOL vmlinux 0xa2fc75e7 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0xa31d1dea __xa_erase -EXPORT_SYMBOL vmlinux 0xa34a211c __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0xa34c687e write_cache_pages -EXPORT_SYMBOL vmlinux 0xa3509ddc dev_base_lock -EXPORT_SYMBOL vmlinux 0xa37b959b dquot_file_open -EXPORT_SYMBOL vmlinux 0xa38624a9 seq_write -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 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 0xa3c4b5bb xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0xa3e60932 ccw_device_start_key -EXPORT_SYMBOL vmlinux 0xa3e9ec4b nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xa3f7aa51 __tracepoint_s390_cio_rsch -EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits -EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final -EXPORT_SYMBOL vmlinux 0xa404a7df make_kgid -EXPORT_SYMBOL vmlinux 0xa4051bf6 LZ4_decompress_safe_continue -EXPORT_SYMBOL vmlinux 0xa40b3f9d tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xa416ce26 kobject_del -EXPORT_SYMBOL vmlinux 0xa426c440 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0xa43425c2 path_is_under -EXPORT_SYMBOL vmlinux 0xa43bb446 page_mapping -EXPORT_SYMBOL vmlinux 0xa44b520a __scsi_format_command -EXPORT_SYMBOL vmlinux 0xa45c59bd __SCK__tp_func_s390_cio_chsc -EXPORT_SYMBOL vmlinux 0xa47fcb94 ip_queue_xmit -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 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 0xa52011ab blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xa543e816 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa5715f57 d_obtain_root -EXPORT_SYMBOL vmlinux 0xa58b31da __wait_on_bit -EXPORT_SYMBOL vmlinux 0xa5978bdc md_update_sb -EXPORT_SYMBOL vmlinux 0xa5cef445 param_get_byte -EXPORT_SYMBOL vmlinux 0xa5d9a03d in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xa5e1e3be kfree_skb_partial -EXPORT_SYMBOL vmlinux 0xa5e859e4 raw3270_deactivate_view -EXPORT_SYMBOL vmlinux 0xa5f93a84 watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -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 0xa6583648 d_rehash -EXPORT_SYMBOL vmlinux 0xa67d5921 dma_fence_free -EXPORT_SYMBOL vmlinux 0xa67ee334 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6b3c3b7 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0xa6bfbcce __bforget -EXPORT_SYMBOL vmlinux 0xa6e9c670 blake2s_compress_generic -EXPORT_SYMBOL vmlinux 0xa6fbbe7b bio_advance -EXPORT_SYMBOL vmlinux 0xa6ffd9d0 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xa70910f5 utf8len -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 0xa7625add kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xa764295f textsearch_destroy -EXPORT_SYMBOL vmlinux 0xa77916ef nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa785efb6 dcbnl_cee_notify -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 0xa7c5ac0d cond_set_guest_storage_key -EXPORT_SYMBOL vmlinux 0xa7c6abba __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xa7d735ae tcp_make_synack -EXPORT_SYMBOL vmlinux 0xa7ee99b9 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa8024a7d put_cmsg -EXPORT_SYMBOL vmlinux 0xa80addd0 __sk_mem_reclaim -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 0xa84c9be1 tcp_v4_md5_hash_skb -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 0xa8949be5 vfs_rename -EXPORT_SYMBOL vmlinux 0xa8b9961a __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0xa8e3fe19 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa8fb50bd skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0xa90bff0a tcp_filter -EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work -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 0xa950f4d0 fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0xa95c4dc1 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa98a143a single_open_size -EXPORT_SYMBOL vmlinux 0xa9a0c997 param_get_ullong -EXPORT_SYMBOL vmlinux 0xa9ac8ee1 gen_new_estimator -EXPORT_SYMBOL vmlinux 0xa9b50faf dev_mc_del -EXPORT_SYMBOL vmlinux 0xa9b7c8da generic_ro_fops -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 0xaa43801c xfrm_policy_insert -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 0xaa5c9395 dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0xaa674ff0 tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0xaa779abf netif_skb_features -EXPORT_SYMBOL vmlinux 0xaa7a1f77 __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0xaa96dae0 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0xaaa14598 netdev_upper_dev_link -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 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 0xaaee1c85 dev_change_flags -EXPORT_SYMBOL vmlinux 0xaaf5734e dma_resv_reserve_shared -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab215910 __getblk_gfp -EXPORT_SYMBOL vmlinux 0xab2cd544 gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init -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 0xab7d1171 __dynamic_netdev_dbg -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 0xabbff03d __f_setown -EXPORT_SYMBOL vmlinux 0xabcb2233 lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0xabcc4642 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0xabdcc2b2 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0xabe0dbd7 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xabe1431b trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xabf5fad5 tcf_action_exec -EXPORT_SYMBOL vmlinux 0xac07fe50 xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0xac13fdce dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac37111f pci_msi_vec_count -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 0xac6ad434 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0xac7a3946 __lock_sock_fast -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 0xacad3ccf device_get_mac_address -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xad13b7ee freeze_bdev -EXPORT_SYMBOL vmlinux 0xad1441f0 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xad1f252c pin_user_pages -EXPORT_SYMBOL vmlinux 0xad299b78 ioremap_wc -EXPORT_SYMBOL vmlinux 0xad304496 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xad364f3c cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0xad4aee39 strncpy -EXPORT_SYMBOL vmlinux 0xad52e541 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xad6c3f78 dqstats -EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad8bccad param_set_ulong -EXPORT_SYMBOL vmlinux 0xada09ad2 dfltcc_can_inflate -EXPORT_SYMBOL vmlinux 0xada0f525 dev_alloc_name -EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final -EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xadd912a4 __d_drop -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae06002a kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xae1384dd pci_iounmap -EXPORT_SYMBOL vmlinux 0xae1815e9 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae5b019f tcf_qevent_dump -EXPORT_SYMBOL vmlinux 0xae682894 security_sock_graft -EXPORT_SYMBOL vmlinux 0xae6c0926 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0xae6f6571 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0xae7789ad md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0xae843798 ap_queue_message -EXPORT_SYMBOL vmlinux 0xae8cb570 pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0xae8e1d50 dev_change_proto_down_generic -EXPORT_SYMBOL vmlinux 0xae9cc4d2 tcp_disconnect -EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid -EXPORT_SYMBOL vmlinux 0xaeb212e2 __alloc_skb -EXPORT_SYMBOL vmlinux 0xaebdf85f refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0xaecb197b proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xaed7b2ea ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xaed97cff neigh_seq_stop -EXPORT_SYMBOL vmlinux 0xaeee6136 debug_set_level -EXPORT_SYMBOL vmlinux 0xaf016c67 get_tree_keyed -EXPORT_SYMBOL vmlinux 0xaf0b6c27 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf9f9085 dev_get_mac_address -EXPORT_SYMBOL vmlinux 0xafe34f0d blk_mq_queue_stopped -EXPORT_SYMBOL vmlinux 0xafe82e10 strcspn -EXPORT_SYMBOL vmlinux 0xb00518c5 kernel_read -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 0xb058ca07 dim_calc_stats -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb06598dc register_sysctl -EXPORT_SYMBOL vmlinux 0xb06fb1b5 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0xb0b73c0d skb_free_datagram -EXPORT_SYMBOL vmlinux 0xb0b9f6c1 scsi_partsize -EXPORT_SYMBOL vmlinux 0xb0bc7f72 default_qdisc_ops -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 0xb0f008de ndo_dflt_fdb_dump -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 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb13b69dc filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xb14f385b sock_pfree -EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 -EXPORT_SYMBOL vmlinux 0xb1572619 dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0xb16c78f9 param_set_ushort -EXPORT_SYMBOL vmlinux 0xb1874eb6 tty_check_change -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 0xb1d3a15c blk_finish_plug -EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -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 0xb2240f46 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0xb227134c padata_alloc_shell -EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xb23ba40d filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0xb24c7061 inet6_release -EXPORT_SYMBOL vmlinux 0xb24fa993 seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xb2504a5f rt6_lookup -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 0xb2b0d772 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0xb2c5936e xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xb2d70265 tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0xb2db7c35 __blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0xb2def0c2 __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xb2f133da release_sock -EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken -EXPORT_SYMBOL vmlinux 0xb314eb46 audit_log -EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one -EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 -EXPORT_SYMBOL vmlinux 0xb35a44a9 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0xb3671b55 dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb37787df logfc -EXPORT_SYMBOL vmlinux 0xb37b248e debug_register_mode -EXPORT_SYMBOL vmlinux 0xb381ff9e ida_destroy -EXPORT_SYMBOL vmlinux 0xb38beebf sync_file_get_fence -EXPORT_SYMBOL vmlinux 0xb39347cc xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0xb3ade2b7 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3de63ed dev_loopback_xmit -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 0xb41bf7d5 ipv6_sock_mc_drop -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 0xb4577062 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0xb4685ea0 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0xb48afc8e locks_free_lock -EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb48eff6c reuseport_add_sock -EXPORT_SYMBOL vmlinux 0xb4932baa flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0xb49c699d dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0xb4c371b6 __skb_get_hash -EXPORT_SYMBOL vmlinux 0xb4d32233 nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0xb4e12171 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb50cc9cb ZSTD_isFrame -EXPORT_SYMBOL vmlinux 0xb51ae881 inode_add_bytes -EXPORT_SYMBOL vmlinux 0xb5322756 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0xb534f61f __kfifo_alloc -EXPORT_SYMBOL vmlinux 0xb53b26c9 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xb54f2002 tcf_qevent_validate_change -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 0xb587714c sk_common_release -EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat -EXPORT_SYMBOL vmlinux 0xb596e30b __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xb59df83a io_uring_get_socket -EXPORT_SYMBOL vmlinux 0xb5a19a0b csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5a6749b blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5b95348 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0xb5cb0b35 xfrm_state_free -EXPORT_SYMBOL vmlinux 0xb5d3119d _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xb5dae55d bio_split -EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5e7ea48 km_policy_expired -EXPORT_SYMBOL vmlinux 0xb5f1c1c2 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xb625749c ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0xb6308446 __load_fpu_regs -EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb65bc959 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor -EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -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 0xb6ab14e2 ip_frag_init -EXPORT_SYMBOL vmlinux 0xb6b79985 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0xb6b8be92 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0xb6c4f74e pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0xb6e1abc6 unregister_cdrom -EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -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 0xb719598a __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb729a3ca lock_sock_nested -EXPORT_SYMBOL vmlinux 0xb748f971 dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0xb74a1ceb t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0xb75fe9e3 sk_error_report -EXPORT_SYMBOL vmlinux 0xb7769a03 tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0xb78700c3 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb7958141 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0xb7a1ecd1 kbd_ioctl -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 0xb7c865e5 neigh_table_init -EXPORT_SYMBOL vmlinux 0xb7ee2a2c diag26c -EXPORT_SYMBOL vmlinux 0xb7fdc703 md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0xb8074ce2 __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0xb8190ad7 inet6_bind -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 0xb82c15f9 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0xb84ff277 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key -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 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8c5733c pci_map_rom -EXPORT_SYMBOL vmlinux 0xb8d7e41f dqput -EXPORT_SYMBOL vmlinux 0xb8e97783 proc_douintvec -EXPORT_SYMBOL vmlinux 0xb9034bff inet_frags_fini -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 0xb92ffb49 netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb94f4d5d __kmalloc_node_track_caller -EXPORT_SYMBOL vmlinux 0xb960abf4 sock_bind_add -EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb97a1256 inode_needs_sync -EXPORT_SYMBOL vmlinux 0xb99dd7f3 dev_change_proto_down_reason -EXPORT_SYMBOL vmlinux 0xb9b3fe80 skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0xb9c08008 netdev_has_upper_dev_all_rcu -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 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 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 0xba687203 devm_memunmap -EXPORT_SYMBOL vmlinux 0xba763b19 vfs_link -EXPORT_SYMBOL vmlinux 0xba90365b __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0xba9b6f82 xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0xbaa1e161 dma_resv_init -EXPORT_SYMBOL vmlinux 0xbaaeb2d0 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0xbab50628 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0xbad5fd0e ccw_device_dma_free -EXPORT_SYMBOL vmlinux 0xbaecaa76 bio_devname -EXPORT_SYMBOL vmlinux 0xbaecf712 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xbaef18a3 blk_queue_physical_block_size -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 0xbb342606 tcp_splice_read -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -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 0xbb65e2e5 skb_expand_head -EXPORT_SYMBOL vmlinux 0xbb79b5f0 inet6_getname -EXPORT_SYMBOL vmlinux 0xbb8cf99e nf_getsockopt -EXPORT_SYMBOL vmlinux 0xbb8d2c4a wait_on_page_private_2 -EXPORT_SYMBOL vmlinux 0xbb91bc4b blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0xbb9d0dc5 bin2hex -EXPORT_SYMBOL vmlinux 0xbbe63d1b netlink_capable -EXPORT_SYMBOL vmlinux 0xbc250064 end_page_private_2 -EXPORT_SYMBOL vmlinux 0xbc2a77ee __scsi_add_device -EXPORT_SYMBOL vmlinux 0xbc4a7395 xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0xbc624086 key_link -EXPORT_SYMBOL vmlinux 0xbc64e591 mptcp_subflow_reqsk_alloc -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 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcd8a781 flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0xbcee4344 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0xbd136d49 dma_resv_fini -EXPORT_SYMBOL vmlinux 0xbd248c00 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xbd467a2f register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0xbd4c6a9b pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0xbd9717b3 blk_put_request -EXPORT_SYMBOL vmlinux 0xbd996eab xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0xbda47fec jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0xbdd2d184 netdev_name_node_alt_create -EXPORT_SYMBOL vmlinux 0xbdd59231 d_instantiate_new -EXPORT_SYMBOL vmlinux 0xbe0b38fa tcf_idr_create_from_flags -EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock -EXPORT_SYMBOL vmlinux 0xbe1b76e2 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0xbe250438 tcf_qevent_handle -EXPORT_SYMBOL vmlinux 0xbe38f8fb flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0xbe3b3cfa hmm_range_fault -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 0xbe93c2b5 skb_checksum -EXPORT_SYMBOL vmlinux 0xbea28ca3 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0xbec19dfe dquot_destroy -EXPORT_SYMBOL vmlinux 0xbeda4d51 netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0xbedfc3a2 inet_recvmsg -EXPORT_SYMBOL vmlinux 0xbef2b256 copy_page_from_iter_atomic -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbef4ac81 nexthop_bucket_set_hw_flags -EXPORT_SYMBOL vmlinux 0xbef53f33 scnprintf -EXPORT_SYMBOL vmlinux 0xbefebb47 netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0xbf2b1e69 udp_ioctl -EXPORT_SYMBOL vmlinux 0xbf31e707 free_netdev -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 0xbf71a2b2 netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0xbf9a5a1e __init_rwsem -EXPORT_SYMBOL vmlinux 0xbf9b2bc7 vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfaec767 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0xbfc1090c scsi_unblock_requests -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 0xbff8e608 rtnl_notify -EXPORT_SYMBOL vmlinux 0xc0116868 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0xc036908e md_unregister_thread -EXPORT_SYMBOL vmlinux 0xc0496c82 tcp_gro_complete -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 0xc0a847da __ip_queue_xmit -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 0xc0e19543 lowcore_ptr -EXPORT_SYMBOL vmlinux 0xc0e5e4e6 itcw_get_tcw -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 0xc11e4c56 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0xc11f878a flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0xc120caa6 diag_stat_inc -EXPORT_SYMBOL vmlinux 0xc1224954 inet_put_port -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 0xc1447f79 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict -EXPORT_SYMBOL vmlinux 0xc16a2862 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc182e4b5 tcp_parse_options -EXPORT_SYMBOL vmlinux 0xc1b112c9 input_flush_device -EXPORT_SYMBOL vmlinux 0xc1c715de alloc_pages -EXPORT_SYMBOL vmlinux 0xc1c8f8be raw3270_activate_view -EXPORT_SYMBOL vmlinux 0xc1d32450 napi_complete_done -EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed -EXPORT_SYMBOL vmlinux 0xc1d746eb __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1eeb167 sock_no_getname -EXPORT_SYMBOL vmlinux 0xc212f2ab prandom_bytes -EXPORT_SYMBOL vmlinux 0xc220cd5a configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0xc2211cb4 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0xc22d1dff neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xc23bcada pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xc2432769 send_sig_mceerr -EXPORT_SYMBOL vmlinux 0xc250590f strnlen_user -EXPORT_SYMBOL vmlinux 0xc2529439 inet_release -EXPORT_SYMBOL vmlinux 0xc255dc21 netdev_emerg -EXPORT_SYMBOL vmlinux 0xc25893f8 inet_ioctl -EXPORT_SYMBOL vmlinux 0xc27e652e register_qdisc -EXPORT_SYMBOL vmlinux 0xc27ee138 __SCK__tp_func_s390_cio_stsch -EXPORT_SYMBOL vmlinux 0xc28c3d64 vfs_mkobj -EXPORT_SYMBOL vmlinux 0xc29a1878 abort_creds -EXPORT_SYMBOL vmlinux 0xc2a720c3 generic_file_fsync -EXPORT_SYMBOL vmlinux 0xc2dd70da block_write_full_page -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2f7204f __kfree_skb -EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state -EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr -EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc32eb3e3 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0xc3636c6b tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0xc36ac0a0 security_sb_mnt_opts_compat -EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc3a667d2 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xc3b36f40 __udp_disconnect -EXPORT_SYMBOL vmlinux 0xc3b63bd5 dev_add_offload -EXPORT_SYMBOL vmlinux 0xc3d5fb82 sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0xc3e45457 down_killable -EXPORT_SYMBOL vmlinux 0xc3ec9d79 put_fs_context -EXPORT_SYMBOL vmlinux 0xc407668d reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0xc4085120 scsi_dma_map -EXPORT_SYMBOL vmlinux 0xc40d09cc vlan_for_each -EXPORT_SYMBOL vmlinux 0xc41292ea skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc439853f netif_rx -EXPORT_SYMBOL vmlinux 0xc45eed06 __free_pages -EXPORT_SYMBOL vmlinux 0xc468c056 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0xc46a63d4 cpumask_next -EXPORT_SYMBOL vmlinux 0xc46d80b8 no_llseek -EXPORT_SYMBOL vmlinux 0xc46e9322 simple_rename -EXPORT_SYMBOL vmlinux 0xc475471a raw3270_del_view -EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc4a22e74 fget -EXPORT_SYMBOL vmlinux 0xc4b15d0e scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0xc4b7235e tty_do_resize -EXPORT_SYMBOL vmlinux 0xc4ceb544 devm_register_netdev -EXPORT_SYMBOL vmlinux 0xc4f794c2 pskb_extract -EXPORT_SYMBOL vmlinux 0xc4fc7679 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0xc5142267 tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0xc51c81b7 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0xc528b5ee xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0xc537b4be inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0xc53aef5c sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0xc54561ed truncate_pagecache -EXPORT_SYMBOL vmlinux 0xc5628edb dev_queue_xmit -EXPORT_SYMBOL vmlinux 0xc57b41f2 ZSTD_decompress_usingDict -EXPORT_SYMBOL vmlinux 0xc57b8611 diag210 -EXPORT_SYMBOL vmlinux 0xc584820c pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0xc5974adf tcp_sendpage -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xc5a8316b neigh_seq_start -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 0xc5b0a91b ip6tun_encaps -EXPORT_SYMBOL vmlinux 0xc5b0d06f lockref_put_return -EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5c8b56c raw_copy_to_user -EXPORT_SYMBOL vmlinux 0xc5d4a7d8 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0xc5e0b142 vm_map_ram -EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -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 0xc6228742 xfrm_lookup_route -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 0xc66a8304 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xc66eeca9 configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0xc672d6ff scsi_done -EXPORT_SYMBOL vmlinux 0xc6a81f94 skb_flow_dissect_meta -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 0xc6f825a2 tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0xc6f8989b airq_iv_release -EXPORT_SYMBOL vmlinux 0xc718ebf1 sock_no_listen -EXPORT_SYMBOL vmlinux 0xc74b85fb dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0xc75e44e4 flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0xc7635b37 tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc79f207e revert_creds -EXPORT_SYMBOL vmlinux 0xc7a24d76 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7baf173 sk_send_sigurg -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 0xc7e88608 tcp_connect -EXPORT_SYMBOL vmlinux 0xc8106878 gen_pool_fixed_alloc -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 0xc866a088 filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0xc86773cf param_get_long -EXPORT_SYMBOL vmlinux 0xc8692c8a cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xc86a6174 __kfifo_from_user_r -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 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8ea6622 generic_read_dir -EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0xc91be317 dst_discard_out -EXPORT_SYMBOL vmlinux 0xc921e1b8 inode_insert5 -EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xc93f6a68 ccw_device_dma_zalloc -EXPORT_SYMBOL vmlinux 0xc94fdebf __genradix_ptr -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 0xc99302f9 cont_write_begin -EXPORT_SYMBOL vmlinux 0xc9c66fde skb_ext_add -EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9e3045b vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xc9f23b7a dns_query -EXPORT_SYMBOL vmlinux 0xc9f40780 pci_write_config_word -EXPORT_SYMBOL vmlinux 0xc9f50022 sock_setsockopt -EXPORT_SYMBOL vmlinux 0xca0519b0 __page_symlink -EXPORT_SYMBOL vmlinux 0xca0a80c4 xp_free -EXPORT_SYMBOL vmlinux 0xca12e784 fput -EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca2eea3b ip_local_deliver -EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca5262ad component_match_add_release -EXPORT_SYMBOL vmlinux 0xca55b472 __check_sticky -EXPORT_SYMBOL vmlinux 0xca652ecb ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca9f9ba0 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0xcabc3fef neigh_lookup -EXPORT_SYMBOL vmlinux 0xcac61cf4 seq_putc -EXPORT_SYMBOL vmlinux 0xcad0535d inet_csk_accept -EXPORT_SYMBOL vmlinux 0xcae3a07a sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -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 0xcb3b2139 netlink_ack -EXPORT_SYMBOL vmlinux 0xcb5c7f1e dma_unmap_page_attrs -EXPORT_SYMBOL vmlinux 0xcb61b275 class3270 -EXPORT_SYMBOL vmlinux 0xcb8923d3 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xcb8c016b dev_disable_lro -EXPORT_SYMBOL vmlinux 0xcb94992d tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0xcb970b29 sock_set_reuseaddr -EXPORT_SYMBOL vmlinux 0xcba6550b __SCK__tp_func_s390_cio_xsch -EXPORT_SYMBOL vmlinux 0xcbb048a8 tcf_classify -EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcc2d8b17 kthread_create_worker -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 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc8867e1 reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0xcc89eb95 napi_gro_frags -EXPORT_SYMBOL vmlinux 0xccb491e8 bsearch -EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xcce560c1 stop_tty -EXPORT_SYMBOL vmlinux 0xcced7df6 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xccf11b68 iget_locked -EXPORT_SYMBOL vmlinux 0xccf1f15d clear_bdi_congested -EXPORT_SYMBOL vmlinux 0xccf2315c kern_path -EXPORT_SYMBOL vmlinux 0xccf2594f ip_options_compile -EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics -EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0xcd0c29d2 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd37d97a dquot_quota_off -EXPORT_SYMBOL vmlinux 0xcd629e86 prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0xcd8a4f8b t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0xcda786c5 __seq_open_private -EXPORT_SYMBOL vmlinux 0xcdabf19b __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0xcdac8b85 tcf_generic_walker -EXPORT_SYMBOL vmlinux 0xcdb274af scsi_host_busy -EXPORT_SYMBOL vmlinux 0xcdc0db30 set_bdi_congested -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -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 0xcdf65baa can_nice -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 0xce325687 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xce40cd19 unlock_rename -EXPORT_SYMBOL vmlinux 0xce42f1ce hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0xce49cb53 generic_fillattr -EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xce5600bb tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce5c54ef netif_schedule_queue -EXPORT_SYMBOL vmlinux 0xce7dc93e dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xce8ab8f5 generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0xce8b41eb mem_section -EXPORT_SYMBOL vmlinux 0xce8fff65 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceb6d87b tcp_get_md5sig_pool -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 0xcf10493a md_reload_sb -EXPORT_SYMBOL vmlinux 0xcf180c35 pin_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xcf2189ad grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xcf2b46ad __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0xcf35cd3e ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xcf38ec97 dm_table_get_size -EXPORT_SYMBOL vmlinux 0xcf488ae9 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0xcf5a5cb0 devm_request_resource -EXPORT_SYMBOL vmlinux 0xcf64b0d5 raw3270_request_free -EXPORT_SYMBOL vmlinux 0xcf70b0fa filemap_flush -EXPORT_SYMBOL vmlinux 0xcf8f3b49 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcfaa00ba gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0xcfc3fabd stream_open -EXPORT_SYMBOL vmlinux 0xcfef5683 udp_seq_start -EXPORT_SYMBOL vmlinux 0xd0174c4a debug_sprintf_view -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 0xd05edaca xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0xd061f47f vfs_symlink -EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd089df3c skb_push -EXPORT_SYMBOL vmlinux 0xd09d6809 page_pool_alloc_frag -EXPORT_SYMBOL vmlinux 0xd09e38ca vfs_iocb_iter_write -EXPORT_SYMBOL vmlinux 0xd0a77bdd bioset_init -EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock -EXPORT_SYMBOL vmlinux 0xd0b8a419 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xd0c9554b tcp_seq_stop -EXPORT_SYMBOL vmlinux 0xd0e67b0e skb_tx_error -EXPORT_SYMBOL vmlinux 0xd0f7db35 vfs_fsync -EXPORT_SYMBOL vmlinux 0xd1055514 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0xd10a700c md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xd112884e dev_change_proto_down -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 0xd1634a94 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0xd164be8e tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xd1667911 pci_iomap_range -EXPORT_SYMBOL vmlinux 0xd1708fc8 netif_set_real_num_queues -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 0xd18aebc5 ip_frag_next -EXPORT_SYMBOL vmlinux 0xd18f4eef iterate_fd -EXPORT_SYMBOL vmlinux 0xd19bf18b inode_init_once -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 0xd1eae7e3 sync_filesystem -EXPORT_SYMBOL vmlinux 0xd1f5456f xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0xd1fb81bb security_inode_init_security -EXPORT_SYMBOL vmlinux 0xd209e848 memcpy_and_pad -EXPORT_SYMBOL vmlinux 0xd2260096 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0xd22a4b42 sock_set_priority -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 0xd26c848e sock_wmalloc -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 0xd28a2bdb netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0xd29ab094 d_alloc -EXPORT_SYMBOL vmlinux 0xd2a25ea8 submit_bio -EXPORT_SYMBOL vmlinux 0xd2b54fba napi_schedule_prep -EXPORT_SYMBOL vmlinux 0xd2baa5e0 security_path_mkdir -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e65c51 __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0xd2f13af5 dquot_commit_info -EXPORT_SYMBOL vmlinux 0xd3058474 sock_register -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 0xd36a2756 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 -EXPORT_SYMBOL vmlinux 0xd391c25b __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xd3979e35 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xd39e34a5 xp_set_rxq_info -EXPORT_SYMBOL vmlinux 0xd3ab513e sock_recvmsg -EXPORT_SYMBOL vmlinux 0xd3af979c memdup_user -EXPORT_SYMBOL vmlinux 0xd3b228a7 regset_get -EXPORT_SYMBOL vmlinux 0xd3b2f420 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0xd3c0fa24 netlink_rcv_skb -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 0xd402bda1 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd40b7b2d vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0xd42db332 skb_copy_expand -EXPORT_SYMBOL vmlinux 0xd443e5e6 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xd47f5a3d jbd2_journal_load -EXPORT_SYMBOL vmlinux 0xd48f69c8 tcw_get_tsb -EXPORT_SYMBOL vmlinux 0xd4952cc0 cpumask_next_wrap -EXPORT_SYMBOL vmlinux 0xd4998e68 dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd5078166 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0xd51119ff netpoll_print_options -EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -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 0xd57673bb deactivate_super -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 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5c5717b find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0xd5e22dc1 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0xd5e90454 ap_domain_index -EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd617f432 kernel_bind -EXPORT_SYMBOL vmlinux 0xd62f2cae pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0xd64426b5 __traceiter_s390_cio_hsch -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 0xd671ca19 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource -EXPORT_SYMBOL vmlinux 0xd69b3c98 utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0xd69bf355 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0xd69d2788 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0xd69dd6e7 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xd6aa34f5 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0xd6ad5b97 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0xd6d911b2 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0xd6e1695a ccw_device_tm_start_key -EXPORT_SYMBOL vmlinux 0xd6e72174 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash -EXPORT_SYMBOL vmlinux 0xd6eb5b47 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced -EXPORT_SYMBOL vmlinux 0xd7003ac2 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe -EXPORT_SYMBOL vmlinux 0xd73e6a98 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0xd74d6864 raw3270_request_add_data -EXPORT_SYMBOL vmlinux 0xd74fb5c1 rdmacg_try_charge -EXPORT_SYMBOL vmlinux 0xd754a172 del_gendisk -EXPORT_SYMBOL vmlinux 0xd75dd226 cdev_set_parent -EXPORT_SYMBOL vmlinux 0xd76e93d2 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xd775ee56 close_fd_get_file -EXPORT_SYMBOL vmlinux 0xd78f0771 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0xd7912ec9 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0xd7998be0 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0xd7ce6b70 __lock_page -EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7e1c5e1 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd827fff3 memremap -EXPORT_SYMBOL vmlinux 0xd83849e2 ZSTD_getDictID_fromFrame -EXPORT_SYMBOL vmlinux 0xd88d6805 input_match_device_id -EXPORT_SYMBOL vmlinux 0xd88dbbf4 refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd89e513a tty_port_hangup -EXPORT_SYMBOL vmlinux 0xd8a92b68 skb_seq_read -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8acefd0 nf_reinject -EXPORT_SYMBOL vmlinux 0xd8adf0af mpage_writepage -EXPORT_SYMBOL vmlinux 0xd8b3bd7b pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font -EXPORT_SYMBOL vmlinux 0xd8e1b10c skb_dump -EXPORT_SYMBOL vmlinux 0xd8ed7319 seq_read_iter -EXPORT_SYMBOL vmlinux 0xd8f1cebc zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xd8fcb790 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0xd8fcda72 cpcmd -EXPORT_SYMBOL vmlinux 0xd8fea321 __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xd92f6324 build_skb -EXPORT_SYMBOL vmlinux 0xd93dd3c3 proc_dointvec -EXPORT_SYMBOL vmlinux 0xd9435d6b security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0xd9454bbc raw3270_reset -EXPORT_SYMBOL vmlinux 0xd9573abc pci_select_bars -EXPORT_SYMBOL vmlinux 0xd960d4d2 filemap_map_pages -EXPORT_SYMBOL vmlinux 0xd9662661 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xd96de8cb __sysfs_match_string -EXPORT_SYMBOL vmlinux 0xd972b66e dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9985eb3 tcf_exts_terse_dump -EXPORT_SYMBOL vmlinux 0xd9b3f97d console_devno -EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9e1b355 vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0xda040352 tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0xda1fed52 scsi_device_put -EXPORT_SYMBOL vmlinux 0xda27ada7 flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda584d85 cdev_device_add -EXPORT_SYMBOL vmlinux 0xda652273 reuseport_alloc -EXPORT_SYMBOL vmlinux 0xda6fa05c _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0xda729d26 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xdaa49232 seq_hex_dump -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdae162cb string_unescape -EXPORT_SYMBOL vmlinux 0xdaefd68f ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0xdb2c7aed unlock_buffer -EXPORT_SYMBOL vmlinux 0xdb3296c3 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0xdb35f444 md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0xdb377f13 file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0xdb3a4640 dev_mc_flush -EXPORT_SYMBOL vmlinux 0xdb53981b ccw_device_start_timeout_key -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb7cffd1 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0xdb7de56b ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0xdb810ea9 read_cache_pages -EXPORT_SYMBOL vmlinux 0xdb8e483f tty_unthrottle -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 0xdbac0a41 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0xdbc23f98 tcf_exts_change -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 0xdc0645ff xfrm_state_add -EXPORT_SYMBOL vmlinux 0xdc06b056 udp_lib_getsockopt -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 0xdc49c198 reciprocal_value_adv -EXPORT_SYMBOL vmlinux 0xdc4fbe8e dma_sync_single_for_device -EXPORT_SYMBOL vmlinux 0xdc5b700f pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0xdc5da49e jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0xdc8b430d get_task_cred -EXPORT_SYMBOL vmlinux 0xdc96f398 __SCK__tp_func_s390_cio_csch -EXPORT_SYMBOL vmlinux 0xdc97c251 sk_stream_error -EXPORT_SYMBOL vmlinux 0xdcaace61 fs_param_is_u64 -EXPORT_SYMBOL vmlinux 0xdcc409bc fuse_mount_destroy -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 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd4859b0 block_write_begin -EXPORT_SYMBOL vmlinux 0xdd5122fb open_exec -EXPORT_SYMBOL vmlinux 0xdd627f0e neigh_parms_release -EXPORT_SYMBOL vmlinux 0xdd8391e6 tcp_req_err -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 0xde0bdcff memset -EXPORT_SYMBOL vmlinux 0xde1371ce radix_tree_tagged -EXPORT_SYMBOL vmlinux 0xde2b4086 param_get_int -EXPORT_SYMBOL vmlinux 0xde405cd3 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0xde50659a generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xde623eda jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0xde63216a seq_vprintf -EXPORT_SYMBOL vmlinux 0xde66eb80 km_state_notify -EXPORT_SYMBOL vmlinux 0xde6cdda1 tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0xde82583d kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0xde83b83e sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0xde8a415c xor_block_xc -EXPORT_SYMBOL vmlinux 0xdeb2bf1a _dev_alert -EXPORT_SYMBOL vmlinux 0xdebb8a67 gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdeda2ae2 tcw_get_data -EXPORT_SYMBOL vmlinux 0xdede4794 sock_init_data_uid -EXPORT_SYMBOL vmlinux 0xdee93fff dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xdeefd47f vfs_mkdir -EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdef84f9f radix_tree_lookup -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 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf319037 mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0xdf3e8182 security_task_getsecid_subj -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf6d476e __percpu_counter_init -EXPORT_SYMBOL vmlinux 0xdf74b6cd tcp_prot -EXPORT_SYMBOL vmlinux 0xdf7ce5ec ccw_device_set_online -EXPORT_SYMBOL vmlinux 0xdf806254 register_filesystem -EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdfa9acca smp_cpu_mtid -EXPORT_SYMBOL vmlinux 0xdfb4a66d __register_binfmt -EXPORT_SYMBOL vmlinux 0xdfbac449 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0xdfbb6678 simple_nosetlease -EXPORT_SYMBOL vmlinux 0xdfc4c3dd bdev_dax_pgoff -EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi -EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe01969d2 dst_init -EXPORT_SYMBOL vmlinux 0xe02741f7 open_with_fake_path -EXPORT_SYMBOL vmlinux 0xe040c013 sock_bindtoindex -EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe043e345 get_guest_storage_key -EXPORT_SYMBOL vmlinux 0xe068a91c gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0xe07cdc41 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups -EXPORT_SYMBOL vmlinux 0xe091c977 list_sort -EXPORT_SYMBOL vmlinux 0xe096317f seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start -EXPORT_SYMBOL vmlinux 0xe0a71ff4 dev_remove_offload -EXPORT_SYMBOL vmlinux 0xe0a9bc13 key_unlink -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0b9c79c __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0xe0bc4fb2 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xe0c2bf64 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0xe103b13f jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0xe10595c9 __tracepoint_s390_cio_tpi -EXPORT_SYMBOL vmlinux 0xe109a412 tcp_stream_memory_free -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 0xe1b4df5e netpoll_poll_enable -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 0xe1ec047b tcp_shutdown -EXPORT_SYMBOL vmlinux 0xe1f24605 __mod_lruvec_page_state -EXPORT_SYMBOL vmlinux 0xe1f55139 page_get_link -EXPORT_SYMBOL vmlinux 0xe1f5802b __do_once_done -EXPORT_SYMBOL vmlinux 0xe20cd522 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xe254f4f8 xa_get_mark -EXPORT_SYMBOL vmlinux 0xe25aef2b filemap_check_errors -EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe2740e56 ZSTD_getFrameContentSize -EXPORT_SYMBOL vmlinux 0xe27d87a4 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0xe28501df set_user_nice -EXPORT_SYMBOL vmlinux 0xe28da80b tccb_add_dcw -EXPORT_SYMBOL vmlinux 0xe29d2d02 __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0xe2ac6783 inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0xe2d0126d mod_node_page_state -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2d6c175 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0xe2de6add nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0xe2f1fae9 tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0xe2f603c1 udp_gro_receive -EXPORT_SYMBOL vmlinux 0xe2fc59b3 seq_file_path -EXPORT_SYMBOL vmlinux 0xe30be315 hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe31a238b xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe34676a5 nlmsg_notify -EXPORT_SYMBOL vmlinux 0xe35fb609 kmemdup -EXPORT_SYMBOL vmlinux 0xe3648552 write_inode_now -EXPORT_SYMBOL vmlinux 0xe3672aaf qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0xe36b5856 inet_addr_type -EXPORT_SYMBOL vmlinux 0xe37a4a0f kill_pgrp -EXPORT_SYMBOL vmlinux 0xe37d092b dev_get_stats -EXPORT_SYMBOL vmlinux 0xe387d3b1 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0xe396b4b4 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe39fd3ba netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0xe3a1b6df jbd2_fc_end_commit_fallback -EXPORT_SYMBOL vmlinux 0xe3a2ebc0 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xe3aae368 xp_dma_map -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 0xe4294610 loop_register_transfer -EXPORT_SYMBOL vmlinux 0xe43b4084 qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0xe43d9ab2 slash_name -EXPORT_SYMBOL vmlinux 0xe44e641a textsearch_unregister -EXPORT_SYMBOL vmlinux 0xe45df83a blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xe48e1b73 param_ops_byte -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 0xe4df9aec hdmi_drm_infoframe_unpack_only -EXPORT_SYMBOL vmlinux 0xe4f9fc0f mount_bdev -EXPORT_SYMBOL vmlinux 0xe4fdf1a5 tso_build_data -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 0xe5368fc1 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe555c7ab radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xe5584c14 xfrm_init_state -EXPORT_SYMBOL vmlinux 0xe5641807 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xe5652e83 sie64a -EXPORT_SYMBOL vmlinux 0xe569a946 netif_napi_add -EXPORT_SYMBOL vmlinux 0xe56b0d0f stsch -EXPORT_SYMBOL vmlinux 0xe572da5f simple_write_begin -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 0xe5a304bd dquot_initialize -EXPORT_SYMBOL vmlinux 0xe5a40783 kernel_listen -EXPORT_SYMBOL vmlinux 0xe5a56ecd idr_get_next -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5d3e118 __sk_receive_skb -EXPORT_SYMBOL vmlinux 0xe5dac8b9 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0xe5ea6124 ZSTD_initDStream -EXPORT_SYMBOL vmlinux 0xe5ee7bca mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -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 0xe6865ca1 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0xe6995aa9 skb_copy_header -EXPORT_SYMBOL vmlinux 0xe69c13df read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xe69d8126 blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0xe6a04127 inet_frag_kill -EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6f1486d dql_reset -EXPORT_SYMBOL vmlinux 0xe704e76d bio_endio -EXPORT_SYMBOL vmlinux 0xe70e184a xa_store -EXPORT_SYMBOL vmlinux 0xe713a97a irq_subclass_unregister -EXPORT_SYMBOL vmlinux 0xe715f7b9 tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe7536048 inode_set_bytes -EXPORT_SYMBOL vmlinux 0xe7556eb2 sock_sendmsg -EXPORT_SYMBOL vmlinux 0xe76d7ccf pci_release_region -EXPORT_SYMBOL vmlinux 0xe777e808 sclp_ap_configure -EXPORT_SYMBOL vmlinux 0xe796f19a hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe798236d jiffies -EXPORT_SYMBOL vmlinux 0xe7a99d3f padata_do_serial -EXPORT_SYMBOL vmlinux 0xe7c23666 kset_register -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7e2e18e end_buffer_async_write -EXPORT_SYMBOL vmlinux 0xe7e45117 rt_dst_clone -EXPORT_SYMBOL vmlinux 0xe8050deb jbd2_journal_set_features -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 0xe847625f ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xe84ad202 skb_clone -EXPORT_SYMBOL vmlinux 0xe871e236 pci_get_slot -EXPORT_SYMBOL vmlinux 0xe878bc7b ip_getsockopt -EXPORT_SYMBOL vmlinux 0xe87ac69c xfrm_state_flush -EXPORT_SYMBOL vmlinux 0xe87bab27 dget_parent -EXPORT_SYMBOL vmlinux 0xe891121d netlink_broadcast -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 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 0xe91b2526 xsk_tx_completed -EXPORT_SYMBOL vmlinux 0xe92c0d94 arp_xmit -EXPORT_SYMBOL vmlinux 0xe947b2f0 __tracepoint_s390_cio_xsch -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95794f2 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xe973a224 filp_open -EXPORT_SYMBOL vmlinux 0xe97d07f1 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0xe98e1478 jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0xe994130a __xa_store -EXPORT_SYMBOL vmlinux 0xe995eee3 __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xe9a344e8 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xe9b81fab ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0xe9b9afbc d_set_d_op -EXPORT_SYMBOL vmlinux 0xe9c58a09 tcw_finalize -EXPORT_SYMBOL vmlinux 0xe9cb4469 invalidate_bdev -EXPORT_SYMBOL vmlinux 0xe9eb0a6e unregister_netdev -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 0xea667d29 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea872313 find_next_bit_inv -EXPORT_SYMBOL vmlinux 0xea9c317a inet_bind -EXPORT_SYMBOL vmlinux 0xeab1886a padata_set_cpumask -EXPORT_SYMBOL vmlinux 0xeabf30cf nf_hook_slow_list -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 0xeb1ae2a9 md_write_end -EXPORT_SYMBOL vmlinux 0xeb220d0e udp6_seq_ops -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 0xeb3a2b4d generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xeb61ab31 misc_deregister -EXPORT_SYMBOL vmlinux 0xeb75268e md_finish_reshape -EXPORT_SYMBOL vmlinux 0xeb786161 pci_dev_get -EXPORT_SYMBOL vmlinux 0xeb9dc55b ap_owned_by_def_drv -EXPORT_SYMBOL vmlinux 0xeb9e7cd7 netlink_set_err -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 0xebacd95a tcf_block_put -EXPORT_SYMBOL vmlinux 0xebbf1dba strncasecmp -EXPORT_SYMBOL vmlinux 0xebc5672c rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0xebcb8bdc kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0xebde404c ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xebeb20ea __nla_put -EXPORT_SYMBOL vmlinux 0xec18b6b6 napi_gro_receive -EXPORT_SYMBOL vmlinux 0xec374166 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0xec3c4034 configfs_register_group -EXPORT_SYMBOL vmlinux 0xec47d996 get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0xec5d3e5e ping_prot -EXPORT_SYMBOL vmlinux 0xec7d89b3 tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0xec9d7c8a __traceiter_s390_diagnose -EXPORT_SYMBOL vmlinux 0xecaa4461 __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0xecad330a fb_validate_mode -EXPORT_SYMBOL vmlinux 0xecb9dc3d security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xecde8f3e get_cached_acl -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecedf846 proto_unregister -EXPORT_SYMBOL vmlinux 0xed1e09a9 sget_fc -EXPORT_SYMBOL vmlinux 0xed20e95b dma_map_page_attrs -EXPORT_SYMBOL vmlinux 0xed26cead done_path_create -EXPORT_SYMBOL vmlinux 0xed2cb590 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0xed2ddcc4 dm_unregister_target -EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock -EXPORT_SYMBOL vmlinux 0xed5d64c4 nla_put_64bit -EXPORT_SYMBOL vmlinux 0xed5f4484 skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed8c428b pci_clear_mwi -EXPORT_SYMBOL vmlinux 0xed96b5b4 tty_port_close_start -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 0xeddc9ff5 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xedf6ea15 xfrm_lookup -EXPORT_SYMBOL vmlinux 0xee08cada iucv_message_purge -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee4de4fb __traceiter_s390_cio_csch -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 0xee8c02e9 vprintk_emit -EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs -EXPORT_SYMBOL vmlinux 0xee9182ba ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeebf03c5 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0xeedff578 __traceiter_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xeefdd55b __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0xef45d32c __kfifo_init -EXPORT_SYMBOL vmlinux 0xef62c778 nobh_write_begin -EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefbd8c79 inet_del_offload -EXPORT_SYMBOL vmlinux 0xefc522f8 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xefc67050 __cpu_active_mask -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 0xf003cd6b end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0xf01ce0c0 migrate_page_copy -EXPORT_SYMBOL vmlinux 0xf05551e9 generic_write_end -EXPORT_SYMBOL vmlinux 0xf0585ed0 finish_swait -EXPORT_SYMBOL vmlinux 0xf05c64f8 iucv_path_connect -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 0xf0860498 kern_path_create -EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0b2ae2f f_setown -EXPORT_SYMBOL vmlinux 0xf0c33914 dst_destroy -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 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 0xf144794f pci_scan_bridge -EXPORT_SYMBOL vmlinux 0xf1491426 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0xf14e2b25 md_bitmap_free -EXPORT_SYMBOL vmlinux 0xf15cc299 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0xf1690224 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0xf1808e2b call_usermodehelper_exec -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 0xf1adc6d2 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xf1b96974 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xf1bd5da0 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0xf1c37cb3 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xf1d87e56 sock_no_bind -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 0xf1ec5d42 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0xf1fe0aac ap_queue_init_reply -EXPORT_SYMBOL vmlinux 0xf21b9c17 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0xf21db033 qdisc_hash_add -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf249c8ea dst_release_immediate -EXPORT_SYMBOL vmlinux 0xf258142c radix_tree_lookup_slot -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 0xf2aa0787 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0xf2b83068 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0xf2bbbef6 lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0xf2bdb85d __xfrm_decode_session -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 0xf2f9a8b0 param_set_uint -EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf31332d2 dev_lstats_read -EXPORT_SYMBOL vmlinux 0xf3156d11 follow_down_one -EXPORT_SYMBOL vmlinux 0xf31c0d52 ioremap -EXPORT_SYMBOL vmlinux 0xf31de61d ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xf32841d5 noop_qdisc -EXPORT_SYMBOL vmlinux 0xf33a9435 raw3270_request_alloc -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 0xf374351f __traceiter_mmap_lock_released -EXPORT_SYMBOL vmlinux 0xf37b12d7 ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused -EXPORT_SYMBOL vmlinux 0xf39ec98a genl_register_family -EXPORT_SYMBOL vmlinux 0xf3b220a8 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3b74f79 __iucv_message_send -EXPORT_SYMBOL vmlinux 0xf3ca733b hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf4102303 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xf41b931a jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xf4210d58 inet_shutdown -EXPORT_SYMBOL vmlinux 0xf43725fb s390_arch_random_counter -EXPORT_SYMBOL vmlinux 0xf438293a __netdev_notify_peers -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 0xf46ea9e7 netdev_lower_dev_get_private -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 0xf48bc269 skb_copy_datagram_from_iter -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 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 0xf528f3ef param_ops_short -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf550909d utf8_validate -EXPORT_SYMBOL vmlinux 0xf573e78d __vmalloc_array -EXPORT_SYMBOL vmlinux 0xf5760f62 ip_fraglist_init -EXPORT_SYMBOL vmlinux 0xf5971082 tcp_simple_retransmit -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 0xf5e6ae71 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf60ffffa ap_get_qdev -EXPORT_SYMBOL vmlinux 0xf62acf2e bdi_register -EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf644294f napi_gro_flush -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 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf667caac inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0xf673b598 jbd2_journal_put_journal_head -EXPORT_SYMBOL vmlinux 0xf6744696 cdev_device_del -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf6a6032d fwnode_irq_get -EXPORT_SYMBOL vmlinux 0xf6b36d11 md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0xf6b3d6fb udp6_csum_init -EXPORT_SYMBOL vmlinux 0xf6bbde0c xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xf6c3caa6 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0xf6c3e4aa wait_for_completion_io -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 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 0xf71e15db ip_sock_set_tos -EXPORT_SYMBOL vmlinux 0xf71efc54 scm_fp_dup -EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf74300d7 arch_vcpu_is_preempted -EXPORT_SYMBOL vmlinux 0xf7499bcd skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0xf749baaa config_group_init -EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xf77e3aed netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xf781cd69 netdev_info -EXPORT_SYMBOL vmlinux 0xf78a3212 ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0xf7917c08 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0xf79faab3 ip_send_check -EXPORT_SYMBOL vmlinux 0xf7a596de ZSTD_initDDict -EXPORT_SYMBOL vmlinux 0xf7b8b0e4 regset_get_alloc -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 0xf7dc40c5 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xf80ba391 netdev_sk_get_lowest_dev -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf8171e37 dcb_ieee_setapp -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 0xf85dd960 dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0xf860e4ed key_alloc -EXPORT_SYMBOL vmlinux 0xf869cf3b devm_memremap -EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf89442ac input_event -EXPORT_SYMBOL vmlinux 0xf8998e5b cpumask_next_and -EXPORT_SYMBOL vmlinux 0xf8a96c33 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0xf8b9584d devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0xf8b9ff47 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 -EXPORT_SYMBOL vmlinux 0xf8e4dd33 security_unix_may_send -EXPORT_SYMBOL vmlinux 0xf8ec9c8d sk_reset_timer -EXPORT_SYMBOL vmlinux 0xf8edb50e do_clone_file_range -EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf90c8574 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0xf916d660 blk_execute_rq -EXPORT_SYMBOL vmlinux 0xf926dbdc tcp_v4_connect -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 0xf97057bf pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0xf9a06e0e ida_free -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9bc3579 cdrom_release -EXPORT_SYMBOL vmlinux 0xf9cacbe3 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xf9ee02c2 dev_mc_init -EXPORT_SYMBOL vmlinux 0xf9f65c7d udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0xf9f6a0ce pci_bus_assign_resources -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 0xfa1d3081 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0xfa34e594 path_get -EXPORT_SYMBOL vmlinux 0xfa383b29 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0xfa4da432 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfa98d245 debug_event_common -EXPORT_SYMBOL vmlinux 0xfaa424e0 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfaadb729 md_error -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 0xfafaa37a alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xfafe0e70 _dev_err -EXPORT_SYMBOL vmlinux 0xfb0177fe framebuffer_release -EXPORT_SYMBOL vmlinux 0xfb077487 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0xfb0d4722 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0xfb2140c1 dump_skip -EXPORT_SYMBOL vmlinux 0xfb25cc8b fget_raw -EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb482dd1 __traceiter_s390_cio_stsch -EXPORT_SYMBOL vmlinux 0xfb49fea3 starget_for_each_device -EXPORT_SYMBOL vmlinux 0xfb4e5dfa unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0xfb503c18 generic_iommu_put_resv_regions -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb759f0d netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0xfb8f58db jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbf94365 param_set_hexint -EXPORT_SYMBOL vmlinux 0xfc0d048f security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0xfc1fa662 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load -EXPORT_SYMBOL vmlinux 0xfc3a102e unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0xfc5d8b5c pci_get_device -EXPORT_SYMBOL vmlinux 0xfc603953 send_sig -EXPORT_SYMBOL vmlinux 0xfc823d03 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0xfca19a41 simple_lookup -EXPORT_SYMBOL vmlinux 0xfca237ab iterate_dir -EXPORT_SYMBOL vmlinux 0xfca4f442 proc_remove -EXPORT_SYMBOL vmlinux 0xfcab75d6 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0xfcada313 tcf_register_action -EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -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 0xfd14aaa0 pci_choose_state -EXPORT_SYMBOL vmlinux 0xfd3ce0e3 dev_remove_pack -EXPORT_SYMBOL vmlinux 0xfd65f262 genlmsg_put -EXPORT_SYMBOL vmlinux 0xfd76f166 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0xfd8f6db4 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0xfd9a9866 stfle_fac_list -EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 -EXPORT_SYMBOL vmlinux 0xfdb12f05 km_query -EXPORT_SYMBOL vmlinux 0xfdb6a62b sock_from_file -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 0xfdccd71d trace_event_printf -EXPORT_SYMBOL vmlinux 0xfdd9db8c dst_alloc -EXPORT_SYMBOL vmlinux 0xfde6e68b __module_put_and_exit -EXPORT_SYMBOL vmlinux 0xfdeb7fac qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe0d4fd2 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe66632a simple_transaction_get -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 0xfeb5d0aa verify_spi_info -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xff03b3df tcp_sync_mss -EXPORT_SYMBOL vmlinux 0xff05a739 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff1f0ae2 add_virt_timer -EXPORT_SYMBOL vmlinux 0xff65e3ba kobject_init -EXPORT_SYMBOL vmlinux 0xff669f6f napi_enable -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff68b632 fs_param_is_blockdev -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 0xff9e28aa fs_param_is_fd -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 0xffc687f0 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffdf3490 vfs_fadvise -EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0xfff1014a __sock_create -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/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 -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x82c3c57b async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x9f5ae29a async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x6fc8ef60 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x71bdadfb async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x4ab45791 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x77bcdb1c async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x9efea3bd async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x2b78a79c async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xb50f3724 async_xor_val_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe1052f83 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xef4aee93 async_xor_offs -EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xd75c3b8f blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x96cc7ac0 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 0x935fb12e 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 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 -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xadd0d3f4 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 0x7033b76e twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey -EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x917faa01 dev_dax_probe -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x0d8f7e10 alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0c4d7854 fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x262b7661 fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x294f6c0c devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2ef75625 fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3bc11a46 fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x70000eca fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x892a0b79 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9c3c6e92 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa330a0bc fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xba75ae63 fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd3484ff9 devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd921f96b fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe6d78ed4 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf12c76e2 fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xe94e317c bgpio_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x045e459b drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0dc7d981 drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x12c5b16d drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2971f8bf drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x320fc49a drm_gem_shmem_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4f6e7fae drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5db69632 drm_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x844ebc95 drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x85fd6cb2 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9124ab94 drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa57f9612 drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa729d146 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad2383b9 drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb162f833 drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb3ec081a drmm_kstrdup -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbfe71d41 drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbff3251d drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc7ad17e3 drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xeda0c8d7 drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf0a54cfb drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf86eb0cf drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x28b5000c drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4401cc6e drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4c4b28e5 drm_bridge_connector_disable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5f277437 drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x75d13855 drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8e9fd035 drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9d23ded9 drm_bridge_connector_enable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc98593d5 drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcbd74204 drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xdd7d41de drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7222364f intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x95f717ef intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa356af8e intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb06a3f0a intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xcb2852fc intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xcdba65ba intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe88e3613 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe96ec993 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xfacf7ef3 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x2735d843 intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x3e143a52 intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x8993e804 intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x18f0a484 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1927a996 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3b772011 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4aac2461 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x808cbd47 stm_source_register_device -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 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 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 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 0x185211b4 rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x29bf4b4f rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4633f401 rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x728efbee rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x735e0f2c rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9af049a3 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa1f8dca6 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd7972802 rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xdc65eab8 rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe41a68ee rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf1310d3c rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfe7b4406 rtrs_cq_qp_create -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 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 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 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 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 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 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact -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 0x53b5e5e3 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cc8cb86 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 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 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 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 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 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 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 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 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 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 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 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x205fa939 dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x22a0aba6 dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x343f9710 dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x45ead5b4 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x45fbc32b dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4e97610c dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x595f65a1 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa3857490 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa901ac0c dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa9a4780b dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xba615a61 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbaf4207c dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbfc17aa4 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcac9d7e6 dm_cell_quiesce_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe1d0b6f4 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 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 0x97b0322b dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb04f56ab dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb2438d54 dm_bufio_release_move -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 0x0a4c56f8 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x19d93a8d 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 0x796a703b dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xd638ed27 dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bb31c4 dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe756dac6 dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe8c5320d dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x221979cb dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x540ed3f0 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 0x12cbb94b 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 0x39650fa0 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3b69df15 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 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 0xabb811f6 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xca054b32 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd6681625 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 0x00f5a3c8 dm_bm_write_lock -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 0x1b1be9e8 dm_sm_disk_open -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 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 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 0x3b45ed28 dm_sm_disk_create -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 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 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 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 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 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 0xa39d80f7 dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa9c4fc6b dm_bm_write_lock_zero -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 0xae600b00 dm_tm_open_with_sm -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb11cd6c1 dm_bm_read_lock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb3d7482b dm_bitset_new -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb500e95b dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 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 0xcbba75fc dm_tm_read_lock -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 0xe781f874 dm_tm_dec -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe8438eb5 dm_array_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf551114d dm_bm_checksum -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 0x07f64eae mlx4_vf_smi_enabled -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 0x12c8e25c mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14499117 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x144aa699 mlx4_qp_free -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 0x1fc14517 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20167aa8 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21e81e75 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2443bc5a mlx4_get_active_ports -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 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 0x33ea2e2d mlx4_set_vf_vlan -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 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 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 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 0x72052654 mlx4_get_slave_default_vlan -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 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 0x7b372f5b mlx4_get_counter_stats -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 0x7e2c147f __mlx4_cmd -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 0x86a744d1 mlx4_set_vf_link_state -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 0x8f5fee2a mlx4_db_free -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 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 0xa33edc88 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3c164e4 mlx4_vf_set_enable_smi_admin -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 0xa8d1caef mlx4_set_vf_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 0xb1c9928e mlx4_get_vf_stats -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 0xb6cfafe7 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb20b87b mlx4_phys_to_slave_port -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 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 0xc64e57a7 mlx4_phys_to_slaves_pport_actv -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 0xcec1d39d mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1da7ed5 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd21e0098 mlx4_alloc_cmd_mailbox -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 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 0xe391173e mlx4_set_vf_rate -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 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 0xeba70161 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee73b7cd mlx4_xrcd_free -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 0x00b4354e mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x029f67e3 mlx5_set_port_caps -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 0x0aafa598 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c8d4592 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e7fc5e4 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10554e75 mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x108ef905 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12972d6b mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1be8bbff mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2276d43e mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27f2dc73 mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2aeca068 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e899e9a mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3136c2cd mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x370ae408 mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3821172c mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x433bb4a3 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x435f2383 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4464d87c mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49bb4948 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49d36e4b mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x568321ae mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58419003 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c55c061 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c5be8b1 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x645902ea mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66097590 mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67dcb39e mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67fb3fca mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73467396 mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7477b3bb mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7aebefe0 mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7caacc47 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80154e03 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87c76bc7 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88d99f7c mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b22156d mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92229cff mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95fcfabb mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a7c9b4d mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b7ff597 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ce9dd0b mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa32dfed8 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa36f3e47 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaab769c8 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaac75048 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3ef0aa3 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb70b2c50 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb84f2dbe mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9355d2f mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb948969d mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9e4512a mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfb475d9 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc490f463 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb8a917a mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd167bbc mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0ff6c15 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5c3bb85 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6a98819 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd71b3897 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xddf85cae mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe801aef0 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe896d937 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeafc978a mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xecd3d453 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee1125bf mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf276ceba mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3ee7e3f mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf74d7cd1 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc5d4585 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff0d5eae mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/geneve 0xa413d755 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x2a0980f2 ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xad8d4930 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc7cc9791 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xeace8c8e ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xf50e44d9 ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/macsec 0x338972b0 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x100e3c73 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x324b6f15 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x64a5777d macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xacbc4533 macvlan_dellink -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/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/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 0x18e4f8aa swphy_read_reg -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 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 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 0x4a84048f __mdiobus_modify_changed -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 -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x6b9f26ed phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x7073c04f phy_10_100_features_array -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 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 0x936e1fb2 genphy_c45_read_link -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 0xb8e3a6e9 mdiobus_modify -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 0xce618651 fwnode_get_phy_node -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 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 -EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0xeedd987e phy_10gbit_features_array -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 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 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 0x57727285 phylink_ethtool_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6831eccf phylink_ethtool_ksettings_get -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 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 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 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 0x5571fa37 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x5c98420b vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x9317233e vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xa759d6dd vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x04489379 nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0f592c9e __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1f0cf132 nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2ae61cf7 nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2f23951d nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2fa55ced nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x33af5cd3 nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3a2725d7 nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3fe3432e nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x567f7027 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6792e989 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6a5b25cf nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6bba2878 nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x710c50a1 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x75f5139d __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x79214d9c nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7cbb3b3d nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7d4a2ceb nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7ea4adfc nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x85f61b7c nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8c99ef16 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x912622cd nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x97c46880 nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa7c5ccf5 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa935d598 nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xacacbd36 nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb20cc45d nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb4dd54e4 nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc9455cf4 nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd2c4bebd nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd3b80231 nvme_change_ctrl_state -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 0xd6180d5f nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd6583890 nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdcb9bdf7 nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe08f49a1 nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeabeb200 nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf1bde5e0 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf2129fa1 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf6504a83 __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf74efbd4 nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfcd61ba7 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfd2799fb nvme_cancel_tagset -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 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x37e15190 nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5263c8df nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x600bdbed nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xae205bc2 nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbd0557a8 nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd84ad803 nvmf_should_reconnect -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 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 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 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 -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x5b41f985 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 0xed1b8ffc switchtec_class -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x0877b017 dasd_alloc_block -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x0ecf345e dasd_generic_read_dev_chars -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x18641a0d dasd_generic_space_exhaust -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x19227556 dasd_nopav -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x20256b36 dasd_wakeup_cb -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x21efa9af dasd_generic_space_avail -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x233f5d43 dasd_device_set_stop_bits -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x2a68d45b dasd_generic_set_offline -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x3123ce50 dasd_biodasdinfo -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x471ff98a dasd_put_device_wake -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x4aaa7747 dasd_generic_verify_path -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x4d4abbb0 dasd_generic_path_event -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x50481504 dasd_generic_handle_state_change -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x5a95fab2 dasd_get_sense -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x62474840 dasd_generic_path_operational -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x64e18c1b dasd_generic_set_online -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x6f7df4dc dasd_dev_groups -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x78c2d4a7 dasd_free_block -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x7e461e22 dasd_flush_device_queue -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x8922a1f4 dasd_generic_last_path_gone -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x898aebda dasd_generic_shutdown -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x8d10a74a dasd_generic_free_discipline -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x93ecb244 dasd_device_remove_stop_bits -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x9762d227 dasd_generic_probe -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x9f78da0d dasd_generic_remove -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb38fe028 dasd_page_cache -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xc5d7c62d dasd_device_is_ro -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xdce38847 dasd_generic_notify -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf0001428 dasd_generic_uc_handler -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf15784f5 dasd_nofcx -EXPORT_SYMBOL_GPL drivers/s390/cio/eadm_sch 0x85d9d140 eadm_start_aob -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x04f192cf qdio_shutdown -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x23c0e637 qdio_alloc_buffers -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x27488bbc qdio_reset_buffers -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x3ce6bd82 qdio_allocate -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x3e0493a3 qdio_establish -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x64fa6b6b do_QDIO -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x775a12d6 qdio_release_aob -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xa04bb255 qdio_free_buffers -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xac0f96ff qdio_get_ssqd_desc -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 0x00c23604 qeth_tx_timeout -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x061aed4f qeth_send_simple_setassparms_prot -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x0ac19deb qeth_get_priority_queue -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1d1217f2 qeth_poll -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2130f3a2 qeth_fix_features -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2908db32 qeth_get_stats64 -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x36d0d3d7 qeth_dbf_longtext -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3831cd4c qeth_open -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3b59661b qeth_send_ipa_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x530015e5 qeth_threads_running -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x70db613d qeth_dbf -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x748832af qeth_features_check -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x7e902e1a qeth_setadpparms_change_macaddr -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x82efa89a qeth_set_real_num_tx_queues -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x84223b7f qeth_xmit -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x8f7531e9 qeth_set_features -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa2bc21f1 qeth_configure_cq -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xaa6d471c qeth_enable_hw_features -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb853a7c4 qeth_setadp_promisc_mode -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xbae2b40e qeth_ipa_alloc_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc10b3d2b qeth_set_allowed_threads -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xcc5861f8 qeth_get_diag_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd0175383 qeth_resize_buffer_pool -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe03f1966 qeth_stop -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe556088a qeth_get_setassparms_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xeb28a436 qeth_vm_request_mac -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xed764c64 qeth_do_ioctl -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf3339608 qeth_siocdevprivate -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf4d17a51 qeth_iqd_select_queue -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf4e61001 qeth_setassparms_cb -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf9eedccc qeth_set_offline -EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0x192e380b qeth_l2_discipline -EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l3 0xc0767527 qeth_l3_discipline -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1e8e5fab fcoe_ctlr_device_add -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 0x48a6761e fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4a7374eb fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5f340c73 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x65f773b6 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x95bd180e fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x988d2fbb fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xab40d1e7 fcoe_libfc_config -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/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 0xec4a7224 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xee03a4e4 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf40ac7ca fcoe_link_speed_update -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 -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6911fdc3 iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x764f4e19 iscsi_boot_create_acpitbl -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 0x03d6f3c1 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x07aae7e0 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0a357ddf iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x10d9dc47 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x17c5aa1f iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x245cdddd __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x251e3b4e iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2580f165 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2fb2747f iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bb21875 iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3c8fcc72 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3d900490 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x425087e3 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x49c20206 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4bed95b3 iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x601b7e57 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6038b7ba iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69b00ff1 iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6e61ebc8 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x74cf5d12 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x83c52fe2 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8609ed1d iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x87b81555 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8e7cd7e0 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xabd04ede iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac0e866d iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xade1fa95 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xadf22c4d iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xae920199 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb0d88c06 iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbaa58304 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc767969 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbe9e470c iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf052a28 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc4f4979e iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd3e9e9d iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xce100355 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcf93d60d __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd0783aff iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd5232597 iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xda622e3b iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe209e763 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe2c2a7b0 iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe34953ce iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe5e2214f iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe6db2f17 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf7b8c1d1 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc06c508 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x11a77a55 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x124ea612 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1ae0fe14 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x209f3101 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x20cd48c8 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3449b06a iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4126c717 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5efb7ed6 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5f203c68 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x67555534 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x72b1196b iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7b985dbb iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x839288df iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xafe915ff iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb447c040 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdecdaa83 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xea2c28e5 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0783a8b9 dev_attr_phy_event_threshold -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 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 0x069ef3ee iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0b047e31 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0b52672b iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0dcdd7b2 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0f8982b2 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x11304c03 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x138fef19 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x14e1d303 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x169e8df2 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a978d20 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2f2bf27f iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3da63908 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52ea4211 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6435081c __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x65513fd9 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x65cd5b33 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x66b5036e iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f7514be iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7eb0f072 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8a335e98 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8dc959ce iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8f744045 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9168d8d3 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x933b896f iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x93971e57 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x94b8f722 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ef94c26 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa0dd17bc __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa5e0f92d iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa87d3988 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa9ae6a62 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa1a6868 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa976bb3 __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb0a64a67 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb1b40ffe iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbe32238e iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcf82c23f __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd0ca8509 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd2eeda0e iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd7d7f066 iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdbadc0b5 __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdfb3405f iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe9a71f44 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf37b3619 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf3898045 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf45c055c iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf6f7d71c iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf921a16d iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfa02a384 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 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 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 -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1349774e slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x172b9bec slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1bcb5b6b slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x27fa7ffd slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2a56239c slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2b3a71fa slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x307614b6 slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3bb3f0b5 slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x45954894 slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4a20f428 __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4e6f8617 slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x61634832 slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x67a139e9 slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x75e45adb slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8e177c26 of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa3899385 slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xae6ebc66 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbd81956e slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc9393e24 slim_stream_enable -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 0x01a2ccf3 target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x219f7079 target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x8b6846d7 target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xd2a6ccd7 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 -EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x83c4bfa5 uart_insert_char -EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x943240ba uart_xchar_out -EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xcc81f468 uart_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xe6c579b8 uart_console_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x2b68f8f6 __devm_uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x6adeba36 __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x96caf0c6 uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0xd1e04267 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xe51748ce mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4659cdfd vfio_pci_core_sriov_configure -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5b2c1c8a vfio_pci_core_read -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x70264f77 vfio_pci_core_unregister_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x76e6a5ad vfio_pci_core_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x78c31eac vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8030f200 vfio_pci_core_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x805ba0cd vfio_pci_core_request -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8b2ccedf vfio_pci_core_disable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x958fba40 vfio_pci_core_match -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x99650fc3 vfio_pci_core_write -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x9ded79c5 vfio_pci_core_register_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xaad062ec vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xacee1639 vfio_pci_register_dev_region -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc9e1d712 vfio_pci_core_uninit_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd89dcf77 vfio_pci_core_close_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe71951f6 vfio_pci_core_init_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfb56e62f vfio_pci_core_mmap -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x00bff0f3 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x10e372f2 vfio_register_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x137849d0 vfio_init_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2b9dcc8e vfio_iommu_group_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x37e968b9 vfio_group_get_external_user_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4cebb240 vfio_uninit_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4d95693f vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x529db99e vfio_info_cap_add -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5b35c4f9 vfio_group_set_kvm -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x61369ac2 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x624cdd9a vfio_assign_device_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xae842967 vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xaeee725c vfio_iommu_group_get -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc36f3f51 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf352f69e vfio_unregister_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf64030fa vfio_group_iommu_domain -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf8cb078d vfio_external_group_match_file -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x13c61700 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x218f16d2 vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0062a8e2 vhost_clear_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x006631cf vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x00855c00 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x13a0f379 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x14303456 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1488afdd vhost_work_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x23a3a82e vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x266601d6 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x286f61c0 vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6680a947 vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7014d7f6 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x72e58e3b vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x736145d8 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x746a19e0 vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7e164c9a vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8206b1ac vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x83abdc27 vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8c0ed853 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x92395ee4 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9ea0838b vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa4ae0947 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa803f48c vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa87ada91 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb9a13499 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbc141147 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc00b99d6 vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc1fa5e66 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc2146d84 vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc3989452 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc4715b2d vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc58b9c7b vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc5fc84c1 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd4a6a2e5 vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd6613104 vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd6e86798 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe0420d95 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe9125cc0 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf0b6f4dc vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf625390b vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf990375b vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xff6cc2c9 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range -EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset -EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x69e872f9 vhost_iotlb_itree_first -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/fbdev/core/fb_sys_fops 0x2dc687d6 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x57cc8758 fb_sys_read -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x23bb371b dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x2980347a dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x59567e54 dlm_posix_get -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 0x15b6a481 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x16858698 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x288124db lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x28ed41e3 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4e96e9bc nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x89a91d59 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf148c709 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x010fd284 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x024bddfc nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03a21506 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x058368a4 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06eccf4a nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0921bb34 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c805073 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cf6ac74 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f97e043 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10518ad2 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13b8c367 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17bbf345 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b177f44 nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c4a377a nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d2dfd40 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e31d8f6 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21273fef nfs4_fs_type -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 0x24436806 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x253a5814 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x255ed770 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27628a1f nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28f945e7 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b68abb7 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c2d2d00 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d79ed2e unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e889f15 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3166a446 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3279b54b nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35649ddb __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x385595fa nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x391ed51d nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a370cec nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c2adade nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c4cba7f nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3da256b6 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40409c7f register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x435ba28b nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x483a6ca8 __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b0f84bc __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b250159 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4be02c23 nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c053254 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c8be251 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5259e7f8 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x571b4ca2 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5720ad81 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57fc4829 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58beae72 nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59923eb3 __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59de059a nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c29f7de nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e7692b9 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f1e7708 nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5faa2083 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66605479 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6728dbfe nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68442606 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6975977f nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x698f755d nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6af5d201 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c099acb nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c1b7121 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e4cab3e nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ede4bd9 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76620c30 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x784a2971 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78f573db nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x796d721e nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c5365b6 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d784173 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7dbc6c6d nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e620c4d nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86fdb8d0 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x891f853c nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8bcfd995 nfs_create_rpc_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 0x926f7107 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95c7a15d nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x961232ed nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c0db87c nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0cf5146 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1bfdd80 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7480b80 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7542044 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa75994ca nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa80163ec nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa84e2412 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8a630dc nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9bc9e41 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad18413d nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadaa3a99 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf08f593 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafdab638 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0c47c26 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2c94676 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb646f90c nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb64a1b5a nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb72dbc1d nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb96ab84c nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc33a18ab nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3684926 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc704420b nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc857c9ad nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce9d33bd nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xceb928c1 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2781836 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd338ed4b __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd846725f nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae28a70 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb5185c5 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf9f6087 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe01053c2 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0f6fb89 nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe18aafcf nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe35f72c4 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe378fa9a nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3b1ef66 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe464f3aa nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4731d6d nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5d61bde nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe734a575 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe88e8104 nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9cda9cd nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb0e4eb2 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb6d9790 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecaa22c6 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedc5ab2b nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeeed2737 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf066cf60 nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0b6b56a nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2d199e3 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2ddc79f nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3839838 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa0b01e6 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa8a62ac nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe87f932 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffba7d09 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xefebec19 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x01fbcf41 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x072ad121 __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x077f8d3a pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09b6459e nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0cf6c52f nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ead2c05 pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f01076e __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f165e78 __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ff720fb nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x239081f8 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x265a23c6 pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x28f46e1e pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x29aa5d95 pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3163e430 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31909cde pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bb6e05 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3463a9be pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34f5f9a4 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x359a5e82 __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3711d34b pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37965cc4 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3cef8093 __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x477fa4c7 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4829c9b5 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48ba4c39 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 0x54279ad3 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55a00922 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x581cd373 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b70f1b8 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e1d6f8e nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62982e10 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a89a826 pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ccd2b75 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f74477f pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71c1fc9b __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72a8594f nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75cea606 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78283a01 nfs4_test_session_trunk -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 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d156184 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fc52fe2 __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8763defc nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c827915 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95b3b8c4 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x97ec67f3 __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98ca4496 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ce1207b nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ec9f50d nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f52d06e pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa1676ed7 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa1835548 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2e75380 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaef9cef7 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb05b6d66 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc646589 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe625202 pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf3047fd pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3331772 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4b9a588 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc5de0b9c pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8ae2bc4 __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca53ca1b pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb892f6d pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd034635 pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce3e42ce nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce6802a0 pnfs_generic_sync -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 0xd2a8468b nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd40cc4f6 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd564c6b9 __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5908407 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6d971e9 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd89826e2 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda28377f pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda762578 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdabb13f6 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdfc3ec07 __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5689e9a pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe75d29ba pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe8b9fb63 __traceiter_nfs4_pnfs_read -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 0xee41cd4e nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf19072fb pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf542dceb nfs_remove_bad_delegation -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 0xfd0c0f34 nfs4_decode_mp_ds_addr -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/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 0xcadf1ae0 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 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 0x637d8760 o2hb_unregister_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 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 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfa83d357 o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 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 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 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x5fed0d75 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x84f097bb ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x95f5e594 ocfs2_kset -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xb76045f7 ocfs2_plock -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/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 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 0x1b0f70f3 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 0x31d4e581 poly1305_init_generic -EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0xd7219de2 poly1305_update_generic -EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0xf3945fcd poly1305_final_generic -EXPORT_SYMBOL_GPL lib/crypto/libsm4 0x24e254e8 sm4_expandkey -EXPORT_SYMBOL_GPL lib/crypto/libsm4 0xfa81970e sm4_crypt_block -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x1f09a3ff notifier_err_inject_dir -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 0x1b73a68e p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0x45de003c p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/bridge/bridge 0x05c015df br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x14b5816b br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1899fa35 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1e86c623 br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2f050367 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x366129c2 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x405c9f43 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4460265e br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x451303ef br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x45225c5e nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x603739fe br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x87e93e3a br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8bda0a06 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x907f28ad br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb0932eae br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0xbbd407f2 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0xbc22487b br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc1d27983 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc297905b br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd16bcf81 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe77fda51 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf47ec096 br_vlan_get_proto -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 0x2459d755 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 0x0447f5d7 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x061c3295 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0d427b26 dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0d648d52 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x166695e0 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1c9928c1 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x317bfbff dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3ad17423 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3b4dc942 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3f1b944a dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x494f01b6 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5730c23f dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x58f917c6 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x60965ee2 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6e70d0b6 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7278f4fd dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x93f37c00 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x96633bec dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9bcfdc7b dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9df9606e dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb5807614 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb61eb7ac dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb86dff84 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd7ff7fd0 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd8bdf8bc inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd935f3b8 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdfde94a1 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe2010cdb dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe478e0aa dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe5e8e673 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf175a9c2 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3d8ebd3 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfceed14b dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfdf9d4f2 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2f157d32 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9431761c dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x959da25a dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9873b02e dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc6080c7d dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf608b8ab dccp_invalid_packet -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 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x238e9093 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x5cef20d2 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xbbebff70 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/gre 0x8e29b15c gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xc8816f7c gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x14f82ba4 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x43522484 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5a28066d inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x861b7fd1 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x89fb39f2 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x94393bd4 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa16374fd inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa68230bf inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbb51e7f3 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xf6472f1e gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x127c939f ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x41e57416 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6113f111 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x64df9070 ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6b433b76 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6e6dde7e ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7d5844bc ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x926fbdc1 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb0dc8eaf ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc437cd87 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xca74a668 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcb5b7a5c ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd236d443 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdf4dabb1 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe61fba4f ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe8a053af ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfd705602 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xa4aee2ab arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xc5524c64 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x10734478 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x41dfe17c nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x16032237 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x06def5c3 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x39e1354e nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x832c657d nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x92ea683b nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa9aebd22 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xdf232ba0 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfdf6612d nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xbf4c0600 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x601c0be9 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x71684983 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xfc9ceca2 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x64f42918 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xb523dfaa nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x216a31e4 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x93933a46 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xac6d5d76 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xad0865eb tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xaf688bb1 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x12ca10ee udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2484eafb setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x261ffb0a udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x44cf6c3c udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8e84a0dd udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc04d4a11 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc7d921e4 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe7a8d02e udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x7802b5ce esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x79d8fecf esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xbbb903d2 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x054cd507 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x67711ec9 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x96a601da ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x16fc80ae udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xd1927364 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xfcd3d6dc ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x2254e00f nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xa52e8222 nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xac742569 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x5a36756a nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x396d0335 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5f30224e nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6a018e84 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8994c08e nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc22fe524 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc79799fe nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe519510f nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x382ba769 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x1afc147d nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x32ebc2f4 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xb7905842 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x2e12a1cc nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xddaa18bf nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x147880ff l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1e9691a8 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3178cbde l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3ec7afc4 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4d93b3e5 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4e4b9e53 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x527ffa11 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x95dd33af l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9c768436 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa47b6acc l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa91f4c0e l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb28f14a8 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb8d941b8 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbb922fa4 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbf741a67 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc35993bf l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc70cd404 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xef26418b l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf0e96fc7 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf1c0622f l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf3086bb9 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x2e9d9633 l2tp_ioctl -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x3765b88b l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x1d5d5576 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x333d3db2 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7467e34e nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7fcc163f mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x89982437 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0b2310aa ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2ed16c7c ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3425d151 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x37499007 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x53ada681 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x54c37076 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x576756b4 ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x69e5e952 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x69f62339 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x86e1397b 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 0x9eeb7fc2 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xabf5c23d ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xaec7274b ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xba885580 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbad26450 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd350da43 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd786727c ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdf45493d ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf06f61f1 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf12e60f7 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xad2c9e0c ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb1de90aa unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc205d012 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc38f6769 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x508ee6af nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x629d4c72 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x720e22ab nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8387ee0c nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x921f0f65 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xb815294c nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xd586048a nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0023330d nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0581321a nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b0b6848 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1078f1be nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b46b1b5 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b6f3223 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f1aa9c0 nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f98f279 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20d7ddf1 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23185d99 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26fa2e68 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2716cea4 nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27450615 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28397c6a 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 0x291ae0f4 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b83e967 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ce0f061 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2fe2d918 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35366beb nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36222647 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3beeda7b nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3cc1d410 nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ce77beb nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d3a0105 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45e39454 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a46b964 nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e85da51 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f6bf122 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4fd622eb nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52643966 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5bac7362 nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c269609 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d8b340e nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f52bf66 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6768bc9c nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x713324c1 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76ae062f nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7885985b nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78d613b2 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x791d721a __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79fe43ad __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a102b73 nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x800638ee nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x816bf4a7 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x830ed310 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84c788df __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87eb9987 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x899b3a7b nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a3234ca nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ac1dfdb nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8bdf4a97 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8df945e9 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e6d3aad nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95372819 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x994e3430 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ca29713 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e3ac971 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa151f08d nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa88e8dde nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae7cbd7f nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2b6f9e9 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4bba4e9 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5bd5b3c nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5d1c55d nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5d43c1b nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6f6a233 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc19f9cfe nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3e76808 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc47445c7 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc662ac41 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc71e39b9 nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc927b0b4 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcbe69111 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xceaaac37 nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd84f677b nf_ct_set_auto_assign_helper_warned -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9cc99d7 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde8842b8 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7db422e nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeab326e5 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf24e79d8 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf26d110a nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf648b889 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa02d028 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe5870a7 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x09bb8729 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x516199b3 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x6f019c1b nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x17df0e06 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5342f13c set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5d4271c1 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x66f78d41 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7ca3dcf1 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x86551af7 set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9abdb9ad set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa0cf0a42 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc2344fec nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe6def308 set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x57ecbe0f nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x24d6e714 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x3bf1d3c8 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x6c4abc41 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd5ed79c7 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7fcb5148 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x82a31d3b nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xac808223 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc43078de ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xca56a2fe ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcc99c802 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd0c0ccfb ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x96680be1 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x4c8b2588 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 0x09f90be9 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0dbe5fa2 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1947c1a9 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1ec19062 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x21a8daae nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4d2f957b flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5251426b nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5511993d nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x55bb6aa5 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x64eabe7a flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8c9a7a52 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb60b7bcd nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb9b93e1c nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc59544ba nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc5ada1fd flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe1fab221 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xedd0cbb1 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x20cf2bbe nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2adca350 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2f64506c nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5741fac3 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x729d30ca nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x74a0e02d nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x81d4e921 nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x94820e64 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb0405abc nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc730842d 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 0xdf92c8dd nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe166f5cf nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe41a173f nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf286b283 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfd659880 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xff0775d9 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x20c108b3 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2b46db92 synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x757d0d5e synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x97f7c8e1 nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa02a3aea synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa8d0ae48 ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb56dcb6f nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd9e09605 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf0a95d90 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf8d56e0b ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xfb7a958b nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x01b8c432 nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy -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 0x265849ff 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 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x46824d65 nft_register_chain_type -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 0x53943057 nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x555db80f nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5e2ea027 nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5f701ca7 nft_meta_set_eval -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 0x7c72f6fc nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x83769283 nf_tables_activate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x86716da7 nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x894b3527 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8a4504b7 nft_meta_get_init -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 0xba6ad68f nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc6b6cbfe nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xca8a6caf nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcace3f30 nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd502fbe1 nft_meta_set_validate -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/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/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 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 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x0b213357 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x3a4c1d35 nf_osf_match -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/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x38344e67 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x80db1d19 nft_reject_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x8e8a168d nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0f22708a xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x14552c08 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1699296e xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2315c85e xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2a018bd7 xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x34117843 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3c3c7be8 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4719d7bf xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x482e84b3 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x56c114fa xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x61db2959 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6d1c4504 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6d1e8980 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x76c65afa xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x924da08c xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9b655d7e xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa1c5ecca xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xabce54b1 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb5e202ff xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb77c69d9 xt_compat_target_from_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 0xd1e246a2 xt_compat_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdee12479 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xebf443d2 xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfc5d9d6c xt_unregister_template -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 0x0bf84655 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x29137851 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x66723bb0 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xcd8cbcae ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe11108f4 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe49f20ad ovs_vport_free -EXPORT_SYMBOL_GPL net/psample/psample 0x0642c2bd psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0x8c081ffd psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0xd0225467 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0xfb14669f psample_group_put -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x0cdb15af rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x1283c788 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x20a14c14 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x25f5ba2e rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x40fdc113 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x4b3f58fb rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x4d8d19c4 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x5017b8c8 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x5257df8b rds_send_xmit -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 0x68b7d1c0 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x6a17ae34 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x6a1b930e rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x6b77091c rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x6eecc43a rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x7d567639 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x894af7f9 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0x8f13bbe7 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x91246bd8 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x94969e39 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x96f1473d rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xab458357 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xc2173768 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc5d42d8c rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xcd81913a rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0xd46ba9c9 rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xd8779172 rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xd949fdff rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0xdf801cdd rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xf1bbab74 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xf51de1fb rds_send_ping -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x500a0cf8 pie_process_dequeue -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xda9c545f 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 0x69107c3c sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0x6e340c52 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0x947c636e sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xaa501cb6 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/smc/smc 0x218f83c3 smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x472ed38f smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0x4cb69285 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x5178bdb6 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x88b4caf0 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0x8d166823 smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xae795ce0 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xbb764e95 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0xe4b04cbf smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0xf37a9484 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x02d6ba0f gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4c1ff446 svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd64e9267 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 0xda0c3189 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x014452d6 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0153de14 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01aca3b2 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x041fc27f read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04fa2797 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05318014 svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05846427 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0639e1c1 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06b4d702 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0730eea4 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x074abb81 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07e11f80 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09663f64 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0aa6604e xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ad20e97 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b5205a1 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d5d6ab7 rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e7ceefb rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f3dd516 xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x103944c1 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1165aa25 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x139ae088 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x151daea4 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1537827a xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x160d6c24 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17222405 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x185b67ed svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19a9e9d1 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a0555e3 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bdf6a16 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c2fc5e7 svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cac5df9 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d8d6213 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e41e46c svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f05131a xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fd29450 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2197b768 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21f10898 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23376131 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27127023 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27d95543 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2845c4ee rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x295700ab svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2aa51708 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eb57445 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f14f6cc xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31998197 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x345992ae svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34ef372d xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35d5415e xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37809e10 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x394ed8a2 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39eece46 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a1e68ed xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b0a74c4 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c3aaa8d rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dbe693b xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e2bc318 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e3de8cc svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e7d81ff rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fb6bd7f rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x411a70a1 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x412d899f rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43c99bac xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x442ac690 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44709639 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47b02a1c svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47f27b23 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47f44281 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x482d6854 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x488cb3cd xprt_put -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 0x4bce963d rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ebfd988 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fd6bfb7 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5266ea4d cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5311649b rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x535ddd4b rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53fa41ef sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54df7176 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x556a7969 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55ade1a5 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5776ac5a rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57c2aabe rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5caf9279 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e0b4eb2 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f934c11 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61b725a4 xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6228683a xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63a1b1f9 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x687d14a7 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x690cf001 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c367c00 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e9516ec rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f356271 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7124d924 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x723973e7 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7286cad3 rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72f98eec rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74f5c0ea svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75b78de7 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76924c2a rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x772a7bbe svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7759ccc9 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7762f63c rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x776cdd68 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77f1f667 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bbc1a91 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ca07036 xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f7c8b38 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8027cc74 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81af70e7 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x839c3e39 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85cc37ad rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x860ac68c xdr_align_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8654dcff xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8889d4f7 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8aa50dbf xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dd149bb svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8de4a7df xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8deb2201 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f03bdd7 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fb44f18 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90af10e3 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90db347d svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90e007cd svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9152462d rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x917f3f53 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91855fae rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92a8da7b rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93abb9ed xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9472e08a rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94b90b6c rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x972b3abd svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e988614 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0510944 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa11c33b7 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa283edf4 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2e56bbb xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa420ba06 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa588133f xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5c13d17 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa68caf66 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa754ddfd cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7e9af56 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa946a6c5 svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa6bd505 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacc92da2 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad29657f rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadd1c9dd xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaddb3318 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaef8d261 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf038994 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0198bd6 xdr_expand_hole -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb27dcf3b xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2a08c81 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3810859 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4b760fd cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb50dbd58 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb542c3e8 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb64b7069 rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb76c79af svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7ca9544 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb96c0e23 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba00ce42 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb0b636e svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb550e60 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc06c664 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcc7ddd3 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd5d9789 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd734438 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf6f5303 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc012687e rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0b9dd19 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc374c933 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3b0f2a9 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4ee2b4c rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4f51ef4 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc686f116 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8990728 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc989dbca xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9d68453 xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca97fc68 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc390b26 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc50d83b xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccc33f32 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdec8196 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd03823ad svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd08508cb xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1f7845f xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2426f71 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd38fd8a1 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4527b60 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4c050a5 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd53502ac sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5f99c9c rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6851197 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd84668f8 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd92ff813 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcddf9d7 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd293a46 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde18405e xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde36b4d2 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xded2ee3c rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf44fbc9 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1cf5b63 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe20d7f7a svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2e4755a svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe78647ec svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7cff1b8 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe80ec7a9 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe85a6b44 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8ffce0f xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe96f2cf9 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb38c5e8 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebdb7f58 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec2fb5b6 xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedf191cd rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee3896dd xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee6939c4 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeebe1bf0 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef1525bd rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf176216f rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2a6686a svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf34684a3 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf543cc13 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf56a9d94 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5a9535b sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7f40397 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7fca26f rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9035666 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9100159 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9916d9d svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9bb8a7d rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa6493ef svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfab7d656 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfecf943c svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfeee354b xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff2dc827 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/tls/tls 0x16f41ff0 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x203c426c tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x2bedb12d tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0xde5422f7 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 0x041e66c5 virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x049f5908 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0f615497 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x287452a1 virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2a4f2e96 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2d586219 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2eefae2d virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3adb959f virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x48e9a092 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4ecbef92 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x516233eb virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x60151bcc virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x60783be4 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x671e6ff9 virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6b967e64 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6f9bf8cc virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7b8507cb virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7f0d761a virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9e72dff8 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa22ed81a virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa25f02e8 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xac97be61 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xad755036 virtio_transport_seqpacket_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 0xc08f0b22 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc7b17178 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcdff136e virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcff61117 virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd65487ae virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd7339cf7 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xde789699 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe7dfbd02 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xee13cd20 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf52a13b2 virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf930fd7c virtio_transport_stream_has_data -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 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 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 0x90aa8549 vsock_find_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90ac2f53 vsock_assign_transport -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 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 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/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 0x4245a7ce ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xa9f6693a ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xd3a2de69 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xefb682a7 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min -EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xe2521b1c xfrma_policy -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL virt/lib/irqbypass 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0x00132d0e list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x00204ef2 inet_twsk_alloc -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 0x004481cd sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0x004a28ff __fib_lookup -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 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 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 0x011bb353 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x0121bcaf __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x01413c5f css_schedule_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x01428c3f sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x014943b7 sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x01903c0d dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x019406a0 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x01c7862c serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0x01d9d6f9 ncsi_stop_dev -EXPORT_SYMBOL_GPL vmlinux 0x01dd70a8 __traceiter_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x01ec8e00 kthread_data -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 0x0276daa8 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x0291049b nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x02ab1b76 gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x02f422a2 inode_dax -EXPORT_SYMBOL_GPL vmlinux 0x02fe5cab devlink_param_publish -EXPORT_SYMBOL_GPL vmlinux 0x030a85be bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x030aad3e xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x031c5a02 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x033cd998 fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -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 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 0x03b090c5 xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0x03b8245b sock_map_destroy -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 0x03f800c7 add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x042b07a0 do_splice_from -EXPORT_SYMBOL_GPL vmlinux 0x042b7fe9 crypto_grab_shash -EXPORT_SYMBOL_GPL vmlinux 0x04443d47 skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x046431e0 nf_hooks_lwtunnel_sysctl_handler -EXPORT_SYMBOL_GPL vmlinux 0x0486fc32 serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0x04a6fee6 software_node_register -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 0x04cd1799 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x04ea8706 __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x04f346c9 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x04f494eb sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x04f61148 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x05196b49 __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x0530e614 perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0x05337ff1 pkcs7_validate_trust -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 0x056d9d20 alloc_empty_file -EXPORT_SYMBOL_GPL vmlinux 0x057012e0 debugfs_lookup_and_remove -EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x058e2bc1 fscrypt_set_bio_crypt_ctx_bh -EXPORT_SYMBOL_GPL vmlinux 0x05ea928a device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp -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 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x065a7a23 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x067553c6 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x06a05e15 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x06baba66 dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06d42815 bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0x06f3f75d tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -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 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 0x078f26b2 gmap_read_table -EXPORT_SYMBOL_GPL vmlinux 0x07aacc33 register_ftrace_function -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 0x07d10455 pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0x0809e0f9 skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x08165fb9 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x083605c5 blk_queue_set_zoned -EXPORT_SYMBOL_GPL vmlinux 0x08436119 klp_shadow_alloc -EXPORT_SYMBOL_GPL vmlinux 0x085001cb handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0x0863f519 debugfs_read_file_bool -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 0x08ca33b5 bpf_map_inc_with_uref -EXPORT_SYMBOL_GPL vmlinux 0x08d5e604 msg_zerocopy_alloc -EXPORT_SYMBOL_GPL vmlinux 0x08f196bf transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x09093a12 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x0914a56b task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x0917a2b3 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x092f17b9 ip_icmp_error_rfc4884 -EXPORT_SYMBOL_GPL vmlinux 0x09380328 auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0x094632c5 debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x09484cb2 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x096f61f7 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x0982ab82 fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0x098f6852 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09cdfbc9 inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0x0a37fb48 iommu_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end -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 -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 0x0ade102c tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x0ae7be69 fscrypt_symlink_getattr -EXPORT_SYMBOL_GPL vmlinux 0x0aed6f8b devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x0af78203 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x0b00b349 fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0x0b0367c3 dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -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 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 0x0be4c97b clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x0be6a11a scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0x0be966e7 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x0bf98517 cgroup_get_from_id -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 0x0c9ba2bd irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0x0ca09c9e sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0x0cad3639 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x0caf0651 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0x0cfc1f35 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x0d352582 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d51c0eb debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0x0d54756e vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0x0d6f0b99 irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x0d7d0406 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x0d9a00a1 blkg_conf_prep -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 0x0e0b1dbf trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0x0e11933f gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x0e2db7f0 blk_mq_complete_request_remote -EXPORT_SYMBOL_GPL vmlinux 0x0e3a5e19 perf_event_refresh -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 0x0e767419 pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0x0e7d00d3 tcp_leave_memory_pressure -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 0x0ec069c1 sk_clear_memalloc -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 0x0f180070 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0f3b8882 rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0x0f401c1b devlink_reload_enable -EXPORT_SYMBOL_GPL vmlinux 0x0f419551 bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0x0f5e458b __traceiter_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x0f5f16a0 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x0f611aa6 tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0x0f6e8199 devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0x0f841cad serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0fb581b1 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0fbffec0 virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -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 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x1015d053 tracing_snapshot_cond -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 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 0x11010bca __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0x110afa01 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x111f2c25 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0x114892d1 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x11694f01 devlink_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x11871cba bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0x118744b0 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11d396cb strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x11ec5aca kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x120eebe9 devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x1210c421 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -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 0x12666d52 fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x12670cca device_add_software_node -EXPORT_SYMBOL_GPL vmlinux 0x12689c63 clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0x126918e9 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x12cdbd51 verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x12df5b55 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x12e7c313 devlink_params_publish -EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x132d96a3 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x133488c8 blk_ksm_register -EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x1356f5fe __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg -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 0x13b54817 devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x13c74045 fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0x13d56059 pci_epf_add_vepf -EXPORT_SYMBOL_GPL vmlinux 0x13da2d79 blk_poll -EXPORT_SYMBOL_GPL vmlinux 0x13e7fd83 __wake_up_pollfree -EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1408ca2b driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x140a4bb4 __dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x14455bd4 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x1452256d pci_sriov_set_totalvfs -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 0x15035afa mmput -EXPORT_SYMBOL_GPL vmlinux 0x150a0561 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x153986c1 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x154fcb5e key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x155fb9fc skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x156e1b91 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x157bc422 s390_enable_skey -EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks -EXPORT_SYMBOL_GPL vmlinux 0x15c1f04e switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp -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 0x163ea155 nf_ct_hook -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 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 0x16b69bc8 zpci_store -EXPORT_SYMBOL_GPL vmlinux 0x16bdd98b tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put -EXPORT_SYMBOL_GPL vmlinux 0x16dc5d62 fib_rules_seq_read -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 0x16f82718 sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0x17041364 skb_segment_list -EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x17149987 trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x17243a99 bpf_prog_select_runtime -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 0x174c6274 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x175c56c1 __traceiter_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put -EXPORT_SYMBOL_GPL vmlinux 0x1765f7de devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x17a0e6ea kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x17a5f74a device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0x17a9930a pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x17afac71 pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0x17b2e775 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x17c1a5ed sch_frag_xmit_hook -EXPORT_SYMBOL_GPL vmlinux 0x17fe080c kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x180a9346 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x182f2af5 trace_get_event_file -EXPORT_SYMBOL_GPL vmlinux 0x183a1e4d xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0x1843d848 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x185069d2 devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x186b50ec gmap_disable -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 0x18bec9a7 xfrm_audit_state_notfound -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 0x193dfdf6 klp_get_prev_state -EXPORT_SYMBOL_GPL vmlinux 0x19484d23 fib4_rule_default -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 0x19ab39f1 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x19bc0a6c akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x19f0c12a devm_platform_get_irqs_affinity -EXPORT_SYMBOL_GPL vmlinux 0x19f4e1ef aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x1a057e23 devm_gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x1a463a20 account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x1a56391b l3mdev_table_lookup_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1a6a3aeb register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x1a8a6f38 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x1a98053e inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1b102279 dst_blackhole_mtu -EXPORT_SYMBOL_GPL vmlinux 0x1b1f5ad0 gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x1b3a36da mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x1b3e9ec3 devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0x1b4bf9a1 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x1b6c5a67 chsc_error_from_response -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 0x1ba46f25 alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0x1baf2c4a crypto_alloc_sync_skcipher -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 0x1bce413e synchronize_srcu -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 0x1c0626f7 bpf_trace_run3 -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 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1ca5b5c9 ip6_dst_lookup -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 0x1d71cfb3 iomap_writepage -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7cdbe0 dw_pcie_ep_linkup -EXPORT_SYMBOL_GPL vmlinux 0x1d9b849b pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0x1d9bbcd3 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x1db48c57 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x1db64d88 raw_seq_next -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 0x1dee46c4 nf_queue_entry_free -EXPORT_SYMBOL_GPL vmlinux 0x1df1bae9 crypto_stats_skcipher_decrypt -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 0x1e17efb2 br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0x1e20f13f freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e4ddfb6 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x1e54877f strp_done -EXPORT_SYMBOL_GPL vmlinux 0x1e645e66 dst_blackhole_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x1e745a0a fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0x1e76cd0e __fscrypt_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e8047eb pci_user_read_config_dword -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 0x1eb67ab8 __dev_forward_skb -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 0x1f035341 mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1f2b8884 bpf_trace_run10 -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 0x1f6c909f receive_fd -EXPORT_SYMBOL_GPL vmlinux 0x1f6cb49c gpiochip_irqchip_add_domain -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -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 0x1fcb3c48 devres_find -EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1ff130ec bus_remove_file -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 0x202af5fe attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x203b9ba3 devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0x203f3fea blk_crypto_evict_key -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 0x20764730 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame -EXPORT_SYMBOL_GPL vmlinux 0x20919708 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x20bd9d26 badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0x20c80e36 clean_acked_data_disable -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 0x212789ef acct_bioset_init -EXPORT_SYMBOL_GPL vmlinux 0x2128ce29 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x213cec9f netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x2141f425 elv_unregister -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 0x21bb316b irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x21c30ae7 user_read -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21ce1321 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x21ce3ed1 dev_fetch_sw_netstats -EXPORT_SYMBOL_GPL vmlinux 0x21d2de00 blk_mq_virtio_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x21dd6ce2 relay_open -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 0x223a3c86 espintcp_push_skb -EXPORT_SYMBOL_GPL vmlinux 0x223df3b6 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x226034c1 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x226cf29c mmu_notifier_register -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 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 0x2306b69b sched_trace_rq_nr_running -EXPORT_SYMBOL_GPL vmlinux 0x230bca5e key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x231e9b1b iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x23226bb7 crypto_comp_decompress -EXPORT_SYMBOL_GPL vmlinux 0x23348f27 security_path_link -EXPORT_SYMBOL_GPL vmlinux 0x233c4456 xas_find -EXPORT_SYMBOL_GPL vmlinux 0x233f5316 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 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 0x238e709c crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x23b3d879 fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0x23b8310f disk_uevent -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 0x241b1556 dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const -EXPORT_SYMBOL_GPL vmlinux 0x2424581a __traceiter_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x2477ef94 sched_trace_cfs_rq_avg -EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust -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 0x24e0704e crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x250a8f96 devm_kmemdup -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 0x2592fc6c console_printk -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 0x25d6947a kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL vmlinux 0x25efe24a md_account_bio -EXPORT_SYMBOL_GPL vmlinux 0x260acfc4 crypto_skcipher_setkey -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 0x261c4319 switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x261f50a5 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x26257cce balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x2648e702 platform_irq_count -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 0x26915d60 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x26a31ba4 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -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 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x276a5416 __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0x276c1389 virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x2777d083 dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x278da27b netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x278ee3ec pci_find_host_bridge -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 -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 0x2801340f __traceiter_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x2803a5c2 blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x282511b7 do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0x2834955f __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x28376fb6 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x283a265a rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2849c663 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x288f5943 platform_get_mem_or_io -EXPORT_SYMBOL_GPL vmlinux 0x2893f56b devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0x28a46a0c device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x28af5717 gpiochip_line_is_irq -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 0x28f1822e __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0x29147469 ping_err -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 0x294cdb43 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x299cc398 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x29b8b204 subsys_find_device_by_id -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 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 0x2a265521 netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x2a2c98a0 crypto_stats_ahash_update -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 0x2a6d97a3 sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x2a7f08b7 devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x2a8b360f __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x2aa23d97 blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0x2aa605b7 fwnode_graph_get_remote_endpoint -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 0x2ad6496b vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x2b0bc7de iommu_report_device_fault -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 0x2b7c86a2 devlink_port_attrs_pci_sf_set -EXPORT_SYMBOL_GPL vmlinux 0x2b84baf3 tcp_sendmsg_locked -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 0x2bd2915e kfree_strarray -EXPORT_SYMBOL_GPL vmlinux 0x2c0028d5 __traceiter_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x2c153a6d skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x2c240c25 devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x2c2f02c4 inet6_cleanup_sock -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 0x2c36cc85 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x2c51b3fb kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c7256dc synth_event_add_field -EXPORT_SYMBOL_GPL vmlinux 0x2c730c9d device_store_bool -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 0x2c9f22b1 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x2cca054a gmap_get -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 0x2d1b02d2 usermodehelper_read_lock_wait -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 0x2d6d8f9a bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0x2d796f52 devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x2d8b4854 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x2d92da99 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x2d9721a9 shmem_zero_setup -EXPORT_SYMBOL_GPL vmlinux 0x2d9e1569 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x2e1d43cf lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e24499b kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x2e3521fd crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x2e3dc0da sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0x2e3e6c17 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x2e7f0499 seq_buf_printf -EXPORT_SYMBOL_GPL vmlinux 0x2ea337da find_asymmetric_key -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 0x2ecc5b29 sbitmap_weight -EXPORT_SYMBOL_GPL vmlinux 0x2ecc71a6 pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0x2ee274b7 filemap_read -EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work -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 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 0x2fff1003 __raw_v4_lookup -EXPORT_SYMBOL_GPL vmlinux 0x300d926c enable_cmf -EXPORT_SYMBOL_GPL vmlinux 0x304c71e0 sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x30696079 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x309c7eb3 __traceiter_neigh_event_send_done -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 0x30f1e138 __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0x30f6c402 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3121c51a cio_cancel -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31472c30 gmap_unmap_segment -EXPORT_SYMBOL_GPL vmlinux 0x316a385b fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x3174848f switchdev_handle_fdb_add_to_device -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 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31a9c4e0 paste_selection -EXPORT_SYMBOL_GPL vmlinux 0x31c9288a nf_ipv6_ops -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 0x3200c1b9 generic_device_group -EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x3234a74b tcp_get_info -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 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 0x330010b6 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x330770ef unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x33113e23 __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0x3314131b restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x331b18af blk_queue_zone_write_granularity -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 0x3385beb2 bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0x3386ab83 generic_fsdax_supported -EXPORT_SYMBOL_GPL vmlinux 0x339112b0 fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0x33912e95 scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0x339e62e5 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x33a29015 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x33b3a3b0 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x33d18cd8 __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x33dbc4ae vmf_insert_pfn_pmd_prot -EXPORT_SYMBOL_GPL vmlinux 0x33ded6d2 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x33f779c6 srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0x3400d3b2 devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0x340e3f8b security_inode_permission -EXPORT_SYMBOL_GPL vmlinux 0x34237f3d sk_msg_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x343059fa kvm_get_dirty_log -EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash -EXPORT_SYMBOL_GPL vmlinux 0x344725ae __sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x344e3c09 sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x345907b7 blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0x346d7de8 sched_trace_cfs_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0x348c6821 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x348caa23 screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x349843d1 scm_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0x349ab864 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x34b6aa42 __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x34c93520 sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x3501d999 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait -EXPORT_SYMBOL_GPL vmlinux 0x3517bed6 gpiochip_generic_config -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 0x3568f3cf pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0x356ac0e7 device_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x3570f8a0 nf_queue_entry_get_refs -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 0x35a47f31 page_cache_async_ra -EXPORT_SYMBOL_GPL vmlinux 0x35d38095 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x35e000c2 pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0x35e76add switchdev_handle_fdb_del_to_device -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 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x362dd1c2 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x362e52e4 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x364354ba rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3652e034 tcpv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x36814d15 netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0x3686c035 fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x3686dde2 sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36c80c36 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x36e32b01 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x36e4ccc1 tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0x36fe7671 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x36fe80e9 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x370cd283 dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0x3725b439 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x3725d1a0 __traceiter_block_split -EXPORT_SYMBOL_GPL vmlinux 0x37312dee xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x373a0494 iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0x373c1825 __traceiter_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x37458c32 iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x3761d215 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x378e5290 evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0x378e7eeb switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x37bdeb95 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x37e00a8a blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x37fef2f2 irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0x382335e8 __traceiter_neigh_event_send_dead -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 0x3855d0a7 devlink_param_unpublish -EXPORT_SYMBOL_GPL vmlinux 0x3865e74e bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0x386d6eff crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0x38846835 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0x3892a7d3 synth_event_trace_array -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 0x38c4c2ff gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL vmlinux 0x38dad495 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set -EXPORT_SYMBOL_GPL vmlinux 0x38fc20e0 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x39149831 sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x391c1667 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x391fca49 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x393d882a mptcp_token_get_sock -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 0x39579087 sfp_may_have_phy -EXPORT_SYMBOL_GPL vmlinux 0x397375ae pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x39791a24 start_poll_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x39a4905a do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0x39a5ccf0 input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0x39a6ddf9 ip_build_and_send_pkt -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 0x39d00fd5 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x39e79c93 iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink -EXPORT_SYMBOL_GPL vmlinux 0x3a055b2b __traceiter_pelt_thermal_tp -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 0x3a6995ff __fscrypt_inode_uses_inline_crypto -EXPORT_SYMBOL_GPL vmlinux 0x3a70ae07 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x3a930abb pci_msi_create_irq_domain -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 0x3ad39de9 tpm2_flush_context -EXPORT_SYMBOL_GPL vmlinux 0x3adf6ba1 kvm_get_kvm -EXPORT_SYMBOL_GPL vmlinux 0x3aea92a9 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x3b007050 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x3b068acb simple_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0x3b100320 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x3b2d0808 blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x3b490ef7 lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x3b6cce8f serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x3b72c087 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x3b7be9bb mark_page_dirty -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 0x3bf17755 mpi_read_buffer -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 0x3c3a0094 driver_register -EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3c3fa0d6 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x3c5e7399 __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c85d74e class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x3c8cab6e crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x3c9ead7e pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x3ca4de56 sbitmap_queue_wake_all -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 0x3d1b4d11 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x3d2bd89c lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d694d69 nf_checksum_partial -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 0x3db85915 ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0x3dca11ef invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x3dca86f3 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3df79a5e hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x3dfa7288 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x3e1c2627 housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0x3e29201a irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x3e2b0a0a sched_set_fifo -EXPORT_SYMBOL_GPL vmlinux 0x3e3b5250 trace_array_init_printk -EXPORT_SYMBOL_GPL vmlinux 0x3e5ce910 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e81652c validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x3e8219c9 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x3e9e2198 nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0x3ea01071 xas_clear_mark -EXPORT_SYMBOL_GPL vmlinux 0x3eb1a417 crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0x3eb57f58 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x3ecf455b task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x3ee2b8ce irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0x3ee80b67 irq_create_of_mapping -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 0x3f3c7b99 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x3f79c55e fscrypt_mergeable_bio_bh -EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put -EXPORT_SYMBOL_GPL vmlinux 0x3fc004ad sbitmap_get -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 0x402e5a52 bpf_sk_storage_diag_put -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x404bd623 devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x4051e7e0 devm_bitmap_alloc -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 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 0x40ca2820 watchdog_set_restart_priority -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 0x41137d40 trace_event_buffer_commit -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 0x417d8076 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop -EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x41d2948d property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0x41d2d981 __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x41fb68cb copy_from_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0x421559fc pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x424b1c15 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x42558603 sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x42651d9d fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x426a8e3a inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x427cd2ef elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0x427f50a6 bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x428f79cd __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x42c00d62 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x42e78e3e synth_event_trace -EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit -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 0x4321e2f4 device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0x432e9abf simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x433f221a blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0x435040b0 dma_buf_unpin -EXPORT_SYMBOL_GPL vmlinux 0x43571d19 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit -EXPORT_SYMBOL_GPL vmlinux 0x437cad41 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x4388497f xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43c33665 isc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x43c396cb __traceiter_block_bio_remap -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 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 0x4435e71d crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x449875a3 device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0x44b04ff0 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44c0712b nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str -EXPORT_SYMBOL_GPL vmlinux 0x44e0ccaa zpci_set_irq_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x44e55979 dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0x44ec535c __trace_array_puts -EXPORT_SYMBOL_GPL vmlinux 0x44f93772 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x44fd737e badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0x44fe2bc9 __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0x4501eb62 devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x453630fa xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0x4552f345 sched_trace_rq_avg_dl -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x45c04efa user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x45ca3e79 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x45e07a94 fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x45e5afa3 ethnl_cable_test_amplitude -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 0x46269814 __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x4632b03e fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0x463a34c5 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x464d30ca tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x468da620 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x46a98c17 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x46cf1244 bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0x46e4e3f4 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x470083c3 inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0x47128bf6 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x471ad350 mptcp_pm_get_add_addr_signal_max -EXPORT_SYMBOL_GPL vmlinux 0x471e69d8 mptcp_subflow_init_cookie_req -EXPORT_SYMBOL_GPL vmlinux 0x47201590 ccw_device_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x47278d01 msg_zerocopy_realloc -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 0x478bb4c3 inet6_hash_connect -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 0x47b2c90c devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0x47e7696d srcu_notifier_call_chain -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 0x47fdc5d2 kvm_irq_has_notifier -EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x481e3c04 ipv4_update_pmtu -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 0x484d1864 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL vmlinux 0x487da82a cdrom_multisession -EXPORT_SYMBOL_GPL vmlinux 0x487e1bd5 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x48853534 __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x488825ff ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x48a09202 pgprot_writethrough -EXPORT_SYMBOL_GPL vmlinux 0x48aeacd2 sysfs_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x48b276ec ping_bind -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 0x48c921ac bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x48d3a0b5 devlink_region_snapshot_id_put -EXPORT_SYMBOL_GPL vmlinux 0x48ec14e6 sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x48fe479e acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0x491de0fb sk_detach_filter -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 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 0x498c2ebb dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49bb5039 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49d7e9cf iommu_device_unlink -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 0x4a6b878d iomap_ioend_try_merge -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 0x4b235336 irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0x4b25d8df perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x4b301ba7 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x4b5e7ea4 tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0x4b8365db pci_epc_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x4ba88dcb chsc_sgib -EXPORT_SYMBOL_GPL vmlinux 0x4bb0bad6 tcp_bpf_update_proto -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 0x4c03b2f2 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x4c0c51fd __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x4c14ff83 cio_tm_intrg -EXPORT_SYMBOL_GPL vmlinux 0x4c29c0ea file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x4c3d11a2 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x4c56bd15 stack_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4c5b87b2 cio_tm_start_key -EXPORT_SYMBOL_GPL vmlinux 0x4c7134b4 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x4c9297f1 gmap_map_segment -EXPORT_SYMBOL_GPL vmlinux 0x4c99dc74 tty_buffer_request_room -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 0x4cdb58b1 crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x4ce91483 hrtimer_init -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 0x4d24116e dax_iomap_fault -EXPORT_SYMBOL_GPL vmlinux 0x4d2c623c vp_modern_set_features -EXPORT_SYMBOL_GPL vmlinux 0x4d3cc909 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d643e37 xfrm_output -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 0x4d80cba4 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4d91000e md_stop -EXPORT_SYMBOL_GPL vmlinux 0x4dc12411 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x4dc5e4fc rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x4dcbd317 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x4ddabc37 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x4df3bea8 __traceiter_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x4e11bd1d kvm_write_guest_offset_cached -EXPORT_SYMBOL_GPL vmlinux 0x4e28fb89 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x4e29ebc8 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL vmlinux 0x4e4ff869 zpci_register_ioat -EXPORT_SYMBOL_GPL vmlinux 0x4e5da192 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x4e71e00e devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x4ebd24c9 synth_event_trace_start -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 0x4f2eec77 gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x4f42b32a bio_add_zone_append_page -EXPORT_SYMBOL_GPL vmlinux 0x4f529894 dma_resv_get_fences -EXPORT_SYMBOL_GPL vmlinux 0x4f58fe14 pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f7cdca6 devlink_trap_policers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4f91fd51 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x4fbc6ff3 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fe4eb05 blk_trace_setup -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 0x507f0da1 fs_dax_get_by_bdev -EXPORT_SYMBOL_GPL vmlinux 0x5080ca5d unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0x508e06e0 kvm_read_guest -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50ab005e scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x50b61c1b devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0x50ba3c9e dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0x50bcae5a perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x50cdfce4 skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50eccf18 __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x50f8610c of_css -EXPORT_SYMBOL_GPL vmlinux 0x50f9be85 gmap_unregister_pte_notifier -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x5103dd92 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x512693ef devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x513197b7 ncsi_start_dev -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 0x5158770a switchdev_handle_port_obj_del -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 0x51971ef2 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x51b86bad dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x51e8ce79 skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0x51eb8bac housekeeping_cpumask -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 0x52397d14 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x52520be9 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x525ccb11 iommu_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x526cab45 __traceiter_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x526f4b5a fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x52982d0e scm_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x52a35b80 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags -EXPORT_SYMBOL_GPL vmlinux 0x52b52023 tty_kopen_shared -EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52f319a2 fat_update_time -EXPORT_SYMBOL_GPL vmlinux 0x52f7a007 devres_release -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 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 0x539ed2ff udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0x53b6dbb4 kvm_read_guest_offset_cached -EXPORT_SYMBOL_GPL vmlinux 0x53c70cd1 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x53e87915 bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0x54034c2e securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x5421f1f5 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x543081aa ip6_input -EXPORT_SYMBOL_GPL vmlinux 0x544f3709 mmu_interval_notifier_remove -EXPORT_SYMBOL_GPL vmlinux 0x54752a65 devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0x5478827a debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x54828a24 strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54aee8b9 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x54aff09c iommu_map -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 0x55657e83 s390_unlist_old_asce -EXPORT_SYMBOL_GPL vmlinux 0x556b4aab fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0x55811291 gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0x5585a2f3 device_get_match_data -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 0x56054c05 crypto_it_tab -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 0x5638caee dw_pcie_ep_init -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x567b79ce generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x56aa518d serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0x56ca1166 dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x56d191f3 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x56d40f40 sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0x56e6cea0 tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0x56f83947 sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x56fe2c68 dax_inode -EXPORT_SYMBOL_GPL vmlinux 0x57348227 __put_net -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 0x5767d7be class_unregister -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 0x57b52384 crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0x57c67611 devlink_port_health_reporter_create -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 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x5849d4d1 vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x58892d87 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0x588badaf ima_inode_hash -EXPORT_SYMBOL_GPL vmlinux 0x58aded10 lwtunnel_xmit -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 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 0x596c5c0d tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x596da29e vp_modern_config_vector -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 0x59ece1f6 espintcp_queue_out -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 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a4e027b gmap_shadow_valid -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 0x5aacdbcd tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0x5ab056ac udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5b15e848 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b40041a scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b7f5f37 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x5b8307e3 fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0x5b893457 crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x5b8a0d75 security_path_symlink -EXPORT_SYMBOL_GPL vmlinux 0x5ba362a0 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x5ba63bef property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x5bc8ea5f xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bd7fe4d pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5be7883d device_match_any -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 0x5c629826 devlink_sb_unregister -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 0x5cceff56 devlink_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0x5cd16fe3 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x5cec6a59 __cpuhp_state_remove_instance -EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5d0237e9 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x5d2c940c chp_get_sch_opm -EXPORT_SYMBOL_GPL vmlinux 0x5d305796 bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0x5d323e89 anon_inode_getfd_secure -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 0x5da51756 devm_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5db51c37 crypto_unregister_acomp -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 0x5e12ac61 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e2f4970 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e5f4784 switchdev_bridge_port_unoffload -EXPORT_SYMBOL_GPL vmlinux 0x5e6bed89 crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5e9a5573 sk_set_memalloc -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 0x5ecacf49 ethnl_cable_test_pulse -EXPORT_SYMBOL_GPL vmlinux 0x5ed1a231 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x5eee7b1f sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0x5ef5fa9d fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0x5f000799 disk_update_readahead -EXPORT_SYMBOL_GPL vmlinux 0x5f22d8f1 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -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 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 0x5fcc4519 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x5fe493ed kill_device -EXPORT_SYMBOL_GPL vmlinux 0x5fecb9a7 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL vmlinux 0x5fee2704 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x6025b884 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x6029efd5 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x607247a5 __fl6_sock_lookup -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 0x60c74d74 kvm_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -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 0x6142e2a3 bio_iov_iter_get_pages -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 0x61b280f2 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x61d71aec kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0x61f71424 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x621c68b1 int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0x621d3491 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x622577f3 dax_layout_busy_page -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 0x6246f37c auxiliary_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x624c89b7 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x6252b2e4 virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0x62567de8 blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x62588364 ptep_test_and_clear_uc -EXPORT_SYMBOL_GPL vmlinux 0x6260b84b root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6292e1a0 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x62b053a0 shash_free_singlespawn_instance -EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62c2180a udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x62fe5eaf crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x62fe6b57 ipl_info -EXPORT_SYMBOL_GPL vmlinux 0x62fed117 kvm_vcpu_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0x63088c8e skb_zerocopy_headlen -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 0x6378ec74 skb_copy_ubufs -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 0x63d32933 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x63f236c8 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x6420c50c input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x6454de85 loop_backing_file -EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x64610e0c firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x64786375 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x647e9578 inet6_sock_destruct -EXPORT_SYMBOL_GPL vmlinux 0x6490b7de __traceiter_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x64b462d5 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0x64c3ad06 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x64cf34a5 nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete -EXPORT_SYMBOL_GPL vmlinux 0x64eb0b7d ping_rcv -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 -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 0x65a0134c __netpoll_setup -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 0x65d42092 ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0x65dbaeae crypto_stats_akcipher_verify -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 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x6636e252 d_walk -EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x663e80c7 devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0x664ac651 netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x665bb11b preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x66611eee unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x66b8eb24 sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66c3d242 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x66d5901f ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66df0d36 __cookie_v6_check -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 0x67571ccb sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0x677d2054 is_software_node -EXPORT_SYMBOL_GPL vmlinux 0x6782da56 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x67929379 arch_make_page_accessible -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67aebfb4 dax_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x67b9105d blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0x67ba9314 trace_array_put -EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67f64f00 bpf_map_inc_not_zero -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 0x68300bba skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x68407ea9 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x685d09ac __kprobe_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x68663777 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x687cb74c software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x688c0713 ncsi_vlan_rx_kill_vid -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 0x68fa1550 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x69102195 handle_irq_desc -EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x6918a2d8 devlink_params_unpublish -EXPORT_SYMBOL_GPL vmlinux 0x6939073a xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0x694f516e pci_epf_remove_vepf -EXPORT_SYMBOL_GPL vmlinux 0x695e253f gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle -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 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 0x69e683de uuid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a1c84cf metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x6a21beec watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x6a2504fe kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x6a272fbf ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x6a337546 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a7dc721 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a9c6eba serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0x6adee63f inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x6b0a7918 component_add_typed -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 0x6b360634 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b611a49 mmu_interval_read_begin -EXPORT_SYMBOL_GPL vmlinux 0x6b667897 __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x6b8f1b5e __blk_mq_debugfs_rq_show -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 0x6becf504 skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0x6bf6f07e skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0x6c02c1fa fuse_conn_destroy -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 0x6c510b5c __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x6c90aeeb iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x6ca25a0e devlink_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6cb5750d ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x6cde7f59 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6ce2a40a pci_num_vf -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 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d7405e5 bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6daf83ff ping_getfrag -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 0x6e213911 dma_buf_pin -EXPORT_SYMBOL_GPL vmlinux 0x6e23cda9 ccw_device_siosl -EXPORT_SYMBOL_GPL vmlinux 0x6e2f8293 bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x6e64d9a6 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0x6e66529f pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -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 0x6ec73c11 pci_platform_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x6ec7b94c gen_pool_avail -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 0x6f40e970 crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x6f46894f md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x6f65513e devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x6f723272 blk_ksm_init_passthrough -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 0x6f8ce0df ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6fa19db3 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x6fa3e626 perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0x6fb41764 get_ccwdev_by_dev_id -EXPORT_SYMBOL_GPL vmlinux 0x6fc7d5fb trace_array_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fde9a13 gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x701674de fuse_mount_remove -EXPORT_SYMBOL_GPL vmlinux 0x7050f715 iommu_aux_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x70572dcc fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0x706acf5f pid_vnr -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 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 0x70df2b28 skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x70f89d53 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7112da1c get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x71174ed8 fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0x71278399 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x714f1301 nexthop_find_by_id -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 0x71b9b887 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x71cb355f __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x71cd9f6e auxiliary_find_device -EXPORT_SYMBOL_GPL vmlinux 0x71f69a66 software_node_unregister -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 0x7243f56d crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x724bdb8f sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0x725ecd75 scsi_host_block -EXPORT_SYMBOL_GPL vmlinux 0x72606bb8 __traceiter_neigh_update_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 0x7278d328 all_vm_events -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 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 0x73018c9f sock_map_close -EXPORT_SYMBOL_GPL vmlinux 0x7350ff84 skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0x73556180 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7383e3ac handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x7395a793 devlink_flash_update_timeout_notify -EXPORT_SYMBOL_GPL vmlinux 0x739e61bd virtqueue_kick_prepare -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 0x73c93090 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73cd39e2 __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x73ec4cd8 iommu_uapi_sva_bind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x74002c12 __traceiter_fdb_delete -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 0x748b2570 tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0x748ede42 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x74a6c764 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74cfbdc2 fscrypt_ioctl_remove_key -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 0x74f554d4 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7554b896 zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x75552faa class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x756c2655 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x7573ade0 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x757a7e92 security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x75869153 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x759c774d cmf_readall -EXPORT_SYMBOL_GPL vmlinux 0x75b698f5 gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x75c7e255 fat_remove_entries -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 0x76368c57 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register -EXPORT_SYMBOL_GPL vmlinux 0x76524d65 tcp_ca_get_key_by_name -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 0x769a6662 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0x76a66e24 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x76affff5 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x76e58c5e task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76f780e4 devlink_net -EXPORT_SYMBOL_GPL vmlinux 0x77252b50 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -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 0x78041b8f byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x78150b98 generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x782b7b76 gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0x782f3615 skb_zerocopy -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 0x7859a92c crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x786cc698 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x787551b1 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x7884a7f1 gmap_remove -EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty -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 0x78c78f64 switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0x78ca4e42 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x78f96eaf bpfilter_umh_cleanup -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 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x796d3d82 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x79739f1d s390_reset_cmma -EXPORT_SYMBOL_GPL vmlinux 0x797f01a9 call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x7986dede iomap_readahead -EXPORT_SYMBOL_GPL vmlinux 0x7993073b cio_clear -EXPORT_SYMBOL_GPL vmlinux 0x79a074cd __auxiliary_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x79b1b3eb sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x79bd1c60 synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0x79c18ef3 gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0x79c7ce88 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x79d60583 __gmap_zap -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79df525b fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0x79e5158a gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7a16757b __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x7a339361 blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x7a51b80c user_update -EXPORT_SYMBOL_GPL vmlinux 0x7a5240c9 tty_buffer_unlock_exclusive -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 0x7ae46ebd ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x7ae76cd4 irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x7af58d26 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x7afa3f7a inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x7afbfa88 bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow -EXPORT_SYMBOL_GPL vmlinux 0x7aff88d1 register_virtio_device -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 0x7b524a76 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x7b5924d5 crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b5b7e58 ipv4_sk_redirect -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 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bb0e673 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x7bb8e97a unmap_mapping_pages -EXPORT_SYMBOL_GPL vmlinux 0x7bc202fd kvm_arch_crypto_set_masks -EXPORT_SYMBOL_GPL vmlinux 0x7bdd0a4f device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x7be224da blkg_rwstat_exit -EXPORT_SYMBOL_GPL vmlinux 0x7bf514c4 __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x7c051012 devlink_alloc_ns -EXPORT_SYMBOL_GPL vmlinux 0x7c0d3e70 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x7c15e3ca dax_driver_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 0x7c6ee510 ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0x7c7c2479 inet6_csk_xmit -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 0x7cd9611c watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cf5e689 irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0x7d17159d md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x7d3da344 gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0x7d589033 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x7d64bf7b blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x7d87c47c devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x7d968341 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x7d96e0fe fuse_direct_io -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 0x7de6cc23 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x7df0642d bpf_prog_destroy -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 0x7e279d0c register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x7e32cc2d kick_process -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 0x7e547d9d nf_queue -EXPORT_SYMBOL_GPL vmlinux 0x7e5a1e61 blk_trace_remove -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 0x7e67cbb7 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x7e72a970 __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu -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 0x7ec29438 sock_map_unhash -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 0x7f5d8502 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x7f626f06 cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x7f647878 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x7f751548 fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f87fed0 tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x7f8f91e8 iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0x7fc7ea80 strp_stop -EXPORT_SYMBOL_GPL vmlinux 0x803fae6a key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put -EXPORT_SYMBOL_GPL vmlinux 0x806c6ec2 __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x80744f85 noop_invalidatepage -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 0x80c6a47e skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80e1c798 skb_send_sock_locked -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 0x812ea476 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x81604a61 find_get_pid -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 0x81886b7e trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x819a1fb7 crypto_comp_compress -EXPORT_SYMBOL_GPL vmlinux 0x81a62b2b lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x81b2191c vp_modern_set_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x81b2bb34 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x81e350ae crypto_unregister_alg -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 0x827168a4 misc_cg_try_charge -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 0x82a80545 __SCK__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x82c46565 skcipher_register_instance -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 0x83166804 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x83372b4d metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x8343f5b6 devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x835debe6 devlink_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0x839396e5 xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x83a56c1e __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x83aa84da ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x83b653d8 devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x83cfa381 dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0x83dc18c8 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x83f39de9 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x840444c1 __sync_filesystem -EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x841b156c trace_array_set_clr_event -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 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 0x846fcefa iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0x84747113 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x849a4055 gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0x84c93010 skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x84cef4f6 xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0x84fb350e blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0x84ffc303 blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x85017c54 xfrm_audit_state_delete -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 0x851fe124 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8527ca35 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x85311ed4 __alloc_pages_bulk -EXPORT_SYMBOL_GPL vmlinux 0x85b2ad24 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x85b54390 ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x85ba12b6 sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0x85f5aba1 pci_device_group -EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x8628edde ip6_datagram_connect -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 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x86b0b6ba zpci_barrier -EXPORT_SYMBOL_GPL vmlinux 0x86b46673 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x86c5baf7 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0x86e49e99 devm_ioremap_uc -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 0x870bc28e blk_req_needs_zone_write_lock -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 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 0x87d8239e devlink_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0x87e61496 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x882e9b54 blk_mq_hctx_set_fq_lock_class -EXPORT_SYMBOL_GPL vmlinux 0x883678dd sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x883978f7 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x8855fb46 devlink_port_register -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 0x889ddbda lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0x88a5de16 metadata_dst_free -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 0x89322802 ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x893de5e7 dw_pcie_upconfig_setup -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 0x8968ba77 blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x897e7022 free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0x898e554f tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x89b539f0 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x89b6a5cf sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x89ea5521 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x89ebe6ba dev_err_probe -EXPORT_SYMBOL_GPL vmlinux 0x89ff231f rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x8a2fdf10 iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x8a3a1c39 gmap_put -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 0x8ab83b1b __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8af7b309 ccw_device_pnso -EXPORT_SYMBOL_GPL vmlinux 0x8afa19f5 dax_finish_sync_fault -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 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 0x8b5d455e device_del -EXPORT_SYMBOL_GPL vmlinux 0x8b655ac7 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x8b9e24c5 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x8bad4ff4 pgprot_writecombine -EXPORT_SYMBOL_GPL vmlinux 0x8bb274c0 perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0x8bbc169c device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x8bd1615e __traceiter_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x8bded20f zpci_load -EXPORT_SYMBOL_GPL vmlinux 0x8bececb2 kvm_release_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x8bfba1bf blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c1800bd event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x8c28fa57 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x8c314f3d fwnode_device_is_available -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 0x8c969333 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x8c9ab204 sched_trace_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0x8caa75ac rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x8ccf9a19 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x8cd9dc3a devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x8ce3db2e key_type_asymmetric -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 0x8d46bf28 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0x8d5c45ef devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8d659f5b posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8d73b4ae device_link_add -EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0x8dd1b0fe tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0x8dd30e32 pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x8df170e5 __tcp_send_ack -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 0x8e4eb451 bpf_sk_storage_diag_free -EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x8eb70a3f aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8f03cf1c synth_event_gen_cmd_array_start -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f0bd8ed perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x8f145932 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x8f1f0994 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0x8f22a31e dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0x8f285fb8 ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0x8f28ee6d driver_find -EXPORT_SYMBOL_GPL vmlinux 0x8f2be438 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x8f2e5212 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x8f3be383 fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0x8f4394be switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x8f483c67 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x8f573274 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x8f5bf523 __zpci_load -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -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 0x8fe54b20 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points -EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -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 0x909a8abf nr_running -EXPORT_SYMBOL_GPL vmlinux 0x909fda42 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x90a1866b ccw_device_get_chpid -EXPORT_SYMBOL_GPL vmlinux 0x90c19f0c kvm_vcpu_gfn_to_pfn -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 0x913b700b kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x915442a2 kthread_func -EXPORT_SYMBOL_GPL vmlinux 0x91590be1 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu -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 0x91d8059d devlink_rate_leaf_create -EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean -EXPORT_SYMBOL_GPL vmlinux 0x91edbca8 component_del -EXPORT_SYMBOL_GPL vmlinux 0x91f2ec27 devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0x91f94a5e fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0x91fb76f2 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x92037111 dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0x92044b0e kvm_get_kvm_safe -EXPORT_SYMBOL_GPL vmlinux 0x921d9efd nl_table -EXPORT_SYMBOL_GPL vmlinux 0x922c90c6 bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x9242bc8b iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x925195ce driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x925237a4 mptcp_pm_get_add_addr_accept_max -EXPORT_SYMBOL_GPL vmlinux 0x92614b3f irq_get_default_host -EXPORT_SYMBOL_GPL vmlinux 0x92cd4677 devlink_port_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x92d121ae devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0x92d7e9a9 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x92eddbee l3mdev_link_scope_lookup -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 0x93255b2b ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x93711851 __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0x9386b325 cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x938d54a4 devlink_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0x93d35389 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x94160518 __put_task_struct_rcu_cb -EXPORT_SYMBOL_GPL vmlinux 0x941d4a16 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack -EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x943e2ffc kvm_vcpu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x944acf90 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x944fd541 skb_mpls_push -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 0x948591a6 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x94bf6cc2 sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x94c40912 pci_stop_root_bus -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 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x95209ec9 __synth_event_gen_cmd_start -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 0x95403ab7 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x9562ac2f tracing_snapshot_cond_disable -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 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 0x95a9c90c synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0x95b061d9 get_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x95bf855a tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x95e3651b perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0x95f6b766 create_signature -EXPORT_SYMBOL_GPL vmlinux 0x960ede54 bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x961a2e21 crypto_stats_get -EXPORT_SYMBOL_GPL vmlinux 0x9628b5e8 virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0x962ece6b gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x964293ec blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x964956a6 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x964e94a2 __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x96b43ced platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x96b734cf sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x96c8041d serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x96d96754 xdp_master_redirect -EXPORT_SYMBOL_GPL vmlinux 0x96e1daa1 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x96eff4d8 xdp_build_skb_from_frame -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 0x9740fa9b strp_init -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x97595fef blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x976cdc85 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x9771e34e __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x97725e1f xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x9792fa6d nfs_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x97a2f16a skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0x97cc6ad2 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x97cfd18e pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97e914e9 kvm_put_kvm_no_destroy -EXPORT_SYMBOL_GPL vmlinux 0x980e9e8a get_net_ns_by_pid -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 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 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 0x98b142fa blk_fill_rwbs -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 0x991e5613 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x991fa358 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x9923a20c dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x9926ef42 __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x993b263c unwind_get_return_address -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 0x99b0f3f1 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x99e44231 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x99f4591c key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x9a063eb6 bsg_job_put -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 0x9a50e8d4 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x9a635abe dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0x9a7e0f2d __kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x9a84d44b ethnl_cable_test_step -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 0x9b03b2e0 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x9b18ec1b fsnotify_add_mark -EXPORT_SYMBOL_GPL vmlinux 0x9b4f694d fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0x9b5b780b devlink_params_register -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 0x9b794f67 __traceiter_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x9b8447c4 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x9b88e1bf tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill -EXPORT_SYMBOL_GPL vmlinux 0x9b8d6d94 __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x9ba68c62 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x9bad0633 scsi_free_sgtables -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 0x9bf0111e fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0x9bf6c9a6 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x9c121665 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x9c154bb1 irq_domain_create_legacy -EXPORT_SYMBOL_GPL vmlinux 0x9c3d6cd6 dw_pcie_ep_init_complete -EXPORT_SYMBOL_GPL vmlinux 0x9c56566e ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x9c69c51d wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x9c9414a2 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x9caaf660 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x9cf541f2 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x9cfbe35d crypto_stats_akcipher_sign -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 0x9d2d1059 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp -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 0x9d6bf13d devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0x9d93f511 vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0x9da6d8e5 gmap_create -EXPORT_SYMBOL_GPL vmlinux 0x9da9351f gmap_shadow_r3t -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 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 0x9e3d94f0 sched_trace_rq_cpu_capacity -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e47b3a6 irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0x9e527057 __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x9e671741 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x9e800b4b rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0x9e80bd31 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x9e88f1a5 sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9e96737a crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x9ec054d5 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9efb09a1 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x9f0db2c6 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x9f14cadd iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9f2506e1 irq_domain_associate -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 0x9f9b1ad1 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x9fa1034c crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x9fa2d164 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fcf17d3 devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x9fd461d8 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x9fd71cef skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x9fdd6124 cgroup_get_e_css -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 0xa001e8fd fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0xa002485e crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0xa0086c81 udp_tunnel_nic_ops -EXPORT_SYMBOL_GPL vmlinux 0xa011a507 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xa019a01f validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0xa040cef4 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa06274ea shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xa068f3e3 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xa0697b70 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xa0749cdb addrconf_add_linklocal -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 0xa104b54f sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0xa111e665 pernet_ops_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xa1357fff perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xa146880f msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0xa146e17b iptunnel_xmit -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 0xa1b78cd7 __inet_lookup_listener -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 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 0xa24cb128 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle -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 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 0xa2c0122e kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xa2c03698 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0xa2c1fd70 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa3106754 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0xa325325a ip6_pol_route -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 0xa388b645 crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3b9b118 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa3be9b87 devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0xa3d2da21 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xa3e4627f pci_assign_unassigned_bus_resources -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 0xa410a295 devlink_region_destroy -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 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 -EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0xa4b1b2b8 raw_seq_start -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 0xa4d34fdf devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa4df6e35 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0xa4f61a0d security_path_chmod -EXPORT_SYMBOL_GPL vmlinux 0xa50afb3a pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xa50f52b1 __traceiter_neigh_cleanup_and_release -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 0xa57bbfa6 dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xa58c661f crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xa58e04bd crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0xa592ae0d dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0xa597d35f bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0xa5d21a11 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa6181d30 tpm_pcr_extend -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 0xa679ddf1 inet6_compat_ioctl -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 0xa699a076 bdev_disk_changed -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 0xa6b7dfa9 lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0xa6bf0490 iommu_group_get -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 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 0xa767e7b4 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xa7680cb6 __class_create -EXPORT_SYMBOL_GPL vmlinux 0xa77d1f01 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0xa78207c5 devm_krealloc -EXPORT_SYMBOL_GPL vmlinux 0xa79c5953 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa7cf936d blk_mq_alloc_sq_tag_set -EXPORT_SYMBOL_GPL vmlinux 0xa7dc4453 crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0xa7ee4f3d rcu_read_unlock_trace_special -EXPORT_SYMBOL_GPL vmlinux 0xa7eeca0d lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0xa7fdfb58 percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xa8382b6d posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xa8403b27 crypto_register_algs -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 0xa8e56d0f perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0xa8fc3a92 kvm_vcpu_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xa8fc958d dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0xa9154bb1 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xa9198318 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa95cbe8c dm_start_time_ns_from_clone -EXPORT_SYMBOL_GPL vmlinux 0xa96476af virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0xa982b1ad bpf_trace_run1 -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 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e9c157 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xa9f70693 devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9fd4b63 vp_modern_get_status -EXPORT_SYMBOL_GPL vmlinux 0xa9ff15b9 s390_enable_sie -EXPORT_SYMBOL_GPL vmlinux 0xaa105592 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0xaa170346 ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa545222 noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0xaa61235b devlink_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0xaa61de11 irq_stat -EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa9c1145 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0xaaa23671 mptcp_token_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaaddf5ee ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xaaf3c255 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0xaafa5482 klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xab149931 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xab3c4e56 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0xab73ae09 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0xab8b6a03 virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xab9d5b03 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xab9db946 pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0xaba5a9fc tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0xabb6f217 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabf7a0a8 __srcu_read_unlock -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 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 0xac6ee5f4 __traceiter_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xac957ad0 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xacd723cb put_device -EXPORT_SYMBOL_GPL vmlinux 0xacdcdbbb relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xacdf8d66 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0xacfa4383 synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0xad09de85 nfs42_ssc_unregister -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 0xad4e6259 remove_cpu -EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -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 0xadb854a4 crypto_alloc_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0xadc49208 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0xadcb2fe9 fscrypt_d_revalidate -EXPORT_SYMBOL_GPL vmlinux 0xade5e335 __sock_recv_wifi_status -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 0xae282cf9 decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0xae2b88a5 devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae4ef89f dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0xae64f1dd __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae96fb9c seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0xaeaaf3ab irq_domain_translate_twocell -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 0xaf05a837 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0xaf1c2651 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0xaf23b6db crypto_enqueue_request_head -EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xaf5f86d0 umd_cleanup_helper -EXPORT_SYMBOL_GPL vmlinux 0xaf63e41d debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0xaf694536 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xafa5d493 tcp_unregister_congestion_control -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 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 0xb094ba7b ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -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 0xb0f9e704 xas_split -EXPORT_SYMBOL_GPL vmlinux 0xb104517e inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -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 0xb1a56446 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0xb1b1c93e atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb1c4df2e zpci_kvm_hook -EXPORT_SYMBOL_GPL vmlinux 0xb1cda312 __udp_gso_segment -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 0xb1e8665d devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string -EXPORT_SYMBOL_GPL vmlinux 0xb20ac73a trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb21cde14 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xb226a806 nfs42_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0xb232310e xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb270ebb1 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0xb275c837 crypto_stats_skcipher_encrypt -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 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 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb31d0ed3 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xb3365bc6 devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0xb34dbe78 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0xb357a852 iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0xb39678ed crypto_stats_kpp_generate_public_key -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 0xb4252ef3 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0xb428de10 pci_dev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb4339edb iomap_dio_complete -EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb46c107f ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xb46fbe0b klp_shadow_get_or_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb480cd24 pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0xb48c058d tty_buffer_lock_exclusive -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 0xb4c6536a fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0xb4cc2df0 fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0xb4d28990 skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb4edb989 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xb517b237 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0xb51b5271 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0xb51da1a2 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xb55a8321 dw_pcie_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xb588c21f pci_bridge_secondary_bus_reset -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 0xb696f7a7 rtnl_link_register -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 0xb758091f xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0xb7762bee device_remove_properties -EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg -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 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xb7e69aae access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0xb7ed956c bio_start_io_acct -EXPORT_SYMBOL_GPL vmlinux 0xb8175793 devlink_param_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb853003b iommu_get_domain_for_dev -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 0xb8a2e77e kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0xb8b6d346 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0xb8cac0b2 vfs_write -EXPORT_SYMBOL_GPL vmlinux 0xb8ccab6e inet_twsk_purge -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 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 0xb96806cf public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb9c0b3c3 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9cd8863 mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9e68e83 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xba01454f pfn_to_online_page -EXPORT_SYMBOL_GPL vmlinux 0xba057087 devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0xba0b9b18 devlink_param_register -EXPORT_SYMBOL_GPL vmlinux 0xba1b02ca add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xba39356b __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xba558602 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xba6b73f9 zpci_aif_sbv -EXPORT_SYMBOL_GPL vmlinux 0xbaa0aad7 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb1769c1 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xbb32e49b css_general_characteristics -EXPORT_SYMBOL_GPL vmlinux 0xbb48a860 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0xbb5170c5 irq_get_percpu_devid_partition -EXPORT_SYMBOL_GPL vmlinux 0xbb6003cb ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback -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 0xbb7b3f80 chp_ssd_get_mask -EXPORT_SYMBOL_GPL vmlinux 0xbb82b09a iommu_alloc_resv_region -EXPORT_SYMBOL_GPL vmlinux 0xbba69257 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0xbbabdf57 __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0xbbb4f4bf ip6_dst_lookup_tunnel -EXPORT_SYMBOL_GPL vmlinux 0xbbc25d2d crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0xbbc40a71 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0xbbea800c nfs_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0xbc367872 tty_port_default_client_ops -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 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbccaf989 devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -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 0xbd0cd4ac synth_event_create -EXPORT_SYMBOL_GPL vmlinux 0xbd3e6421 xdp_return_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd55a855 tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx -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 0xbdaf59d4 call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0xbdb2ec95 crypto_shash_tfm_digest -EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xbdef6822 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0xbe1488d9 fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe6baf44 pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0xbe710ed0 devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0xbe75c5cf debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbec3346f inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0xbedda908 vfs_inode_has_locks -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf3b0ebe crypto_grab_akcipher -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 0xbf7186c0 sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0xbf8dde99 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xbf9f36b8 devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0xbfb0b0a1 crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0xbfb3054c fwnode_count_parents -EXPORT_SYMBOL_GPL vmlinux 0xbfc780ad tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0xbfd13db9 vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbff3fb2a crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0xbffa7ff4 scsi_build_sense -EXPORT_SYMBOL_GPL vmlinux 0xc0397814 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xc045988c rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0xc057b853 ip6_append_data -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 0xc0e6a9d8 sysfs_unmerge_group -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 0xc11e74e4 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0xc132c453 __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xc15d2635 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0xc15d6188 d_exchange -EXPORT_SYMBOL_GPL vmlinux 0xc1925bb2 unregister_virtio_device -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 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc272f885 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0xc27a0550 ksm_madvise -EXPORT_SYMBOL_GPL vmlinux 0xc28a037d gpio_to_desc -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 0xc2cfa1c0 put_pid_ns -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 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc3480da4 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xc3796e70 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc37f3120 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc38e5a16 cgrp_dfl_root -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 0xc410c262 is_current_mnt_ns -EXPORT_SYMBOL_GPL vmlinux 0xc410e8c1 kvm_get_running_vcpu -EXPORT_SYMBOL_GPL vmlinux 0xc4178e89 tcp_rate_check_app_limited -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 0xc45e246f housekeeping_test_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc46601b1 scsi_host_busy_iter -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 0xc4fbd36e fscrypt_fname_siphash -EXPORT_SYMBOL_GPL vmlinux 0xc4fd1b3a input_device_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc51a5886 alloc_dax -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 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc57d8eec skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0xc5a0ed40 debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0xc5b62bc4 debugfs_create_x32 -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 0xc5d85144 xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0xc5fc549e sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0xc6136202 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc62ece5b iommu_set_pgtable_quirks -EXPORT_SYMBOL_GPL vmlinux 0xc6332072 sched_trace_rq_avg_irq -EXPORT_SYMBOL_GPL vmlinux 0xc63a0837 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc662ecda __tracepoint_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc672a391 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xc684a876 fscrypt_get_symlink -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 0xc6ac1ce4 vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0xc6f76470 __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0xc70f7d52 devm_blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc731eb38 blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0xc755c93f trace_handle_return -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 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7a908fb trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0xc7c5d0fa __hvc_resize -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 0xc824f9d8 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc83361fc mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xc8469cb7 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xc8598060 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0xc87ca69a io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0xc888cf21 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xc8c1cdcf bus_set_iommu -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 0xc8ff4231 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0xc9019ff4 fsnotify_put_mark -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 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc9aa1215 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0xc9b7bb94 iomap_swapfile_activate -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 0xc9f6ac6c fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xc9fa6023 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0xca2496fd ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0xca307968 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0xca541308 trusted_tpm_send -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 0xcaa1d3d0 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcac54713 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xcad29180 pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xcae33091 fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0xcaefaae3 gmap_mprotect_notify -EXPORT_SYMBOL_GPL vmlinux 0xcaf22faf tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0xcaf57120 crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xcb135034 bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0xcb3d14ee udp_abort -EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb836993 iomap_readpage -EXPORT_SYMBOL_GPL vmlinux 0xcb8ddfa3 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0xcbaac6e4 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbf01272 devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0xcbfa1d72 crypto_mod_get -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 0xcc6b4af7 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xcc6f192d proc_create_net_single_write -EXPORT_SYMBOL_GPL vmlinux 0xcc735d0a irq_chip_set_affinity_parent -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 0xcccec229 fork_usermode_driver -EXPORT_SYMBOL_GPL vmlinux 0xcce2b1f7 __netpoll_cleanup -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 0xccf9f015 devlink_port_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0xcd0050f7 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd5607e5 gpiod_get_value -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 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 0xcdd0f21e ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0xce14cb68 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xce324f5b devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xce357759 serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -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 0xcecb7c45 tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0xced8666c sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0xcf0afbfb copy_to_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0xcf259dfa irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0xcf3f6455 sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0xcf7d039d sfp_bus_find_fwnode -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 0xcfb81255 devlink_register -EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0xcfe19c89 fscrypt_ioctl_add_key -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 0xd021d28d mptcp_pm_get_local_addr_max -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 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 0xd07a1722 tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xd08a0e8c pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0xd0958584 ip6_datagram_recv_ctl -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 0xd0e13056 device_add -EXPORT_SYMBOL_GPL vmlinux 0xd0f35fa6 dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xd106a2c1 skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0xd10c5996 device_link_del -EXPORT_SYMBOL_GPL vmlinux 0xd12d1b22 dax_region_put -EXPORT_SYMBOL_GPL vmlinux 0xd130a1e0 crypto_create_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear -EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xd17f7857 devlink_port_params_register -EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1da72c6 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd2073226 pkcs7_free_message -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 0xd24b6145 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0xd2502e65 devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0xd2517076 pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0xd2570cef ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0xd2664a2e debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0xd26b6b2f gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0xd2704f6e l3mdev_table_lookup_register -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd2a1242d pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd2a4dc09 wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0xd2b7b379 cio_disable_subchannel -EXPORT_SYMBOL_GPL vmlinux 0xd2b7e85d pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0xd2ba333c devlink_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd2c95579 debugfs_create_file_unsafe -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 0xd2eede47 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0xd2f0389b scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0xd2f9cdd1 ping_seq_start -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 0xd341607b add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0xd35a60e1 tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0xd35f2f7e vp_modern_set_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xd369b51f strp_process -EXPORT_SYMBOL_GPL vmlinux 0xd37d4cb1 __fput_sync -EXPORT_SYMBOL_GPL vmlinux 0xd38005da dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3a54410 __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xd3d15a9d dw_pcie_own_conf_map_bus -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 0xd428ef4c gpiochip_reqres_irq -EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd443eede console_drivers -EXPORT_SYMBOL_GPL vmlinux 0xd44f0e79 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd45c0803 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xd45edf83 sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0xd468b2fe platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xd4716783 xfrm_audit_state_icvfail -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 0xd4b6157e devlink_health_reporter_recovery_done -EXPORT_SYMBOL_GPL vmlinux 0xd4bf483c inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xd5157e76 dma_mmap_pages -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd565d46e sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0xd571b1b5 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xd577ee61 __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0xd5be4b47 proc_dou8vec_minmax -EXPORT_SYMBOL_GPL vmlinux 0xd5e06d81 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xd5f5d0ef pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xd60a44c7 blk_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0xd6219625 devlink_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd62c09f5 __vfs_removexattr_noperm -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 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 0xd7132cc4 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0xd7175227 bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0xd723ce64 __traceiter_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xd72abe3e ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xd72adcfd gmap_pmdp_invalidate -EXPORT_SYMBOL_GPL vmlinux 0xd748dee3 sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0xd74ce644 iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0xd75f6bed param_set_bool_enable_only -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 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 0xd7df0753 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0xd7f633b3 msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0xd800c9b2 security_inode_create -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 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 0xd8c4bdae ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0xd8f0d2bc debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd90df217 __traceiter_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0xd90f79c2 set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xd90fb397 crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk -EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data -EXPORT_SYMBOL_GPL vmlinux 0xd947c2a7 fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0xd94906e8 xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0xd95c90b9 skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0xd9639761 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd97a203e mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0xd99b86c9 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0xd9a036f1 dax_layout_busy_page_range -EXPORT_SYMBOL_GPL vmlinux 0xd9ad591a bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0xd9b2fe89 crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xd9b642e5 badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0xd9b8cfda alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0xd9c8e7fe skb_pull_rcsum -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 0xda31039f alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda3f3e8a isc_register -EXPORT_SYMBOL_GPL vmlinux 0xda63b9f5 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xda753dab devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0xda885101 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdaa695bc pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0xdaa96975 addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdaf40040 ping_hash -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 0xdb2d09a1 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xdb2e2174 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xdb2f3d38 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0xdb657b08 debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0xdb705fcb __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdbbcbf7c unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xdbc8771b sched_setattr_nocheck -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 0xdbf7cb70 mpi_get_nbits -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 0xdc637d8c nfs_ssc_client_tbl -EXPORT_SYMBOL_GPL vmlinux 0xdc69193b synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0xdc6970be devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdc94e63c crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0xdc9c8862 crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca61d89 lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd1d465d iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd41b313 crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0xdd5e5723 bpf_trace_run11 -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 0xdd6ddcec __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xdd8507fb iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0xdd90ec03 ethnl_cable_test_free -EXPORT_SYMBOL_GPL vmlinux 0xddad9b8b inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddc4545d ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xdded42f1 ncsi_register_dev -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 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 0xde68b2ff tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde70b5c2 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0xde841657 ccw_device_get_cssid -EXPORT_SYMBOL_GPL vmlinux 0xdee07053 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xdeff7f8d preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync -EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf311a49 crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xdf43a512 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0xdf67d18b iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xdf7b5951 crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0xdf859a75 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0xdf8bcde7 bpf_redirect_info -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 0xdfff167a vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0xe0101256 serdev_device_write_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xe0161805 perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0xe02f047c xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0xe050b266 platform_unregister_drivers -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 0xe0d199d7 dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xe0f9fff4 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0xe10e5eff metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xe1206612 fwnode_get_nth_parent -EXPORT_SYMBOL_GPL vmlinux 0xe1253ee7 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xe1284fe6 irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xe15ff968 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xe165b218 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe17a2c73 sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0xe1909ebe devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xe1aadb57 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0xe1b685e8 __percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0xe1bf56eb __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xe1c05068 yield_to -EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx -EXPORT_SYMBOL_GPL vmlinux 0xe1e9d86c platform_device_register_full -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 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 0xe307205a bprintf -EXPORT_SYMBOL_GPL vmlinux 0xe3156bc0 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xe31d93a3 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0xe330852d msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0xe348151b gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0xe34f821f set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xe364c669 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0xe36c4a41 file_is_kvm -EXPORT_SYMBOL_GPL vmlinux 0xe3805d0a lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xe39e357e nexthop_select_path -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 0xe3cffda8 xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0xe3df8a01 tpm_send -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 0xe444641d devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0xe4475eca __traceiter_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xe4595494 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0xe45b2f34 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0xe470ba38 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xe4724811 sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xe487a3d3 serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0xe4927b1b pci_dev_lock -EXPORT_SYMBOL_GPL vmlinux 0xe492fb58 devlink_param_driverinit_value_set -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 0xe4b93f27 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xe4bafc09 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0xe4e0214d fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0xe4eec6d8 do_splice_to -EXPORT_SYMBOL_GPL vmlinux 0xe50c49d8 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xe51802ba xas_store -EXPORT_SYMBOL_GPL vmlinux 0xe53fca77 bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe5a43675 perf_event_period -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 0xe628786f iommu_enable_nesting -EXPORT_SYMBOL_GPL vmlinux 0xe642c797 device_driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xe69824cb exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0xe6a1430a bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0xe6aaae3e tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe6c2663a mptcp_get_reset_option -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 0xe72a120b pci_vpd_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe72e844b __rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xe7352843 bus_for_each_dev -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 0xe78fef5d blkdev_zone_mgmt -EXPORT_SYMBOL_GPL vmlinux 0xe7983cd2 dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get -EXPORT_SYMBOL_GPL vmlinux 0xe7a934f7 pci_epc_set_msix -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 0xe8007092 crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0xe80b4792 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0xe80b6051 device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xe81d1527 devlink_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0xe8337b10 fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe84cd8c6 rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0xe86b5558 fib_nl_newrule -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 0xe8f6eb70 sk_msg_free_nocharge -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 0xe9295bcb sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0xe9315575 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe936fcfc devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe9578632 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xe97a57fa devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0xe97e0719 irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xe9cb6061 gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0xe9d097fe devm_fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xe9e38a7e dm_hold -EXPORT_SYMBOL_GPL vmlinux 0xe9edd2f7 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0xe9f145f9 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0xe9faf42d skcipher_walk_aead_decrypt -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 0xea26dad5 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0xea375449 bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0xea440e04 blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xea784d80 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xeabcf3bf fscrypt_mergeable_bio -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 0xeae75282 devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0xeafb1f50 page_cache_sync_ra -EXPORT_SYMBOL_GPL vmlinux 0xeb03fde2 xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0xeb2c2aad security_file_permission -EXPORT_SYMBOL_GPL vmlinux 0xeb317ee6 __traceiter_unmap -EXPORT_SYMBOL_GPL vmlinux 0xeb4772d0 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0xeb65e8f6 __traceiter_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xeb6fde24 inet6_lookup -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 0xeba59814 net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0xebb15592 netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xebff98db fbcon_modechange_possible -EXPORT_SYMBOL_GPL vmlinux 0xec13c83c si_swapinfo -EXPORT_SYMBOL_GPL vmlinux 0xec219f5f skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xec562d42 dev_fill_forward_path -EXPORT_SYMBOL_GPL vmlinux 0xec5db091 proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0xec74f104 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xeca732f5 devm_gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0xeca9c2f0 udp_destruct_common -EXPORT_SYMBOL_GPL vmlinux 0xeca9dc04 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0xecb07a3e sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0xecc3f2a3 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0xecc6ead6 irq_chip_set_parent_state -EXPORT_SYMBOL_GPL vmlinux 0xecd2032a ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xecdf9b9f blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xecfd7be2 devres_get -EXPORT_SYMBOL_GPL vmlinux 0xed175f57 ip_route_output_tunnel -EXPORT_SYMBOL_GPL vmlinux 0xed24741d pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0xed440517 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0xed48a163 __zpci_store_block -EXPORT_SYMBOL_GPL vmlinux 0xed5437f9 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0xedaf6d88 gmap_make_secure -EXPORT_SYMBOL_GPL vmlinux 0xedc9af86 virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0xede9371d dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xedf55abb zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xee01d46f fib6_check_nexthop -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 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 0xee480689 vp_modern_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0xee494957 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xee868010 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeea834c0 kprobe_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0xeeb2cd64 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0xeebf8f76 tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0xeec3d427 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0xeec6f7da unix_inq_len -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 0xef319ffd nf_route -EXPORT_SYMBOL_GPL vmlinux 0xef3c1467 pci_dev_trylock -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance -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 0xf01ab31d tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0xf0237992 is_swiotlb_active -EXPORT_SYMBOL_GPL vmlinux 0xf032b3fe gmap_enable -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 0xf086e81a pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xf08ee4c3 sbitmap_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf0af6833 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0xf0c25daa __traceiter_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xf0c51f1f strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xf0f2d8f1 software_node_unregister_nodes -EXPORT_SYMBOL_GPL vmlinux 0xf101bed2 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xf126b288 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0xf13657f2 __inet_lookup_established -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 0xf15a9245 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf194b5a4 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xf19cb114 bpf_prog_alloc -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 0xf214ac86 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf22bf78a simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0xf24eefe0 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf25bab4e bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0xf2893c99 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf2a24434 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0xf2adfc48 nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0xf2ae0c63 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2b3fa48 netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0xf2d87a62 list_lru_add -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 0xf31e4873 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xf3203393 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xf33e8356 kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf381c436 dev_get_tstats64 -EXPORT_SYMBOL_GPL vmlinux 0xf383a8f9 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xf391cca7 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf3a27792 proc_create_net_single -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 0xf3e5128a icmp_build_probe -EXPORT_SYMBOL_GPL vmlinux 0xf40ac8dd lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0xf40d4689 crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xf40ee4b2 sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0xf440bc79 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xf467a823 tcp_reno_undo_cwnd -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 0xf4a70308 vfs_read -EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4b311d4 crypto_register_skciphers -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 0xf5401d20 blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf560ec04 bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0xf580d115 __devres_alloc_node -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 0xf5f27c0b devlink_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf5fdbcde platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xf61d01f7 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xf6222ff4 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xf6320619 appldata_unregister_ops -EXPORT_SYMBOL_GPL vmlinux 0xf645784f platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0xf648b69a css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0xf657be8f __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xf65eda83 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xf692c05b nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0xf69a7069 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xf6afd331 xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0xf6bd75c3 __traceiter_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xf6c5e60b tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6caa199 cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0xf6ecaf0c ping_close -EXPORT_SYMBOL_GPL vmlinux 0xf70f2300 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0xf7141195 gmap_discard -EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size -EXPORT_SYMBOL_GPL vmlinux 0xf7399404 devlink_unregister -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 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 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7e73b0f bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0xf80ae3d6 perf_event_pause -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 0xf825d908 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0xf826f68e xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xf855ccce __zpci_store -EXPORT_SYMBOL_GPL vmlinux 0xf8811efc vp_modern_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xf8837252 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf89ce8a6 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0xf8c3dc85 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0xf8c9b48f crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0xf9044e05 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xf9210aff blkdev_nr_zones -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 0xf9780ed7 dst_blackhole_redirect -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 0xf9cacb4b blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0xf9dc3971 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xfa0a916d tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xfa166d78 __netpoll_free -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 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 0xfa6e715d ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfaf38df1 devlink_port_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfb21b1b5 dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xfb2e3bfe __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb483f9f crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xfb4aaff1 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfb4e503e iommu_map_atomic -EXPORT_SYMBOL_GPL vmlinux 0xfb6e6ced mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xfb7c0d84 devlink_region_snapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0xfbb8444f event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0xfbb89897 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbdc4cf6 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xfbe70bd2 dw_pcie_ep_init_notify -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 0xfc06b8b2 tcp_unregister_ulp -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 0xfc553987 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xfc6319f4 __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xfc9bd641 platform_device_alloc -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 0xfced70b9 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfd0ba687 crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xfd153e0c md_start -EXPORT_SYMBOL_GPL vmlinux 0xfd2a481e lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0xfd46a524 __page_file_mapping -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 0xfda5e021 ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdd096b1 raw_abort -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 0xfe05bc82 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release -EXPORT_SYMBOL_GPL vmlinux 0xfe250cbc transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0xfe3037b8 lwtunnel_encap_add_ops -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 0xfe8cdb84 ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfeb6fb0e fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xfed5139c pcie_aspm_capable -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 0xff38fc8f perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0xff403774 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xff4048f4 platform_bus -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 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xffa6dc9c devlink_free -EXPORT_SYMBOL_GPL vmlinux 0xffa90f95 fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffc9315b handle_fasteoi_irq -FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x084c0ac6 nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x0b6ed249 nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x7b7f0a4c nvme_execute_passthru_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x9277a58d nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xfb21c7f8 nvme_put_ns drivers/nvme/host/nvme-core reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/s390x/generic.compiler +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/s390x/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/s390x/generic.modules +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/s390x/generic.modules @@ -1,980 +0,0 @@ -8021q -842 -842_compress -842_decompress -9p -9pnet -9pnet_rdma -9pnet_virtio -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 -adiantum -adin -aegis128 -aes_s390 -aes_ti -af_alg -af_iucv -af_key -af_packet_diag -ah4 -ah6 -algif_aead -algif_hash -algif_rng -algif_skcipher -altera-cvp -altera-pr-ip-core -amd -amlogic-gxl-crypto -ansi_cprng -appldata_mem -appldata_net_sum -appldata_os -aquantia -arp_tables -arpt_mangle -arptable_filter -asym_tpm -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -auth_rpcgss -authenc -authencesn -ba431-rng -bcache -bcm-phy-lib -bcm54140 -bcm7xxx -bcm87xx -bfq -binfmt_misc -blake2b_generic -blocklayoutdriver -blowfish_common -blowfish_generic -bochs -bonding -bpfilter -br_netfilter -brd -bridge -broadcom -btrfs -cachefiles -camellia_generic -cast5_generic -cast6_generic -cast_common -ccm -ccwgroup -ceph -cfb -cfbcopyarea -cfbfillrect -cfbimgblt -ch -chacha20poly1305 -chacha_generic -chacha_s390 -chsc_sch -cicada -cifs -cifs_arc4 -cifs_md4 -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_u32 -cmac -coda -cordic -cortina -crc-itu-t -crc32-vx_s390 -crc32_generic -crc4 -crc64 -crc7 -crc8 -cryptd -crypto_engine -crypto_user -ctcm -curve25519-generic -cuse -dasd_diag_mod -dasd_eckd_mod -dasd_fba_mod -dasd_mod -davicom -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dcssblk -deflate -des_generic -des_s390 -device_dax -diag -diag288_wdt -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 -dp83640 -dp83822 -dp83848 -dp83867 -dp83869 -dp83tc811 -dpt_i2o -drbd -drm -drm_kms_helper -drm_panel_orientation_quirks -drm_ttm_helper -drm_vram_helper -dummy -dummy_stm -dwc-xlgmac -eadm_sch -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ecc -ecdh_generic -ecdsa_generic -echainiv -ecrdsa_generic -em_cmp -em_ipset -em_ipt -em_meta -em_nbyte -em_text -em_u32 -eql -erofs -esp4 -esp4_offload -esp6 -esp6_offload -essiv -et1011c -failover -faulty -fb_sys_fops -fcoe -fcrypt -fixed_phy -fou -fou6 -fpga-mgr -fs3270 -fscache -fsm -garp -geneve -genwqe_card -gfs2 -ghash_s390 -gpio-aggregator -gpio-bt8xx -gpio-generic -gpio-pci-idio-16 -gpio-pcie-idio-24 -grace -gre -gtp -hangcheck-timer -hmcdrv -i2c-algo-bit -i2c-core -i2c-dev -i2c-mux -i2c-stub -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mthca -ib_srp -ib_srpt -ib_umad -ib_uverbs -icp -icplus -ifb -ife -ila -inet_diag -intel-xway -intel_th -intel_th_gth -intel_th_msu -intel_th_msu_sink -intel_th_pci -intel_th_pti -intel_th_sth -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_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_tunnel -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_wlc -ip_vs_wrr -ip_vti -ipcomp -ipcomp6 -ipip -ipt_CLUSTERIP -ipt_ECN -ipt_REJECT -ipt_SYNPROXY -ipt_ah -ipt_rpfilter -iptable_filter -iptable_mangle -iptable_nat -iptable_raw -iptable_security -ipvlan -ipvtap -irqbypass -iscsi_boot_sysfs -iscsi_target_mod -iscsi_tcp -ism -isofs -iw_cm -kafs -kcm -keywrap -kheaders -kmem -ksmbd -kyber-iosched -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -lcs -libceph -libchacha -libchacha20poly1305 -libcrc32c -libcurve25519 -libcurve25519-generic -libdes -libfc -libfcoe -libiscsi -libiscsi_tcp -libphy -libpoly1305 -libsas -libsm4 -linear -llc -lockd -lru_cache -lrw -lxt -lz4 -lz4_compress -lz4hc -lz4hc_compress -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -macsec -macvlan -macvtap -marvell -marvell10g -md-cluster -md4 -mdev -mdio-i2c -mdio_devres -memory-notifier-error-inject -mena21_wdt -michael_mic -micrel -microchip -microchip_t1 -mip6 -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlxfw -mlxsw_core -mlxsw_pci -mlxsw_spectrum -monreader -monwriter -mpls_gso -mpls_iptunnel -mpls_router -mpt3sas -mptcp_diag -mrp -mscc -msdos -national -nbd -net_failover -netconsole -netdevsim -netfs -netiucv -netlink_diag -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 -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_hook -nfnetlink_log -nfnetlink_osf -nfnetlink_queue -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 -nhpoly1305 -nilfs2 -nlmon -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp737 -nls_cp775 -nls_cp850 -nls_cp852 -nls_cp855 -nls_cp857 -nls_cp860 -nls_cp861 -nls_cp862 -nls_cp863 -nls_cp864 -nls_cp865 -nls_cp866 -nls_cp869 -nls_cp874 -nls_cp932 -nls_cp936 -nls_cp949 -nls_cp950 -nls_euc-jp -nls_iso8859-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 -notifier-error-inject -nsh -ntfs -ntfs3 -null_blk -nvme -nvme-core -nvme-fabrics -nvme-fc -nvme-loop -nvme-rdma -nvme-tcp -nvmet -nvmet-fc -nvmet-rdma -nvmet-tcp -objagg -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ofb -openvswitch -orangefs -overlay -p8022 -paes_s390 -parman -pcbc -pci-pf-stub -pci-stub -pcrypt -phylink -pkcs7_test_key -pkcs8_key_parser -pkey -pktgen -pnet -poly1305_generic -pps_core -pretimeout_panic -prng -psample -psnap -ptp -ptp_clockmatrix -ptp_ines -qdio -qeth -qeth_l2 -qeth_l3 -qsemi -quota_tree -quota_v1 -quota_v2 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid_class -raw_diag -rbd -rdma_cm -rdma_rxe -rdma_ucm -rds -rds_rdma -rds_tcp -realtek -rmd160 -rnbd-client -rnbd-server -rockchip -rpcrdma -rpcsec_gss_krb5 -rtrs-client -rtrs-core -rtrs-server -rxrpc -s390-trng -sample-trace-array -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 -scm_block -scsi_debug -scsi_dh_alua -scsi_dh_emc -scsi_dh_hp_sw -scsi_dh_rdac -scsi_transport_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_diag -selftests -serial_core -serpent_generic -sfp -sha1_s390 -sha256_s390 -sha3_256_s390 -sha3_512_s390 -sha3_generic -sha512_s390 -sha_common -shiftfs -siox-bus-gpio -siox-core -sit -siw -slicoss -slim-qcom-ctrl -slimbus -sm2_generic -sm3_generic -sm4_generic -smc -smc_diag -smsc -smsgiucv_app -softdog -spl -st -st_drv -ste10Xp -stm_console -stm_core -stm_ftrace -stm_heartbeat -stm_p_basic -stm_p_sys-t -stp -streebog_generic -sunrpc -switchtec -syscopyarea -sysfillrect -sysimgblt -tap -tape -tape_34xx -tape_3590 -tape_class -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tcm_fc -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 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -teranetics -test_blackhole_dev -test_bpf -tipc -tls -tpm_key_parser -tpm_vtpm_proxy -trace-printk -ts_bm -ts_fsm -ts_kmp -ttm -tunnel4 -tunnel6 -twofish_common -twofish_generic -uPD60620 -uartlite -ubuntu-host -udf -udp_diag -udp_tunnel -uio -unix_diag -veth -vfio -vfio-pci -vfio-pci-core -vfio_ap -vfio_ccw -vfio_iommu_type1 -vfio_virqfd -vhost -vhost_iotlb -vhost_net -vhost_scsi -vhost_vsock -virtio-gpu -virtio-rng -virtio_blk -virtio_crypto -virtio_dma_buf -virtio_input -virtio_net -virtio_scsi -virtiofs -vitesse -vmac -vmlogrdr -vmur -vmw_vsock_virtio_transport -vmw_vsock_virtio_transport_common -vport-geneve -vport-gre -vport-vxlan -vrf -vsock -vsock_diag -vsock_loopback -vsockmon -vxlan -wireguard -wp512 -x_tables -xcbc -xfrm4_tunnel -xfrm6_tunnel -xfrm_algo -xfrm_interface -xfrm_ipcomp -xfrm_user -xfs -xilinx_emac -xilinx_gmii2rgmii -xor -xsk_diag -xt_AUDIT -xt_CHECKSUM -xt_CLASSIFY -xt_CONNSECMARK -xt_CT -xt_DSCP -xt_HL -xt_HMARK -xt_IDLETIMER -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 -z3fold -zavl -zcommon -zcrypt -zcrypt_cex2a -zcrypt_cex2c -zcrypt_cex4 -zfcp -zfs -zlua -znvpair -zonefs -zram -zstd -zstd_compress -zunicode -zzstd reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/s390x/generic.modules.builtin +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/s390x/generic.modules.builtin @@ -1,141 +0,0 @@ -aead -aes_generic -af_packet -akcipher -asn1_decoder -asn1_encoder -asymmetric_keys -autofs4 -binfmt_elf -binfmt_script -bitrev -bsg -cbc -cdrom -cmm -cn -compat_binfmt_elf -configfs -crc-ccitt -crc-t10dif -crc16 -crc32 -crc32c_generic -crct10dif_common -crct10dif_generic -crypto -crypto_acompress -crypto_algapi -crypto_hash -crypto_null -cryptomgr -ctr -cts -dax -dh_generic -digsig -dm-mod -dns_resolver -drbg -drop_monitor -ecb -ecryptfs -encrypted-keys -evdev -exportfs -ext4 -fat -fb -firmware_class -font -fuse -gcm -geniv -gf128mul -ghash-generic -glob -hmac -input-core -ipv6 -iucv -jbd2 -jitterentropy_rng -kpp -kvm -libaes -libblake2s -libsha256 -loop -lz4_decompress -lzo -lzo-rle -lzo_compress -lzo_decompress -mbcache -md-mod -md5 -mpi -mq-deadline -multipath -n_null -nfs_ssc -nls_base -nls_cp437 -oid_registry -pci-ep-cfs -pci-epc-core -pci-epc-mem -pci-epf-core -pkcs7_message -pretimeout_noop -public_key -raw3270 -restart-poweroff -rng -rng-core -rsa_generic -scsi_common -scsi_mod -sd_mod -seqiv -serdev -sg -sha1_generic -sha256_generic -sha512_generic -skcipher -smsgiucv -squashfs -sr_mod -system_heap -t10-pi -tcp_cubic -tpm -trusted -tty3270 -tun -udmabuf -unicode -unix -uvdevice -vfat -virtio -virtio_balloon -virtio_console -virtio_pci -virtio_pci_modern_dev -virtio_ring -watch_queue -watchdog -x509_key_parser -xts -xxhash -xz_dec -zbud -zlib_deflate -zlib_dfltcc -zlib_inflate -zpool -zsmalloc -zstd_decompress -zswap reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/s390x/generic.retpoline +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/s390x/generic.retpoline @@ -1 +0,0 @@ -# RETPOLINE NOT ENABLED reverted: --- linux-xilinx-zynqmp-5.15.0/debian.master/abi/version +++ linux-xilinx-zynqmp-5.15.0.orig/debian.master/abi/version @@ -1 +0,0 @@ -5.15.0-93.103 diff -u linux-xilinx-zynqmp-5.15.0/debian.master/changelog linux-xilinx-zynqmp-5.15.0/debian.master/changelog --- linux-xilinx-zynqmp-5.15.0/debian.master/changelog +++ linux-xilinx-zynqmp-5.15.0/debian.master/changelog @@ -1,3 +1,2586 @@ +linux (5.15.0-104.114) jammy; urgency=medium + + * jammy/linux: 5.15.0-104.114 -proposed tracker (LP: #2059497) + + * Drop fips-checks script from trees (LP: #2055083) + - [Packaging] Remove fips-checks script + + * alsa/realtek: adjust max output valume for headphone on 2 LG machines + (LP: #2058573) + - ALSA: hda/realtek: fix the hp playback volume issue for LG machines + + * A general-proteciton exception during guest migration to unsupported PKRU + machine (LP: #2032164) + - x86/fpu: Allow caller to constrain xfeatures when copying to uabi buffer + - KVM: x86: Constrain guest-supported xfeatures only at KVM_GET_XSAVE{2} + + * [ICX] [SPR] [ipc/msg] performance: Mitigate the lock contention with percpu + counter (LP: #2058485) + - ipc: check checkpoint_restore_ns_capable() to modify C/R proc files + - ipc/ipc_sysctl.c: remove fallback for !CONFIG_PROC_SYSCTL + - ipc: Store mqueue sysctls in the ipc namespace + - ipc: Store ipc sysctls in the ipc namespace + - ipc: Use the same namespace to modify and validate + - ipc: Remove extra1 field abuse to pass ipc namespace + - ipc: Check permissions for checkpoint_restart sysctls at open time + - percpu: add percpu_counter_add_local and percpu_counter_sub_local + - ipc/msg: mitigate the lock contention with percpu counter + + * Remove getabis scripts (LP: #2059143) + - [Packaging] Remove getabis + + * Jammy update: v5.15.149 upstream stable release (LP: #2059014) + - ksmbd: free ppace array on error in parse_dacl + - ksmbd: don't allow O_TRUNC open on read-only share + - ksmbd: validate mech token in session setup + - ksmbd: fix UAF issue in ksmbd_tcp_new_connection() + - ksmbd: only v2 leases handle the directory + - iio: adc: ad7091r: Set alert bit in config register + - iio: adc: ad7091r: Allow users to configure device events + - iio: adc: ad7091r: Enable internal vref if external vref is not supplied + - dmaengine: fix NULL pointer in channel unregistration function + - scsi: ufs: core: Simplify power management during async scan + - scsi: ufs: core: Remove the ufshcd_hba_exit() call from ufshcd_async_scan() + - iio:adc:ad7091r: Move exports into IIO_AD7091R namespace. + - ext4: allow for the last group to be marked as trimmed + - btrfs: sysfs: validate scrub_speed_max value + - crypto: api - Disallow identical driver names + - PM: hibernate: Enforce ordering during image compression/decompression + - hwrng: core - Fix page fault dead lock on mmap-ed hwrng + - crypto: s390/aes - Fix buffer overread in CTR mode + - media: imx355: Enable runtime PM before registering async sub-device + - rpmsg: virtio: Free driver_override when rpmsg_remove() + - media: ov9734: Enable runtime PM before registering async sub-device + - mips: Fix max_mapnr being uninitialized on early stages + - bus: mhi: host: Drop chan lock before queuing buffers + - bus: mhi: host: Add spinlock to protect WP access when queueing TREs + - parisc/firmware: Fix F-extend for PDC addresses + - async: Split async_schedule_node_domain() + - async: Introduce async_schedule_dev_nocall() + - arm64: dts: qcom: sc7180: fix USB wakeup interrupt types + - arm64: dts: qcom: sdm845: fix USB wakeup interrupt types + - arm64: dts: qcom: sm8150: fix USB wakeup interrupt types + - arm64: dts: qcom: sdm845: fix USB DP/DM HS PHY interrupts + - lsm: new security_file_ioctl_compat() hook + - scripts/get_abi: fix source path leak + - mmc: core: Use mrq.sbc in close-ended ffu + - mmc: mmc_spi: remove custom DMA mapped buffers + - rtc: Adjust failure return code for cmos_set_alarm() + - nouveau/vmm: don't set addr on the fail path to avoid warning + - ubifs: ubifs_symlink: Fix memleak of inode->i_link in error path + - rename(): fix the locking of subdirectories + - ksmbd: set v2 lease version on lease upgrade + - ksmbd: fix potential circular locking issue in smb2_set_ea() + - ksmbd: don't increment epoch if current state and request state are same + - ksmbd: send lease break notification on FILE_RENAME_INFORMATION + - ksmbd: Add missing set_freezable() for freezable kthread + - net/smc: fix illegal rmb_desc access in SMC-D connection dump + - tcp: make sure init the accept_queue's spinlocks once + - bnxt_en: Wait for FLR to complete during probe + - vlan: skip nested type that is not IFLA_VLAN_QOS_MAPPING + - llc: make llc_ui_sendmsg() more robust against bonding changes + - llc: Drop support for ETH_P_TR_802_2. + - net/rds: Fix UBSAN: array-index-out-of-bounds in rds_cmsg_recv + - tracing: Ensure visibility when inserting an element into tracing_map + - afs: Hide silly-rename files from userspace + - tcp: Add memory barrier to tcp_push() + - netlink: fix potential sleeping issue in mqueue_flush_file + - ipv6: init the accept_queue's spinlocks in inet6_create + - net/mlx5: DR, Use the right GVMI number for drop action + - net/mlx5: DR, Align mlx5dv_dr API vport action with FW behavior + - net/mlx5: DR, Can't go to uplink vport on RX rule + - net/mlx5e: fix a double-free in arfs_create_groups + - net/mlx5e: fix a potential double-free in fs_any_create_groups + - overflow: Allow mixed type arguments + - netfilter: nft_limit: reject configurations that cause integer overflow + - netfilter: nf_tables: restrict anonymous set and map names to 16 bytes + - netfilter: nf_tables: validate NFPROTO_* family + - net: stmmac: Wait a bit for the reset to take effect + - net: mvpp2: clear BM pool before initialization + - selftests: netdevsim: fix the udp_tunnel_nic test + - fjes: fix memleaks in fjes_hw_setup + - net: fec: fix the unhandled context fault from smmu + - btrfs: fix infinite directory reads + - btrfs: set last dir index to the current last index when opening dir + - btrfs: refresh dir last index during a rewinddir(3) call + - btrfs: fix race between reading a directory and adding entries to it + - btrfs: avoid copying BTRFS_ROOT_SUBVOL_DEAD flag to snapshot of subvolume + being deleted + - btrfs: ref-verify: free ref cache before clearing mount opt + - btrfs: tree-checker: fix inline ref size in error messages + - btrfs: don't warn if discard range is not aligned to sector + - btrfs: defrag: reject unknown flags of btrfs_ioctl_defrag_range_args + - btrfs: don't abort filesystem when attempting to snapshot deleted subvolume + - rbd: don't move requests to the running list on errors + - exec: Fix error handling in begin_new_exec() + - wifi: iwlwifi: fix a memory corruption + - hv_netvsc: Calculate correct ring size when PAGE_SIZE is not 4 Kbytes + - netfilter: nft_chain_filter: handle NETDEV_UNREGISTER for inet/ingress + basechain + - firmware: arm_scmi: Check mailbox/SMT channel for consistency + - xfs: read only mounts with fsopen mount API are busted + - gpiolib: acpi: Ignore touchpad wakeup on GPD G1619-04 + - drm: Don't unref the same fb many times by mistake due to deadlock handling + - drm/bridge: nxp-ptn3460: fix i2c_master_send() error checking + - drm/tidss: Fix atomic_flush check + - drm/bridge: nxp-ptn3460: simplify some error checking + - PM: core: Remove unnecessary (void *) conversions + - PM: sleep: Fix possible deadlocks in core system-wide PM code + - bus: mhi: host: Rename "struct mhi_tre" to "struct mhi_ring_element" + - bus: mhi: host: Add alignment check for event ring read pointer + - fs/pipe: move check to pipe_has_watch_queue() + - pipe: wakeup wr_wait after setting max_usage + - ARM: dts: qcom: sdx55: fix USB wakeup interrupt types + - ARM: dts: samsung: exynos4210-i9100: Unconditionally enable LDO12 + - ARM: dts: qcom: sdx55: fix pdc '#interrupt-cells' + - ARM: dts: qcom: sdx55: fix USB DP/DM HS PHY interrupts + - ARM: dts: qcom: sdx55: fix USB SS wakeup + - media: mtk-jpeg: Fix use after free bug due to error path handling in + mtk_jpeg_dec_device_run + - mm: use __pfn_to_section() instead of open coding it + - mm/sparsemem: fix race in accessing memory_section->usage + - PM / devfreq: Fix buffer overflow in trans_stat_show + - btrfs: add definition for EXTENT_TREE_V2 + - ksmbd: fix global oob in ksmbd_nl_policy + - cpufreq: intel_pstate: Drop redundant intel_pstate_get_hwp_cap() call + - cpufreq: intel_pstate: Refine computation of P-state for given frequency + - drm: panel-simple: add missing bus flags for Tianma tm070jvhg[30/33] + - drm/exynos: fix accidental on-stack copy of exynos_drm_plane + - drm/exynos: gsc: minor fix for loop iteration in gsc_runtime_resume + - gpio: eic-sprd: Clear interrupt after set the interrupt type + - spi: bcm-qspi: fix SFDP BFPT read by usig mspi read + - mips: Call lose_fpu(0) before initializing fcr31 in mips_set_personality_nan + - tick/sched: Preserve number of idle sleeps across CPU hotplug events + - x86/entry/ia32: Ensure s32 is sign extended to s64 + - powerpc/mm: Fix null-pointer dereference in pgtable_cache_add + - arm64: irq: set the correct node for VMAP stack + - drivers/perf: pmuv3: don't expose SW_INCR event in sysfs + - powerpc: Fix build error due to is_valid_bugaddr() + - powerpc/mm: Fix build failures due to arch_reserved_kernel_pages() + - powerpc/64s: Fix CONFIG_NUMA=n build due to create_section_mapping() + - x86/boot: Ignore NMIs during very early boot + - powerpc: pmd_move_must_withdraw() is only needed for + CONFIG_TRANSPARENT_HUGEPAGE + - powerpc/lib: Validate size for vector operations + - x86/mce: Mark fatal MCE's page as poison to avoid panic in the kdump kernel + - perf/core: Fix narrow startup race when creating the perf nr_addr_filters + sysfs file + - debugobjects: Stop accessing objects after releasing hash bucket lock + - regulator: core: Only increment use_count when enable_count changes + - audit: Send netlink ACK before setting connection in auditd_set + - ACPI: video: Add quirk for the Colorful X15 AT 23 Laptop + - PNP: ACPI: fix fortify warning + - ACPI: extlog: fix NULL pointer dereference check + - PM / devfreq: Synchronize devfreq_monitor_[start/stop] + - ACPI: APEI: set memory failure flags as MF_ACTION_REQUIRED on synchronous + events + - FS:JFS:UBSAN:array-index-out-of-bounds in dbAdjTree + - jfs: fix slab-out-of-bounds Read in dtSearch + - jfs: fix array-index-out-of-bounds in dbAdjTree + - pstore/ram: Fix crash when setting number of cpus to an odd number + - crypto: octeontx2 - Fix cptvf driver cleanup + - crypto: stm32/crc32 - fix parsing list of devices + - afs: fix the usage of read_seqbegin_or_lock() in afs_lookup_volume_rcu() + - afs: fix the usage of read_seqbegin_or_lock() in afs_find_server*() + - rxrpc_find_service_conn_rcu: fix the usage of read_seqbegin_or_lock() + - jfs: fix array-index-out-of-bounds in diNewExt + - arch: consolidate arch_irq_work_raise prototypes + - s390/ptrace: handle setting of fpc register correctly + - KVM: s390: fix setting of fpc register + - SUNRPC: Fix a suspicious RCU usage warning + - ecryptfs: Reject casefold directory inodes + - ext4: fix inconsistent between segment fstrim and full fstrim + - ext4: unify the type of flexbg_size to unsigned int + - ext4: remove unnecessary check from alloc_flex_gd() + - ext4: avoid online resizing failures due to oversized flex bg + - wifi: rt2x00: restart beacon queue when hardware reset + - selftests/bpf: satisfy compiler by having explicit return in btf test + - selftests/bpf: Fix pyperf180 compilation failure with clang18 + - selftests/bpf: Fix issues in setup_classid_environment() + - scsi: lpfc: Fix possible file string name overflow when updating firmware + - PCI: Add no PM reset quirk for NVIDIA Spectrum devices + - bonding: return -ENOMEM instead of BUG in alb_upper_dev_walk + - scsi: arcmsr: Support new PCI device IDs 1883 and 1886 + - ARM: dts: imx7d: Fix coresight funnel ports + - ARM: dts: imx7s: Fix lcdif compatible + - ARM: dts: imx7s: Fix nand-controller #size-cells + - wifi: ath9k: Fix potential array-index-out-of-bounds read in + ath9k_htc_txstatus() + - bpf: Add map and need_defer parameters to .map_fd_put_ptr() + - scsi: libfc: Don't schedule abort twice + - scsi: libfc: Fix up timeout error in fc_fcp_rec_error() + - bpf: Set uattr->batch.count as zero before batched update or deletion + - ARM: dts: rockchip: fix rk3036 hdmi ports node + - ARM: dts: imx25/27-eukrea: Fix RTC node name + - ARM: dts: imx: Use flash@0,0 pattern + - ARM: dts: imx27: Fix sram node + - ARM: dts: imx1: Fix sram node + - ionic: pass opcode to devcmd_wait + - block/rnbd-srv: Check for unlikely string overflow + - ARM: dts: imx25: Fix the iim compatible string + - ARM: dts: imx25/27: Pass timing0 + - ARM: dts: imx27-apf27dev: Fix LED name + - ARM: dts: imx23-sansa: Use preferred i2c-gpios properties + - ARM: dts: imx23/28: Fix the DMA controller node name + - net: dsa: mv88e6xxx: Fix mv88e6352_serdes_get_stats error path + - block: prevent an integer overflow in bvec_try_merge_hw_page + - md: Whenassemble the array, consult the superblock of the freshest device + - arm64: dts: qcom: msm8996: Fix 'in-ports' is a required property + - arm64: dts: qcom: msm8998: Fix 'out-ports' is a required property + - wifi: rtl8xxxu: Add additional USB IDs for RTL8192EU devices + - libbpf: Fix NULL pointer dereference in bpf_object__collect_prog_relos + - ALSA: usb-audio: Add delay quirk for MOTU M Series 2nd revision + - wifi: rtlwifi: rtl8723{be,ae}: using calculate_bit_shift() + - wifi: cfg80211: free beacon_ies when overridden from hidden BSS + - Bluetooth: qca: Set both WIDEBAND_SPEECH and LE_STATES quirks for QCA2066 + - Bluetooth: L2CAP: Fix possible multiple reject send + - bridge: cfm: fix enum typo in br_cc_ccm_tx_parse + - i40e: Fix VF disable behavior to block all traffic + - octeontx2-af: Fix max NPC MCAM entry check while validating ref_entry + - f2fs: fix to check return value of f2fs_reserve_new_block() + - ALSA: hda: Refer to correct stream index at loops + - ASoC: doc: Fix undefined SND_SOC_DAPM_NOPM argument + - fast_dput(): handle underflows gracefully + - RDMA/IPoIB: Fix error code return in ipoib_mcast_join + - drm/amd/display: Fix tiled display misalignment + - f2fs: fix write pointers on zoned device after roll forward + - drm/drm_file: fix use of uninitialized variable + - drm/framebuffer: Fix use of uninitialized variable + - drm/mipi-dsi: Fix detach call without attach + - media: stk1160: Fixed high volume of stk1160_dbg messages + - media: rockchip: rga: fix swizzling for RGB formats + - PCI: add INTEL_HDA_ARL to pci_ids.h + - ALSA: hda: Intel: add HDA_ARL PCI ID support + - ALSA: hda: intel-dspcfg: add filters for ARL-S and ARL + - media: rkisp1: Drop IRQF_SHARED + - f2fs: fix to tag gcing flag on page during block migration + - drm/exynos: Call drm_atomic_helper_shutdown() at shutdown/unbind time + - IB/ipoib: Fix mcast list locking + - media: ddbridge: fix an error code problem in ddb_probe + - media: i2c: imx335: Fix hblank min/max values + - drm/msm/dpu: Ratelimit framedone timeout msgs + - drm/amdgpu: fix ftrace event amdgpu_bo_move always move on same heap + - clk: hi3620: Fix memory leak in hi3620_mmc_clk_init() + - clk: mmp: pxa168: Fix memory leak in pxa168_clk_init() + - watchdog: it87_wdt: Keep WDTCTRL bit 3 unmodified for IT8784/IT8786 + - clk: imx: scu: Fix memory leak in __imx_clk_gpr_scu() + - clk: imx: clk-imx8qxp: fix LVDS bypass, pixel and phy clocks + - drm/amdgpu: Let KFD sync with VM fences + - drm/amdgpu: Drop 'fence' check in 'to_amdgpu_amdkfd_fence()' + - ALSA: hda/conexant: Fix headset auto detect fail in cx8070 and SN6140 + - leds: trigger: panic: Don't register panic notifier if creating the trigger + failed + - um: Fix naming clash between UML and scheduler + - um: Don't use vfprintf() for os_info() + - um: net: Fix return type of uml_net_start_xmit() + - um: time-travel: fix time corruption + - i3c: master: cdns: Update maximum prescaler value for i2c clock + - xen/gntdev: Fix the abuse of underlying struct page in DMA-buf import + - mfd: ti_am335x_tscadc: Fix TI SoC dependencies + - [Config] updateconfigs for MFD_TI_AM335X_TSCADC + - mailbox: arm_mhuv2: Fix a bug for mhuv2_sender_interrupt + - PCI: Only override AMD USB controller if required + - PCI: switchtec: Fix stdev_release() crash after surprise hot remove + - perf cs-etm: Bump minimum OpenCSD version to ensure a bugfix is present + - usb: hub: Replace hardcoded quirk value with BIT() macro + - selftests/sgx: Fix linker script asserts + - tty: allow TIOCSLCKTRMIOS with CAP_CHECKPOINT_RESTORE + - fs/kernfs/dir: obey S_ISGID + - PCI: Fix 64GT/s effective data rate calculation + - PCI/AER: Decode Requester ID when no error info found + - libsubcmd: Fix memory leak in uniq() + - drm/amdkfd: Fix lock dependency warning + - virtio_net: Fix "‘%d’ directive writing between 1 and 11 bytes into a region + of size 10" warnings + - blk-mq: fix IO hang from sbitmap wakeup race + - ceph: fix deadlock or deadcode of misusing dget() + - drm/amd/powerplay: Fix kzalloc parameter 'ATOM_Tonga_PPM_Table' in + 'get_platform_power_management_table()' + - drm/amdgpu: Release 'adev->pm.fw' before return in + 'amdgpu_device_need_post()' + - drm/amdkfd: Fix 'node' NULL check in 'svm_range_get_range_boundaries()' + - perf: Fix the nr_addr_filters fix + - wifi: cfg80211: fix RCU dereference in __cfg80211_bss_update + - drm: using mul_u32_u32() requires linux/math64.h + - scsi: isci: Fix an error code problem in isci_io_request_build() + - scsi: core: Move scsi_host_busy() out of host lock for waking up EH handler + - selftests: net: give more time for GRO aggregation + - ip6_tunnel: use dev_sw_netstats_rx_add() + - ip6_tunnel: make sure to pull inner header in __ip6_tnl_rcv() + - tcp: add sanity checks to rx zerocopy + - ixgbe: Remove non-inclusive language + - ixgbe: Refactor returning internal error codes + - ixgbe: Refactor overtemp event handling + - ixgbe: Fix an error handling path in ixgbe_read_iosf_sb_reg_x550() + - ipv6: Ensure natural alignment of const ipv6 loopback and router addresses + - llc: call sock_orphan() at release time + - bridge: mcast: fix disabled snooping after long uptime + - netfilter: nf_tables: restrict tunnel object to NFPROTO_NETDEV + - netfilter: nf_log: replace BUG_ON by WARN_ON_ONCE when putting logger + - netfilter: nft_ct: sanitize layer 3 and 4 protocol number in custom + expectations + - net: ipv4: fix a memleak in ip_setup_cork + - af_unix: fix lockdep positive in sk_diag_dump_icons() + - SAUCE: Sync apparmor copy of af_unix.c + - selftests: net: fix available tunnels detection + - net: sysfs: Fix /sys/class/net/ path + - arm64: irq: set the correct node for shadow call stack + - gve: Fix use-after-free vulnerability + - HID: apple: Add support for the 2021 Magic Keyboard + - HID: apple: Add 2021 magic keyboard FN key mapping + - bonding: remove print in bond_verify_device_path + - ASoC: codecs: lpass-wsa-macro: fix compander volume hack + - dmaengine: fsl-dpaa2-qdma: Fix the size of dma pools + - dmaengine: ti: k3-udma: Report short packet errors + - dmaengine: fsl-qdma: Fix a memory leak related to the status queue DMA + - dmaengine: fsl-qdma: Fix a memory leak related to the queue command DMA + - phy: renesas: rcar-gen3-usb2: Fix returning wrong error code + - dmaengine: fix is_slave_direction() return false when DMA_DEV_TO_DEV + - phy: ti: phy-omap-usb2: Fix NULL pointer dereference for SRP + - drm/msm/dp: return correct Colorimetry for DP_TEST_DYNAMIC_RANGE_CEA case + - net: stmmac: xgmac: fix handling of DPP safety error for DMA channels + - selftests: net: cut more slack for gro fwd tests. + - selftests: net: avoid just another constant wait + - tunnels: fix out of bounds access when building IPv6 PMTU error + - atm: idt77252: fix a memleak in open_card_ubr0 + - octeontx2-pf: Fix a memleak otx2_sq_init + - hwmon: (aspeed-pwm-tacho) mutex for tach reading + - hwmon: (coretemp) Fix out-of-bounds memory access + - hwmon: (coretemp) Fix bogus core_id to attr name mapping + - inet: read sk->sk_family once in inet_recv_error() + - rxrpc: Fix response to PING RESPONSE ACKs to a dead call + - tipc: Check the bearer type before calling tipc_udp_nl_bearer_add() + - af_unix: Call kfree_skb() for dead unix_(sk)->oob_skb in GC. + - ppp_async: limit MRU to 64K + - netfilter: nft_compat: reject unused compat flag + - netfilter: nft_compat: restrict match/target protocol to u16 + - drm/amd/display: Fix multiple memory leaks reported by coverity + - drm/amd/display: Implement bounds check for stream encoder creation in + DCN301 + - netfilter: nft_ct: reject direction for ct id + - netfilter: nft_set_pipapo: store index in scratch maps + - netfilter: nft_set_pipapo: add helper to release pcpu scratch area + - netfilter: nft_set_pipapo: remove scratch_aligned pointer + - fs/ntfs3: Fix an NULL dereference bug + - scsi: core: Move scsi_host_busy() out of host lock if it is for per-command + - blk-iocost: Fix an UBSAN shift-out-of-bounds warning + - drivers: lkdtm: fix clang -Wformat warning + - ALSA: usb-audio: Add a quirk for Yamaha YIT-W12TX transmitter + - USB: serial: qcserial: add new usb-id for Dell Wireless DW5826e + - USB: serial: option: add Fibocom FM101-GL variant + - USB: serial: cp210x: add ID for IMST iM871A-USB + - usb: dwc3: host: Set XHCI_SG_TRB_CACHE_SIZE_QUIRK + - usb: host: xhci-plat: Add support for XHCI_SG_TRB_CACHE_SIZE_QUIRK + - hrtimer: Report offline hrtimer enqueue + - Input: i8042 - fix strange behavior of touchpad on Clevo NS70PU + - Input: atkbd - skip ATKBD_CMD_SETLEDS when skipping ATKBD_CMD_GETID + - clocksource: Skip watchdog check for large watchdog intervals + - net: stmmac: xgmac: use #define for string constants + - net: stmmac: xgmac: fix a typo of register name in DPP safety handling + - btrfs: forbid creating subvol qgroups + - btrfs: forbid deleting live subvol qgroup + - btrfs: send: return EOPNOTSUPP on unknown flags + - of: unittest: Fix compile in the non-dynamic case + - wifi: iwlwifi: Fix some error codes + - net: openvswitch: limit the number of recursions from action sets + - spi: ppc4xx: Drop write-only variable + - ASoC: rt5645: Fix deadlock in rt5645_jack_detect_work() + - net: sysfs: Fix /sys/class/net/ path for statistics + - MIPS: Add 'memory' clobber to csum_ipv6_magic() inline assembler + - i40e: Fix waiting for queues of all VSIs to be disabled + - scs: add CONFIG_MMU dependency for vfree_atomic() + - tracing/trigger: Fix to return error if failed to alloc snapshot + - mm/writeback: fix possible divide-by-zero in wb_dirty_limits(), again + - scsi: storvsc: Fix ring buffer size calculation + - ALSA: hda/realtek: Fix the external mic not being recognised for Acer Swift + 1 SF114-32 + - ALSA: hda/realtek: Enable Mute LED on HP Laptop 14-fq0xxx + - HID: i2c-hid-of: fix NULL-deref on failed power up + - HID: wacom: generic: Avoid reporting a serial of '0' to userspace + - HID: wacom: Do not register input devices until after hid_hw_start + - iio: hid-sensor-als: Return 0 for HID_USAGE_SENSOR_TIME_TIMESTAMP + - usb: ucsi_acpi: Fix command completion handling + - USB: hub: check for alternate port before enabling A_ALT_HNP_SUPPORT + - usb: f_mass_storage: forbid async queue when shutdown happen + - usb: dwc3: gadget: Fix NULL pointer dereference in dwc3_gadget_suspend + - media: ir_toy: fix a memleak in irtoy_tx + - powerpc/kasan: Fix addr error caused by page alignment + - i2c: i801: Remove i801_set_block_buffer_mode + - i2c: i801: Fix block process call transactions + - modpost: trim leading spaces when processing source files list + - mptcp: fix data re-injection from stale subflow + - scsi: Revert "scsi: fcoe: Fix potential deadlock on &fip->ctlr_lock" + - Revert "drm/amd: flush any delayed gfxoff on suspend entry" + - firewire: core: correct documentation of fw_csr_string() kernel API + - kbuild: Fix changing ELF file type for output of gen_btf for big endian + - nfc: nci: free rx_data_reassembly skb on NCI device cleanup + - net: hsr: remove WARN_ONCE() in send_hsr_supervision_frame() + - xen-netback: properly sync TX responses + - ALSA: hda/realtek: Enable headset mic on Vaio VJFE-ADL + - ASoC: codecs: wcd938x: handle deferred probe + - binder: signal epoll threads of self-work + - misc: fastrpc: Mark all sessions as invalid in cb_remove + - ext4: fix double-free of blocks due to wrong extents moved_len + - tracing: Fix wasted memory in saved_cmdlines logic + - staging: iio: ad5933: fix type mismatch regression + - iio: magnetometer: rm3100: add boundary check for the value read from + RM3100_REG_TMRC + - iio: core: fix memleak in iio_device_register_sysfs + - iio: accel: bma400: Fix a compilation problem + - media: rc: bpf attach/detach requires write permission + - drm/prime: Support page array >= 4GB + - hv_netvsc: Fix race condition between netvsc_probe and netvsc_remove + - ring-buffer: Clean ring_buffer_poll_wait() error return + - serial: max310x: set default value when reading clock ready bit + - serial: max310x: improve crystal stable clock detection + - serial: max310x: fail probe if clock crystal is unstable + - powerpc/64: Set task pt_regs->link to the LR value on scv entry + - x86/Kconfig: Transmeta Crusoe is CPU family 5, not 6 + - x86/mm/ident_map: Use gbpages only where full GB page should be mapped. + - mmc: slot-gpio: Allow non-sleeping GPIO ro + - ALSA: hda/conexant: Add quirk for SWS JS201D + - nilfs2: fix data corruption in dsync block recovery for small block sizes + - nilfs2: fix hang in nilfs_lookup_dirty_data_buffers() + - crypto: ccp - Fix null pointer dereference in __sev_platform_shutdown_locked + - nfp: use correct macro for LengthSelect in BAR config + - nfp: flower: prevent re-adding mac index for bonded port + - wifi: mac80211: reload info pointer in ieee80211_tx_dequeue() + - irqchip/irq-brcmstb-l2: Add write memory barrier before exit + - irqchip/gic-v3-its: Fix GICv4.1 VPE affinity update + - net: ethernet: ti: cpsw: enable mac_managed_pm to fix mdio + - s390/qeth: Fix potential loss of L3-IP@ in case of network issues + - net: ethernet: ti: cpsw_new: enable mac_managed_pm to fix mdio + - ceph: prevent use-after-free in encode_cap_msg() + - mm: hugetlb pages should not be reserved by shmat() if SHM_NORESERVE + - of: property: fix typo in io-channels + - can: j1939: prevent deadlock by changing j1939_socks_lock to rwlock + - can: j1939: Fix UAF in j1939_sk_match_filter during + setsockopt(SO_J1939_FILTER) + - pmdomain: core: Move the unused cleanup to a _sync initcall + - tracing: Inform kmemleak of saved_cmdlines allocation + - af_unix: Fix task hung while purging oob_skb in GC. + - dma-buf: add dma_fence_timestamp helper + - bus: moxtet: Add spi device table + - crypto: lib/mpi - Fix unexpected pointer access in mpi_ec_init + - usb: dwc3: gadget: Wait for ep0 xfers to complete during dequeue + - usb: dwc3: ep0: Don't prepare beyond Setup stage + - usb: dwc3: gadget: Only End Transfer for ep0 data phase + - usb: dwc3: gadget: Delay issuing End Transfer + - usb: dwc3: Fix ep0 handling when getting reset while doing control transfer + - usb: dwc3: gadget: Force sending delayed status during soft disconnect + - usb: dwc3: gadget: Submit endxfer command if delayed during disconnect + - usb: dwc3: gadget: Stall and restart EP0 if host is unresponsive + - usb: dwc3: gadget: Refactor EP0 forced stall/restart into a separate API + - usb: dwc3: gadget: Handle EP0 request dequeuing properly + - usb: dwc3: gadget: Queue PM runtime idle on disconnect event + - serial: 8250_exar: Fill in rs485_supported + - serial: 8250_exar: Set missing rs485_supported flag + - fbdev/defio: Early-out if page is already enlisted + - fbdev: Don't sort deferred-I/O pages by default + - fbdev: defio: fix the pagelist corruption + - fbdev: Track deferred-I/O pages in pageref struct + - fbdev: Rename pagelist to pagereflist for deferred I/O + - fbdev: Fix invalid page access after closing deferred I/O devices + - fbdev: Fix incorrect page mapping clearance at fb_deferred_io_release() + - fbdev: flush deferred IO before closing + - scripts/decode_stacktrace.sh: support old bash version + - scripts: decode_stacktrace: demangle Rust symbols + - scripts/decode_stacktrace.sh: optionally use LLVM utilities + - netfilter: ipset: fix performance regression in swap operation + - hrtimer: Ignore slack time for RT tasks in schedule_hrtimeout_range() + - net: prevent mss overflow in skb_segment() + - netfilter: ipset: Missing gc cancellations fixed + - sched/membarrier: reduce the ability to hammer on sys_membarrier + - nilfs2: fix potential bug in end_buffer_async_write + - nilfs2: replace WARN_ONs for invalid DAT metadata block requests + - arm64: Subscribe Microsoft Azure Cobalt 100 to ARM Neoverse N2 errata + - PM: runtime: Have devm_pm_runtime_enable() handle + pm_runtime_dont_use_autosuspend() + - drm/msm/dsi: Enable runtime PM + - net: bcmgenet: Fix EEE implementation + - fs/ntfs3: Add null pointer checks + - smb3: Replace smb2pdu 1-element arrays with flex-arrays + - staging: fbtft: core: set smem_len before fb_deferred_io_init call + - usb: dwc3: gadget: Don't delay End Transfer on delayed_status + - usb: dwc3: gadget: Execute gadget stop after halting the controller + - media: Revert "media: rkisp1: Drop IRQF_SHARED" + - usb: dwc3: gadget: Ignore End Transfer delay on teardown + - Linux 5.15.149 + + * Jammy update: v5.15.149 upstream stable release (LP: #2059014) // + CVE-2023-52603 + - UBSAN: array-index-out-of-bounds in dtSplitRoot + + * CVE-2023-52600 + - jfs: fix uaf in jfs_evict_inode + + * CVE-2023-24023 + - Bluetooth: Add more enc key size check + + * Fix headphone mic detection issue on ALC897 (LP: #2056418) + - ALSA: hda/realtek - Fix headset Mic no show at resume back for Lenovo ALC897 + platform + + * CVE-2024-26581 + - netfilter: nft_set_rbtree: skip end interval element from gc + + * CVE-2023-6039 + - timers: Replace BUG_ON()s + + * Problems with HVCS and hotplugging (LP: #2056373) + - hvcs: Fix hvcs port reference counting + - hvcs: Use dev_groups to manage hvcs device attributes + - hvcs: Use driver groups to manage driver attributes + - hvcs: Get reference to tty in remove + - hvcs: Use vhangup in hotplug remove + - hvcs: Synchronize hotplug remove with port free + + * KVM: arm64: softlockups in stage2_apply_range (LP: #2056227) + - KVM: arm64: Work out supported block level at compile time + - KVM: arm64: Limit stage2_apply_range() batch size to largest block + + -- Stefan Bader Thu, 28 Mar 2024 15:17:53 +0100 + +linux (5.15.0-102.112) jammy; urgency=medium + + * jammy/linux: 5.15.0-102.112 -proposed tracker (LP: #2055632) + + * Drop ABI checks from kernel build (LP: #2055686) + - [Packaging] Remove in-tree abi checks + - [Packaging] Drop abi checks from final-checks + + * Packaging resync (LP: #1786013) + - [Packaging] drop ABI data + - [Packaging] update annotations scripts + - debian.master/dkms-versions -- update from kernel-versions (main/2024.03.04) + + * block/loop: No longer allows to create partitions (LP: #2056143) + - block, loop: support partitions without scanning + + * Cranky update-dkms-versions rollout (LP: #2055685) + - [Packaging] remove update-dkms-versions + - Move debian/dkms-versions to debian.master/dkms-versions + - [Packaging] Replace debian/dkms-versions with $(DEBIAN)/dkms-versions + - [Packaging] remove update-version-dkms + + * linux: please move erofs.ko (CONFIG_EROFS for EROFS support) from linux- + modules-extra to linux-modules (LP: #2054809) + - UBUNTU [Packaging]: Include erofs in linux-modules instead of linux-modules- + extra + + * linux-tools-common: man page of usbip[d] is misplaced (LP: #2054094) + - [Packaging] rules: Put usbip manpages in the correct directory + + * CVE-2024-23851 + - dm ioctl: log an error if the ioctl structure is corrupted + - dm: limit the number of targets and parameter size area + + * CVE-2024-23850 + - btrfs: do not ASSERT() if the newly created subvolume already got read + + * x86: performance: tsc: Extend watchdog check exemption to 4-Sockets platform + (LP: #2054699) + - x86/tsc: Extend watchdog check exemption to 4-Sockets platform + + * linux: please move dmi-sysfs.ko (CONFIG_DMI_SYSFS for SMBIOS support) from + linux-modules-extra to linux-modules (LP: #2045561) + - [Packaging] Move dmi-sysfs.ko into linux-modules + + * Fix bpf selftests build failure after v5.15.139 update (LP: #2054567) + - Revert "selftests/bpf: Test tail call counting with bpf2bpf and data on + stack" + + * Jammy update: v5.15.148 upstream stable release (LP: #2055145) + - f2fs: explicitly null-terminate the xattr list + - pinctrl: lochnagar: Don't build on MIPS + - ALSA: hda - Fix speaker and headset mic pin config for CHUWI CoreBook XPro + - mptcp: fix uninit-value in mptcp_incoming_options + - wifi: cfg80211: lock wiphy mutex for rfkill poll + - debugfs: fix automount d_fsdata usage + - drm/amdgpu: Fix cat debugfs amdgpu_regs_didt causes kernel null pointer + - nvme-core: check for too small lba shift + - ASoC: wm8974: Correct boost mixer inputs + - ASoC: Intel: Skylake: Fix mem leak in few functions + - ASoC: nau8822: Fix incorrect type in assignment and cast to restricted + __be16 + - ASoC: Intel: Skylake: mem leak in skl register function + - ASoC: cs43130: Fix the position of const qualifier + - ASoC: cs43130: Fix incorrect frame delay configuration + - ASoC: rt5650: add mutex to avoid the jack detection failure + - nouveau/tu102: flush all pdbs on vmm flush + - net/tg3: fix race condition in tg3_reset_task() + - ASoC: da7219: Support low DC impedance headset + - ASoC: ops: add correct range check for limiting volume + - nvme: introduce helper function to get ctrl state + - drm/amdgpu: Add NULL checks for function pointers + - drm/exynos: fix a potential error pointer dereference + - drm/exynos: fix a wrong error checking + - hwmon: (corsair-psu) Fix probe when built-in + - clk: rockchip: rk3128: Fix HCLK_OTG gate register + - jbd2: correct the printing of write_flags in jbd2_write_superblock() + - drm/crtc: Fix uninit-value bug in drm_mode_setcrtc + - neighbour: Don't let neigh_forced_gc() disable preemption for long + - platform/x86: intel-vbtn: Fix missing tablet-mode-switch events + - jbd2: fix soft lockup in journal_finish_inode_data_buffers() + - tracing: Have large events show up as '[LINE TOO BIG]' instead of nothing + - tracing: Add size check when printing trace_marker output + - stmmac: dwmac-loongson: drop useless check for compatible fallback + - MIPS: dts: loongson: drop incorrect dwmac fallback compatible + - tracing: Fix uaf issue when open the hist or hist_debug file + - ring-buffer: Do not record in NMI if the arch does not support cmpxchg in + NMI + - reset: hisilicon: hi6220: fix Wvoid-pointer-to-enum-cast warning + - Input: atkbd - skip ATKBD_CMD_GETID in translated mode + - Input: i8042 - add nomux quirk for Acer P459-G2-M + - s390/scm: fix virtual vs physical address confusion + - ARC: fix spare error + - wifi: iwlwifi: pcie: avoid a NULL pointer dereference + - Input: xpad - add Razer Wolverine V2 support + - ASoC: Intel: bytcr_rt5640: Add quirk for the Medion Lifetab S10346 + - i2c: rk3x: fix potential spinlock recursion on poll + - net: qrtr: ns: Return 0 if server port is not present + - ARM: sun9i: smp: fix return code check of of_property_match_string + - drm/crtc: fix uninitialized variable use + - ACPI: resource: Add another DMI match for the TongFang GMxXGxx + - Revert "ASoC: atmel: Remove system clock tree configuration for + at91sam9g20ek" + - bpf: Add --skip_encoding_btf_inconsistent_proto, --btf_gen_optimized to + pahole flags for v1.25 + - kprobes: Fix to handle forcibly unoptimized kprobes on freeing_list + - Revert "md/raid5: Wait for MD_SB_CHANGE_PENDING in raid5d" + - binder: use EPOLLERR from eventpoll.h + - binder: fix use-after-free in shinker's callback + - binder: fix trivial typo of binder_free_buf_locked() + - binder: fix comment on binder_alloc_new_buf() return value + - uio: Fix use-after-free in uio_open + - parport: parport_serial: Add Brainboxes BAR details + - parport: parport_serial: Add Brainboxes device IDs and geometry + - leds: ledtrig-tty: Free allocated ttyname buffer on deactivate + - PCI: Add ACS quirk for more Zhaoxin Root Ports + - coresight: etm4x: Fix width of CCITMIN field + - x86/lib: Fix overflow when counting digits + - EDAC/thunderx: Fix possible out-of-bounds string access + - powerpc: Mark .opd section read-only + - powerpc/toc: Future proof kernel toc + - powerpc: remove checks for binutils older than 2.25 + - powerpc: add crtsavres.o to always-y instead of extra-y + - powerpc/44x: select I2C for CURRITUCK + - powerpc/pseries/memhp: Fix access beyond end of drmem array + - selftests/powerpc: Fix error handling in FPU/VMX preemption tests + - powerpc/powernv: Add a null pointer check to scom_debug_init_one() + - powerpc/powernv: Add a null pointer check in opal_event_init() + - powerpc/powernv: Add a null pointer check in opal_powercap_init() + - powerpc/imc-pmu: Add a null pointer check in update_events_in_group() + - spi: spi-zynqmp-gqspi: fix driver kconfig dependencies + - mtd: rawnand: Increment IFC_TIMEOUT_MSECS for nand controller response + - ACPI: video: check for error while searching for backlight device parent + - ACPI: LPIT: Avoid u32 multiplication overflow + - of: property: define of_property_read_u{8,16,32,64}_array() unconditionally + - of: Add of_property_present() helper + - cpufreq: Use of_property_present() for testing DT property presence + - cpufreq: scmi: process the result of devm_of_clk_add_hw_provider() + - calipso: fix memory leak in netlbl_calipso_add_pass() + - efivarfs: force RO when remounting if SetVariable is not supported + - spi: sh-msiof: Enforce fixed DTDL for R-Car H3 + - ACPI: LPSS: Fix the fractional clock divider flags + - ACPI: extlog: Clear Extended Error Log status when RAS_CEC handled the error + - kunit: debugfs: Fix unchecked dereference in debugfs_print_results() + - mtd: Fix gluebi NULL pointer dereference caused by ftl notifier + - selinux: Fix error priority for bind with AF_UNSPEC on PF_INET6 socket + - crypto: virtio - Handle dataq logic with tasklet + - crypto: sa2ul - Return crypto_aead_setkey to transfer the error + - crypto: ccp - fix memleak in ccp_init_dm_workarea + - crypto: af_alg - Disallow multiple in-flight AIO requests + - crypto: sahara - remove FLAGS_NEW_KEY logic + - crypto: sahara - fix cbc selftest failure + - crypto: sahara - fix ahash selftest failure + - crypto: sahara - fix processing requests with cryptlen < sg->length + - crypto: sahara - fix error handling in sahara_hw_descriptor_create() + - pstore: ram_core: fix possible overflow in persistent_ram_init_ecc() + - fs: indicate request originates from old mount API + - gfs2: Fix kernel NULL pointer dereference in gfs2_rgrp_dump + - crypto: virtio - Wait for tasklet to complete on device remove + - crypto: sahara - avoid skcipher fallback code duplication + - crypto: sahara - handle zero-length aes requests + - crypto: sahara - fix ahash reqsize + - crypto: sahara - fix wait_for_completion_timeout() error handling + - crypto: sahara - improve error handling in sahara_sha_process() + - crypto: sahara - fix processing hash requests with req->nbytes < sg->length + - crypto: sahara - do not resize req->src when doing hash operations + - crypto: scomp - fix req->dst buffer overflow + - blocklayoutdriver: Fix reference leak of pnfs_device_node + - NFSv4.1/pnfs: Ensure we handle the error NFS4ERR_RETURNCONFLICT + - wifi: rtw88: fix RX filter in FIF_ALLMULTI flag + - bpf, lpm: Fix check prefixlen before walking trie + - bpf: Add crosstask check to __bpf_get_stack + - wifi: ath11k: Defer on rproc_get failure + - wifi: libertas: stop selecting wext + - ARM: dts: qcom: apq8064: correct XOADC register address + - net/ncsi: Fix netlink major/minor version numbers + - firmware: ti_sci: Fix an off-by-one in ti_sci_debugfs_create() + - firmware: meson_sm: populate platform devices from sm device tree data + - wifi: rtlwifi: rtl8821ae: phy: fix an undefined bitwise shift behavior + - arm64: dts: ti: k3-am65-main: Fix DSS irq trigger type + - bpf: enforce precision of R0 on callback return + - ARM: dts: qcom: sdx65: correct SPMI node name + - arm64: dts: qcom: sc7180: Make watchdog bark interrupt edge triggered + - arm64: dts: qcom: sc7280: Make watchdog bark interrupt edge triggered + - arm64: dts: qcom: sdm845: Make watchdog bark interrupt edge triggered + - arm64: dts: qcom: sm8150: Make watchdog bark interrupt edge triggered + - arm64: dts: qcom: sm8250: Make watchdog bark interrupt edge triggered + - bpf: fix check for attempt to corrupt spilled pointer + - scsi: fnic: Return error if vmalloc() failed + - arm64: dts: qcom: qrb5165-rb5: correct LED panic indicator + - arm64: dts: qcom: sdm845-db845c: correct LED panic indicator + - arm64: dts: qcom: sc7280: fix usb_2 wakeup interrupt types + - bpf: Fix verification of indirect var-off stack access + - block: Set memalloc_noio to false on device_add_disk() error path + - scsi: hisi_sas: Rename HISI_SAS_{RESET -> RESETTING}_BIT + - scsi: hisi_sas: Prevent parallel FLR and controller reset + - scsi: hisi_sas: Replace with standard error code return value + - scsi: hisi_sas: Rollback some operations if FLR failed + - scsi: hisi_sas: Correct the number of global debugfs registers + - selftests/net: fix grep checking for fib_nexthop_multiprefix + - virtio/vsock: fix logic which reduces credit update messages + - dma-mapping: Add dma_release_coherent_memory to DMA API + - dma-mapping: clear dev->dma_mem to NULL after freeing it + - soc: qcom: llcc: Fix dis_cap_alloc and retain_on_pc configuration + - arm64: dts: qcom: sm8150-hdk: fix SS USB regulators + - block: add check of 'minors' and 'first_minor' in device_add_disk() + - arm64: dts: qcom: sc7280: Mark SDHCI hosts as cache-coherent + - wifi: rtlwifi: add calculate_bit_shift() + - wifi: rtlwifi: rtl8188ee: phy: using calculate_bit_shift() + - wifi: rtlwifi: rtl8192c: using calculate_bit_shift() + - wifi: rtlwifi: rtl8192cu: using calculate_bit_shift() + - wifi: rtlwifi: rtl8192ce: using calculate_bit_shift() + - wifi: rtlwifi: rtl8192de: using calculate_bit_shift() + - wifi: rtlwifi: rtl8192ee: using calculate_bit_shift() + - wifi: rtlwifi: rtl8192se: using calculate_bit_shift() + - wifi: iwlwifi: mvm: set siso/mimo chains to 1 in FW SMPS request + - wifi: iwlwifi: mvm: send TX path flush in rfkill + - netfilter: nf_tables: mark newset as dead on transaction abort + - Bluetooth: Fix bogus check for re-auth no supported with non-ssp + - Bluetooth: btmtkuart: fix recv_buf() return value + - block: make BLK_DEF_MAX_SECTORS unsigned + - null_blk: don't cap max_hw_sectors to BLK_DEF_MAX_SECTORS + - net/sched: act_ct: fix skb leak and crash on ooo frags + - mlxbf_gige: Fix intermittent no ip issue + - net: mellanox: mlxbf_gige: Replace non-standard interrupt handling + - mlxbf_gige: Enable the GigE port in mlxbf_gige_open + - ip6_tunnel: fix NEXTHDR_FRAGMENT handling in ip6_tnl_parse_tlv_enc_lim() + - ARM: davinci: always select CONFIG_CPU_ARM926T + - Revert "drm/tidss: Annotate dma-fence critical section in commit path" + - Revert "drm/omapdrm: Annotate dma-fence critical section in commit path" + - RDMA/usnic: Silence uninitialized symbol smatch warnings + - RDMA/hns: Fix inappropriate err code for unsupported operations + - drm/panel-elida-kd35t133: hold panel in reset for unprepare + - drm/nouveau/fence:: fix warning directly dereferencing a rcu pointer + - drm/bridge: tpd12s015: Drop buggy __exit annotation for remove function + - drm/tilcdc: Fix irq free on unload + - media: pvrusb2: fix use after free on context disconnection + - drm/bridge: Fix typo in post_disable() description + - f2fs: fix to avoid dirent corruption + - drm/radeon/r600_cs: Fix possible int overflows in r600_cs_check_reg() + - drm/radeon/r100: Fix integer overflow issues in r100_cs_track_check() + - drm/radeon: check return value of radeon_ring_lock() + - ASoC: cs35l33: Fix GPIO name and drop legacy include + - ASoC: cs35l34: Fix GPIO name and drop legacy include + - drm/msm/mdp4: flush vblank event on disable + - drm/msm/dsi: Use pm_runtime_resume_and_get to prevent refcnt leaks + - drm/drv: propagate errors from drm_modeset_register_all() + - drm/radeon: check the alloc_workqueue return value in radeon_crtc_init() + - drm/radeon/dpm: fix a memleak in sumo_parse_power_table + - drm/radeon/trinity_dpm: fix a memleak in trinity_parse_power_table + - drm/bridge: cdns-mhdp8546: Fix use of uninitialized variable + - drm/bridge: tc358767: Fix return value on error case + - media: cx231xx: fix a memleak in cx231xx_init_isoc + - clk: qcom: gpucc-sm8150: Update the gpu_cc_pll1 config + - media: rkisp1: Disable runtime PM in probe error path + - f2fs: fix to check compress file in f2fs_move_file_range() + - f2fs: fix to update iostat correctly in f2fs_filemap_fault() + - f2fs: fix the f2fs_file_write_iter tracepoint + - media: dvbdev: drop refcount on error path in dvb_device_open() + - media: dvb-frontends: m88ds3103: Fix a memory leak in an error handling path + of m88ds3103_probe() + - drm/amdgpu/debugfs: fix error code when smc register accessors are NULL + - drm/amd/pm: fix a double-free in si_dpm_init + - drivers/amd/pm: fix a use-after-free in kv_parse_power_table + - gpu/drm/radeon: fix two memleaks in radeon_vm_init + - dt-bindings: clock: Update the videocc resets for sm8150 + - clk: qcom: videocc-sm8150: Update the videocc resets + - clk: qcom: videocc-sm8150: Add missing PLL config property + - drivers: clk: zynqmp: calculate closest mux rate + - clk: zynqmp: make bestdiv unsigned + - clk: zynqmp: Add a check for NULL pointer + - drivers: clk: zynqmp: update divider round rate logic + - watchdog: set cdev owner before adding + - watchdog/hpwdt: Only claim UNKNOWN NMI if from iLO + - watchdog: bcm2835_wdt: Fix WDIOC_SETTIMEOUT handling + - watchdog: rti_wdt: Drop runtime pm reference count when watchdog is unused + - clk: si5341: fix an error code problem in si5341_output_clk_set_rate + - clk: asm9260: use parent index to link the reference clock + - clk: fixed-rate: add devm_clk_hw_register_fixed_rate + - clk: fixed-rate: fix clk_hw_register_fixed_rate_with_accuracy_parent_hw + - pwm: stm32: Use regmap_clear_bits and regmap_set_bits where applicable + - pwm: stm32: Use hweight32 in stm32_pwm_detect_channels + - pwm: stm32: Fix enable count for clk in .probe() + - ASoC: rt5645: Drop double EF20 entry from dmi_platform_data[] + - ALSA: scarlett2: Add missing error check to scarlett2_config_save() + - ALSA: scarlett2: Add missing error check to scarlett2_usb_set_config() + - ALSA: scarlett2: Allow passing any output to line_out_remap() + - ALSA: scarlett2: Add missing error checks to *_ctl_get() + - ALSA: scarlett2: Add clamp() in scarlett2_mixer_ctl_put() + - mmc: sdhci_am654: Fix TI SoC dependencies + - [Config] update annotations for CONFIG_MMC_SDHCI_AM654 + - [Config] remove sdhci_am654 module for armhf/ppc64el + - mmc: sdhci_omap: Fix TI SoC dependencies + - [Config] update annotations for CONFIG_MMC_SDHCI_OMAP + - [Config] remove sdhci-omap module for arm64/ppc64el + - IB/iser: Prevent invalidating wrong MR + - drm/amd/pm/smu7: fix a memleak in smu7_hwmgr_backend_init + - ksmbd: validate the zero field of packet header + - of: Fix double free in of_parse_phandle_with_args_map + - of: unittest: Fix of_count_phandle_with_args() expected value message + - selftests/bpf: Add assert for user stacks in test_task_stack + - binder: fix async space check for 0-sized buffers + - binder: fix unused alloc->free_async_space + - Input: atkbd - use ab83 as id when skipping the getid command + - dma-mapping: Fix build error unused-value + - virtio-crypto: fix memory leak in virtio_crypto_alg_skcipher_close_session() + - binder: fix race between mmput() and do_exit() + - tick-sched: Fix idle and iowait sleeptime accounting vs CPU hotplug + - usb: phy: mxs: remove CONFIG_USB_OTG condition for mxs_phy_is_otg_host() + - usb: dwc: ep0: Update request status in dwc3_ep0_stall_restart + - Revert "usb: dwc3: Soft reset phy on probe for host" + - Revert "usb: dwc3: don't reset device side if dwc3 was configured as host- + only" + - usb: chipidea: wait controller resume finished for wakeup irq + - usb: cdns3: fix uvc failure work since sg support enabled + - usb: cdns3: fix iso transfer error when mult is not zero + - usb: cdns3: Fix uvc fail when DMA cross 4k boundery since sg enabled + - Revert "usb: typec: class: fix typec_altmode_put_partner to put plugs" + - usb: typec: class: fix typec_altmode_put_partner to put plugs + - usb: mon: Fix atomicity violation in mon_bin_vma_fault + - serial: imx: Ensure that imx_uart_rs485_config() is called with enabled + clock + - ALSA: oxygen: Fix right channel of capture volume mixer + - ALSA: hda/relatek: Enable Mute LED on HP Laptop 15s-fq2xxx + - fbdev: flush deferred work in fb_deferred_io_fsync() + - scsi: mpi3mr: Refresh sdev queue depth after controller reset + - block: add check that partition length needs to be aligned with block size + - pwm: jz4740: Don't use dev_err_probe() in .request() + - io_uring/rw: ensure io->bytes_done is always initialized + - rootfs: Fix support for rootfstype= when root= is given + - Bluetooth: Fix atomicity violation in {min,max}_key_size_set + - bpf: Fix re-attachment branch in bpf_tracing_prog_attach + - iommu/arm-smmu-qcom: Add missing GMU entry to match table + - wifi: mt76: fix broken precal loading from MTD for mt7915 + - wifi: rtlwifi: Remove bogus and dangerous ASPM disable/enable code + - wifi: rtlwifi: Convert LNKCTL change to PCIe cap RMW accessors + - wifi: mwifiex: configure BSSID consistently when starting AP + - PCI: dwc: endpoint: Fix dw_pcie_ep_raise_msix_irq() alignment support + - PCI: mediatek: Clear interrupt status before dispatching handler + - x86/kvm: Do not try to disable kvmclock if it was not enabled + - KVM: arm64: vgic-v4: Restore pending state on host userspace write + - KVM: arm64: vgic-its: Avoid potential UAF in LPI translation cache + - iio: adc: ad7091r: Pass iio_dev to event handler + - HID: wacom: Correct behavior when processing some confidence == false + touches + - serial: sc16is7xx: add check for unsupported SPI modes during probe + - serial: sc16is7xx: set safe default SPI clock frequency + - iommu/dma: Trace bounce buffer usage when mapping buffers + - ARM: 9330/1: davinci: also select PINCTRL + - mfd: syscon: Fix null pointer dereference in of_syscon_register() + - leds: aw2013: Select missing dependency REGMAP_I2C + - mfd: intel-lpss: Fix the fractional clock divider flags + - mips: dmi: Fix early remap on MIPS32 + - mips: Fix incorrect max_low_pfn adjustment + - riscv: Check if the code to patch lies in the exit section + - riscv: Fix module_alloc() that did not reset the linear mapping permissions + - MIPS: Alchemy: Fix an out-of-bound access in db1200_dev_setup() + - MIPS: Alchemy: Fix an out-of-bound access in db1550_dev_setup() + - power: supply: cw2015: correct time_to_empty units in sysfs + - power: supply: bq256xx: fix some problem in bq256xx_hw_init + - serial: 8250: omap: Don't skip resource freeing if + pm_runtime_resume_and_get() failed + - libapi: Add missing linux/types.h header to get the __u64 type on io.h + - software node: Let args be NULL in software_node_get_reference_args + - serial: imx: fix tx statemachine deadlock + - selftests/sgx: Fix uninitialized pointer dereference in error path + - selftests/sgx: Skip non X86_64 platform + - iio: adc: ad9467: Benefit from devm_clk_get_enabled() to simplify + - iio: adc: ad9467: fix reset gpio handling + - iio: adc: ad9467: don't ignore error codes + - iio: adc: ad9467: fix scale setting + - perf genelf: Set ELF program header addresses properly + - tty: change tty_write_lock()'s ndelay parameter to bool + - tty: early return from send_break() on TTY_DRIVER_HARDWARE_BREAK + - tty: don't check for signal_pending() in send_break() + - tty: use 'if' in send_break() instead of 'goto' + - usb: cdc-acm: return correct error code on unsupported break + - nvmet-tcp: Fix a kernel panic when host sends an invalid H2C PDU length + - nvmet-tcp: fix a crash in nvmet_req_complete() + - perf env: Avoid recursively taking env->bpf_progs.lock + - apparmor: avoid crash when parsed profile name is empty + - usb: xhci-mtk: fix a short packet issue of gen1 isoc-in transfer + - serial: imx: Correct clock error message in function probe() + - nvmet: re-fix tracing strncpy() warning + - nvmet-tcp: Fix the H2C expected PDU len calculation + - PCI: keystone: Fix race condition when initializing PHYs + - s390/pci: fix max size calculation in zpci_memcpy_toio() + - net: qualcomm: rmnet: fix global oob in rmnet_policy + - net: ethernet: ti: am65-cpsw: Fix max mtu to fit ethernet frames + - net: phy: micrel: populate .soft_reset for KSZ9131 + - mptcp: mptcp_parse_option() fix for MPTCPOPT_MP_JOIN + - mptcp: drop unused sk in mptcp_get_options + - mptcp: strict validation before using mp_opt->hmac + - mptcp: use OPTION_MPTCP_MPJ_SYNACK in subflow_finish_connect() + - mptcp: use OPTION_MPTCP_MPJ_SYN in subflow_check_req() + - net: ravb: Fix dma_addr_t truncation in error case + - net: stmmac: ethtool: Fixed calltrace caused by unbalanced disable_irq_wake + calls + - bpf: Reject variable offset alu on PTR_TO_FLOW_KEYS + - net: dsa: vsc73xx: Add null pointer check to vsc73xx_gpio_probe + - netfilter: nf_tables: reject invalid set policy + - netfilter: nft_connlimit: move stateful fields out of expression data + - netfilter: nft_last: move stateful fields out of expression data + - netfilter: nft_quota: move stateful fields out of expression data + - netfilter: nft_limit: rename stateful structure + - netfilter: nft_limit: move stateful fields out of expression data + - netfilter: nf_tables: memcg accounting for dynamically allocated objects + - netfilter: nft_limit: do not ignore unsupported flags + - netfilter: nf_tables: do not allow mismatch field size and set key length + - netfilter: nf_tables: skip dead set elements in netlink dump + - netfilter: nf_tables: reject NFT_SET_CONCAT with not field length + description + - ipvs: avoid stat macros calls from preemptible context + - kdb: Fix a potential buffer overflow in kdb_local() + - ethtool: netlink: Add missing ethnl_ops_begin/complete + - mlxsw: spectrum_acl_erp: Fix error flow of pool allocation failure + - mlxsw: spectrum: Use 'bitmap_zalloc()' when applicable + - mlxsw: spectrum_acl_tcam: Add missing mutex_destroy() + - mlxsw: spectrum_acl_tcam: Make fini symmetric to init + - mlxsw: spectrum_acl_tcam: Reorder functions to avoid forward declarations + - mlxsw: spectrum_acl_tcam: Fix stack corruption + - selftests: mlxsw: qos_pfc: Adjust the test to support 8 lanes + - ipv6: mcast: fix data-race in ipv6_mc_down / mld_ifc_work + - i2c: s3c24xx: fix read transfers in polling mode + - i2c: s3c24xx: fix transferring more than one message in polling mode + - block: Remove special-casing of compound pages + - netfilter: nf_tables: typo NULL check in _clone() function + - netfilter: nft_connlimit: memleak if nf_ct_netns_get() fails + - netfilter: nft_limit: fix stateful object memory leak + - netfilter: nft_limit: Clone packet limits' cost value + - netfilter: nft_last: copy content when cloning expression + - netfilter: nft_quota: copy content when cloning expression + - arm64: dts: armada-3720-turris-mox: set irq type for RTC + - Revert "Revert "md/raid5: Wait for MD_SB_CHANGE_PENDING in raid5d"" + - Linux 5.15.148 + + * CVE-2024-24855 + - scsi: lpfc: Fix a possible data race in lpfc_unregister_fcf_rescan() + + * performance: Scheduler: ratelimit updating of load_avg (LP: #2053251) + - sched/fair: Ratelimit update to tg->load_avg + + * Jammy update: v5.15.147 upstream stable release (LP: #2054411) + - block: Don't invalidate pagecache for invalid falloc modes + - ALSA: hda/realtek: Fix mute and mic-mute LEDs for HP ProBook 440 G6 + - Revert "PCI/ASPM: Remove pcie_aspm_pm_state_change()" + - wifi: iwlwifi: pcie: don't synchronize IRQs from IRQ + - drm/bridge: ti-sn65dsi86: Never store more than msg->size bytes in AUX xfer + - nfc: llcp_core: Hold a ref to llcp_local->dev when holding a ref to + llcp_local + - octeontx2-af: Fix marking couple of structure as __packed + - drm/i915/dp: Fix passing the correct DPCD_REV for + drm_dp_set_phy_test_pattern + - i40e: Fix filter input checks to prevent config with invalid values + - igc: Report VLAN EtherType matching back to user + - igc: Check VLAN TCI mask + - igc: Check VLAN EtherType mask + - ASoC: fsl_rpmsg: Fix error handler with pm_runtime_enable + - mlxbf_gige: fix receive packet race condition + - net: sched: em_text: fix possible memory leak in em_text_destroy() + - r8169: Fix PCI error on system resume + - net: Implement missing getsockopt(SO_TIMESTAMPING_NEW) + - can: raw: add support for SO_TXTIME/SCM_TXTIME + - can: raw: add support for SO_MARK + - net-timestamp: extend SOF_TIMESTAMPING_OPT_ID to HW timestamps + - ARM: sun9i: smp: Fix array-index-out-of-bounds read in sunxi_mc_smp_init + - sfc: fix a double-free bug in efx_probe_filters + - net: bcmgenet: Fix FCS generation for fragmented skbuffs + - netfilter: nft_immediate: drop chain reference counter on error + - net: Save and restore msg_namelen in sock_sendmsg + - i40e: fix use-after-free in i40e_aqc_add_filters() + - ASoC: meson: g12a-toacodec: Validate written enum values + - ASoC: meson: g12a-tohdmitx: Validate written enum values + - ASoC: meson: g12a-toacodec: Fix event generation + - ASoC: meson: g12a-tohdmitx: Fix event generation for S/PDIF mux + - i40e: Restore VF MSI-X state during PCI reset + - igc: Fix hicredit calculation + - net/qla3xxx: fix potential memleak in ql_alloc_buffer_queues + - octeontx2-af: Don't enable Pause frames by default + - octeontx2-af: Set NIX link credits based on max LMAC + - octeontx2-af: Always configure NIX TX link credits based on max frame size + - octeontx2-af: Re-enable MAC TX in otx2_stop processing + - asix: Add check for usbnet_get_endpoints + - bnxt_en: Remove mis-applied code from bnxt_cfg_ntp_filters() + - net: Implement missing SO_TIMESTAMPING_NEW cmsg support + - selftests: secretmem: floor the memory size to the multiple of page_size + - mm/memory-failure: check the mapcount of the precise page + - firewire: ohci: suppress unexpected system reboot in AMD Ryzen machines and + ASM108x/VT630x PCIe cards + - x86/kprobes: fix incorrect return address calculation in + kprobe_emulate_call_indirect + - i2c: core: Fix atomic xfer check for non-preempt config + - mm: fix unmap_mapping_range high bits shift bug + - mmc: meson-mx-sdhc: Fix initialization frozen issue + - mmc: rpmb: fixes pause retune on all RPMB partitions. + - mmc: core: Cancel delayed work before releasing host + - mmc: sdhci-sprd: Fix eMMC init failure after hw reset + - ipv6: remove max_size check inline with ipv4 + - perf inject: Fix GEN_ELF_TEXT_OFFSET for jit + - kallsyms: Make module_kallsyms_on_each_symbol generally available + - tracing/kprobes: Fix symbol counting logic by looking at modules as well + - net: usb: ax88179_178a: remove redundant init code + - net: usb: ax88179_178a: move priv to driver_priv + - Linux 5.15.147 + + * CVE-2024-1085 + - netfilter: nf_tables: check if catch-all set element is active in next + generation + + * CVE-2023-23000 + - phy: tegra: xusb: Fix return value of tegra_xusb_find_port_node function + + * performance: mm/percpu-internal.h: Re-layout pcpu_chunk to mitigate false + sharing (LP: #2053152) + - percpu-internal/pcpu_chunk: re-layout pcpu_chunk structure to reduce false + sharing + + * performance: address_space: add padding for i_map and i_mmap_rwsem to + mitigate a false sharing (LP: #2053069) + - fs/address_space: add alignment padding for i_map and i_mmap_rwsem to + mitigate a false sharing. + + * cpufreq: intel_pstate: Enable HWP IO boost for all servers (LP: #2052817) + - cpufreq: intel_pstate: Enable HWP IO boost for all servers + + * performance: mm/memcontrol.c: remove the redundant updating of + stats_flush_threshold (LP: #2052827) + - mm/memcontrol.c: remove the redundant updating of stats_flush_threshold + + * Jammy update: v5.15.146 upstream stable release (LP: #2053212) + - ARM: dts: dra7: Fix DRA7 L3 NoC node register size + - ARM: OMAP2+: Fix null pointer dereference and memory leak in + omap_soc_device_init + - reset: Fix crash when freeing non-existent optional resets + - s390/vx: fix save/restore of fpu kernel context + - wifi: iwlwifi: pcie: add another missing bh-disable for rxq->lock + - wifi: mac80211: mesh_plink: fix matches_local logic + - net/mlx5e: Fix slab-out-of-bounds in mlx5_query_nic_vport_mac_list() + - net/mlx5e: fix a potential double-free in fs_udp_create_groups + - net/mlx5: Fix fw tracer first block check + - net/mlx5e: Correct snprintf truncation handling for fw_version buffer used + by representors + - net: sched: ife: fix potential use-after-free + - ethernet: atheros: fix a memleak in atl1e_setup_ring_resources + - net/rose: fix races in rose_kill_by_device() + - net: mana: select PAGE_POOL + - net: check vlan filter feature in vlan_vids_add_by_dev() and + vlan_vids_del_by_dev() + - afs: Fix the dynamic root's d_delete to always delete unused dentries + - afs: Fix dynamic root lookup DNS check + - net: check dev->gso_max_size in gso_features_check() + - keys, dns: Allow key types (eg. DNS) to be reclaimed immediately on expiry + - keys, dns: Fix missing size check of V1 server-list header + - keys, dns: Fix size check of V1 server-list header + - afs: Fix overwriting of result of DNS query + - afs: Use refcount_t rather than atomic_t + - afs: Fix use-after-free due to get/remove race in volume tree + - ASoC: hdmi-codec: fix missing report for jack initial status + - i2c: aspeed: Handle the coalesced stop conditions with the start conditions. + - pinctrl: at91-pio4: use dedicated lock class for IRQ + - gpiolib: cdev: add gpio_device locking wrapper around gpio_ioctl() + - ksmbd: fix wrong name of SMB2_CREATE_ALLOCATION_SIZE + - drm/i915/mtl: limit second scaler vertical scaling in ver >= 14 + - drm/i915: Relocate intel_atomic_setup_scalers() + - drm/i915: Fix intel_atomic_setup_scalers() plane_state handling + - smb: client: fix NULL deref in asn1_ber_decoder() + - smb: client: fix OOB in smb2_query_reparse_point() + - interconnect: Treat xlate() returning NULL node as an error + - iio: imu: inv_mpu6050: fix an error code problem in inv_mpu6050_read_raw + - Input: ipaq-micro-keys - add error handling for devm_kmemdup + - scsi: bnx2fc: Fix skb double free in bnx2fc_rcv() + - iio: common: ms_sensors: ms_sensors_i2c: fix humidity conversion time table + - iio: adc: ti_am335x_adc: Fix return value check of tiadc_request_dma() + - iio: triggered-buffer: prevent possible freeing of wrong buffer + - ALSA: usb-audio: Increase delay in MOTU M quirk + - wifi: cfg80211: Add my certificate + - wifi: cfg80211: fix certs build to not depend on file order + - USB: serial: ftdi_sio: update Actisense PIDs constant names + - USB: serial: option: add Quectel EG912Y module support + - USB: serial: option: add Foxconn T99W265 with new baseline + - USB: serial: option: add Quectel RM500Q R13 firmware support + - Bluetooth: hci_event: Fix not checking if HCI_OP_INQUIRY has been sent + - Bluetooth: MGMT/SMP: Fix address type when using SMP over BREDR/LE + - Input: soc_button_array - add mapping for airplane mode button + - net: 9p: avoid freeing uninit memory in p9pdu_vreadf + - net: rfkill: gpio: set GPIO direction + - net: ks8851: Fix TX stall caused by TX buffer overrun + - dt-bindings: nvmem: mxs-ocotp: Document fsl,ocotp + - scsi: core: Always send batch on reset or error handling command + - tracing / synthetic: Disable events after testing in + synth_event_gen_test_init() + - bus: ti-sysc: Flush posted write only after srst_udelay + - gpio: dwapb: mask/unmask IRQ when disable/enale it + - lib/vsprintf: Fix %pfwf when current node refcount == 0 + - KVM: arm64: vgic: Force vcpu vgic teardown on vcpu destroy + - x86/alternatives: Sync core before enabling interrupts + - fuse: share lookup state between submount and its parent + - ksmbd: have a dependency on cifs ARC4 + - ksmbd: set epoch in create context v2 lease + - ksmbd: set v2 lease capability + - ksmbd: downgrade RWH lease caching state to RH for directory + - ksmbd: send v2 lease break notification for directory + - ksmbd: lazy v2 lease break on smb2_write() + - ksmbd: avoid duplicate opinfo_put() call on error of smb21_lease_break_ack() + - ksmbd: fix wrong allocation size update in smb2_open() + - ARM: dts: Fix occasional boot hang for am3 usb + - usb: fotg210-hcd: delete an incorrect bounds test + - ethernet: constify references to netdev->dev_addr in drivers + - net: usb: ax88179_178a: clean up pm calls + - net: usb: ax88179_178a: wol optimizations + - net: usb: ax88179_178a: avoid failed operations when device is disconnected + - device property: Add const qualifier to device_get_match_data() parameter + - spi: Introduce spi_get_device_match_data() helper + - iio: imu: adis16475: add spi_device_id table + - smb: client: fix OOB in SMB2_query_info_init() + - mm/filemap: avoid buffered read/write race to read inconsistent data + - ring-buffer: Fix wake ups when buffer_percent is set to 100 + - tracing: Fix blocked reader of snapshot buffer + - ring-buffer: Remove useless update to write_stamp in rb_try_to_discard() + - ring-buffer: Fix slowpath of interrupted event + - dm-integrity: don't modify bio's immutable bio_vec in integrity_metadata() + - device property: Allow const parameter to dev_fwnode() + - bpf: Fix prog_array_map_poke_run map poke update + - Linux 5.15.146 + + * CVE-2023-46838 + - xen-netback: don't produce zero-size SKB frags + + * CVE-2024-1086 + - netfilter: nf_tables: reject QUEUE/DROP verdict parameters + + * disable Intel DMA remapping by default (LP: #1971699) + - [Config] update tracking bug for CONFIG_INTEL_IOMMU_DEFAULT_ON + + * Validate connection interval to pass Bluetooth Test Suite (LP: #2052005) + - Bluetooth: Enforce validation on max value of connection interval + + * Jammy update: v5.15.145 upstream stable release (LP: #2052406) + - ksmbd: use ksmbd_req_buf_next() in ksmbd_verify_smb_message() + - ksmdb: use cmd helper variable in smb2_get_ksmbd_tcon() + - ksmbd: Remove redundant 'flush_workqueue()' calls + - ksmbd: remove md4 leftovers + - ksmbd: remove smb2_buf_length in smb2_hdr + - ksmbd: remove smb2_buf_length in smb2_transform_hdr + - ksmbd: change LeaseKey data type to u8 array + - ksmbd: use oid registry functions to decode OIDs + - ksmbd: Remove unused parameter from smb2_get_name() + - ksmbd: Remove unused fields from ksmbd_file struct definition + - ksmbd: set both ipv4 and ipv6 in FSCTL_QUERY_NETWORK_INTERFACE_INFO + - ksmbd: Fix buffer_check_err() kernel-doc comment + - ksmbd: Fix smb2_set_info_file() kernel-doc comment + - ksmbd: Delete an invalid argument description in + smb2_populate_readdir_entry() + - ksmbd: Fix smb2_get_name() kernel-doc comment + - ksmbd: register ksmbd ib client with ib_register_client() + - ksmbd: set 445 port to smbdirect port by default + - ksmbd: smbd: call rdma_accept() under CM handler + - ksmbd: smbd: create MR pool + - ksmbd: smbd: change the default maximum read/write, receive size + - ksmbd: smbd: fix missing client's memory region invalidation + - ksmbd: smbd: validate buffer descriptor structures + - ksmbd: add support for key exchange + - ksmbd: use netif_is_bridge_port + - ksmbd: store fids as opaque u64 integers + - ksmbd: shorten experimental warning on loading the module + - ksmbd: Remove a redundant zeroing of memory + - ksmbd: replace usage of found with dedicated list iterator variable + - smb3: fix ksmbd bigendian bug in oplock break, and move its struct to + smbfs_common + - ksmbd: remove filename in ksmbd_file + - ksmbd: smbd: change prototypes of RDMA read/write related functions + - ksmbd: smbd: introduce read/write credits for RDMA read/write + - ksmbd: smbd: simplify tracking pending packets + - ksmbd: smbd: change the return value of get_sg_list + - ksmbd: smbd: handle multiple Buffer descriptors + - ksmbd: fix wrong smbd max read/write size check + - ksmbd: Fix some kernel-doc comments + - ksmbd: smbd: fix connection dropped issue + - ksmbd: smbd: relax the count of sges required + - ksmbd: smbd: Remove useless license text when SPDX-License-Identifier is + already used + - ksmbd: remove duplicate flag set in smb2_write + - ksmbd: remove unused ksmbd_share_configs_cleanup function + - ksmbd: use wait_event instead of schedule_timeout() + - ksmbd: request update to stale share config + - ksmbd: remove unnecessary generic_fillattr in smb2_open + - ksmbd: don't open-code file_path() + - ksmbd: don't open-code %pD + - ksmbd: constify struct path + - ksmbd: remove generic_fillattr use in smb2_open() + - ksmbd: casefold utf-8 share names and fix ascii lowercase conversion + - ksmbd: change security id to the one samba used for posix extension + - ksmbd: set file permission mode to match Samba server posix extension + behavior + - ksmbd: fill sids in SMB_FIND_FILE_POSIX_INFO response + - ksmbd: fix encryption failure issue for session logoff response + - ksmbd: set NTLMSSP_NEGOTIATE_SEAL flag to challenge blob + - ksmbd: decrease the number of SMB3 smbdirect server SGEs + - ksmbd: reduce server smbdirect max send/receive segment sizes + - ksmbd: hide socket error message when ipv6 config is disable + - ksmbd: make utf-8 file name comparison work in __caseless_lookup() + - ksmbd: call ib_drain_qp when disconnected + - ksmbd: validate share name from share config response + - ksmbd: replace one-element arrays with flexible-array members + - ksmbd: set SMB2_SESSION_FLAG_ENCRYPT_DATA when enforcing data encryption for + this share + - ksmbd: use F_SETLK when unlocking a file + - ksmbd: Fix resource leak in smb2_lock() + - ksmbd: Convert to use sysfs_emit()/sysfs_emit_at() APIs + - ksmbd: send proper error response in smb2_tree_connect() + - ksmbd: Implements sess->rpc_handle_list as xarray + - ksmbd: fix typo, syncronous->synchronous + - ksmbd: Remove duplicated codes + - ksmbd: update Kconfig to note Kerberos support and fix indentation + - ksmbd: Fix spelling mistake "excceed" -> "exceeded" + - ksmbd: Fix parameter name and comment mismatch + - ksmbd: fix possible memory leak in smb2_lock() + - ksmbd: fix wrong signingkey creation when encryption is AES256 + - ksmbd: remove unused is_char_allowed function + - ksmbd: delete asynchronous work from list + - ksmbd: fix slab-out-of-bounds in init_smb2_rsp_hdr + - ksmbd: avoid out of bounds access in decode_preauth_ctxt() + - ksmbd: set NegotiateContextCount once instead of every inc + - ksmbd: avoid duplicate negotiate ctx offset increments + - ksmbd: remove unused compression negotiate ctx packing + - fs: introduce lock_rename_child() helper + - ksmbd: fix racy issue from using ->d_parent and ->d_name + - ksmbd: destroy expired sessions + - ksmbd: block asynchronous requests when making a delay on session setup + - ksmbd: fix racy issue from smb2 close and logoff with multichannel + - ksmbd: fix racy issue under cocurrent smb2 tree disconnect + - ksmbd: fix uninitialized pointer read in ksmbd_vfs_rename() + - ksmbd: fix uninitialized pointer read in smb2_create_link() + - ksmbd: fix multiple out-of-bounds read during context decoding + - ksmbd: fix UAF issue from opinfo->conn + - ksmbd: call putname after using the last component + - ksmbd: fix out-of-bound read in deassemble_neg_contexts() + - ksmbd: fix out-of-bound read in parse_lease_state() + - ksmbd: fix posix_acls and acls dereferencing possible ERR_PTR() + - ksmbd: check the validation of pdu_size in ksmbd_conn_handler_loop + - ksmbd: validate smb request protocol id + - ksmbd: add mnt_want_write to ksmbd vfs functions + - ksmbd: remove unused ksmbd_tree_conn_share function + - ksmbd: use kzalloc() instead of __GFP_ZERO + - ksmbd: return a literal instead of 'err' in ksmbd_vfs_kern_path_locked() + - ksmbd: Change the return value of ksmbd_vfs_query_maximal_access to void + - ksmbd: use kvzalloc instead of kvmalloc + - ksmbd: Replace the ternary conditional operator with min() + - ksmbd: fix out of bounds read in smb2_sess_setup + - ksmbd: add missing compound request handing in some commands + - ksmbd: Use struct_size() helper in ksmbd_negotiate_smb_dialect() + - ksmbd: Replace one-element array with flexible-array member + - ksmbd: Fix unsigned expression compared with zero + - ksmbd: check if a mount point is crossed during path lookup + - ksmbd: validate session id and tree id in compound request + - ksmbd: fix out of bounds in init_smb2_rsp_hdr() + - ksmbd: switch to use kmemdup_nul() helper + - ksmbd: add support for read compound + - ksmbd: fix wrong interim response on compound + - ksmbd: fix `force create mode' and `force directory mode' + - ksmbd: reduce descriptor size if remaining bytes is less than request size + - ksmbd: Fix one kernel-doc comment + - ksmbd: fix slub overflow in ksmbd_decode_ntlmssp_auth_blob() + - ksmbd: add missing calling smb2_set_err_rsp() on error + - ksmbd: remove experimental warning + - ksmbd: remove unneeded mark_inode_dirty in set_info_sec() + - ksmbd: fix passing freed memory 'aux_payload_buf' + - ksmbd: return invalid parameter error response if smb2 request is invalid + - ksmbd: check iov vector index in ksmbd_conn_write() + - ksmbd: fix race condition between session lookup and expire + - ksmbd: fix race condition with fp + - ksmbd: fix race condition from parallel smb2 logoff requests + - ksmbd: fix race condition from parallel smb2 lock requests + - ksmbd: fix race condition between tree conn lookup and disconnect + - ksmbd: fix wrong error response status by using set_smb2_rsp_status() + - ksmbd: fix Null pointer dereferences in ksmbd_update_fstate() + - ksmbd: fix potential double free on smb2_read_pipe() error path + - ksmbd: Remove unused field in ksmbd_user struct + - ksmbd: reorganize ksmbd_iov_pin_rsp() + - ksmbd: fix kernel-doc comment of ksmbd_vfs_setxattr() + - ksmbd: fix recursive locking in vfs helpers + - ksmbd: fix missing RDMA-capable flag for IPoIB device in + ksmbd_rdma_capable_netdev() + - ksmbd: add support for surrogate pair conversion + - ksmbd: no need to wait for binded connection termination at logoff + - ksmbd: fix kernel-doc comment of ksmbd_vfs_kern_path_locked() + - ksmbd: handle malformed smb1 message + - ksmbd: prevent memory leak on error return + - ksmbd: fix possible deadlock in smb2_open + - ksmbd: separately allocate ci per dentry + - ksmbd: move oplock handling after unlock parent dir + - ksmbd: release interim response after sending status pending response + - ksmbd: move setting SMB2_FLAGS_ASYNC_COMMAND and AsyncId + - ksmbd: don't update ->op_state as OPLOCK_STATE_NONE on error + - tracing/kprobes: Return EADDRNOTAVAIL when func matches several symbols + - kasan: disable kasan_non_canonical_hook() for HW tags + - Linux 5.15.145 + + * Jammy update: v5.15.144 upstream stable release (LP: #2052404) + - r8152: add vendor/device ID pair for D-Link DUB-E250 + - r8152: add vendor/device ID pair for ASUS USB-C2500 + - netfilter: nf_tables: fix 'exist' matching on bigendian arches + - mm/memory_hotplug: handle memblock_add_node() failures in + add_memory_resource() + - memblock: allow to specify flags with memblock_add_node() + - MIPS: Loongson64: Handle more memory types passed from firmware + - ksmbd: fix memory leak in smb2_lock() + - afs: Fix refcount underflow from error handling race + - HID: lenovo: Restrict detection of patched firmware only to USB cptkbd + - net: ipv6: support reporting otherwise unknown prefix flags in RTM_NEWPREFIX + - qca_debug: Prevent crash on TX ring changes + - qca_debug: Fix ethtool -G iface tx behavior + - qca_spi: Fix reset behavior + - atm: solos-pci: Fix potential deadlock on &cli_queue_lock + - atm: solos-pci: Fix potential deadlock on &tx_queue_lock + - net: vlan: introduce skb_vlan_eth_hdr() + - net: fec: correct queue selection + - octeontx2-af: fix a use-after-free in rvu_nix_register_reporters + - octeontx2-pf: Fix promisc mcam entry action + - octeontx2-af: Update RSS algorithm index + - qed: Fix a potential use-after-free in qed_cxt_tables_alloc + - net: Remove acked SYN flag from packet in the transmit queue correctly + - net: ena: Destroy correct number of xdp queues upon failure + - net: ena: Fix xdp drops handling due to multibuf packets + - net: ena: Fix XDP redirection error + - stmmac: dwmac-loongson: Make sure MDIO is initialized before use + - sign-file: Fix incorrect return values check + - vsock/virtio: Fix unsigned integer wrap around in + virtio_transport_has_space() + - dpaa2-switch: fix size of the dma_unmap + - net: stmmac: use dev_err_probe() for reporting mdio bus registration failure + - net: stmmac: Handle disabled MDIO busses from devicetree + - net: atlantic: fix double free in ring reinit logic + - cred: switch to using atomic_long_t + - fuse: dax: set fc->dax to NULL in fuse_dax_conn_free() + - ALSA: hda/hdmi: add force-connect quirk for NUC5CPYB + - ALSA: hda/hdmi: add force-connect quirks for ASUSTeK Z170 variants + - ALSA: hda/realtek: Apply mute LED quirk for HP15-db + - PCI: loongson: Limit MRRS to 256 + - drm/mediatek: Add spinlock for setting vblank event in atomic_begin + - usb: aqc111: check packet for fixup for true limit + - stmmac: dwmac-loongson: Add architecture dependency + - [Config] updateconfigs for CONFIG_DWMAC_LOONGSON + - blk-throttle: fix lockdep warning of "cgroup_mutex or RCU read lock + required!" + - blk-cgroup: bypass blkcg_deactivate_policy after destroying + - bcache: avoid oversize memory allocation by small stripe_size + - bcache: remove redundant assignment to variable cur_idx + - bcache: add code comments for bch_btree_node_get() and + __bch_btree_node_alloc() + - bcache: avoid NULL checking to c->root in run_cache_set() + - platform/x86: intel_telemetry: Fix kernel doc descriptions + - HID: glorious: fix Glorious Model I HID report + - HID: add ALWAYS_POLL quirk for Apple kb + - HID: hid-asus: reset the backlight brightness level on resume + - HID: multitouch: Add quirk for HONOR GLO-GXXX touchpad + - asm-generic: qspinlock: fix queued_spin_value_unlocked() implementation + - net: usb: qmi_wwan: claim interface 4 for ZTE MF290 + - HID: hid-asus: add const to read-only outgoing usb buffer + - btrfs: do not allow non subvolume root targets for snapshot + - soundwire: stream: fix NULL pointer dereference for multi_link + - ext4: prevent the normalized size from exceeding EXT_MAX_BLOCKS + - arm64: mm: Always make sw-dirty PTEs hw-dirty in pte_modify + - team: Fix use-after-free when an option instance allocation fails + - drm/amdgpu/sdma5.2: add begin/end_use ring callbacks + - ring-buffer: Fix memory leak of free page + - tracing: Update snapshot buffer on resize if it is allocated + - ring-buffer: Do not update before stamp when switching sub-buffers + - ring-buffer: Have saved event hold the entire event + - ring-buffer: Fix writing to the buffer with max_data_size + - ring-buffer: Fix a race in rb_time_cmpxchg() for 32 bit archs + - ring-buffer: Do not try to put back write_stamp + - USB: gadget: core: adjust uevent timing on gadget unbind + - powerpc/ftrace: Create a dummy stackframe to fix stack unwind + - powerpc/ftrace: Fix stack teardown in ftrace_no_trace + - r8152: avoid to change cfg for all devices + - r8152: remove rtl_vendor_mode function + - r8152: fix the autosuspend doesn't work + - Linux 5.15.144 + + * CVE-2023-32247 + - ksmbd: destroy expired sessions + + * CVE-2024-22705 + - ksmbd: fix slab-out-of-bounds in smb_strndup_from_utf16() + + -- Stefan Bader Tue, 05 Mar 2024 16:22:39 +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) diff -u linux-xilinx-zynqmp-5.15.0/debian.master/config/annotations linux-xilinx-zynqmp-5.15.0/debian.master/config/annotations --- linux-xilinx-zynqmp-5.15.0/debian.master/config/annotations +++ linux-xilinx-zynqmp-5.15.0/debian.master/config/annotations @@ -289,7 +289,7 @@ CONFIG_INTEGRITY_PLATFORM_KEYRING note<'Required for lockdown'> CONFIG_INTEL_IOMMU_DEFAULT_ON policy<{'amd64': 'n'}> -CONFIG_INTEL_IOMMU_DEFAULT_ON note<'the IOMMU can trigger boot failures'> +CONFIG_INTEL_IOMMU_DEFAULT_ON note<'LP: #1971699'> CONFIG_IOMMU_DEBUGFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> CONFIG_IOMMU_DEBUGFS note<'Should not be enabled in production, LP #1861057'> @@ -4191,7 +4191,6 @@ CONFIG_DWMAC_INTEL policy<{'amd64': 'm'}> CONFIG_DWMAC_INTEL_PLAT policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_DWMAC_IPQ806X policy<{'arm64': 'm', 'armhf': 'm'}> -CONFIG_DWMAC_LOONGSON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_DWMAC_MEDIATEK policy<{'arm64': 'm', 'armhf': 'm'}> CONFIG_DWMAC_MESON policy<{'arm64': 'm', 'armhf': 'm'}> CONFIG_DWMAC_QCOM_ETHQOS policy<{'arm64': 'm', 'armhf': 'm'}> @@ -7276,7 +7275,7 @@ CONFIG_MFD_TC3589X policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> CONFIG_MFD_TC6387XB policy<{'armhf': 'y'}> CONFIG_MFD_TC6393XB policy<{'armhf': 'y'}> -CONFIG_MFD_TI_AM335X_TSCADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> +CONFIG_MFD_TI_AM335X_TSCADC policy<{'amd64': '-', 'arm64': 'm', 'armhf': 'm', 'ppc64el': '-', 's390x': '-'}> CONFIG_MFD_TI_LMU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> CONFIG_MFD_TI_LP873X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'n'}> CONFIG_MFD_TI_LP87565 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> @@ -7451,13 +7450,13 @@ CONFIG_MMC_REALTEK_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_MMC_RICOH_MMC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> CONFIG_MMC_SDHCI_ACPI policy<{'amd64': 'm', 'arm64': 'm'}> -CONFIG_MMC_SDHCI_AM654 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_SDHCI_AM654 policy<{'arm64': 'm', 'armhf': '-', 'ppc64el': '-'}> CONFIG_MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER policy<{'ppc64el': 'y'}> CONFIG_MMC_SDHCI_BRCMSTB policy<{'arm64': 'm'}> CONFIG_MMC_SDHCI_CADENCE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_MMC_SDHCI_DOVE policy<{'armhf': 'm'}> CONFIG_MMC_SDHCI_ESDHC_IMX policy<{'arm64': 'm', 'armhf-generic': 'y'}> -CONFIG_MMC_SDHCI_EXTERNAL_DMA policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_MMC_SDHCI_EXTERNAL_DMA policy<{'arm64': '-', 'armhf': 'y', 'ppc64el': '-'}> CONFIG_MMC_SDHCI_F_SDH30 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_MMC_SDHCI_IO_ACCESSORS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> CONFIG_MMC_SDHCI_IPROC policy<{'arm64': 'm'}> @@ -7470,7 +7469,7 @@ CONFIG_MMC_SDHCI_OF_ESDHC policy<{'arm64': 'm', 'armhf-generic': 'm', 'ppc64el': 'm'}> CONFIG_MMC_SDHCI_OF_HLWD policy<{'ppc64el': 'm'}> CONFIG_MMC_SDHCI_OF_SPARX5 policy<{'arm64': 'm'}> -CONFIG_MMC_SDHCI_OMAP policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_SDHCI_OMAP policy<{'arm64': '-', 'armhf': 'm', 'ppc64el': '-'}> CONFIG_MMC_SDHCI_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_MMC_SDHCI_PXAV3 policy<{'arm64': 'm', 'armhf': 'm'}> CONFIG_MMC_SDHCI_S3C policy<{'armhf': 'm'}> @@ -12469,7 +12468,7 @@ CONFIG_TI_ADS7950 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_TI_ADS8344 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_TI_ADS8688 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> -CONFIG_TI_AM335X_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TI_AM335X_ADC policy<{'amd64': '-', 'arm64': 'm', 'armhf': 'm', 'ppc64el': '-'}> CONFIG_TI_AM65_CPSW_TAS policy<{'arm64': 'y'}> CONFIG_TI_CPPI41 policy<{'armhf': 'm'}> CONFIG_TI_CPSW policy<{'armhf': 'y'}> @@ -12509,7 +12508,7 @@ CONFIG_TI_SCI_INTR_IRQCHIP policy<{'arm64': 'y'}> CONFIG_TI_SCI_PM_DOMAINS policy<{'arm64': 'm'}> CONFIG_TI_SCI_PROTOCOL policy<{'arm64': 'y'}> -CONFIG_TI_SOC_THERMAL policy<{'arm64': 'n', 'armhf': 'm', 'ppc64el': 'n'}> +CONFIG_TI_SOC_THERMAL policy<{'arm64': '-', 'armhf': 'm', 'ppc64el': '-'}> CONFIG_TI_ST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 's390x': 'm'}> CONFIG_TI_SYSC policy<{'armhf': 'y'}> CONFIG_TI_SYSCON_CLK policy<{'arm64': 'y'}> @@ -12608,7 +12607,7 @@ CONFIG_TOUCHSCREEN_SUR40 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_TOUCHSCREEN_SURFACE3_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_TOUCHSCREEN_SX8654 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> -CONFIG_TOUCHSCREEN_TI_AM335X_TSC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TOUCHSCREEN_TI_AM335X_TSC policy<{'amd64': '-', 'arm64': 'm', 'armhf': 'm', 'ppc64el': '-'}> CONFIG_TOUCHSCREEN_TOUCHIT213 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_TOUCHSCREEN_TOUCHRIGHT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> CONFIG_TOUCHSCREEN_TOUCHWIN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> diff -u linux-xilinx-zynqmp-5.15.0/debian.master/control.d/generic.inclusion-list linux-xilinx-zynqmp-5.15.0/debian.master/control.d/generic.inclusion-list --- linux-xilinx-zynqmp-5.15.0/debian.master/control.d/generic.inclusion-list +++ linux-xilinx-zynqmp-5.15.0/debian.master/control.d/generic.inclusion-list @@ -41,6 +41,7 @@ drivers/crypto/nx/* drivers/crypto/vmx/vmx-crypto.ko drivers/dma/tegra210-adma.ko +drivers/firmware/dmi-sysfs.ko drivers/firmware/efi/* drivers/firmware/iscsi_ibft.ko drivers/gpio/gpio-max77620.ko @@ -232,6 +233,7 @@ fs/dlm/dlm.ko fs/ecryptfs/* fs/efivarfs/* +fs/erofs/* fs/exofs/libore.ko fs/ext4/* fs/fat/* diff -u linux-xilinx-zynqmp-5.15.0/debian.master/reconstruct linux-xilinx-zynqmp-5.15.0/debian.master/reconstruct --- linux-xilinx-zynqmp-5.15.0/debian.master/reconstruct +++ linux-xilinx-zynqmp-5.15.0/debian.master/reconstruct @@ -4,7 +4,6 @@ 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' @@ -16,10 +15,8 @@ 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' @@ -30,10 +27,8 @@ 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' @@ -52,8 +47,6 @@ 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' @@ -99,6 +92,7 @@ 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/mellanox/mlxbf_gige/mlxbf_gige_gpio.c' rm -f 'drivers/net/vxlan.c' rm -f 'drivers/of/of_net.c' rm -f 'drivers/pinctrl/ralink/pinctrl-rt2880.c' diff -u linux-xilinx-zynqmp-5.15.0/debian.master/tracking-bug linux-xilinx-zynqmp-5.15.0/debian.master/tracking-bug --- linux-xilinx-zynqmp-5.15.0/debian.master/tracking-bug +++ linux-xilinx-zynqmp-5.15.0/debian.master/tracking-bug @@ -1 +1 @@ -2048777 2024.01.08-2 +2059497 2024.04.01-1 diff -u linux-xilinx-zynqmp-5.15.0/debian.master/upstream-stable linux-xilinx-zynqmp-5.15.0/debian.master/upstream-stable --- linux-xilinx-zynqmp-5.15.0/debian.master/upstream-stable +++ linux-xilinx-zynqmp-5.15.0/debian.master/upstream-stable @@ -3 +3 @@ - linux-5.15.y = v5.15.136 + linux-5.15.y = v5.15.149 reverted: --- linux-xilinx-zynqmp-5.15.0/debian.zynqmp/abi/abiname +++ linux-xilinx-zynqmp-5.15.0.orig/debian.zynqmp/abi/abiname @@ -1 +0,0 @@ -1026 reverted: --- linux-xilinx-zynqmp-5.15.0/debian.zynqmp/abi/arm64/xilinx-zynqmp +++ linux-xilinx-zynqmp-5.15.0.orig/debian.zynqmp/abi/arm64/xilinx-zynqmp @@ -1,25458 +0,0 @@ -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x4dc8ccaa crypto_cipher_decrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xa2e3f3fb crypto_cipher_setkey vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xec746117 crypto_cipher_encrypt_one vmlinux -CXL EXPORT_SYMBOL_GPL 0x0e16cbc9 to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x12351271 cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x129042d3 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x21911af0 to_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x35cd2d71 devm_cxl_add_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x386641af cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3c4e496f cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4d476545 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5516a30e cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x59aed653 is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6df3120c devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8b8859ce is_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8cf9ad29 cxl_driver_unregister drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8f8e43c4 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xca3489aa cxl_probe_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xdc690a32 cxl_add_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf2104dca devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf6660bd3 __cxl_driver_register drivers/cxl/core/cxl_core -EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x471e5afb 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 crypto/nhpoly1305 0x1bf610ab crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/nhpoly1305 0x3d5352b0 crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x47803c9c crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0x5ae86f07 crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/nhpoly1305 0xd0877f35 crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0xfb715ab7 crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/sm2_generic 0x546fcea0 sm2_compute_z_digest -EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x06848c60 to_nfit_uuid -EXPORT_SYMBOL drivers/atm/suni 0x34e61196 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x3a75cac4 bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0xf99f9de5 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 0x5ad126a1 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0x9636e39e rsi_bt_ops -EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0xae289dd2 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 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 0xc1f583c5 ipmi_add_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xc3cbac16 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xee49e324 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xef1f6f23 ipmi_smi_watcher_register -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/tpm/st33zp24/tpm_st33zp24 0x1a6d3e80 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x370a9316 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x81998425 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc1582469 st33zp24_probe -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x33fd3add xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x796e3cc3 xillybus_find_inode -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xd1c29697 xillybus_cleanup_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x01cd7b83 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x54153666 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x5f74d06d xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x6cda1bc1 atmel_i2c_enqueue -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xafa275ee atmel_i2c_send_receive -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xdd843605 atmel_i2c_probe -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfaab573f atmel_i2c_init_ecdh_cmd -EXPORT_SYMBOL drivers/firewire/firewire-core 0x050bfe56 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x073f549d fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1a33c929 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0x211c5d11 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x27b2c2ff fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2b1c84c6 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2f6c30c8 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x351309f0 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x38d8a38c fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a6b1897 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x49996099 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4f47607f fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5b161f4a fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0x60a4baa2 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x756dbd0d fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x83e4b080 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa5a32771 fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa8bc48e8 fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb9f7768c fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbb16680a fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbbe19336 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcb2c58f0 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcb89a6ea fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd2ddd4a8 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd8378ec1 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd9e22128 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/fpga/dfl 0xba261c28 __dfl_driver_register -EXPORT_SYMBOL drivers/fpga/dfl 0xca675869 dfl_driver_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0325df87 mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x05ea58ef mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x15924baa mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x36823849 mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x40dfa05a mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5beeaa4c mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5f022d1e mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x69749ea8 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x78976687 mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8f1b6034 mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x99821ed7 mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa3cdd8d6 mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb99f4b49 mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd2d4b3c3 mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdcb375fa mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf2fc3b53 mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xff97f06a mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x0377fa9d drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x8a320576 drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xb91eeaa0 drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xbb257094 drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xbb39756c drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x016f7be8 drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0215f7ab drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x11c13e8c drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x23ea3b1b drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x26b764de drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x28fd13d8 drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x332bdbff drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x37fe2ba6 drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4d818faa drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x573d60e2 drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7db26839 drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x910dd49a drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa30af0f1 drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xaf5811cb drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe625f3ea drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf2f5bbef drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x01952b81 drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x06b66b95 drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1f751c78 drm_sched_reset_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x239b2e0e drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x32c709d3 to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3ec3b9f4 drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x55939beb drm_sched_entity_modify_sched -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x626c79a3 drm_sched_dependency_optimized -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x695bba8c drm_sched_increase_karma_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7d214b87 drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7dbaeb26 drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x86c5e935 drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8c004c7b drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8f739422 drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9724ec70 drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xafc995d1 drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb8f08ea2 drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbd55ee5b drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc1119a94 drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd2ee3fdf drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd9a488e3 drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xebcdf0aa drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xedcac94f drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf6ead8fb drm_sched_resubmit_jobs_ext -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x071ca205 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0964571d ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0f3aa1f8 ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x14e58e88 ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x162e88ca ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x17f2bd9a ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1d4bfa02 ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f02a2a6 ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f7f4e98 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2213d23d ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x26172039 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x30024392 ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x39e3da97 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3b54ce53 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4268f7fd ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x440b5a93 ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x44c5bcbe ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x53e7c800 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x54f119a1 ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5bcaf434 ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ee57106 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60edbcb2 ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6846f266 ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6d78efe7 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e8b70af ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8009cfed ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x83caa900 ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8bbfe2bf ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d866893 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x91908b02 ttm_pool_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x93e0b0de ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x983daa31 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9b85bf72 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa4553ed0 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa55abeb3 ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5b6c758 ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa663ae78 ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa7e2a815 ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa80bad50 ttm_global_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb231f1fb ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb8b148a1 ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbc084df9 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd371b3c ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd4561811 ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd599f0c8 ttm_range_man_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdfff2bf1 ttm_tt_destroy_common -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe18169a1 ttm_range_man_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1a54a7b ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe927d80f ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf03f94e3 ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf2bf4d3e ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5b35bb7 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf9c90f9c ttm_resource_init -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 0x7f0b9dcd ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0xa3f67f76 ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0xa7ba7c10 ttm_mem_glob -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x7e8bbc71 vmbus_recvpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xd80cb94c vmbus_sendpacket -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm -EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x8dfa8079 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-pca 0x4d7941cd i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xba837a78 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xc0be8f73 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x1f3ae96f bma400_probe -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x49d45bb1 bma400_regmap_config -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xd2ccb4ae bma400_remove -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x2ef66bda kxsd9_common_remove -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x851fda43 kxsd9_dev_pm_ops -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xa8b4b3f4 kxsd9_common_probe -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x081c0eda mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x090d0ece mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0991f7f2 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x251465ec mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2847b2c2 mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x355df125 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x525e0036 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x55d85b1b mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5f050e6e mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x710f7076 mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x83ac1ff7 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8c3a58ba mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9ad7183b mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa0c98ac3 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbc7a747c mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xee478248 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x0ff5028a st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x53d0ac21 st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x61f16c9e st_accel_get_settings -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x12402a0a qcom_vadc_scale -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x47f699dd qcom_adc5_decimation_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x4e64cdb9 qcom_adc5_hw_settle_time_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x53546ecd qcom_adc5_avg_samples_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt -EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xc61e7a34 qcom_adc5_prescaling_from_dt -EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0xe28ba274 bme680_regmap_config -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x0ed77543 scd30_resume -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x9d254348 scd30_probe -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xff789658 scd30_suspend -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x045688dd ms_sensors_read_prom_word -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x05bcc299 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x08af719b ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x74047ff6 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x7e2d9044 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x872bf75c ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc049083f ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf18aa9a4 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf543993c ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf7b9d0d1 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x2359ada6 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x4c0c3ae0 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xa22c1eb6 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xad097f70 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xd0a5a6b5 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x0404bd51 ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x199c974e ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xa582d88c ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x08ffa721 st_sensors_dev_name_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0a92e507 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x14457cb6 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1c664503 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1ddcd872 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x20fddac2 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x39aca40c st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5c0bf1b6 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x65399ed6 st_sensors_verify_id -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x780dc0f5 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7962a90c st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x942c33c1 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9a86eff5 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9e175830 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa5a6421f st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb447b4de st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc6d132d2 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc7464c51 st_sensors_get_settings_index -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x9a88e6f4 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x79bd43ab st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x00fb76a8 mpu3050_common_remove -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x191b1e7c mpu3050_dev_pm_ops -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x1c925e23 mpu3050_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x578cc49d st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x5f46cf70 st_gyro_get_settings -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xb03d200e st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x36d8f310 hts221_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0xa57b8e42 hts221_pm_ops -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xcef39172 bmi160_regmap_config -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x2f21592b fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x65f81062 st_lsm6dsx_pm_ops -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xdaca62b4 st_lsm6dsx_probe -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x1020ea50 iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x24bac28e iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x300b0057 iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x98c5c880 iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xe774f71a iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x4eaea13f iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x539cca49 iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x790f686d iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x99a77625 iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x81efc109 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xe77174f2 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x2cf2d70d st_uvis25_probe -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x620f148a st_uvis25_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x231a2083 bmc150_magn_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x318a29b7 bmc150_magn_remove -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x4d9bf897 bmc150_magn_regmap_config -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xb446fb57 bmc150_magn_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x0a6967b5 hmc5843_common_suspend -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x254c7ed7 hmc5843_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x61d8e4ef hmc5843_common_resume -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xe77be6b9 hmc5843_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xbc26ac13 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xceb204d1 st_magn_get_settings -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xfa1be156 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x15e7aeda bmp280_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x3f7fe08c bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x5ac31e58 bmp180_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xb045c33a bmp280_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x110cc59b ms5611_remove -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xe43e1856 ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x679546d0 st_press_get_settings -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xd74a0603 st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xe1ffff89 st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x05081520 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x18b3e5b9 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x37bed909 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4da615eb ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x537c0851 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x632abe41 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa3c0b705 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xab1f177c ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb1a5c497 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb24a470f ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc4b4bedc ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd4cb6585 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdb606e2b ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdc88cfce ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf92db9e2 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x018297db ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0381a949 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03b3202a ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03c3a12d ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0641cb4e rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07525b2e ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c189790 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10560300 rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11fd0535 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13998c8c ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17904cc2 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x198077a2 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1aed01b7 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c0dc187 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c7de371 ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ce4b4ef rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e19b4dd rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20e8eaa5 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2158ace0 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26d0473b ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27f0922a ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2892688c ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x289de80c rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d5b7713 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e71f942 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x310aa355 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31694b8c rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32740fe6 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3344f26e rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34d76546 rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37c75ed4 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3894df58 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3982e4dc rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b46b62e ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bfa74ec rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d239654 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e955475 rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f032d4f ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f324fd6 ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x404d2101 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41b5d96b ib_create_send_mad -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 0x439f6ea2 ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45bbf65c ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45d104db ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x494093a3 ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b1ebe8b rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c0ee945 rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c378e37 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ce6058d ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d44909f rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e5c232b ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4eafd8d2 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f5cdd5f __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54eeabf4 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5596b7b4 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6196384c rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6261f2ec rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6319b223 ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6565e4aa __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65d7b46a ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66f23bb6 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67384b2d rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68581176 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68ced33d rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6918bc61 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69ea56ed _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6add0f7c rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ae48da4 ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d468d52 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e6fd518 ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fc17a45 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74047ef0 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74f57d8d rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7df837d1 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f57218a ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8050f9ef rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x817f71af ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x833212a2 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84e21210 rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8579fbba ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88b2ae60 rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a339ecb ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b011281 ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c693718 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cf40f3d ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d338db6 ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e789a77 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ed78fc9 ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91a8059f ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x927f4223 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x930b8782 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x932521c1 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x937ccb74 rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x938aec9d rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9513d630 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96717ea8 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96fa92f4 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9815dd59 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cf1148c __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9dd20505 ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ebfc99f rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa07e8f10 ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa081bf70 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa13e8ed2 ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa24689b2 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2ec877a ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3fe837d ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4c99c70 rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6096584 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6ed966b ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa754b840 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8ea2bcb rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9655c99 ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa6bb833 ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa788a2e ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaac7a254 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac4e7286 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaca40fe6 rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xacd38437 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae4ff539 rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf79f4dd rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb30e6cd6 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3aa0ead ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4fa52e4 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb637db57 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb752ad50 rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7b2dad0 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8334081 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8839f79 rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a9957 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9c609a6 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba0f08e0 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbad3074d ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb6d9581 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd5ae026 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf5d7787 rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf9eb8d1 rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc003c124 ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc02bdd52 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1a56c60 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1f33245 ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2c4e8d8 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc31d5e7d rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4416f50 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4909de0 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc620b10e rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca92ad00 rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb3a7d3b ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc7966a9 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccacb38d ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd64b3ba rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce7d8034 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xced69576 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1408196 rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5fad21c rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd622668c rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7a06168 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8742e28 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd96b9758 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdaebccef rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd85c29f ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde6224d3 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdebfcf69 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfa9890d rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe15b1335 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1ab2322 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe262f489 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3782710 ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe41b99bc ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4beef6d ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4c41c68 ib_advise_mr -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 0xe7dc838a ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7ecb316 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7eecbd2 ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe81cbe87 ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9678b5b ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed447870 ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef4c664a ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0a064b9 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0f570d9 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2783805 rdma_rw_ctx_wrs -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 0xf7c7f3d5 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf85c69e5 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf91e8b31 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9597f0d rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff77b17c ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x17fab918 uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x22c38680 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2e4a1111 ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x408044ac uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x45833aa0 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4798590f flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48fbfd60 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x49289fca ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4e7d342a ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4f08e677 _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x51a99f08 uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5897cbb2 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x61781796 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x64d23735 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6629d827 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6b56012c ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6c37cf8f ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6e6bf4f5 ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x70b76ed8 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7cc9d215 _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7d360a76 ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x986b1fe4 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa2870780 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa6772e06 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbc35e104 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbcc33f4b ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc56c27eb ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd4607f3b uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd93033a6 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe8b2b125 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe9d749e2 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xed4d8101 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xefc0f8e7 uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf2b6398d uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf3277e27 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfe233361 ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x092c2f7c iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1221a48a iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x157cba79 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x938cf3d3 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x952e9f15 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa3714643 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa4228f15 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb4a6869f iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x12a628e3 rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x17f478c7 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2645d352 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x35bf1aff rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x38f92f6f rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3d9bcfa4 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x471e8686 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5a94790c rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5acd7d7f rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f6fe993 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x71fb0974 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7356998a rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x74b08c6f rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7deed6ba rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9b6aeb1f rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9bc66290 rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa8c73d6d rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xae6c8ca8 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb11309bd rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb610828d __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbfdb3db3 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc57e363d rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc5ae3702 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcce1ab4f rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcf250475 rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd09ae1cb rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd2a414c0 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdcafc419 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xde101982 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe45e84ee rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xec3aa50a rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf489f260 rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf8026155 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfc9cd8c9 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0de854b2 rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x1e0514c7 rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x36780f1c rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x75668165 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x93ed25b2 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x9d656582 rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xaf249d62 rtrs_clt_query -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 0x887302f3 rtrs_addr_to_sockaddr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xa77bee55 rtrs_rdma_dev_pd_deinit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xc05fb3da rtrs_ib_dev_put -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xd6138c0f rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xfa76bd77 rtrs_rdma_dev_pd_init -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x08cf9127 rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x1857f2f6 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x276a1c18 rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x5baa0505 rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9fedb13a rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xa047a2d7 rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/input/gameport/gameport 0x25ea42c5 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x2ff6f282 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x48cbf32e gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x5459aec6 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x7333196b gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x773bcb8e gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x9f183365 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xcbeb041f __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xdd7fbeb0 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x1d2d4e7f iforce_init_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x962002ec iforce_process_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xa729ce3b iforce_send_packet -EXPORT_SYMBOL drivers/input/matrix-keymap 0x6dec3786 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x0a31d547 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x4fdf1f01 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xe786aa83 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xb3b25a8d cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x6b5dbf8e rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x4ff38f77 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x742d3e9f sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x814eff72 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xb1590ff7 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0xd98329c5 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x1cf1a2c7 ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xbaa96e74 ad7879_pm_ops -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1e53439d detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xafaa2bed capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd5c39957 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xdb4437cc capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf537764a capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x27c58fd5 isdnhdlc_decode -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x4644eea5 isdnhdlc_out_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x5b835a58 isdnhdlc_rcv_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0xef4ee223 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x14cdd096 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x2016baf2 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x5086e3e3 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xe8e38dc0 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x42361887 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x6c2b1f49 mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0876253e mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0c890bb6 create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0ef9e63a mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1956a8a2 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1d2d2e91 bchannel_get_rxbuf -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 0x38cc87b0 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5024a47a mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x55405c97 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x62332973 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x69f08440 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x73eefcf1 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x86d3d0c5 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9a72afac mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa6341ca6 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xad255aee mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc316e17f recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc37ff507 mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd2eb083c bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd39d0e72 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe11925ac dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe32627f2 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeb817d65 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9515e8d queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x06706a58 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 0xb3733d69 ti_lmu_common_get_brt_res -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness -EXPORT_SYMBOL drivers/md/dm-log 0x25654660 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x2d918d33 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0x8d87183f dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x905c7895 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x1b6ed838 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x3d3925f8 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x6e6e4e2b dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x82bfdc39 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0xbc36d9de dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0xe8eaf8df dm_snap_cow -EXPORT_SYMBOL drivers/md/raid456 0x39068b3f r5c_journal_mode_set -EXPORT_SYMBOL drivers/md/raid456 0xce892ac7 raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x003754f5 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0310dcea flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1fcc0baa flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x21d2ef57 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3f718cd8 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x405c7f3e flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x852262cc flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x96474adf flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb0353711 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb63e93f4 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdf76fe5a flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xeaf3744d flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf366d432 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/cx2341x 0x0dc71cd3 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0x495f3c61 cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0x85a683d1 cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xb0453bd9 cx2341x_handler_setup -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 0xafaf35d1 cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xf52f5baa ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0xe8fc5bf8 tveeprom_read -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x89ddbff8 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xbe33f6ba vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xd19e61c0 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xde4e3fb9 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xfaed3290 vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xffdca7c6 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x3be5c9f7 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x6fde4a07 atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x19e677ae au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2ffbb54e au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x56136ec3 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x79872595 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9a244e14 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa9a5cb24 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc391e51c au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xec5be117 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xeeccee1d au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xecc92ae0 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xe119249d bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xad2e8156 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x22ca2097 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xb63ecb39 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x0076d327 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xc64acb8b cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x79000548 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x1d2252a5 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xda622dfb cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xfc9ba88c cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x5ffc2da3 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x29cc475e cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xcac187ee cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0xbba645cf cxd2880_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x0c5878af dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x2a66a705 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x3a5b1e18 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x8cf62e38 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xe30b9016 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x08029b06 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0ea1419b dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1258e014 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3a6454e6 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4c91b39e dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9e7b5ade dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa8c9cc30 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb56bcdfc dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbb881134 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbd085feb dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbda63e44 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbdda76ae dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcc20c549 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdbdbd0ee dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdbf7a42a dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x50c3a59d dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x69ac80c0 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x89c3e7be dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa0cbeec6 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xeee332c3 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf3b67f76 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf88fdb20 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x1ef00006 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x9842c433 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xd6326761 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xfc5cf6d5 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xf087da5b dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x561477b6 dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x07efa88c dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x215262bf dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3391cd7a dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3f718288 dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x712498cf dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x767184c1 dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9be16048 dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa5c93b1e dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xad8d4d93 dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xce2f0385 dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd83940c4 dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xec9b1549 dib9000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xff2aae9b dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x44a81669 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x52c8ffca dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x6eeb7135 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc9a80162 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xfe61f76c dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xcdb53f23 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x00e24ae6 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xfc415d91 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x692dd981 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xf19a35fd dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x50c58f12 dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x8a3ff2e7 dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xfb0bab7a dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x731a8829 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x26763f67 helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xcfc29bfe helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x8477a3fc horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x14310b97 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xe878d007 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x9e263f4f isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x8186b857 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x850dd559 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x60f48946 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x49968549 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xc8c1af22 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x8a51ebf6 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x08d08e54 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xf4d69dda lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xccd57b26 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x9afd7b5f lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x9707fbe9 lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xd15c26b5 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xee6fcda3 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xf2440ecd lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x4c81e678 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xa35ba441 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xf4d173d5 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xee5019a5 mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xcbabe9fc mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x2e589093 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x9aef76c3 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x410903db nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xbf0b7626 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xa3ba7307 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x11abb23d or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x84f8a8ce s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xafbd8d0d s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x88abedbe s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xbc5ecfdb s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0xa10ca0d1 s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xc8809c62 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x2c21ec1d si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xcc23bbdc sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x58eb46ee stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xd18c346d stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xe59dba47 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xe347bf80 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xc64cbeae stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xfd89f8b4 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x4b0ccbb4 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x7bfcd58e stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xca3e31d9 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xc22ec4df stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xec2ee135 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xbd863a3f stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x0971e07d stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xaf3c0dc9 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x641dc7bf tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x6ec32c09 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x57612234 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x6cec3d40 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x7854e368 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xea438a0a tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xc22f7510 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x6808a250 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xe46fab19 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x7edadc03 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x43400489 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x8737d134 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xde14d2bb ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x6ea85caf zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xd243b61d zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x7f333a8c zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x4586b8bf zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x8e62fd73 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x11bd56b8 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x34c2d7f6 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x50d7b4ff flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6611c259 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8b35dc4b flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe685e789 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf0232582 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x202400ea bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x46767b6a bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x8f32794e bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xca6773db bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x5fc6b4a5 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x75073b47 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xcbc80ae9 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x04153027 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0443ba68 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x173d45d8 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x33efba12 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x37cdf2f7 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3b7f96ce read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb5332adb dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd55db9f0 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf21108dc dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x9dc2e819 dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x35006ac7 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x557f6e3c cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xbc014a4b cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc5074469 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd6d53416 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x1ab311dc altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0b10692c cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x40ca4494 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x89f6f24e cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x917ff839 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf84b77e2 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xfc00e6cd cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xfeac10fd cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x374caaac vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x77b6c27f vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x07997aab cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x34948d16 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x426658ee cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x984f75d1 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1084aa17 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2ce0700d cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x321338f1 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x360deb67 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5b9b4924 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9c80fb14 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc5d43d09 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0e5925ca cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x13b765bc cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x192dd1e9 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1d1dd2bf cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x25a9b307 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x366d2e1d cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5859fcca cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x668b284f cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7a62c74a cx88_newstation -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 0x95a837ee cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa13e5fbb cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb3ec7178 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xba6a117b cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe08caafb cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe22c8e83 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe5669c39 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xeab0dca1 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf0ff3eba cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf5acf55d cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf967038b cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x4f1c97ea ddbridge_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x11aea99a ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x247d9220 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2a4785a5 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2be4dc69 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3970450f ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4e796680 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5683479b ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5b55b361 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x75cd8543 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7ee2123f ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8a7b1474 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa634cc29 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa79f6981 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb4bcf5c8 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb5a97620 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd2def9bc ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe232de42 ivtv_api -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x00083ef1 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x046e322b saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x08198eb6 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3c539d8c saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5d48c38f saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5e0aabd9 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x667dd92a saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x69422275 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcfbfd784 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf1751860 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfe897c7c saa_dsp_writel -EXPORT_SYMBOL drivers/media/radio/tea575x 0x18e3425a snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x3cd4b8db snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x79f53961 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x886bd201 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xb11dd28a snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xd166b763 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0xf3d855a0 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl -EXPORT_SYMBOL drivers/media/rc/rc-core 0x56335e71 ir_raw_handler_unregister -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 0xd3d7ff1e ir_raw_handler_register -EXPORT_SYMBOL drivers/media/rc/rc-core 0xf446074f ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x782279d1 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0xb4c76c20 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x1890f6ba fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x59cb6196 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xabc75eaf fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/max2165 0x8e77c5b4 max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0xf6edb31d mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0xeb712115 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0x0e9118e0 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xc276a4d0 mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0xa3874be4 qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0xf8adf54d tda18218_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x2cfa9a52 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xbb7e7542 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x137c07c9 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x169265ad dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1b1bd619 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x260c22cf dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3bc839c3 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x594234d4 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5f5ac52c dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8ec37818 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe9e441c5 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0a9b19fc dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x38f531a8 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x635d2561 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x725599b3 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 0xc944515b dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xdf0de136 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x758291c7 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 0x137be12e dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2f9fcc4c dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6eccf68e dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x78277965 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 0xaa9b38ed dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb6066168 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbe35ddc7 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe6aa76b4 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf2949016 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x04c9fcfb dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x21efb9c9 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x07ab4a29 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x3c1e8e9a em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x02546de9 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x16c8e7cc go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x43e8fef2 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4c1c3c44 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x713ab2f6 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9c9eb1e8 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb17eba29 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb5392fc0 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb80fd4a3 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0db8d685 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1089cdbe gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2c6e17f4 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x453a7078 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x62f2286b gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x82207ff9 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8c8fc61c gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xfb8eaf97 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x131e44fe tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x6e68ebf6 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x7d847f34 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x4f62bd07 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x64a5bccd ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/memstick/core/memstick 0x398e0b44 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x3a1a3181 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4c58e980 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4c7c4bd8 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x57d369c5 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x596b4457 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x66acacca memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x7472f3b1 memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x78ffcd6c memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xcd3d8924 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xef29df23 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xefeea8ef memstick_remove_host -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x037f0fb9 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x06742f28 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0d6086a7 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0eb6eed4 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x108ea2a6 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x150c888a mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1709668c mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x36b93a59 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x43af6ecb mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x50a147a5 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x533549a6 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x533c5d98 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6d12b00a mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x71b39ea6 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x72d3f94c mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x740d5a7d mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7772c9af mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x917510b3 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x98d91998 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa5f29f0d mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa8e64d41 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xadacd9bd mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb72a4fb7 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc51e99ff mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xca396715 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcb515a19 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xce8b672b mpt_Soft_Hard_ResetHandler -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 0xeacbe962 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfaf810f0 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x11528e1e mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x150c61a2 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1cef808f mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1eed0cf8 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x22b297bb mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3904aea1 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3b90bad5 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x578981c0 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x57e3fdfd mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5cfa2273 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x733acd14 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x76409b06 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7917203d mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7e4f2f86 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8ad9a706 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x91660f3e mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x92583d39 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa09d0ce6 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa1e93aac mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb7dc49c8 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb7e99bae mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbc8e1e57 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbd6eeb98 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd2a0be22 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe1db6a59 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xed0ef74d mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf110a103 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/mfd/axp20x 0x25519e65 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/axp20x 0x3ab5e0ab axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/axp20x 0xd8ce0729 axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/dln2 0x62868f57 dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0x8a87d400 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xc3c1e1c7 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x3fb0ddf0 pasic3_read_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xc3265a82 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2805871c mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2a248103 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5d20db00 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6357253d mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6d412dee mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7e7f31d9 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa0b12078 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcddd9ef5 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd4550f5a mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdd3af222 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xee6f6768 mc13xxx_irq_free -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 0x0b080206 wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x524803b0 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x8c262273 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0x946a002b wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xa650bbb2 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xb1c6e464 wm8994_irq_exit -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x66c48820 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xfe24dd2f ad_dpot_probe -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x02480979 c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0x9eb588c5 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x2322cfc1 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x3aca46a2 tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x53711570 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x67ad9964 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x68950a6b tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0x8f6120d6 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x9c1e7196 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xb7863642 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xbad8d8c7 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xe0a49c9d tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xe3012685 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xf3e9da99 tifm_eject -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x2f445314 dw_mci_remove -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x32c72f41 dw_mci_probe -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x50cef948 dw_mci_runtime_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xaa9de4f7 dw_mci_runtime_suspend -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x3c05bb6f mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xb89bfecc mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xbea8f86f lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x78f4075f onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xf3f38580 flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x57d0c320 denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x751d00bc denali_remove -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0b1cb9a0 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0eca4ecd arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x15a70a5d arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1acb702b arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2e20ec27 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4ff41ef0 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x62e81584 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x900fc9ad arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xad6afc64 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc6c7ff0c alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd8189a8a free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x48076220 com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x827b0905 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xc3f5cacf com20020_check -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x03941acf b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x08f35603 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0944f8c7 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0dfa6930 b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x16419d47 b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1817f224 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1aba7d45 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1d230a2c b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1e068651 b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2a596706 b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2aa41d62 b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2b8e384e b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x34a65ac6 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x472c9578 b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x481358fd b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4dc5bad2 b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4f602d04 b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5b966c7b b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x615319ff b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6df030af b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6ecae185 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x75535df5 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x77b6b7be b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7b5d03e1 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7e9e3fb0 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x85679705 b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8aa8be76 b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9778f010 b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9dc4651c b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa545dea3 b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb213d28a b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb55cdbac b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbbdd2a3c b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc0ed3760 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc4afde25 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcc40ac2c b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd8cf5664 b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdec2d332 b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe9e5b0ac b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf881d518 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfeee057c b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x82c60847 b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x96f9c533 b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x9d40b753 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xaecf732b b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xd0660aef b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xd3972540 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x5ca8b9b1 lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x9f344520 lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xe9a82d12 lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0xa5822a3b ksz8_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0xcad15693 ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x044ec475 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x647b45a8 ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xe6995ea2 ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x6f035b37 vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x9af48ee9 vsc73xx_probe -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xf93b7005 vsc73xx_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 0x8aa46bd5 xrs700x_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x9236d608 xrs700x_switch_remove -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xf4b45863 xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xf4fcddc2 xrs700x_switch_register -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x01b0db68 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1426728d ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5882812a __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9284e841 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x96b496bd ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa1e58d7b NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa894dc04 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xdb328cb5 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe676eb50 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf777aa1a ei_open -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xfc74aa37 bnxt_ulp_probe -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x9d06db88 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x84fcc6cd cavium_ptp_put -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x8e9520cd cavium_ptp_get -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x34eeb48a bgx_set_dmac_cam_filter -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x46cdf933 bgx_config_timestamping -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x539ca253 bgx_get_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x60cd1f2f bgx_lmac_get_pfc -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x6ca2152d bgx_lmac_set_pfc -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x716fd7f0 bgx_reset_xcast_mode -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x72b238e4 bgx_get_rx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xbe654297 bgx_get_tx_stats -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc397f585 bgx_lmac_internal_loopback -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xc82be691 bgx_get_map -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xd8ed0bcc bgx_set_lmac_mac -EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xf101d1b2 bgx_get_lmac_link_state -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 0x005fb7ac t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x02f87985 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0a0c41f3 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x10be0740 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x30addb3f t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x44d38e22 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x44ff5182 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5a68a9fe t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5f5bae3c cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6a6c1bec cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7253d274 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9d39c741 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb8365bb0 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc0628dd0 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf6075f78 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf9f93a3c dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x054e3b8e cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x099ca199 cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0c1f0408 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0c6949ae cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x17afe700 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1ca6e53d cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1dffdbce cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1eda8b5b cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2a8c3510 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x347e34ce cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x371e743f cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4b99a65d cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x512ab20b cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x52c82659 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x54a78c7f cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x592322c3 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5bc75167 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5dcc90bc cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5efaba3a cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x62f90bcd cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x65e1130e cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6d4a806e cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x706643ba cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x80ebee2f cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x82c129ae cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x893f6638 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8acf00a4 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x957b0280 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9a929b9d cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa3ce28f6 cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa933ac0b cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa9427964 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xab5247a8 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xab5c3e48 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb6ff6f5d cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbc9c364d cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xca3cc06c cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xca533659 cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcd9f1160 cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcef8dbe4 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd1855d11 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd2bbe9c1 cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe35aea2a cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf5230e58 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfcdc8750 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xff827311 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x03936ad4 cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1b9f9fd8 cxgb_find_route6 -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 0x317150cd cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x4f5f3603 cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x93604a95 cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb8c57b43 cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xebf0c281 cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x0ac573bc vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x348164f7 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3a989275 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5f7c22ec vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd81cca83 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xdf75e024 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 0x60fa116b be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xe5460530 be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0xeacbb75f enetc_ierb_register_pf -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x5c7319b8 hnae_ae_register -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x7abaa49e hnae_reinit_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x800cc101 hnae_get_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xa260cd7b hnae_put_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xd2c9bd25 hnae_ae_unregister -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x73ddc398 hns_dsaf_roce_reset -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x0d148bd0 hnae3_register_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x28c7946e hnae3_unregister_ae_algo_prepare -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x29f1691b hnae3_unregister_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x62a4a6c4 hnae3_set_client_init_flag -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x876e3081 hnae3_register_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x8c43c5d9 hnae3_register_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xa8a62712 hnae3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xabd05d76 hnae3_unregister_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xb54e6e12 iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xf355191c iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x049cb748 otx2_mbox_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x233f2e7f otx2_mbox_destroy -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 0x4cd5ded5 otx2_mbox_get_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x4d90631b __tracepoint_otx2_msg_interrupt -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6365a74f __SCK__tp_func_otx2_msg_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x7c09639e otx2_mbox_regions_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x7d235649 __traceiter_otx2_msg_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f772a3f otx2_mbox_id2name -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x933d5ab3 otx2_mbox_msg_send -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x9a66251c otx2_mbox_check_rsp_msgs -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa136bca5 __traceiter_otx2_msg_process -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 0xbb2f42db otx2_mbox_nonempty -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xcaa2d701 __traceiter_otx2_msg_interrupt -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xccca8acc otx2_mbox_busy_poll_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xce832673 otx2_mbox_alloc_msg_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 0xcfa91590 otx2_mbox_wait_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xcfea7f30 otx2_reply_invalid_msg -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xd23a1a84 otx2_mbox_reset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xef17646d __otx2_mbox_reset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x014b9f85 mbox_handler_nix_bp_enable -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x155e88d8 otx2_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1e0cc868 mbox_handler_nix_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x28e456c9 otx2_sq_append_skb -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2c8dcb7b mbox_handler_msix_offset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x44030527 otx2_alloc_mcam_entries -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5009023d otx2vf_mcam_flow_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5ac7f28a otx2_stop -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x778367e2 otx2_detach_resources -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7e2cfb32 otx2_set_real_num_queues -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x83a07317 otx2_attach_npa_nix -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x872a8695 cn10k_lmtst_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x89c4ccd9 otx2_mcam_flow_del -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9e28a7ab otx2_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb8109232 otx2_get_mac_from_af -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xbed5f412 otx2_mbox_up_handler_cgx_link_event -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd6b5fee5 otx2vf_set_ethtool_ops -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd836e7e0 mbox_handler_nix_txsch_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xde866965 otx2_tc_alloc_ent_bitmap -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe4b47e3f otx2_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xeffd130b otx2_get_maxflows -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf31984f9 mbox_handler_npa_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf8a9ec02 otx2_open -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf8bf228a otx2_set_mac_address -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x74d65140 prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xb1a6973d prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05cba76e mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08c273e4 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13eb8342 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x152755d5 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16f95c92 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ca4c2d1 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x351cda71 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39420320 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x450ffb7a mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x578ef6a3 mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5abeb17f mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f93e650 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72138504 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a88f455 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bcf3390 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81775864 mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x872e50ee mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ff05050 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90a487f9 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93789421 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2def917 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa589cdd6 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaeea15fa mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb02cd2b3 mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0de7972 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb83817e5 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb4c1a0f mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbff6e97 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc80e48b mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbce27552 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4cce499 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8762c1b mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcde24f55 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd40dc225 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6e04be5 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6f04044 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd880de21 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5ce5c45 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7e3a1ac mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb29d99c mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeee8a4a5 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf11c77c2 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9eb9a31 mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb270caf set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x023a5872 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x027a61e1 mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x029339a3 mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02bfaad7 mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05d0f00f mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c22f3fc mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1415e32e mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17c3becf mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17d687e8 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19f91c04 mlx5_cmd_exec -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 0x1e97aad0 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x220dc73c mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22438c66 mlx5_packet_reformat_alloc -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 0x262c00fe mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27786e1c mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27e41383 __traceiter_mlx5_fs_del_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 0x3442a328 mlx5_eswitch_get_vport_metadata_for_set -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 0x352d1160 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b3ec320 mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3baac1a8 mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3eb289ca mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40ccadb6 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x421d2c6c mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43b47c30 mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4585c742 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46a834c1 mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46f3fc15 mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47d0c0f3 mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48e764ef __traceiter_mlx5_fw -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 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fb96ccc mlx5_notifier_unregister -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 0x53eb601c mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54d79518 mlx5_qp_debugfs_cleanup -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 0x57e23160 mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5967d37a mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x597c128d mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59f2ab70 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a06ff67 __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ba36b1c mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5daecfee mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e46f93b mlx5_lag_is_shared_fdb -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 0x6557e858 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65597625 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67e0254c mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d5901ec mlx5_debug_qp_add -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 0x73d5974e mlx5_core_modify_sq -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 0x77329797 mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x782ed73b mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79f2193c mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79f4cb9c mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a08ced6 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a8d87d6 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b359a09 __SCK__tp_func_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c9eb1fc __traceiter_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d3f0c3d mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f0ea07f mlx5_eswitch_get_vport_metadata_for_match -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 0x7ffebcea mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82c0431f mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83d7ac4d mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8567fb48 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86e89a71 mlx5_cmd_create_vport_lag -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 0x88a02c41 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89e39894 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c43aea2 mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8da05a6d mlx5_rl_add_rate -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 0x95c3194d mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99656c5e mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99d00dec mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a9f15bd mlx5_cmd_cleanup_async_ctx -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 0x9ea4b1db mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fdaaf4e mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa06f2582 mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1baaede mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa536d930 mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa70baba9 mlx5_core_query_vendor_id -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 0xa79538c3 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7b3c67a mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa865407b mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa92366ff mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa72dd9c mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac9afd2b mlx5_eq_update_ci -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 0xb1c8a6d0 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1d1dabd mlx5_alloc_bfreg -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 0xb4f2d8dd mlx5_eswitch_register_vport_reps -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 0xb6142815 mlx5_lag_is_roce -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 0xb789ee50 mlx5_rl_remove_rate_raw -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 0xbbb74cd8 mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcc5daf3 mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf5a945a mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0b64cb6 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0e066e7 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1fd0c0c mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc225704e mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3763620 mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca9699ee mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb4cfcad mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbd9f0d2 mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0b7f3f6 mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1345c5b mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd194164f mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd21d73db mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4c4610b mlx5_core_modify_cq -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 0xd85c9448 mlx5_lag_get_roce_netdev -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 0xdbcf327a mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd6ef45a mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde0e0793 mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfc3acd3 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4543874 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe575a46c mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe65c0ffa mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea19889a mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeac3e098 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb83eba9 mlx5_eswitch_unregister_vport_reps -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 0xec140333 mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec7835e9 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeee2b37c mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5396925 mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf773935a mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7e2cf0e mlx5_core_modify_cq_moderation -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 0xfc448448 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc8e744e __SCK__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x408a0314 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 0x06813776 mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0a958ebc mlxsw_core_ptp_transmitted -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x1989425e mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1c6605f6 mlxsw_afa_block_append_qos_switch_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1cb8f858 mlxsw_reg_trans_query -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 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 0x3e460c60 mlxsw_env_get_module_eeprom -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 0x46535334 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484b193d mlxsw_afa_create -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 0x50fd7ac3 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 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 0x71e1d813 mlxsw_core_port_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x74eb7c9e mlxsw_core_res_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77768221 mlxsw_core_module_max_width -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f659d4c mlxsw_afa_block_append_vlan_modify -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x8cae5e40 mlxsw_core_trap_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8eb8cd48 mlxsw_core_trap_unregister -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 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 0xba9e8815 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 0xc130e48b mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc300be06 mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xca257489 mlxsw_afa_block_append_fwd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcaf5cc7b mlxsw_core_trap_state_set -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 0xcc760271 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 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 0xf09e338d mlxsw_core_bus_device_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_core 0xff27945c mlxsw_afa_block_append_mirror -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x2c577d2b mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xcedd381a mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x86cc1426 mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x97ef7234 mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x04a26333 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0635d618 ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0b10da43 ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0c8944b5 ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0ef0c887 ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0f55db77 ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x12a591e4 ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x12ee91b7 ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x17adb2b4 ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1bd104ed ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x205b6569 ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x21ae8753 ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x22a8c253 ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2651c1f1 ocelot_get_ts_info -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 0x2a730b4f ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x36ae81d2 ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x375408f2 ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3ba6d146 ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4398ea4d ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4505345e ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4bc5089b ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4cc3c562 ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4fb22801 ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x537a7941 ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x57042200 ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5727b457 ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5b91c8d0 ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5caf54d0 ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x67172dd8 ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68b68e78 ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6d25bc57 ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x701ca9f6 ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x72e1e196 ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x756b7e98 ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x75f946d4 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x778a3dff ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x79521332 ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x806ccda6 ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x827a30f5 ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x89d33d27 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 0x8d010051 ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x94952403 ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x98bef280 ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x98da108a ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x98ec9628 ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa24a73d5 ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa2d05174 ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaf311135 ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb717c066 ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb8ceafb5 ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbab12472 ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbd680a3f ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbe8be7e7 ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc562096e ocelot_apply_bridge_fwd_mask -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5c0f83b ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcad90a4f ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcae421ae ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd3faa1be ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdeaa3b09 ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe0ecf368 ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe1d7c8f6 ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xef394461 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf11cf4cf ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf57219a5 ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf5a92a33 ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf7186a67 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfa9ef7e4 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x1306a853 qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x244f5ded 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 0x570b7b9d qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x8d0476ce 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/qede/qede 0x93a40207 qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xd9254756 qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4341252b hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x739dc172 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb820b1e4 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc6f440ab hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd267f6f7 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag -EXPORT_SYMBOL drivers/net/mdio 0x424a69a2 mdio45_ethtool_ksettings_get_npage -EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe -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-cavium 0x5a8c6174 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xf621b17d cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x708e6e55 lynx_pcs_create -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xbaac7cba lynx_pcs_destroy -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xac446995 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x0e51ef17 pppox_compat_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x4fd57817 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0x5592b3cf register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0x8d06de39 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x4badd5c1 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x10f5cab4 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x4f078efa team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x4f13a064 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x526c2adb team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x54f1bf3e team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x5bf44960 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x79a47a4d team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0xc6b587f2 team_options_register -EXPORT_SYMBOL drivers/net/wan/hdlc 0x18599373 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x1bba09b9 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x33582ec2 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x49f09cbf hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0x4ae24449 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x756750fd hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x7fb916cf detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x83d2191c register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xc10bb3c5 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0xe0bf1cd8 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x133c3155 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1803d5ef dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x24d4183f ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2768a385 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x28b8c076 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x35c2ab02 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3ce03342 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4e3d0382 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5a77851f ath_hw_keysetmac -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa32acea7 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe0824f17 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe5076464 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe9a84475 ath_hw_cycle_counters_update -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 0x06be3a59 __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x07e8e787 ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0fab6e11 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x12af2ecd ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1d7cc11b ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1fc4e5d1 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x26d041ca ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x284d7e73 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x287ca831 ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2aba9aa7 ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x31db27d3 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x33cfb362 ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3450da66 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x36b60502 ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x413115b7 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x47e97a18 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4dcb4271 ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x522d5b79 ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5aed6397 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5cad439e ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x601d85bf ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x62e49dd0 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x66f88ec1 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6812fd70 ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x69f1ac0e ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6ad3ff02 ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6f3ec65a ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7488d25f ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x77c7318c ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x81ff8d02 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x83dc19bf ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x84722659 ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x87bbd48c ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x88ae7077 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8e1296c9 ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x96928d82 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9c554baa ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9e07bd20 ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa184aa46 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1e4849a __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa486d17e ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xab00c4ec ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xabea1df7 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb0c7cb0e ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb6fb9b2f ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbf1a5ed3 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc6022506 ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc9180f92 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd0b665ce ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdb9c07de ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe631909f ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeb1fd54c ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xebd40eb4 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xef97ffd4 ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf28427ec ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfc0e7ae5 ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xffd32c4c ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x05f59a44 ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x08892277 ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1908bbd9 ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x21f4dc95 ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x22225444 ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2341e542 ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x27c05d2e ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5267c290 ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x59c8c2af ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5a62ab46 ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5c79772c ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5f52f036 ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x68a57076 ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7527aab4 ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7604d759 ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8ab41ba5 ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8ef59e97 ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xaf04a3a6 ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbdb91003 ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcbc8ff4d ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd283987c ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xec05f02c ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0b7f8372 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 0x3690c0de ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x41f12cc2 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x558707f3 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x566c2bf0 ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x64b65db2 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x825f99db ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x899200f3 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 0xb881b1a9 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd4c9a15b ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdbdf22db ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe0319290 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x06d87265 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x078e4092 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x10cb9cde ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1463c48e ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x389c1113 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3ac577c1 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41500ec3 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x541c5072 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6b9b83d3 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x788614ca ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8c4a7cfc ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x94a3984a ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9fd7ba45 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa0149e4e ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa41fa08f ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb258f951 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb52aa184 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb6337311 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb9d48bd6 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc12fa380 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd277bd69 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd677174c ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xddf0061d ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01a46a38 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0477b015 ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05b8c75e ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05d816ad ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a82ab71 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0bac4586 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0defbbaf ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e887340 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f8ef813 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0fd6f38b ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x100eac0c ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x104c93e9 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x159e7772 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16af75d1 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fb2c82b ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x200ed24a ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20160d70 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21e03888 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21e36840 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24220a5d ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x244da149 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x265f10d6 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28f33b47 ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a90296f ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32c00e5d ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33582602 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3595d660 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39c148b4 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39f26d46 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b0a0287 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ec17e0d ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f2e80ef ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f3eb79a ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f615448 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4342869f ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43733977 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x480f7809 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b148151 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d6d49fd ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ff98cb2 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x525c4772 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57ea8ecf ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x587337de ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x594f8e2c ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a64d882 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ada5140 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x654a2b02 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6778e8df ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c372bad ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ccf68a7 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x715ea87d ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7379b959 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x745b24f9 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77364f2b ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x780b43e8 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b6a69d8 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d09a315 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f033b1d ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f5fb25b ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x806ec799 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82b464f6 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x879cada4 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89048973 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92655442 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x948592e8 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94c5069f ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95cd626e ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97fb7637 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f48a821 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0b46f53 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0c7deca ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0fc83c5 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa87ef203 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa94d5414 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa956e8ad ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xabe47c75 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac8317c7 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3febaae ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb498c808 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7d75705 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba017828 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc1de2d0 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc079cffe ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3b93212 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4cc731a ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4cff32b ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc64e2607 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc808c1a9 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc916fbf7 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd8c37b7 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd63fe9b9 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd86d183d ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8a14a80 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xddd111af ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfa85c25 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe191cb7b ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe273a0a7 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe35a3253 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe394a578 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4cb8216 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9f84fcf ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xede51482 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee2a684e ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4c0a15a ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf52afcaa ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf688d081 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa1de593 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x74f6eadb init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x9d8c0c64 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xa3e0089a atmel_open -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x08dab966 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0b1c7f5a 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 0x41e813b9 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4419b88c brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x488d4e42 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x55f77988 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7f27a044 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9e03be5a 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 0xabfb81d8 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 0xd6e06795 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xeda1fbc3 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf08cfbb9 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf1652f9f brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0c8ecc91 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x10ae77fa alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1deea95a libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x20430531 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x231b4db8 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2594cc16 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2825caee libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x299c72b6 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x482d5166 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x52d28042 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x537f0099 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6c58670b libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6d7aca2e libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6dfc8bb3 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x71c3b708 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9a05c611 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9f636db2 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa6f11bd0 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa750f2c5 free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc28eb7fd libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02a35c7e il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x032a06ec il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0aca6f8e il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b4e42b3 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0fdfc225 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x102bcad1 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x109abb1c il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x151b8146 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1784167f il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x184294cd il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a72af1c il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1c0cf1cc il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d2fcfce il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1e29a5be il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ecd6132 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x225daabd il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2282d719 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x238ab48e il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x24a56972 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x24d111c4 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x26bcecd7 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2c0e8866 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x333ce6b8 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33e60f87 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3412313d il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b038666 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b37e6a3 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b6538fa il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3e4ce929 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4412f417 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x44677d9d il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48539ef3 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48b06ff5 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4907bfa6 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4af87063 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4dfddf8f il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4e17745d il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f32061d il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51fda63d il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x534be1a5 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x54517bfb il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x562dd33c il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x565b9dcb il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x581b48a4 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x58495ff3 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c513fa1 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5eb54549 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ed340a0 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x606d47c9 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x637f1836 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d0a824f il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d729eed il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6f55ca74 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x71f6a2c1 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x781e19c1 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a57101c il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b57407f il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d7b2abb il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fb073bb il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x830fb6bd il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x84555500 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x88d52e25 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8e01756d il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x99d7f2a9 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b38a05f il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d65786c il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa472d035 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa618c537 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa7532fea il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa800f577 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa80c50ba il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9d080c0 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb2a51e11 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb2d8bc00 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb482210e il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb539d3fa il_free_geos -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 0xb9420058 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbedceba9 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc75a53df il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcbb338ef il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc3667ef il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc8ea809 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1d830ea il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd5ffc178 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc983f98 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdcdb2cd0 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xde2b1dbf il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe1d39712 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe3a1766f il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe4bcb9d8 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeb71aee2 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0c2c813 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4a8fb03 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf511966a il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf60fa57d il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf891218a il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfae27252 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfee1d67c il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x303c832a __traceiter_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x36a862e9 __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3d23c104 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x466ae44d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 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 0xc6cf1a1a __traceiter_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf3edb6df __traceiter_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x024899c4 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x064abdad hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0749cbf6 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0a02c6e2 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0ade4e7a hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1cc89532 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x28f6a88b hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x49027209 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x492d0be5 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x584ab5b8 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5f8d57b5 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x602ad548 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x78724600 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x931f71f7 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x93c90b9f hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9a1fe15d hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc5450280 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc8d95ef9 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcd1592de hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd493d7bc hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe63d87b5 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe984b059 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf257f159 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf6c32667 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfc73568a hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x006f2c67 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3bd67578 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4900fb6a orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x49b7d700 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7205f6ee orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x77acf938 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7ec834bc orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8f64591c orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x91ec1192 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x98854e6f __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa0f1f71b orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xbe9af006 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd96ec695 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdba1c6b9 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe2049da7 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x0b7d57af mt76_testmode_dump -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x1d698ea1 mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xc1369a41 mt76_testmode_cmd -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xd6b40aed mt76_testmode_set_state -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xdcc51af8 mt76_testmode_alloc_skb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x310b8df3 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x01aaf852 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x025bc352 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0335bf4c rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0413059b rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0938af0a rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x123dd9b7 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x23e95e24 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x37178598 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3897ade3 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x43f492d1 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x47445132 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4ef6d4a2 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x53d65fc2 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5f1ca122 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x65abc691 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6abb99c7 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x71c47f87 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7a000730 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7cf3e562 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8036801b rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8e083840 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8e69df06 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x90c68302 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x940e2e36 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x95f83298 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x97619128 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa47bc3f4 _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa6d8e64b _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa879d97f rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xba5173c7 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbbfafc9c rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbe56ab51 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc2d70154 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc38e5027 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcd3bd647 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd83134f1 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe8a40695 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeabb8117 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xed8f02cd rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf19178b6 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf8e62f26 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x4acdc64e rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x4b3d061f rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xc57c09f3 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xf009ae74 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x0e635a48 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x5cc40671 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x68927132 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf1f6bbfa rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x00cf8484 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0432a240 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0a13b263 rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0be5cfde efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0fdd565a rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x20df4c14 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x221415e6 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x24c088e4 efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3065750d rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x35b9f997 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x412e335a rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x415a41cf rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4904f753 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4de7c8a7 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x525a31e1 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6bed4e1d rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6e923bb8 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6f1b4c89 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x70d74751 rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8d271e3a rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9d9d1a87 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9df53dde rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa755f035 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa78ed381 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb029f42d rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb1eda89b rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbff25744 rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe1925bf0 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf7ea4909 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfee226b2 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xce814fd0 rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x5341385d rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x25613562 rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xcaa35e5c rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0650146b rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x10cdecae rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x11c38a95 rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x11f9000e rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1cd80ba0 rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x23021c08 rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x234e2e08 rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x28dd5103 rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x29e0d969 rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2e3330fe rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5fd13 rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x37c0e900 rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3bf8c833 rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x465e479b rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x46c6800b rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4709118d rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x503ec37e rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x51485d4f rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x516c7cbd rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x59a8b093 rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5b65c3cb rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5b84c522 rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6707bdd9 rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6a722361 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6b61d1de rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6ce4407c rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6f79ebbc rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6fa5a734 rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x75100917 rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x792d8d12 rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7b309859 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7f5d998e rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x81b38d21 rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8324fdc3 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x86bc5928 rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x96537557 rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x97e7058a rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9e9199fb rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa58fffb3 rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa6c848c2 rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa9a58ecd rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xab7eb78e rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xacf98526 rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb6fbbb37 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb86cc4ad rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc032544e rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc0effd84 rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc15bbb08 rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc176a3f2 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xca417bdb rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe5dc19b8 rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xea1bcc89 rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf51411e4 rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf65d45f7 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf6732d01 rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf8ce6f34 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfaa32d2e check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x9dca11af rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xa3b9e290 rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xacf36016 rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xf112bf42 rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1ef7269d rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x308aa10e rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x337e63f7 rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3a8d5fa8 rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3ba9099d rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3ef0d563 rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x400dc71f __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x43994593 rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4f368633 rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x63d4e643 rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x652c5a90 rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6c50688d rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7a6321a8 rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8c12171a rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x959c8174 rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xafd85e7f rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcb11e7ed rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd50bf7f7 rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd64965a2 rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdd347b1d rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x200902e3 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x7bf8d2fc rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x0b382eb4 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x19bed905 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x91af7de4 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xdf695deb wl1271_free_tx_id -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xbbbfe1fb fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xdb833619 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0xd4748c1d microread_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0xe4b47107 microread_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x384e3534 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xa60b1675 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xcd0906ce nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xcaf31708 pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x670552f6 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xe8f2930b pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x0a2c6832 s3fwrn5_phy_power_ctrl -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x1402fdaa s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x297a9501 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x4b4b7930 s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -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 0x35846643 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x41b6c1ab st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x508c05b1 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x53612464 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x60f21856 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8bafac44 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb58d6956 ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd05bb476 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe28549d1 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf4f1100f st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2201d0b4 st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x37575191 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x37b5f54a st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4dcbdaa1 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x53d1dbac st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x593ade51 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5c4e2c5e st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6c6a696b st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7865f10b st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7f20a36e st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x81335544 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8c52b4d1 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa35bf94c st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa82a6cc8 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xaa1b25f8 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb8ec5471 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc2c5197f st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd3becb92 st21nfca_se_deinit -EXPORT_SYMBOL drivers/ntb/ntb 0x102a407e ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x11569a94 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x15cb8aa6 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x1a12ad81 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x2833e732 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x2dcc9c69 ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0x39025d76 ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0x3d231118 ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x66793ecb ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x67441efc ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0x818d9577 ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x82db9e07 ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0x9444b052 ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0x9de86701 ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xbdd1e26d ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0xbf5e5bd7 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xc872d4dc ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xc9068dae ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0xd36246bb ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xe36b6921 ntb_msg_event -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x1bcce98b nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x99ab05b9 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/parport/parport 0x05a3f0d1 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x17fe6ade parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x3bd43df6 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x3dd44e7f parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x3ecdbade parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x3f6a3253 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x444b14da parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x54977f7c parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x602dddc9 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x6a7aaa3c parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x6f3956a2 parport_read -EXPORT_SYMBOL drivers/parport/parport 0x74aa4500 parport_release -EXPORT_SYMBOL drivers/parport/parport 0x7645a74b parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x7dbaba9f parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x7e3934e8 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x86a83a35 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x8c0eb55f parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x9b6d0910 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x9e4d05fa parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0xa5e0a620 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xb63329e4 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0xba7d9c64 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0xbb46a4c6 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0xc6221fd2 parport_write -EXPORT_SYMBOL drivers/parport/parport 0xcd7bd96a parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0xd252c357 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xeba38411 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0xefabc28a parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0xf1c48336 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0xfc1901a7 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0xfe78947f parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x04ca134a pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x25da4802 pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3417e399 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x34303d1d pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5188027a pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5ce79258 pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8c033ebc pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb014d230 pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbbfdfa61 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd60ebca5 pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xf68b6636 pccard_static_ops -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x3e1a7dbd cros_ec_unregister -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x6b8daf5b cros_ec_suspend -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x77d63eea cros_ec_resume -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xd80fe024 cros_ec_register -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread -EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x75e1b5d6 rohm_regulator_set_dvs_levels -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0693a41d rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x163bea7c rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1c021a61 rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x330e799e rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3e5b7fbc rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x585175f3 rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6a0eb516 unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x86d66435 rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa1094433 rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa56f1be0 rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa66e34c0 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa9da6aa5 __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc947d890 rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd525bf84 rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf5cd8869 rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xff944aff rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0xb2443bce rpmsg_ns_register_device -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x537e8935 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xc601b56e scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe9bfa810 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xf3451b9b scsi_esp_register -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x039dad76 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x15bd8714 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x15ecc542 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4b50cb24 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7ec36fb9 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7f7ec589 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9febbc92 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa2bcb73f fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xacb8dd5d fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xeac3db06 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xeecc54d2 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x028c9754 fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a4b7367 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1318a85a fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13eeff69 fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x16fd377d fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c5e6038 fc_get_host_stats -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 0x2abd58fa fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2cafd474 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d3e754b fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x32c71a5a fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x375f3dcf fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3783aba5 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x397db9b2 fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3a5ca253 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42db0339 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42f71e07 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x45e71293 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x488c60b8 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4a36a7a2 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4bc574bf libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x50ec5401 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x569be564 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x61a3bb70 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6a6845f8 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6b57f41f fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x74c4f5df fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x76ae571a fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x76d4e505 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x78f57e20 fc_rport_recv_req -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 0x88e3c4cb fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8eeb186d fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x91b6af6a fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x97b79120 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9844db7f fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9cdad8ee fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f02e921 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f97dfaf fc_rport_create -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 0xa3ecebd1 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa97ddcfd fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xab096730 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb373c10d fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb3d174e6 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbd650cb8 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc7c078f8 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca81018f _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd571c04c fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdaa85fc8 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb7160f8 fc_exch_init -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 0xe70d85ae fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe7b33345 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe7f94c0a fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe8602efe fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2ef259b fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf32bf406 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd52dc46 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x87aff1a2 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd4775263 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xfacc7582 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x73b0a222 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 0x188e53bc qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2014d52e qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3f3ab846 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x439efbe2 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4847e518 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6b13eb99 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x74a9eff4 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x84a8dd77 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x896b14f8 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x96b856f0 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcd464985 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdc80ec3f qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/raid_class 0x346f843c raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0xbad589aa raid_class_attach -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x042ac322 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1be1b222 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x29d5485e fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3749a990 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x492dbf29 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4b1378d0 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4bfc40f6 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4f88ebe4 fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5ded42da fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6b2422ef fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x842cc003 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9dc7f629 fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb662edba fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbfdd986b fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdc73e1f3 fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe79a4c2e fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf3e0f57e fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0db8a6ce sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x11abeba4 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x14eab8e2 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1edfeec3 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3ca4d0cc sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4ef6d57f sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5976c169 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x62f3b111 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7b76ec2c sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x87920b56 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8d94d60e sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x90036795 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9c0a4299 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9de132ee sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa1c010bf sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa6a9f5ef sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaba10987 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaf79cdc0 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb1bfc9cd sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb1da05fe sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc0a1c20b scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc53f385b scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcc2a1c25 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd06b45a0 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe2a8f662 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe77a1df6 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe852349e sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeca2f277 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfc62e2a5 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x28e49ba0 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x55baca9e spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x969f6ba0 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa561c5d6 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe032ccd8 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x211f67a9 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x25374af4 srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5b6a17dd srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5db0a9dc srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xb5512088 srp_timed_out -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x3e437bfd tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x84b7e557 tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x17490706 ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x1dc3f4d3 ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x486f8fa2 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x621a0388 ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x8b49e921 ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x9e431797 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xcb475d3f ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xfa736015 ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x639f5e16 ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x8d225676 ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0ef12cc9 qmi_encode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x1498ddaa qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x1acd002b qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x354904d3 qmi_txn_wait -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x35c9d490 qmi_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6450d480 qmi_add_lookup -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6c66ba2c qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x74b689a1 qmi_send_response -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7538e032 qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd29bfd3d qmi_add_server -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xdfdf0e0f qmi_send_indication -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0783304e sdw_clear_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x12ce0668 sdw_stream_add_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x19f430d8 sdw_bus_exit_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1e0d4beb sdw_write -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x282450e9 sdw_compare_devid -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2cdcb6b2 sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2d31d46f sdw_extract_slave_id -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 0x4e0f2199 sdw_nwrite -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x58c339da sdw_bus_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x63914b8e sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x687e8bd8 sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x689223ef sdw_bus_master_add -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 0x77da5f03 sdw_bwrite_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x95cad0b2 sdw_stream_add_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x99f5efd0 sdw_read -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9c17beb9 sdw_write_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa831cf50 sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xae5d675d sdw_stream_remove_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb6531175 sdw_update_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc715b11c sdw_bread_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc7cdffc8 sdw_update -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc9951eb0 sdw_read_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc9fe53a4 sdw_nread -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdef5b1c6 sdw_bus_master_delete -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe89f3976 sdw_slave_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf7a9a1d1 sdw_bus_prep_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1b1a1374 sdw_cdns_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x39222a23 cdns_reset_page_addr -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x3b6a6a87 cdns_set_sdw_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x3c3ec472 sdw_cdns_check_self_clearing_bits -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x421f1f9e cdns_xfer_msg_defer -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x4dd8f0e8 sdw_cdns_alloc_pdi -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x5132e398 sdw_cdns_exit_reset -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x5c8b82e7 sdw_cdns_pdi_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x5cc0c4a9 sdw_cdns_config_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x61bc9b33 sdw_cdns_is_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x877201a0 sdw_cdns_enable_interrupt -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x914878f9 sdw_cdns_probe -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xaba29f4a sdw_cdns_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb7040420 sdw_cdns_clock_restart -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc5f2cd38 cdns_xfer_msg -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe57d73b8 cdns_bus_conf -EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x419a1b72 sdw_compute_params -EXPORT_SYMBOL drivers/ssb/ssb 0x0b2a90b2 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x113ea2a4 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x4403bcb7 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x45517e31 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x4689eb6a ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x47caf5d1 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x4f2ee638 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x574cec59 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x66f34d46 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x6781e6fb ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x72ef6348 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x8e976b1b ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x90666053 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xa5b0179f ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xa8eb474c ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xade99035 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0xb14aee82 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0xb8a3d3a9 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xd451eda9 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xffe48db9 ssb_device_is_enabled -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0c04a9c9 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1fc8cc2c fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2479c661 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2805a40b fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x282c6b73 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x463b2c62 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x47a92479 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4c4e50e0 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4f56625f fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x51e11ab9 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x55c72064 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x586b676f fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5cff4e1f fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x633fe73f fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x669048ac fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6bd74e40 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7186a01f fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7781d943 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7c17ee14 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7f26c1ab fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x899ef095 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x956df092 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xef5b7c16 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf7410b04 fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf907fd26 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x438dca1a gbaudio_register_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x62cbaf3c gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xf29299a4 gbaudio_module_update -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x73b9740d adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x185d7b6f ade7854_probe -EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0x1418b01f sp8870_attach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x30b18139 videocodec_detach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x346308ad videocodec_unregister -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xc810a91c videocodec_register -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xd5db0961 videocodec_attach -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x00c2069f rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x04fe0337 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x078d565e rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x195c7379 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1ba9551f rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1f339ac0 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1f35ed20 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x23fe2632 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3074695d rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x31c6f2bc rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3ebeb199 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x44747794 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x48970fd5 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x53ba44e6 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x58319c3b rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x593b1517 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5e356ab8 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x63523ec2 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67c39412 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6c30afb7 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6c40a536 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x78347fad rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7a710b19 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7e09b233 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x81006a8c rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8c3eeaca rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8cdbd06d rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9194b2ee rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x92af4586 dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x965c7fb5 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9c987924 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa023a393 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa28dcce2 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaef01b9a rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbcc3af0b rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc4535bb0 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc7582291 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcc51a4ce rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd1f3d480 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd67d8aa6 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd94789ac dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb157ee4 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeb0fc2bf rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xee9e9ad2 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf26187af rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf2989695 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfae91dd5 rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfb3ea5a1 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfc5b1b7e HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0286a41b ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x06206d36 ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0a1ddf51 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x13adb99d dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x18276b90 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1eeaa35a ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x208c3172 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x20c980dd ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x214e0c05 ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x239039c7 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x290acf8b ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2e765bb5 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x302fa185 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x314a21dc dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x38f44ab3 rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3b075638 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x42235b07 ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47a8e5e5 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4b349022 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4eea94f0 ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x50334797 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5054618c ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x59a83c4d ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5a2866f5 ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5a57169f ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fec7749 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8209dcbe ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8376b232 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x842298db ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8442abb2 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8753c01b ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8a3e20f5 dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x958f30f7 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x98695285 ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa2e28d96 ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa452f4c7 ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb3c6fc0e is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb87a17c4 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbe45ecab ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbe554b02 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc2ff7e08 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc3320c3d ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb62d33c HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe014be82 ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe0862959 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe232b7aa ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe55d2398 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe71591f4 dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf2a84458 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf2f86d6e to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf51cf238 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfa52bf0d ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb2dd181 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0252057c iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x109923aa iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1369ec57 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1b36fe00 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c173d54 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1eb811c3 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2dccc8ff iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x39f8d78b iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3c2c6eb3 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x498d0215 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4c5e8e2b iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5133b0f1 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5675e596 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5dade74f iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x61d3efa7 iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x62419f9f iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x71109aad iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x77856a05 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x82c0ed90 iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x844de26b iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8e91824e iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x94bc5fd1 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa0abf9fc iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa15ac4a9 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa2b20e8d iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa9baa6d3 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xadfa6657 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xae6a9f7b iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb9ce40e0 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbc0e00bf iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbd3545a5 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbf799d2c iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc3f59f5f iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc4148ec4 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc6df7aa9 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcaa335c2 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcb821119 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd19afa05 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd79d1a51 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd8a5e27b iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xef425d24 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf01763e9 iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf50be9be iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf756b8d3 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/target_core_mod 0x01edef51 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x026d7224 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0c95698c core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x0d94e708 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x0e597e6a target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x0ea51cfb target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x0f00d4fb core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x11f0cb6d transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x1892cc51 target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x213fa0a7 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x2144d214 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x267069e2 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x2795d81e sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x27d25f7a transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x2f1c5134 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x32aad8cc transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x3380c285 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x349a9bfc sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x361b1762 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x36554564 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x36591ec7 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x377f8a64 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3e96da5c target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x44b26639 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x4807f6c0 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x4aee677d sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x4f987100 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x4ffee0b9 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x51f7cafd sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x526880d2 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x54a7026f target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x5588d8a6 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x560b3577 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x60645549 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x61635df5 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x64045201 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x66c80139 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x694baa25 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x6b2f47af transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x6c108334 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x6e629ace target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x6fa7bf6c spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x77161ed9 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x85002bc5 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x86a0411d target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x87ab88c7 target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x91693067 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x930063a0 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x96ace411 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x9ac52b94 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x9afdd1d4 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x9c0a4fcc core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x9d9c5f3a transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xa19fa4d8 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xa6d251b6 target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xad9a1f9d sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xb50dcda0 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0xb8e050e0 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xb98e563f spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xba516991 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xbb254bc8 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xc1ff84ab __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xcc7a18fc target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xcddb2929 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xd2b042ca target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xd662fe24 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xda4ed692 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xe5e41ab3 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xea7b39e5 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xee8674f7 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xeef8f731 target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xef37077a target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf409bc04 transport_free_session -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xb467fe8a usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x41ace233 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0914a3d8 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x11ec433b usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5562524d usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7a81c07f usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x88dffa1a usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8af08bbb usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8b42e06f usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9206102b usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb49a68ef usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc2362340 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfb3a5b29 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x880b8abe usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xed3efe98 usb_serial_resume -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x089d339f mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x2657c8bc mdev_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x3963640d mtype_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x586d1c8d mdev_register_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7d934ca2 mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x901660ba mtype_get_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xc4fe3fba mdev_unregister_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xd66435eb mdev_register_driver -EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift -EXPORT_SYMBOL drivers/vfio/vfio 0x1aa9fba0 vfio_dma_rw -EXPORT_SYMBOL drivers/vfio/vfio 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 0x7cb5f978 vfio_unpin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL drivers/vfio/vfio 0xca49fb09 vfio_register_notifier -EXPORT_SYMBOL drivers/vfio/vfio 0xe948ace5 vfio_pin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0xf70967f1 vfio_unregister_notifier -EXPORT_SYMBOL drivers/vhost/vhost 0x00242b5a vhost_chr_write_iter -EXPORT_SYMBOL drivers/vhost/vhost 0xe768dcd0 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/backlight/lcd 0x73792aab devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xaaf1f2df lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xcd7b8672 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xd36ece30 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8816837c svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa6c8be53 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xad6274eb svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb38f577e svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe0b28bb0 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe86119ff svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xec7bddba svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0e4b7f94 cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xdb601182 mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x2f8eb859 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x6f475ad9 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x9a1a7367 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x067521a0 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x75e626e3 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x88531e23 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xd6ee28bf matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xb1b28483 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x7c3069f4 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x0553375a matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x2c3a2cf4 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x48427dcc matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xedf0f87a matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x0c2ba103 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x6f563ce3 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x38f51f6a matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x46199ba0 matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x499b6856 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb376f9e7 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xbaab72a6 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x2ab648ea virtio_dma_buf_export -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x74e1fc18 virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x80eabe45 is_virtio_dma_buf -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xb0ded12a virtio_dma_buf_attach -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x9a84d1b7 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xef10e9a3 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x5af13aad w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x94f0d900 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x08fe9fdb w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0x676ff5c1 w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0xa39b9c44 w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0xada77f12 w1_unregister_family -EXPORT_SYMBOL fs/fscache/fscache 0x19a8f4a9 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x1aa5703d __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0x1adfb268 fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x3d183792 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x3e708e4e fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x3f90c0f9 fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x4f7d18a7 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x5568b3be fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x590e0bf6 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x618f52d9 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x636a3e92 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x68a5bb27 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x69473ac3 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x6acefa42 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x6e800a48 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x735fb898 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x78e4fec5 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x79f9cdb4 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0x8790d6d3 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0x8a00aaf4 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x8d8bc38d __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x90bb05b4 __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x97af791c __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x9fd1a56b __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xa30d8f80 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xa6ffef6e __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0xa8d2a80a fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0xaae676c2 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0xab6ebfbc fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0xb767eed1 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0xc40f583f fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0xd24dcefc fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0xd5c29e1f __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xd6d95fd1 __fscache_begin_read_operation -EXPORT_SYMBOL fs/fscache/fscache 0xdeed6313 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xea26eaf0 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0xea648ed7 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xf7e1752f __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0xf88483e2 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0xfb7822a2 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xfdc7ebd0 __fscache_readpages_cancel -EXPORT_SYMBOL fs/netfs/netfs 0x1fe64382 netfs_stats_show -EXPORT_SYMBOL fs/netfs/netfs 0x52873b69 netfs_subreq_terminated -EXPORT_SYMBOL fs/netfs/netfs 0x6ba8bb5d netfs_readahead -EXPORT_SYMBOL fs/netfs/netfs 0x70836a51 netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0xc73da3ae netfs_readpage -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -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/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 0x4d5164e7 lc_seq_dump_details -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 0x92212df4 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create -EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set -EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find -EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put -EXPORT_SYMBOL lib/lz4/lz4_compress 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 net/6lowpan/6lowpan 0x03ada787 lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x0d3d2813 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x10f62e0d lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0x4e125fc9 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0x65fd1135 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x8b54fe71 lowpan_register_netdevice -EXPORT_SYMBOL net/9p/9pnet 0x073a6251 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x0ed05800 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x11e40526 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x12bacbbd p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x12cf6a1c v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x168f01a5 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0x1ae2ab87 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x2d64a30b p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x36581f20 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x3d5ede3a p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x48d9fcb6 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x4a644c47 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x5ccc1690 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x5dfc7c2f p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x637b6f4c p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x668165b4 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x6a27e7db p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x6a34c644 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x6b6b69ed p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x6d66be6e p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x72bdbcc2 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x7c00e821 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x7e1578bb p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x8892a558 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x8b11f736 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x907730e8 p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x9535ce8e p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x97864b52 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0xa34b5000 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xa451c946 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0xa492a26f p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0xac36bd8a p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0xb01ed676 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0xbbf18056 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0xbdd522d0 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0xcad27f33 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0xcf3a5938 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xd3910200 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe8b51bd9 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0xf318650a p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0xfac2e95b p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0xfb310eac p9_client_statfs -EXPORT_SYMBOL net/appletalk/appletalk 0x35cad73b atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x9ce26620 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0xb520e250 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xc3f5ec11 aarp_send_ddp -EXPORT_SYMBOL net/atm/atm 0x18492831 atm_charge -EXPORT_SYMBOL net/atm/atm 0x18e4b535 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x2205adc9 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x2ae5c15f atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x355e32cc vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x46582a9f atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x75e18e12 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x8470134d atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xc367c8e5 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xc386d1fc vcc_release_async -EXPORT_SYMBOL net/atm/atm 0xce77bb54 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0xd499a211 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0xf136a58d atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0x168b63e4 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x1ead8abc ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x506a3fc7 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x5a066020 ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0x62ce8302 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0x8405d914 ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x9afdab3e ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0xbb092682 ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/bluetooth/bluetooth 0x01410cac bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x06981f47 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x06dbe8d9 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x08fbb1dc l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x14a04899 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1a07ddce bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1c0a8151 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x25aa0d7b hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2c5eb2ff l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e7ce114 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x31d759c7 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x36f50227 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3aaa4fb2 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3c95e0a0 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3fb119a6 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x463093cf hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4bfa5cff bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x56456a04 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x56c307d9 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b386a5b bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b3f263a hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0x625fc83e bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6293cee6 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 0x8fdeaca8 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x92defd9b hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9aabe764 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9e3bb5b4 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa030cd15 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa55bb5d7 __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb3efda68 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbbe66164 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0xccb6b70c bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd0f92508 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdb0703f7 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdb57ebc4 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe31eb9ad l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe383f80c bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe4996f97 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe6f792e9 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xecdddfb7 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf18fe0ed hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf7ac8792 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf7ba9bfd hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf95ac8e0 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfbcc99bc hci_set_fw_info -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x26a2c138 ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x4eaabe96 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x764a1b24 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8871d00b ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa485e2cb ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb1c1e9b3 ebt_unregister_template -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 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 0x49a57e5a caif_connect_client -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x5ad3f867 caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x728ab92b caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0x7e7b35cb cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x9b383f4f get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/can/can 0x0d0c71e1 can_rx_unregister -EXPORT_SYMBOL net/can/can 0x16beb708 can_sock_destruct -EXPORT_SYMBOL net/can/can 0x534e9c48 can_send -EXPORT_SYMBOL net/can/can 0x603e8c88 can_proto_register -EXPORT_SYMBOL net/can/can 0x66f3ba4e can_rx_register -EXPORT_SYMBOL net/can/can 0xda0c9fd3 can_proto_unregister -EXPORT_SYMBOL net/ceph/libceph 0x00885594 ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x056cfb08 ceph_parse_param -EXPORT_SYMBOL net/ceph/libceph 0x06087280 ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0x07cdff65 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x08598e6e ceph_osdc_copy_from -EXPORT_SYMBOL net/ceph/libceph 0x09e93f30 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x0b3f6142 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x0b8074f9 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x0cfeeec6 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x0e1209bf ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x0e7c0ab6 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x0f3ea0c0 ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0x12066f9f osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0x123e1c61 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x128f34f6 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x17c17611 ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0x1b27fbcb ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x1cb5709c ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x1ce660a2 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x1cfc30d9 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x1e210329 ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy -EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x2421a841 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x25c0aef0 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x281903fc osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2c3c4341 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x303c21e2 ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0x3145f7d0 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x33165aad ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x3386402b ceph_monc_renew_subs -EXPORT_SYMBOL net/ceph/libceph 0x33d6d510 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x3729b528 ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0x37e3ee87 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x3943a3c8 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x3ba1a067 ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x3c2505fb ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3e5c6cad osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x437d3a7f ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0x4427da27 ceph_parse_mon_ips -EXPORT_SYMBOL net/ceph/libceph 0x44e0b8c7 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x4a48490f ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0x4e1e8e6e osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x5240e179 osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x59667d71 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5b05a24d __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x5d481521 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x6102f023 osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x61cf525b ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x662d62b2 ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0x6858e3c2 osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6f2205ab ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x71ccca83 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x737228e0 ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0x7393e0d5 ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x7484d0eb ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x7b4954d8 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x824dc606 ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0x8307ca15 __ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x85a8c1c3 ceph_cls_lock_info -EXPORT_SYMBOL net/ceph/libceph 0x86edd1a7 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x883f6f7b ceph_auth_handle_bad_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x89382ded ceph_monc_blocklist_add -EXPORT_SYMBOL net/ceph/libceph 0x8be14ee1 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x8f0dc5c8 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x8f3b60ee ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x9192acf9 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x929a2879 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0x93a5bb69 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x966ceae0 osd_req_op_extent_osd_data_pagelist -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 0x9c267c5b ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0x9c3e56d2 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context -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 0xa2affb22 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0xa2e95318 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0xa4d0b053 ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0xa64d4d69 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xadc2ddc2 ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb401b319 ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0xb4211e23 ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb69e90f1 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0xb6eac9da osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb7585803 ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0xb94923d1 ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0xb9509e34 ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy -EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xbff8c773 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xc1ef31ba ceph_auth_handle_svc_reply_done -EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc4e6c471 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0xc78f7368 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0xc9d6493d ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcaa2b8ea ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0xcbcb9e97 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0xcd90c269 ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xce532325 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xd18fe46d ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0xd2c13d09 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd61e314d ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xdaf57fe4 ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf -EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xe195707b ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xe3a0a939 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0xe45c9181 ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xeb61530c ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0xec83141d ceph_osdc_watch -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 0xf53d3c71 ceph_create_client -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x9d401c30 dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xc2c45c98 dccp_syn_ack_timeout -EXPORT_SYMBOL net/hsr/hsr 0x500a2b6f is_hsr_master -EXPORT_SYMBOL net/hsr/hsr 0x610b446f hsr_get_version -EXPORT_SYMBOL net/ieee802154/ieee802154 0x6b043797 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x7f8b7a21 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x81b53989 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x89f7c141 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0xbd26f1fe wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0xcf9ecc03 wpan_phy_unregister -EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x50f619b7 __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xfb86c6ba __gue_build_header -EXPORT_SYMBOL net/ipv4/gre 0xc5ad683d gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x074cde57 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2d203c03 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x65c752a8 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x9af0c272 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x33c74bb5 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7deb32b2 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x8c3ec28a arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x976a2fd4 arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x33eb9b72 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb0d36ce6 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xc33158a8 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xcaaa6cf2 ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/tunnel4 0x2a8f6f96 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0x7b2f51c4 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xd49eb839 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1602aac0 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3cd46e3c ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x59e52747 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6d63712f ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x76d1afc6 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa66c9c01 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcd362f23 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd9121582 ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe9df33b8 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x11d252cb ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x1cb8b621 ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xa4d4a098 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xca2c64e9 ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x8174e2d0 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0x8e211bd2 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x043b1355 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xf624c4f5 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/lapb/lapb 0x0efd7f97 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x2f6de3ce lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x75cde0d9 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x818a7726 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0x92fa7a98 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x9c45f6d8 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0xe6b81137 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xf67ca3e5 lapb_setparms -EXPORT_SYMBOL net/mac80211/mac80211 0x05d3c525 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x0757e51d ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x0a9ce4c1 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x0b6fc385 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0x0f4814f3 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x11059e98 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x12bb1d41 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x151cb863 ieee80211_stop_rx_ba_session -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 0x1ac2b059 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x28a91069 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x2ae0b807 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x2aec85e1 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x30a3d825 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x30b94c62 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x317ed09d ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x33026faf ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x3423aef6 ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x35f1394c ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x388b64da ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x3cb10648 ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0x40ceb794 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x40fa2a97 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x4478bc6d ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x4537f320 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x458645c0 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x46356553 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x4976d77a ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x4a4c523c ieee80211_return_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x4ad28f8c ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x4af3eed9 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x4c91df24 ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0x4cd4b635 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x5037e901 ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0x50a4bf5a ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x575b23d6 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x59607ebe ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x5ac5dbdc ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0x5b07c9e6 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x5f89bcc6 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x630ab861 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x65f3d885 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x6a0e2922 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x6aced92b ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x6c974ce4 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x6db72e8f ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x71e3ecf1 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x7e54f123 ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x8123b895 ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x831922d2 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x86a41ece ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x88e12da6 ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0x89e3a394 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x92c7211d ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x95cf0280 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x97d90b9f ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x994ed605 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x9a0dbf7d ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0x9d3937e8 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xa228e357 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xa38a704d ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xa472ceaa rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xa4baf4e6 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xa7c1615e ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xa817c0dc ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0xab5af196 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xabb83203 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0xad483ffb ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xaf184a1c ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0xb060ddbd ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xb220962c ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0xb547c2de ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xb6135ba1 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xb98239bc ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0xbd523d81 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xc09440bf ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xc13a46cc ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xc18a4459 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xc33c887c ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xc3f7258a ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xc65f9bd9 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0xcda14839 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xd94af643 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xdc3f8dbd ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0xdd414a61 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xe1e87758 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0xe93d8d27 ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xea2441a3 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xea490334 ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xeb7e6226 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xec9d94c1 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xef29740f ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xf1331e9c ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0xf48a1747 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xf93140ee ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0xfa740bd6 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0xfaa5bda3 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xfca42e90 ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0xfe59fe1d ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0xffc8c05c ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac802154/mac802154 0x05d2850c ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x163886ef ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x1d80c648 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x1e9e65a2 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x53364b9b ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x6de25b94 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0xb1efad56 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xc2068761 ieee802154_stop_queue -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x095a4837 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x19ff8bf3 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x24708fe8 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x33e6c607 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7871205b register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x80d3cc2f ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x844ba9fd register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8843ec56 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x90d5b430 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa0e2c152 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa3e0d87a ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc24bd60e ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd0b17d1b ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd52fc008 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xeba55dde ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x00e56d1c 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 0x0cfbb545 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0xb6293904 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xc5e5bfaf nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xf30fddbd __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 0x22c05be3 xt_find_table -EXPORT_SYMBOL net/netfilter/x_tables 0x3a6a45be 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 0x49cc8075 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x59bd1d3b xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x5c5e81c7 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x73c1ab3d xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x7e76182d xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x8b754cbd xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xacaa7591 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xd5910cb7 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 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x0611f98c nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x099bd67f nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x10f77a7a nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x15c06021 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x182a9b1e nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x1f00f28e nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x20fffcdb nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0x2118a1cc nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x368066f0 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x4fc8eebc nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0x55b4f63e nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x56760fe0 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x82484e3c nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x85a82cae nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x8b515959 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0xa231b70e nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xb4f16262 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0xd5cd0381 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xe77f1ef0 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0xee0aca9e nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0xfcbb10d7 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/nci/nci 0x16f0be5e nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0x28a64e3b nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x2b9ffdf3 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x2eae22dc nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x46d890fb nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x50ae740a nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x5b68b593 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x5fb0edbb nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x61c30e5a nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x621684ff nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x69463550 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x6e2bf89a nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x76822127 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x7ba7973f nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x7c184ea8 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x88333c2c nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x8e6e7942 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x99c38c5d nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x99d642a1 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xa5875ceb nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0xad7cd2f0 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0xb2bf36bb nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xcd32122e nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xd36534b2 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xecf7e675 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xef14c1b9 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0xf93a3105 nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0xfb406312 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xfc9d36b4 nci_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x0153404e nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x0f9f6d9c __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x32751ae5 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x3823561a nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x3c317cd0 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x3c6ee4f8 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x40e51dd2 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x4be18fe9 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x4f934a7f nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x79f6602f nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0xa6e305f8 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xa9c45792 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xaafe4726 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0xacb5f072 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0xb25ae60a nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0xb2b6df3a nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0xb5275e18 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0xc04680f6 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xd9a444d4 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0xe074bee6 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0xe72be207 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0xee8056f0 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0xf04571de nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0xf1031934 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0xf1ac2d96 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc_digital 0x2758c9f6 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x29a5eeb5 nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x2b5921fb nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x63f99620 nfc_digital_unregister_device -EXPORT_SYMBOL net/phonet/phonet 0x0545cfa5 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x225abbed pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x3888fbe6 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x5377edc5 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x6336e4bd pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x81ed280c phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x9809b0d5 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0xf1b610ab phonet_header_ops -EXPORT_SYMBOL net/rxrpc/rxrpc 0x02421fcc rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0x047665ff rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x0714f3c7 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1e9e7f07 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x21fcac83 rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4b893fb2 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4e7e6502 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x77559917 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x7f01aec0 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8e775b3e rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9417b5ff rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9c174d4d rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9e969e0a rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa315412c key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb7993791 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0xbbbec042 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc16c41f1 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd79d6a36 rxrpc_get_server_data_key -EXPORT_SYMBOL net/sctp/sctp 0x824a0637 sctp_do_peeloff -EXPORT_SYMBOL net/tipc/tipc 0x8bb1fad9 tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0x979bf360 tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0xbe53ede8 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0xf3a8ae78 tipc_nl_sk_walk -EXPORT_SYMBOL net/tls/tls 0x2e8e4378 tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x007d224a ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0x0097eea2 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x06872f65 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x0a6fb960 cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0x0cb33f54 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x10dec458 wiphy_rfkill_set_hw_state_reason -EXPORT_SYMBOL net/wireless/cfg80211 0x10fea025 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x1269eac9 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x12bb8c80 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x14eb8f65 cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x1b59b4c4 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1d9d34eb cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x1da9b54c regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x1f264b9c ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x21c34cc1 cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x2292128e cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x243902c1 cfg80211_bss_flush -EXPORT_SYMBOL net/wireless/cfg80211 0x2523121d cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0x26d650a2 cfg80211_report_obss_beacon_khz -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 0x2a6961d9 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x2d569ff9 get_wiphy_regdom -EXPORT_SYMBOL net/wireless/cfg80211 0x2eb5402b __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x2fd81aad cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x31f41ce4 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x3508f5ac cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x37ec7f4b cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3da2deae cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x3f71e32e cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x444d9847 cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0x4749280e cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x4926e72e cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x4e4f3943 cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0x51f86160 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x52d05e18 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x5879b99d cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x5887cb44 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x5c55d210 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x5e5d0a9c cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x5f5c7c5b cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x6128c50d cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0x63c8cf45 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6b76d855 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6e18d6bf regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x76b4b46f cfg80211_rx_mgmt_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x78270e3a cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x787d554f cfg80211_connect_done -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 0x7b054b7a cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss -EXPORT_SYMBOL net/wireless/cfg80211 0x7e4262fe wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x83034d8d cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x8371ff1c cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x8391039b cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x8a453fce wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x8c842917 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x8f524846 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x909c9f45 cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x91161abc cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x92779361 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x97a033fe cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0xa3931452 ieee80211_get_channel_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xa79050a6 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xa850edd9 cfg80211_any_usable_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xac5e4a0f __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xaeb823b4 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xaece580b cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xafa97086 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0xb2f7bb9b cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xb45af07f cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xb622cce5 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0xb671a487 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xbaf30f62 cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xc13c5c00 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xc2a33f07 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xc44b1df5 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xc530c232 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xc705c2c1 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0xcabe8280 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xce414dd1 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0xd1082a72 cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0xd227e744 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd85bf1c6 regulatory_set_wiphy_regd_sync -EXPORT_SYMBOL net/wireless/cfg80211 0xd9219eb8 wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0xd9fc1c3e wiphy_read_of_freq_limits -EXPORT_SYMBOL net/wireless/cfg80211 0xdb56a7aa cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xde34acb5 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xe04bae7a cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0xe334e6df cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0xe63a6a0e wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xe7b88b8b ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xe9197054 cfg80211_bss_color_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xe9d34c1f cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0xeb440902 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0xedbacb04 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0xee05c91f cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xee3a9f69 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xeee29ca7 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf13c1484 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf94bd4c2 cfg80211_control_port_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xfc65780d cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0xff6b9636 cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/lib80211 0x0941c795 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x18536b29 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x3bbbb089 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x449ffe14 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xaa58c624 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0xc4cf2f4e lib80211_crypt_info_free -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xbdf8714d snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x48c7734d snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x57447a53 snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x868b2d84 snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe9ec78e0 snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf912f0c8 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x734e4fba snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 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 0x816f44eb snd_virmidi_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xea631d99 snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0a020c2d snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1166f126 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3351585f snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x345469e4 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3508d3b6 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5622dca2 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6a5de0d5 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x73f7119c snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x90755e32 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x09a65c80 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2504217e snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x4069eca6 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x52d46844 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x53541541 snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5af50d6e snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5e5c08f6 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x95a5be35 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa67aae34 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0004f43f amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0280de25 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0527b385 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0ba04517 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0f5698eb amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x262c4147 cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2d4487f4 cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3b14a8d2 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3d690797 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x403e5817 cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x484a4365 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4939f3d8 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5add4573 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x62b044ba cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x72e733a5 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x83c8581a amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8af9f712 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8e4576f3 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x929d8f7f fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x99984deb fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb0774a74 fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb4e5dc9d iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb988cfac cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc4d601b9 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd0d6f3f2 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd13d1abe cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd99f79d6 amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe6f8901b fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfc45bba2 cmp_connection_break -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x545ef41f snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x761fc494 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1f397d69 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2ec62f48 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x459149b9 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x679fe95b snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x88b6a9e6 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb9db0425 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe55d7d98 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf3371cbc snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x00286e3d snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x77bc9a31 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x7e549cfb snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xa62b567d snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x14b4446a snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x32fef804 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2454c33c snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x3473901f snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7e4f1f7d snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xaa4e4f7f snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xbfbda89c snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xcc2e8002 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-i2c 0x03272be5 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x09323c2f snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xc448cfdb snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xc74f92a9 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0xe3f09231 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0xed37356b snd_i2c_readbytes -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x06ee1f0a snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x158fd4fa snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x213c0e03 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4aa2d614 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x50642a5c snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x610af4bb snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x68d13c18 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6bd5cf19 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6e99b915 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x780b1a5d snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7bb27ec1 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb534dd12 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbff3a7d4 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcdb8b6bd snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe4d705b3 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf3e40911 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf5d148a9 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x07ab9313 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3aa506e2 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x58dff6ca snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x641e73a2 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6e3ce453 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7110cca7 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x74f10f9c snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9561ce74 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xefab4a1a snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x200e93d9 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x3066c343 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xc1b6b4bf snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x04609b7b oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0b983b29 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x231cf057 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2985e70a oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x35f1e6dd oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3b8bcc45 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x466b91a4 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x489be848 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x549db635 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5fec3e35 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x70421825 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7d5109d9 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8332a40e oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8ab75b8c oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa8816c19 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa9200eef oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbd93daa8 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbea00eb1 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd18ee542 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdeb3f165 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x2b21b22f snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x4ec12da2 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x5d71717a snd_trident_write_voice_regs -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x6f377ba2 snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x83cd8298 snd_trident_stop_voice -EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable -EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xe14cd8d8 adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0xda54bda3 wsa_macro_set_spkr_mode -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x45d3333e pcm3060_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x4ee26cfe pcm3060_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x778ede77 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xdeae0fcb tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x2fb32bb1 aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x57cd01fd aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xdc254918 aic32x4_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x7881e80b aic3x_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x8dd51549 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 0x6e2ea930 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 0x9f833b7c 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 0xc4a4e8ad 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/sof/snd-sof 0x023c9554 snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x04ba9920 snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x06188661 snd_sof_dsp_mailbox_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x08a4bbb9 snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0912b8b6 snd_sof_ipc_set_get_comp_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0b2b7de5 snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0fbea747 snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x115e694b snd_sof_load_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x16717b10 snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1882afc1 snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x18fc1364 snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x18fcd6d6 snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d22a5ea sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1ecc66ce snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x200ce209 sof_dai_get_mclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x200fa222 sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2b2c4d4e snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x388a8693 sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3903f501 snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3acaa01f snd_sof_ipc_msgs_rx -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3f56f8ad snd_sof_ipc_stream_posn -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x411fe8cf snd_sof_release_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x434ed97e sof_fw_ready -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x44e57eef sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x52b77926 snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x53f33b49 snd_sof_device_probe_completed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5928a31d sof_machine_check -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5d9612d9 snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5e4a5b47 snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x65662a42 snd_sof_complete -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6896fb2e sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6c5896c0 snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6d5a66e0 snd_sof_handle_fw_exception -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6e3dd9a5 sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x71e36604 snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x730f9b94 snd_sof_free_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7674affd sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x77120395 snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x84c1a247 sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x887726c7 sof_pcm_dai_link_fixup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x88928d04 snd_sof_dsp_only_d0i3_compatible_stream_active -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x904aedb5 snd_sof_create_page_table -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9830021d snd_sof_get_status -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9a535a78 snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9dc0c555 sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaeb68af0 snd_sof_fw_parse_ext_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb5b15c26 sof_machine_unregister -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb739d41c snd_sof_trace_notify_for_error -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbe760b48 sof_dai_get_bclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc7e1e266 snd_sof_ipc_valid -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfd88acd snd_sof_init_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd0f1d531 snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd109d6e5 snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd49e7f31 snd_sof_parse_module_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd6cfcfe9 snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf6c31eb0 snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfe54cd3b snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xffaf3b0e snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xffd56c00 sof_io_read64 -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x3d32418d snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5ed13a75 snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x9397ed5e snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xab1e885b snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb995435d snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xbc991887 snd_emux_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x0eda33fa snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x2a48197f snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x6517719f __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x914f3491 snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x9223e14b snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x9adc8c44 __snd_util_memblk_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xc59655e4 snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0xd28dc0da __snd_util_mem_alloc -EXPORT_SYMBOL ubuntu/staging/mali/mali 0x0d8ccbae mali_dev_resume -EXPORT_SYMBOL ubuntu/staging/mali/mali 0x2a7049ed mali_perf_set_num_pp_cores -EXPORT_SYMBOL ubuntu/staging/mali/mali 0x4f76fc0d mali_set_user_setting -EXPORT_SYMBOL ubuntu/staging/mali/mali 0x7c2fb465 mali_dev_pause -EXPORT_SYMBOL ubuntu/staging/mali/mali 0xa72dda42 mali_get_user_setting -EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf -EXPORT_SYMBOL vmlinux 0x0021b027 con_is_bound -EXPORT_SYMBOL vmlinux 0x00286e25 configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0x003aa376 drm_bridge_chain_disable -EXPORT_SYMBOL vmlinux 0x004bc34a inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x007cb079 netpoll_setup -EXPORT_SYMBOL vmlinux 0x008003d4 sock_from_file -EXPORT_SYMBOL vmlinux 0x00959f0d drm_atomic_print_new_state -EXPORT_SYMBOL vmlinux 0x00a9bd31 netdev_name_node_alt_create -EXPORT_SYMBOL vmlinux 0x00ab838f pci_set_mwi -EXPORT_SYMBOL vmlinux 0x00b3ed03 drm_gem_put_pages -EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00be0982 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00e3cce1 scsi_partsize -EXPORT_SYMBOL vmlinux 0x00eb67de xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x00f60608 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0104451d dquot_get_state -EXPORT_SYMBOL vmlinux 0x0107569e input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x0112c468 dma_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x01164757 xp_alloc -EXPORT_SYMBOL vmlinux 0x011bab86 prepare_creds -EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set -EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub -EXPORT_SYMBOL vmlinux 0x0143a4e2 rio_query_mport -EXPORT_SYMBOL vmlinux 0x01467160 drm_panel_prepare -EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on -EXPORT_SYMBOL vmlinux 0x014aab51 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL vmlinux 0x01572479 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL vmlinux 0x015af7f4 system_state -EXPORT_SYMBOL vmlinux 0x015ddfdf pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0x0161e65e drm_mode_set_config_internal -EXPORT_SYMBOL vmlinux 0x016239bc drm_crtc_init_with_planes -EXPORT_SYMBOL vmlinux 0x0165de18 drm_dp_cec_set_edid -EXPORT_SYMBOL vmlinux 0x016ed4b1 da903x_query_status -EXPORT_SYMBOL vmlinux 0x017025cd scm_fp_dup -EXPORT_SYMBOL vmlinux 0x0170f487 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device -EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0x017f7816 drm_self_refresh_helper_cleanup -EXPORT_SYMBOL vmlinux 0x017fceb9 i2c_bit_add_numbered_bus -EXPORT_SYMBOL vmlinux 0x018008cb drm_gem_fb_end_cpu_access -EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete -EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x018d9eda tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x0194f629 lock_page_memcg -EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x019c7758 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x01a7c54b dvb_ca_en50221_init -EXPORT_SYMBOL vmlinux 0x01aa7f50 init_task -EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark -EXPORT_SYMBOL vmlinux 0x01b6d847 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01c10ff4 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL vmlinux 0x01f6e166 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x020e4c2b of_cpu_node_to_id -EXPORT_SYMBOL vmlinux 0x021ff5e3 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x0233be2b tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x023f090f rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x026cf47a drm_crtc_enable_color_mgmt -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x0277105f drm_fb_helper_check_var -EXPORT_SYMBOL vmlinux 0x027f4278 inode_add_bytes -EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL vmlinux 0x0285cff8 address_space_init_once -EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x0296a8fd remove_conflicting_pci_framebuffers -EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x02bae86a vfs_setpos -EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng -EXPORT_SYMBOL vmlinux 0x02d0809a make_kuid -EXPORT_SYMBOL vmlinux 0x03066eca drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL vmlinux 0x030886b9 skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0x032709bf drm_property_add_enum -EXPORT_SYMBOL vmlinux 0x032858dc drm_dp_dpcd_read -EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x034d5334 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x034eaf6f drm_i2c_encoder_save -EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x036a9bea blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0x0379a314 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x037d0aeb drm_plane_get_damage_clips -EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x03828dfe sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x0387ac26 d_set_d_op -EXPORT_SYMBOL vmlinux 0x0390fe55 mii_check_link -EXPORT_SYMBOL vmlinux 0x039304c1 drm_fb_helper_debug_enter -EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x039aa67e ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x039b367a netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0x03a6c1ba snd_pcm_new_stream -EXPORT_SYMBOL vmlinux 0x03aeb5b4 drm_gem_free_mmap_offset -EXPORT_SYMBOL vmlinux 0x03b802cb napi_enable -EXPORT_SYMBOL vmlinux 0x03b9e44b skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x03c53dff llc_sap_find -EXPORT_SYMBOL vmlinux 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL vmlinux 0x03ce54c1 kmem_cache_free -EXPORT_SYMBOL vmlinux 0x03d1acda input_set_capability -EXPORT_SYMBOL vmlinux 0x03d24f8d tcp_peek_len -EXPORT_SYMBOL vmlinux 0x03d9cc51 mmc_run_bkops -EXPORT_SYMBOL vmlinux 0x03dbde81 security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0x03dfacc7 drm_helper_hpd_irq_event -EXPORT_SYMBOL vmlinux 0x03f2b9fd dquot_resume -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x0410a35a dquot_transfer -EXPORT_SYMBOL vmlinux 0x041dac6a secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x045ece7a nand_ecc_prepare_io_req -EXPORT_SYMBOL vmlinux 0x0464bcdf writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x0465c034 snd_jack_add_new_kctl -EXPORT_SYMBOL vmlinux 0x04696fb5 phy_resume -EXPORT_SYMBOL vmlinux 0x046d8c1f of_device_alloc -EXPORT_SYMBOL vmlinux 0x04722f64 drm_mode_duplicate -EXPORT_SYMBOL vmlinux 0x04736fce sock_kmalloc -EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu -EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x04875d82 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x048e2e18 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x0492d28f __drmm_universal_plane_alloc -EXPORT_SYMBOL vmlinux 0x04a061d2 fs_lookup_param -EXPORT_SYMBOL vmlinux 0x04b2b30d netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0x04bb066b amba_driver_unregister -EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine -EXPORT_SYMBOL vmlinux 0x04cf3d87 twl6040_power -EXPORT_SYMBOL vmlinux 0x04d23551 ip_options_compile -EXPORT_SYMBOL vmlinux 0x04d6d0b2 discard_new_inode -EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x04dfbf2e drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL vmlinux 0x04e77bb9 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04f776e0 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x0509867f of_get_nand_ecc_user_config -EXPORT_SYMBOL vmlinux 0x050c8a29 drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL vmlinux 0x0516fd82 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x05187384 drm_writeback_connector_init -EXPORT_SYMBOL vmlinux 0x051ca0c7 drm_plane_create_blend_mode_property -EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x05241557 pci_enable_device -EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x055d8656 pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 -EXPORT_SYMBOL vmlinux 0x055ff00e alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0x05642b35 devm_clk_release_clkdev -EXPORT_SYMBOL vmlinux 0x05673c04 blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0x056fc801 sock_alloc -EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x05abb75e of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0x05b60082 sock_no_listen -EXPORT_SYMBOL vmlinux 0x05c9b471 security_task_getsecid_subj -EXPORT_SYMBOL vmlinux 0x05d31327 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x05d5860c jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0x05eb040a pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x0603221b clkdev_add -EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x06339cc5 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x06392532 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x0649d691 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL vmlinux 0x064c856a __sock_create -EXPORT_SYMBOL vmlinux 0x065246b8 frame_vector_create -EXPORT_SYMBOL vmlinux 0x06595b98 phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x0669711d tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x066c046b vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x066cfd16 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x06724121 unix_destruct_scm -EXPORT_SYMBOL vmlinux 0x0678777f drm_modeset_drop_locks -EXPORT_SYMBOL vmlinux 0x068143ba nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0x06877526 genphy_read_lpa -EXPORT_SYMBOL vmlinux 0x06885cb4 flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0x068c738a genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x0692cfe8 snd_rawmidi_output_params -EXPORT_SYMBOL vmlinux 0x069a6cda ip_route_me_harder -EXPORT_SYMBOL vmlinux 0x06a0a180 pldmfw_op_pci_match_record -EXPORT_SYMBOL vmlinux 0x06a59773 tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0x06a6eb30 __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0x06b0c5ee elevator_alloc -EXPORT_SYMBOL vmlinux 0x06b233aa vb2_verify_memory_type -EXPORT_SYMBOL vmlinux 0x06bd5e56 blk_mq_tagset_busy_iter -EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x06e8d695 drm_atomic_helper_swap_state -EXPORT_SYMBOL vmlinux 0x06f2c71e scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x0705de7c set_bdi_congested -EXPORT_SYMBOL vmlinux 0x0706a5ed file_update_time -EXPORT_SYMBOL vmlinux 0x070b28aa drm_ht_remove_item -EXPORT_SYMBOL vmlinux 0x072b4008 phy_attach -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x0736588d xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase -EXPORT_SYMBOL vmlinux 0x074ece43 pci_scan_bus -EXPORT_SYMBOL vmlinux 0x075570e5 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x075e9dad v4l2_m2m_buf_done_and_job_finish -EXPORT_SYMBOL vmlinux 0x0767d566 mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0x076bde2e tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x077a2b8c scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl -EXPORT_SYMBOL vmlinux 0x0782f0fa ethtool_aggregate_phy_stats -EXPORT_SYMBOL vmlinux 0x0784eecf __d_drop -EXPORT_SYMBOL vmlinux 0x078a749c __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL vmlinux 0x07a41bc1 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07aaa8f8 netdev_warn -EXPORT_SYMBOL vmlinux 0x07bbc006 drm_panel_add -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x07e15ae2 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x07e87b36 drm_property_replace_blob -EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace -EXPORT_SYMBOL vmlinux 0x07fa7e2e __destroy_inode -EXPORT_SYMBOL vmlinux 0x07fb449a drm_vma_offset_manager_destroy -EXPORT_SYMBOL vmlinux 0x07fc8852 single_release -EXPORT_SYMBOL vmlinux 0x07fd7651 page_mapping -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 0x0818ed48 logfc -EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point -EXPORT_SYMBOL vmlinux 0x082737e8 v4l2_ctrl_merge -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x0835a5d5 drm_encoder_cleanup -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x08430ad5 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x0843c030 drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL vmlinux 0x08507b56 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x0866bb74 posix_test_lock -EXPORT_SYMBOL vmlinux 0x08691419 dma_unmap_resource -EXPORT_SYMBOL vmlinux 0x08733236 intlog10 -EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x089be506 ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0x08a79bb2 drm_crtc_vblank_get -EXPORT_SYMBOL vmlinux 0x08aa4c98 is_acpi_data_node -EXPORT_SYMBOL vmlinux 0x08af1d8d mdiobus_register_device -EXPORT_SYMBOL vmlinux 0x08bacb29 drm_client_modeset_check -EXPORT_SYMBOL vmlinux 0x08c1630c drm_fb_helper_fini -EXPORT_SYMBOL vmlinux 0x08d8ffc9 drm_gem_fence_array_add_implicit -EXPORT_SYMBOL vmlinux 0x0905f6a1 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x090a21d0 km_policy_notify -EXPORT_SYMBOL vmlinux 0x091309d5 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x0918adb9 security_sb_remount -EXPORT_SYMBOL vmlinux 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL vmlinux 0x0927ea11 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x09314528 genphy_resume -EXPORT_SYMBOL vmlinux 0x093285aa dm_io -EXPORT_SYMBOL vmlinux 0x0933a504 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x093933cc clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0x093cdb37 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL vmlinux 0x095176f8 flow_rule_match_control -EXPORT_SYMBOL vmlinux 0x096f276f rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x0971d14a netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x098fa343 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x099044fb drm_atomic_get_connector_state -EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09d9dd80 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark -EXPORT_SYMBOL vmlinux 0x09defd98 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x09e4cd5d __page_cache_alloc -EXPORT_SYMBOL vmlinux 0x09e8ea4b remove_watch_from_object -EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0x0a18963e seq_hex_dump -EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key -EXPORT_SYMBOL vmlinux 0x0a33052b kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x0a3675f1 snd_rawmidi_kernel_release -EXPORT_SYMBOL vmlinux 0x0a3b407d nf_hook_slow_list -EXPORT_SYMBOL vmlinux 0x0a3ec54c devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x0a4a8ddc softnet_data -EXPORT_SYMBOL vmlinux 0x0a4b0783 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x0a4e08a4 simple_setattr -EXPORT_SYMBOL vmlinux 0x0a5d7d07 drm_modeset_unlock -EXPORT_SYMBOL vmlinux 0x0a6f8e3f snd_rawmidi_drain_output -EXPORT_SYMBOL vmlinux 0x0a72502d blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a823034 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x0a84506f elv_rb_find -EXPORT_SYMBOL vmlinux 0x0a880889 of_device_get_match_data -EXPORT_SYMBOL vmlinux 0x0a8c892b xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x0a944581 __post_watch_notification -EXPORT_SYMBOL vmlinux 0x0a98923e ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ae3b50e blkdev_compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x0b09607c register_mtd_chip_driver -EXPORT_SYMBOL vmlinux 0x0b0bd4fa dev_addr_flush -EXPORT_SYMBOL vmlinux 0x0b10a5b2 __netlink_ns_capable -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 0x0b2c64a3 raid6_vgfmul -EXPORT_SYMBOL vmlinux 0x0b384aa0 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x0b39618f usbnet_link_change -EXPORT_SYMBOL vmlinux 0x0b398f4f setup_arg_pages -EXPORT_SYMBOL vmlinux 0x0b43fc69 fwnode_get_phy_id -EXPORT_SYMBOL vmlinux 0x0b4a0d44 i2c_register_driver -EXPORT_SYMBOL vmlinux 0x0b50f0ec pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b87e001 lru_cache_add -EXPORT_SYMBOL vmlinux 0x0b9976da drm_atomic_commit -EXPORT_SYMBOL vmlinux 0x0b9b7a4c inet_recvmsg -EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0bbe1c62 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x0bbfa78c set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x0bc467cd pnp_register_driver -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bc98b05 rproc_boot -EXPORT_SYMBOL vmlinux 0x0bdf7a9d brioctl_set -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 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c4e2980 param_get_invbool -EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c6d8e8e nvdimm_check_and_set_ro -EXPORT_SYMBOL vmlinux 0x0c6de55b pci_irq_vector -EXPORT_SYMBOL vmlinux 0x0c6f39c0 vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0x0c7a9d1c gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x0c7fcb17 unix_get_socket -EXPORT_SYMBOL vmlinux 0x0c87a8f7 dev_get_by_index -EXPORT_SYMBOL vmlinux 0x0c8ab227 sock_init_data -EXPORT_SYMBOL vmlinux 0x0ca6bb41 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false -EXPORT_SYMBOL vmlinux 0x0cd3f1c2 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason -EXPORT_SYMBOL vmlinux 0x0cf07c7c bmap -EXPORT_SYMBOL vmlinux 0x0cf6ff86 snd_timer_continue -EXPORT_SYMBOL vmlinux 0x0cf73ff2 xlnx_bridge_set_input -EXPORT_SYMBOL vmlinux 0x0cf900dd drm_atomic_bridge_chain_enable -EXPORT_SYMBOL vmlinux 0x0cfbd725 tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d132e9f v4l2_querymenu -EXPORT_SYMBOL vmlinux 0x0d15de80 inet_getname -EXPORT_SYMBOL vmlinux 0x0d18691e backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x0d1a1535 tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0x0d1ea1b3 irq_domain_set_info -EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d680b3e drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL vmlinux 0x0d8ba13c drm_modeset_acquire_init -EXPORT_SYMBOL vmlinux 0x0d8bc5bf drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL vmlinux 0x0d8c4053 crypto_sha3_init -EXPORT_SYMBOL vmlinux 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL vmlinux 0x0d9ef739 tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0x0dd95e80 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x0de9406f xlnx_bridge_enable -EXPORT_SYMBOL vmlinux 0x0df2010c vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0x0dfece7d user_revoke -EXPORT_SYMBOL vmlinux 0x0e0c4a30 drm_atomic_private_obj_init -EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e27a2dd ZSTD_initCCtx -EXPORT_SYMBOL vmlinux 0x0e2b2cb0 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x0e2c9aea simple_rename -EXPORT_SYMBOL vmlinux 0x0e411dee unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x0e4c6d88 rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0x0e583355 vfs_link -EXPORT_SYMBOL vmlinux 0x0e607317 rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0x0e6b3990 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor -EXPORT_SYMBOL vmlinux 0x0e7d9f6d pci_match_id -EXPORT_SYMBOL vmlinux 0x0e80d354 snd_ctl_unregister_ioctl -EXPORT_SYMBOL vmlinux 0x0e962ebf netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0x0e9ff4d6 nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0x0ea34c61 serio_interrupt -EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill -EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init -EXPORT_SYMBOL vmlinux 0x0eb398ff phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint -EXPORT_SYMBOL vmlinux 0x0ebe6e09 param_set_hexint -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ecc5493 alloc_pages -EXPORT_SYMBOL vmlinux 0x0ecd97d3 pcie_print_link_status -EXPORT_SYMBOL vmlinux 0x0ee4a400 skb_free_datagram -EXPORT_SYMBOL vmlinux 0x0ef2a5b5 tcf_em_register -EXPORT_SYMBOL vmlinux 0x0efb6275 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x0f011cd2 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f179f6b dev_set_threaded -EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu -EXPORT_SYMBOL vmlinux 0x0f257b11 twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x0f40b4ec kill_pgrp -EXPORT_SYMBOL vmlinux 0x0f447f5a drm_panel_init -EXPORT_SYMBOL vmlinux 0x0f4fc5a6 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL vmlinux 0x0f510dd4 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x0f644ab3 seq_path -EXPORT_SYMBOL vmlinux 0x0f67f2cf skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x0f6c50d6 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x0f7acb66 drm_mm_print -EXPORT_SYMBOL vmlinux 0x0f7acf9f kill_litter_super -EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f947c3e pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x0fa63457 path_put -EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fc15feb __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x0fc24af8 drm_connector_attach_content_type_property -EXPORT_SYMBOL vmlinux 0x0fc6785a drm_connector_update_edid_property -EXPORT_SYMBOL vmlinux 0x0fd00e9a sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0fdd5ec6 vm_insert_page -EXPORT_SYMBOL vmlinux 0x0ffd69e0 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm -EXPORT_SYMBOL vmlinux 0x10137d7c inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x10187f55 flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed -EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source -EXPORT_SYMBOL vmlinux 0x1032e458 xilinx_xdma_get_fid_err_flag -EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x1037a990 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x10432f95 bio_reset -EXPORT_SYMBOL vmlinux 0x1057a279 bsearch -EXPORT_SYMBOL vmlinux 0x1059f7c3 nf_setsockopt -EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x106c65d0 mipi_dsi_picture_parameter_set -EXPORT_SYMBOL vmlinux 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10842911 skb_checksum -EXPORT_SYMBOL vmlinux 0x109658a0 drm_gem_shmem_unpin -EXPORT_SYMBOL vmlinux 0x1097a7ef drm_fb_memcpy -EXPORT_SYMBOL vmlinux 0x10adb7bb udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x10b4f017 register_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x10c3f57e __gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x10ccfee4 drm_print_regset32 -EXPORT_SYMBOL vmlinux 0x10d112b1 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10ded742 fqdir_exit -EXPORT_SYMBOL vmlinux 0x10e0a141 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x10e17c68 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x10e61395 drm_connector_unregister -EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x10f16cfe udplite_prot -EXPORT_SYMBOL vmlinux 0x10f4ee44 cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x10f68443 dump_skip -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x110f3ff0 __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL vmlinux 0x111b7fb7 drm_gem_objects_lookup -EXPORT_SYMBOL vmlinux 0x111da032 drm_property_create_blob -EXPORT_SYMBOL vmlinux 0x112506e7 phy_register_fixup -EXPORT_SYMBOL vmlinux 0x11340e88 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x113ba787 blk_get_request -EXPORT_SYMBOL vmlinux 0x11433b35 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0x1145a279 register_cdrom -EXPORT_SYMBOL vmlinux 0x11479313 snd_timer_pause -EXPORT_SYMBOL vmlinux 0x114c8301 rt6_lookup -EXPORT_SYMBOL vmlinux 0x115dac42 drm_simple_encoder_init -EXPORT_SYMBOL vmlinux 0x115f914c devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x1173a466 drm_compat_ioctl -EXPORT_SYMBOL vmlinux 0x11ad808d sys_copyarea -EXPORT_SYMBOL vmlinux 0x11baa240 iommu_dma_get_resv_regions -EXPORT_SYMBOL vmlinux 0x11c43194 ip_frag_init -EXPORT_SYMBOL vmlinux 0x11d189b1 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x11d42b72 neigh_for_each -EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg -EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic -EXPORT_SYMBOL vmlinux 0x11eba48e snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp -EXPORT_SYMBOL vmlinux 0x11fa2a50 cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x12259fe8 seq_read -EXPORT_SYMBOL vmlinux 0x1229d66d flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0x1233b861 napi_get_frags -EXPORT_SYMBOL vmlinux 0x123959a1 v4l2_type_names -EXPORT_SYMBOL vmlinux 0x123d1bb7 drm_mode_get_tile_group -EXPORT_SYMBOL vmlinux 0x1247f4e4 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x1254cb6b genphy_c37_read_status -EXPORT_SYMBOL vmlinux 0x12690fb2 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL vmlinux 0x1274dbe5 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x12760bf0 drm_property_destroy -EXPORT_SYMBOL vmlinux 0x1277cf10 pci_get_subsys -EXPORT_SYMBOL vmlinux 0x1278221d ZSTD_compressBegin_usingCDict -EXPORT_SYMBOL vmlinux 0x127a0e77 video_device_release_empty -EXPORT_SYMBOL vmlinux 0x127a8c6b drm_flip_work_queue -EXPORT_SYMBOL vmlinux 0x1282908e drm_edid_to_speaker_allocation -EXPORT_SYMBOL vmlinux 0x129b539e phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x129e89d5 proc_set_size -EXPORT_SYMBOL vmlinux 0x12a167f5 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0x12a2f386 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x12a4e128 __arch_copy_from_user -EXPORT_SYMBOL vmlinux 0x12b033b1 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x12c6731a pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x12cab54d serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12cc7045 blk_mq_queue_stopped -EXPORT_SYMBOL vmlinux 0x12de7b62 flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x13014660 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x13029d17 md_check_recovery -EXPORT_SYMBOL vmlinux 0x13057ce0 input_inject_event -EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data -EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x13164a71 d_add_ci -EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark -EXPORT_SYMBOL vmlinux 0x13240327 d_obtain_root -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x13269322 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x132b9136 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x132f8a51 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0x1331e3c9 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x13531d6f drm_dp_cec_unset_edid -EXPORT_SYMBOL vmlinux 0x1366c8e1 nd_pfn_probe -EXPORT_SYMBOL vmlinux 0x1372a033 snd_pcm_period_elapsed -EXPORT_SYMBOL vmlinux 0x13868b83 of_find_device_by_node -EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13cead77 __SCK__tp_func_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x13cf6504 phy_error -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13d12c23 drm_hdmi_avi_infoframe_bars -EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x13de8a66 drm_gem_shmem_vunmap -EXPORT_SYMBOL vmlinux 0x13efb600 pci_dev_driver -EXPORT_SYMBOL vmlinux 0x13fc2b4f drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL vmlinux 0x140fd31a drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x141d6e86 tcf_qevent_init -EXPORT_SYMBOL vmlinux 0x142f9907 qtree_write_dquot -EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node -EXPORT_SYMBOL vmlinux 0x143637c0 mii_link_ok -EXPORT_SYMBOL vmlinux 0x1441b7df try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x14458375 security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc -EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x147853b6 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x149d92bb reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0x149fb040 elv_rb_del -EXPORT_SYMBOL vmlinux 0x14ada316 drm_fb_helper_fill_info -EXPORT_SYMBOL vmlinux 0x14b575bb pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x14b5c3b0 vme_dma_request -EXPORT_SYMBOL vmlinux 0x14b89635 arm64_const_caps_ready -EXPORT_SYMBOL vmlinux 0x14c5e92d phy_init_eee -EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14cb1472 ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0x14ced76e nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x14d1bb1b jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x14d4cc13 drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL vmlinux 0x14da00a1 devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x14e351c4 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL vmlinux 0x14e9a5e3 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x14f4950b ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x14fa449c sound_class -EXPORT_SYMBOL vmlinux 0x1514455b ppp_unit_number -EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0x1520fef8 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x1522dc15 _dev_printk -EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x152c8543 mtd_do_chip_probe -EXPORT_SYMBOL vmlinux 0x152dd516 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x15539a13 tty_check_change -EXPORT_SYMBOL vmlinux 0x156639fe crypto_sm3_final -EXPORT_SYMBOL vmlinux 0x15726c61 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x15780dbf sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x157e2d4c param_ops_invbool -EXPORT_SYMBOL vmlinux 0x159c0ca3 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x159fee65 skb_clone -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 0x15d7d305 inet_protos -EXPORT_SYMBOL vmlinux 0x15e9595b dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init -EXPORT_SYMBOL vmlinux 0x1605d0ed drm_dp_lttpr_max_lane_count -EXPORT_SYMBOL vmlinux 0x1610f529 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x16149b18 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x161d74de sk_dst_check -EXPORT_SYMBOL vmlinux 0x1621870c cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize -EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x163eed10 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL vmlinux 0x16431b7c drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL vmlinux 0x16472ba8 devm_drm_panel_bridge_add -EXPORT_SYMBOL vmlinux 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x16870a59 udp_poll -EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x16a5ed1a phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0x16ab4aea pnp_stop_dev -EXPORT_SYMBOL vmlinux 0x16c28ae9 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x16c93cf0 drm_i2c_encoder_dpms -EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table -EXPORT_SYMBOL vmlinux 0x16d87167 drm_vblank_work_schedule -EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e410ff vli_from_be64 -EXPORT_SYMBOL vmlinux 0x16ed1b18 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x16f00008 rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0x16f3fab0 drm_panel_bridge_remove -EXPORT_SYMBOL vmlinux 0x16feda8e dvb_net_release -EXPORT_SYMBOL vmlinux 0x16ff8f46 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay -EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x1712d4c8 drm_vblank_init -EXPORT_SYMBOL vmlinux 0x172adc34 mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x1730d68f fs_param_is_fd -EXPORT_SYMBOL vmlinux 0x173593dd cqhci_irq -EXPORT_SYMBOL vmlinux 0x1736ac16 write_one_page -EXPORT_SYMBOL vmlinux 0x1747a5be tcp_connect -EXPORT_SYMBOL vmlinux 0x174b5623 fiemap_prep -EXPORT_SYMBOL vmlinux 0x17508e5e sock_edemux -EXPORT_SYMBOL vmlinux 0x17510434 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x175cf6d8 __skb_pad -EXPORT_SYMBOL vmlinux 0x177c3e16 nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware -EXPORT_SYMBOL vmlinux 0x1793d540 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x17a0ba9e drm_gem_cma_prime_import_sg_table_vmap -EXPORT_SYMBOL vmlinux 0x17a145d9 mtd_concat_create -EXPORT_SYMBOL vmlinux 0x17a44d6c cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x17bbd83e iio_device_set_clock -EXPORT_SYMBOL vmlinux 0x17cd026d csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x17d23ede of_graph_is_present -EXPORT_SYMBOL vmlinux 0x17d6d28b snd_info_register -EXPORT_SYMBOL vmlinux 0x17d8d108 drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0x17e2b9db clear_inode -EXPORT_SYMBOL vmlinux 0x17f54263 raid6_gfexp -EXPORT_SYMBOL vmlinux 0x1804b48d sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x18223332 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x183b0de1 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0x1855ea8b xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free -EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write -EXPORT_SYMBOL vmlinux 0x188a1647 ecc_is_pubkey_valid_full -EXPORT_SYMBOL vmlinux 0x188d48e0 regset_get -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x188f9252 security_path_unlink -EXPORT_SYMBOL vmlinux 0x1896c2f7 ip_output -EXPORT_SYMBOL vmlinux 0x189c11f0 drm_clflush_pages -EXPORT_SYMBOL vmlinux 0x18acd31f dvb_dmx_swfilter_packets -EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io -EXPORT_SYMBOL vmlinux 0x18bbe410 submit_bio -EXPORT_SYMBOL vmlinux 0x18d1d8ac jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18f34462 flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x18f6a9da netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x190a48a9 efi -EXPORT_SYMBOL vmlinux 0x191010bb drm_display_info_set_bus_formats -EXPORT_SYMBOL vmlinux 0x191b6d85 put_devmap_managed_page -EXPORT_SYMBOL vmlinux 0x194dd06c devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create -EXPORT_SYMBOL vmlinux 0x195c8596 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x195d354c drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL vmlinux 0x195ea4eb inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x197602c7 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x1978a4be pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0x1984cbc7 drmm_kfree -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 0x19995903 xp_dma_unmap -EXPORT_SYMBOL vmlinux 0x199e9a9c reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a34d66 of_device_unregister -EXPORT_SYMBOL vmlinux 0x19a9633a max8925_reg_write -EXPORT_SYMBOL vmlinux 0x19b008a6 seq_read_iter -EXPORT_SYMBOL vmlinux 0x19b67bbc simple_write_begin -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19d05434 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL vmlinux 0x19f93cd8 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x1a056b95 ihold -EXPORT_SYMBOL vmlinux 0x1a080f3c tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x1a107de2 ZSTD_compressCCtx -EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x1a2da440 migrate_page_copy -EXPORT_SYMBOL vmlinux 0x1a334eea __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a4b947a blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x1a5bf3ca drm_dsc_dp_rc_buffer_size -EXPORT_SYMBOL vmlinux 0x1a5faa3a vli_mod_inv -EXPORT_SYMBOL vmlinux 0x1a77ce09 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x1a7edaf6 d_rehash -EXPORT_SYMBOL vmlinux 0x1a878832 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1abc14c4 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ac9f745 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x1acf68c4 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x1ad18100 acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0x1ada33b1 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x1ae8f5c4 shmem_aops -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b05e2fa tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported -EXPORT_SYMBOL vmlinux 0x1b0b498d seq_putc -EXPORT_SYMBOL vmlinux 0x1b0d44b7 pci_clear_master -EXPORT_SYMBOL vmlinux 0x1b11b926 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x1b331094 drm_dev_get -EXPORT_SYMBOL vmlinux 0x1b3acbed iio_kfifo_free -EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all -EXPORT_SYMBOL vmlinux 0x1b62f623 rt_dst_clone -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b685154 copy_page_from_iter_atomic -EXPORT_SYMBOL vmlinux 0x1b700d37 put_vaddr_frames -EXPORT_SYMBOL vmlinux 0x1b70dc02 rproc_get_by_child -EXPORT_SYMBOL vmlinux 0x1b7744dc netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b7ae2df input_set_poll_interval -EXPORT_SYMBOL vmlinux 0x1b7ff297 drm_client_dev_hotplug -EXPORT_SYMBOL vmlinux 0x1b8c050c drm_helper_encoder_in_use -EXPORT_SYMBOL vmlinux 0x1b8fddd2 xfrm_input -EXPORT_SYMBOL vmlinux 0x1b923548 xdr_truncate_encode -EXPORT_SYMBOL vmlinux 0x1ba5039a ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc -EXPORT_SYMBOL vmlinux 0x1bb55e62 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x1bb86b9a xen_start_info -EXPORT_SYMBOL vmlinux 0x1bbee2b3 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent -EXPORT_SYMBOL vmlinux 0x1bec3d0f drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL vmlinux 0x1bfc3166 scsi_host_put -EXPORT_SYMBOL vmlinux 0x1c0145d2 seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0x1c01edee i2c_bit_add_bus -EXPORT_SYMBOL vmlinux 0x1c171ced get_cached_acl -EXPORT_SYMBOL vmlinux 0x1c258de2 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x1c26c6f5 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL vmlinux 0x1c3d6b9d skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0x1c4538cc is_nd_dax -EXPORT_SYMBOL vmlinux 0x1c4fe136 pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0x1c57d561 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler -EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c62b8df path_has_submounts -EXPORT_SYMBOL vmlinux 0x1c6a0735 generic_read_dir -EXPORT_SYMBOL vmlinux 0x1c9ecc65 phy_loopback -EXPORT_SYMBOL vmlinux 0x1cab6fbc i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x1cb5f3b1 update_devfreq -EXPORT_SYMBOL vmlinux 0x1cb85287 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x1cb91745 drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x1cc3e6a5 drm_dp_mst_get_port_malloc -EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node -EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl -EXPORT_SYMBOL vmlinux 0x1cf175c1 put_disk -EXPORT_SYMBOL vmlinux 0x1cf84a2a devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x1cf8e972 vmap -EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x1d07fe89 scsi_device_get -EXPORT_SYMBOL vmlinux 0x1d122fe0 drm_atomic_helper_dirtyfb -EXPORT_SYMBOL vmlinux 0x1d1238b6 t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x1d15d8c9 get_ipc_ns_exported -EXPORT_SYMBOL vmlinux 0x1d16646c dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0x1d1b16ff drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL vmlinux 0x1d1b34b5 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x1d24109e fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit -EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each -EXPORT_SYMBOL vmlinux 0x1d4203e0 tty_hangup -EXPORT_SYMBOL vmlinux 0x1d4288ab __skb_recv_udp -EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x1d5f9555 frame_vector_destroy -EXPORT_SYMBOL vmlinux 0x1d69ac1b bdi_register -EXPORT_SYMBOL vmlinux 0x1d6c40d2 key_alloc -EXPORT_SYMBOL vmlinux 0x1d797dc7 of_drm_find_bridge -EXPORT_SYMBOL vmlinux 0x1d89760b skb_ext_add -EXPORT_SYMBOL vmlinux 0x1d8da25b pci_read_vpd -EXPORT_SYMBOL vmlinux 0x1d9e5690 phy_get_c45_ids -EXPORT_SYMBOL vmlinux 0x1da85552 qtree_read_dquot -EXPORT_SYMBOL vmlinux 0x1dc38941 make_kgid -EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key -EXPORT_SYMBOL vmlinux 0x1dcd4f4d phy_read_mmd -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1ddb493b param_array_ops -EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x1df63e88 ZSTD_compressBegin -EXPORT_SYMBOL vmlinux 0x1dfae0a1 simple_link -EXPORT_SYMBOL vmlinux 0x1e0107fb xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x1e095d81 eth_get_headlen -EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data -EXPORT_SYMBOL vmlinux 0x1e13ffb4 dma_supported -EXPORT_SYMBOL vmlinux 0x1e157de3 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x1e186e1f touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1e335fd2 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x1e49c98f v4l2_ctrl_cluster -EXPORT_SYMBOL vmlinux 0x1e53ebd2 finish_swait -EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf -EXPORT_SYMBOL vmlinux 0x1e6caaf2 xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e8bb9d7 iio_get_time_res -EXPORT_SYMBOL vmlinux 0x1e946aaf phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x1e957949 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x1e95ed41 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x1e96f43d __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x1e9851ab dvb_device_get -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ea91746 proc_create_single_data -EXPORT_SYMBOL vmlinux 0x1eb21938 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x1eb231c5 fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0x1eb94f7c block_commit_write -EXPORT_SYMBOL vmlinux 0x1ec63fab ll_rw_block -EXPORT_SYMBOL vmlinux 0x1ecec9dc sk_capable -EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table -EXPORT_SYMBOL vmlinux 0x1ed81d4c __alloc_skb -EXPORT_SYMBOL vmlinux 0x1edb0753 tty_port_open -EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1ee3de58 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x1f03912b ZSTD_flushStream -EXPORT_SYMBOL vmlinux 0x1f0a4716 neigh_destroy -EXPORT_SYMBOL vmlinux 0x1f14016f drm_dp_lttpr_link_train_channel_eq_delay -EXPORT_SYMBOL vmlinux 0x1f160e43 md_unregister_thread -EXPORT_SYMBOL vmlinux 0x1f1fc34d jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x1f20241a writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x1f293978 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x1f2b4d3c genphy_update_link -EXPORT_SYMBOL vmlinux 0x1f333447 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x1f33815f udp_skb_destructor -EXPORT_SYMBOL vmlinux 0x1f33d370 drm_property_create_range -EXPORT_SYMBOL vmlinux 0x1f519a21 nand_read_page_raw -EXPORT_SYMBOL vmlinux 0x1f52dbd9 pci_disable_device -EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0x1f709168 devm_ioport_map -EXPORT_SYMBOL vmlinux 0x1f73de91 skb_unlink -EXPORT_SYMBOL vmlinux 0x1f74d040 pneigh_lookup -EXPORT_SYMBOL vmlinux 0x1f8993bd sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x1f8a7e88 drm_format_info_block_width -EXPORT_SYMBOL vmlinux 0x1f969e88 fb_blank -EXPORT_SYMBOL vmlinux 0x1fa3cbc3 drm_atomic_state_init -EXPORT_SYMBOL vmlinux 0x1fa6df05 mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0x1fb60374 dma_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x1fb7b04c __put_user_ns -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fc39903 km_report -EXPORT_SYMBOL vmlinux 0x1fcf5ffa inet_shutdown -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd283cd drm_gem_vm_close -EXPORT_SYMBOL vmlinux 0x1fd89d8f udp_ioctl -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x20010acc i2c_verify_client -EXPORT_SYMBOL vmlinux 0x2009ab04 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x201eed0e tcp_seq_next -EXPORT_SYMBOL vmlinux 0x20263448 inet_csk_accept -EXPORT_SYMBOL vmlinux 0x202d2be4 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0x2032ca85 snd_rawmidi_transmit -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 0x206c610b snd_pcm_release_substream -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20b92d95 fs_param_is_string -EXPORT_SYMBOL vmlinux 0x20bc9914 fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0x20c54759 tcp_read_sock -EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x20cd006e dquot_alloc -EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20ddb8d5 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0x20e037e2 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x20e52ca2 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize -EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context -EXPORT_SYMBOL vmlinux 0x211594b9 generic_perform_write -EXPORT_SYMBOL vmlinux 0x21162a08 gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0x2121bb23 sys_fillrect -EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc -EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x214478ee pin_user_pages -EXPORT_SYMBOL vmlinux 0x214f8263 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x215ff398 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x2167abf6 page_pool_update_nid -EXPORT_SYMBOL vmlinux 0x2177a9f2 mrmac_gt_ctrl -EXPORT_SYMBOL vmlinux 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x2199c422 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x219c7b43 open_with_fake_path -EXPORT_SYMBOL vmlinux 0x21b78216 nand_ecc_sw_hamming_init_ctx -EXPORT_SYMBOL vmlinux 0x21b9b110 of_graph_get_remote_node -EXPORT_SYMBOL vmlinux 0x21ba1fa2 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance -EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21c89e6d cros_ec_check_result -EXPORT_SYMBOL vmlinux 0x21cda7d1 dst_release -EXPORT_SYMBOL vmlinux 0x21d26c4a pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x21d42ce9 nla_append -EXPORT_SYMBOL vmlinux 0x21d541eb drm_flip_work_queue_task -EXPORT_SYMBOL vmlinux 0x21ddacff seq_file_path -EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21e66521 __getblk_gfp -EXPORT_SYMBOL vmlinux 0x21ead6e9 sys_imageblit -EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x21fcb603 dst_init -EXPORT_SYMBOL vmlinux 0x21fd77fe ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0x21feff8d block_truncate_page -EXPORT_SYMBOL vmlinux 0x220543e7 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL vmlinux 0x2207b321 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x22222918 drm_of_crtc_port_mask -EXPORT_SYMBOL vmlinux 0x2226c2f9 drm_panel_disable -EXPORT_SYMBOL vmlinux 0x222b2f4d of_phy_connect -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list -EXPORT_SYMBOL vmlinux 0x223b9f7e drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL vmlinux 0x223fb5e2 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x22504253 drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL vmlinux 0x2254ffe2 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x225533f7 devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL vmlinux 0x2275ba47 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x227c6cdd snd_pcm_set_ops -EXPORT_SYMBOL vmlinux 0x2288fdd4 put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0x229484cd netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0x229592e4 timestamp_truncate -EXPORT_SYMBOL vmlinux 0x22a17f42 drm_connector_init_with_ddc -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22bc8652 drop_super -EXPORT_SYMBOL vmlinux 0x22c7e8a1 inet_sendmsg -EXPORT_SYMBOL vmlinux 0x22c85110 tty_unlock -EXPORT_SYMBOL vmlinux 0x22d2720a fs_bio_set -EXPORT_SYMBOL vmlinux 0x22de7094 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x22e94fe7 snd_rawmidi_kernel_read -EXPORT_SYMBOL vmlinux 0x231bbaed get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0x2329e0b4 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x23316194 drm_crtc_cleanup -EXPORT_SYMBOL vmlinux 0x233b5faf ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL vmlinux 0x234f79eb neigh_parms_release -EXPORT_SYMBOL vmlinux 0x2354135a of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0x2357582e freeze_super -EXPORT_SYMBOL vmlinux 0x2358ce51 mrmac_pll_reg -EXPORT_SYMBOL vmlinux 0x235b9892 v4l2_s_ext_ctrls -EXPORT_SYMBOL vmlinux 0x235e1dfa config_item_put -EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x236f60d3 get_srcport -EXPORT_SYMBOL vmlinux 0x2379293a seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x2383dbfc page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0x2384917d v4l2_ctrl_request_setup -EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x2390c609 tcf_block_get -EXPORT_SYMBOL vmlinux 0x2391f725 irq_stat -EXPORT_SYMBOL vmlinux 0x23961837 drm_dp_downstream_max_bpc -EXPORT_SYMBOL vmlinux 0x2398ad2d drm_dp_mst_hpd_irq -EXPORT_SYMBOL vmlinux 0x239e8b45 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x23abade4 drm_fb_blit_rect_dstclip -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c9c585 mii_ethtool_sset -EXPORT_SYMBOL vmlinux 0x23ca6476 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x23d834f8 snd_timer_global_free -EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x23f654d8 drm_edid_to_sad -EXPORT_SYMBOL vmlinux 0x23f9f626 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x23fab734 drm_file_get_master -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x240a410f security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x240adaab nobh_write_end -EXPORT_SYMBOL vmlinux 0x241062c3 phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0x241138dd simple_release_fs -EXPORT_SYMBOL vmlinux 0x241a06b8 mmc_wait_for_req_done -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2445154b rproc_resource_cleanup -EXPORT_SYMBOL vmlinux 0x2448c83d nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x244b6c83 ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x2456d97f security_path_mknod -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245b7e55 __devm_drm_dev_alloc -EXPORT_SYMBOL vmlinux 0x246f3003 param_ops_bint -EXPORT_SYMBOL vmlinux 0x247571a1 vmf_insert_mixed_prot -EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x24993e50 drm_edid_are_equal -EXPORT_SYMBOL vmlinux 0x24a48b47 kset_unregister -EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL vmlinux 0x24cc0bf1 snd_ctl_replace -EXPORT_SYMBOL vmlinux 0x24cf437a drm_vma_node_is_allowed -EXPORT_SYMBOL vmlinux 0x24d124ac drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24dc136c simple_open -EXPORT_SYMBOL vmlinux 0x24e0718b of_get_compatible_child -EXPORT_SYMBOL vmlinux 0x24ff860c security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x2501802f scsi_ioctl -EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x251a5d8a ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x251dfc23 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x2524ba17 ZSTD_getCParams -EXPORT_SYMBOL vmlinux 0x2531141d drm_writeback_queue_job -EXPORT_SYMBOL vmlinux 0x253352b9 dcache_readdir -EXPORT_SYMBOL vmlinux 0x255062f2 register_8022_client -EXPORT_SYMBOL vmlinux 0x2578a50f drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL vmlinux 0x257bf298 drm_gem_dmabuf_release -EXPORT_SYMBOL vmlinux 0x25807bbe drm_client_modeset_commit -EXPORT_SYMBOL vmlinux 0x25812ed2 sock_create_lite -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x258c81f4 ppp_dev_name -EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x258d6dd8 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion -EXPORT_SYMBOL vmlinux 0x259b34e6 xc4000_attach -EXPORT_SYMBOL vmlinux 0x25b0a0e0 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x25b87400 watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0x25c4f157 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x25caadf2 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x25ce6fec freezing_slow_path -EXPORT_SYMBOL vmlinux 0x25d071c5 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x25daad93 __drm_mm_interval_first -EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25f7be4a __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x25f80d88 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x25f86b1f skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0x26085a18 xlnx_bridge_set_output -EXPORT_SYMBOL vmlinux 0x2609c302 sync_file_create -EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x2611926e napi_schedule_prep -EXPORT_SYMBOL vmlinux 0x2614325e from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x261717ab __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x263c3152 bcmp -EXPORT_SYMBOL vmlinux 0x263da00b snd_hwdep_new -EXPORT_SYMBOL vmlinux 0x264230b0 vfs_iocb_iter_write -EXPORT_SYMBOL vmlinux 0x264ee709 mmc_can_erase -EXPORT_SYMBOL vmlinux 0x26522a1f alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x265738c6 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x26585072 arp_send -EXPORT_SYMBOL vmlinux 0x267d0c8d vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc -EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x268cdcf7 dst_destroy -EXPORT_SYMBOL vmlinux 0x2694f265 may_setattr -EXPORT_SYMBOL vmlinux 0x26958869 __fs_parse -EXPORT_SYMBOL vmlinux 0x26b48396 fb_validate_mode -EXPORT_SYMBOL vmlinux 0x26ba9a97 drm_syncobj_find_fence -EXPORT_SYMBOL vmlinux 0x26c61b90 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x26c6c248 truncate_setsize -EXPORT_SYMBOL vmlinux 0x26cc73c3 complete_and_exit -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26f039da nf_log_register -EXPORT_SYMBOL vmlinux 0x26f48c45 input_get_timestamp -EXPORT_SYMBOL vmlinux 0x26ff2793 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x270258e5 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x2702da62 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x270b887f key_reject_and_link -EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x271f71e1 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x2730f54d __neigh_event_send -EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x2734471c wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0x27472e55 blk_put_request -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL vmlinux 0x275dfee4 ucc_slow_free -EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x27691411 drm_plane_create_color_properties -EXPORT_SYMBOL vmlinux 0x276f8235 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x2770229d vfs_get_link -EXPORT_SYMBOL vmlinux 0x277552c7 ptp_cancel_worker_sync -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 0x27885b4c devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x279be432 ZSTD_copyCCtx -EXPORT_SYMBOL vmlinux 0x27a3c5fd sock_setsockopt -EXPORT_SYMBOL vmlinux 0x27ae6f3d scsi_print_result -EXPORT_SYMBOL vmlinux 0x27bbbeb0 snd_ctl_find_id -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27be7c51 drm_add_modes_noedid -EXPORT_SYMBOL vmlinux 0x27c424d8 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27e18230 param_set_ushort -EXPORT_SYMBOL vmlinux 0x27efc474 xilinx_xdma_get_drm_vid_fmts -EXPORT_SYMBOL vmlinux 0x27f3165e tty_lock -EXPORT_SYMBOL vmlinux 0x2809a2f7 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x280eb05c __napi_schedule -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x2819f44b ram_aops -EXPORT_SYMBOL vmlinux 0x281b6148 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x2825b258 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x2833f577 ZSTD_compressBegin_advanced -EXPORT_SYMBOL vmlinux 0x28350ad4 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x28779e52 drm_printf -EXPORT_SYMBOL vmlinux 0x2878318a inet_listen -EXPORT_SYMBOL vmlinux 0x2888045b xilinx_xdma_get_earlycb -EXPORT_SYMBOL vmlinux 0x28979890 param_ops_ullong -EXPORT_SYMBOL vmlinux 0x28a8c3d9 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x28a8e6c2 vga_get -EXPORT_SYMBOL vmlinux 0x28b12cc9 v4l2_format_info -EXPORT_SYMBOL vmlinux 0x28b1c56a vga_put -EXPORT_SYMBOL vmlinux 0x28dd66be qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x28e18841 ip6_xmit -EXPORT_SYMBOL vmlinux 0x28f03b1b mii_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x2914ea2d ZSTD_compressBlock -EXPORT_SYMBOL vmlinux 0x292c65eb xdma_request_channel -EXPORT_SYMBOL vmlinux 0x292ef55c netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0x293416ec d_make_root -EXPORT_SYMBOL vmlinux 0x29425413 vga_client_register -EXPORT_SYMBOL vmlinux 0x294d2bcc vfs_fadvise -EXPORT_SYMBOL vmlinux 0x294eb03a shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x29508ab0 bdi_put -EXPORT_SYMBOL vmlinux 0x29584123 skb_eth_pop -EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x296267a4 get_watch_queue -EXPORT_SYMBOL vmlinux 0x298ef878 _dev_emerg -EXPORT_SYMBOL vmlinux 0x29b86bbe starget_for_each_device -EXPORT_SYMBOL vmlinux 0x29d82bc4 dump_page -EXPORT_SYMBOL vmlinux 0x29df4da1 generic_write_end -EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL vmlinux 0x2a0ac25d inode_nohighmem -EXPORT_SYMBOL vmlinux 0x2a179af4 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x2a2a8561 v4l2_ctrl_new_custom -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a3825aa drm_dp_pcon_frl_enable -EXPORT_SYMBOL vmlinux 0x2a390e55 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x2a3cb6c9 dev_get_by_name -EXPORT_SYMBOL vmlinux 0x2a701347 v4l2_ctrl_find -EXPORT_SYMBOL vmlinux 0x2a72261e __sock_i_ino -EXPORT_SYMBOL vmlinux 0x2a74ab18 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x2a7cbf78 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x2a7da060 drm_panel_remove -EXPORT_SYMBOL vmlinux 0x2a822e8c drm_connector_list_update -EXPORT_SYMBOL vmlinux 0x2a8bb95d remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free -EXPORT_SYMBOL vmlinux 0x2a932935 generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL vmlinux 0x2a97d83c always_delete_dentry -EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get -EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize -EXPORT_SYMBOL vmlinux 0x2aa4f3b1 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array -EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id -EXPORT_SYMBOL vmlinux 0x2ab4688b iio_trigger_notify_done -EXPORT_SYMBOL vmlinux 0x2aba96e1 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x2abc21b4 kthread_create_on_cpu -EXPORT_SYMBOL vmlinux 0x2acb3856 devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0x2acbd0ff netdev_printk -EXPORT_SYMBOL vmlinux 0x2ae230d8 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x2ae83560 iptun_encaps -EXPORT_SYMBOL vmlinux 0x2af8aa9b key_invalidate -EXPORT_SYMBOL vmlinux 0x2afb4b93 module_layout -EXPORT_SYMBOL vmlinux 0x2b07ba31 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x2b13a407 drm_send_event_timestamp_locked -EXPORT_SYMBOL vmlinux 0x2b20820b drm_gem_shmem_purge -EXPORT_SYMBOL vmlinux 0x2b33cd5d qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x2b42cf0a drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL vmlinux 0x2b458ed7 __scsi_add_device -EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer -EXPORT_SYMBOL vmlinux 0x2b7f0892 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x2b817086 mpage_readahead -EXPORT_SYMBOL vmlinux 0x2b99722a __cpu_active_mask -EXPORT_SYMBOL vmlinux 0x2b9a31d0 uart_resume_port -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba6e511 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL vmlinux 0x2bb35d66 mdio_find_bus -EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock -EXPORT_SYMBOL vmlinux 0x2bba4033 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x2bc540a2 of_get_cpu_node -EXPORT_SYMBOL vmlinux 0x2bc9b33c xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset -EXPORT_SYMBOL vmlinux 0x2bd71979 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x2bded83b snd_ctl_find_numid -EXPORT_SYMBOL vmlinux 0x2bfaed3a netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove -EXPORT_SYMBOL vmlinux 0x2c1608b1 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL vmlinux 0x2c1b7b65 __d_lookup_done -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c3f5e4f mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x2c54c1a7 mii_check_gmii_support -EXPORT_SYMBOL vmlinux 0x2c54e2b8 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x2c56dfc5 uart_add_one_port -EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool -EXPORT_SYMBOL vmlinux 0x2c765d5d netdev_pick_tx -EXPORT_SYMBOL vmlinux 0x2c78faf4 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x2c795fc9 drm_plane_create_zpos_property -EXPORT_SYMBOL vmlinux 0x2c857356 nand_monolithic_write_page_raw -EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x2c98e284 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x2ca3a5b3 devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0x2cab61ca video_devdata -EXPORT_SYMBOL vmlinux 0x2cac01d5 iio_bus_type -EXPORT_SYMBOL vmlinux 0x2cc00d52 pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0x2ccbee0e eth_validate_addr -EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2cd5910b init_net -EXPORT_SYMBOL vmlinux 0x2cdb6c4a tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x2cf08b7c inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x2cf284b9 get_task_cred -EXPORT_SYMBOL vmlinux 0x2cf803de drm_lspcon_get_mode -EXPORT_SYMBOL vmlinux 0x2cfba1e9 v4l2_g_ctrl -EXPORT_SYMBOL vmlinux 0x2cfdbd0e serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x2d0d72bf xfrm_migrate -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0x2d1f6060 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d32071b drm_property_create_object -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 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL vmlinux 0x2d545fcc framebuffer_release -EXPORT_SYMBOL vmlinux 0x2d668277 ip_sock_set_recverr -EXPORT_SYMBOL vmlinux 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL vmlinux 0x2d74568f rproc_coredump_using_sections -EXPORT_SYMBOL vmlinux 0x2d750058 skb_queue_head -EXPORT_SYMBOL vmlinux 0x2d76a237 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x2d8376fc delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year -EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2db42017 phy_driver_register -EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs -EXPORT_SYMBOL vmlinux 0x2dd00837 drm_dp_mst_atomic_enable_dsc -EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2deb0682 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x2e01603e __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x2e01ce35 drm_syncobj_add_point -EXPORT_SYMBOL vmlinux 0x2e01f42b mipi_dsi_dcs_get_display_brightness_large -EXPORT_SYMBOL vmlinux 0x2e02cbee drm_atomic_helper_fake_vblank -EXPORT_SYMBOL vmlinux 0x2e049c2a __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat -EXPORT_SYMBOL vmlinux 0x2e2c4ddc logic_inw -EXPORT_SYMBOL vmlinux 0x2e344649 dev_add_offload -EXPORT_SYMBOL vmlinux 0x2e358def pnp_device_detach -EXPORT_SYMBOL vmlinux 0x2e388695 drm_dp_send_real_edid_checksum -EXPORT_SYMBOL vmlinux 0x2e3a2209 vfs_fileattr_set -EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x2e4211ec locks_delete_block -EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL vmlinux 0x2e4559a4 udp_set_csum -EXPORT_SYMBOL vmlinux 0x2e457ecd vme_lm_request -EXPORT_SYMBOL vmlinux 0x2e466a0c dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2e7491fa dcache_dir_close -EXPORT_SYMBOL vmlinux 0x2e798591 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x2e95f55c seq_release_private -EXPORT_SYMBOL vmlinux 0x2ea52d3e dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0x2ead812d input_get_keycode -EXPORT_SYMBOL vmlinux 0x2ebc68b1 mmc_add_host -EXPORT_SYMBOL vmlinux 0x2ec003cb v4l2_async_notifier_init -EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2eca2a7b sock_bindtoindex -EXPORT_SYMBOL vmlinux 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL vmlinux 0x2ed9b263 drm_gem_unmap_dma_buf -EXPORT_SYMBOL vmlinux 0x2eda1577 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x2edb7a85 drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL vmlinux 0x2ee166dd snd_pcm_new -EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x2ee575fd mmc_retune_pause -EXPORT_SYMBOL vmlinux 0x2eea912c get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x2f011651 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL vmlinux 0x2f0197bc rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init -EXPORT_SYMBOL vmlinux 0x2f181fb4 do_map_probe -EXPORT_SYMBOL vmlinux 0x2f290e3c param_set_int -EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security -EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f464c31 drm_panel_dp_aux_backlight -EXPORT_SYMBOL vmlinux 0x2f5cdf80 dvb_ringbuffer_write -EXPORT_SYMBOL vmlinux 0x2f6b8492 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f83726f dev_printk_emit -EXPORT_SYMBOL vmlinux 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion -EXPORT_SYMBOL vmlinux 0x2fbc9f06 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x2fc875a7 unregister_nls -EXPORT_SYMBOL vmlinux 0x2fcfd1d2 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2ff2a406 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x2ffcb78c fc_mount -EXPORT_SYMBOL vmlinux 0x30140c07 xp_raw_get_data -EXPORT_SYMBOL vmlinux 0x30211e64 vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0x3027f85d con_copy_unimap -EXPORT_SYMBOL vmlinux 0x3031ad1b dvb_unregister_device -EXPORT_SYMBOL vmlinux 0x3042bc9d sock_recvmsg -EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp -EXPORT_SYMBOL vmlinux 0x3065b914 __mdiobus_write -EXPORT_SYMBOL vmlinux 0x307734a7 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x3086aa39 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x3086d6c7 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x3096b634 snd_ctl_make_virtual_master -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30a9d11c tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0x30ab6c90 inet6_protos -EXPORT_SYMBOL vmlinux 0x30ac0d4f nand_ecc_sw_bch_init_ctx -EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30af45a1 ZSTD_initCStream -EXPORT_SYMBOL vmlinux 0x30b3cf56 drm_mode_validate_driver -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30fd4d05 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x3100cff9 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x310fa3c4 dm_put_device -EXPORT_SYMBOL vmlinux 0x311a173b amba_device_unregister -EXPORT_SYMBOL vmlinux 0x311c433f __serio_register_port -EXPORT_SYMBOL vmlinux 0x31269c5a bdev_check_media_change -EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x312d8522 add_watch_to_object -EXPORT_SYMBOL vmlinux 0x314675d0 irq_set_chip -EXPORT_SYMBOL vmlinux 0x315de2cf v4l2_ctrl_get_menu -EXPORT_SYMBOL vmlinux 0x31658e80 __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL vmlinux 0x317eef13 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x317fd390 phy_device_register -EXPORT_SYMBOL vmlinux 0x317ff085 phy_trigger_machine -EXPORT_SYMBOL vmlinux 0x3182fa7d wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x318bf303 complete_request_key -EXPORT_SYMBOL vmlinux 0x319408b7 netdev_err -EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring -EXPORT_SYMBOL vmlinux 0x319dbbbc dvb_net_init -EXPORT_SYMBOL vmlinux 0x31a66e77 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL vmlinux 0x31bbabfb cdev_init -EXPORT_SYMBOL vmlinux 0x31d94d6d xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x31ea30a0 path_get -EXPORT_SYMBOL vmlinux 0x31f3350b tcp_child_process -EXPORT_SYMBOL vmlinux 0x3209e60d km_new_mapping -EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock -EXPORT_SYMBOL vmlinux 0x322f5d61 to_nd_pfn -EXPORT_SYMBOL vmlinux 0x32377dd4 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd -EXPORT_SYMBOL vmlinux 0x32514309 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x32567b82 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL vmlinux 0x3265dd9b drm_dp_pcon_frl_prepare -EXPORT_SYMBOL vmlinux 0x32714e3b i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0x32745406 drm_driver_legacy_fb_format -EXPORT_SYMBOL vmlinux 0x3274f1e5 register_sound_dsp -EXPORT_SYMBOL vmlinux 0x327b9650 param_set_bint -EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach -EXPORT_SYMBOL vmlinux 0x328145ce max8998_write_reg -EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL vmlinux 0x32a20e9e nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x32b1b1bc neigh_direct_output -EXPORT_SYMBOL vmlinux 0x32c2f764 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32d43420 v4l2_ctrl_get_name -EXPORT_SYMBOL vmlinux 0x32d87c1e scsi_print_sense -EXPORT_SYMBOL vmlinux 0x32e24c8a blake2b_compress_generic -EXPORT_SYMBOL vmlinux 0x32e55ac4 drm_dp_get_vc_payload_bw -EXPORT_SYMBOL vmlinux 0x32e68c0d inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x32f20f58 generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0x32fa05df kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl -EXPORT_SYMBOL vmlinux 0x33048723 nf_log_packet -EXPORT_SYMBOL vmlinux 0x3304e351 bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x330635a7 sock_wake_async -EXPORT_SYMBOL vmlinux 0x330c26fb drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL vmlinux 0x330df36b snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL vmlinux 0x330f31f6 drmm_kmalloc -EXPORT_SYMBOL vmlinux 0x3316113f xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0x332760b7 drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL vmlinux 0x332eeaea find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x332fb45f input_match_device_id -EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down -EXPORT_SYMBOL vmlinux 0x335f4fd4 uart_update_timeout -EXPORT_SYMBOL vmlinux 0x336485fe kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x337a8e44 d_exact_alias -EXPORT_SYMBOL vmlinux 0x33941426 mmput_async -EXPORT_SYMBOL vmlinux 0x339542db pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0x33a27048 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x33a2a659 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x33a64969 nf_hook_slow -EXPORT_SYMBOL vmlinux 0x33a6b64d iio_buffer_init -EXPORT_SYMBOL vmlinux 0x33bbfd80 serio_open -EXPORT_SYMBOL vmlinux 0x33c5f5bd twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x33cdbd37 dev_uc_del -EXPORT_SYMBOL vmlinux 0x33ceeff0 drm_writeback_cleanup_job -EXPORT_SYMBOL vmlinux 0x33cf86c1 __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0x33d10496 inode_set_flags -EXPORT_SYMBOL vmlinux 0x33d53b69 drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL vmlinux 0x33d839d4 mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0x33efedb8 jbd2_fc_release_bufs -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 0x3403f1cc sock_efree -EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x3422d3de map_destroy -EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL vmlinux 0x342f0ccd dev_activate -EXPORT_SYMBOL vmlinux 0x3443fd4c gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x34495ecf datagram_poll -EXPORT_SYMBOL vmlinux 0x344ef1ba ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x3467fc04 drm_event_reserve_init_locked -EXPORT_SYMBOL vmlinux 0x3469a93f deactivate_super -EXPORT_SYMBOL vmlinux 0x346aea11 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd -EXPORT_SYMBOL vmlinux 0x34a679d0 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x34aaa3f2 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x34b16334 __next_node_in -EXPORT_SYMBOL vmlinux 0x34b5f4dc flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0x34be4131 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34c87266 xsk_get_pool_from_qid -EXPORT_SYMBOL vmlinux 0x34c8829f drm_gem_handle_delete -EXPORT_SYMBOL vmlinux 0x34f1696b of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x350a4375 dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x351a5763 drm_gem_simple_display_pipe_prepare_fb -EXPORT_SYMBOL vmlinux 0x352149d2 dev_lstats_read -EXPORT_SYMBOL vmlinux 0x3521a29a drm_atomic_get_private_obj_state -EXPORT_SYMBOL vmlinux 0x352cc4f9 drm_dp_pcon_pps_override_param -EXPORT_SYMBOL vmlinux 0x3534f067 iov_iter_pipe -EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x3550b185 __register_nls -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x356d4ae5 drm_kms_helper_poll_enable -EXPORT_SYMBOL vmlinux 0x357051ef i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x357b9166 jbd2_submit_inode_data -EXPORT_SYMBOL vmlinux 0x358fd08e acpi_dev_get_first_match_dev -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35b4de5f default_llseek -EXPORT_SYMBOL vmlinux 0x35c4e946 cdev_alloc -EXPORT_SYMBOL vmlinux 0x35d066f2 vfs_get_super -EXPORT_SYMBOL vmlinux 0x35ee7d94 drm_open -EXPORT_SYMBOL vmlinux 0x35f33c8c inet_stream_connect -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x360d5972 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x361e622a param_ops_byte -EXPORT_SYMBOL vmlinux 0x3630980a pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable -EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked -EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x365de760 page_cache_next_miss -EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x367e1ad6 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x369a315d nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0x36b0ff04 xlnk_eng_register_device -EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable -EXPORT_SYMBOL vmlinux 0x36ba8a63 snd_pcm_hw_rule_add -EXPORT_SYMBOL vmlinux 0x36c46b39 put_fs_context -EXPORT_SYMBOL vmlinux 0x36d4e5bd __drmm_add_action_or_reset -EXPORT_SYMBOL vmlinux 0x36db6f32 mmc_can_discard -EXPORT_SYMBOL vmlinux 0x36e0a135 drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL vmlinux 0x36e5ec1f hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x36eb7346 __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL vmlinux 0x3705c7db mpage_writepages -EXPORT_SYMBOL vmlinux 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL vmlinux 0x370a4c9d xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue -EXPORT_SYMBOL vmlinux 0x371b52e8 filemap_range_has_page -EXPORT_SYMBOL vmlinux 0x371e7f3a ZSTD_initCDict -EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound -EXPORT_SYMBOL vmlinux 0x374115f6 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0x3744931a blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x374cbf65 drm_writeback_get_out_fence -EXPORT_SYMBOL vmlinux 0x374e2ae2 amba_driver_register -EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream -EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error -EXPORT_SYMBOL vmlinux 0x3782c506 inet_stream_ops -EXPORT_SYMBOL vmlinux 0x37850fef mrmac_gt_pll -EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL vmlinux 0x379e6971 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0x379faed8 genphy_check_and_restart_aneg -EXPORT_SYMBOL vmlinux 0x37a37fde d_path -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37cc5af0 drm_crtc_vblank_helper_get_vblank_timestamp_internal -EXPORT_SYMBOL vmlinux 0x37cc8b47 usbnet_device_suggests_idle -EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37e3ec9b vm_event_states -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x3820b38d dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x382fcfe1 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x383460fa drm_fb_helper_initial_config -EXPORT_SYMBOL vmlinux 0x385442c4 unregister_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x387b47a8 usbnet_manage_power -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 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38ab4a57 kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0x38b4ea79 clk_add_alias -EXPORT_SYMBOL vmlinux 0x38b92846 llc_remove_pack -EXPORT_SYMBOL vmlinux 0x38c8cbfd drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL vmlinux 0x38d8812c blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x38d9c61d fwnode_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x38e0619d blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x38e145bb dup_iter -EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit -EXPORT_SYMBOL vmlinux 0x38e4cd69 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq -EXPORT_SYMBOL vmlinux 0x38f91100 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x39016ab4 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL vmlinux 0x391319f5 fs_param_is_bool -EXPORT_SYMBOL vmlinux 0x392a838b drm_dp_downstream_max_dotclock -EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io -EXPORT_SYMBOL vmlinux 0x392bca13 dquot_drop -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x39494c3e dvb_frontend_suspend -EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach -EXPORT_SYMBOL vmlinux 0x39550a6f eth_header_cache -EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL vmlinux 0x39729699 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL vmlinux 0x3980bf1d skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x3998472e mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x39a75115 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39bd7588 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x39be966b skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL vmlinux 0x39d709ca xfrm_state_add -EXPORT_SYMBOL vmlinux 0x39dcfd92 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x39f332fe touch_buffer -EXPORT_SYMBOL vmlinux 0x39fa3e11 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0x39fd4e6e alloc_fcdev -EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc -EXPORT_SYMBOL vmlinux 0x3a23e5cf drm_helper_connector_dpms -EXPORT_SYMBOL vmlinux 0x3a264a0f drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL vmlinux 0x3a284dfe mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x3a40bcae drm_dp_read_downstream_info -EXPORT_SYMBOL vmlinux 0x3a426023 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a5adc85 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x3a5d2b21 drm_gem_mmap_obj -EXPORT_SYMBOL vmlinux 0x3a619178 __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0x3a8275d9 phy_start_cable_test -EXPORT_SYMBOL vmlinux 0x3a881434 blk_sync_queue -EXPORT_SYMBOL vmlinux 0x3aa83c79 nvmem_get_mac_address -EXPORT_SYMBOL vmlinux 0x3aae2ddf drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3ab87110 drm_mode_equal_no_clocks -EXPORT_SYMBOL vmlinux 0x3abc10bb gss_mech_get -EXPORT_SYMBOL vmlinux 0x3ac1f7ac drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL vmlinux 0x3acba146 vif_device_init -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 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL vmlinux 0x3ae74218 d_find_any_alias -EXPORT_SYMBOL vmlinux 0x3afc8d76 snd_timer_close -EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0x3b081821 acpi_device_set_power -EXPORT_SYMBOL vmlinux 0x3b0e5e9c __drm_puts_coredump -EXPORT_SYMBOL vmlinux 0x3b13a62b sock_set_priority -EXPORT_SYMBOL vmlinux 0x3b15a093 file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x3b15ac1a dm_table_event -EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x3b237451 read_cache_pages -EXPORT_SYMBOL vmlinux 0x3b25b567 fs_param_is_enum -EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b3dde56 input_register_handler -EXPORT_SYMBOL vmlinux 0x3b409e92 of_translate_address -EXPORT_SYMBOL vmlinux 0x3b547432 of_get_next_child -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b6a55bb tcf_idr_create -EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint -EXPORT_SYMBOL vmlinux 0x3b6ed992 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x3b93d71a dvb_frontend_sleep_until -EXPORT_SYMBOL vmlinux 0x3ba17eab drm_ht_insert_item -EXPORT_SYMBOL vmlinux 0x3bab09e5 wake_up_process -EXPORT_SYMBOL vmlinux 0x3bb0d41f v4l2_try_ext_ctrls -EXPORT_SYMBOL vmlinux 0x3bbb7975 drm_crtc_init -EXPORT_SYMBOL vmlinux 0x3bc76658 fb_get_mode -EXPORT_SYMBOL vmlinux 0x3bcb35a3 max8998_read_reg -EXPORT_SYMBOL vmlinux 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL vmlinux 0x3be07ab6 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3be914c2 drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL vmlinux 0x3bf04872 _copy_to_iter -EXPORT_SYMBOL vmlinux 0x3bfedc5b find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0x3c090440 pci_save_state -EXPORT_SYMBOL vmlinux 0x3c0bd801 register_quota_format -EXPORT_SYMBOL vmlinux 0x3c0d361b drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL vmlinux 0x3c13e8f3 end_page_writeback -EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c1a1704 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x3c22a4d8 drm_vma_offset_manager_init -EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr -EXPORT_SYMBOL vmlinux 0x3c3e9e98 redraw_screen -EXPORT_SYMBOL vmlinux 0x3c3f9d9b sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c48255f inet_frag_kill -EXPORT_SYMBOL vmlinux 0x3c51cb04 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x3c5e9172 ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x3c63ce3d file_remove_privs -EXPORT_SYMBOL vmlinux 0x3c7e24cf eth_gro_receive -EXPORT_SYMBOL vmlinux 0x3c818b66 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL vmlinux 0x3c87ea96 dev_uc_flush -EXPORT_SYMBOL vmlinux 0x3c932566 inet_frag_find -EXPORT_SYMBOL vmlinux 0x3c98fe24 of_node_name_prefix -EXPORT_SYMBOL vmlinux 0x3ca7619a igrab -EXPORT_SYMBOL vmlinux 0x3cb27628 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3cf7de0d __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x3cf9fc2a xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0x3d1eb833 pci_bus_type -EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x3d3bb97f migrate_page -EXPORT_SYMBOL vmlinux 0x3d3ce079 param_get_int -EXPORT_SYMBOL vmlinux 0x3d49758b pci_release_regions -EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d77d1ee fwnode_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0x3d782234 from_kuid -EXPORT_SYMBOL vmlinux 0x3d7eae9b vfs_statfs -EXPORT_SYMBOL vmlinux 0x3d93c7c2 __arm_smccc_sve_check -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 0x3db48107 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dd6a47e jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x3ddb1723 __inc_node_page_state -EXPORT_SYMBOL vmlinux 0x3dee5fe1 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e0c64e2 input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0x3e29fc60 xlnk_eng_unregister_device -EXPORT_SYMBOL vmlinux 0x3e319cc2 __mdiobus_read -EXPORT_SYMBOL vmlinux 0x3e33fa1c ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x3e37c219 fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e3ef209 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x3e50b109 drm_gem_fence_array_add -EXPORT_SYMBOL vmlinux 0x3e53dfbf inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x3e5588eb tcp_sock_set_user_timeout -EXPORT_SYMBOL vmlinux 0x3e5e8482 drm_connector_register -EXPORT_SYMBOL vmlinux 0x3e794b5f generic_file_open -EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc -EXPORT_SYMBOL vmlinux 0x3e821b25 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x3e965364 __video_register_device -EXPORT_SYMBOL vmlinux 0x3ea38735 register_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x3eaaaf10 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x3eaeec8e balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x3eaf2f89 xp_dma_map -EXPORT_SYMBOL vmlinux 0x3ec131a1 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x3ec5dc1c lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x3ed3094b blk_integrity_register -EXPORT_SYMBOL vmlinux 0x3ed45b33 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL vmlinux 0x3ed62d17 mount_subtree -EXPORT_SYMBOL vmlinux 0x3ed6be06 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x3ee0ead4 __bforget -EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up -EXPORT_SYMBOL vmlinux 0x3ef05250 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x3ef5631e pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0x3efbfdb3 drm_hdmi_infoframe_set_gen_hdr_metadata -EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3f02f088 cfi_build_cmd_addr -EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f2155fe __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x3f246c12 console_start -EXPORT_SYMBOL vmlinux 0x3f29e545 bdev_dax_pgoff -EXPORT_SYMBOL vmlinux 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f45753b sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0x3f4a908a snd_card_free_when_closed -EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x3f68fc40 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x3f69860a snd_pcm_suspend_all -EXPORT_SYMBOL vmlinux 0x3f755269 netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f9c1843 pci_request_irq -EXPORT_SYMBOL vmlinux 0x3fa24e6d tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x3facb3e8 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fc33e3e tcp_poll -EXPORT_SYMBOL vmlinux 0x3fc3fe08 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x400cfc1b phy_print_status -EXPORT_SYMBOL vmlinux 0x401a3493 xp_dma_sync_for_cpu_slow -EXPORT_SYMBOL vmlinux 0x401cc095 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x4022758a tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x404ef504 snd_ctl_add -EXPORT_SYMBOL vmlinux 0x4059e7f1 snd_info_create_module_entry -EXPORT_SYMBOL vmlinux 0x4064f336 drm_framebuffer_plane_width -EXPORT_SYMBOL vmlinux 0x407a7f3b devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x408327f5 drm_atomic_helper_commit_planes -EXPORT_SYMBOL vmlinux 0x40933f3d gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40c5eb76 v4l2_ctrl_add_handler -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40c900f4 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x40cac0da drm_dp_set_phy_test_pattern -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams -EXPORT_SYMBOL vmlinux 0x40e93715 sget_fc -EXPORT_SYMBOL vmlinux 0x40f37b03 nla_reserve -EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc -EXPORT_SYMBOL vmlinux 0x4110bc59 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x4119d066 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x41230a4b nand_write_oob_std -EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x41412eb8 pci_disable_ptm -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x416b94c0 snd_pcm_set_managed_buffer_all -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x41891e64 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x418af851 __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL vmlinux 0x41a4932e __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0x41cd2cc7 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes -EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x41fd05e1 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse -EXPORT_SYMBOL vmlinux 0x420e3fbe page_symlink -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x4220b1aa qtree_delete_dquot -EXPORT_SYMBOL vmlinux 0x42306983 dma_sync_wait -EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x4230be52 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x423cd146 fb_set_suspend -EXPORT_SYMBOL vmlinux 0x423f7921 drm_master_get -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type -EXPORT_SYMBOL vmlinux 0x426cbdf7 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x427c06b6 skb_expand_head -EXPORT_SYMBOL vmlinux 0x42878ff3 seq_open -EXPORT_SYMBOL vmlinux 0x42954c79 drm_gem_prime_export -EXPORT_SYMBOL vmlinux 0x429e27a5 load_nls -EXPORT_SYMBOL vmlinux 0x42af3b28 kmalloc_caches -EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x42ca0aad security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0x42dc5b60 __page_symlink -EXPORT_SYMBOL vmlinux 0x42e81bad snd_timer_interrupt -EXPORT_SYMBOL vmlinux 0x42ea1098 acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0x42ee6d5a dev_get_flags -EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x43015437 sockfd_lookup -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x430ecc96 ZSTD_initCStream_usingCDict -EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate -EXPORT_SYMBOL vmlinux 0x433411fd generic_file_mmap -EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer -EXPORT_SYMBOL vmlinux 0x434dad54 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x434e216b __dquot_free_space -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x435d12a1 prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0x43686411 try_to_release_page -EXPORT_SYMBOL vmlinux 0x437139a7 __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x4372280d free_buffer_head -EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x437f6d65 jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0x4383c3b1 md_register_thread -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43b1ac60 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x43bccd03 iov_iter_advance -EXPORT_SYMBOL vmlinux 0x43be6bd3 drm_atomic_bridge_chain_disable -EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember -EXPORT_SYMBOL vmlinux 0x4402e671 __register_binfmt -EXPORT_SYMBOL vmlinux 0x4403a9c3 drm_mode_get_hv_timing -EXPORT_SYMBOL vmlinux 0x44069fbd simple_nosetlease -EXPORT_SYMBOL vmlinux 0x4428b605 netdev_features_change -EXPORT_SYMBOL vmlinux 0x4429ca89 of_drm_find_panel -EXPORT_SYMBOL vmlinux 0x442b23d8 key_link -EXPORT_SYMBOL vmlinux 0x44342978 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x4434a0a1 sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0x443ea75b tso_build_data -EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq -EXPORT_SYMBOL vmlinux 0x4463306b tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x4464d41f drm_gem_cleanup_shadow_fb -EXPORT_SYMBOL vmlinux 0x446f817f vme_register_bridge -EXPORT_SYMBOL vmlinux 0x44722bc4 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x44892eb8 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x449a1fd3 security_unix_may_send -EXPORT_SYMBOL vmlinux 0x449aa80a ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp -EXPORT_SYMBOL vmlinux 0x44a054d4 fget_raw -EXPORT_SYMBOL vmlinux 0x44a1b55a vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x44a2cadb drm_prime_sg_to_dma_addr_array -EXPORT_SYMBOL vmlinux 0x44a39c62 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0x44a508f5 rawnand_sw_hamming_correct -EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x44d137dc set_create_files_as -EXPORT_SYMBOL vmlinux 0x44d2f40c vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0x44d6308b ptp_schedule_worker -EXPORT_SYMBOL vmlinux 0x44dec4ea md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44f37c49 iunique -EXPORT_SYMBOL vmlinux 0x44f45d96 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x450b90a2 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x451aece9 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x453b2540 netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update -EXPORT_SYMBOL vmlinux 0x45555237 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0x45716a8d pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x45719756 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x4571e35d ptp_clock_event -EXPORT_SYMBOL vmlinux 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL vmlinux 0x45bf41f8 pps_unregister_source -EXPORT_SYMBOL vmlinux 0x45bfb422 tcp_prot -EXPORT_SYMBOL vmlinux 0x45c55858 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x45d7de3e pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x45e4d336 alloc_mdio_bitbang -EXPORT_SYMBOL vmlinux 0x45ebad48 tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0x45f24ce5 dma_find_channel -EXPORT_SYMBOL vmlinux 0x4603c416 drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x461046b4 ata_print_version -EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents -EXPORT_SYMBOL vmlinux 0x461f6812 pnp_request_card_device -EXPORT_SYMBOL vmlinux 0x4621c1f2 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x462a9556 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x462b68c8 open_exec -EXPORT_SYMBOL vmlinux 0x462bdf40 __drmm_add_action -EXPORT_SYMBOL vmlinux 0x463219fb tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x4633c101 padata_alloc -EXPORT_SYMBOL vmlinux 0x4635caf9 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x464646ae __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x4651264f dm_unregister_target -EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x466fed78 pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0x4670d60b drm_atomic_state_alloc -EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x4691ae22 fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0x46990910 kobject_add -EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x46a50a95 set_anon_super -EXPORT_SYMBOL vmlinux 0x46b2c224 nand_create_bbt -EXPORT_SYMBOL vmlinux 0x46b6939e unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x46b7dbac flow_indr_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46cbd39c vma_set_file -EXPORT_SYMBOL vmlinux 0x46dd20d5 mount_bdev -EXPORT_SYMBOL vmlinux 0x46e685ae kfree_skb_reason -EXPORT_SYMBOL vmlinux 0x46fb7f4c inode_set_bytes -EXPORT_SYMBOL vmlinux 0x47021142 pci_find_capability -EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset -EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table -EXPORT_SYMBOL vmlinux 0x4730a44f ptp_clock_register -EXPORT_SYMBOL vmlinux 0x473bf809 drm_fbdev_generic_setup -EXPORT_SYMBOL vmlinux 0x473cadb4 of_io_request_and_map -EXPORT_SYMBOL vmlinux 0x47547a0a drm_state_dump -EXPORT_SYMBOL vmlinux 0x475d7e5a drm_fb_helper_deferred_io -EXPORT_SYMBOL vmlinux 0x475ffdde genl_register_family -EXPORT_SYMBOL vmlinux 0x476c9224 send_sig_mceerr -EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x4779b4e5 of_phy_get_and_connect -EXPORT_SYMBOL vmlinux 0x47863191 drm_mode_prune_invalid -EXPORT_SYMBOL vmlinux 0x478ca331 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x4797ca25 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL vmlinux 0x47bb8369 ethtool_aggregate_mac_stats -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 0x47ed3fef reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0x47f063ef page_pool_put_page_bulk -EXPORT_SYMBOL vmlinux 0x47f4054d dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0x47fc54d7 inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0x47fdd161 udp6_seq_ops -EXPORT_SYMBOL vmlinux 0x48041c8a blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0x480e9587 netdev_reset_tc -EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open -EXPORT_SYMBOL vmlinux 0x4824e9b3 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x4829a47e memcpy -EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0x4831da6e drm_vma_offset_remove -EXPORT_SYMBOL vmlinux 0x4837bb10 logic_outsb -EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config -EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 -EXPORT_SYMBOL vmlinux 0x4854f940 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x485bdc45 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x4862a306 vm_insert_pages -EXPORT_SYMBOL vmlinux 0x486b4247 gss_mech_put -EXPORT_SYMBOL vmlinux 0x48704993 drm_plane_cleanup -EXPORT_SYMBOL vmlinux 0x4878f626 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x4887808a md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x4898f29d tty_port_destroy -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 0x48d3726e drm_release_noglobal -EXPORT_SYMBOL vmlinux 0x48efe6fb drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL vmlinux 0x48f9b31f drm_client_framebuffer_flush -EXPORT_SYMBOL vmlinux 0x49013f25 tso_start -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x49120e9b device_add_disk -EXPORT_SYMBOL vmlinux 0x492ca7a1 xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 -EXPORT_SYMBOL vmlinux 0x4956fdef __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x4958e988 tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0x495dfa9c device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0x495f46a1 mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0x498a50eb sk_wait_data -EXPORT_SYMBOL vmlinux 0x498bf60a drm_i2c_encoder_prepare -EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize -EXPORT_SYMBOL vmlinux 0x4994ca79 xfrm_state_free -EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x49a01e3c clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49d128c7 netdev_alert -EXPORT_SYMBOL vmlinux 0x49d4d163 drm_mode_config_helper_resume -EXPORT_SYMBOL vmlinux 0x49e8161c clkdev_drop -EXPORT_SYMBOL vmlinux 0x49ea5c0e cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0x49ed86a0 ZSTD_endStream -EXPORT_SYMBOL vmlinux 0x49f30359 devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0x49f828b0 filemap_map_pages -EXPORT_SYMBOL vmlinux 0x49ff7788 devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x4a0b9b66 regset_get_alloc -EXPORT_SYMBOL vmlinux 0x4a139a8f snd_dma_free_pages -EXPORT_SYMBOL vmlinux 0x4a1c4600 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x4a1cf92b drm_client_rotation -EXPORT_SYMBOL vmlinux 0x4a1f6179 key_revoke -EXPORT_SYMBOL vmlinux 0x4a220450 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x4a35d30d drm_mode_set_name -EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL vmlinux 0x4a436678 mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x4a4bfb47 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x4a545b93 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x4a5ceda5 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x4a6ab0f5 netdev_crit -EXPORT_SYMBOL vmlinux 0x4a70cd74 mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0x4a77dba5 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0x4a7d75b0 drm_memcpy_from_wc -EXPORT_SYMBOL vmlinux 0x4a929dc4 __blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free -EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4aa12162 inet_add_protocol -EXPORT_SYMBOL vmlinux 0x4ab237e6 phy_attached_info_irq -EXPORT_SYMBOL vmlinux 0x4ac820f1 pci_get_class -EXPORT_SYMBOL vmlinux 0x4ad1469d scsi_target_resume -EXPORT_SYMBOL vmlinux 0x4ad28e78 pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0x4adc5f49 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift -EXPORT_SYMBOL vmlinux 0x4af2f1a3 dquot_destroy -EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 -EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue -EXPORT_SYMBOL vmlinux 0x4b064301 free_cgroup_ns -EXPORT_SYMBOL vmlinux 0x4b090f34 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x4b0a3f52 gic_nonsecure_priorities -EXPORT_SYMBOL vmlinux 0x4b1f8d5e drm_dp_read_mst_cap -EXPORT_SYMBOL vmlinux 0x4b21c933 mntget -EXPORT_SYMBOL vmlinux 0x4b247cdb drm_invalid_op -EXPORT_SYMBOL vmlinux 0x4b2dc438 nd_device_register -EXPORT_SYMBOL vmlinux 0x4b35e71c drm_crtc_vblank_on -EXPORT_SYMBOL vmlinux 0x4b36e3e6 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x4b3d1ede drm_atomic_get_old_bridge_state -EXPORT_SYMBOL vmlinux 0x4b4871a9 nand_scan_with_ids -EXPORT_SYMBOL vmlinux 0x4b52fc5d drm_crtc_vblank_waitqueue -EXPORT_SYMBOL vmlinux 0x4b5b2116 unregister_console -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b6b2589 phy_free_interrupt -EXPORT_SYMBOL vmlinux 0x4b6b53fc vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg -EXPORT_SYMBOL vmlinux 0x4b716147 request_firmware -EXPORT_SYMBOL vmlinux 0x4b7343aa dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0x4b7d8bfe cfb_copyarea -EXPORT_SYMBOL vmlinux 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL vmlinux 0x4b812e32 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x4b90807c drm_fb_helper_set_par -EXPORT_SYMBOL vmlinux 0x4ba683a7 param_get_short -EXPORT_SYMBOL vmlinux 0x4ba6e601 drm_crtc_check_viewport -EXPORT_SYMBOL vmlinux 0x4baecb39 qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0x4bb315ec xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x4bb63946 configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x4bc014c0 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node -EXPORT_SYMBOL vmlinux 0x4bce359b drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL vmlinux 0x4bdbaa73 input_unregister_handle -EXPORT_SYMBOL vmlinux 0x4bdc6e14 sg_alloc_append_table_from_pages -EXPORT_SYMBOL vmlinux 0x4be96014 consume_skb -EXPORT_SYMBOL vmlinux 0x4beb7447 mdio_bus_type -EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4c012f66 proc_symlink -EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c13e125 phy_ethtool_get_stats -EXPORT_SYMBOL vmlinux 0x4c1cca3b cpumask_next_wrap -EXPORT_SYMBOL vmlinux 0x4c281912 vli_is_zero -EXPORT_SYMBOL vmlinux 0x4c2cd508 md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x4c3280fc path_is_under -EXPORT_SYMBOL vmlinux 0x4c34fffa neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x4c3de209 simple_recursive_removal -EXPORT_SYMBOL vmlinux 0x4c3f18f5 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c48939e tuners -EXPORT_SYMBOL vmlinux 0x4c556330 inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0x4c791835 vm_map_pages -EXPORT_SYMBOL vmlinux 0x4ca607bc con_is_visible -EXPORT_SYMBOL vmlinux 0x4caba921 backlight_device_register -EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x4d010ce2 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x4d094890 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -EXPORT_SYMBOL vmlinux 0x4d1964e8 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x4d1ce2bd node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x4d221499 nexthop_bucket_set_hw_flags -EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d40971f twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x4d54146a drm_dp_read_dpcd_caps -EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0x4d7774b8 drm_connector_attach_encoder -EXPORT_SYMBOL vmlinux 0x4d8cfe17 drm_dp_update_payload_part1 -EXPORT_SYMBOL vmlinux 0x4d924f20 memremap -EXPORT_SYMBOL vmlinux 0x4d92d00d tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0x4d9645af vme_irq_generate -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4db3f298 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x4dbdc850 show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence -EXPORT_SYMBOL vmlinux 0x4ddb84a1 __dynamic_netdev_dbg -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 0x4df74de2 setattr_should_drop_sgid -EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock -EXPORT_SYMBOL vmlinux 0x4e0306cc tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x4e047d68 remap_pfn_range -EXPORT_SYMBOL vmlinux 0x4e19da4c kernel_listen -EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x4e247380 pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e402822 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller -EXPORT_SYMBOL vmlinux 0x4e56a596 nand_ecc_get_sw_engine -EXPORT_SYMBOL vmlinux 0x4e586e6e drm_dp_dpcd_read_link_status -EXPORT_SYMBOL vmlinux 0x4e59387b __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e78c10f drm_atomic_helper_disable_plane -EXPORT_SYMBOL vmlinux 0x4e811b4d generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset -EXPORT_SYMBOL vmlinux 0x4ea7eeb6 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4eda3e7d drm_gem_prime_import -EXPORT_SYMBOL vmlinux 0x4ef5300d padata_do_parallel -EXPORT_SYMBOL vmlinux 0x4efafdd9 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0x4f071487 bd_abort_claiming -EXPORT_SYMBOL vmlinux 0x4f07fd22 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x4f14ecc8 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x4f185de4 __kfree_skb -EXPORT_SYMBOL vmlinux 0x4f18a150 __drm_debug -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f261ecd invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x4f4deafe nf_log_unregister -EXPORT_SYMBOL vmlinux 0x4f504cfb mc44s803_attach -EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x4f558529 netif_rx -EXPORT_SYMBOL vmlinux 0x4f5f8de5 unix_attach_fds -EXPORT_SYMBOL vmlinux 0x4f709989 security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL vmlinux 0x4f8217e9 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x4f94c49f cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x4f94c6e6 devfreq_update_interval -EXPORT_SYMBOL vmlinux 0x4fafbfeb sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0x4fb4c48d devm_rproc_add -EXPORT_SYMBOL vmlinux 0x4fc06986 drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL vmlinux 0x4fcf2275 single_open -EXPORT_SYMBOL vmlinux 0x4fe14a5b serio_unregister_port -EXPORT_SYMBOL vmlinux 0x4fe15b93 update_stripe -EXPORT_SYMBOL vmlinux 0x4fe2fa03 v4l2_ctrl_new_std_compound -EXPORT_SYMBOL vmlinux 0x4fe59ff4 vm_mmap -EXPORT_SYMBOL vmlinux 0x4feac495 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x4fed74e1 drm_panel_bridge_add -EXPORT_SYMBOL vmlinux 0x4ff20ab0 trace_event_printf -EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree -EXPORT_SYMBOL vmlinux 0x50053671 cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x501eeceb unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex -EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL vmlinux 0x503ce688 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x50417cd8 mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0x50624917 sha1_init -EXPORT_SYMBOL vmlinux 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x5089a5fd drm_mode_probed_add -EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check -EXPORT_SYMBOL vmlinux 0x508c6fd3 drm_modeset_unlock_all -EXPORT_SYMBOL vmlinux 0x50940af4 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu -EXPORT_SYMBOL vmlinux 0x50970d88 snd_pcm_set_managed_buffer -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 0x50ba581f drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50c86f61 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x50c99b54 blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin -EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf -EXPORT_SYMBOL vmlinux 0x50da99bd t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x50ee4183 ilookup5 -EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc -EXPORT_SYMBOL vmlinux 0x50f8b98f nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr -EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x5107de80 drm_i2c_encoder_destroy -EXPORT_SYMBOL vmlinux 0x511f4a30 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x51265307 nd_pfn_validate -EXPORT_SYMBOL vmlinux 0x513072fe __drm_puts_seq_file -EXPORT_SYMBOL vmlinux 0x5143c587 pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex -EXPORT_SYMBOL vmlinux 0x51618cb3 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x51635814 iio_device_alloc -EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x51788501 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x517918bb rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x5191189b drm_simple_display_pipe_init -EXPORT_SYMBOL vmlinux 0x519a4bc9 udp_gro_receive -EXPORT_SYMBOL vmlinux 0x519e821e simple_transaction_set -EXPORT_SYMBOL vmlinux 0x51a8b5fd __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x51ab1209 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL vmlinux 0x51b8b371 serio_reconnect -EXPORT_SYMBOL vmlinux 0x51d012f2 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x51d0de59 of_find_property -EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51d1506f of_device_is_available -EXPORT_SYMBOL vmlinux 0x51daccb2 skb_vlan_push -EXPORT_SYMBOL vmlinux 0x51de94b8 cdev_set_parent -EXPORT_SYMBOL vmlinux 0x51e3d8e1 mptcp_subflow_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x51e4a929 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x51e725c2 of_phy_find_device -EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x52081591 of_find_node_by_type -EXPORT_SYMBOL vmlinux 0x520b74c3 iio_device_free -EXPORT_SYMBOL vmlinux 0x520ff60d register_netdevice -EXPORT_SYMBOL vmlinux 0x52145f17 jbd2_journal_finish_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x521ad6d0 drm_puts -EXPORT_SYMBOL vmlinux 0x522586ba drm_gem_mmap -EXPORT_SYMBOL vmlinux 0x52373dc4 vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0x52396edc drm_mode_object_find -EXPORT_SYMBOL vmlinux 0x523a2925 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x524e2b8c mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0x526a073d blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5297ee4a tcp_conn_request -EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52b76eb3 pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0x52bd2bcc tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x52d1fcde hmm_range_fault -EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL vmlinux 0x52eaa3bc devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt -EXPORT_SYMBOL vmlinux 0x52fa4c7d nobh_write_begin -EXPORT_SYMBOL vmlinux 0x52fe9f35 setattr_prepare -EXPORT_SYMBOL vmlinux 0x53018140 drm_self_refresh_helper_init -EXPORT_SYMBOL vmlinux 0x53039424 generic_ro_fops -EXPORT_SYMBOL vmlinux 0x53081918 unregister_netdev -EXPORT_SYMBOL vmlinux 0x530a2200 devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x5315b1b6 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x5318d041 drm_modeset_acquire_fini -EXPORT_SYMBOL vmlinux 0x533144ad drm_atomic_helper_async_commit -EXPORT_SYMBOL vmlinux 0x533206b5 sort_r -EXPORT_SYMBOL vmlinux 0x533442d4 drm_connector_set_vrr_capable_property -EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x5352d022 v4l2_m2m_resume -EXPORT_SYMBOL vmlinux 0x535d2f61 __nla_put_64bit -EXPORT_SYMBOL vmlinux 0x53661b08 drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL vmlinux 0x5367d993 file_path -EXPORT_SYMBOL vmlinux 0x5381cdca block_write_begin -EXPORT_SYMBOL vmlinux 0x538d49cd copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x539f81da set_capacity -EXPORT_SYMBOL vmlinux 0x53b954a2 up_read -EXPORT_SYMBOL vmlinux 0x53d0425a filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0x53d27ec3 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x53d46ea2 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x53e50ffa first_ec -EXPORT_SYMBOL vmlinux 0x53ec5ac9 mdio_device_reset -EXPORT_SYMBOL vmlinux 0x53f5972c __drm_atomic_helper_set_config -EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock -EXPORT_SYMBOL vmlinux 0x53ff6085 netif_carrier_on -EXPORT_SYMBOL vmlinux 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL vmlinux 0x540b9d77 of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x541a50cb xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x542a97ca genl_notify -EXPORT_SYMBOL vmlinux 0x543db49c inode_init_owner -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x54418cfe drm_fb_helper_unregister_fbi -EXPORT_SYMBOL vmlinux 0x5442e581 watchdog_register_governor -EXPORT_SYMBOL vmlinux 0x544d1f3b drm_dp_get_phy_test_pattern -EXPORT_SYMBOL vmlinux 0x54668d44 rt_mutex_base_init -EXPORT_SYMBOL vmlinux 0x5475f61b request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x5478b152 tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0x5485603f param_get_hexint -EXPORT_SYMBOL vmlinux 0x54abe4ff dvb_dmx_init -EXPORT_SYMBOL vmlinux 0x54b5bde6 acpi_dev_get_next_match_dev -EXPORT_SYMBOL vmlinux 0x54ba7598 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x54d363e5 ip_tunnel_header_ops -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags -EXPORT_SYMBOL vmlinux 0x54ececcc drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL vmlinux 0x55002e89 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x55116597 kernel_write -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x551f0522 drm_mode_config_reset -EXPORT_SYMBOL vmlinux 0x55312793 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x5542443b drm_flip_work_init -EXPORT_SYMBOL vmlinux 0x554823a5 fs_param_is_blockdev -EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x55625e10 super_setup_bdi -EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x557d45c5 seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x55940126 tcf_idr_create_from_flags -EXPORT_SYMBOL vmlinux 0x559fced5 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL vmlinux 0x55b5b944 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x55b7f9ba iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x55bddb77 tcp_parse_options -EXPORT_SYMBOL vmlinux 0x55bfd340 gro_cells_init -EXPORT_SYMBOL vmlinux 0x55c39c44 ps2_begin_command -EXPORT_SYMBOL vmlinux 0x55ced301 key_task_permission -EXPORT_SYMBOL vmlinux 0x55d0e345 mod_node_page_state -EXPORT_SYMBOL vmlinux 0x55d644b6 genphy_read_status_fixed -EXPORT_SYMBOL vmlinux 0x55db0d85 __breadahead -EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55f9f1b3 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x563391f2 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x56419227 filemap_fault -EXPORT_SYMBOL vmlinux 0x5645fd21 drm_client_framebuffer_create -EXPORT_SYMBOL vmlinux 0x56466e42 ZSTD_CStreamInSize -EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk -EXPORT_SYMBOL vmlinux 0x564c0a52 __scsi_execute -EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register -EXPORT_SYMBOL vmlinux 0x565d502b v4l2_ctrl_handler_init_class -EXPORT_SYMBOL vmlinux 0x566321d2 vfs_readlink -EXPORT_SYMBOL vmlinux 0x5666503d pci_enable_ptm -EXPORT_SYMBOL vmlinux 0x566ba888 cdrom_open -EXPORT_SYMBOL vmlinux 0x566cfac1 __skb_checksum -EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x5689f7f9 dev_uc_add -EXPORT_SYMBOL vmlinux 0x56a4da07 mfd_remove_devices_late -EXPORT_SYMBOL vmlinux 0x56a663e9 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL vmlinux 0x56a83256 kernel_bind -EXPORT_SYMBOL vmlinux 0x56afcbc0 inet_ioctl -EXPORT_SYMBOL vmlinux 0x56b0813d skb_copy_header -EXPORT_SYMBOL vmlinux 0x56b39f1b dst_dev_put -EXPORT_SYMBOL vmlinux 0x56badcd1 unpin_user_page_range_dirty_lock -EXPORT_SYMBOL vmlinux 0x56c023d1 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56ca2fe4 drop_super_exclusive -EXPORT_SYMBOL vmlinux 0x56ca5673 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x56d19190 mii_check_media -EXPORT_SYMBOL vmlinux 0x56d47653 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL vmlinux 0x56e222c8 snd_ctl_notify -EXPORT_SYMBOL vmlinux 0x570108b2 drm_plane_force_disable -EXPORT_SYMBOL vmlinux 0x57196335 drm_dp_downstream_debug -EXPORT_SYMBOL vmlinux 0x57253a64 lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0x5729bd2d __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL vmlinux 0x57405b5e iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x57463f52 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x5756d3b7 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x57698a50 drm_mm_takedown -EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx -EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x579a6c77 __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write -EXPORT_SYMBOL vmlinux 0x57c7bbcb drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL vmlinux 0x57c9b246 pci_enable_msi -EXPORT_SYMBOL vmlinux 0x57e06669 sock_gettstamp -EXPORT_SYMBOL vmlinux 0x57f35b83 __devm_request_region -EXPORT_SYMBOL vmlinux 0x57f389ef jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info -EXPORT_SYMBOL vmlinux 0x57f94cca tcp_add_backlog -EXPORT_SYMBOL vmlinux 0x5811a26b drm_fb_blit_dstclip -EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x582b3490 iio_triggered_buffer_cleanup -EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb -EXPORT_SYMBOL vmlinux 0x582f248e drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL vmlinux 0x5834d346 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x5853d09f tcf_qevent_dump -EXPORT_SYMBOL vmlinux 0x585ae877 nmi_panic -EXPORT_SYMBOL vmlinux 0x586b0c62 drm_master_internal_acquire -EXPORT_SYMBOL vmlinux 0x586e5d72 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x586fdfad of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0x586ff241 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf -EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc -EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x5885ac2e nand_ecc_sw_hamming_calculate -EXPORT_SYMBOL vmlinux 0x58902fa1 nd_device_notify -EXPORT_SYMBOL vmlinux 0x58910283 drm_mode_create_tile_group -EXPORT_SYMBOL vmlinux 0x589ce0de drm_atomic_helper_page_flip_target -EXPORT_SYMBOL vmlinux 0x58a8c4b3 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info -EXPORT_SYMBOL vmlinux 0x58afc8ed __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58d8fcaa drm_dsc_pps_payload_pack -EXPORT_SYMBOL vmlinux 0x58da375c iio_kfifo_allocate -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x590273ee phy_support_asym_pause -EXPORT_SYMBOL vmlinux 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL vmlinux 0x591d81fd scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x591f6125 tcf_classify -EXPORT_SYMBOL vmlinux 0x5921c0d3 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x592df85e vc_cons -EXPORT_SYMBOL vmlinux 0x592f39a8 devm_memremap -EXPORT_SYMBOL vmlinux 0x594389f1 drm_edp_backlight_init -EXPORT_SYMBOL vmlinux 0x594f88db drm_connector_attach_content_protection_property -EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5978b0ef devm_nvmem_unregister -EXPORT_SYMBOL vmlinux 0x5978ef37 vfs_fileattr_get -EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg -EXPORT_SYMBOL vmlinux 0x599f5b1a vfs_llseek -EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node -EXPORT_SYMBOL vmlinux 0x59a2712d raid6_gfinv -EXPORT_SYMBOL vmlinux 0x59a2f0ee packing -EXPORT_SYMBOL vmlinux 0x59b228fa zpool_register_driver -EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59ec13eb component_match_add_release -EXPORT_SYMBOL vmlinux 0x59ef570a netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0x59f03db2 security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 -EXPORT_SYMBOL vmlinux 0x5a03534a add_to_pipe -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a0d0df8 filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0x5a0df5a4 tcp_time_wait -EXPORT_SYMBOL vmlinux 0x5a1c5001 mrmac_pll_rst -EXPORT_SYMBOL vmlinux 0x5a2468a5 tcp_check_req -EXPORT_SYMBOL vmlinux 0x5a26362e devm_aperture_acquire_from_firmware -EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5a3db575 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq -EXPORT_SYMBOL vmlinux 0x5a46aa2d tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a5ac0b2 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x5a5fab8f __mmap_lock_do_trace_start_locking -EXPORT_SYMBOL vmlinux 0x5a6cd70f d_prune_aliases -EXPORT_SYMBOL vmlinux 0x5a7654f2 mii_nway_restart -EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict -EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove -EXPORT_SYMBOL vmlinux 0x5ac78237 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x5ad09267 snd_pcm_new_internal -EXPORT_SYMBOL vmlinux 0x5ad8e81d drm_property_create_signed_range -EXPORT_SYMBOL vmlinux 0x5adaa165 udp_seq_start -EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5ae1c8db xsk_tx_release -EXPORT_SYMBOL vmlinux 0x5ae764de tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x5ae86fc7 mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x5aff492a blk_queue_split -EXPORT_SYMBOL vmlinux 0x5b05958d jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x5b110625 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x5b22046f page_pool_create -EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr -EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax -EXPORT_SYMBOL vmlinux 0x5b3b01c9 vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store -EXPORT_SYMBOL vmlinux 0x5b449598 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x5b45fbe8 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b65f7e3 __phy_read_mmd -EXPORT_SYMBOL vmlinux 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL vmlinux 0x5b6e6c95 __ps2_command -EXPORT_SYMBOL vmlinux 0x5b768f7c dquot_commit -EXPORT_SYMBOL vmlinux 0x5b8e22d2 tcf_action_update_stats -EXPORT_SYMBOL vmlinux 0x5b9316ad sync_blockdev -EXPORT_SYMBOL vmlinux 0x5b9863db tty_name -EXPORT_SYMBOL vmlinux 0x5baab088 tty_register_device -EXPORT_SYMBOL vmlinux 0x5bac5cab pci_select_bars -EXPORT_SYMBOL vmlinux 0x5baee590 drm_gem_prime_mmap -EXPORT_SYMBOL vmlinux 0x5bb1885b blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x5bc8dad0 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x5bd3da08 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create -EXPORT_SYMBOL vmlinux 0x5bddc615 nand_ecc_sw_hamming_correct -EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5be91478 drm_format_plane_width_bytes -EXPORT_SYMBOL vmlinux 0x5bf58f64 mii_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x5c00d810 ZSTD_CDictWorkspaceBound -EXPORT_SYMBOL vmlinux 0x5c0ee969 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c4a6e2f snd_ctl_notify_one -EXPORT_SYMBOL vmlinux 0x5c587e76 dev_addr_del -EXPORT_SYMBOL vmlinux 0x5c5aeb99 mdio_device_register -EXPORT_SYMBOL vmlinux 0x5c60b0ac d_add -EXPORT_SYMBOL vmlinux 0x5c7721ea inet_accept -EXPORT_SYMBOL vmlinux 0x5c978334 pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x5cab04c1 drm_scdc_set_scrambling -EXPORT_SYMBOL vmlinux 0x5cb4162a scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x5cd2083a vfs_create_mount -EXPORT_SYMBOL vmlinux 0x5cd8b3cb drm_mode_is_420_also -EXPORT_SYMBOL vmlinux 0x5cee1f92 key_put -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0x5d06d1db v4l2_ctrl_g_ctrl -EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio -EXPORT_SYMBOL vmlinux 0x5d133256 __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x5d15c9b6 tcf_block_put -EXPORT_SYMBOL vmlinux 0x5d33bcee vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x5d3824eb __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d51f8af drm_kms_helper_hotplug_event -EXPORT_SYMBOL vmlinux 0x5d5322b6 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x5d5c8692 iio_trigger_alloc -EXPORT_SYMBOL vmlinux 0x5d61b22e __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0x5d655c43 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x5d88ca05 drm_dp_read_sink_count -EXPORT_SYMBOL vmlinux 0x5db49677 __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0x5dcab17d devm_memunmap -EXPORT_SYMBOL vmlinux 0x5dccdd46 mmc_is_req_done -EXPORT_SYMBOL vmlinux 0x5dda3f59 drm_dp_read_sink_count_cap -EXPORT_SYMBOL vmlinux 0x5dde31a1 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x5de39ba0 vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0x5de7e572 gic_ipi_send_mask -EXPORT_SYMBOL vmlinux 0x5debcbbd inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x5df3c293 drm_dp_send_query_stream_enc_status -EXPORT_SYMBOL vmlinux 0x5df527ec drm_dp_start_crc -EXPORT_SYMBOL vmlinux 0x5dfc8039 tcp_mtu_to_mss -EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict -EXPORT_SYMBOL vmlinux 0x5e03a851 ip_check_defrag -EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e0d3fe8 __mmap_lock_do_trace_released -EXPORT_SYMBOL vmlinux 0x5e1d8c0f mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue -EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e60c4f7 disk_end_io_acct -EXPORT_SYMBOL vmlinux 0x5e795b63 param_ops_string -EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align -EXPORT_SYMBOL vmlinux 0x5e8a69ef phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x5e941ebb dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5e9f0545 of_n_size_cells -EXPORT_SYMBOL vmlinux 0x5eaa57be drm_plane_create_rotation_property -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x5ecfa7cc vfs_iter_write -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5eed7b73 snd_jack_report -EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x5efb9539 rtnetlink_put_metrics -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 0x5f219bca pci_write_config_byte -EXPORT_SYMBOL vmlinux 0x5f2b1d95 intlog2 -EXPORT_SYMBOL vmlinux 0x5f2ec4da pci_write_config_word -EXPORT_SYMBOL vmlinux 0x5f3adf66 drm_gem_handle_create -EXPORT_SYMBOL vmlinux 0x5f5d2ec5 phy_aneg_done -EXPORT_SYMBOL vmlinux 0x5f63ed66 pci_write_config_dword -EXPORT_SYMBOL vmlinux 0x5f64622e twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f70dae8 __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package -EXPORT_SYMBOL vmlinux 0x5f97817c video_unregister_device -EXPORT_SYMBOL vmlinux 0x5f9876e7 snd_soc_alloc_ac97_component -EXPORT_SYMBOL vmlinux 0x5f98bdb6 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0x5fa8ece7 drm_atomic_helper_damage_merged -EXPORT_SYMBOL vmlinux 0x5faf240e mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x5ffd5162 ptp_find_pin -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x600b47c6 bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0x60138500 mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x6027374f bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x60283a6a param_ops_charp -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x60383310 __register_chrdev -EXPORT_SYMBOL vmlinux 0x60438134 begin_new_exec -EXPORT_SYMBOL vmlinux 0x60448cb4 security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0x604dc9be blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0x6054685c component_match_add_typed -EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x60689f44 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x606a8941 input_get_poll_interval -EXPORT_SYMBOL vmlinux 0x60803c02 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x6086eec4 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x6093cda6 drm_self_refresh_helper_alter_state -EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a3ca81 inode_permission -EXPORT_SYMBOL vmlinux 0x60a41744 reuseport_has_conns_set -EXPORT_SYMBOL vmlinux 0x60b161e0 kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x60be1959 d_tmpfile -EXPORT_SYMBOL vmlinux 0x60c3b9eb pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60eee8ac _dev_alert -EXPORT_SYMBOL vmlinux 0x60fc5d53 snd_pci_quirk_lookup -EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x612acd90 iio_device_get_clock -EXPORT_SYMBOL vmlinux 0x612e7a00 reuseport_alloc -EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get -EXPORT_SYMBOL vmlinux 0x6142fd96 dev_set_alias -EXPORT_SYMBOL vmlinux 0x61577694 ZSTD_compressEnd -EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x615d23ae iterate_fd -EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge -EXPORT_SYMBOL vmlinux 0x61761bc7 nf_log_set -EXPORT_SYMBOL vmlinux 0x61767681 generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0x6179e4ac tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0x617afc58 drm_property_create_enum -EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath -EXPORT_SYMBOL vmlinux 0x6181aec0 dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL vmlinux 0x61830f9e tty_write_room -EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x61921538 bdi_alloc -EXPORT_SYMBOL vmlinux 0x619657dc vfs_rmdir -EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61b3d471 blkdev_put -EXPORT_SYMBOL vmlinux 0x61b76bb9 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61bc566f udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x61cdbb07 flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x61d27b2d d_set_fallthru -EXPORT_SYMBOL vmlinux 0x61d2f21d axienet_phc_index -EXPORT_SYMBOL vmlinux 0x61dc4233 skb_put -EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final -EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61ec3d8f netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0x61ecb4b8 ip_sock_set_tos -EXPORT_SYMBOL vmlinux 0x61ed7349 find_vma -EXPORT_SYMBOL vmlinux 0x61ee253b drm_dp_vsc_sdp_log -EXPORT_SYMBOL vmlinux 0x61f2ab4e ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x61f3239a pnp_release_card_device -EXPORT_SYMBOL vmlinux 0x61fc2beb devfreq_update_target -EXPORT_SYMBOL vmlinux 0x61fcedbf jbd2_fc_end_commit -EXPORT_SYMBOL vmlinux 0x6208b9a2 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x62115f51 get_tree_single -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x624efbcb genphy_read_abilities -EXPORT_SYMBOL vmlinux 0x625ca504 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x62694b83 devm_iounmap -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x6274d6c3 drm_mode_create -EXPORT_SYMBOL vmlinux 0x6275d2ee drm_plane_create_alpha_property -EXPORT_SYMBOL vmlinux 0x627f29fb crypto_sha3_update -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 0x629e9297 pci_release_region -EXPORT_SYMBOL vmlinux 0x62aa700d sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x62b19fa8 snd_timer_stop -EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62d59f62 genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0x62eab365 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x62f78e46 mmc_card_alternative_gpt_sector -EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable -EXPORT_SYMBOL vmlinux 0x630ef4ba mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL vmlinux 0x63359e90 __vfs_setxattr -EXPORT_SYMBOL vmlinux 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL vmlinux 0x6339eede security_inode_init_security -EXPORT_SYMBOL vmlinux 0x633edbd8 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x634be983 drm_color_lut_check -EXPORT_SYMBOL vmlinux 0x634d8411 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x63577782 sock_create -EXPORT_SYMBOL vmlinux 0x6370cc05 snd_timer_global_new -EXPORT_SYMBOL vmlinux 0x63796d23 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x637bc401 dentry_open -EXPORT_SYMBOL vmlinux 0x637fea82 v4l2_g_ext_ctrls -EXPORT_SYMBOL vmlinux 0x638275c4 configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0x63a477fb drm_dp_downstream_min_tmds_clock -EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63b1f225 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x63bea986 poll_initwait -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63c9ceb5 register_sound_special_device -EXPORT_SYMBOL vmlinux 0x63cf992b nonseekable_open -EXPORT_SYMBOL vmlinux 0x63d92227 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x63e0df63 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x6402c8df sha512_block_data_order -EXPORT_SYMBOL vmlinux 0x64077cda drm_crtc_vblank_put -EXPORT_SYMBOL vmlinux 0x640eba22 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x641cdba3 of_graph_get_endpoint_count -EXPORT_SYMBOL vmlinux 0x64244a15 drm_hdcp_update_content_protection -EXPORT_SYMBOL vmlinux 0x6426971b unlock_rename -EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x643f3068 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x6441a949 __snd_pcm_lib_xfer -EXPORT_SYMBOL vmlinux 0x64505ddb mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0x64551cb6 lease_get_mtime -EXPORT_SYMBOL vmlinux 0x64583af6 drm_gem_object_lookup -EXPORT_SYMBOL vmlinux 0x6469bbbe rawnand_sw_hamming_init -EXPORT_SYMBOL vmlinux 0x646ae73c tty_devnum -EXPORT_SYMBOL vmlinux 0x647016f3 of_parse_phandle -EXPORT_SYMBOL vmlinux 0x647ac9e6 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x648002e4 drm_bridge_chain_pre_enable -EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 -EXPORT_SYMBOL vmlinux 0x64823b5d cfi_merge_status -EXPORT_SYMBOL vmlinux 0x64841a6e drm_dp_dpcd_write -EXPORT_SYMBOL vmlinux 0x648a1418 drm_atomic_helper_resume -EXPORT_SYMBOL vmlinux 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x649d9afd drm_bridge_chain_mode_fixup -EXPORT_SYMBOL vmlinux 0x649dd14b dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0x64a2e196 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x64a3b8f9 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x64a93d3a ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64abb7c5 d_drop -EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64c85deb ip_ct_attach -EXPORT_SYMBOL vmlinux 0x64ccf474 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x64e7333d __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x64ec4bdf iget5_locked -EXPORT_SYMBOL vmlinux 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x6513f57b drm_fb_helper_sys_copyarea -EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x6514e62f snd_card_disconnect -EXPORT_SYMBOL vmlinux 0x65171a99 drm_atomic_helper_plane_destroy_state -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 0x654449c3 memset16 -EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem -EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf -EXPORT_SYMBOL vmlinux 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL vmlinux 0x657f03fc amba_find_device -EXPORT_SYMBOL vmlinux 0x6588b14c do_splice_direct -EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x659a91e9 inet6_getname -EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65a1e723 noop_qdisc -EXPORT_SYMBOL vmlinux 0x65afa115 drm_hdmi_avi_infoframe_colorspace -EXPORT_SYMBOL vmlinux 0x65b6b0df input_unregister_handler -EXPORT_SYMBOL vmlinux 0x65ca513c cqhci_pltfm_init -EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict -EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dad3f3 snd_timer_global_register -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65de0617 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x65e57479 dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x65f79590 amba_device_register -EXPORT_SYMBOL vmlinux 0x65f85dd1 thaw_bdev -EXPORT_SYMBOL vmlinux 0x6605f692 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x6626afca down -EXPORT_SYMBOL vmlinux 0x662a073a xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x662c2575 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x66378940 backlight_device_set_brightness -EXPORT_SYMBOL vmlinux 0x663ae0a3 nf_log_unset -EXPORT_SYMBOL vmlinux 0x6656c2c9 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x6662ac9e kern_path_create -EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin -EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x668b19a1 down_read -EXPORT_SYMBOL vmlinux 0x668d5910 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x669e233e tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0x66a50405 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x66b10d4f dev_set_group -EXPORT_SYMBOL vmlinux 0x66b45380 __drm_atomic_helper_disable_plane -EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup -EXPORT_SYMBOL vmlinux 0x66b6bb91 register_snap_client -EXPORT_SYMBOL vmlinux 0x66b72ea4 drm_property_blob_put -EXPORT_SYMBOL vmlinux 0x66d30683 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x66df02bf nd_btt_version -EXPORT_SYMBOL vmlinux 0x66dfb9a8 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x66e4ec3e drm_atomic_helper_check_modeset -EXPORT_SYMBOL vmlinux 0x67035218 drm_dp_dual_mode_detect -EXPORT_SYMBOL vmlinux 0x67067acf sock_sendmsg -EXPORT_SYMBOL vmlinux 0x670a2485 md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0x671b800d unregister_md_personality -EXPORT_SYMBOL vmlinux 0x671f7aa5 ecc_is_key_valid -EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid -EXPORT_SYMBOL vmlinux 0x672201e5 kobject_put -EXPORT_SYMBOL vmlinux 0x67231f25 jbd2_fc_get_buf -EXPORT_SYMBOL vmlinux 0x67326c12 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable -EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x6750600b dvb_generic_ioctl -EXPORT_SYMBOL vmlinux 0x676f9f52 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0x6773e259 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x6784b3f3 drm_atomic_nonblocking_commit -EXPORT_SYMBOL vmlinux 0x67856826 __cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x67a9d675 fault_in_iov_iter_writeable -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 0x68076df9 pci_iounmap -EXPORT_SYMBOL vmlinux 0x6813d0d1 mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0x681b6670 is_firmware_framebuffer -EXPORT_SYMBOL vmlinux 0x681f2f44 flow_block_cb_free -EXPORT_SYMBOL vmlinux 0x681f62c9 mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0x68258307 __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0x6827dbfe path_is_mountpoint -EXPORT_SYMBOL vmlinux 0x682dc3f6 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x68376b03 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x683a9560 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x685578b5 dev_get_mac_address -EXPORT_SYMBOL vmlinux 0x687229de pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x68881710 snd_jack_new -EXPORT_SYMBOL vmlinux 0x688d25b3 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x688e134d xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x688e6f75 sock_pfree -EXPORT_SYMBOL vmlinux 0x68915994 _copy_from_iter -EXPORT_SYMBOL vmlinux 0x6891931c mode_strip_sgid -EXPORT_SYMBOL vmlinux 0x689be0c9 rtc_add_group -EXPORT_SYMBOL vmlinux 0x689e661b tcf_action_exec -EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL vmlinux 0x68ae5922 pci_dev_get -EXPORT_SYMBOL vmlinux 0x68b4207f node_data -EXPORT_SYMBOL vmlinux 0x68b700d7 _dev_warn -EXPORT_SYMBOL vmlinux 0x68c12728 snd_card_new -EXPORT_SYMBOL vmlinux 0x68cad95e d_find_alias -EXPORT_SYMBOL vmlinux 0x68d8dce7 drm_dp_downstream_is_tmds -EXPORT_SYMBOL vmlinux 0x68dcd4ce vme_register_driver -EXPORT_SYMBOL vmlinux 0x68f81ff6 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s -EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0x690c7a0d mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x69211eaa iterate_dir -EXPORT_SYMBOL vmlinux 0x69255f54 snd_pcm_hw_limit_rates -EXPORT_SYMBOL vmlinux 0x692f9ca6 i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x692fb81f may_umount -EXPORT_SYMBOL vmlinux 0x693b2814 input_close_device -EXPORT_SYMBOL vmlinux 0x693d7b2d seq_open_private -EXPORT_SYMBOL vmlinux 0x69585523 __ksize -EXPORT_SYMBOL vmlinux 0x695e7971 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x696eef5a mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad -EXPORT_SYMBOL vmlinux 0x69889fc9 sock_create_kern -EXPORT_SYMBOL vmlinux 0x6995c97d dvb_ca_en50221_frda_irq -EXPORT_SYMBOL vmlinux 0x69a4640d empty_aops -EXPORT_SYMBOL vmlinux 0x69b2723e netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x69cac197 dquot_free_inode -EXPORT_SYMBOL vmlinux 0x69d53cbc posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le -EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69f38847 cpu_hwcap_keys -EXPORT_SYMBOL vmlinux 0x69fa426c qtree_entry_unused -EXPORT_SYMBOL vmlinux 0x69fd813f proc_create_seq_private -EXPORT_SYMBOL vmlinux 0x6a01d4c3 seq_escape_mem -EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a1b4cfd mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0x6a1ff3ca napi_build_skb -EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table -EXPORT_SYMBOL vmlinux 0x6a4bd0d6 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a685605 xfrm4_udp_encap_rcv -EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a81ee19 drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL vmlinux 0x6a8c5f16 sock_set_reuseaddr -EXPORT_SYMBOL vmlinux 0x6a9aa204 filp_open -EXPORT_SYMBOL vmlinux 0x6a9f708a dvb_dmx_swfilter_204 -EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x6aa587f4 mmc_gpio_set_cd_wake -EXPORT_SYMBOL vmlinux 0x6aa99a1e v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL vmlinux 0x6aadb1f4 drm_send_event -EXPORT_SYMBOL vmlinux 0x6ac7a870 drm_dp_pcon_pps_override_buf -EXPORT_SYMBOL vmlinux 0x6ac83cdb dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0x6ace7b9f md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6adfdbe8 xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x6ae04f6f qdisc_reset -EXPORT_SYMBOL vmlinux 0x6ae34ab3 drm_crtc_handle_vblank -EXPORT_SYMBOL vmlinux 0x6ae43a42 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6aeff901 netif_receive_skb -EXPORT_SYMBOL vmlinux 0x6b0617dd dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0x6b0be9c1 drm_prime_gem_destroy -EXPORT_SYMBOL vmlinux 0x6b25408d snd_ctl_free_one -EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b43c0b5 find_inode_rcu -EXPORT_SYMBOL vmlinux 0x6b4b2933 __ioremap -EXPORT_SYMBOL vmlinux 0x6b4f6f69 tty_unthrottle -EXPORT_SYMBOL vmlinux 0x6b508384 setattr_should_drop_suidgid -EXPORT_SYMBOL vmlinux 0x6b5182b8 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x6b53e216 drm_dp_downstream_max_tmds_clock -EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL vmlinux 0x6b78f7da serio_unregister_driver -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 0x6ba32251 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x6ba953f3 drm_dp_mst_put_port_malloc -EXPORT_SYMBOL vmlinux 0x6bb440ce __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x6bb7b243 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc6ef31 misc_register -EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible -EXPORT_SYMBOL vmlinux 0x6bd2ace6 drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL vmlinux 0x6bd73002 udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method -EXPORT_SYMBOL vmlinux 0x6be22d08 phy_suspend -EXPORT_SYMBOL vmlinux 0x6be2abaa drm_scdc_read -EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x6bf3937a xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x6bf94973 rproc_alloc -EXPORT_SYMBOL vmlinux 0x6bfc673d seg6_push_hmac -EXPORT_SYMBOL vmlinux 0x6c087fc4 __find_get_block -EXPORT_SYMBOL vmlinux 0x6c0b4a94 sysmon_register_temp_ops -EXPORT_SYMBOL vmlinux 0x6c0f67b0 pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0x6c16e781 md_handle_request -EXPORT_SYMBOL vmlinux 0x6c19282f sk_reset_timer -EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x6c233c54 f_setown -EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x6c49f646 drm_edp_backlight_disable -EXPORT_SYMBOL vmlinux 0x6c5b953e xp_set_rxq_info -EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x6c84e017 genl_unregister_family -EXPORT_SYMBOL vmlinux 0x6ca99e9f tty_port_close -EXPORT_SYMBOL vmlinux 0x6cb37002 migrate_vma_finalize -EXPORT_SYMBOL vmlinux 0x6cb3e903 security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cba2787 pci_get_device -EXPORT_SYMBOL vmlinux 0x6cbbfc54 __arch_copy_to_user -EXPORT_SYMBOL vmlinux 0x6cc4b80b dm_table_get_size -EXPORT_SYMBOL vmlinux 0x6ccb549d drm_dp_dual_mode_write -EXPORT_SYMBOL vmlinux 0x6ccf27c4 drm_gem_map_detach -EXPORT_SYMBOL vmlinux 0x6cd055f7 drm_writeback_prepare_job -EXPORT_SYMBOL vmlinux 0x6cd8ae34 drm_master_put -EXPORT_SYMBOL vmlinux 0x6cdb9a40 netpoll_send_skb -EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums -EXPORT_SYMBOL vmlinux 0x6cf7f47b snd_unregister_oss_device -EXPORT_SYMBOL vmlinux 0x6d0fa06d jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x6d16b730 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d2d8254 drm_gem_fb_destroy -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d4283d7 mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x6d5ae66e __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x6d5cf39d of_get_cpu_state_node -EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw -EXPORT_SYMBOL vmlinux 0x6d76d39d drm_gem_shmem_purge_locked -EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d7ebbf8 dquot_disable -EXPORT_SYMBOL vmlinux 0x6d9648ab mmc_command_done -EXPORT_SYMBOL vmlinux 0x6d96e815 drm_property_lookup_blob -EXPORT_SYMBOL vmlinux 0x6d9fdbcc inet_frags_init -EXPORT_SYMBOL vmlinux 0x6da467cb pfn_is_map_memory -EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0x6dcaca6f __of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null -EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header -EXPORT_SYMBOL vmlinux 0x6dd2ec59 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x6de07b29 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df8406f filemap_flush -EXPORT_SYMBOL vmlinux 0x6df9f4ae tty_port_put -EXPORT_SYMBOL vmlinux 0x6e0a7ce3 drm_fb_helper_output_poll_changed -EXPORT_SYMBOL vmlinux 0x6e12be4e dev_change_proto_down_reason -EXPORT_SYMBOL vmlinux 0x6e2cc436 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL vmlinux 0x6e43f206 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x6e47c19d mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x6e4b56b5 phy_validate_pause -EXPORT_SYMBOL vmlinux 0x6e4f760f drm_add_edid_modes -EXPORT_SYMBOL vmlinux 0x6e53aa7a inet6_offloads -EXPORT_SYMBOL vmlinux 0x6e551b92 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e771761 drm_dp_mst_connector_late_register -EXPORT_SYMBOL vmlinux 0x6e85bb18 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x6e91b4e5 snd_pcm_kernel_ioctl -EXPORT_SYMBOL vmlinux 0x6e98cf6a netif_rx_any_context -EXPORT_SYMBOL vmlinux 0x6e999e6b mr_table_dump -EXPORT_SYMBOL vmlinux 0x6e9c8e9f of_device_register -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea3a5d5 snd_unregister_device -EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6eb11fc2 netdev_state_change -EXPORT_SYMBOL vmlinux 0x6ec59ccd get_tree_keyed -EXPORT_SYMBOL vmlinux 0x6ec89547 inode_init_once -EXPORT_SYMBOL vmlinux 0x6ed1f096 acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0x6ed4f70e netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x6ed923d8 clk_hw_get_clk -EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL vmlinux 0x6efe1541 dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0x6f04a74a pci_free_irq -EXPORT_SYMBOL vmlinux 0x6f123cbb param_get_bool -EXPORT_SYMBOL vmlinux 0x6f19dcc2 tcf_exts_terse_dump -EXPORT_SYMBOL vmlinux 0x6f265edd is_nd_pfn -EXPORT_SYMBOL vmlinux 0x6f378bbd vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x6f522ebd nand_ecc_init_ctx -EXPORT_SYMBOL vmlinux 0x6f56aa9d reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address -EXPORT_SYMBOL vmlinux 0x6f60c9be scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func -EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats -EXPORT_SYMBOL vmlinux 0x6fb38c26 drm_bridge_attach -EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work -EXPORT_SYMBOL vmlinux 0x6fb842c7 __phy_resume -EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6fbec3d9 drm_crtc_vblank_off -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fd61d05 drm_handle_vblank -EXPORT_SYMBOL vmlinux 0x6fe1db32 drm_atomic_helper_async_check -EXPORT_SYMBOL vmlinux 0x6fe93403 tty_do_resize -EXPORT_SYMBOL vmlinux 0x6ff04516 snd_pcm_stop -EXPORT_SYMBOL vmlinux 0x6fff261f __arch_clear_user -EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x701281f9 padata_alloc_shell -EXPORT_SYMBOL vmlinux 0x70132620 simple_dir_operations -EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier -EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x7038376c __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0x7040917b pcim_iounmap -EXPORT_SYMBOL vmlinux 0x7045424a dqput -EXPORT_SYMBOL vmlinux 0x705150d5 tcf_idr_search -EXPORT_SYMBOL vmlinux 0x7053fa72 drm_dp_get_pcon_max_frl_bw -EXPORT_SYMBOL vmlinux 0x705c3ab7 drm_encoder_init -EXPORT_SYMBOL vmlinux 0x7069f902 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x7075ab1b snd_pcm_hw_rule_noresample -EXPORT_SYMBOL vmlinux 0x7087651a tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x7090d065 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x70aef16b xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x70b9e99d jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0x70c05b57 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x70c71928 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x70cab23d __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL vmlinux 0x70e13e5b jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x70f53694 mdiobb_read -EXPORT_SYMBOL vmlinux 0x71137848 seq_escape -EXPORT_SYMBOL vmlinux 0x711c0533 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712ac8d1 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x712e4382 snd_pcm_hw_constraint_list -EXPORT_SYMBOL vmlinux 0x713fdea4 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x713ffa3f clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x7140d809 finish_no_open -EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb -EXPORT_SYMBOL vmlinux 0x7144596f iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x7165ef11 dev_load -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x7174505e scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x718d134f arp_tbl -EXPORT_SYMBOL vmlinux 0x71a119c2 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71b6fa92 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x71bf30e2 get_vm_area -EXPORT_SYMBOL vmlinux 0x71c015a8 genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x71c56948 tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x71e6f21e jbd2_fc_end_commit_fallback -EXPORT_SYMBOL vmlinux 0x71f6e439 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0x71fb6fef sock_wmalloc -EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x72166c93 tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0x72172aac xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x721ebdc5 is_acpi_device_node -EXPORT_SYMBOL vmlinux 0x7228f0a6 file_ns_capable -EXPORT_SYMBOL vmlinux 0x722f247b register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x72355b62 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x724ed245 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x7254c325 from_kgid_munged -EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x728d8ee9 dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0x7292bdbf drm_dp_downstream_mode -EXPORT_SYMBOL vmlinux 0x7297e42b jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable -EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72be7fe7 __bread_gfp -EXPORT_SYMBOL vmlinux 0x72cee456 drm_i2c_encoder_init -EXPORT_SYMBOL vmlinux 0x72e2f87c dma_pool_create -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x73001398 snd_card_file_remove -EXPORT_SYMBOL vmlinux 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL vmlinux 0x73011e70 __do_once_slow_done -EXPORT_SYMBOL vmlinux 0x7301a210 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x7302c3c9 ip6_frag_next -EXPORT_SYMBOL vmlinux 0x7306fe78 __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x73076315 snd_pci_quirk_lookup_id -EXPORT_SYMBOL vmlinux 0x7310b58b mroute6_is_socket -EXPORT_SYMBOL vmlinux 0x73132b07 i2c_bit_algo -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 0x731e74d3 bdevname -EXPORT_SYMBOL vmlinux 0x7328f52b jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x7342d356 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL vmlinux 0x73477dfb drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL vmlinux 0x735b39bd pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x7366590a jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x737f2998 lookup_one -EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x7384bcf9 __invalidate_device -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 0x73abbbe0 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x73bdca2b tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x73beb63b flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0x740e6954 acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive -EXPORT_SYMBOL vmlinux 0x742469c5 mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes -EXPORT_SYMBOL vmlinux 0x7427caff blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 -EXPORT_SYMBOL vmlinux 0x742b759c nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0x74333d06 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL vmlinux 0x743fa325 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x7445f0b8 reuseport_add_sock -EXPORT_SYMBOL vmlinux 0x745064e9 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x745773b5 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL vmlinux 0x74583a5d input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x746323a4 simple_pin_fs -EXPORT_SYMBOL vmlinux 0x74712489 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL vmlinux 0x74725e69 ZSTD_compressContinue -EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0x747d91df __netif_schedule -EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x74878d4b __check_sticky -EXPORT_SYMBOL vmlinux 0x748f3a41 drm_crtc_send_vblank_event -EXPORT_SYMBOL vmlinux 0x74929a8e __iio_trigger_register -EXPORT_SYMBOL vmlinux 0x7499c3dd __mod_node_page_state -EXPORT_SYMBOL vmlinux 0x74a301dd sk_alloc -EXPORT_SYMBOL vmlinux 0x74b2619c __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL vmlinux 0x74b87b47 skb_split -EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c15151 mmc_retune_release -EXPORT_SYMBOL vmlinux 0x74daea9b d_mark_dontcache -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74eb78b6 param_get_charp -EXPORT_SYMBOL vmlinux 0x74fcea0f pcie_set_mps -EXPORT_SYMBOL vmlinux 0x750c2e93 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x750d441b flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0x7516bb56 drm_connector_attach_hdr_output_metadata_property -EXPORT_SYMBOL vmlinux 0x751a09c1 pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0x75253c00 _dev_notice -EXPORT_SYMBOL vmlinux 0x75272afb input_set_abs_params -EXPORT_SYMBOL vmlinux 0x754fd4d6 udp_gro_complete -EXPORT_SYMBOL vmlinux 0x7558d7ee iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic -EXPORT_SYMBOL vmlinux 0x7560946b netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x7595f9b3 pid_task -EXPORT_SYMBOL vmlinux 0x75adf9a2 tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0x75b32bd5 tcp_mmap -EXPORT_SYMBOL vmlinux 0x75bbb5a9 snd_rawmidi_transmit_empty -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75cc9fe5 devm_drm_of_get_bridge -EXPORT_SYMBOL vmlinux 0x75ce82f7 cad_pid -EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75f66165 kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0x75f937a0 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0x75febe61 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x7612c7c0 vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x76134931 dma_resv_init -EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x763ac9ee sock_i_uid -EXPORT_SYMBOL vmlinux 0x7642f4ab phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x76546364 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x7656f886 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x76659d35 config_item_set_name -EXPORT_SYMBOL vmlinux 0x76674ce9 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x7679907c blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x768eb3c5 ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0x7696619a input_allocate_device -EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76ac4dc8 __devm_of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x76b65275 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76db3df3 dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0x76dda150 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x76e949a1 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x76ef27cb loop_register_transfer -EXPORT_SYMBOL vmlinux 0x76f1092f devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported -EXPORT_SYMBOL vmlinux 0x76ffc8a8 rawnand_dt_parse_gpio_cs -EXPORT_SYMBOL vmlinux 0x7705132c tty_port_init -EXPORT_SYMBOL vmlinux 0x77172007 __frontswap_store -EXPORT_SYMBOL vmlinux 0x7724f9bc flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0x772d3654 __brelse -EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x77335189 jbd2_journal_blocks_per_page -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 0x77483906 param_set_ullong -EXPORT_SYMBOL vmlinux 0x775198b6 drm_framebuffer_plane_height -EXPORT_SYMBOL vmlinux 0x77531f59 reuseport_select_sock -EXPORT_SYMBOL vmlinux 0x77663e75 devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 -EXPORT_SYMBOL vmlinux 0x777a47ff override_creds -EXPORT_SYMBOL vmlinux 0x77806628 inet_release -EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x77912fc6 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x77969aad sock_no_getname -EXPORT_SYMBOL vmlinux 0x77ae2fab genphy_handle_interrupt_no_ack -EXPORT_SYMBOL vmlinux 0x77b4c173 vfs_mkdir -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77bd45f6 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x77cb2fbc km_state_notify -EXPORT_SYMBOL vmlinux 0x77d29b44 pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0x77d78626 sock_wfree -EXPORT_SYMBOL vmlinux 0x77e25734 d_delete -EXPORT_SYMBOL vmlinux 0x77e652b3 setup_new_exec -EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x78065d81 kill_block_super -EXPORT_SYMBOL vmlinux 0x7806f3bd drm_framebuffer_remove -EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x78258f79 mmc_remove_host -EXPORT_SYMBOL vmlinux 0x7832a87f of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x7834df2c ppp_channel_index -EXPORT_SYMBOL vmlinux 0x7837112f __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x785203e9 qdisc_hash_add -EXPORT_SYMBOL vmlinux 0x787903e9 put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x788ed8f3 drm_client_modeset_probe -EXPORT_SYMBOL vmlinux 0x7890df5c scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78bb5b53 drm_mode_config_cleanup -EXPORT_SYMBOL vmlinux 0x78c9ce17 __udp_disconnect -EXPORT_SYMBOL vmlinux 0x78d3eaf8 security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0x78d40cc2 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x78db02ec bioset_init -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x790127f6 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x7903ef89 snd_dma_buffer_mmap -EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x79146ec2 phy_disconnect -EXPORT_SYMBOL vmlinux 0x7922a9bb neigh_table_init -EXPORT_SYMBOL vmlinux 0x7931e1e5 unpin_user_pages -EXPORT_SYMBOL vmlinux 0x7944f66c vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0x7945cb38 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x794a7e3b flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0x7955f4f7 drm_panel_of_backlight -EXPORT_SYMBOL vmlinux 0x797353b3 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin -EXPORT_SYMBOL vmlinux 0x79768276 bio_copy_data -EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79a46664 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x79ca7398 inet6_del_offload -EXPORT_SYMBOL vmlinux 0x79d78016 drm_gem_fb_create_handle -EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug -EXPORT_SYMBOL vmlinux 0x79eee09a rproc_da_to_va -EXPORT_SYMBOL vmlinux 0x79fa90a4 devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x7a114220 __sk_receive_skb -EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a278419 drm_helper_force_disable_all -EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a32f8ce snd_pcm_lib_ioctl -EXPORT_SYMBOL vmlinux 0x7a365568 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x7a394a6a drm_bridge_chain_mode_set -EXPORT_SYMBOL vmlinux 0x7a3ce5d4 release_pages -EXPORT_SYMBOL vmlinux 0x7a4a2c72 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x7a4c2e7d clk_get -EXPORT_SYMBOL vmlinux 0x7a4c93d0 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists -EXPORT_SYMBOL vmlinux 0x7a770c91 mdio_device_remove -EXPORT_SYMBOL vmlinux 0x7a7efa09 mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x7a8987df cfi_build_cmd -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx -EXPORT_SYMBOL vmlinux 0x7a982245 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa8df0d vfs_unlink -EXPORT_SYMBOL vmlinux 0x7ab45d25 dma_fence_array_create -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ac93c8a __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x7aca22ea mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum -EXPORT_SYMBOL vmlinux 0x7ae662f2 page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0x7ae9c882 refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL vmlinux 0x7b0f9368 jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0x7b134199 netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0x7b2169f8 lookup_one_unlocked -EXPORT_SYMBOL vmlinux 0x7b2e2166 drm_vma_node_revoke -EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit -EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem -EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b5f215a pnp_device_attach -EXPORT_SYMBOL vmlinux 0x7b7b8873 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace -EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write -EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bc2f365 rproc_elf_load_segments -EXPORT_SYMBOL vmlinux 0x7bc621f0 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x7bc62c03 dquot_operations -EXPORT_SYMBOL vmlinux 0x7bd101e5 blk_rq_init -EXPORT_SYMBOL vmlinux 0x7bd402a4 unregister_qdisc -EXPORT_SYMBOL vmlinux 0x7bd5ebb5 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x7bddeeaa pci_pme_capable -EXPORT_SYMBOL vmlinux 0x7bf1b050 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x7bf8ff9c mfd_add_devices -EXPORT_SYMBOL vmlinux 0x7c050eb6 video_device_release -EXPORT_SYMBOL vmlinux 0x7c0f0abb inet_frags_fini -EXPORT_SYMBOL vmlinux 0x7c0fbb00 vli_mod_mult_slow -EXPORT_SYMBOL vmlinux 0x7c1349bc vlan_for_each -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c21c0d1 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x7c25e42e snd_ctl_boolean_stereo_info -EXPORT_SYMBOL vmlinux 0x7c3005f4 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c5ea3ad skb_trim -EXPORT_SYMBOL vmlinux 0x7c7f4c15 __genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x7c80f4fe drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL vmlinux 0x7c93d2ce locks_copy_lock -EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL vmlinux 0x7cbd9da5 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x7cbe4f20 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x7ccbcd34 make_kprojid -EXPORT_SYMBOL vmlinux 0x7cd2a431 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x7cd6505e xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -EXPORT_SYMBOL vmlinux 0x7d08e58a write_inode_now -EXPORT_SYMBOL vmlinux 0x7d0932e4 pci_request_selected_regions -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 0x7d3dd4af netlink_capable -EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d5371d1 ip_do_fragment -EXPORT_SYMBOL vmlinux 0x7d55d750 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x7d70fc2a rproc_add -EXPORT_SYMBOL vmlinux 0x7d717f17 vfs_rename -EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x7d8e250a dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x7d94ca8c __vfs_removexattr -EXPORT_SYMBOL vmlinux 0x7da499dd param_set_charp -EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7dc0b071 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x7dc58250 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x7dc790e8 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert -EXPORT_SYMBOL vmlinux 0x7dd043c7 snd_seq_device_new -EXPORT_SYMBOL vmlinux 0x7dd8d6e1 task_work_add -EXPORT_SYMBOL vmlinux 0x7dda0cc0 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x7ddf951b kfree_skb_list -EXPORT_SYMBOL vmlinux 0x7de0d9f5 simple_get_link -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7e01f9e1 seq_pad -EXPORT_SYMBOL vmlinux 0x7e0fef10 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x7e2c4aab kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x7e2e6454 drm_put_dev -EXPORT_SYMBOL vmlinux 0x7e311e41 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e52a484 tty_port_close_end -EXPORT_SYMBOL vmlinux 0x7e637bb3 tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0x7e6b8768 drm_crtc_commit_wait -EXPORT_SYMBOL vmlinux 0x7e74ac24 inode_get_bytes -EXPORT_SYMBOL vmlinux 0x7e80f5d9 snd_rawmidi_transmit_ack -EXPORT_SYMBOL vmlinux 0x7e9875f2 pcie_get_mps -EXPORT_SYMBOL vmlinux 0x7e9ad573 drm_dev_unplug -EXPORT_SYMBOL vmlinux 0x7eadf854 tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0x7eaf7fd2 seq_write -EXPORT_SYMBOL vmlinux 0x7eb9831b drmm_mode_config_init -EXPORT_SYMBOL vmlinux 0x7ec2fc03 drm_edp_backlight_set_level -EXPORT_SYMBOL vmlinux 0x7ed9b73c vfs_parse_fs_param_source -EXPORT_SYMBOL vmlinux 0x7edf470b drm_edid_duplicate -EXPORT_SYMBOL vmlinux 0x7ef280d8 drm_property_create_bool -EXPORT_SYMBOL vmlinux 0x7efdaa74 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL vmlinux 0x7f0030de drm_vblank_work_flush -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f077cd6 processors -EXPORT_SYMBOL vmlinux 0x7f22dc7c request_key_tag -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f297514 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x7f31d788 get_acl -EXPORT_SYMBOL vmlinux 0x7f47552f audit_log_start -EXPORT_SYMBOL vmlinux 0x7f52071a net_dim -EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table -EXPORT_SYMBOL vmlinux 0x7f61364e genlmsg_put -EXPORT_SYMBOL vmlinux 0x7f69710e __dec_node_page_state -EXPORT_SYMBOL vmlinux 0x7f6cf4cb to_nd_dax -EXPORT_SYMBOL vmlinux 0x7f7a4832 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f893e21 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL vmlinux 0x7f94f898 mmc_of_parse_clk_phase -EXPORT_SYMBOL vmlinux 0x7f9ccc83 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x7fad4dd1 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x7fb115ea vme_irq_free -EXPORT_SYMBOL vmlinux 0x7fb76f6d drm_connector_cleanup -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe7625d tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0x7fec086e setattr_copy -EXPORT_SYMBOL vmlinux 0x7ffd39e4 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x8004d53c i2c_transfer -EXPORT_SYMBOL vmlinux 0x8007a3a0 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x8008a7f5 drm_gem_shmem_get_pages -EXPORT_SYMBOL vmlinux 0x802226ed do_clone_file_range -EXPORT_SYMBOL vmlinux 0x80276dc7 snd_rawmidi_transmit_peek -EXPORT_SYMBOL vmlinux 0x8027cd9e fs_context_for_submount -EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x804c43a7 dump_emit -EXPORT_SYMBOL vmlinux 0x806ed881 generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0x8085a28c skb_tx_error -EXPORT_SYMBOL vmlinux 0x8091ecbe acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x80a39dc7 rproc_coredump_set_elf_info -EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d09c0f kthread_bind -EXPORT_SYMBOL vmlinux 0x80d25f18 drm_atomic_helper_bridge_propagate_bus_fmt -EXPORT_SYMBOL vmlinux 0x80d42aeb register_netdev -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0x80f6d8d2 __put_page -EXPORT_SYMBOL vmlinux 0x81031273 phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0x8106095a v4l2_prio_max -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 0x81278b91 v4l2_ctrl_fill -EXPORT_SYMBOL vmlinux 0x81399470 fb_pan_display -EXPORT_SYMBOL vmlinux 0x813f3b19 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x8149f8ca of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page -EXPORT_SYMBOL vmlinux 0x816a12be of_graph_get_remote_endpoint -EXPORT_SYMBOL vmlinux 0x817619fb xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x8176c7cf rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x817d1d71 drm_atomic_helper_bridge_reset -EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0x8184b5c4 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc -EXPORT_SYMBOL vmlinux 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL vmlinux 0x81a2aa90 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq -EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand -EXPORT_SYMBOL vmlinux 0x81b670e6 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x81d7be63 tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0x81d830fd md_update_sb -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81e00117 ping_prot -EXPORT_SYMBOL vmlinux 0x81e48587 dev_driver_string -EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81f59540 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x81fc164a skb_pull -EXPORT_SYMBOL vmlinux 0x8215a3fc pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x821d25ea snd_rawmidi_kernel_open -EXPORT_SYMBOL vmlinux 0x8231313b key_move -EXPORT_SYMBOL vmlinux 0x823d3505 cmxgcr_lock -EXPORT_SYMBOL vmlinux 0x824638f1 sysmon_get_node_value -EXPORT_SYMBOL vmlinux 0x8251ea49 devm_request_resource -EXPORT_SYMBOL vmlinux 0x825f8af3 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x8261eccb ecc_get_curve25519 -EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec -EXPORT_SYMBOL vmlinux 0x826c776e ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x8277600b thermal_zone_device_critical -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82892a9d __traceiter_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x829b6048 drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL vmlinux 0x82b682cd pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82ce479a unlock_page_memcg -EXPORT_SYMBOL vmlinux 0x82d192eb pskb_expand_head -EXPORT_SYMBOL vmlinux 0x82db2eb9 nand_monolithic_read_page_raw -EXPORT_SYMBOL vmlinux 0x82dd9db1 param_ops_bool -EXPORT_SYMBOL vmlinux 0x82f7b1ad netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x82f7c690 snd_pcm_hw_refine -EXPORT_SYMBOL vmlinux 0x82fa4ea2 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x830ad6d9 km_migrate -EXPORT_SYMBOL vmlinux 0x830d7437 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x832f04ae napi_consume_skb -EXPORT_SYMBOL vmlinux 0x83428d66 dma_map_resource -EXPORT_SYMBOL vmlinux 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x835b05bb pci_enable_wake -EXPORT_SYMBOL vmlinux 0x836c1ca6 tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x83835a25 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x838d17fb drm_dp_downstream_id -EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x838fd834 dqget -EXPORT_SYMBOL vmlinux 0x839f56d4 jbd2_journal_submit_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x83a1cd93 get_fs_type -EXPORT_SYMBOL vmlinux 0x83c51bb4 kill_fasync -EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free -EXPORT_SYMBOL vmlinux 0x840bd5b3 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x842dd90c drm_flip_work_commit -EXPORT_SYMBOL vmlinux 0x84422eaa xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0x847083fe phy_start_aneg -EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy -EXPORT_SYMBOL vmlinux 0x848f67f1 drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL vmlinux 0x849174fa inetdev_by_index -EXPORT_SYMBOL vmlinux 0x8493fd83 truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x8496e408 unregister_mtd_chip_driver -EXPORT_SYMBOL vmlinux 0x84a40abf phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0x84a64b85 unix_detach_fds -EXPORT_SYMBOL vmlinux 0x84a709de register_key_type -EXPORT_SYMBOL vmlinux 0x84b6709e tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x84c4040c security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0x84d5f2e6 nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x84e74d8b skb_find_text -EXPORT_SYMBOL vmlinux 0x85042e65 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x8512f971 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x8527d4c4 drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL vmlinux 0x85330334 __netif_napi_del -EXPORT_SYMBOL vmlinux 0x854a4622 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x8550cf79 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x855569e2 drm_modeset_lock_single_interruptible -EXPORT_SYMBOL vmlinux 0x85579d52 page_pool_return_skb_page -EXPORT_SYMBOL vmlinux 0x8563a554 drm_ht_remove -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x8582ebff cpu_all_bits -EXPORT_SYMBOL vmlinux 0x8586fb9f snd_pcm_lib_free_pages -EXPORT_SYMBOL vmlinux 0x85897435 snd_ctl_remove -EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x859cb319 fsync_bdev -EXPORT_SYMBOL vmlinux 0x859d63ef get_unmapped_area -EXPORT_SYMBOL vmlinux 0x85b35acb d_alloc_name -EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen -EXPORT_SYMBOL vmlinux 0x85b557d7 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85d43177 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x85ddfdea security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85e9a1cb sk_stream_error -EXPORT_SYMBOL vmlinux 0x85ed0ef0 rproc_put -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f05846 drm_connector_init -EXPORT_SYMBOL vmlinux 0x85fd0c9e udp6_csum_init -EXPORT_SYMBOL vmlinux 0x8616b9da v4l2_m2m_get_vq -EXPORT_SYMBOL vmlinux 0x862039bd dev_addr_init -EXPORT_SYMBOL vmlinux 0x86261816 drm_gem_fb_vunmap -EXPORT_SYMBOL vmlinux 0x86383db3 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x863af7e4 xp_can_alloc -EXPORT_SYMBOL vmlinux 0x864941ee drm_plane_get_damage_clips_count -EXPORT_SYMBOL vmlinux 0x86562d69 md_write_start -EXPORT_SYMBOL vmlinux 0x865a5f47 phy_drivers_register -EXPORT_SYMBOL vmlinux 0x867dd4c8 max8998_update_reg -EXPORT_SYMBOL vmlinux 0x867f61a0 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL vmlinux 0x8680b16c ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x869020a7 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL vmlinux 0x869939c2 vfs_getattr -EXPORT_SYMBOL vmlinux 0x86a1397f pipe_unlock -EXPORT_SYMBOL vmlinux 0x86b519ed is_bad_inode -EXPORT_SYMBOL vmlinux 0x86b58c03 seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0x86b72e99 blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0x86ca9dd4 fget -EXPORT_SYMBOL vmlinux 0x86d4a661 param_set_invbool -EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant -EXPORT_SYMBOL vmlinux 0x86e9ee3a __i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x86fa18e3 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x8702882e scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL vmlinux 0x87489aee iov_iter_init -EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed -EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x8781b84a vlan_vid_del -EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream -EXPORT_SYMBOL vmlinux 0x87847918 dec_node_page_state -EXPORT_SYMBOL vmlinux 0x878d0c7b jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x878f0236 uart_get_divisor -EXPORT_SYMBOL vmlinux 0x879b2bf6 pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0x87a4570e request_partial_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x87a702ba nand_ecc_get_on_die_hw_engine -EXPORT_SYMBOL vmlinux 0x87a9595b mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x87abe4f9 register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87c7f649 netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0x87d01c3d __frontswap_load -EXPORT_SYMBOL vmlinux 0x87d14bd1 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x87da644e param_get_ushort -EXPORT_SYMBOL vmlinux 0x87ebfc85 devm_clk_put -EXPORT_SYMBOL vmlinux 0x87f65902 fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit -EXPORT_SYMBOL vmlinux 0x88155dc6 netlink_net_capable -EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate -EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x88568051 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x886765eb jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x8879d536 drm_connector_has_possible_encoder -EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x889d76fa drm_any_plane_has_format -EXPORT_SYMBOL vmlinux 0x88a87a2d cpumask_next -EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x88cd8a24 tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88e4afce tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x88e7bcbd put_cmsg -EXPORT_SYMBOL vmlinux 0x88eab703 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x89032f16 napi_disable -EXPORT_SYMBOL vmlinux 0x89323a2e blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x89419f96 __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy -EXPORT_SYMBOL vmlinux 0x894b1f57 drm_dp_get_adjust_request_post_cursor -EXPORT_SYMBOL vmlinux 0x89616f16 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x89652300 kthread_create_worker -EXPORT_SYMBOL vmlinux 0x89768383 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x8991f0cb register_mii_timestamper -EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x89a0cd52 crc32c_impl -EXPORT_SYMBOL vmlinux 0x89a0f72d dev_mc_init -EXPORT_SYMBOL vmlinux 0x89c227d5 phy_get_pause -EXPORT_SYMBOL vmlinux 0x89c7e1d5 tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL vmlinux 0x89ef4dbd pnp_get_resource -EXPORT_SYMBOL vmlinux 0x89fa6300 sk_error_report -EXPORT_SYMBOL vmlinux 0x8a082f31 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0x8a0cda61 v4l2_async_notifier_register -EXPORT_SYMBOL vmlinux 0x8a13ae7d filemap_fdatawrite_wbc -EXPORT_SYMBOL vmlinux 0x8a16c728 drm_i2c_encoder_detect -EXPORT_SYMBOL vmlinux 0x8a1c5d76 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x8a2b9cc3 __break_lease -EXPORT_SYMBOL vmlinux 0x8a3b1d35 rproc_del -EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue -EXPORT_SYMBOL vmlinux 0x8a48c429 pci_read_config_word -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a49fa17 unregister_cdrom -EXPORT_SYMBOL vmlinux 0x8a51bfe7 skb_tunnel_check_pmtu -EXPORT_SYMBOL vmlinux 0x8a640c60 __devm_release_region -EXPORT_SYMBOL vmlinux 0x8a6ad9f4 drm_atomic_get_plane_state -EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a93dd37 inet_add_offload -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8ab8c897 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x8abcbfe6 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x8aeb7ad8 of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0x8af135cf page_readlink -EXPORT_SYMBOL vmlinux 0x8af2d392 drm_modeset_lock_all -EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0x8b22ad2a inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0x8b37f3df xdma_submit -EXPORT_SYMBOL vmlinux 0x8b3bd042 mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x8b54038f __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL vmlinux 0x8b5d04f1 sock_set_keepalive -EXPORT_SYMBOL vmlinux 0x8b5eb6e9 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x8b60da8e vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b68991b of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x8b786ebc import_single_range -EXPORT_SYMBOL vmlinux 0x8b7b0ac3 dev_mc_flush -EXPORT_SYMBOL vmlinux 0x8b7ca0e5 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b87f8de phy_do_ioctl -EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx -EXPORT_SYMBOL vmlinux 0x8ba1138a filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x8ba44c40 napi_complete_done -EXPORT_SYMBOL vmlinux 0x8ba902a2 drm_noop -EXPORT_SYMBOL vmlinux 0x8bc2eb43 dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0x8bcebf75 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x8bcf3fd4 icmp_ndo_send -EXPORT_SYMBOL vmlinux 0x8bd240f6 v4l2_query_ext_ctrl -EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x8be0029b nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable -EXPORT_SYMBOL vmlinux 0x8bf5f9ed netlink_ack -EXPORT_SYMBOL vmlinux 0x8c107138 vme_bus_num -EXPORT_SYMBOL vmlinux 0x8c112bab netdev_update_features -EXPORT_SYMBOL vmlinux 0x8c26926c vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x8c28525a tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x8c29c986 xattr_supported_namespace -EXPORT_SYMBOL vmlinux 0x8c2a2a43 drm_fb_helper_sys_write -EXPORT_SYMBOL vmlinux 0x8c50e709 eth_type_trans -EXPORT_SYMBOL vmlinux 0x8c54b0f8 dvb_dmx_swfilter -EXPORT_SYMBOL vmlinux 0x8c683fcd posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x8c6d2034 drm_gem_shmem_madvise -EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c8c2549 xilinx_xdma_set_earlycb -EXPORT_SYMBOL vmlinux 0x8c98a507 drm_gem_dmabuf_export -EXPORT_SYMBOL vmlinux 0x8c9cf10f input_release_device -EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error -EXPORT_SYMBOL vmlinux 0x8ca2d9e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid -EXPORT_SYMBOL vmlinux 0x8cb31ec1 v4l2_ctrl_notify -EXPORT_SYMBOL vmlinux 0x8cb74ca2 xlnk_eng_request_by_name -EXPORT_SYMBOL vmlinux 0x8cba8ed4 bio_advance -EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin -EXPORT_SYMBOL vmlinux 0x8cc82f5c generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8cf42d5f dvb_register_adapter -EXPORT_SYMBOL vmlinux 0x8cfc5d20 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x8d0458c5 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x8d0ae541 flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0x8d0c092e tcp_release_cb -EXPORT_SYMBOL vmlinux 0x8d0f6b2b skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0x8d147f74 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x8d15f9a3 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x8d187688 skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0x8d2382a3 drm_gem_dmabuf_vunmap -EXPORT_SYMBOL vmlinux 0x8d23b48d rproc_shutdown -EXPORT_SYMBOL vmlinux 0x8d343536 drm_connector_list_iter_next -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d64f362 kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x8d652cb1 ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL vmlinux 0x8d71abd5 security_sock_graft -EXPORT_SYMBOL vmlinux 0x8d72789e drm_edid_is_valid -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d7e5bcb netif_device_attach -EXPORT_SYMBOL vmlinux 0x8d82d12e d_lookup -EXPORT_SYMBOL vmlinux 0x8d8a6f85 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x8da006f8 md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x8da57255 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x8da6585d __stack_chk_fail -EXPORT_SYMBOL vmlinux 0x8daaa7e1 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x8dabde6b get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0x8dac5957 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8df1aba1 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum -EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv -EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8e05099c phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x8e12825a tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy -EXPORT_SYMBOL vmlinux 0x8e1a8c59 of_match_device -EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x8e29cf90 xilinx_xdma_set_fid -EXPORT_SYMBOL vmlinux 0x8e310f4b dev_open -EXPORT_SYMBOL vmlinux 0x8e3704ce finish_open -EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable -EXPORT_SYMBOL vmlinux 0x8e47c935 drm_dp_send_power_updown_phy -EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma -EXPORT_SYMBOL vmlinux 0x8e50d051 flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0x8e550a5e dev_alloc_name -EXPORT_SYMBOL vmlinux 0x8e7c5008 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x8e7ef279 devm_release_resource -EXPORT_SYMBOL vmlinux 0x8e8abb56 __v4l2_ctrl_grab -EXPORT_SYMBOL vmlinux 0x8e908eeb bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0x8e92d3fe rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8e9b5312 of_find_mipi_dsi_host_by_node -EXPORT_SYMBOL vmlinux 0x8eadd756 input_setup_polling -EXPORT_SYMBOL vmlinux 0x8ec6a559 drm_gem_prime_import_dev -EXPORT_SYMBOL vmlinux 0x8ec84df1 scmd_printk -EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL vmlinux 0x8ed162e5 udp_seq_ops -EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f03f34d mpage_writepage -EXPORT_SYMBOL vmlinux 0x8f048697 pci_request_regions -EXPORT_SYMBOL vmlinux 0x8f10f3c3 drm_framebuffer_lookup -EXPORT_SYMBOL vmlinux 0x8f584e39 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major -EXPORT_SYMBOL vmlinux 0x8f5cd6f3 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0x8f675135 call_fib_notifiers -EXPORT_SYMBOL vmlinux 0x8f7a1ef2 d_move -EXPORT_SYMBOL vmlinux 0x8f8230cb drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find -EXPORT_SYMBOL vmlinux 0x8fb819f4 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x8fb83745 of_match_node -EXPORT_SYMBOL vmlinux 0x8fbc6414 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x8fc0bb44 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin -EXPORT_SYMBOL vmlinux 0x8fd3e80c phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0x8fd81a0e __skb_ext_del -EXPORT_SYMBOL vmlinux 0x8fdb0752 abort_creds -EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit -EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x90051e88 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x9012503b of_graph_get_port_parent -EXPORT_SYMBOL vmlinux 0x90287837 kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0x902a293d v4l2_ctrl_auto_cluster -EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get -EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy -EXPORT_SYMBOL vmlinux 0x904602e5 configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x906d73b5 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x90789959 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x907ea00e set_security_override -EXPORT_SYMBOL vmlinux 0x908e5601 cpu_hwcaps -EXPORT_SYMBOL vmlinux 0x90904fdd dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x9093ac47 pci_get_slot -EXPORT_SYMBOL vmlinux 0x90a7436c drm_panel_bridge_connector -EXPORT_SYMBOL vmlinux 0x90ac5550 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x90ad6ead __mod_lruvec_page_state -EXPORT_SYMBOL vmlinux 0x90bfc510 __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0x90e16457 set_binfmt -EXPORT_SYMBOL vmlinux 0x90e273e2 cred_fscmp -EXPORT_SYMBOL vmlinux 0x90f833b3 drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL vmlinux 0x90fae3c1 drm_crtc_from_index -EXPORT_SYMBOL vmlinux 0x9104c0b5 sock_no_accept -EXPORT_SYMBOL vmlinux 0x9105b014 drm_dp_mst_dump_topology -EXPORT_SYMBOL vmlinux 0x910a2fad security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x91103098 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc -EXPORT_SYMBOL vmlinux 0x9119122d drm_gem_simple_kms_cleanup_shadow_fb -EXPORT_SYMBOL vmlinux 0x911f1f58 drm_atomic_add_affected_connectors -EXPORT_SYMBOL vmlinux 0x9132fbeb generic_block_bmap -EXPORT_SYMBOL vmlinux 0x913cb5fd dev_add_pack -EXPORT_SYMBOL vmlinux 0x9147e2e5 of_root -EXPORT_SYMBOL vmlinux 0x91597cf7 vfs_tmpfile -EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x916bf5b3 nd_device_unregister -EXPORT_SYMBOL vmlinux 0x917743ae of_drm_get_panel_orientation -EXPORT_SYMBOL vmlinux 0x917abc40 xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0x9189c08d netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x919b7576 drm_atomic_get_new_bridge_state -EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 -EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x91a6794b dvb_ringbuffer_read_user -EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91c5a6af jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x91f1ab23 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x91f2176f snd_pcm_hw_param_first -EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x91fe0a32 xfrm_trans_queue_net -EXPORT_SYMBOL vmlinux 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL vmlinux 0x921b07b1 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x922d1336 proc_remove -EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x9231355c __v4l2_ctrl_modify_range -EXPORT_SYMBOL vmlinux 0x92345bfe qdisc_hash_del -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x92454015 vfs_symlink -EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait -EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x925f8cf7 ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x9263a063 dvb_dmx_release -EXPORT_SYMBOL vmlinux 0x9263b417 ecc_point_mult_shamir -EXPORT_SYMBOL vmlinux 0x92668805 vli_cmp -EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool -EXPORT_SYMBOL vmlinux 0x92802326 drm_av_sync_delay -EXPORT_SYMBOL vmlinux 0x92867538 config_group_init -EXPORT_SYMBOL vmlinux 0x928c0fec nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x92997ed8 _printk -EXPORT_SYMBOL vmlinux 0x92a660a4 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table -EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92d426de drm_format_info_block_height -EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq -EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout -EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92ef02f5 input_set_keycode -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x92fe8d70 dst_alloc -EXPORT_SYMBOL vmlinux 0x92fef663 devfreq_add_device -EXPORT_SYMBOL vmlinux 0x93012997 iio_read_const_attr -EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x930e7909 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x9312dd28 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x9318d4dd crypto_sm3_update -EXPORT_SYMBOL vmlinux 0x9328be39 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL vmlinux 0x933537ad __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x933869bf inet_bind -EXPORT_SYMBOL vmlinux 0x935d624f rproc_set_firmware -EXPORT_SYMBOL vmlinux 0x93669390 drm_mode_is_420_only -EXPORT_SYMBOL vmlinux 0x9373530f phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x9375b9f6 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x93a5d776 __lock_page -EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93a97ac9 cdev_del -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93c5f5e7 generic_copy_file_range -EXPORT_SYMBOL vmlinux 0x93c6f16e snd_timer_notify -EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all -EXPORT_SYMBOL vmlinux 0x93f20225 mr_table_alloc -EXPORT_SYMBOL vmlinux 0x93f2fe7a kill_pid -EXPORT_SYMBOL vmlinux 0x94098ff8 snd_interval_list -EXPORT_SYMBOL vmlinux 0x940b015f drm_gem_prepare_shadow_fb -EXPORT_SYMBOL vmlinux 0x941b33d0 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x943681a0 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages -EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x944fc95b pnp_possible_config -EXPORT_SYMBOL vmlinux 0x947419ac arp_create -EXPORT_SYMBOL vmlinux 0x9476fc7d xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x94788649 md_finish_reshape -EXPORT_SYMBOL vmlinux 0x9479396d nand_ecc_finish_io_req -EXPORT_SYMBOL vmlinux 0x9479ec6c sg_miter_start -EXPORT_SYMBOL vmlinux 0x947b11e2 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x947b8154 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x9487d3e1 ns_capable -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94a8782f ethtool_notify -EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo -EXPORT_SYMBOL vmlinux 0x94bde8a1 par_io_of_config -EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94d13732 qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0x94e481cf ZSTD_adjustCParams -EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier -EXPORT_SYMBOL vmlinux 0x94ea89d0 snd_card_set_id -EXPORT_SYMBOL vmlinux 0x94fc49a7 netif_skb_features -EXPORT_SYMBOL vmlinux 0x94ffa544 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x9508e3fd fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x950d16f3 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x9523eeb8 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x9535ff56 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc -EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x955179d5 kernel_read -EXPORT_SYMBOL vmlinux 0x9561bbb1 fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0x95687498 page_pool_put_page -EXPORT_SYMBOL vmlinux 0x957d22d2 cont_write_begin -EXPORT_SYMBOL vmlinux 0x9580be44 drm_crtc_vblank_helper_get_vblank_timestamp -EXPORT_SYMBOL vmlinux 0x9583ec81 devm_of_find_backlight -EXPORT_SYMBOL vmlinux 0x9593fa34 fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0x959d2fd5 migrate_page_states -EXPORT_SYMBOL vmlinux 0x95a50798 sock_bind_add -EXPORT_SYMBOL vmlinux 0x95a5321d xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table -EXPORT_SYMBOL vmlinux 0x95be9c00 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x95c3cccb cfb_imageblit -EXPORT_SYMBOL vmlinux 0x95c6d08f phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0x95dbc76d drm_ht_create -EXPORT_SYMBOL vmlinux 0x95e31e42 dvb_dmxdev_release -EXPORT_SYMBOL vmlinux 0x95f3a9b3 get_tree_nodev -EXPORT_SYMBOL vmlinux 0x95fc79da page_pool_destroy -EXPORT_SYMBOL vmlinux 0x960ed143 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x961ec1b8 dquot_get_next_id -EXPORT_SYMBOL vmlinux 0x9629aeb4 netdev_notice -EXPORT_SYMBOL vmlinux 0x96512668 param_set_uint -EXPORT_SYMBOL vmlinux 0x96683b50 rtnl_nla_parse_ifinfomsg -EXPORT_SYMBOL vmlinux 0x96755b2f drm_dp_aux_unregister -EXPORT_SYMBOL vmlinux 0x96812793 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x9683f247 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL vmlinux 0x96848186 scnprintf -EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr -EXPORT_SYMBOL vmlinux 0x968937f1 snd_rawmidi_proceed -EXPORT_SYMBOL vmlinux 0x9690e197 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96b2cb77 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96ce7601 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x96e0162a jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x96f1c83f neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x96f5dbda iget_locked -EXPORT_SYMBOL vmlinux 0x96f79e69 iio_trigger_poll_chained -EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x9700780b dma_resv_fini -EXPORT_SYMBOL vmlinux 0x970340e8 dvb_register_frontend -EXPORT_SYMBOL vmlinux 0x973e2229 drm_format_info_min_pitch -EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x974674ac pcim_set_mwi -EXPORT_SYMBOL vmlinux 0x9746b4d8 fs_param_is_u64 -EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x975ffbaf textsearch_destroy -EXPORT_SYMBOL vmlinux 0x97615701 bio_free_pages -EXPORT_SYMBOL vmlinux 0x97696c04 fwnode_mdio_find_device -EXPORT_SYMBOL vmlinux 0x97735688 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x9773824f netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x97852220 kern_path -EXPORT_SYMBOL vmlinux 0x97867bb0 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x979198ea param_get_byte -EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync -EXPORT_SYMBOL vmlinux 0x979f39a8 hid_bus_type -EXPORT_SYMBOL vmlinux 0x97a15673 sk_stop_timer -EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97a95514 unlock_buffer -EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97af241b mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x97ba3d9a thaw_super -EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97cd8ce4 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x97d0a49d unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x97d90e47 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x97e2789a commit_creds -EXPORT_SYMBOL vmlinux 0x97eb3399 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x97ffb4ae drm_prime_pages_to_sg -EXPORT_SYMBOL vmlinux 0x9806dae5 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x9806fd44 km_state_expired -EXPORT_SYMBOL vmlinux 0x9808835e of_get_mac_address -EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x982a60a6 sk_free -EXPORT_SYMBOL vmlinux 0x982c29e3 inet_del_protocol -EXPORT_SYMBOL vmlinux 0x983f53a8 snd_sgbuf_get_page -EXPORT_SYMBOL vmlinux 0x9852cc7d devm_free_irq -EXPORT_SYMBOL vmlinux 0x9855ef8f devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x9872980c __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL vmlinux 0x98af2de7 generic_permission -EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98ceff7a fb_show_logo -EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen -EXPORT_SYMBOL vmlinux 0x98d8d717 set_nlink -EXPORT_SYMBOL vmlinux 0x98e093d6 of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x98e1d7f2 put_ipc_ns -EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98e5cdf5 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x98eca672 ps2_drain -EXPORT_SYMBOL vmlinux 0x98facdd8 get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x991854a9 tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0x991abf89 kthread_blkcg -EXPORT_SYMBOL vmlinux 0x992367ae pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0x992a33c3 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x993ad9e5 v4l2_ctrl_new_std -EXPORT_SYMBOL vmlinux 0x994084c4 v4l2_queryctrl -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x9957423e dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x995a6c0d nand_ecc_sw_hamming_get_engine -EXPORT_SYMBOL vmlinux 0x9972976d mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x9996d19c kobject_set_name -EXPORT_SYMBOL vmlinux 0x99971d89 scsi_add_device -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x999eb83b security_inode_copy_up -EXPORT_SYMBOL vmlinux 0x99a42638 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x99a95531 v4l2_async_subdev_notifier_register -EXPORT_SYMBOL vmlinux 0x99ad46cf phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL vmlinux 0x99ca560b __ip_options_compile -EXPORT_SYMBOL vmlinux 0x99cce1a9 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99d65493 sk_mc_loop -EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99de9cf8 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x99f1e0c2 textsearch_register -EXPORT_SYMBOL vmlinux 0x99f310bd inet6_release -EXPORT_SYMBOL vmlinux 0x99f7371c refcount_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x99fa6f88 drm_atomic_state_clear -EXPORT_SYMBOL vmlinux 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL vmlinux 0x99fe48fc sk_stop_timer_sync -EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x9a169913 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x9a1700ec drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a221575 iov_iter_xarray -EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x9a519796 console_stop -EXPORT_SYMBOL vmlinux 0x9a53cae6 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a618c04 generic_writepages -EXPORT_SYMBOL vmlinux 0x9a6a8909 ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x9a8f04da jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x9a9738d9 kmem_cache_create -EXPORT_SYMBOL vmlinux 0x9aa2383d devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0x9aa27bbe drm_wait_one_vblank -EXPORT_SYMBOL vmlinux 0x9aa5055c drm_dp_remote_aux_init -EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9ae7b675 drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL vmlinux 0x9af51420 llc_add_pack -EXPORT_SYMBOL vmlinux 0x9b0ac115 dma_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x9b1175e9 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x9b125842 flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b285573 drm_match_cea_mode -EXPORT_SYMBOL vmlinux 0x9b2b308a netlink_set_err -EXPORT_SYMBOL vmlinux 0x9b2d2585 xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0x9b2f3a0f vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b37f0a1 dev_get_stats -EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b4ba770 md_cluster_ops -EXPORT_SYMBOL vmlinux 0x9b4e9906 ip6_frag_init -EXPORT_SYMBOL vmlinux 0x9b4fc3ed vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x9b6ae3ea filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x9b7970c1 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x9b8a53f5 drm_ht_just_insert_please -EXPORT_SYMBOL vmlinux 0x9b8e37a3 locks_init_lock -EXPORT_SYMBOL vmlinux 0x9b95c885 drm_mode_match -EXPORT_SYMBOL vmlinux 0x9bacb0fa serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0x9bcc0a19 amba_release_regions -EXPORT_SYMBOL vmlinux 0x9bdbdc01 drm_mode_object_get -EXPORT_SYMBOL vmlinux 0x9bffbe74 drm_gem_private_object_init -EXPORT_SYMBOL vmlinux 0x9c0b4cd3 rawnand_sw_hamming_calculate -EXPORT_SYMBOL vmlinux 0x9c0d9923 of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node -EXPORT_SYMBOL vmlinux 0x9c1720c6 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0x9c1e62d5 get_user_pages_remote -EXPORT_SYMBOL vmlinux 0x9c408c45 input_unregister_device -EXPORT_SYMBOL vmlinux 0x9c415323 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL vmlinux 0x9c440739 input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0x9c4bf984 udp_prot -EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs -EXPORT_SYMBOL vmlinux 0x9c5af505 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x9c5c635d mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0x9c5d5b94 crc8 -EXPORT_SYMBOL vmlinux 0x9c5e52b8 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x9c6d1026 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x9c779e05 bh_submit_read -EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9c8b7f78 phy_attached_print -EXPORT_SYMBOL vmlinux 0x9c962183 udp_seq_next -EXPORT_SYMBOL vmlinux 0x9ca97c3d ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cafccdf drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL vmlinux 0x9cb52de3 ipv6_dev_find -EXPORT_SYMBOL vmlinux 0x9cbe45bc drm_gem_shmem_pin -EXPORT_SYMBOL vmlinux 0x9cc227eb __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9cd3ca2e drm_probe_ddc -EXPORT_SYMBOL vmlinux 0x9cd80417 snd_pcm_hw_constraint_step -EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl -EXPORT_SYMBOL vmlinux 0x9cddfc74 drm_crtc_helper_set_mode -EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9ce050be drm_mode_copy -EXPORT_SYMBOL vmlinux 0x9cf49aae bdev_read_only -EXPORT_SYMBOL vmlinux 0x9d0ccf6f dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d10d5fa scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x9d131a89 textsearch_prepare -EXPORT_SYMBOL vmlinux 0x9d15a6b6 sysmon_unregister_temp_ops -EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy -EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d463cea tcf_qevent_destroy -EXPORT_SYMBOL vmlinux 0x9d471d1f drm_fb_memcpy_dstclip -EXPORT_SYMBOL vmlinux 0x9d5a023b iov_iter_npages -EXPORT_SYMBOL vmlinux 0x9d5f9b7f rawnand_sw_bch_init -EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x9d65477c of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0x9d83ea2f vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x9d868017 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context -EXPORT_SYMBOL vmlinux 0x9dac23bf seq_vprintf -EXPORT_SYMBOL vmlinux 0x9db67bce v4l2_subdev_call_wrappers -EXPORT_SYMBOL vmlinux 0x9dd3577b snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL vmlinux 0x9e015a23 pci_restore_state -EXPORT_SYMBOL vmlinux 0x9e01a86e md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x9e06abb3 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 -EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e1d6003 iget_failed -EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0x9e2b3b4c mmc_request_done -EXPORT_SYMBOL vmlinux 0x9e2e6ad8 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e5430e8 tcf_idr_release -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e81d9bb drm_atomic_check_only -EXPORT_SYMBOL vmlinux 0x9e83ea81 __neigh_create -EXPORT_SYMBOL vmlinux 0x9e8af55e skb_eth_push -EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup -EXPORT_SYMBOL vmlinux 0x9eaf6121 snd_pcm_mmap_data -EXPORT_SYMBOL vmlinux 0x9ebba417 drm_detect_monitor_audio -EXPORT_SYMBOL vmlinux 0x9ebde852 drm_modeset_lock_all_ctx -EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9eca80ca dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x9eca9495 drm_dev_enter -EXPORT_SYMBOL vmlinux 0x9ed53806 flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0x9ed7c847 brcmstb_get_family_id -EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9f0e6bb0 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x9f19d4c6 drm_kms_helper_poll_disable -EXPORT_SYMBOL vmlinux 0x9f281fe2 mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0x9f331a25 rproc_mem_entry_init -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 0x9f61af9e flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0x9f64210f devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0x9f65c857 ZSTD_checkCParams -EXPORT_SYMBOL vmlinux 0x9f6efabd vli_sub -EXPORT_SYMBOL vmlinux 0x9f75fe2c dma_async_device_register -EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9f9b1fdd ip6_output -EXPORT_SYMBOL vmlinux 0x9fa119f7 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL vmlinux 0x9fa4fd11 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fafeb94 drm_add_override_edid_modes -EXPORT_SYMBOL vmlinux 0x9fba672d bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x9fbe1d24 would_dump -EXPORT_SYMBOL vmlinux 0x9fc6ab40 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL vmlinux 0x9fc7bf6c build_skb -EXPORT_SYMBOL vmlinux 0x9fdbcaa7 rproc_report_crash -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fe96ae9 pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0x9feb0834 __set_page_dirty_no_writeback -EXPORT_SYMBOL vmlinux 0x9fecf4f0 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa0133f9a cpumask_any_and_distribute -EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0xa022c739 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xa033d747 next_arg -EXPORT_SYMBOL vmlinux 0xa0350621 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa046cca7 drm_atomic_helper_shutdown -EXPORT_SYMBOL vmlinux 0xa04d0bc8 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0xa0509454 drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL vmlinux 0xa057b7bc mdio_device_free -EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute -EXPORT_SYMBOL vmlinux 0xa05e1063 mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL vmlinux 0xa0786145 to_nd_btt -EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr -EXPORT_SYMBOL vmlinux 0xa07b2bdc dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa088a777 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0xa08b4b1b __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa09a329f vme_slave_request -EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0b220e1 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xa0b34e91 config_group_find_item -EXPORT_SYMBOL vmlinux 0xa0bb3ac5 cdev_add -EXPORT_SYMBOL vmlinux 0xa0c1384c configfs_unregister_group -EXPORT_SYMBOL vmlinux 0xa0c43d68 drm_connector_set_link_status_property -EXPORT_SYMBOL vmlinux 0xa0d59b85 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0db242d snd_rawmidi_set_ops -EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function -EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa101dd49 udp_disconnect -EXPORT_SYMBOL vmlinux 0xa1070b95 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa10ca1ef skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0xa10cfd87 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0xa1123668 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL vmlinux 0xa119ba1e dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xa11c4ade dev_pm_opp_unregister_notifier -EXPORT_SYMBOL vmlinux 0xa12057e8 drm_bridge_chain_post_disable -EXPORT_SYMBOL vmlinux 0xa122b24a bio_init -EXPORT_SYMBOL vmlinux 0xa13a5430 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL vmlinux 0xa13e780a gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xa155c071 ZSTD_compressBegin_usingDict -EXPORT_SYMBOL vmlinux 0xa1687b3b scsi_device_resume -EXPORT_SYMBOL vmlinux 0xa17dcb0d blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0xa18aabe8 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL vmlinux 0xa191c0f2 scsi_scan_host -EXPORT_SYMBOL vmlinux 0xa1988421 neigh_update -EXPORT_SYMBOL vmlinux 0xa19b0b07 submit_bio_wait -EXPORT_SYMBOL vmlinux 0xa1aee859 submit_bh -EXPORT_SYMBOL vmlinux 0xa1afcbe3 sock_i_ino -EXPORT_SYMBOL vmlinux 0xa1be3216 dma_map_page_attrs -EXPORT_SYMBOL vmlinux 0xa1d8e0be scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xa1de7ce0 follow_down -EXPORT_SYMBOL vmlinux 0xa1e73556 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0xa1f9841a drm_crtc_vblank_restore -EXPORT_SYMBOL vmlinux 0xa1fcd112 register_sound_special -EXPORT_SYMBOL vmlinux 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL vmlinux 0xa205b6b9 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa2095c9b key_validate -EXPORT_SYMBOL vmlinux 0xa20f15c7 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xa21fa765 vb2_create_framevec -EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0xa23a5608 udp_seq_stop -EXPORT_SYMBOL vmlinux 0xa23d557c of_n_addr_cells -EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort -EXPORT_SYMBOL vmlinux 0xa24121c7 blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0xa241d912 pcim_enable_device -EXPORT_SYMBOL vmlinux 0xa2454d23 snd_rawmidi_drain_input -EXPORT_SYMBOL vmlinux 0xa2485832 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte -EXPORT_SYMBOL vmlinux 0xa261b838 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xa26fcf15 tcp_enter_quickack_mode -EXPORT_SYMBOL vmlinux 0xa2720c04 skb_dump -EXPORT_SYMBOL vmlinux 0xa272c4ff vfs_mknod -EXPORT_SYMBOL vmlinux 0xa272ebac reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0xa27a8c19 __mdiobus_register -EXPORT_SYMBOL vmlinux 0xa2849e51 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa2aebb7d iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0xa2bdfc4e ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0xa2c5d95e submit_bio_noacct -EXPORT_SYMBOL vmlinux 0xa2d1ec73 pagevec_lookup_range -EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa2e603dc netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0xa2f9928e netif_carrier_off -EXPORT_SYMBOL vmlinux 0xa300e37c xlnx_bridge_disable -EXPORT_SYMBOL vmlinux 0xa310c644 phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0xa31f6923 drm_atomic_helper_check_planes -EXPORT_SYMBOL vmlinux 0xa3238ed1 netdev_name_node_alt_destroy -EXPORT_SYMBOL vmlinux 0xa3331c45 dvb_register_device -EXPORT_SYMBOL vmlinux 0xa333e434 blk_execute_rq -EXPORT_SYMBOL vmlinux 0xa3547d63 fwnode_phy_find_device -EXPORT_SYMBOL vmlinux 0xa35c81fc devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0xa373d7ed release_sock -EXPORT_SYMBOL vmlinux 0xa38d7d31 generic_file_fsync -EXPORT_SYMBOL vmlinux 0xa38f52f8 set_anon_super_fc -EXPORT_SYMBOL vmlinux 0xa395a740 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0xa3a07c07 security_path_mkdir -EXPORT_SYMBOL vmlinux 0xa3ac5e0f param_set_long -EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update -EXPORT_SYMBOL vmlinux 0xa3dbade0 dma_free_attrs -EXPORT_SYMBOL vmlinux 0xa3e9ec4b nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xa3ecc1e3 v4l2_async_notifier_unregister -EXPORT_SYMBOL vmlinux 0xa3f81947 flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits -EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final -EXPORT_SYMBOL vmlinux 0xa3ff2185 llc_sap_close -EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xa4121c97 pipe_lock -EXPORT_SYMBOL vmlinux 0xa414397e rawnand_sw_bch_correct -EXPORT_SYMBOL vmlinux 0xa415f3d3 md_error -EXPORT_SYMBOL vmlinux 0xa41f53a1 padata_do_serial -EXPORT_SYMBOL vmlinux 0xa4235824 dvb_dmx_swfilter_raw -EXPORT_SYMBOL vmlinux 0xa43a0996 mmc_can_gpio_ro -EXPORT_SYMBOL vmlinux 0xa43fd646 of_clk_get -EXPORT_SYMBOL vmlinux 0xa45b5c19 devm_clk_get -EXPORT_SYMBOL vmlinux 0xa4650657 unpin_user_page -EXPORT_SYMBOL vmlinux 0xa472ed0d mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction -EXPORT_SYMBOL vmlinux 0xa47ff604 param_get_long -EXPORT_SYMBOL vmlinux 0xa4a11a86 put_watch_queue -EXPORT_SYMBOL vmlinux 0xa4b3532f flow_rule_alloc -EXPORT_SYMBOL vmlinux 0xa4b4137a snd_device_free -EXPORT_SYMBOL vmlinux 0xa4b79e18 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0xa4bef90a mntput -EXPORT_SYMBOL vmlinux 0xa4c10c86 drm_dp_cec_register_connector -EXPORT_SYMBOL vmlinux 0xa4c6cb50 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xa4c8127c ZSTD_maxCLevel -EXPORT_SYMBOL vmlinux 0xa4dd282d drm_crtc_vblank_reset -EXPORT_SYMBOL vmlinux 0xa4f63628 dput -EXPORT_SYMBOL vmlinux 0xa4f65efb vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0xa4f9c7a0 ip_defrag -EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit -EXPORT_SYMBOL vmlinux 0xa50c8531 drm_i2c_encoder_mode_set -EXPORT_SYMBOL vmlinux 0xa50ded80 noop_llseek -EXPORT_SYMBOL vmlinux 0xa527cace blk_cleanup_disk -EXPORT_SYMBOL vmlinux 0xa52b29ab nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0xa52f44a0 udp_read_sock -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa5642c88 d_genocide -EXPORT_SYMBOL vmlinux 0xa572dd7f snd_rawmidi_kernel_write -EXPORT_SYMBOL vmlinux 0xa5820d5e snd_pcm_lib_malloc_pages -EXPORT_SYMBOL vmlinux 0xa5822d73 drm_dp_check_act_status -EXPORT_SYMBOL vmlinux 0xa58b8d9a ilookup -EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock -EXPORT_SYMBOL vmlinux 0xa59dc6eb __traceiter_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0xa59f04ca drm_writeback_signal_completion -EXPORT_SYMBOL vmlinux 0xa5a096fc phy_device_create -EXPORT_SYMBOL vmlinux 0xa5a15f7c blk_integrity_compare -EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0xa5b0ef3f input_set_timestamp -EXPORT_SYMBOL vmlinux 0xa5c28859 rtc_add_groups -EXPORT_SYMBOL vmlinux 0xa5ef51ae is_nd_btt -EXPORT_SYMBOL vmlinux 0xa5f572fa pci_claim_resource -EXPORT_SYMBOL vmlinux 0xa5f7e7b2 make_bad_inode -EXPORT_SYMBOL vmlinux 0xa5f83fab drm_helper_probe_single_connector_modes -EXPORT_SYMBOL vmlinux 0xa61271e2 __alloc_disk_node -EXPORT_SYMBOL vmlinux 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa6257a2f complete -EXPORT_SYMBOL vmlinux 0xa630f78d cros_ec_get_host_event -EXPORT_SYMBOL vmlinux 0xa63815b4 __drmm_simple_encoder_alloc -EXPORT_SYMBOL vmlinux 0xa64412f1 phy_attached_info -EXPORT_SYMBOL vmlinux 0xa647589b netif_napi_add -EXPORT_SYMBOL vmlinux 0xa6581882 input_register_device -EXPORT_SYMBOL vmlinux 0xa67001b3 ethtool_aggregate_pause_stats -EXPORT_SYMBOL vmlinux 0xa670e73f __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xa681c7fb tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa685ab09 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0xa685e1a8 scm_detach_fds -EXPORT_SYMBOL vmlinux 0xa69d3cb8 mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0xa6a7415f scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0xa6ab0588 seq_release -EXPORT_SYMBOL vmlinux 0xa6af9dfb keyring_alloc -EXPORT_SYMBOL vmlinux 0xa6b5b701 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0xa6cd178d v4l2_ctrl_activate -EXPORT_SYMBOL vmlinux 0xa6dc2b9a iio_triggered_buffer_setup_ext -EXPORT_SYMBOL vmlinux 0xa6ea646d km_policy_expired -EXPORT_SYMBOL vmlinux 0xa707816a pci_choose_state -EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector -EXPORT_SYMBOL vmlinux 0xa71330eb generic_listxattr -EXPORT_SYMBOL vmlinux 0xa716ed2b pci_reenable_device -EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order -EXPORT_SYMBOL vmlinux 0xa72775c7 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa753e695 nobh_writepage -EXPORT_SYMBOL vmlinux 0xa754a019 drm_dp_aux_init -EXPORT_SYMBOL vmlinux 0xa758792d devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0xa76b31a2 crypto_ecdh_shared_secret -EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa77ff1da vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0xa7c716b2 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0xa7c7f505 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL vmlinux 0xa7ce46f1 edac_mc_find -EXPORT_SYMBOL vmlinux 0xa7cec9d4 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0xa7d18a69 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy -EXPORT_SYMBOL vmlinux 0xa7db9a29 drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL vmlinux 0xa7e7987f xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0xa7eb1687 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa7eeff8d generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0xa7f0b0fe dentry_path_raw -EXPORT_SYMBOL vmlinux 0xa7f3f0f5 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL vmlinux 0xa7fc20e4 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0xa80b2b64 md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0xa8114d64 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL vmlinux 0xa816e23f bioset_exit -EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec -EXPORT_SYMBOL vmlinux 0xa843606e drm_dp_dsc_sink_supported_input_bpcs -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 0xa858fbe4 tty_kref_put -EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load -EXPORT_SYMBOL vmlinux 0xa85f07f1 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xa866e93f drm_connector_list_iter_end -EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa8752054 xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0xa87fef18 ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0xa886aa8c tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0xa88bc616 iov_iter_zero -EXPORT_SYMBOL vmlinux 0xa8953515 follow_down_one -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 0xa8b7195c ip_route_input_noref -EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8d1e716 mark_page_accessed -EXPORT_SYMBOL vmlinux 0xa8df09c0 drm_is_current_master -EXPORT_SYMBOL vmlinux 0xa8e0fdd9 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present -EXPORT_SYMBOL vmlinux 0xa8e8801d __traceiter_module_get -EXPORT_SYMBOL vmlinux 0xa8ee7826 ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0xa8f29b57 simple_statfs -EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work -EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa9196041 snd_register_device -EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xa925c0d7 xdma_release_all_channels -EXPORT_SYMBOL vmlinux 0xa9412230 v4l2_m2m_mmap -EXPORT_SYMBOL vmlinux 0xa94a077d __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section -EXPORT_SYMBOL vmlinux 0xa9607deb snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa971e0cd touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa982cd96 drm_client_modeset_commit_locked -EXPORT_SYMBOL vmlinux 0xa985cc96 locks_free_lock -EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa9a51b1c filemap_invalidate_lock_two -EXPORT_SYMBOL vmlinux 0xa9ac8a17 zero_fill_bio -EXPORT_SYMBOL vmlinux 0xa9c6f2d5 xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0xa9e4b295 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xa9f1efda tcf_generic_walker -EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction -EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf -EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa2015f6 zap_page_range -EXPORT_SYMBOL vmlinux 0xaa2cbedd devfreq_resume_device -EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception -EXPORT_SYMBOL vmlinux 0xaa35486c ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0xaa442317 page_pool_alloc_frag -EXPORT_SYMBOL vmlinux 0xaa451546 gro_cells_receive -EXPORT_SYMBOL vmlinux 0xaa4efabe twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa6fbfcc neigh_connected_output -EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb -EXPORT_SYMBOL vmlinux 0xaa82bf83 drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL vmlinux 0xaa85a36b mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0xaa87e1cf __drm_atomic_helper_connector_reset -EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic -EXPORT_SYMBOL vmlinux 0xaaa9eaad user_path_create -EXPORT_SYMBOL vmlinux 0xaaae41ae scsi_remove_device -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function -EXPORT_SYMBOL vmlinux 0xaae82888 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaaec5656 _dev_err -EXPORT_SYMBOL vmlinux 0xaaefb74c iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab055b15 fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xab13e61a __generic_file_fsync -EXPORT_SYMBOL vmlinux 0xab2c58ea drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL vmlinux 0xab363bf0 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init -EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab49320c blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xab4dce33 pagecache_get_page -EXPORT_SYMBOL vmlinux 0xab502254 __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0xab57bdec alloc_pages_vma -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 0xab701023 nand_ecc_sw_bch_calculate -EXPORT_SYMBOL vmlinux 0xab732647 drm_plane_create_scaling_filter_property -EXPORT_SYMBOL vmlinux 0xab763709 dvb_unregister_adapter -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab7ea424 update_region -EXPORT_SYMBOL vmlinux 0xab87890a phy_get_internal_delay -EXPORT_SYMBOL vmlinux 0xab9f4d9a register_sound_mixer -EXPORT_SYMBOL vmlinux 0xaba15f46 of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0xabae8bd5 touch_atime -EXPORT_SYMBOL vmlinux 0xabe37de8 seq_puts -EXPORT_SYMBOL vmlinux 0xabea1531 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xabeb9438 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xac001e21 drm_i2c_encoder_restore -EXPORT_SYMBOL vmlinux 0xac080a77 dvb_remove_device -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac23163d noop_fsync -EXPORT_SYMBOL vmlinux 0xac2874eb register_filesystem -EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac3b9fb8 pnp_disable_dev -EXPORT_SYMBOL vmlinux 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL vmlinux 0xac4441b0 pci_read_config_byte -EXPORT_SYMBOL vmlinux 0xac52cfd4 bio_clone_fast -EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xac578789 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac6aa4e3 generic_write_checks -EXPORT_SYMBOL vmlinux 0xac7148cd tty_port_close_start -EXPORT_SYMBOL vmlinux 0xac7d9485 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0xac8221dc __netlink_dump_start -EXPORT_SYMBOL vmlinux 0xac9373a4 drm_fb_helper_hotplug_event -EXPORT_SYMBOL vmlinux 0xac97c620 xdma_getconfig -EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacb12cf8 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0xacb24786 phy_start -EXPORT_SYMBOL vmlinux 0xacbc178e llc_set_station_handler -EXPORT_SYMBOL vmlinux 0xacd0716f security_path_rename -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index -EXPORT_SYMBOL vmlinux 0xace07b2f fb_firmware_edid -EXPORT_SYMBOL vmlinux 0xace33eeb drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL vmlinux 0xacf34e4f iput -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xacf84cc9 no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0xad01e1ed drm_gem_object_release -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad09cda4 generic_update_time -EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xad16a494 drm_fb_helper_sys_read -EXPORT_SYMBOL vmlinux 0xad1ad265 blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0xad288944 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node -EXPORT_SYMBOL vmlinux 0xad3721d9 neigh_lookup -EXPORT_SYMBOL vmlinux 0xad4503e2 phy_advertise_supported -EXPORT_SYMBOL vmlinux 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL vmlinux 0xad57dd43 dump_skip_to -EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xad6eb61a security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad7e5cbf truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0xad823018 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue -EXPORT_SYMBOL vmlinux 0xad99d752 drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL vmlinux 0xad9b0863 del_gendisk -EXPORT_SYMBOL vmlinux 0xada26d0d of_get_next_available_child -EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final -EXPORT_SYMBOL vmlinux 0xadb56663 drm_connector_attach_colorspace_property -EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0xadc437fd dquot_commit_info -EXPORT_SYMBOL vmlinux 0xadc7996f drm_atomic_get_crtc_state -EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize -EXPORT_SYMBOL vmlinux 0xadcf9d2a dquot_initialize -EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xade45a5c iov_iter_revert -EXPORT_SYMBOL vmlinux 0xade601d8 rproc_create_kick_sysfs -EXPORT_SYMBOL vmlinux 0xadf7710c lease_modify -EXPORT_SYMBOL vmlinux 0xadf7f1d1 skb_queue_tail -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae01390a disk_start_io_acct -EXPORT_SYMBOL vmlinux 0xae03c16a nd_region_release_lane -EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae061b7f of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0xae09ebba nd_btt_probe -EXPORT_SYMBOL vmlinux 0xae0b07b6 init_pseudo -EXPORT_SYMBOL vmlinux 0xae11e3a1 drm_dp_dual_mode_read -EXPORT_SYMBOL vmlinux 0xae156310 ip_frag_next -EXPORT_SYMBOL vmlinux 0xae212b4a __dev_get_by_name -EXPORT_SYMBOL vmlinux 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL vmlinux 0xae291db3 simple_fill_super -EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae3fc08e ps2_init -EXPORT_SYMBOL vmlinux 0xae510a1b migrate_vma_pages -EXPORT_SYMBOL vmlinux 0xae51fe00 flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0xae5ae8ca __traceiter_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0xae5feea1 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0xae6b3d0d __frontswap_test -EXPORT_SYMBOL vmlinux 0xae82c74f mmc_put_card -EXPORT_SYMBOL vmlinux 0xae8ec4ce xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0xaea0e352 simple_empty -EXPORT_SYMBOL vmlinux 0xaea5b94f I_BDEV -EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid -EXPORT_SYMBOL vmlinux 0xaeb14edc init_special_inode -EXPORT_SYMBOL vmlinux 0xaeb55a0c inet_frag_destroy -EXPORT_SYMBOL vmlinux 0xaeb561a4 skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name -EXPORT_SYMBOL vmlinux 0xaebf240b end_page_private_2 -EXPORT_SYMBOL vmlinux 0xaebfb1bb clocksource_change_rating -EXPORT_SYMBOL vmlinux 0xaee78705 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0xaeee4762 sock_rfree -EXPORT_SYMBOL vmlinux 0xaefddf5b neigh_seq_start -EXPORT_SYMBOL vmlinux 0xaf017a4a fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0xaf0f6960 kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0xaf172372 of_get_parent -EXPORT_SYMBOL vmlinux 0xaf1dd8be set_disk_ro -EXPORT_SYMBOL vmlinux 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL vmlinux 0xaf2dd22a load_nls_default -EXPORT_SYMBOL vmlinux 0xaf364706 input_grab_device -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf4a3b7d ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xaf56600a arm64_use_ng_mappings -EXPORT_SYMBOL vmlinux 0xaf568602 scsi_dma_map -EXPORT_SYMBOL vmlinux 0xaf5bd6f4 generic_file_llseek -EXPORT_SYMBOL vmlinux 0xaf62a58e tso_count_descs -EXPORT_SYMBOL vmlinux 0xaf89f6b9 eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0xaf9166eb bio_integrity_clone -EXPORT_SYMBOL vmlinux 0xaf9b1c07 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0xafa4e6a1 filp_close -EXPORT_SYMBOL vmlinux 0xafa57c91 vm_map_ram -EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0xafbddb0a iommu_get_dma_cookie -EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name -EXPORT_SYMBOL vmlinux 0xafcb96a4 mr_fill_mroute -EXPORT_SYMBOL vmlinux 0xafe68e04 of_node_put -EXPORT_SYMBOL vmlinux 0xb000da1b jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xb00459f1 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0xb00d1e88 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0xb00d43a8 dquot_load_quota_sb -EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb047d49d param_ops_ulong -EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xb053adda drm_rect_rotate -EXPORT_SYMBOL vmlinux 0xb0573857 ppp_input -EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats -EXPORT_SYMBOL vmlinux 0xb05a1deb seq_printf -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb07b13ba scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xb07efe78 drm_fb_helper_prepare -EXPORT_SYMBOL vmlinux 0xb0833b02 kobject_get -EXPORT_SYMBOL vmlinux 0xb08a51dd rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0xb094fc92 key_type_keyring -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0a7b288 __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0xb0a8c5af drm_panel_enable -EXPORT_SYMBOL vmlinux 0xb0aed408 ZSTD_compressStream -EXPORT_SYMBOL vmlinux 0xb0b05ff5 drm_clflush_sg -EXPORT_SYMBOL vmlinux 0xb0bbc4a8 d_alloc_parallel -EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return -EXPORT_SYMBOL vmlinux 0xb0d88d63 skb_append -EXPORT_SYMBOL vmlinux 0xb0d904b7 raid6_empty_zero_page -EXPORT_SYMBOL vmlinux 0xb0dd9235 drm_mode_validate_ycbcr420 -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize -EXPORT_SYMBOL vmlinux 0xb0f4dc9e __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xb0f7c9de vc_resize -EXPORT_SYMBOL vmlinux 0xb0fcc2f3 fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xb106ac31 devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0xb10fc19e ecc_get_curve -EXPORT_SYMBOL vmlinux 0xb11ac7a7 __drm_err -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb12336c2 register_md_personality -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xb14c2868 sock_init_data_uid -EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 -EXPORT_SYMBOL vmlinux 0xb1571273 blk_mq_delay_run_hw_queues -EXPORT_SYMBOL vmlinux 0xb15a5a9c kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0xb15b4109 crc32c -EXPORT_SYMBOL vmlinux 0xb162c15c param_get_string -EXPORT_SYMBOL vmlinux 0xb166cf43 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0xb193d4f7 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0xb1942e70 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0xb1953b16 __nlmsg_put -EXPORT_SYMBOL vmlinux 0xb1b01a17 eth_header_parse -EXPORT_SYMBOL vmlinux 0xb1ba578a crypto_sha3_final -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1c8019c vme_master_mmap -EXPORT_SYMBOL vmlinux 0xb1ce3f38 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug -EXPORT_SYMBOL vmlinux 0xb1da79f0 drm_panel_unprepare -EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1e98d11 drm_dp_cec_irq -EXPORT_SYMBOL vmlinux 0xb1f35851 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL vmlinux 0xb1fa2c38 single_open_size -EXPORT_SYMBOL vmlinux 0xb1fdca5c sock_alloc_file -EXPORT_SYMBOL vmlinux 0xb1fffbe9 drm_dp_pcon_convert_rgb_to_ycbcr -EXPORT_SYMBOL vmlinux 0xb2037adc vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0xb20648ea unregister_8022_client -EXPORT_SYMBOL vmlinux 0xb206c01f v4l2_ctrl_new_fwnode_properties -EXPORT_SYMBOL vmlinux 0xb216e80a i2c_put_adapter -EXPORT_SYMBOL vmlinux 0xb224a027 pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xb24b12e4 clear_nlink -EXPORT_SYMBOL vmlinux 0xb2604482 mmc_free_host -EXPORT_SYMBOL vmlinux 0xb287c5dd ip_local_deliver -EXPORT_SYMBOL vmlinux 0xb28ee42b truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL vmlinux 0xb2b58e61 xilinx_xdma_get_width_align -EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0xb2cc306c drm_client_register -EXPORT_SYMBOL vmlinux 0xb2d5393d tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0xb2da7ca2 simple_getattr -EXPORT_SYMBOL vmlinux 0xb2db48f1 lock_rename -EXPORT_SYMBOL vmlinux 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL vmlinux 0xb2e991b6 nand_ecc_cleanup_ctx -EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr -EXPORT_SYMBOL vmlinux 0xb2ec5791 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 -EXPORT_SYMBOL vmlinux 0xb2facf4b file_fdatawait_range -EXPORT_SYMBOL vmlinux 0xb2fae7eb dev_get_iflink -EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0xb3056d26 drm_property_blob_get -EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken -EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb31eb542 amba_request_regions -EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one -EXPORT_SYMBOL vmlinux 0xb3352dd2 dvb_ringbuffer_empty -EXPORT_SYMBOL vmlinux 0xb3392826 genphy_read_status -EXPORT_SYMBOL vmlinux 0xb33d00b4 nand_get_set_features_notsupp -EXPORT_SYMBOL vmlinux 0xb35ec0a4 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0xb365d727 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb3776eae tcf_register_action -EXPORT_SYMBOL vmlinux 0xb3783206 elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0xb38723b7 llc_sap_open -EXPORT_SYMBOL vmlinux 0xb38e1252 dm_get_device -EXPORT_SYMBOL vmlinux 0xb38f3d4f no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0xb3956a1a acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0xb39db762 ethtool_get_phc_vclocks -EXPORT_SYMBOL vmlinux 0xb3a82019 profile_pc -EXPORT_SYMBOL vmlinux 0xb3ab6479 keyring_search -EXPORT_SYMBOL vmlinux 0xb3ad1126 free_mdio_bitbang -EXPORT_SYMBOL vmlinux 0xb3ae0930 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0xb3c61db2 padata_free_shell -EXPORT_SYMBOL vmlinux 0xb3d19304 drm_dp_aux_register -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3e1446a dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0xb3eafece __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb3fefb61 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0xb4032484 drm_mm_insert_node_in_range -EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0xb4050594 drm_edid_get_monitor_name -EXPORT_SYMBOL vmlinux 0xb4086236 mdiobus_free -EXPORT_SYMBOL vmlinux 0xb421d565 bprm_change_interp -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb42cdf12 d_alloc -EXPORT_SYMBOL vmlinux 0xb43226ad __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xb43a7cf5 xdma_wait -EXPORT_SYMBOL vmlinux 0xb441f308 rproc_get_by_phandle -EXPORT_SYMBOL vmlinux 0xb44a3115 fqdir_init -EXPORT_SYMBOL vmlinux 0xb455924d sha256_block_data_order -EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present -EXPORT_SYMBOL vmlinux 0xb475d456 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb48ec964 blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0xb48fa777 drm_connector_attach_dp_subconnector_property -EXPORT_SYMBOL vmlinux 0xb4985beb ZSTD_resetCStream -EXPORT_SYMBOL vmlinux 0xb49bd1c7 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0xb4af7722 drm_mode_config_helper_suspend -EXPORT_SYMBOL vmlinux 0xb4b51487 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0xb4c0d151 alloc_xenballooned_pages -EXPORT_SYMBOL vmlinux 0xb4c9fc19 xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb4fbb530 crypto_sm3_finup -EXPORT_SYMBOL vmlinux 0xb501d0bf vme_slot_num -EXPORT_SYMBOL vmlinux 0xb50e895a snd_jack_set_key -EXPORT_SYMBOL vmlinux 0xb5259b95 fs_param_is_blob -EXPORT_SYMBOL vmlinux 0xb53aa06c _dev_crit -EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xb541fc01 __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xb545cd13 vb2_querybuf -EXPORT_SYMBOL vmlinux 0xb54bb6f8 pci_write_vpd -EXPORT_SYMBOL vmlinux 0xb55643dc skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0xb5572b4c seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0xb55e25e3 fuse_mount_destroy -EXPORT_SYMBOL vmlinux 0xb5604c44 ethtool_aggregate_rmon_stats -EXPORT_SYMBOL vmlinux 0xb56063de gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0xb5687902 dvb_generic_release -EXPORT_SYMBOL vmlinux 0xb56f4edf lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb575c894 current_time -EXPORT_SYMBOL vmlinux 0xb5779754 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0xb57d4b43 get_thermal_instance -EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat -EXPORT_SYMBOL vmlinux 0xb596e30b __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xb59d093e devfreq_update_status -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5bd0524 kernel_connect -EXPORT_SYMBOL vmlinux 0xb5c3a2d8 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0xb5c9422a udp_sendmsg -EXPORT_SYMBOL vmlinux 0xb5ccf974 serio_rescan -EXPORT_SYMBOL vmlinux 0xb5dfa84c page_mapped -EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL vmlinux 0xb617efbc clear_bdi_congested -EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible -EXPORT_SYMBOL vmlinux 0xb62c8eb1 invalidate_bdev -EXPORT_SYMBOL vmlinux 0xb6335e4e mipi_dsi_compression_mode -EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb641ce95 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xb658f7c5 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL vmlinux 0xb65e0493 dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0xb673c790 sget -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor -EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb6802449 mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0xb682eece bio_chain -EXPORT_SYMBOL vmlinux 0xb685848a dcb_getapp -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6a257e5 blk_put_queue -EXPORT_SYMBOL vmlinux 0xb6ac179b pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6b13c19 inet_addr_type -EXPORT_SYMBOL vmlinux 0xb6c0143f file_open_root -EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6e99e29 v4l2_ctrl_poll -EXPORT_SYMBOL vmlinux 0xb6f2491b xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd -EXPORT_SYMBOL vmlinux 0xb7055483 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL vmlinux 0xb70883e9 inet6_ioctl -EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces -EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0xb742f6db tcp_shutdown -EXPORT_SYMBOL vmlinux 0xb7475d2f drm_dp_pcon_hdmi_frl_link_error_count -EXPORT_SYMBOL vmlinux 0xb74c3f31 mmc_start_request -EXPORT_SYMBOL vmlinux 0xb7520f86 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0xb757cd9b __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xb75a5616 drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL vmlinux 0xb75ddea5 mdio_device_create -EXPORT_SYMBOL vmlinux 0xb75eb0ec skb_store_bits -EXPORT_SYMBOL vmlinux 0xb76379b4 __of_get_address -EXPORT_SYMBOL vmlinux 0xb766107b drm_master_internal_release -EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init -EXPORT_SYMBOL vmlinux 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash -EXPORT_SYMBOL vmlinux 0xb788fb30 gic_pmr_sync -EXPORT_SYMBOL vmlinux 0xb7893954 drm_universal_plane_init -EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb78e8d80 dev_close -EXPORT_SYMBOL vmlinux 0xb7933e93 flush_signals -EXPORT_SYMBOL vmlinux 0xb79dde81 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0xb7b7fa6e node_states -EXPORT_SYMBOL vmlinux 0xb7c0f443 sort -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7e9a8cb request_key_rcu -EXPORT_SYMBOL vmlinux 0xb7f323b1 fs_param_is_path -EXPORT_SYMBOL vmlinux 0xb7f6deb9 drm_connector_set_panel_orientation -EXPORT_SYMBOL vmlinux 0xb7fa78b2 ps2_end_command -EXPORT_SYMBOL vmlinux 0xb80144a3 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0xb8052785 phy_connect -EXPORT_SYMBOL vmlinux 0xb8298756 ac97_bus_type -EXPORT_SYMBOL vmlinux 0xb82a67c6 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue -EXPORT_SYMBOL vmlinux 0xb83f9533 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0xb845d7e3 drm_mode_object_put -EXPORT_SYMBOL vmlinux 0xb84af89a skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0xb85ab51b wait_on_page_private_2_killable -EXPORT_SYMBOL vmlinux 0xb85c801f nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key -EXPORT_SYMBOL vmlinux 0xb8708dcd snd_jack_set_parent -EXPORT_SYMBOL vmlinux 0xb87727de drm_edp_backlight_enable -EXPORT_SYMBOL vmlinux 0xb888df10 kern_unmount -EXPORT_SYMBOL vmlinux 0xb88fd035 set_groups -EXPORT_SYMBOL vmlinux 0xb89a7032 qtree_release_dquot -EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb8a768a0 unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xb8baa59a dvb_dmxdev_init -EXPORT_SYMBOL vmlinux 0xb8c565a3 pci_read_config_dword -EXPORT_SYMBOL vmlinux 0xb8ce131f snd_rawmidi_info_select -EXPORT_SYMBOL vmlinux 0xb8d11599 get_tree_bdev -EXPORT_SYMBOL vmlinux 0xb8d8a39e dvb_ca_en50221_release -EXPORT_SYMBOL vmlinux 0xb8ddac9d drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL vmlinux 0xb8e13934 fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0xb8e6e05a drm_mode_put_tile_group -EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xb9062c1b fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0xb9067f5f tcp_v4_connect -EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory -EXPORT_SYMBOL vmlinux 0xb90e4249 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb9220db8 dev_deactivate -EXPORT_SYMBOL vmlinux 0xb935dacd drm_gem_create_mmap_offset -EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only -EXPORT_SYMBOL vmlinux 0xb951574a drm_kms_helper_poll_fini -EXPORT_SYMBOL vmlinux 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL vmlinux 0xb96d8013 param_set_byte -EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb9888b87 pci_map_rom -EXPORT_SYMBOL vmlinux 0xb989d928 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xb9ae1d3f serio_close -EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xb9b4dc8e dev_change_proto_down -EXPORT_SYMBOL vmlinux 0xb9c1bebd __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL vmlinux 0xb9d3a3f1 acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9ec8691 __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xb9ed8e1c acpi_device_hid -EXPORT_SYMBOL vmlinux 0xb9eda06a blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0xb9f2b1e0 drm_fb_helper_set_suspend -EXPORT_SYMBOL vmlinux 0xb9fb223c drm_atomic_helper_connector_reset -EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat -EXPORT_SYMBOL vmlinux 0xba0ca496 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba2478e6 fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0xba281c86 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0xba28b858 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xba2f08f2 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0xba33a693 neigh_xmit -EXPORT_SYMBOL vmlinux 0xba3e1ab0 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0xba3ec298 genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0xba46596c cdev_device_del -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba509a66 kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len -EXPORT_SYMBOL vmlinux 0xba573650 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0xba581710 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0xba587013 kill_anon_super -EXPORT_SYMBOL vmlinux 0xba5cdc9d of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0xba658af6 xsk_tx_peek_release_desc_batch -EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk -EXPORT_SYMBOL vmlinux 0xba95f985 netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0xba98bef6 drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL vmlinux 0xba9a05c8 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xbadc1d15 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0xbae45699 nd_integrity_init -EXPORT_SYMBOL vmlinux 0xbaea9efb xlnx_bridge_get_input_fmts -EXPORT_SYMBOL vmlinux 0xbaf6c858 bio_put -EXPORT_SYMBOL vmlinux 0xbaffff96 ZSTD_CStreamWorkspaceBound -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb113756 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0xbb11c785 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0xbb198f87 drm_client_buffer_vmap -EXPORT_SYMBOL vmlinux 0xbb1dd3f4 drm_gem_vmap -EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb3bfc5d ppp_register_compressor -EXPORT_SYMBOL vmlinux 0xbb41600a drm_atomic_helper_prepare_planes -EXPORT_SYMBOL vmlinux 0xbb4d590c generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb52b994 fifo_set_limit -EXPORT_SYMBOL vmlinux 0xbb5b318d drm_dev_unregister -EXPORT_SYMBOL vmlinux 0xbb7234b7 can_nice -EXPORT_SYMBOL vmlinux 0xbb72a0d5 tcp_splice_read -EXPORT_SYMBOL vmlinux 0xbb758f1e dquot_quota_on -EXPORT_SYMBOL vmlinux 0xbb75d8ad get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0xbb80bd15 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL vmlinux 0xbb8e9bad dev_set_mtu -EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock -EXPORT_SYMBOL vmlinux 0xbbaf7624 drm_gem_dma_resv_wait -EXPORT_SYMBOL vmlinux 0xbbccc9cc of_get_property -EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order -EXPORT_SYMBOL vmlinux 0xbbfcfa32 snd_device_register -EXPORT_SYMBOL vmlinux 0xbc02c913 kset_register -EXPORT_SYMBOL vmlinux 0xbc086d5b video_device_alloc -EXPORT_SYMBOL vmlinux 0xbc1081a2 passthru_features_check -EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc3f5afc snd_sgbuf_get_addr -EXPORT_SYMBOL vmlinux 0xbc485759 pci_request_region -EXPORT_SYMBOL vmlinux 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL vmlinux 0xbc59f067 rproc_elf_sanity_check -EXPORT_SYMBOL vmlinux 0xbc5dc127 netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0xbc7ff121 pagecache_write_end -EXPORT_SYMBOL vmlinux 0xbc95546f dma_unmap_page_attrs -EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcb36a3a inet_del_offload -EXPORT_SYMBOL vmlinux 0xbcbb47e2 tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0xbcd6ef09 snd_device_new -EXPORT_SYMBOL vmlinux 0xbcd87e0e buffer_migrate_page -EXPORT_SYMBOL vmlinux 0xbcec6ad7 __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xbcee5bf3 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0xbcf93134 stream_open -EXPORT_SYMBOL vmlinux 0xbd02cf10 backlight_device_get_by_type -EXPORT_SYMBOL vmlinux 0xbd1b4950 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0xbd2ed8a8 tcp_filter -EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd4be820 bio_split -EXPORT_SYMBOL vmlinux 0xbd5709e1 __devm_mdiobus_register -EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0xbd63b543 drm_bridge_remove -EXPORT_SYMBOL vmlinux 0xbd67158f scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd6885c0 drm_dp_stop_crc -EXPORT_SYMBOL vmlinux 0xbd6b3d6d free_xenballooned_pages -EXPORT_SYMBOL vmlinux 0xbd9294d2 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0xbdc10ce7 pci_set_power_state -EXPORT_SYMBOL vmlinux 0xbdc36e86 phy_device_remove -EXPORT_SYMBOL vmlinux 0xbdcfa4cf dev_mc_add -EXPORT_SYMBOL vmlinux 0xbde1e13c vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0xbdf68931 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0xbe0568bf mr_dump -EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock -EXPORT_SYMBOL vmlinux 0xbe273e07 skb_copy_bits -EXPORT_SYMBOL vmlinux 0xbe27e97d blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0xbe3e3616 drm_crtc_vblank_count -EXPORT_SYMBOL vmlinux 0xbe46b1ed tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port -EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xbe574474 param_get_ullong -EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe5c7462 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xbe5eb02d inode_dio_wait -EXPORT_SYMBOL vmlinux 0xbe620dd2 mmc_erase -EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit -EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table -EXPORT_SYMBOL vmlinux 0xbe802573 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xbe8306cc lookup_one_positive_unlocked -EXPORT_SYMBOL vmlinux 0xbea54ff5 jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0xbec70d19 icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL vmlinux 0xbed4c9a3 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xbedc638d page_pool_release_page -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0xbefd4235 drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL vmlinux 0xbf0f75e2 drm_dp_mst_detect_port -EXPORT_SYMBOL vmlinux 0xbf134d75 of_get_child_by_name -EXPORT_SYMBOL vmlinux 0xbf13be52 xfrm_state_migrate -EXPORT_SYMBOL vmlinux 0xbf1de93d sock_no_linger -EXPORT_SYMBOL vmlinux 0xbf1e0bbb mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xbf219418 drm_primary_helper_destroy -EXPORT_SYMBOL vmlinux 0xbf2359aa param_set_bool -EXPORT_SYMBOL vmlinux 0xbf266147 drm_prime_sg_to_page_array -EXPORT_SYMBOL vmlinux 0xbf3275d9 proc_create_data -EXPORT_SYMBOL vmlinux 0xbf4ae093 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0xbf4f66a5 vlan_vid_add -EXPORT_SYMBOL vmlinux 0xbf53dc8f iio_device_unregister -EXPORT_SYMBOL vmlinux 0xbf5973b4 rproc_elf_find_loaded_rsc_table -EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf971122 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfa4e6ba drm_modeset_lock -EXPORT_SYMBOL vmlinux 0xbfacb014 clocksource_unregister -EXPORT_SYMBOL vmlinux 0xbfad9590 security_sk_clone -EXPORT_SYMBOL vmlinux 0xbfb65fc6 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0xbfbe758e mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0xbfbedbcf snd_info_create_card_entry -EXPORT_SYMBOL vmlinux 0xbfc0a20a sync_filesystem -EXPORT_SYMBOL vmlinux 0xbfca103f freeze_bdev -EXPORT_SYMBOL vmlinux 0xbfcd1794 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xbfdefc97 pci_pme_active -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbff8e80a __ip_dev_find -EXPORT_SYMBOL vmlinux 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable -EXPORT_SYMBOL vmlinux 0xc03870e4 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0xc06882b2 fd_install -EXPORT_SYMBOL vmlinux 0xc0737c47 fb_class -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc0808b38 snd_ctl_new1 -EXPORT_SYMBOL vmlinux 0xc08ebaf9 sock_no_bind -EXPORT_SYMBOL vmlinux 0xc09d95d7 snd_ctl_register_ioctl -EXPORT_SYMBOL vmlinux 0xc0ad251a drm_helper_disable_unused_functions -EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL vmlinux 0xc0bc1217 fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress -EXPORT_SYMBOL vmlinux 0xc0ce1577 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0xc0dbb522 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0xc0e6bd80 generic_fillattr -EXPORT_SYMBOL vmlinux 0xc0f897c4 dquot_acquire -EXPORT_SYMBOL vmlinux 0xc0fa523e tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0xc0fc9ea8 kthread_stop -EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup -EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor -EXPORT_SYMBOL vmlinux 0xc1098e2c md_bitmap_free -EXPORT_SYMBOL vmlinux 0xc12ef175 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xc149c0e0 drm_mode_create_tv_properties -EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data -EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc161d5ee mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict -EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc19aba3a dma_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0xc1ae4e23 xlnx_bridge_set_timing -EXPORT_SYMBOL vmlinux 0xc1bfc249 __iio_device_register -EXPORT_SYMBOL vmlinux 0xc1c7a25a drm_i2c_encoder_commit -EXPORT_SYMBOL vmlinux 0xc1ca2156 pcim_pin_device -EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1f42879 drm_fb_xrgb8888_to_rgb565_dstclip -EXPORT_SYMBOL vmlinux 0xc219d6f5 flow_indr_dev_setup_offload -EXPORT_SYMBOL vmlinux 0xc2283bd7 llc_build_and_send_ui_pkt -EXPORT_SYMBOL vmlinux 0xc228ae2e rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0xc22bf20b uart_register_driver -EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl -EXPORT_SYMBOL vmlinux 0xc231c427 inet_put_port -EXPORT_SYMBOL vmlinux 0xc23b84ee unregister_quota_format -EXPORT_SYMBOL vmlinux 0xc2440c56 finalize_exec -EXPORT_SYMBOL vmlinux 0xc2454f67 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0xc24a3e26 __SetPageMovable -EXPORT_SYMBOL vmlinux 0xc2512c18 v4l2_subdev_init -EXPORT_SYMBOL vmlinux 0xc2616336 drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc26e428f read_cache_page -EXPORT_SYMBOL vmlinux 0xc2794f27 vme_irq_handler -EXPORT_SYMBOL vmlinux 0xc27bf42b unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0xc2821775 tuner_count -EXPORT_SYMBOL vmlinux 0xc284386c readahead_expand -EXPORT_SYMBOL vmlinux 0xc2969c40 dev_change_carrier -EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xc2b40980 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0xc2b49622 snd_rawmidi_new -EXPORT_SYMBOL vmlinux 0xc2c05f5b drm_gem_vm_open -EXPORT_SYMBOL vmlinux 0xc2c18e45 configfs_depend_item -EXPORT_SYMBOL vmlinux 0xc2c37598 snd_rawmidi_drop_output -EXPORT_SYMBOL vmlinux 0xc2d7d22f of_platform_device_create -EXPORT_SYMBOL vmlinux 0xc2d9e090 get_vaddr_frames -EXPORT_SYMBOL vmlinux 0xc2dd75b3 dump_align -EXPORT_SYMBOL vmlinux 0xc2e168ab caches_clean_inval_pou -EXPORT_SYMBOL vmlinux 0xc2e38335 drm_crtc_set_max_vblank_count -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2e6b788 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0xc2f52274 __lshrti3 -EXPORT_SYMBOL vmlinux 0xc2febc85 __breadahead_gfp -EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state -EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc316a77d mtd_concat_destroy -EXPORT_SYMBOL vmlinux 0xc317e074 d_instantiate_new -EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr -EXPORT_SYMBOL vmlinux 0xc324837c iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc33be3f6 drm_atomic_helper_check -EXPORT_SYMBOL vmlinux 0xc3463a2d prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0xc35615f6 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xc3574a55 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0xc361b57b jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xc369089d drm_debugfs_remove_files -EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc -EXPORT_SYMBOL vmlinux 0xc376e30d follow_up -EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc386aeff drm_mode_create_scaling_mode_property -EXPORT_SYMBOL vmlinux 0xc38c1263 __quota_error -EXPORT_SYMBOL vmlinux 0xc38c75b7 acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc395d785 drm_atomic_helper_plane_reset -EXPORT_SYMBOL vmlinux 0xc3b2003a nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xc3c0bcdf drm_scdc_write -EXPORT_SYMBOL vmlinux 0xc3c9e5c8 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb -EXPORT_SYMBOL vmlinux 0xc3d49490 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0xc3f679f9 dvb_ringbuffer_write_user -EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock -EXPORT_SYMBOL vmlinux 0xc40ac675 drm_dp_mst_get_edid -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 0xc45e429a netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0xc461d8da pps_lookup_dev -EXPORT_SYMBOL vmlinux 0xc464cbdb mnt_set_expiry -EXPORT_SYMBOL vmlinux 0xc466344c netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0xc467da34 fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0xc4683a62 devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr -EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc49c66a8 secpath_set -EXPORT_SYMBOL vmlinux 0xc4a38f36 current_in_userns -EXPORT_SYMBOL vmlinux 0xc4cc3991 __scm_destroy -EXPORT_SYMBOL vmlinux 0xc4de0625 remove_proc_entry -EXPORT_SYMBOL vmlinux 0xc4faea0d rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0xc506bcf4 vfs_get_fsid -EXPORT_SYMBOL vmlinux 0xc51c96cd __scm_send -EXPORT_SYMBOL vmlinux 0xc5287d78 md_integrity_register -EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0xc529369e drm_atomic_get_bridge_state -EXPORT_SYMBOL vmlinux 0xc5361f35 inc_node_page_state -EXPORT_SYMBOL vmlinux 0xc53ace8b md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0xc54b550e cfi_fixup -EXPORT_SYMBOL vmlinux 0xc54b94aa mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0xc56a41e6 vabits_actual -EXPORT_SYMBOL vmlinux 0xc56d1834 snd_seq_root -EXPORT_SYMBOL vmlinux 0xc5737c2d vfs_fsync -EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next -EXPORT_SYMBOL vmlinux 0xc582d026 snd_power_wait -EXPORT_SYMBOL vmlinux 0xc5858b24 nand_write_page_raw -EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0xc58f1273 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xc5921543 phy_connect_direct -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xc5a4d8b5 alloc_fddidev -EXPORT_SYMBOL vmlinux 0xc5a6d10b release_and_free_resource -EXPORT_SYMBOL vmlinux 0xc5b0ae7a dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5b8b1f8 snd_component_add -EXPORT_SYMBOL vmlinux 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL vmlinux 0xc5cf198a fwnode_irq_get -EXPORT_SYMBOL vmlinux 0xc5d46d9a __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0xc5e5573a frame_vector_to_pages -EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last -EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0xc62b1ddd devm_of_clk_del_provider -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc6323239 drm_flip_work_cleanup -EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc64a2ab9 snd_card_register -EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc65e73bb xp_free -EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xc67be539 drm_property_create_bitmask -EXPORT_SYMBOL vmlinux 0xc68ab887 unlock_page -EXPORT_SYMBOL vmlinux 0xc6b08d10 drm_bridge_add -EXPORT_SYMBOL vmlinux 0xc6b68a49 iio_trigger_validate_own_device -EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware -EXPORT_SYMBOL vmlinux 0xc6dd662e sk_common_release -EXPORT_SYMBOL vmlinux 0xc6e5e4a6 devm_ioremap -EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one -EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc706e93c vfs_iter_read -EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write -EXPORT_SYMBOL vmlinux 0xc7131dac phy_attach_direct -EXPORT_SYMBOL vmlinux 0xc717a194 cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc7237a3e misc_deregister -EXPORT_SYMBOL vmlinux 0xc726ed79 ip6tun_encaps -EXPORT_SYMBOL vmlinux 0xc7298eb0 drm_syncobj_replace_fence -EXPORT_SYMBOL vmlinux 0xc735f35a drm_dp_read_desc -EXPORT_SYMBOL vmlinux 0xc739ce9e __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0xc77f93d3 rproc_add_subdev -EXPORT_SYMBOL vmlinux 0xc7800344 drm_atomic_helper_check_plane_state -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7855e26 __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc78e3291 tcp_seq_start -EXPORT_SYMBOL vmlinux 0xc7910e38 drm_vma_offset_lookup_locked -EXPORT_SYMBOL vmlinux 0xc79ecffb drm_dp_downstream_is_type -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7abbd11 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc7b3f45b sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0xc7b4db7c param_get_uint -EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7d04fc5 drm_vma_node_allow -EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xc7d74f13 mount_nodev -EXPORT_SYMBOL vmlinux 0xc7d7d1b5 fs_param_is_u32 -EXPORT_SYMBOL vmlinux 0xc7de57a6 start_tty -EXPORT_SYMBOL vmlinux 0xc7e968db ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0xc7ece7fd fasync_helper -EXPORT_SYMBOL vmlinux 0xc7fb16f7 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xc7fb7844 unregister_filesystem -EXPORT_SYMBOL vmlinux 0xc7fd4b62 drm_atomic_helper_disable_all -EXPORT_SYMBOL vmlinux 0xc806dbed drm_dp_set_subconnector_property -EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one -EXPORT_SYMBOL vmlinux 0xc80d6388 drm_atomic_helper_page_flip -EXPORT_SYMBOL vmlinux 0xc80e242c mdiobus_scan -EXPORT_SYMBOL vmlinux 0xc810bc3a proc_set_user -EXPORT_SYMBOL vmlinux 0xc81c9953 dev_uc_init -EXPORT_SYMBOL vmlinux 0xc82ec11e nlmsg_notify -EXPORT_SYMBOL vmlinux 0xc82ed432 drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 -EXPORT_SYMBOL vmlinux 0xc841b5b0 module_refcount -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc85fd1a5 v4l2_async_unregister_subdev -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc87ef2d5 __vfs_getxattr -EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc8893441 drm_client_init -EXPORT_SYMBOL vmlinux 0xc88a63f3 v4l2_m2m_job_finish -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8ac6103 drm_sysfs_connector_status_event -EXPORT_SYMBOL vmlinux 0xc8bea81e cdrom_check_events -EXPORT_SYMBOL vmlinux 0xc8d70f0a dvb_ca_en50221_camready_irq -EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc -EXPORT_SYMBOL vmlinux 0xc8e3332b raid6_gflog -EXPORT_SYMBOL vmlinux 0xc8efdc05 phy_init_hw -EXPORT_SYMBOL vmlinux 0xc902961f security_inet_conn_established -EXPORT_SYMBOL vmlinux 0xc9056e6e get_tz_trend -EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0xc9196173 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0xc92a7790 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0xc9432be9 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0xc946c6f6 ipmi_platform_add -EXPORT_SYMBOL vmlinux 0xc960f6f9 devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc9773cdc simple_transaction_get -EXPORT_SYMBOL vmlinux 0xc97b68e1 dma_set_mask -EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev -EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xc99d35b1 drm_dev_has_vblank -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9a23018 security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0xc9ab91c9 pci_remove_bus -EXPORT_SYMBOL vmlinux 0xc9abccad vfs_get_tree -EXPORT_SYMBOL vmlinux 0xc9b96c8c ipmr_rule_default -EXPORT_SYMBOL vmlinux 0xc9cd3f93 dvb_unregister_frontend -EXPORT_SYMBOL vmlinux 0xc9d60951 xdr_restrict_buflen -EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9e2de89 drm_bridge_chain_mode_valid -EXPORT_SYMBOL vmlinux 0xca0102cf ppp_input_error -EXPORT_SYMBOL vmlinux 0xca024d3c unregister_shrinker -EXPORT_SYMBOL vmlinux 0xca03c4da drm_client_release -EXPORT_SYMBOL vmlinux 0xca11102a iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0xca1124b3 netdev_change_features -EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream -EXPORT_SYMBOL vmlinux 0xca1beecb mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca448553 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0xca49e1f9 devm_rproc_alloc -EXPORT_SYMBOL vmlinux 0xca6a40a4 simple_map_init -EXPORT_SYMBOL vmlinux 0xca757109 md_reload_sb -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca94ff13 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store -EXPORT_SYMBOL vmlinux 0xcacf6630 __dev_set_mtu -EXPORT_SYMBOL vmlinux 0xcad0ba7e devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception -EXPORT_SYMBOL vmlinux 0xcad71986 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0xcae61490 skb_copy -EXPORT_SYMBOL vmlinux 0xcaeb662f rdmacg_try_charge -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcaf4188a genphy_aneg_done -EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb151460 blk_get_queue -EXPORT_SYMBOL vmlinux 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL vmlinux 0xcb3679ca mpage_readpage -EXPORT_SYMBOL vmlinux 0xcb388aba mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb534882 rawnand_sw_hamming_cleanup -EXPORT_SYMBOL vmlinux 0xcb578ea3 drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL vmlinux 0xcb5846e7 validate_slab_cache -EXPORT_SYMBOL vmlinux 0xcb6077f3 __block_write_begin -EXPORT_SYMBOL vmlinux 0xcb6ed07b phy_ethtool_get_sset_count -EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb87635b pci_disable_msi -EXPORT_SYMBOL vmlinux 0xcb88b9d1 __pagevec_release -EXPORT_SYMBOL vmlinux 0xcb8dd604 drm_framebuffer_unregister_private -EXPORT_SYMBOL vmlinux 0xcba61c2c scsi_register_interface -EXPORT_SYMBOL vmlinux 0xcba70699 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0xcbb72f90 snd_info_free_entry -EXPORT_SYMBOL vmlinux 0xcbbacc22 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame -EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbdc9df3 cqhci_init -EXPORT_SYMBOL vmlinux 0xcbf02576 flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0xcbf6b28d md_write_inc -EXPORT_SYMBOL vmlinux 0xcbfade1e fput -EXPORT_SYMBOL vmlinux 0xcbfb0cf8 tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev -EXPORT_SYMBOL vmlinux 0xcc00badf ptp_clock_index -EXPORT_SYMBOL vmlinux 0xcc1681ea drm_dp_cec_unregister_connector -EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul -EXPORT_SYMBOL vmlinux 0xcc1e7b0f drm_send_event_locked -EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xcc231cb0 xdma_setconfig -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class -EXPORT_SYMBOL vmlinux 0xcc41ff14 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xcc4ee841 raid6_gfexi -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc5029de drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL vmlinux 0xcc54e3bc drm_fb_helper_lastclose -EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL vmlinux 0xcc6dde2b xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xcc771496 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xcc80de83 xilinx_xdma_get_fid -EXPORT_SYMBOL vmlinux 0xcc830be2 param_set_short -EXPORT_SYMBOL vmlinux 0xcc852b9e cfi_varsize_frob -EXPORT_SYMBOL vmlinux 0xcc9bc487 snd_timer_resolution -EXPORT_SYMBOL vmlinux 0xcca23cb8 drm_vblank_work_cancel_sync -EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id -EXPORT_SYMBOL vmlinux 0xcca60cc2 generic_setlease -EXPORT_SYMBOL vmlinux 0xccbf43c3 of_node_name_eq -EXPORT_SYMBOL vmlinux 0xccc6d266 pci_assign_resource -EXPORT_SYMBOL vmlinux 0xccd197c7 vb2_destroy_framevec -EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xccd6c663 drm_of_find_possible_crtcs -EXPORT_SYMBOL vmlinux 0xccd7a972 input_free_device -EXPORT_SYMBOL vmlinux 0xccd83c86 module_put -EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize -EXPORT_SYMBOL vmlinux 0xccf2863e ps2_handle_ack -EXPORT_SYMBOL vmlinux 0xccf7b26d snd_card_free -EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics -EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0xccfed537 udp_pre_connect -EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data -EXPORT_SYMBOL vmlinux 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL vmlinux 0xcd17b54e simple_lookup -EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd30b6f9 drm_plane_from_index -EXPORT_SYMBOL vmlinux 0xcd33b6a3 cros_ec_get_next_event -EXPORT_SYMBOL vmlinux 0xcd345b58 skb_queue_purge -EXPORT_SYMBOL vmlinux 0xcd3dc73e tcf_em_unregister -EXPORT_SYMBOL vmlinux 0xcd5a817e dvb_frontend_reinitialise -EXPORT_SYMBOL vmlinux 0xcd75d2a9 set_blocksize -EXPORT_SYMBOL vmlinux 0xcd86146c of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception -EXPORT_SYMBOL vmlinux 0xcd920fbe crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0xcd9ce255 mipi_dsi_device_unregister -EXPORT_SYMBOL vmlinux 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL vmlinux 0xcdbdf5ab netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xcdc28699 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdccc21b generic_delete_inode -EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcdebfa03 skb_seq_read -EXPORT_SYMBOL vmlinux 0xcdff301f pci_release_resource -EXPORT_SYMBOL vmlinux 0xce036f24 sg_split -EXPORT_SYMBOL vmlinux 0xce09ba8b mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0xce208107 filemap_check_errors -EXPORT_SYMBOL vmlinux 0xce2125ae __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce2a75bd drm_lspcon_set_mode -EXPORT_SYMBOL vmlinux 0xce337060 padata_free -EXPORT_SYMBOL vmlinux 0xce33b14d textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0xce3864eb ZSTD_compress_usingDict -EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce50e5de ZSTD_compress_usingCDict -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce61d127 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xce6d6d2a tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0xce73904d __block_write_full_page -EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0xce807a25 up_write -EXPORT_SYMBOL vmlinux 0xce9c1ddb phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xcebdef60 __snd_usbmidi_create -EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create -EXPORT_SYMBOL vmlinux 0xced3be7d dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0xcee417a0 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf0680e1 drm_client_framebuffer_delete -EXPORT_SYMBOL vmlinux 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL vmlinux 0xcf11e5f8 free_netdev -EXPORT_SYMBOL vmlinux 0xcf13b3ca param_set_ulong -EXPORT_SYMBOL vmlinux 0xcf1beb09 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xcf278728 snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL vmlinux 0xcf2a6966 up -EXPORT_SYMBOL vmlinux 0xcf2b675e try_module_get -EXPORT_SYMBOL vmlinux 0xcf3f0598 drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL vmlinux 0xcf3f550b pci_set_master -EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xcf5344fe inode_update_time -EXPORT_SYMBOL vmlinux 0xcf8c18cc d_instantiate -EXPORT_SYMBOL vmlinux 0xcf8f81a9 __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcfa5b8d4 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0xcfa78e6e rawnand_sw_bch_cleanup -EXPORT_SYMBOL vmlinux 0xcfa7e913 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xcfa94a2e dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0xcfac26f2 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL vmlinux 0xcfb3bbc4 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned -EXPORT_SYMBOL vmlinux 0xcfe99092 snd_pcm_create_iec958_consumer -EXPORT_SYMBOL vmlinux 0xcff526d2 scsi_remove_host -EXPORT_SYMBOL vmlinux 0xcffd7c78 input_flush_device -EXPORT_SYMBOL vmlinux 0xd00190d5 drm_of_component_probe -EXPORT_SYMBOL vmlinux 0xd0243e0b phy_do_ioctl_running -EXPORT_SYMBOL vmlinux 0xd0281de4 drm_fb_swab -EXPORT_SYMBOL vmlinux 0xd028b641 sk_net_capable -EXPORT_SYMBOL vmlinux 0xd031b312 vme_bus_type -EXPORT_SYMBOL vmlinux 0xd03ef1a3 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xd03f87be ip_fraglist_init -EXPORT_SYMBOL vmlinux 0xd0455015 pin_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd0533819 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xd05c1f2c ppp_register_channel -EXPORT_SYMBOL vmlinux 0xd05fda43 drm_prime_get_contiguous_size -EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd06fd7dd cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0xd072d4a5 register_qdisc -EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0xd09e0637 block_write_full_page -EXPORT_SYMBOL vmlinux 0xd09f75c5 generic_set_encrypted_ci_d_ops -EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock -EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xd0b9205a drm_set_preferred_mode -EXPORT_SYMBOL vmlinux 0xd0d02581 posix_lock_file -EXPORT_SYMBOL vmlinux 0xd0d6cf8b inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xd0f4faeb qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0xd0f78225 drm_atomic_normalize_zpos -EXPORT_SYMBOL vmlinux 0xd0faed92 tcp_ioctl -EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xd1114ed9 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0xd11bef75 notify_change -EXPORT_SYMBOL vmlinux 0xd1334553 import_iovec -EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL vmlinux 0xd14d5dc6 snd_rawmidi_receive -EXPORT_SYMBOL vmlinux 0xd15781b7 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0xd1671468 of_find_node_by_name -EXPORT_SYMBOL vmlinux 0xd169b06c devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL vmlinux 0xd1791400 sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0xd17da164 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd181be0e drop_nlink -EXPORT_SYMBOL vmlinux 0xd182a220 snd_mixer_oss_notify_callback -EXPORT_SYMBOL vmlinux 0xd18c32ca pci_disable_msix -EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd195383b i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0xd1984dd3 generic_fadvise -EXPORT_SYMBOL vmlinux 0xd1a15fcd give_up_console -EXPORT_SYMBOL vmlinux 0xd1aab847 set_user_nice -EXPORT_SYMBOL vmlinux 0xd1ad3b21 drm_gem_get_pages -EXPORT_SYMBOL vmlinux 0xd1d2f7bb svc_pool_stats_open -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1ff0d1a drm_get_edid_switcheroo -EXPORT_SYMBOL vmlinux 0xd2085c16 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0xd22290c5 skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0xd2441ed6 pci_iomap_range -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 0xd2779731 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged -EXPORT_SYMBOL vmlinux 0xd27d4ac7 to_ndd -EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0xd29446fd jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0xd2989e7d kernel_param_lock -EXPORT_SYMBOL vmlinux 0xd2993930 dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xd2a149be of_mdiobus_child_is_phy -EXPORT_SYMBOL vmlinux 0xd2a17815 neigh_carrier_down -EXPORT_SYMBOL vmlinux 0xd2a504ed xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0xd2a5b2e4 __ClearPageMovable -EXPORT_SYMBOL vmlinux 0xd2b0118f drm_property_create -EXPORT_SYMBOL vmlinux 0xd2b7e41b scsi_print_command -EXPORT_SYMBOL vmlinux 0xd2c8fe8b wait_on_page_private_2 -EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller -EXPORT_SYMBOL vmlinux 0xd2c9b124 dquot_release -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2dbc791 phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0xd2f1d80c drm_dev_dbg -EXPORT_SYMBOL vmlinux 0xd31ae360 drm_fb_helper_pan_display -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd31f8c1b mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0xd3209ee3 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset -EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xd35e1d51 drm_gem_dmabuf_vmap -EXPORT_SYMBOL vmlinux 0xd36c983b tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 -EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd3784269 tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0xd38d1605 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL vmlinux 0xd38de290 forget_cached_acl -EXPORT_SYMBOL vmlinux 0xd39dd025 phy_read_paged -EXPORT_SYMBOL vmlinux 0xd3a9deb2 pps_event -EXPORT_SYMBOL vmlinux 0xd3adbc1c mdiobus_read -EXPORT_SYMBOL vmlinux 0xd3b47cc9 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0xd3bface0 register_fib_notifier -EXPORT_SYMBOL vmlinux 0xd3c16834 drm_helper_probe_detect -EXPORT_SYMBOL vmlinux 0xd3c35766 dev_change_flags -EXPORT_SYMBOL vmlinux 0xd3c38b16 qdisc_put -EXPORT_SYMBOL vmlinux 0xd3c43ab8 generic_iommu_put_resv_regions -EXPORT_SYMBOL vmlinux 0xd3e4ac78 input_register_handle -EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd40c4893 simple_rmdir -EXPORT_SYMBOL vmlinux 0xd41289c6 wireless_spy_update -EXPORT_SYMBOL vmlinux 0xd4242b34 pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0xd43f0227 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xd443e5e6 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xd44fc241 vfs_create -EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd4671463 xor_block_inner_neon -EXPORT_SYMBOL vmlinux 0xd46c5255 drm_read -EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd490ea27 sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xd4a7ae0d _dev_info -EXPORT_SYMBOL vmlinux 0xd4b259b0 kernel_getpeername -EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4be20ed ilookup5_nowait -EXPORT_SYMBOL vmlinux 0xd4ca6f34 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0xd4cdc6aa flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table -EXPORT_SYMBOL vmlinux 0xd4dfc11d drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL vmlinux 0xd4ea6f5d devm_ioremap_np -EXPORT_SYMBOL vmlinux 0xd4ef8ab0 param_get_ulong -EXPORT_SYMBOL vmlinux 0xd4f06581 drm_dp_update_payload_part2 -EXPORT_SYMBOL vmlinux 0xd4f5191c xfrm_register_km -EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd50323f3 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL vmlinux 0xd51324d8 register_shrinker -EXPORT_SYMBOL vmlinux 0xd517bbcc xfrm_state_walk -EXPORT_SYMBOL vmlinux 0xd518c27c drm_ioctl_kernel -EXPORT_SYMBOL vmlinux 0xd51a69a5 uart_suspend_port -EXPORT_SYMBOL vmlinux 0xd52187a9 drm_atomic_helper_set_config -EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd528d71c md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xd53577e8 _snd_ctl_add_follower -EXPORT_SYMBOL vmlinux 0xd5515f86 fwnode_mdiobus_register_phy -EXPORT_SYMBOL vmlinux 0xd55f8a2b dma_resv_add_excl_fence -EXPORT_SYMBOL vmlinux 0xd571fb84 copy_highpage -EXPORT_SYMBOL vmlinux 0xd577ff2e kern_unmount_array -EXPORT_SYMBOL vmlinux 0xd578b03f i2c_add_adapter -EXPORT_SYMBOL vmlinux 0xd5795697 __drm_gem_reset_shadow_plane -EXPORT_SYMBOL vmlinux 0xd581d579 tcp_close -EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise -EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5bbaa60 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0xd5d4e0c3 flush_dcache_page -EXPORT_SYMBOL vmlinux 0xd5d6282e drm_gem_simple_kms_prepare_shadow_fb -EXPORT_SYMBOL vmlinux 0xd5d653b6 drm_ioctl -EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait -EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd60ecf24 drm_object_property_get_value -EXPORT_SYMBOL vmlinux 0xd6185067 has_capability -EXPORT_SYMBOL vmlinux 0xd627bf95 drm_framebuffer_init -EXPORT_SYMBOL vmlinux 0xd629a138 xfrm_init_state -EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0xd6315f31 ecc_gen_privkey -EXPORT_SYMBOL vmlinux 0xd63b809a ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0xd63dbcc3 acpi_dev_hid_uid_match -EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax -EXPORT_SYMBOL vmlinux 0xd64005be mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xd649fae9 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0xd64c3b67 drm_client_modeset_dpms -EXPORT_SYMBOL vmlinux 0xd659daee bio_add_pc_page -EXPORT_SYMBOL vmlinux 0xd66ada83 drm_dev_put -EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness -EXPORT_SYMBOL vmlinux 0xd6770c9b pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource -EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xd698248f drm_vblank_work_init -EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6c6abbb send_sig -EXPORT_SYMBOL vmlinux 0xd6d6f5e3 iio_get_time_ns -EXPORT_SYMBOL vmlinux 0xd6dddf41 drm_dp_pcon_pps_default -EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6f187a4 phy_detach -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 0xd7147679 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL vmlinux 0xd7314479 mmc_release_host -EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd73c655b tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc -EXPORT_SYMBOL vmlinux 0xd7604ecb drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL vmlinux 0xd77532f4 create_empty_buffers -EXPORT_SYMBOL vmlinux 0xd78673ca pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0xd78ffaae get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL vmlinux 0xd7b13a39 configfs_register_group -EXPORT_SYMBOL vmlinux 0xd7bbd758 write_cache_pages -EXPORT_SYMBOL vmlinux 0xd7cb6feb bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0xd7cd4361 drm_gem_unlock_reservations -EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7eac359 drm_sysfs_hotplug_event -EXPORT_SYMBOL vmlinux 0xd7ee8bac nf_ct_attach -EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 -EXPORT_SYMBOL vmlinux 0xd803230b snd_rawmidi_input_params -EXPORT_SYMBOL vmlinux 0xd8087a70 dev_uc_sync -EXPORT_SYMBOL vmlinux 0xd80b9c1f v4l2_ctrl_handler_setup -EXPORT_SYMBOL vmlinux 0xd81d8481 drm_gtf_mode -EXPORT_SYMBOL vmlinux 0xd824f483 poll_freewait -EXPORT_SYMBOL vmlinux 0xd84fdc55 md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xd8502646 tcf_exts_change -EXPORT_SYMBOL vmlinux 0xd865cbb1 new_inode -EXPORT_SYMBOL vmlinux 0xd8664ecd __skb_get_hash -EXPORT_SYMBOL vmlinux 0xd8751b5a param_ops_hexint -EXPORT_SYMBOL vmlinux 0xd879cd82 xsk_tx_peek_desc -EXPORT_SYMBOL vmlinux 0xd87e8c76 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0xd88776bb blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0xd88bee01 dev_mc_del -EXPORT_SYMBOL vmlinux 0xd88eabe4 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xd89013bb rt_dst_alloc -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a4ee23 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0xd8a5810b v4l2_ctrl_log_status -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font -EXPORT_SYMBOL vmlinux 0xd8c2fb59 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xd8c644bd phy_find_first -EXPORT_SYMBOL vmlinux 0xd8c71900 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0xd8c7f436 no_llseek -EXPORT_SYMBOL vmlinux 0xd8cd9727 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0xd8d60468 keyring_clear -EXPORT_SYMBOL vmlinux 0xd8dc80ba netdev_sk_get_lowest_dev -EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xd8e0efdb tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0xd8e6022d drm_cvt_mode -EXPORT_SYMBOL vmlinux 0xd8fa58a3 iov_iter_discard -EXPORT_SYMBOL vmlinux 0xd90cb249 ZSTD_getBlockSizeMax -EXPORT_SYMBOL vmlinux 0xd91319d6 raid6_gfmul -EXPORT_SYMBOL vmlinux 0xd917a131 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0xd93c40d8 iio_trigger_using_own -EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy -EXPORT_SYMBOL vmlinux 0xd94a08b4 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0xd9576978 snd_timer_instance_new -EXPORT_SYMBOL vmlinux 0xd9632b9a vme_irq_request -EXPORT_SYMBOL vmlinux 0xd963a1a7 phy_start_cable_test_tdr -EXPORT_SYMBOL vmlinux 0xd9656db8 xc2028_attach -EXPORT_SYMBOL vmlinux 0xd971fd65 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xd97f60be security_sb_mnt_opts_compat -EXPORT_SYMBOL vmlinux 0xd9806a7b nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9944a9d blk_post_runtime_resume -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 0xd9bbc7bc netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0xd9bebe7e input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0xd9d0eae2 xfrm_lookup -EXPORT_SYMBOL vmlinux 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL vmlinux 0xd9d8d1b7 md_done_sync -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9dd946f d_invalidate -EXPORT_SYMBOL vmlinux 0xd9e5aa9d snd_ctl_remove_id -EXPORT_SYMBOL vmlinux 0xd9fa9051 drm_atomic_helper_suspend -EXPORT_SYMBOL vmlinux 0xda103578 account_page_redirty -EXPORT_SYMBOL vmlinux 0xda3310a3 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda4166a9 copy_string_kernel -EXPORT_SYMBOL vmlinux 0xda4e6d17 of_get_next_parent -EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda7a6f06 mmc_register_driver -EXPORT_SYMBOL vmlinux 0xda7c3bbc drm_atomic_state_default_release -EXPORT_SYMBOL vmlinux 0xda7ccb9f tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0xda7d086d nand_read_oob_std -EXPORT_SYMBOL vmlinux 0xda7e0262 __seq_open_private -EXPORT_SYMBOL vmlinux 0xda7ffe93 dm_register_target -EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xda9c2b47 param_ops_int -EXPORT_SYMBOL vmlinux 0xdab07e16 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0xdab88a91 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0xdab9b161 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0xdabe171f udp_lib_unhash -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdad3226d mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0xdadc7b89 PageMovable -EXPORT_SYMBOL vmlinux 0xdafd2cd3 gic_set_cpu -EXPORT_SYMBOL vmlinux 0xdb0a452f of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0xdb0ae618 dget_parent -EXPORT_SYMBOL vmlinux 0xdb315019 skb_checksum_help -EXPORT_SYMBOL vmlinux 0xdb619df9 pin_user_pages_locked -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb7fa9d3 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xdb80eead drm_atomic_add_affected_planes -EXPORT_SYMBOL vmlinux 0xdb85ec73 neigh_app_ns -EXPORT_SYMBOL vmlinux 0xdb890031 vfs_ioctl -EXPORT_SYMBOL vmlinux 0xdb95e3b0 nd_dax_probe -EXPORT_SYMBOL vmlinux 0xdbacc8ec audit_log -EXPORT_SYMBOL vmlinux 0xdbb59fad of_iomap -EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0xdbde3084 bio_add_page -EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbeeb1f4 of_chosen -EXPORT_SYMBOL vmlinux 0xdc0192cd __blk_alloc_disk -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc17a611 bio_devname -EXPORT_SYMBOL vmlinux 0xdc258d02 cpumask_next_and -EXPORT_SYMBOL vmlinux 0xdc3a3c56 from_kuid_munged -EXPORT_SYMBOL vmlinux 0xdc3cfee5 devm_register_netdev -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc662bb4 mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0xdc84610e genphy_c37_config_aneg -EXPORT_SYMBOL vmlinux 0xdc8eac7a drm_gem_object_init -EXPORT_SYMBOL vmlinux 0xdc95f66a drm_fb_xrgb8888_to_rgb888_dstclip -EXPORT_SYMBOL vmlinux 0xdca538dd block_invalidatepage -EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb -EXPORT_SYMBOL vmlinux 0xdcb3dda9 pnp_is_active -EXPORT_SYMBOL vmlinux 0xdcb764ad memset -EXPORT_SYMBOL vmlinux 0xdcbe1977 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0xdccc2471 d_alloc_anon -EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress -EXPORT_SYMBOL vmlinux 0xdcfda9ba key_payload_reserve -EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0xdd087c4f frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xdd0fc86f drm_dev_printk -EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdd1a2758 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xdd1bdf34 of_node_get -EXPORT_SYMBOL vmlinux 0xdd2058e2 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xdd28ec24 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd3f468f drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL vmlinux 0xdd414fc3 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xdd557cf7 drm_gem_shmem_put_pages -EXPORT_SYMBOL vmlinux 0xdd5f41c5 inet_select_addr -EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd671fc8 drm_detect_hdmi_monitor -EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free -EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd8a8eb5 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0xdd8e8508 uart_match_port -EXPORT_SYMBOL vmlinux 0xdd9c6c54 fault_in_iov_iter_readable -EXPORT_SYMBOL vmlinux 0xdd9c9af2 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0xdd9e593d dmam_pool_create -EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat -EXPORT_SYMBOL vmlinux 0xddb2cc34 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0xddc658d2 mmc_sw_reset -EXPORT_SYMBOL vmlinux 0xddeb4b65 cqhci_resume -EXPORT_SYMBOL vmlinux 0xddf4f0e7 of_get_next_cpu_node -EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done -EXPORT_SYMBOL vmlinux 0xddf852ba scsi_host_busy -EXPORT_SYMBOL vmlinux 0xde09e50a dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0xde138a28 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xde2a1745 flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0xde3455a7 dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0xde390246 pci_resize_resource -EXPORT_SYMBOL vmlinux 0xde4ec1ef dvb_frontend_resume -EXPORT_SYMBOL vmlinux 0xde55942f seq_lseek -EXPORT_SYMBOL vmlinux 0xde5667a1 nand_ecc_sw_hamming_cleanup_ctx -EXPORT_SYMBOL vmlinux 0xde63939d fb_find_mode -EXPORT_SYMBOL vmlinux 0xde7eb7c9 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xde809317 dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0xde867c29 ecc_is_pubkey_valid_partial -EXPORT_SYMBOL vmlinux 0xde86c0b8 drm_syncobj_get_fd -EXPORT_SYMBOL vmlinux 0xde888673 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0xde9449ed ip_getsockopt -EXPORT_SYMBOL vmlinux 0xde9693dd drm_release -EXPORT_SYMBOL vmlinux 0xdea297d7 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0xdeb5ba6f bio_uninit -EXPORT_SYMBOL vmlinux 0xdebb7785 scsi_alloc_sgtables -EXPORT_SYMBOL vmlinux 0xdec154c8 sg_miter_skip -EXPORT_SYMBOL vmlinux 0xdec5793e __traceiter_mmap_lock_released -EXPORT_SYMBOL vmlinux 0xded04a1f drm_mode_create_dvi_i_properties -EXPORT_SYMBOL vmlinux 0xded2d044 eth_gro_complete -EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdef81ce0 drm_gem_shmem_vmap -EXPORT_SYMBOL vmlinux 0xdefd269d __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xdefdc344 blackhole_netdev -EXPORT_SYMBOL vmlinux 0xdf086b4f pci_dev_put -EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after -EXPORT_SYMBOL vmlinux 0xdf3f760d drm_mm_scan_color_evict -EXPORT_SYMBOL vmlinux 0xdf42be8e scsi_scan_target -EXPORT_SYMBOL vmlinux 0xdf47e2c1 mdiobb_write -EXPORT_SYMBOL vmlinux 0xdf4d83af xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf662dc7 tty_register_driver -EXPORT_SYMBOL vmlinux 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL vmlinux 0xdf67e40c key_unlink -EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL vmlinux 0xdf855641 drm_connector_attach_edid_property -EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf9720d0 iio_trigger_unregister -EXPORT_SYMBOL vmlinux 0xdfa33ee0 d_obtain_alias -EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfdb902c param_ops_long -EXPORT_SYMBOL vmlinux 0xdfddacb1 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xdffb744b frame_vector_to_pfns -EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe00279e2 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0xe006d557 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0xe0120180 drm_calc_timestamping_constants -EXPORT_SYMBOL vmlinux 0xe014f7bd drm_ioctl_permit -EXPORT_SYMBOL vmlinux 0xe021927d snd_ctl_boolean_mono_info -EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase -EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0xe03cefe6 fb_set_var -EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe0427b4d qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xe05c316f inet6_unregister_protosw -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 0xe084fcfc block_write_end -EXPORT_SYMBOL vmlinux 0xe08889c1 __alloc_pages -EXPORT_SYMBOL vmlinux 0xe08c55d5 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0xe08d01c8 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0xe091c977 list_sort -EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold -EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0bbd1eb __nd_driver_register -EXPORT_SYMBOL vmlinux 0xe0bc82da blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco -EXPORT_SYMBOL vmlinux 0xe0dedb1b skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0xe0f522c4 tcf_block_put_ext -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 0xe12d528b __lock_sock_fast -EXPORT_SYMBOL vmlinux 0xe138ce6b dvb_ringbuffer_avail -EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch -EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe141e544 drm_gem_vunmap -EXPORT_SYMBOL vmlinux 0xe153dd7b cdev_device_add -EXPORT_SYMBOL vmlinux 0xe153f436 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0xe177a3ff __drmm_encoder_alloc -EXPORT_SYMBOL vmlinux 0xe17d251b scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xe1973bf5 nf_reinject -EXPORT_SYMBOL vmlinux 0xe1a7f2d8 drm_crtc_wait_one_vblank -EXPORT_SYMBOL vmlinux 0xe1a958ee phy_device_free -EXPORT_SYMBOL vmlinux 0xe1abfa1b dev_remove_pack -EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1ed92f8 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL vmlinux 0xe1f5ede2 napi_gro_receive -EXPORT_SYMBOL vmlinux 0xe20c4a8c drm_get_edid -EXPORT_SYMBOL vmlinux 0xe20d5fd0 sg_miter_stop -EXPORT_SYMBOL vmlinux 0xe20f9f67 from_kgid -EXPORT_SYMBOL vmlinux 0xe212ff65 cpumask_any_but -EXPORT_SYMBOL vmlinux 0xe21370c8 drm_atomic_helper_setup_commit -EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe253ff8c snd_sgbuf_get_chunk_size -EXPORT_SYMBOL vmlinux 0xe25505d4 drm_gem_map_dma_buf -EXPORT_SYMBOL vmlinux 0xe25d64ee drm_atomic_state_default_clear -EXPORT_SYMBOL vmlinux 0xe2620d7f drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL vmlinux 0xe26e4446 nand_ecc_sw_bch_correct -EXPORT_SYMBOL vmlinux 0xe2738768 drm_gem_lock_reservations -EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe27608e5 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0xe27a09e7 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0xe2973eb6 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xe29cf512 set_posix_acl -EXPORT_SYMBOL vmlinux 0xe2acf654 mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL vmlinux 0xe2bc8e69 fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0xe2d3b195 phy_write_paged -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2e68c41 rproc_coredump_add_segment -EXPORT_SYMBOL vmlinux 0xe2e771ff __netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xe2e7ec1a sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xe2f87654 tty_unregister_device -EXPORT_SYMBOL vmlinux 0xe2f9a1d6 cfi_send_gen_cmd -EXPORT_SYMBOL vmlinux 0xe305e178 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0xe317082a __drm_printfn_info -EXPORT_SYMBOL vmlinux 0xe3181420 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0xe31f4786 inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe356a39c genphy_loopback -EXPORT_SYMBOL vmlinux 0xe35aa09e drm_atomic_set_fence_for_plane -EXPORT_SYMBOL vmlinux 0xe36b0de4 v4l2_ctrl_request_complete -EXPORT_SYMBOL vmlinux 0xe378d688 fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0xe38c32d5 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0xe38e8850 pcibus_to_node -EXPORT_SYMBOL vmlinux 0xe3944db4 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe39c9b32 xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0xe3ade5cf iio_trigger_set_immutable -EXPORT_SYMBOL vmlinux 0xe3b9d6b1 proto_unregister -EXPORT_SYMBOL vmlinux 0xe3c7caae drm_client_buffer_vunmap -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 0xe3ffb4ab is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0xe4071bf8 tty_vhangup -EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved -EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock -EXPORT_SYMBOL vmlinux 0xe41476d9 ZSTD_getParams -EXPORT_SYMBOL vmlinux 0xe4252914 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0xe42ed479 drm_syncobj_find -EXPORT_SYMBOL vmlinux 0xe443607a snd_pcm_set_sync -EXPORT_SYMBOL vmlinux 0xe481e149 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0xe4830c1f __lock_buffer -EXPORT_SYMBOL vmlinux 0xe4840859 follow_pfn -EXPORT_SYMBOL vmlinux 0xe490a783 of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0xe4946e1f drm_atomic_add_encoder_bridges -EXPORT_SYMBOL vmlinux 0xe49b224b pci_find_bus -EXPORT_SYMBOL vmlinux 0xe49b7d27 input_reset_device -EXPORT_SYMBOL vmlinux 0xe49d2171 textsearch_unregister -EXPORT_SYMBOL vmlinux 0xe4a4d6aa drm_helper_resume_force_mode -EXPORT_SYMBOL vmlinux 0xe4adc0e1 snd_timer_new -EXPORT_SYMBOL vmlinux 0xe4addc75 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0xe4aefbe4 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0xe4b5bc8a dvb_frontend_detach -EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset -EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe4c4dbd6 drm_object_property_set_value -EXPORT_SYMBOL vmlinux 0xe4ce02b9 proc_mkdir -EXPORT_SYMBOL vmlinux 0xe4d6882b __ip_select_ident -EXPORT_SYMBOL vmlinux 0xe4dadb23 qtree_get_next_id -EXPORT_SYMBOL vmlinux 0xe4df9be3 flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0xe4e09d5a rproc_of_parse_firmware -EXPORT_SYMBOL vmlinux 0xe4ea0d44 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0xe4ee9134 find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0xe50d5a87 of_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0xe50d8a8a file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0xe5146d1b get_phy_device -EXPORT_SYMBOL vmlinux 0xe519f7f0 __i2c_transfer -EXPORT_SYMBOL vmlinux 0xe520dc70 send_sig_info -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe5320010 drm_framebuffer_cleanup -EXPORT_SYMBOL vmlinux 0xe5360b84 drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL vmlinux 0xe5368fc1 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe547ecb6 unregister_key_type -EXPORT_SYMBOL vmlinux 0xe5510b9e migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0xe5519adb genphy_suspend -EXPORT_SYMBOL vmlinux 0xe551ba29 pin_user_pages_remote -EXPORT_SYMBOL vmlinux 0xe5648197 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0xe565ccf7 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL vmlinux 0xe5666530 rproc_detach -EXPORT_SYMBOL vmlinux 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL vmlinux 0xe5744f9a drm_atomic_get_mst_topology_state -EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe598f236 pnp_activate_dev -EXPORT_SYMBOL vmlinux 0xe5a787ff proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xe5c3dc4f input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5da362c xsk_tx_completed -EXPORT_SYMBOL vmlinux 0xe5dff7ef iommu_get_msi_cookie -EXPORT_SYMBOL vmlinux 0xe5f5d58e of_find_node_with_property -EXPORT_SYMBOL vmlinux 0xe6015248 ___pskb_trim -EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xe621335e fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0xe621a31b ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0xe66030f0 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xe6885d92 thread_group_exited -EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0xe695449c devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0xe696a8a4 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0xe69f71d3 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xe6bd84b3 drm_mode_destroy -EXPORT_SYMBOL vmlinux 0xe6c31065 netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6da8172 kernel_accept -EXPORT_SYMBOL vmlinux 0xe6db04a5 __serio_register_driver -EXPORT_SYMBOL vmlinux 0xe6db989b ecc_sw_hamming_correct -EXPORT_SYMBOL vmlinux 0xe6e3f2a4 bio_endio -EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock -EXPORT_SYMBOL vmlinux 0xe7065004 sock_no_connect -EXPORT_SYMBOL vmlinux 0xe718f257 drm_object_attach_property -EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range -EXPORT_SYMBOL vmlinux 0xe7303193 mmc_of_parse -EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe732730a v4l2_ctrl_handler_free -EXPORT_SYMBOL vmlinux 0xe73945fd __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0xe74d8ac6 param_ops_short -EXPORT_SYMBOL vmlinux 0xe74fdd2f tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0xe752fb84 mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0xe75a59f8 param_set_copystring -EXPORT_SYMBOL vmlinux 0xe75a8ea4 pldmfw_flash_image -EXPORT_SYMBOL vmlinux 0xe764da95 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0xe7698027 ioremap_cache -EXPORT_SYMBOL vmlinux 0xe771fb7e drm_atomic_private_obj_fini -EXPORT_SYMBOL vmlinux 0xe7850fac arp_xmit -EXPORT_SYMBOL vmlinux 0xe78bf404 pcie_ptm_enabled -EXPORT_SYMBOL vmlinux 0xe794d8dc netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0xe79e9bc2 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xe7a16f75 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0xe7bf7fce kmem_cache_size -EXPORT_SYMBOL vmlinux 0xe7d08d58 inode_needs_sync -EXPORT_SYMBOL vmlinux 0xe7d2b391 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7d530a0 bioset_init_from_src -EXPORT_SYMBOL vmlinux 0xe7dc1f4d blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0xe7faf8de backlight_force_update -EXPORT_SYMBOL vmlinux 0xe80673ed __module_get -EXPORT_SYMBOL vmlinux 0xe80d0563 ps2_command -EXPORT_SYMBOL vmlinux 0xe81708b1 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL vmlinux 0xe82e5db8 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xe83ee473 bio_kmalloc -EXPORT_SYMBOL vmlinux 0xe85ec8ec __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table -EXPORT_SYMBOL vmlinux 0xe863579c dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0xe864841f dev_addr_add -EXPORT_SYMBOL vmlinux 0xe86703bc phy_sfp_probe -EXPORT_SYMBOL vmlinux 0xe8715099 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0xe87d2fb0 ipv4_specific -EXPORT_SYMBOL vmlinux 0xe8864c18 cqhci_deactivate -EXPORT_SYMBOL vmlinux 0xe8871378 drm_modeset_backoff -EXPORT_SYMBOL vmlinux 0xe8a034df drm_dev_exit -EXPORT_SYMBOL vmlinux 0xe8a0e334 drm_vma_offset_add -EXPORT_SYMBOL vmlinux 0xe8aacdb2 compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xe8c520b4 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0xe8cdb8cb mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0xe8e1badf inet_offloads -EXPORT_SYMBOL vmlinux 0xe8f7c978 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0xe8f8b6d7 drm_modeset_lock_init -EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0xe900ea1c xc5000_attach -EXPORT_SYMBOL vmlinux 0xe9044a6a pci_find_resource -EXPORT_SYMBOL vmlinux 0xe906c9e6 tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0xe908227e netdev_info -EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf -EXPORT_SYMBOL vmlinux 0xe90a16fc lookup_one_len -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe917f673 of_pci_range_to_resource -EXPORT_SYMBOL vmlinux 0xe9193f89 drm_event_cancel_free -EXPORT_SYMBOL vmlinux 0xe91b18fe redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0xe9255c55 ethtool_aggregate_ctrl_stats -EXPORT_SYMBOL vmlinux 0xe9354290 inc_nlink -EXPORT_SYMBOL vmlinux 0xe93ca572 vme_master_request -EXPORT_SYMBOL vmlinux 0xe94633d4 rtnl_notify -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95415f0 mount_single -EXPORT_SYMBOL vmlinux 0xe956d65d drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL vmlinux 0xe964c29d input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0xe968fd78 inet6_bind -EXPORT_SYMBOL vmlinux 0xe96c32b7 dvb_generic_open -EXPORT_SYMBOL vmlinux 0xe97f827d devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0xe994a154 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark -EXPORT_SYMBOL vmlinux 0xe9bc63bf __dquot_transfer -EXPORT_SYMBOL vmlinux 0xe9c36b21 tty_port_hangup -EXPORT_SYMBOL vmlinux 0xe9cbd5d5 inet_sk_set_state -EXPORT_SYMBOL vmlinux 0xe9dc13eb blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock -EXPORT_SYMBOL vmlinux 0xea0044cc drm_fb_helper_setcmap -EXPORT_SYMBOL vmlinux 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL vmlinux 0xea04d154 drm_dev_set_unique -EXPORT_SYMBOL vmlinux 0xea0fc6ba of_find_all_nodes -EXPORT_SYMBOL vmlinux 0xea1c3e3a arm_smccc_1_2_hvc -EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea606667 input_open_device -EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea70592c stop_tty -EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0xea7878e3 phy_config_aneg -EXPORT_SYMBOL vmlinux 0xea9e9367 drm_connector_set_path_property -EXPORT_SYMBOL vmlinux 0xeaa7b672 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL vmlinux 0xeaac4fd2 _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0xeaaecd0f inet_sendpage -EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xeac9b99a vli_from_le64 -EXPORT_SYMBOL vmlinux 0xeacd58a2 of_mdio_find_device -EXPORT_SYMBOL vmlinux 0xeadacc99 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL vmlinux 0xeae011c4 mmc_detect_change -EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeaea08fa ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xeaf3ff7f scsi_host_get -EXPORT_SYMBOL vmlinux 0xeaf587db nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xeb01342e of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0xeb0b37a4 peernet2id -EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc -EXPORT_SYMBOL vmlinux 0xeb2391c9 gen_new_estimator -EXPORT_SYMBOL vmlinux 0xeb2db7e0 drm_dp_mst_atomic_check -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb3f5e57 skb_copy_expand -EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb54085a close_fd_get_file -EXPORT_SYMBOL vmlinux 0xeb5619ad drm_fb_helper_debug_leave -EXPORT_SYMBOL vmlinux 0xeb5aee9b nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0xeb5c2184 nand_ecc_sw_bch_get_engine -EXPORT_SYMBOL vmlinux 0xeb622285 xfrm_migrate_state_find -EXPORT_SYMBOL vmlinux 0xeb65e88d xlnx_bridge_get_output_fmts -EXPORT_SYMBOL vmlinux 0xeb6837c9 xilinx_xdma_get_fid_out -EXPORT_SYMBOL vmlinux 0xeb7b7ad6 pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices -EXPORT_SYMBOL vmlinux 0xeb90778c devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xeb9b11cf drm_display_mode_from_cea_vic -EXPORT_SYMBOL vmlinux 0xeb9c4afb blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order -EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xebb8f5a8 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0xebbc2d9b dvb_ringbuffer_init -EXPORT_SYMBOL vmlinux 0xebc56ee7 phy_write_mmd -EXPORT_SYMBOL vmlinux 0xebd4c379 security_socket_socketpair -EXPORT_SYMBOL vmlinux 0xebd922db page_get_link -EXPORT_SYMBOL vmlinux 0xebeb20ea __nla_put -EXPORT_SYMBOL vmlinux 0xebff668d iommu_put_dma_cookie -EXPORT_SYMBOL vmlinux 0xec12af74 __drm_dbg -EXPORT_SYMBOL vmlinux 0xec2106d6 mdio_driver_register -EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0xec31aec5 cfi_read_pri -EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xec406e02 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec565096 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0xec74be3f may_umount_tree -EXPORT_SYMBOL vmlinux 0xec8236ec PDE_DATA -EXPORT_SYMBOL vmlinux 0xec8b2523 drm_gem_reset_shadow_plane -EXPORT_SYMBOL vmlinux 0xeca3a3d2 drm_panel_get_modes -EXPORT_SYMBOL vmlinux 0xeca50def jbd2_journal_grab_journal_head -EXPORT_SYMBOL vmlinux 0xecad031c security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xecb55130 drm_property_replace_global_blob -EXPORT_SYMBOL vmlinux 0xecc070b9 xattr_full_name -EXPORT_SYMBOL vmlinux 0xecc535f7 drm_connector_set_tile_property -EXPORT_SYMBOL vmlinux 0xecc7a838 netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0xeccabfe7 from_kprojid -EXPORT_SYMBOL vmlinux 0xeccc2f8c input_event -EXPORT_SYMBOL vmlinux 0xecdd4546 pnp_start_dev -EXPORT_SYMBOL vmlinux 0xecddeb46 mmc_can_trim -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecef3813 drm_gem_cma_print_info -EXPORT_SYMBOL vmlinux 0xecf66a17 inet_register_protosw -EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node -EXPORT_SYMBOL vmlinux 0xecffa44f con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf -EXPORT_SYMBOL vmlinux 0xed07cb23 generic_mii_ioctl -EXPORT_SYMBOL vmlinux 0xed0f8cd6 phy_stop -EXPORT_SYMBOL vmlinux 0xed13e7cf snd_timer_instance_free -EXPORT_SYMBOL vmlinux 0xed15a97b rfkill_alloc -EXPORT_SYMBOL vmlinux 0xed238617 __put_cred -EXPORT_SYMBOL vmlinux 0xed32400a memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0xed4ae15e ecc_make_pub_key -EXPORT_SYMBOL vmlinux 0xed4e67f2 drm_mode_is_420 -EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock -EXPORT_SYMBOL vmlinux 0xed553df0 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address -EXPORT_SYMBOL vmlinux 0xed56ddbb splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0xed5d64c4 nla_put_64bit -EXPORT_SYMBOL vmlinux 0xed63ed82 inode_io_list_del -EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed66e92e seq_bprintf -EXPORT_SYMBOL vmlinux 0xed6d5980 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xed8228cc snd_pcm_period_elapsed_under_stream_lock -EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 -EXPORT_SYMBOL vmlinux 0xed90a634 kobject_init -EXPORT_SYMBOL vmlinux 0xed96769f fs_context_for_mount -EXPORT_SYMBOL vmlinux 0xed9860cf scsi_is_target_device -EXPORT_SYMBOL vmlinux 0xeda2e6ae phy_modify_paged -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedbe9814 drm_crtc_arm_vblank_event -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedcc3293 llc_mac_hdr_init -EXPORT_SYMBOL vmlinux 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL vmlinux 0xeddb51db pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0xedf041b3 md_write_end -EXPORT_SYMBOL vmlinux 0xee18e516 __acpi_mdiobus_register -EXPORT_SYMBOL vmlinux 0xee27f2ed sock_release -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee2de512 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0xee4b4409 drm_atomic_bridge_chain_check -EXPORT_SYMBOL vmlinux 0xee5125e9 mipi_dsi_dcs_set_display_brightness_large -EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee7155d8 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc -EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -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 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeab48c8 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0xeead58bf locks_copy_conflock -EXPORT_SYMBOL vmlinux 0xeeb10c59 set_bh_page -EXPORT_SYMBOL vmlinux 0xeeb4e7e4 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0xeec6516a phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0xeecf1cdd drm_mode_find_dmt -EXPORT_SYMBOL vmlinux 0xeedc8311 of_parse_phandle_with_args_map -EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init -EXPORT_SYMBOL vmlinux 0xeee82d4c dev_disable_lro -EXPORT_SYMBOL vmlinux 0xeef898c6 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xeef911bf backlight_device_get_by_name -EXPORT_SYMBOL vmlinux 0xeefcf83b mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0xef122c0e netdev_emerg -EXPORT_SYMBOL vmlinux 0xef155abf done_path_create -EXPORT_SYMBOL vmlinux 0xef2d15e1 serio_bus -EXPORT_SYMBOL vmlinux 0xef30ee24 of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0xef32d545 inode_insert5 -EXPORT_SYMBOL vmlinux 0xef351d49 gss_pseudoflavor_to_service -EXPORT_SYMBOL vmlinux 0xef5d968c kobject_del -EXPORT_SYMBOL vmlinux 0xef67ac0c __do_once_done -EXPORT_SYMBOL vmlinux 0xef717156 register_console -EXPORT_SYMBOL vmlinux 0xef72f1dd config_item_get -EXPORT_SYMBOL vmlinux 0xef7c69d2 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0xef8de002 video_ioctl2 -EXPORT_SYMBOL vmlinux 0xef95c5f2 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0xef97522a ps2_sliced_command -EXPORT_SYMBOL vmlinux 0xef9c63a8 v4l2_ctrl_radio_filter -EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefb5c12a seq_dentry -EXPORT_SYMBOL vmlinux 0xefba05e2 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning -EXPORT_SYMBOL vmlinux 0xefe4f679 ZSTD_CCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full -EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xeff99e09 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf012087e pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xf04618f1 nand_ecc_sw_bch_cleanup_ctx -EXPORT_SYMBOL vmlinux 0xf0517d7a drm_mm_init -EXPORT_SYMBOL vmlinux 0xf065308c unmap_mapping_range -EXPORT_SYMBOL vmlinux 0xf0787416 xilinx_vdma_channel_set_config -EXPORT_SYMBOL vmlinux 0xf07e6200 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0xf08e1fb8 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0xf08fe22c rtnl_create_link -EXPORT_SYMBOL vmlinux 0xf0922cd2 snd_ctl_rename_id -EXPORT_SYMBOL vmlinux 0xf0951c62 pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0xf0987a3b drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0a12ee5 simple_unlink -EXPORT_SYMBOL vmlinux 0xf0a71b1b revert_creds -EXPORT_SYMBOL vmlinux 0xf0ace50c vme_init_bridge -EXPORT_SYMBOL vmlinux 0xf0b1d7be vfs_path_lookup -EXPORT_SYMBOL vmlinux 0xf0bfbc2b sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xf0c403de d_instantiate_anon -EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf12eefd2 drm_fb_helper_init -EXPORT_SYMBOL vmlinux 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL vmlinux 0xf14aa7ba skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0xf15881e1 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0xf1720edb flow_rule_match_ct -EXPORT_SYMBOL vmlinux 0xf176eca3 fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0xf1776b65 __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xf182a2e1 drm_gem_dmabuf_mmap -EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb -EXPORT_SYMBOL vmlinux 0xf190ce2f wait_on_page_bit -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1975352 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0xf1ae58eb sk_ns_capable -EXPORT_SYMBOL vmlinux 0xf1b5340a drm_mode_vrefresh -EXPORT_SYMBOL vmlinux 0xf1bf9f6d __dev_direct_xmit -EXPORT_SYMBOL vmlinux 0xf1d51827 tcf_qevent_handle -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1e046cc panic -EXPORT_SYMBOL vmlinux 0xf1e1e297 __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0xf1e4c0d4 tcp_req_err -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1ff5167 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0xf206452d pskb_extract -EXPORT_SYMBOL vmlinux 0xf216be52 set_page_dirty -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf24380ed drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL vmlinux 0xf261e5b4 mmc_get_card -EXPORT_SYMBOL vmlinux 0xf2716d44 netlink_unicast -EXPORT_SYMBOL vmlinux 0xf275d9bc dev_trans_start -EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf28f7f7a devm_nvmem_cell_put -EXPORT_SYMBOL vmlinux 0xf290a675 configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler -EXPORT_SYMBOL vmlinux 0xf296aaf1 drm_get_format_info -EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xf2a4f9f5 phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0xf2b2b582 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xf2bc5bd6 do_SAK -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2c88af0 drm_panel_bridge_add_typed -EXPORT_SYMBOL vmlinux 0xf2c9a8e1 sock_set_reuseport -EXPORT_SYMBOL vmlinux 0xf2cdf454 snd_register_oss_device -EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2e634de ptp_find_pin_unlocked -EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free -EXPORT_SYMBOL vmlinux 0xf2fd258b tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0xf2fe4ac6 snd_card_file_add -EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf31c5d49 snd_pcm_hw_param_last -EXPORT_SYMBOL vmlinux 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL vmlinux 0xf32ad944 dst_discard_out -EXPORT_SYMBOL vmlinux 0xf3315035 cdrom_release -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf34d04a8 of_get_ethdev_address -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf3571c5d pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0xf360a409 drm_connector_list_iter_begin -EXPORT_SYMBOL vmlinux 0xf367bc46 drm_format_info -EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xf382abc0 is_subdir -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused -EXPORT_SYMBOL vmlinux 0xf39d174c drm_gem_map_attach -EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3cb1a14 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0xf3d702d8 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0xf3dbd83f truncate_pagecache -EXPORT_SYMBOL vmlinux 0xf3dc3e58 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3eef663 d_splice_alias -EXPORT_SYMBOL vmlinux 0xf3fb0871 drm_dp_find_vcpi_slots -EXPORT_SYMBOL vmlinux 0xf3fc8a70 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL vmlinux 0xf406f32c proto_register -EXPORT_SYMBOL vmlinux 0xf4102303 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xf424365a dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0xf42abb59 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL vmlinux 0xf4318e52 acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0xf4334536 md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface -EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf45ea5b0 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0xf45ebf70 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0xf4639f22 inode_init_always -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf482110d snd_timer_open -EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4bdd445 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4e0847a __phy_write_mmd -EXPORT_SYMBOL vmlinux 0xf4e2d163 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4fc06d5 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0xf50fecbc v4l2_ctrl_replace -EXPORT_SYMBOL vmlinux 0xf5180509 vfs_mkobj -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf54c2384 drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL vmlinux 0xf564d934 iio_push_event -EXPORT_SYMBOL vmlinux 0xf570f027 drm_poll -EXPORT_SYMBOL vmlinux 0xf576debe tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0xf582753a scsi_device_put -EXPORT_SYMBOL vmlinux 0xf58decd3 drm_syncobj_get_handle -EXPORT_SYMBOL vmlinux 0xf592b1da of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0xf59737b0 fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0xf59fb645 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc -EXPORT_SYMBOL vmlinux 0xf5add0ae ns_capable_setid -EXPORT_SYMBOL vmlinux 0xf5b6038d netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0xf5b6ff7a netlink_broadcast -EXPORT_SYMBOL vmlinux 0xf5bea385 drm_dev_register -EXPORT_SYMBOL vmlinux 0xf5c34db0 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0xf5daafbf drm_primary_helper_funcs -EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5f33212 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xf61cb4c3 flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0xf622402e drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL vmlinux 0xf626dd03 v4l2_m2m_suspend -EXPORT_SYMBOL vmlinux 0xf6283b74 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx -EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf66a6c2d clk_bulk_get -EXPORT_SYMBOL vmlinux 0xf67cba71 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf68741fb drm_dp_subconnector_type -EXPORT_SYMBOL vmlinux 0xf689ad25 drm_dp_downstream_420_passthrough -EXPORT_SYMBOL vmlinux 0xf68c6d6b neigh_changeaddr -EXPORT_SYMBOL vmlinux 0xf6af0e17 vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0xf6af7b91 param_ops_uint -EXPORT_SYMBOL vmlinux 0xf6bd12d1 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0xf6d52257 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xf6d5bc7f pmem_sector_size -EXPORT_SYMBOL vmlinux 0xf6d790ba drm_atomic_helper_update_plane -EXPORT_SYMBOL vmlinux 0xf6e4df71 on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6eeacb5 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0xf6f64a18 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xf6f8f00b udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xf6f94371 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf70b0858 flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0xf71ce655 elv_rb_add -EXPORT_SYMBOL vmlinux 0xf71cef30 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0xf72e17eb rtnl_unicast -EXPORT_SYMBOL vmlinux 0xf733b374 drm_gem_fb_vmap -EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf741fbdf drm_gem_shmem_print_info -EXPORT_SYMBOL vmlinux 0xf760d92b xilinx_xdma_get_v4l2_vid_fmts -EXPORT_SYMBOL vmlinux 0xf765a378 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0xf7662cda unload_nls -EXPORT_SYMBOL vmlinux 0xf770008e __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xf771a128 __inet_hash -EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio -EXPORT_SYMBOL vmlinux 0xf777ecb0 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xf7782303 dev_change_proto_down_generic -EXPORT_SYMBOL vmlinux 0xf782b1e0 file_modified -EXPORT_SYMBOL vmlinux 0xf7a7e525 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0xf7aaa98d dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0xf7ab0276 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL vmlinux 0xf7b27432 tcp_disconnect -EXPORT_SYMBOL vmlinux 0xf7b584af drm_gtf_mode_complex -EXPORT_SYMBOL vmlinux 0xf7c17099 registered_fb -EXPORT_SYMBOL vmlinux 0xf7c1ea14 phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0xf7c48778 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0xf7d112dd mii_ethtool_gset -EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0xf7d385f7 drm_fb_helper_blank -EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table -EXPORT_SYMBOL vmlinux 0xf8016edb drm_fb_helper_ioctl -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf84778ae drm_scdc_get_scrambling_status -EXPORT_SYMBOL vmlinux 0xf847a1cd config_item_init_type_name -EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf854ff14 pcim_iomap -EXPORT_SYMBOL vmlinux 0xf8793903 wireless_send_event -EXPORT_SYMBOL vmlinux 0xf882d0c0 __icmp_send -EXPORT_SYMBOL vmlinux 0xf886e5b3 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf8897091 sock_register -EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound -EXPORT_SYMBOL vmlinux 0xf8c13ee8 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0xf8c9571d pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0xf8ca7e2a free_task -EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 -EXPORT_SYMBOL vmlinux 0xf8d41289 dev_remove_offload -EXPORT_SYMBOL vmlinux 0xf8f15b89 snd_pcm_open_substream -EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf902b3d3 __mmap_lock_do_trace_acquire_returned -EXPORT_SYMBOL vmlinux 0xf90ac512 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0xf91efaec __free_pages -EXPORT_SYMBOL vmlinux 0xf9362e01 drm_atomic_helper_commit -EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc -EXPORT_SYMBOL vmlinux 0xf93b5d58 pps_register_source -EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf9416ff9 fb_set_cmap -EXPORT_SYMBOL vmlinux 0xf9552ddb dst_release_immediate -EXPORT_SYMBOL vmlinux 0xf95c7e2c unregister_snap_client -EXPORT_SYMBOL vmlinux 0xf9605c2c napi_gro_flush -EXPORT_SYMBOL vmlinux 0xf963efa0 ucc_of_parse_tdm -EXPORT_SYMBOL vmlinux 0xf9670b50 inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0xf968a864 rproc_add_carveout -EXPORT_SYMBOL vmlinux 0xf96b6dcf acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len -EXPORT_SYMBOL vmlinux 0xf9722468 eth_header -EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf98fe7b4 snd_dma_alloc_pages -EXPORT_SYMBOL vmlinux 0xf994ca37 skb_push -EXPORT_SYMBOL vmlinux 0xf99e6769 max8925_reg_read -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9a81a55 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0xf9bf86d4 ether_setup -EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xf9c410b9 nand_ecc_is_strong_enough -EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xf9cf5a28 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xf9d28fb5 km_query -EXPORT_SYMBOL vmlinux 0xf9dd2a9d netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0xf9e12e61 drm_kms_helper_poll_init -EXPORT_SYMBOL vmlinux 0xf9f00970 drm_dev_alloc -EXPORT_SYMBOL vmlinux 0xf9fde368 vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0xf9ffabf9 drm_dp_atomic_find_vcpi_slots -EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa184999 proc_create -EXPORT_SYMBOL vmlinux 0xfa207c7f iio_trigger_free -EXPORT_SYMBOL vmlinux 0xfa26a1de kernel_param_unlock -EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node -EXPORT_SYMBOL vmlinux 0xfa2a6188 tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec -EXPORT_SYMBOL vmlinux 0xfa41359d dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0xfa467d2c netif_rx_ni -EXPORT_SYMBOL vmlinux 0xfa583f03 qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa5a979f pci_iomap -EXPORT_SYMBOL vmlinux 0xfa6e85d6 dcb_setapp -EXPORT_SYMBOL vmlinux 0xfa7a259f build_skb_around -EXPORT_SYMBOL vmlinux 0xfa82c192 xdma_release_channel -EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfa88a3f2 skb_dequeue -EXPORT_SYMBOL vmlinux 0xfa9c3281 io_uring_get_socket -EXPORT_SYMBOL vmlinux 0xfaa125f5 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfab5b241 nf_log_trace -EXPORT_SYMBOL vmlinux 0xfac325fe dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0xfac8815a flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacd8c28 nla_put -EXPORT_SYMBOL vmlinux 0xfacfe758 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0xfae19109 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0xfae34d3c mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0xfaf6ee08 sock_set_mark -EXPORT_SYMBOL vmlinux 0xfb09f39a dvb_ringbuffer_read -EXPORT_SYMBOL vmlinux 0xfb160196 i2c_del_driver -EXPORT_SYMBOL vmlinux 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion -EXPORT_SYMBOL vmlinux 0xfb1ef3c5 drm_syncobj_create -EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable -EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb4c7832 __f_setown -EXPORT_SYMBOL vmlinux 0xfb50e499 icmp6_send -EXPORT_SYMBOL vmlinux 0xfb535f0f v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL vmlinux 0xfb5bd235 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0xfb63f88e user_path_at_empty -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb6d1e44 migrate_vma_setup -EXPORT_SYMBOL vmlinux 0xfb6e244c drm_atomic_helper_commit_tail -EXPORT_SYMBOL vmlinux 0xfb7044e2 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0xfb79d8e8 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0xfb7b3328 register_framebuffer -EXPORT_SYMBOL vmlinux 0xfb7fa998 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0xfb9a826f dvb_ringbuffer_flush -EXPORT_SYMBOL vmlinux 0xfba31611 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0xfba68fec unregister_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad -EXPORT_SYMBOL vmlinux 0xfbba863c block_read_full_page -EXPORT_SYMBOL vmlinux 0xfbbaf52a jbd2__journal_start -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbd336be pci_scan_slot -EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0xfc11239f dquot_file_open -EXPORT_SYMBOL vmlinux 0xfc2024c1 netif_device_detach -EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit -EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load -EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read -EXPORT_SYMBOL vmlinux 0xfc5c80b7 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0xfc6380e5 dvb_ringbuffer_free -EXPORT_SYMBOL vmlinux 0xfc64aa84 dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL vmlinux 0xfc6c7a21 get_user_pages -EXPORT_SYMBOL vmlinux 0xfc886663 dma_resv_reserve_shared -EXPORT_SYMBOL vmlinux 0xfc99a973 vb2_buffer_in_use -EXPORT_SYMBOL vmlinux 0xfc9b4ebd take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xfcb07138 ps2_handle_response -EXPORT_SYMBOL vmlinux 0xfcb5ded9 __pci_register_driver -EXPORT_SYMBOL vmlinux 0xfcc470b6 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xfccd8de3 acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable -EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcd2ef6d snd_timer_start -EXPORT_SYMBOL vmlinux 0xfcd697ce mdiobus_write -EXPORT_SYMBOL vmlinux 0xfce7b235 sysmon_nodes_by_region -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcfb7244 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0xfcff8d83 iio_trigger_poll -EXPORT_SYMBOL vmlinux 0xfd144093 drm_plane_init -EXPORT_SYMBOL vmlinux 0xfd5b92bb of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0xfd872e8b drm_helper_crtc_in_use -EXPORT_SYMBOL vmlinux 0xfd8938df of_phy_deregister_fixed_link -EXPORT_SYMBOL vmlinux 0xfda3dd99 config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 -EXPORT_SYMBOL vmlinux 0xfdb318d3 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xfdbaa6d9 filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0xfdc4392b drm_bridge_chain_enable -EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line -EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfde3bbaf drm_mode_create_content_type_property -EXPORT_SYMBOL vmlinux 0xfde69d65 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0xfdf20147 iterate_supers_type -EXPORT_SYMBOL vmlinux 0xfdf226ac super_setup_bdi_name -EXPORT_SYMBOL vmlinux 0xfdf3cfd2 max8925_set_bits -EXPORT_SYMBOL vmlinux 0xfdf70093 ZSTD_CStreamOutSize -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL vmlinux 0xfe1a9f18 nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update -EXPORT_SYMBOL vmlinux 0xfe26379a v4l2_ctrl_subscribe_event -EXPORT_SYMBOL vmlinux 0xfe37f6c3 iio_read_mount_matrix -EXPORT_SYMBOL vmlinux 0xfe3d7cd0 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe644562 of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0xfe69c1d4 set_cached_acl -EXPORT_SYMBOL vmlinux 0xfe6d66b1 neigh_event_ns -EXPORT_SYMBOL vmlinux 0xfe7af3c7 of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0xfe7f6350 md_flush_request -EXPORT_SYMBOL vmlinux 0xfe8297a0 rproc_free -EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfe964716 fddi_type_trans -EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfead98de sg_miter_next -EXPORT_SYMBOL vmlinux 0xfeb2d422 __v4l2_ctrl_s_ctrl_compound -EXPORT_SYMBOL vmlinux 0xfeb4d695 drm_crtc_helper_set_config -EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info -EXPORT_SYMBOL vmlinux 0xfeb953b1 __drm_printfn_seq_file -EXPORT_SYMBOL vmlinux 0xfed13fcc dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0xfed2e651 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0xfed7a8da jbd2_journal_put_journal_head -EXPORT_SYMBOL vmlinux 0xfedad385 v4l2_s_ctrl -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfee606ea tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xfeeb40f7 v4l2_async_register_subdev -EXPORT_SYMBOL vmlinux 0xfeebc37e xfrm_register_type -EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xfef193d4 drm_debugfs_create_files -EXPORT_SYMBOL vmlinux 0xfef46266 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0xfef95e08 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfefee895 phy_request_interrupt -EXPORT_SYMBOL vmlinux 0xff004e21 __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0xff1149e2 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff346992 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL vmlinux 0xff531031 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff6db0a2 simple_transaction_release -EXPORT_SYMBOL vmlinux 0xff77ac5d __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xff8914d5 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0xff8fda88 devm_of_iomap -EXPORT_SYMBOL vmlinux 0xff930a4f xfrm6_rcv_encap -EXPORT_SYMBOL vmlinux 0xff9c4b56 ZSTD_compressBound -EXPORT_SYMBOL vmlinux 0xff9fa623 cfi_udelay -EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free -EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffe6ea1d drm_event_reserve_init -EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0xd06bbfc7 asym_tpm_subtype -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x662d7e20 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x517df0be async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xd3f3388e async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x27ad0e45 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x40a77dbe async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x7492844d async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x7edf6c7c async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd66fdf06 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xea1c5788 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x0f4ee5c3 async_xor_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x328c1fe9 async_xor_val_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x4efcea8b async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x8be8d10f async_xor_val -EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x03c4d675 blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x9aef615c cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x244e2819 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 0x0f496cf7 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x42f37b49 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x67b20bee cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x6ec5ba57 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x786ecd2a cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x7bc5c0ac cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x8ec3fed5 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x946fcd8a cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xb7c81c64 cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xb90cdb06 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xd8efa0b4 cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xe7edc1bc cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xf531e694 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x0948123e simd_unregister_skciphers -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x44127751 simd_register_skciphers_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x851c747c simd_aead_create -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x88638552 simd_skcipher_create_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x9ade7071 simd_unregister_aeads -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xe5e9284d simd_register_aeads_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x46c1d164 serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0x3f7b296f twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x037356cb __acpi_nfit_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4639bcda acpi_nfit_shutdown -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x499bbf57 nfit_get_smbios_id -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x7750e67d acpi_nfit_desc_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xa036dc34 acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xd903eac1 acpi_nfit_ctl -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xeba33dd9 __acpi_nvdimm_notify -EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0x67927a0d platform_profile_notify -EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xbfe36436 platform_profile_remove -EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xcac33cd4 platform_profile_register -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x85eeb03e __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xc2792e48 sis_info133_for_sata -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x09917359 charlcd_poke -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x6fd9cc4a charlcd_register -EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x8b45326c charlcd_alloc -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-i3c 0xac207024 __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x15270dff __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xceff5ca2 __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x117413a5 __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x48af1705 __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x5e6426fa __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x647d62a7 __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x7c160e5c __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xc4cfcd73 __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x2e8799c2 __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x33c3d1ea __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x1b74cee2 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x71faf5ff __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xb26891da __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xd1047338 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x5507f39d __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xbaed4c3d __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x01f99034 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x06a6a636 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0b03df19 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0d6cc6a8 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x16d7370d bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1eff3247 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2f1072fa bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3c65711f bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6829ad2b bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8fdfbc62 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x90609e6f bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x95d4d2f3 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa379b5f8 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa5b077b8 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbb4b0fe8 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbe0c6251 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc3cbf9d7 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcab7af94 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xce6b5cd4 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdc672692 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xeec8d83b bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf41ece49 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf5cedaea __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfdeed410 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0c95acf5 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x441c4bfb btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7085b212 btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7220919e btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x791dac56 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbba5dbd2 btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc465268d btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc48e2ec6 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x035c5ec4 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1208b4a0 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3b282a90 btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x46034fff btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x63712ee6 btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x66d08aa7 btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6763c7e2 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x77982709 btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x821c12f6 btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x82412cfa btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x85ab68f3 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x861ce7f7 btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x88cb9eae btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcc1425b6 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe6dd722f btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xffb8076f btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x06ae58d7 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x32d97cb1 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3e3d5ddc btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x617b9bb2 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x63cb1c65 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x813889ed btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x83d3380c btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa054759a btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa0bcf383 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xcf10dd77 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xcff2a5c7 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x5704c569 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x8fbae880 qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xb57f4278 qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xcc9e114c qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xffdae6cf qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x35c0a12c btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x61544495 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x6362627a btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x74dde782 btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x76fd5b70 btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xfc3ec253 btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x35eb0787 hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x6c24ce79 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7c96ed4d hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x8e364c9c hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x006f7516 mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x056bdc55 mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0d23e788 mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x10dfa33d mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1330875c mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x14133879 mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1bbbde70 __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1e5034ae mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x25e38cca mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x29fe41b3 mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x49d6a201 mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5ef16546 mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x69d43fff mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7311d2a8 mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x770ab79e mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fca3c59 mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8481e948 mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8afbffd6 mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8bf0c607 mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8bf58786 mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8f2b73ba mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x93a9e9d0 mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa1c000fc mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb0c91089 mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc04e6430 mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc0c096b4 mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc78c2f65 mhi_poll -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe14f45d8 mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe8f5dfda mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf574b24a mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x00c5649a __moxtet_register_driver -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x23691962 moxtet_device_read -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x9c5944f4 moxtet_device_written -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xab54c3ac moxtet_device_write -EXPORT_SYMBOL_GPL drivers/clk/xilinx/xlnx_vcu 0x05bd2289 xvcu_get_num_cores -EXPORT_SYMBOL_GPL drivers/clk/xilinx/xlnx_vcu 0x5789812c xvcu_get_memory_depth -EXPORT_SYMBOL_GPL drivers/clk/xilinx/xlnx_vcu 0x8b582de3 xvcu_get_color_depth -EXPORT_SYMBOL_GPL drivers/clk/xilinx/xlnx_vcu 0xed08aabb xvcu_get_clock_frequency -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x07141361 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0fc25732 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1b636f19 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x26bc9884 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x296cde10 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2a87e8d8 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x35b5f148 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3fae2168 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x494deac1 comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4f1fc237 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x507df79e comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x54aa4ef0 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x621dd335 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x66bb2572 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x737bc165 comedi_event -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7773da23 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7bb36ae3 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x831818a2 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x86b2fb69 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x887c2e10 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8d03718d comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x95383238 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9b6807e3 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9d47559b comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9f215d95 comedi_timeout -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa3abf4ff comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xac76e516 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xad02c6c7 comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb4cfdcda comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbea07548 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc1c5d0e0 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc7628b4d comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc7cf2e01 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xeba699b8 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf6f33959 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfc10a32f comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x32cd09ee comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x33b51885 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x726eff64 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x92a483b3 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x95e45337 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xaa4355bd comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xb28d68eb comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xef99c29f comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x0290e4c9 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x0ee3493b comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x16f09abb comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x639115c1 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x8497d0ec comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xd1fc8729 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xa370816e addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x454f1686 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x898b0535 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xe4d1be17 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1f19498c comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x289adbd3 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x2f8d98d5 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x3484224d comedi_8254_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x388c5e9b comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4cde1576 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6952239b comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6c2e13c8 comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x70cf8675 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa524cfa5 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xd091bfe7 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xded6afd6 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf0fc28c7 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x3411c8df subdev_8255_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x9891c718 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xff81cfc5 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0xdd22b3d9 das08_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x11e1a73f mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1309f82b mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2b30c142 mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3f4948f0 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x5c577f6e mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x5cc9d422 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x785cbe03 mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x913d8813 mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9a4e55e0 mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9a622bc2 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa1062c94 mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa1843eed mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc6c751c8 mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd4f9ea3e mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf89ea034 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xfef9e253 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x3ab641e1 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x870e29bb labpc_common_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x64443d67 ni_get_valid_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x6c18c54e ni_count_valid_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x85e75c94 ni_assign_device_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x863a306d ni_sort_device_routes -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x11336261 ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1872410d ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2ef592bf ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2f75e8bb ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3341eab8 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x37050f3d ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x46f33c4a ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6da00c8d ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6e944daf ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x757c8f7c ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x97956c5a ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc4bb4f83 ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc581030a ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe52653ed ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe6d753b0 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xfb06d830 ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x25de62d2 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x6899086d ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xb1e1ee84 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xb6f2114c ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xbee392b8 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xd2bdbc6a ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x2465480d comedi_open -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x5049771a comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x6afcb139 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x6b38389d comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x8b8521c3 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa8375136 comedi_close -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xad815746 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/counter/counter 0x276cc128 counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0xe84c02e5 counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0xe9344c1a 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 0xe177ff3f ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x033e186f hisi_qm_dev_slot_reset -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x06d961f7 hisi_qm_dev_err_detected -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0d386c45 hisi_acc_sg_buf_map_to_hw_sgl -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1049e6a5 hisi_qm_stop -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1fa39162 hisi_qm_get_vft -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x236c7668 hisi_qm_regs_dump -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x280d1325 hisi_qm_resume -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x31fc0064 hisi_qm_reset_prepare -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x332cacd8 hisi_qm_stop_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3b726785 hisi_qm_start_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3da03d57 hisi_qm_dev_err_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3f09cb49 hisi_qm_sriov_disable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4153bac2 hisi_qm_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x49510ad8 hisi_qm_get_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4fd0e8a9 hisi_qm_alloc_qps_node -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5039c42c hisi_qm_release_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x52aff85d hisi_qm_debug_regs_clear -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5a6dd296 hisi_qm_pm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5aed358d hisi_acc_sg_buf_unmap -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5f137902 hisi_qp_send -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x66f94e63 hisi_qm_dev_err_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6971bb57 hisi_qm_alg_register -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6bff99ea hisi_qm_sriov_enable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6cd99eba hisi_qm_debug_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x753e6ba5 hisi_qm_alg_unregister -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7669c198 hisi_qm_wait_task_finish -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x84ad3048 hisi_qm_pm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x89c18621 hisi_qm_create_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x99bb1e36 hisi_qm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x99e85a6d hisi_qm_put_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa1977a4a hisi_qm_free_qps -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa31b51be hisi_qm_suspend -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xbca7d52c hisi_acc_create_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc2d963a5 hisi_qm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc68718bf hisi_qm_get_free_qp_num -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xeeaa3a98 hisi_qm_reset_done -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf2f3b7bc hisi_acc_free_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf4afea83 hisi_qm_start -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf907add2 hisi_qm_sriov_configure -EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x45d0beb0 dev_dax_probe -EXPORT_SYMBOL_GPL drivers/dax/pmem/dax_pmem_core 0x38063242 __dax_pmem_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x7126b7d7 dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xbb77931e dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x124e9855 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x27d44b2f dw_dma_acpi_controller_free -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4bf8f2e6 idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7e7e1f43 dw_dma_acpi_controller_register -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa3101e51 idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa76fd43e do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xad62447e dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xbc1f8dd5 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd2d357be do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1fb04ab1 fsl_edma_disable_request -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x27ec8762 fsl_edma_setup_regs -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3cfb3296 fsl_edma_resume -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x442cbf2b fsl_edma_xfer_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4de43c78 fsl_edma_chan_mux -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5165a32f fsl_edma_free_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x522e9ada fsl_edma_tx_status -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x62ff434c fsl_edma_prep_dma_cyclic -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x74648500 fsl_edma_issue_pending -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9057775a fsl_edma_cleanup_vchan -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x94fc236f fsl_edma_terminate_all -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xaf40e852 fsl_edma_slave_config -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb9acbf7a fsl_edma_free_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc46ec534 fsl_edma_alloc_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd2d2ee9d fsl_edma_pause -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe780fae5 fsl_edma_prep_slave_sg -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x3b40c1a4 hidma_mgmt_setup -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xf4d8297e hidma_mgmt_init_sys -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x64b7943a ffa_device_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x96bf0ec8 ffa_device_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x97a5912b ffa_bus_type -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xab6565fe ffa_driver_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xc9bfbabd ffa_driver_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xda1e04b8 ffa_dev_ops_get -EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x0efcd849 get_scpi_ops -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x62383b8e alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x11326607 dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x26e2cedb __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2ffa570a dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x35e3d098 dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3786924a dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5a895f00 dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5ae6b0d1 dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x616e4a08 dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x663781ee dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x68d1e3de dfl_feature_ioctl_set_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7d756385 dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x96507398 dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x99ad3bc6 dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xace250ac dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbbe2f808 dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc58f1f88 dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xce3519f9 dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd00d5b67 dfl_fpga_enum_info_add_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd32b3004 dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdbe60a66 dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe627343d dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfdf8c3e3 dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xff0a63bc dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x02ea21ea fsi_master_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x0b12803f fsi_master_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x0c6c4f48 fsi_bus_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x4b3929c5 fsi_device_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x523e8cbc fsi_get_new_minor -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 0xb32a40f5 fsi_master_rescan -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xc0a0b83a fsi_device_write -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 0xe5a5e04b fsi_driver_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe99bb185 fsi_cdev_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xf2530adf fsi_driver_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x06ba84c1 fsi_occ_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x4606acb2 sbefifo_parse_status -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xc80b12b8 sbefifo_submit -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x20faa1fa gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x22949391 gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x30bdd8df gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x48bddbd6 gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x5cf9f878 gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x1224ce65 gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x1c33d419 gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x1ce13e36 gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x3839eca4 gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xb33a2495 gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x0f94a3a4 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x421b670f __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x02955b58 analogix_dp_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x0d07604a analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x115dc30f analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x39958e6f analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5ab5fe1b analogix_dp_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x6a0bb34c analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xc2260f7f analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe89cce40 analogix_dp_stop_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x09340e05 dw_hdmi_set_channel_count -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x094f6fc5 dw_hdmi_phy_i2c_set_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1461e227 dw_hdmi_set_channel_status -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x157e02b6 dw_hdmi_phy_reset -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2142c9de 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 0x2e5075ed dw_hdmi_set_plugged_cb -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 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 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 0xa7da67b2 dw_hdmi_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xce27012a dw_hdmi_audio_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 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/panel/panel-samsung-s6e63m0 0x54300d10 s6e63m0_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xe7f2aa64 s6e63m0_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x1c4e3dbf pl111_versatile_init -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02f46d26 __tracepoint_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0316162a gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0650a3d3 gb_operation_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x12b85faa gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14028e17 __SCK__tp_func_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1686265f gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2d6f0a8a gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2e201487 gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x35d43d85 gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x36e19428 gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x37723dae gb_connection_destroy -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4161868b gb_operation_result -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x43ca18c3 __traceiter_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x44ebd57d gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x53f478a0 gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x57221e56 gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5ad3f2d7 __tracepoint_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5c0a8043 __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6213634d __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x62c55ccd gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x66708f9a __traceiter_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x668eb9f0 gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x728e2666 gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7583c80f __traceiter_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7bc10acb greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x818fb5ed gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x87945d66 greybus_deregister_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9dd01651 gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9e01d60c gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa01ab1db gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa416e2da __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa5510f24 gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xab8306ab __traceiter_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaf74da57 gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb50a0b99 gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbb3a5621 gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc87605e4 gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc8920377 gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcc2d4dc2 gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcd504482 __traceiter_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3e646d9 __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe14edd10 gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe3e9ae31 gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe67949df __traceiter_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xead4b690 gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xedabbefd gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xef680bca gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf804ea34 greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfe7026a5 gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xff627c0e greybus_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x1c96b946 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0e092290 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3a9ba1d3 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x584cd3de roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x73176e02 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x9deb5164 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd3bbb677 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x06eee4e2 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2e53e153 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x43eefe78 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6838ef8a sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa4480033 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdcd1843f sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe8daf41e sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xefcb2af9 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf6bebd11 sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x4e23cfca i2c_hid_core_probe -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x519687fb i2c_hid_ll_driver -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x73ddc858 i2c_hid_core_pm -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x82a8fc1e i2c_hid_core_shutdown -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xa71065fe i2c_hid_core_remove -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x32589aa1 surface_hid_device_add -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x56c9b076 surface_hid_device_destroy -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xb869d21d surface_hid_pm_ops -EXPORT_SYMBOL_GPL drivers/hid/uhid 0x5b4e41c7 uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x54a1d4a0 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xf2761402 usb_hid_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0085534c hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x011677fd hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x16eabaae hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1dc87f21 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2fbe9cb1 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x56d13818 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5a77fa37 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6efc6316 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7bbfc4ee hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8041abca hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x882f03e0 hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8bdd96b7 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8c4f4cf7 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x95ca455c hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9bf4b3a5 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbddf69c9 hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc6001e7c hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xef2c2f9e hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0768f4ec __hv_pkt_iter_next -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x17703778 vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x209781fc hv_pkt_iter_first_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x279cd7d1 vmbus_free_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31e2e77f vmbus_free_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x321055cb vmbus_prep_negotiate_resp -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3c5129ab hv_ringbuffer_spinlock_busy -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x43e217ec vmbus_are_subchannels_present -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4e26789d vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4fe7f42a vmbus_next_request_id -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5a85aee0 vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5f840c83 vmbus_connect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x660c6565 vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x674e657e hv_ringbuffer_get_debuginfo -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x707425b7 vmbus_connection -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8860c6d7 hv_pkt_iter_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x886ed94e vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8aa4e981 vmbus_disconnect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x902d1874 vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x95d01709 __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9694ec3d vmbus_alloc_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9bbec793 vmbus_send_modifychannel -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa3fec8e3 vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa66e5691 vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa68a7cd2 hv_pkt_iter_first -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc3052927 vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd11fd76d vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xda6d9a0e vmbus_request_addr -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xddfcc545 vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe45a9c4b vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfa309ae5 vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfbfa0508 vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x3c897626 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x530049d8 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xd4cc6677 adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xa55118e9 ltc2947_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2cd915fb intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x346cfe55 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3bd30bb1 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x45f114fa intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x57005d37 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x90c24161 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc7793c7b intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xce8cd8ec intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd7394f9e intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x3e3d946c intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x783cb111 intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xbc8bcdca intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4668ef06 stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x84e04b83 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x85d078f6 stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa339a43a stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xbb7af59b stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc617cecb to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc64f3280 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd7450c5f stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe3e5c17a stm_source_register_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x67aa04ce i2c_new_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x7a2e754b i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xb777f5ae i2c_register_spd -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xbbbd99bf i2c_free_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0edbac13 i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x272659b1 i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x276eed36 i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x438c9ae0 i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4464c9fb i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x45e264cc i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4727ecdd i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x48ccddb8 i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4ffd030f i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x54510c8c i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x54762ff9 i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5af30c6c i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x72d138d1 i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7a2d71e5 i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x822737c7 i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8876ad50 i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa28d776d i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb5ed5eab i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcdded42e i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd2d219a8 dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd6e9467a i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd9169f85 i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf006c309 i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf2b6ca8e i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf818a4ab i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x5c5d94f9 adxl372_readable_noinc_reg -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xe71974c3 adxl372_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x30f71a51 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x60b57a3c bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xb54500ba bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xeed1e2d0 bmc150_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x053a8e54 bmi088_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x403e07aa bmi088_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x98a15d7b bmi088_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xfeb38a3b bmi088_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x1563a104 fxls8962af_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x16f1636a fxls8962af_i2c_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x7c1d9c5a fxls8962af_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xb42ff7af fxls8962af_spi_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x7e046da6 mma7455_core_regmap -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x844714d9 mma7455_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xc2cf2e8c mma7455_core_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x0fddcd02 ad7091r_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x6e7c2ce9 ad7091r_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x5c029521 ad7606_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xeffaeb93 ad7606_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x18101d63 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1faf559c ad_sd_calibrate -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4e890c49 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x58ac191c devm_ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7d100313 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7f891b34 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xba089fb8 ad_sd_reset -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc089b7a2 ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc8da550b ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe7d83802 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x0187f70b adi_axi_adc_conv_priv -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x8d5b036e devm_adi_axi_adc_conv_register -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x1815d619 iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x62fccf94 iio_channel_cb_get_iio_dev -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xf2618074 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4d42f647 iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x86e67397 iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x9cec40bd iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb16140bd iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb6475240 iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb9513929 iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc1b79523 iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc6590c32 iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc99ffb40 iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe5944a1e iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe8dd56c0 iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xed50048d iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0xaf0175d7 devm_iio_dmaengine_buffer_setup -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x4107e38b iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x90558f9f devm_iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable -EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x7de2e49f bme680_core_probe -EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0x7db1da6b sps30_probe -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x12239d6b cros_ec_sensors_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x29ad94cc cros_ec_sensors_core_init -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2f7e50e6 cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x834e955d 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 0xbbcd1db0 cros_ec_sensors_core_register -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd3afe4e9 cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd8df5fd0 cros_ec_sensors_read_lpc -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xebb015d8 cros_ec_sensors_read_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xee6de329 cros_ec_sensors_push_data -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xfa308645 cros_ec_sensors_core_read_avail -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xfd31533c cros_ec_motion_send_host_cmd -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x4d51b3d2 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xd2b90044 ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x13a5edd0 ad5686_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x6be76a27 ad5686_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x50784a85 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x9812b7d7 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xe9bed656 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x03d866b8 fxas21002c_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xa70860ff fxas21002c_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xf9a3e37f fxas21002c_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x2b00ab42 bmi160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x6c1d1bb4 fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x6c7061fc inv_icm42600_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x8b8a7add inv_icm42600_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xeb9f1376 inv_icm42600_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x24df2e28 inv_mpu_pmops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x36739312 inv_mpu_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x20ff7c0a st_lsm9ds0_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x9ee98024 st_lsm9ds0_remove -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x22267d83 rm3100_common_probe -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xaa911f08 rm3100_readable_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table -EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0x98b7808d mpl115_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x0e18abf4 zpa2326_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x1a15026c zpa2326_remove -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x66e9f29e zpa2326_isreg_precious -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x81d89af7 zpa2326_isreg_writeable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xc4980033 zpa2326_isreg_readable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xdf1711cc zpa2326_pm_ops -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x093238f2 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0d6d4fa6 rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x33428887 rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x36ec3018 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3e789dcd rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4d1624ad rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8b475487 rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9a1b844b rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9ab9db55 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa8f5adda rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xcacbb031 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf73ce003 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x0581edc4 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xae9956c1 matrix_keypad_parse_properties -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x58e45685 adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0409a274 rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x19c84f8e rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3890a194 rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8cfd15b6 rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8d836da8 rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x994b86ab rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa9a4a08d rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb6130390 rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd128ec39 __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd2744e67 rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xeb78d646 rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xefdabc78 rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf25a34d9 rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x7d301411 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x9cd61d0e cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xab722eb1 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x017a1a6f cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x80b28982 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x02520df2 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x12fab1ba cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x108b943f tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x85a365f9 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xa75b14cc tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xaab4855e tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x147a62dd wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1b80c024 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2ad0e64a wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x376efb10 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x69b56889 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa06f7fb5 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xaaaac87c wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xae38179d wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb486564d wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcbea8b79 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfbc4fb8e wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfc54dc89 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x081ca200 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3918653d ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x692f58ad ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x710f5a34 ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x75dd0654 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x75f07994 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x82f85164 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x90c3dfc8 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x94d64861 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x0e6a757d led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x481fc3ad led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6ca6243f led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9630641c led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9889cbe3 devm_led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa948aaab led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe647d124 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xf853270f devm_led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x11dec10d led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x51b8f518 led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x89e33a62 devm_led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xc5667bab led_mc_calc_color_components -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xe4450645 devm_led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x00336f30 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x03ce21e1 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x12c171a0 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1e362b00 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x50a5409e lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x62ea0b55 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x866eb990 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa229c768 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa574bde4 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf4aa6b9b lp55xx_of_populate_pdata -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 0x04b27d7c __traceiter_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x051b2215 __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x054006a4 __traceiter_bcache_write -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 0x102eedd9 __traceiter_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16ea7222 __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x175195ee __traceiter_bcache_read -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 0x1ec4b7bf __traceiter_bcache_btree_set_root -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 0x29d5d745 __traceiter_bcache_btree_node_split -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 0x4576f820 __traceiter_bcache_request_start -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 0x4cc01d30 __traceiter_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5119b5f4 __traceiter_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x53b5e5e3 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cc8cb86 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0x61cddf38 __traceiter_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x61d60d1e __traceiter_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6697827f __SCK__tp_func_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x690dd415 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6ba7e514 __traceiter_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e74dca7 __SCK__tp_func_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79eeb380 __SCK__tp_func_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a3c0ac3 __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80e3881d __SCK__tp_func_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x830df522 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x862dfa21 __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0x9ce4b621 __traceiter_bcache_bypass_congested -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 0xa842a5c8 __SCK__tp_func_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa8bd2758 __traceiter_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaeb5b030 __traceiter_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0xbe6c31b0 __traceiter_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1857470 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc5040333 __traceiter_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc78d7102 __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc7f185d5 __traceiter_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8ae4213 __SCK__tp_func_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcac5816d __traceiter_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcb1910a2 __traceiter_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcc67659d __traceiter_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce00876a __traceiter_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce48d6f4 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0xe78c09e3 __traceiter_bcache_btree_node_alloc -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 0xee44b221 __traceiter_bcache_btree_read -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 0xf6249e5f __SCK__tp_func_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf865c1a2 __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb3d6c67 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd6b5d80 __SCK__tp_func_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0fc1d48e dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x28a20bda dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x295953fa dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2bab709b dm_cell_quiesce_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2e4cb24e dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2f4ba839 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3e8ff139 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x41145aa0 dm_cell_put_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x56247654 dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x855c5034 dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8e39b9bd dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb3134e82 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb40d99b2 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc7d772e0 dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe44026d1 dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xef14e92a dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfbd9f6c9 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 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 0x535eb7cf 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 0x7890d535 dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x84931dc3 dm_cache_policy_register -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 0xc73be5ff dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcf8c2590 dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bdae47 dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x875a5ba2 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xa3d18615 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 0x38712c05 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 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 0x90549b5e dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa09257dc dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcae37506 dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcee48535 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xdefc8d5d dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11fbbe02 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x15085586 dm_btree_cursor_begin -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1816383d dm_btree_find_highest_key -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 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 0x75bf5235 dm_block_manager_create -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/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x152f6dcc saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2396987b saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2f2e5275 saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x362cf936 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6a15f6d9 saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x72fcbdb7 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x961b70a7 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbaa6d75b saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc774fef8 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe8c5d2d4 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0c49e7b7 saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x11411d50 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1f393f5b saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3e4715d7 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x621e9eb7 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb36fb224 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb878c477 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2226e4f8 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2a51ca48 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2ca2657d smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x314cdff0 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37ce8e0d sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x426038e2 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x47884785 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4f321a10 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x54d6e55e smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x685fa4ea smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6e3d95ed smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7eb7c01c sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9569dd7b smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xaa9d538c smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc5b24792 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe0036fbe smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xff42139b sms_board_setup -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/dvb-frontends/as102_fe 0x19ba6a53 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x781cab60 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x92bc8e6c gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x6c3c8d1f mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0xe72ac0d1 stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x834f1309 stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x2377bfdd tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x83cbc8ec aptina_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x35a14531 ccs_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1970253f max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1bb93120 max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x728d87d0 max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x79381c4d max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9bb617e6 max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xaa2dd85c max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb8b2c713 max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xcdba0e6a max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe04ef66f max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf05608b4 max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf48c5bc6 max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf824894e max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xfcefc59e max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xd95711f9 cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1b351cc7 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1c17a904 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1f3ece41 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3da60c36 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4584d21a mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x497a61ff mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4f3603bc mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x50a445bc mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x633efa28 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x641c4feb mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x84396ad7 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9bd51321 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9cf7a6e2 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa6f7d065 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb2a0d3e5 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc3576902 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcb06f245 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd851a08e mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdcf4ab1a mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0426dfae saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x046d1306 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0828f040 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0e547f70 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0f5e0ee9 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1b9df6b7 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x207ee576 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2bad336f saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x34fc0713 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x39f644c2 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x48fa8bb3 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7b92c5e2 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9ababd8f saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb71f0a8a saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd34c4962 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd481f6e9 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe05e90d8 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe3128dec saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfd430e82 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x162dc619 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6a215172 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 0x820d25b2 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb3d71457 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xc219126c ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xca23ff79 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe8c78278 ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x05ba0107 mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x0a3d4e69 mccic_irq -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x3cce6e81 mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x51895c86 mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x9dfba52e mccic_register -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x209958d7 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x84ac9f09 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x2ea3f520 si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x3414ebe0 si470x_start -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x5c809fb5 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xc24265ca si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xfbbc96fc si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x19331254 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2f2e65d6 lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x386415de rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4e89e884 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9b554094 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa11cad34 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa5cbfd14 ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb47ce538 devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb8a7e9b5 rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbf4a3a77 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc8bc1424 devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd7c9c931 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe3e17497 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe7dce559 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe94f5cf9 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xedb6bc54 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf5990042 ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf9c9445c rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x119e9aca mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xf692b3a3 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x9fc576bb r820t_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x08d3ddb4 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0b83d050 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x16519623 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x17da2cff cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x34baf47b cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x447db9dc cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x456cc1c8 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4a5e104a cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x53184afc cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x61d17850 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x64df607b cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x66aa7e69 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6c792701 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x73b136e9 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x79c237ca cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7c053081 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb4d42b7b cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xda5c972a cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdcbf1079 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf69503d2 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x1bf6c5cf mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xe2ff7159 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x08c874e0 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0f76a444 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x120618f1 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x12e7b08d em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2661bca6 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x295cacdc em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4e19f853 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d90b00f em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x754c95c4 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x860a6e30 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa0e69eb5 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa1a5d1b7 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbf1c7b25 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcabff27b em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xddd6e7ba em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe84d3b39 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe95e8d8a em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfdc8182c em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x3ea9ce0a tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xb2345233 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xcd501f37 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xd133c071 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x03c96c13 v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x4ca4d6cf v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x591e32a9 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x01ccea94 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x19bf2327 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1d66c290 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x28a5e891 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2b777b87 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x38d332da videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4babd275 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4c84cc6d videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5e97fda5 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5efad6f0 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6d1517d4 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x79e7be6d videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7c99d9e6 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x880f964b videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9652466c __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa125b9f6 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbc2ce9f2 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc24dfe67 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xde75e4ec videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdf40c311 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe5421bcc videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xea5be6d0 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf46c9740 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfd0fe929 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x0f41ff19 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x1974c8ca videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x335628c3 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xfba4baa5 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x81d4f584 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xb67f26d7 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xb6803d11 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x7e1fd478 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xae5d3cf1 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xf29a8ff3 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0bb5423d arizona_request_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0ec35e66 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1288e7f8 arizona_clk32k_disable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1f318892 wm5102_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x21d97b3c arizona_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2652bb02 arizona_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x29b38b53 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x35b79751 wm8997_patch -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 0x4843e3b4 arizona_clk32k_enable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5061a907 arizona_set_irq_wake -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5c0949de wm5102_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7b94ea1a cs47l24_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa15a1de3 wm5110_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 0xbaa99896 arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd3b9f508 arizona_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe262dcaf wm5110_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe4055a94 cs47l24_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe9d08e84 wm5110_patch -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x3d154084 atc260x_device_probe -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xc6ed49c2 atc260x_match_device -EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xa142a524 gsc_read -EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xb7abd1c4 gsc_write -EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0ebb7022 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x236546cd kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x51160e0b kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5243170c kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x711cc281 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd1ed23a5 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe45cc9a6 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xee628092 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x3b006178 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x98f8f576 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc5a55f64 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x49c40a59 lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5919ee1d lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x59262479 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9fd3c631 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa39b6d0c lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xbb145ff3 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc5de77c4 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x2075a7a7 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x6e92cbf0 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x706a52ee lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0e05bb87 cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0e0867c7 cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x13234cb2 cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x132e90f2 cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x24a2574f cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x24af8b0f cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x35bb3959 madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3c7720ff cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3c7afcbf cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4d30a68b cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4d3d7acb cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x501651be cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x501b8dfe cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5fdd1fb6 cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x67974a43 cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x679a9603 cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7f423df3 cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7f4fe1b3 cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x83bb950d cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x87f30c47 cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x87fed007 cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8e74343a madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9234624e madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc4c6114b cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc4cbcd0b cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc97b0106 cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd20f2971 cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf6369958 cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x201242fe mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2b4ce220 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x39431748 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x4303bf04 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x79f95c68 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa5f27a45 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0fe8e1ae pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1399d17e pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2be7d801 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x31c07656 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x515092a0 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5e84a087 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8087b170 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb45df8c3 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc07c1eb6 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xca7f8cec pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd2fef39b pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x3ed0f75e pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xfd991471 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x3e2f04c8 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa07b14c4 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa0f7d766 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xadfa0d94 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xbdfc266d pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xabee359f devm_rave_sp_register_event_notifier -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read -EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x00e6c6b0 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x080dc265 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0c7112cb si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0eb0f5cb si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x14cc98c8 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1d8fa705 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x26008abd si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2e06e5b9 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x36d690f1 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x46e442ec si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x47813695 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x493f706b si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4a0380c8 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x63a0f84a si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x657a4f37 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6917f40e si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6a3e1cd7 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x70220a46 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7222c634 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x780b13d5 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x79e1f2d6 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x82c2c7be si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9e9dc3a9 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa5049be8 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xac72fceb si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb6d3bef6 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc70f85a3 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd24b9a00 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd8974e1f si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdcc0b2c7 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe19b9f0c si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xefce24de si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf500cc31 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfab33f0b si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x0d205c45 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x62da3a1e sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6de6752c sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xb9535aea sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xecb6aa89 sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x35767508 stmfx_function_disable -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x7502227e stmfx_function_enable -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x2d76d05a am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x4f426e76 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x760f5557 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xf6ef590f am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x1301c9f8 tps65217_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x2aa1f725 tps65217_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x53d4f565 tps65217_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x625fc761 tps65217_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x081ac652 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x0ffbf54c tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x5c5394eb tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x94791f8e ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x21b7b1e1 alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x37f92232 alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x45ee142a alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x489a26cf alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x749f4038 alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xe1746149 alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xe8b6235d alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x06e1d503 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x13c5eeda rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x198a58e8 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3074e09b rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x37079910 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3ba449f5 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3cd36e90 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4061bb83 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x46fc8e70 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6415dcba rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x79f0d148 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7bc708e5 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7dfac5f8 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x81621e2b rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x927c0d32 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x99856e87 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xaab1a527 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb369a775 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb7b604ac rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc1668978 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd362c3b2 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xeed55955 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf3d1c257 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfe8d88bb rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0066da86 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0adf3cb9 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x17d39f4f rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1c5ffe5c rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x21678b6e rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x631955e8 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x65f867a3 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6d8bd0eb rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8bf1be23 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9940b765 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa38d346c rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xbea49ee6 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd6b01f4d rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x4238ef2d cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x5102281c cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x5718e08b cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x9a19ac46 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x0b008db0 oslec_hpf_tx -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x296a8983 oslec_update -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3115970d oslec_create -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x4b711f77 oslec_adaption_mode -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x5909e701 oslec_snapshot -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x780d3f01 oslec_flush -EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x84eba96d oslec_free -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 0x345d8aaf enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x89909e15 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x90780536 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9a5e784b enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xbd2d4e2d enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xdb105b60 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xdf5f994c enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf3c49fed enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1aefee4a lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1cec593b lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x450b8040 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4fe8b8a6 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x96e7b501 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb7a30d27 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbd3fcf4e lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf46438fa lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x422bf5e5 devm_pvpanic_probe -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xc43a02a6 uacce_register -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xda455c4a uacce_alloc -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xf4e36bcb uacce_remove -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x024d14bc vmci_qpair_produce_free_space -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x046dd187 vmci_datagram_create_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x056837fb vmci_get_context_id -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1fd4782d vmci_qpair_get_produce_indexes -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2449459d vmci_event_subscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x250be9bc vmci_qpair_peekv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3a22fa8a vmci_datagram_destroy_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5591b58e vmci_context_get_priv_flags -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 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 0x9fdfed8a 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 0xbdc26853 vmci_qpair_dequev -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc04c7e84 vmci_qpair_get_consume_indexes -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc403cafe vmci_is_context_owner -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xde3abc2e vmci_datagram_create_handle_priv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe0cc9c92 vmci_qpair_alloc -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe11895c1 vmci_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 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 0x2854591c dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x76f367ee dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xa12106b2 dw_mci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x1dbdc6e4 mmc_hsq_init -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x431ed18e mmc_hsq_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x50166234 mmc_hsq_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xeaa78d0b mmc_hsq_finalize_request -EXPORT_SYMBOL_GPL drivers/most/most_core 0x09c856e6 most_deregister_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x1fab5033 most_stop_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x22b38d03 most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0x3832acc3 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0x3ad6e51c most_get_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x6d89053a channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x774f72c0 most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x82f9cffe most_submit_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x94988740 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0x96f416cf most_start_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0xb6e023a3 most_put_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xbf193cca most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0xef0b7e22 most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xff27ca20 most_register_interface -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x3681b45e cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x48d3ff8e cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xbb2a3008 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xd9149909 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x59389158 hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xb40adc97 hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x28bad848 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xe0d5b18f onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x0cbb2c7a brcmnand_remove -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x9b80106b brcmnand_pm_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xfa7f4ca1 brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0xbe5215f8 denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x52a5a882 sm_register_device -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x20dad893 mux_control_states -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x38e080cf devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x39b41dfb mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x71f68b6c mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x748f8ddc mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x80dd20fb mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa17d03a0 mux_control_try_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa3560471 devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xac0d884b mux_chip_free -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb1408a52 devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd0b6d1c0 mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe341bb3e mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf81eccf9 mux_control_select -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x5c617c60 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x928f0c29 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/bareudp 0x904bade9 bareudp_dev_create -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x19b0a333 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3e7baf3a free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5b2efbd8 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7a8c2ef9 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8943b34c c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xeaa64f09 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x4379418f register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x5558d5bb unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa6f465d7 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xed8e43d3 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x03e00a2f alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x085b3a27 of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x28ac652a can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x35d453d4 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x46dcdd97 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x493e3094 can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4e7f5cc8 can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x53befa13 alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x56de5f41 can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5891695d can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5cd9eae8 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6f9e1013 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x70c8c1fa can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x752a349d can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x892663b8 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8de86154 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x934c7763 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9460f6e8 can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9616bf7f can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9ab07e35 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb68fc8ff unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb83dc170 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb9e80a75 can_rx_offload_queue_sorted -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbe4d6320 can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc38d287b can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcfb1068a can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdb08d413 can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdf3c3316 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe7cee7ca can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xea32dc3e close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x18a4eb9e m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4ef76164 m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x6aca33dc m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x74b10e6c m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x763f0708 m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc102947f m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xe17eba00 m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xec24b531 m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x74ce9bb2 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa092ebec free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa2bb8f67 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xeef33dec register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x6d320677 lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x044e3938 ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0b4775ef ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x38a70e17 ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3a244076 ksz_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3e729396 ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8a2134c1 ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9bef9de9 ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb1b0c36d ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb4d11dcc ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc29888ab ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc61b0a76 ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc7d9db6a ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe2e79626 ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf2e4381c ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0af03075 rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0cf7bdef rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x381c8188 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x409b5e0f rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4496d6f5 rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x4af52792 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5319f412 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x83ca0ad5 rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x87e5ea25 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x94622833 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd3907d8f rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xdfbb87ff rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xebe79498 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf0609b6e rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf292b2ef realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x27bd894a enetc_mdio_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x506e78e5 enetc_mdio_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x71241a4b 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 0x1cf47e8f i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xceead2d5 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x12fe2997 ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x4f23544c ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x8d3f0c6d ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xba10a9d6 ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xda78078b ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00043655 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02d6930a mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03e1d44d mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x051d5c21 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x066d6c5c mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x097d971a mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b0614c3 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0bcc2e73 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b90eb82 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f2ada58 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20f24885 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24258d94 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2580565a mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c65526e mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d2d0f4d __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ea17c4a mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3193d868 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33ba23f8 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37c7af8a mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37ffad6c mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bfe8a84 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40f9f1ee mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47cd2aa2 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x480d7239 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a7643de mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ecccd12 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f247b09 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5101f2cc mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5148dc4f mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55090669 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55484c54 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a444cac mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d4d4736 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e0f7e62 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f0cfa50 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fad9419 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fd5c588 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65d86f11 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b0ea478 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b8335f2 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c915154 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6eb9011c mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73d1e5b2 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74ce52a1 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75a76141 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78cdd36b mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b144d08 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b829ac1 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7dee3140 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e91f2ab mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fd0019e mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fd8f8b7 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85d581a1 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86e91a84 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88fbaf47 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bafb014 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bde79d2 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d8775bf mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f87aa83 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90b1a686 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x913f30d3 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91b21101 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x959b56da mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9784ddb4 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d9741db mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9da0e947 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ec5e332 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0942448 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3622bd1 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa513fef4 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5f739a7 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab27bda5 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab2fbb65 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab830a29 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac3092d9 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac377fd5 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad1f298f mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0b81cf0 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2dee98f mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb39deee5 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4cbb891 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6762da5 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb67b51d7 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdc25b77 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2a7b45b mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3f2afe5 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc43c1547 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6d7efe0 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7cf88d9 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcea55bb5 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1b8f77e mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3c374dc mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6a45594 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7759459 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9ebf71a mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc7df8c2 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcf04774 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde43c1a2 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdeeb57d7 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1ab27c3 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe34fb620 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3d776fc mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe640bfc6 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec597d41 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec822b13 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed2d579f mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed80772a mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedc2cf45 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef59d2c1 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0e7de27 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf18d0a66 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1ec941f mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf20a529b mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2c81f61 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf513cf9c mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6ea4ce4 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8982dff mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa8cfe8a mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfabc52bc mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb202a4b mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc727b26 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00f00428 mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04fa64bb mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x093c6e55 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x104cf7ad mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13d8968d mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1734d92c mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19948eb8 mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c5e9ebc mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20d5d001 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x217d1a08 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c99922a mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x316a654d mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32b003b8 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34ac1f45 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x404bb0fd mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x438ecd21 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a1586e1 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ccf7dd0 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54094a9e mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54555e76 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5510824f mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5dc63136 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f41ad28 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6043ec62 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61a074d7 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e1b7e43 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ec904db mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7522bfe2 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75630a74 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75a8dbf8 mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x794fee8a mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79cc7fd1 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7be74e69 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c6bc1d9 mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cc77d6e mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ebbd02d mlx5_query_nic_vport_mac_list -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 0x8628870f mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86da6ed9 mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86ffbd02 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87edaec4 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x892d8b15 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8dce4b91 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90c07301 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90fff44f mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92389c37 mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x935804d6 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c0d5cd5 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cfbb717 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d40e907 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa21d033f mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa342a778 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa75f49d6 mlx5_fill_page_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8a4d819 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa265d61 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafcf1531 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3bb8a37 mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4873df6 mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbca01411 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5484015 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc671e51e mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca315636 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbf234b3 mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcffbd141 mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd21a6ff8 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd86d343b mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9bbbdef mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda9528cd mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaf10aac mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5105cbe mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe77755c4 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6798810 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf749e037 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x3034eb72 ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xa3aff561 ks8851_remove_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xcdb95ca4 ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xd9b3ccb1 ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xcc4fa41a regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xe8c8c6c2 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xf50e609f devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x083106fe __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x29375c88 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2f044f7f ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3e88a9dd ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x854da881 __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9040afc1 ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9792d744 ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9ef0c583 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa69c86c5 ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc2501a0e ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd4e5e1df ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeadf9053 ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf2be585f __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x0b28a9ad qcafrm_create_footer -EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x2b6ddf3f qcafrm_fsm_decode -EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x41da0375 qcafrm_create_header -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x1c502b9c stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x3895d734 stmmac_bus_clks_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7aab77a6 stmmac_init_tstamp_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe1a8081b stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe67fbfae stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xf572566f stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x56043d21 stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x612d569d stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x95ec5fb7 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xbabdb5ee stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc031376b stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x1d9d5ef6 w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x5d4dd5f6 w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xca9aa665 w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xee2a625e w5100_probe -EXPORT_SYMBOL_GPL drivers/net/geneve 0x3449cc63 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x3db9b5b5 ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x50e0f588 ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc7330940 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xe50625be ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xe60704ea ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/macsec 0xce6665e8 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x3786519a mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x1919e965 mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x36ee9624 net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x80f4438f net_failover_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x0a1512da xpcs_do_config -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x329bbe86 xpcs_config_eee -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x3e661d0a xpcs_validate -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x540b9bad xpcs_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x9afd0927 xpcs_get_an_mode -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xcf38b640 xpcs_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x00483acb bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x011bd588 __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x03bb6b0c bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0547cb6c bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0676ef66 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1268ee88 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1452eca6 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2c0a1cd9 __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x315f23ae bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x31c5d442 bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x31d7885c bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3cf5da53 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4427a1e9 bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x63bbab68 bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x64ced60a bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6cef8b1c __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7a393ea2 bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7ca93435 bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x803728e9 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x833108fb bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x97947078 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9c549c62 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9d0de453 bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa16671bd bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa6aea395 bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa94dfb44 __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xadb9ad85 bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xadc1b987 __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb662759a bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb6de2ca1 __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbd12c25f bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbf2f5a12 bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc9f75cf5 bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xda799d76 bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/tap 0x1464d611 tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x36bd87c6 tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0x468368b4 tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x74846c8b tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0x84051caa tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0xa87b2dc1 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0xc68849b6 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0xcc5a06b9 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xdfa5a835 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x4a1082ec rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x276cd989 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2c47bb49 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3d5858a9 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3e94fb79 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x75370d27 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x80a5af69 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x6d1c5622 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x818d49f6 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xc216b4fa vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xdc28e467 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x37b86eee libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x32c7417a il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3468f41a _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x37c39826 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3dbb5537 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd053095f il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x01f71598 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x04a8f448 iwl_acpi_get_dsm_u32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x078924dc iwl_read_external_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0cda8aa8 iwl_cmd_groups_verify_sorted -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x122c40b6 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1231a135 iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1332e4de iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x14c99a0c iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x188d6598 iwl_fw_dbg_error_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1c55b6c7 iwl_finish_nic_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x20194da4 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x26108b1a iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x276d900b iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2b4186c1 iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x30ec739a iwl_get_shared_mem_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x31cfe1d7 iwl_fw_dbg_collect_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x32184943 iwl_acpi_get_wifi_pkg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x325e0ecf iwl_get_cmd_string -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x33eafbc4 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x37773c7c iwl_pnvm_load -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x385a038b iwl_acpi_get_lari_config_bitmap -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3b3ac251 iwl_fw_dbg_read_d3_debug_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3dfbc73f iwl_sar_get_wgds_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3ff36bc2 iwl_acpi_get_tas -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x467ade7b iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4cf528ef iwl_free_fw_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4d63a48e iwl_init_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5460b51b iwl_fw_runtime_init -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 0x5a02f0e9 __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5f955ca6 iwl_sar_geo_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x60727604 iwl_sar_select_profile -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x64f32377 iwl_acpi_get_mcc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x69d4e133 iwl_trans_send_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6ac796b7 iwl_write_prph64_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6f7ab24b iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7a1c39f3 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7ef9d4a4 iwl_sar_get_wrds_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7f2ecc96 iwl_acpi_get_object -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x80b158e3 iwl_write_prph_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x81fd17d5 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x846504e7 iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8b411125 iwl_fw_dbg_stop_sync -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8cd2f16c iwl_fw_lookup_notif_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8d66630a iwl_fw_runtime_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9038811a iwl_rfi_guid -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x905a22cc iwl_write64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x96e9e7ae __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9704d764 iwl_fwrt_dump_error_logs -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9f05394 iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaa44d368 iwl_acpi_get_pwr_limit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xabc36220 iwl_read_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xad7cead4 iwl_fw_dbg_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb05437d0 iwl_get_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1338340 iwl_fw_lookup_cmd_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb156f343 iwl_acpi_get_dsm_u8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb8618327 iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbafc8994 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbc38edf2 iwl_acpi_get_eckv -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc08cfb8e _iwl_dbg_tlv_time_point -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc2ef9a33 iwl_dbg_tlv_del_timers -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc8d1c787 iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc95bb05a iwl_set_soc_latency -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd23876ee iwl_write_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd31dcb8c iwl_sar_geo_support -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdb6902c6 iwl_read_eeprom -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 0xe8d593be iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea85a9bc iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeb6f8df6 iwl_configure_rxq -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeec738ad iwl_fw_dbg_stop_restart_recording -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf353b3c5 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf46b06ad iwl_fw_runtime_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf53a1eb4 iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf88964e4 iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf972a6a7 iwl_write_direct64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfaa820f9 iwl_sar_get_ewrd_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfc1e6f41 iwl_guid -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfe3f9fc8 iwl_fw_dbg_collect_trig -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xff334566 iwl_fw_start_dbg_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x084b5b93 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0e59354b p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x15c12034 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x30a38fe5 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x38c755fb p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7284c2aa p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x999fb33e p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xbdb54b74 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc08dba3d p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x023e373b lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x048aa35f lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x24ce635d lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x40b5359e lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x41fe2aeb lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6439b9e7 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x658d9b04 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8cadd0ec lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8e1db33a lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x90822ad2 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa52524aa lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xada056a8 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc5e6bd51 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe14d02c8 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf2c9aba6 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf95cc0d0 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x1d28ff68 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x27a29b7e lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x42143e44 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6a61ad17 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6b9ab6e6 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6f92e570 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa4d718a9 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc7f4838f __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 0x12764754 mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2a68f28d mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x34a252da mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x358e46ea mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3ac56ba8 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x52b3535d mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x56d28c5b mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5821f623 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x638c21f6 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6b3beb8b mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x735aa4c8 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x77e54955 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7d200fca mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7e363095 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x93606abf mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9bcff8d9 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9e264798 mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xaecde346 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb235eb79 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb69bcd16 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xba45926b mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdb5e4c2a mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe1dc2e02 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf687388d mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x038c7082 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0cb8034b mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x14642fc7 mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1a0e69c9 mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1f8ac718 __tracepoint_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1fd27ea0 mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x20c56ff1 mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x23231277 mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x23c8a7e4 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x37d38168 mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3924d85e mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x39798d59 mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x397c22c9 mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3b868a92 ____mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3ec34221 mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41796a1e mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x45735368 mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4702b69b mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x47e1fb12 mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4c7ff324 mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d7f19d9 mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4f1a5e7c mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5169e3b6 mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x51c47f13 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x51d3f87b mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5934f088 mt76_get_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5a48f75e mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5c6aa06f mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1b4e42 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x61c3333b mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x65b20d0b mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x694ec319 mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6b613bde mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6c78f1c0 __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6ed7d88c __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6eebc922 mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6f64e04e __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x72387494 mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x737c5619 mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x779fed50 mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7b3f05c9 mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7b4ee963 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7ca23fa8 mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7db3a97e mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x879b3051 mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x883e5471 mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x888a1dd5 mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8bc6fa74 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x938e7364 mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x954cea63 mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a5471af mt76_sar_capa -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9ea44cbd mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa6e684d7 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa773a2c7 mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xae95a08e mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb016182a mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb130e8f6 mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbd3f316d __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbe771fc5 mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc197e059 mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc31caaca mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc56333c6 mt76_sw_scan -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 0xc9e7d54b mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcb1d8a84 __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcba47c4d mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xce4c2edd mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd519d351 mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd85af937 mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd9de6e9c mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xda2b7784 mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdbb9b3c1 mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe22ba366 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe634113c mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe811a033 mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe95d230b mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xed8bb545 mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeebcb40f __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf0730c31 mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf9673121 mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfa3a6597 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x012e6a91 mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0d0d8477 mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x109fbde2 mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x16a4c9af mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x19696aca mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1b786a4c mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1dadbf3b mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2047334b mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2187b03e mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2519c4bb mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x27973616 mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2a66fafb mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2e72b1b5 mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2e8d3642 mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x31895072 mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x34958086 mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x36afdd58 mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x398e0fc3 mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3ca20460 mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x41bbc153 mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x483c02dd mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x489e8bd3 mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4cbe7ab2 mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4d519492 mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x507efce6 mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x51acea03 mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x597c9292 mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x62a005cd mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x64d402f5 mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6549262a mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6bdc2be9 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x77ddf470 mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x88b33561 mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8ecf6671 mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x973467eb mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb65c42ad mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb92135cb mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbb9eb0a5 mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc8f3054b mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc93c8bdf mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe17a6dd8 mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe6a766f9 mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfa4e48d1 mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x194535a8 mt76s_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x73d48b19 mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x9528d6c8 mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x461d28b6 mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x70b2e7b3 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x745e71f2 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x759bc96d mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x86be9470 mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x956f1428 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xce10e5f4 mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf0774c61 mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf88e2203 mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x026c34b5 mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x15ef14c3 mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x300f7d97 mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3c5ded8e mt7615_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x44ea9e3b __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5630b645 mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5dc667b5 mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5fe35a29 mt7615_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6146a875 mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6f6ff9da mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x83c0cc9d mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8c09fd70 mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x97581abb mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9e8ff95d mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa384d439 mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xae23612a mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb06e31ce mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb5595095 mt7615_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb7d003a8 mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb837a0f2 mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc3a8ae87 mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xca7f66c8 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd0b292c2 mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd62497f6 mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdbf3ae8f mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdc2233a9 mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe102ecf3 mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf0ad7b2d mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf4c09e95 mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x96c000aa 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 0x3c956653 mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x3fbbd92f mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x4fb2e1b0 mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xbcad730a mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x55473455 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xb8201e69 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc2eac619 mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xcfe1f913 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xdeee861e mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xf373f7ab mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x014e6581 mt76x02_configure_filter -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 0x05e4fbcb mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x06037faf mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x06ffc6f0 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0aaa3163 mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0ce6c8a7 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 0x0fed3244 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x14da55b0 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1b0e7e84 mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1bf20152 mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x219e9d2f mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x23e314dc mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2b2f1058 mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2bb3e5c6 mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x321c23fd mt76x02_sta_remove -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 0x40f5e623 mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x443238dc mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x51049f6f mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5143372c mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x52389c26 mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5635f11b mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x57abc629 mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x62de387b mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x648fd9de mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x653564b5 mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6a4ef7a7 mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6b77c45d mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6dd22f95 mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x700bb3e8 mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x708e4881 mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x709eb5c1 mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x73219f00 mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7dc92370 mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7f99555a mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x82aabd3d mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x83bdfe3b mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x896c922d mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8d6d9b5c mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8f052915 mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8f6a7709 mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91ba1be0 mt76x02_get_rx_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 0x92453a2c mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x95c55d1c mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9703f337 mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x99215643 mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa0f81665 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa1be0bd1 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa528fe5e mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaa0168b3 mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb4a7b976 mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xba8bb058 mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbb5dd769 mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbc4b3ff7 mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc454eff3 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc9857ef7 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc9e58b8b mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcb35d4e9 mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcfb2da83 mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd0a7071a mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd1848317 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd8513acd mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe7aa82e4 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xee2d66b8 mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfa5473b0 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xff0c332a mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xff8083aa mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x0a0ab959 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x1038d429 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x3e19c619 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x435fa36f mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7284ec49 mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa28648ab mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd06e2a50 mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xeae5ed36 mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x052f0038 mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x09e51e8a mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0afa84d6 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x14713b76 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x17dce5da mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2eb283ad mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x348cdab0 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4932f66b mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x64955649 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x85e04543 mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x871343c8 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8bc8d012 mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9f730558 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa57e8e9b mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xad2adfae mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc781497a mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcae89274 mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xefc32a32 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf0834ce4 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x3055ad9d chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x6b5e9203 wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7aeb3227 host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa393fb8f wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb3e412a3 host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xda006df1 chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xdfa30aa2 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x1afea3c5 qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x2aaadd20 qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x2afc1c74 qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xd95d4f64 qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xecf214cf qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xf2ae9daf qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x09b14fad rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0c97fde1 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x11810732 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x17c5001e rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x17f2f43a rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x18750da2 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1889b665 rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1a049d6f rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1d6041ba rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x205e2fd5 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x25e2a82d rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x431c45b3 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x452f6371 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x457ebf14 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x464a89dd rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x47800298 rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x48a5240b rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4ff9e31b rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5024f092 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x52a69d41 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5693f3ef rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x596c1532 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5ae3f461 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x668def78 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x66ba760b rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7005c009 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7d7d3720 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7e5eff45 rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x82129d82 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x873e30fb rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x91452780 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x91b1932a rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9c4e7085 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa410b040 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaade3f8f rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb21119cb rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb4a8f3a7 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xba307741 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbf892aa0 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc30b6888 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe0684da7 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf458332e rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfe79db91 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xffeddd62 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x030ecb7e rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x17e202c5 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x24a4a909 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x27f6157c rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x42bc7cab rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x442362e7 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5863e3e5 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5c5c0f76 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7213fd76 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 0x9f3c8921 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa33fc7ec rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa91eee13 rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb525594c rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb981e608 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe8dbe028 rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf24ecad3 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf8ed8480 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x01a4933a rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x05c35c26 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0cd6d01c rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1750b77d rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x17f1f103 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x20c2f1d5 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x29bedcb0 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2a6c2912 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2fec1cdf rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3cc6e895 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3d33579b rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3db53d48 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4cef19c2 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x54b83728 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x559d2c28 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x595d02cc rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5fa14457 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x733e5292 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x77335635 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7b670e85 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7e9bf205 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fdc38f2 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x806a3f37 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8bb20254 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9672557e rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa1c23c0b rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa24bc56f rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa8c8d8e2 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa9dba4d3 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaa389a4e rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb0dad0b6 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb3a37cf2 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb903f15d rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb9856aaf rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbd7f52c7 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc49245d4 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc76de8dc rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc90c30e9 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcc8a20c7 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcd25ef65 rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd3a95f7f rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd7005365 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe0134055 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe6f709ac rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeb0d852c rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf13be321 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf2f1430e rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x3276c733 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x4cef42c5 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x65f814f9 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x72b2df9d rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xc2698f9a rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x812ada56 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xcd17d8e1 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xe589fe28 rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0ecae57c rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x17ff2f5e rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x228f4b1f rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3299f8e2 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4ff38c6a rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x59bd3a08 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7c5bb5b8 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x907bd5db rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x94b507a4 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x99880a67 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa287412f rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xafa0a199 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb20301ee rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc41a3515 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xeefd1242 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xefe9b9c7 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x02ad7134 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x070e9b30 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6113e522 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x990b4603 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0a6f7f6b rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x157fe57c rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x210270a1 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2711b0c0 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x29ee7264 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x38e31605 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x427586e3 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x48ebed34 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4b2fdec7 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5686de4c rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x646f322b rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x73fe9f57 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x75a7a23e rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x75d02af5 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8c3d51d4 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x93d165d9 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x95b1cbfc rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9e31ffe4 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa67e4784 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa9587dd1 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb359d0fb rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xba85c508 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe02c1552 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfea30f57 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xffa7dedf rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0adf25f1 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1804c0f6 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1da0757e 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 0x36e6040e rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4050c910 rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x48201e5c rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x50197b03 rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x522e1412 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x59f621f9 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5c1503ef rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x814377de rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8401f0d9 rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x879d63e2 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x94d70ca1 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 0xa9e279bf rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xadf214d6 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaecad0e5 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb57d1c69 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xba1ac226 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xba4d990e rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc5a5b423 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf921e02 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdfbcc8a8 rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe2619141 rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf15af864 rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xaecee362 rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xb6396c2e rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc7445c66 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd1de7df8 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xe7a9c59a rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x1de73b0b cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x309045a9 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x548cde13 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x7e8fa10d cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xbf9b05e4 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xd66981da wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xed2adadc wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x07ec226b wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0891b145 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x08e85feb wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x09dbf6d7 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0e58b5fa wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0fcc0195 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x17b65400 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x191f7237 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1c8e9b08 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1fb7d46f wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x37c70b95 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3be71849 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3e7668ef wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5b82a084 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5f289cf4 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6a4204b9 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6ba9f704 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x763cc047 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x78203ec4 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x792f1447 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7d667d52 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x833a70c9 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x919705a3 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x93c5fceb wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x95f2bd70 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9e5431b5 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9f8c2c97 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa330e2cf wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa573acbf wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa7ddd0c8 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa84d6e0e wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaf2b1081 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaf973490 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb6dac5bb wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc97a8fa6 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcc91f132 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdd5b81e9 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdf477d2e wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe36ebe17 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe5165b09 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe5f89848 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe7cdae04 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf926c0ea wl1271_tx_flush -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 0x7d725195 wwan_port_rx -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xb0d4a31d wwan_unregister_ops -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xb74c31cd wwan_remove_port -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xecb2107b wwan_register_ops -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xf02c95b7 wwan_create_port -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x5428d43e nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x92d1e74b nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xbb4ff39d nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xc5acbf76 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3b86a777 pn53x_register_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x44c30869 pn53x_unregister_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x767c0902 pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x929b24b3 pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x9865eda1 pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x9eec2286 pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xddbab7ed pn532_i2c_nfc_alloc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x262e5b5f st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x57d01a09 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8f6f0ee2 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9a0cc00f st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb7bcc052 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xbc13f42d st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf10ec7fd st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xfaceb53e st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x007c81cf st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xe36b1f35 st95hf_spi_recv_response -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xf26009fe st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x2513fc36 ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x4c2c8aee ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x99c653ef ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 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 0xe71cd1ca async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xf6696aa8 virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x08edf0af nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0ba52968 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1173549d nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x177dd102 nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x22cd1e28 nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2e20a2f3 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2f2c80c8 nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x371cf22e nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3b6b78e1 nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3e91dbc2 nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x40b67a79 nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49262a64 nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x525f984f __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6c3a33b1 nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x762c946f nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7b004e62 nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8422d13b nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8898a163 nvme_setup_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 0x8fc8ed19 nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9fc24c34 nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa90828b3 nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xacd58b41 nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaf67d1c7 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb101e635 nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc3c92bd9 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc4f52d50 nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc9ffb25f nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcb5fb444 nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd320e7fd nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd3973ba4 nvme_unfreeze -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 0xd622057f nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd7f141f5 nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdb2e7a85 nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdcfcd5a6 nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeb3c47e1 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xedba6522 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf48e48cc nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf63eb65e __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf6c810e1 nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf9f0e70b nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfba0fc0e nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2fea7f1b nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4980b6b2 nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x53846d23 nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6605fed8 nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x807ad443 nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x815ed811 nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x89581f3a nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa12f87a4 nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb2b1518d nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb634f66d nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xdf25f318 nvme_fc_register_localport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x18559f4e nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x271cf124 nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x46cd0ab6 nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4ef372bd nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x81e7feda nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8260cec7 nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x868b7889 nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9b34d428 nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb30674eb nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xeb856a3b nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf36fb607 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 -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fa5302a nvmet_fc_rcv_fcp_abort -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x96fc61ee nvmet_fc_register_targetport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xfc5a0ef1 switchtec_class -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x44df0950 mcp23x17_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x74a4adbf mcp23x08_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xb513fc77 mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xa89f665d cros_ec_sensorhub_unregister_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xb81b0648 cros_ec_sensorhub_register_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x6b1be500 cros_usbpd_unregister_notify -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x8bda2df3 cros_usbpd_register_notify -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0c4875b5 ssam_device_get_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1169dfe9 ssh_packet_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x12987aaf ssam_controller_stateunlock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2a7a8bbe ssam_request_sync_free -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3dbf8d60 ssam_device_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4c649fef ssam_request_sync_with_buffer -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5633ce68 ssam_controller_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x60a6f477 ssam_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x616384a1 ssam_bus_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x744f7b75 ssam_controller_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7950e21a ssam_client_link -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9190125d ssam_device_get_match_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9654c70e ssam_request_sync -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x98d4d3c4 ssam_client_bind -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa47be770 ssam_request_sync_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa9062743 ssam_controller_device -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb120753f ssh_packet_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbbfc3479 ssam_request_sync_init -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbbffa597 ssam_get_controller -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc100b17f ssam_request_sync_submit -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc86c8284 ssam_device_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcb27473d __ssam_device_driver_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcd791cf1 ssam_device_remove -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd22d9479 ssam_device_add -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd5f68043 ssam_controller_statelock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdb61ceaf ssam_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe36c7073 ssam_controller_event_enable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf4229eb1 ssam_request_write_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf7f29e1b ssam_controller_event_disable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfd712d6f ssam_device_driver_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x7b9bff63 san_client_link -EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xd60bd773 san_dgpu_notifier_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x1720c166 devm_reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x428b7b04 reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x60202ddc devm_reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x8d04950e reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x79ead85c bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xccc6dd79 bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xd9b321f1 bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x72397677 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x88b888a1 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xbdb85907 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x187d9767 ptp_qoriq_gettime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x38140852 ptp_qoriq_adjfine -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x4f7e24fa extts_clean_up -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x5131317a ptp_qoriq_init -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x62f8e4d0 ptp_qoriq_settime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x9c9f8b16 ptp_qoriq_enable -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb3bb43ed ptp_qoriq_adjtime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xda5c94d6 ptp_qoriq_free -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x11e7cc04 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x2e110307 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x45152839 mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb6da1d7d mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xccc75799 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3abe11c9 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x94aa1c9a wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa589bb08 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xb089dabc wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd086c28a wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf3ee2056 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xee7e691e wm8400_register_regulator -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 0xf984aa81 qcom_glink_native_probe -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xfd2d5a1d qcom_glink_native_unregister -EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0x245f467d ds1685_rtc_poweroff -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x024612b8 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0d09cc91 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x14f33bd3 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x16aff70b cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x197241b9 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x236769ca cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x26900a19 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2e25b40c cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x310b0b65 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3e130209 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3faff087 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x41b7914c cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4b5a54eb cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x56c236d1 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x604f98ce cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x63fe2032 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x64119a5e cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x646f6e50 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x676ca21f cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6d8854b3 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x78443777 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7992011c cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x85c163ac cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9310d145 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x955ea32e cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9a76c8c7 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9f722345 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa173177a cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa4735587 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xae5362f0 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb425995b cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbb3c47c8 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc34a221c cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc6d754c4 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xce9a364c cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd2fedffe cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd50a48e8 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdb30aa08 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdd7f5ed2 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe1319e9c cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe1d97505 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf04d75cc cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf1c7f2b3 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfcdc751c cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0e770a6d fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x16a0ab07 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x38d7109e __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3afce04c fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5728cbc3 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5dd73502 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5efdf6eb fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x610c66e2 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x64987609 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6b17b88f fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6d42c2f9 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x82c489d4 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8b33024e fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x988d1387 fcoe_libfc_config -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 0xed4fc89f fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf6628885 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x0d325ad5 fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xf1f30136 fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x1a6e44ce hisi_sas_debugfs_dir -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x26df1f0f hisi_sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3978c8fc hisi_sas_host_reset -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3f2a4a3c hisi_sas_remove -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4a9c3b64 hisi_sas_scan_start -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4fc22123 hisi_sas_stt -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x52a9465e hisi_sas_phy_oob_ready -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5340eb57 hisi_sas_get_fw_info -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5ecae74e hisi_sas_stop_phys -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6936de2d hisi_sas_phy_down -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6e2af4d7 hisi_sas_free -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x73a94f6f hisi_sas_sata_done -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7f1a1997 hisi_sas_slot_task_free -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x86951559 hisi_sas_release_tasks -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9061621f 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 0xa29a3a26 hisi_sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xa9a18bf7 hisi_sas_sync_irqs -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xab654063 to_hisi_sas_port -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xad2eb401 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 0xb377dcce hisi_sas_controller_reset_prepare -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 0xe2370b70 hisi_sas_probe -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe30b3040 hisi_sas_alloc -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 0xe35eba7d hisi_sas_init_mem -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe987d9aa hisi_sas_debugfs_enable -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xebfae55c hisi_sas_get_ata_protocol -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf843847f hisi_sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1af24bde iscsi_boot_create_acpitbl -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x219cbbf6 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x2d6ff615 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x432ebf44 iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5577dd65 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6c7d17d5 iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xbf7bc85a iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x905b0a32 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x004f3d49 iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x025807d3 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x09b58c5b iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e4d04a6 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x170dfe3d iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d442d81 iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1e78fde6 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x20c82ef7 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x22b36b59 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x258ded69 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x271c5d16 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x282a2a58 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x40feec49 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x45140f2c __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x48b44057 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4fe018b5 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x50b0df79 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x55b03e54 iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x59a1caf0 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5a2b8376 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5f1cd9f0 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x72dff917 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x81f2b58c iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x86fc6154 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8bf8bdb4 iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d6cbcc5 iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8e3c7928 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x95a92efb iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x97dffc8c iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9d70d276 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9e6d130d iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9fa7e803 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa1354b53 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa312f2cf iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xab509040 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc7765e2 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbd0a390f iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6b3bd77 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc9e7b001 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xca2466c9 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdc7b8e85 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe2c30d26 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe3ec91ae iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe5ada8a1 iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xec56eb59 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf2cd252f iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf38dc0b6 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff35bc5a iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x01549925 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x18c25db3 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3fe7a523 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4536894b iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4a71e2fc iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x53c5e446 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x59b3b3b6 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x66503118 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6d492efa iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x715e8258 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa37dc017 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xaffafa24 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc5ffe3f0 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe14139d4 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xecf6b8de iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf33a272d iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf72316c0 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0b321e58 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x113079a0 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x191e286b sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x24143a40 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2a437591 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2f603b42 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x304d0fee sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5049496b sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5494840c sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5b2abdc9 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5fe428a0 sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x62f299a4 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6f6637f3 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7dedb379 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x832fe60f sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8799cd43 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8a5a0735 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8eff5a7d sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x93b136ca sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9bdd4324 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9f03885a sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9f338089 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa86e2003 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xde45d192 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe0ce3d4b sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf87ea1b5 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfcc25474 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x39b7c4cb fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x02c6bf0b iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0b4df2b7 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0ea9da80 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15e4768a iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f8f781d iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x22727913 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x23ef26be iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x33ed0e0b iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x368531ce iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x378d108c iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3afd162b iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52584b64 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52ddd3ca iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5742215c 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 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e2b829d iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x64103aa8 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 0x69c7dd17 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6b2b47a0 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7467dfbe iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7a1640f6 __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x803346d3 iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x814af6bb iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x85392847 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8665f42e iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88bc183d __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8dd86c8b iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8eb12bce iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x92ca9e36 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x934053eb iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9b320d8e iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9b463ac4 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ea7cc9d iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9f2cf934 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9f348b66 __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa1c5a150 iscsi_alloc_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 0xb153e93a iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xba655a7e iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbaf25560 iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbba0901b __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc04e3b59 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc250971b iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc684c403 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc6c4cf71 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc78ae61c iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc07ee3a iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd91cdee5 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe929c844 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xff9b8557 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1ebeea8c sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x85033396 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x9f5a0173 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xb9f52a4b sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xf7444290 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x384ec360 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x39f8a63f srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x8e7ab1b4 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa1a2c710 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa82dcc05 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd32b0e64 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0b0697b6 ufshcd_hba_stop -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0bebe923 ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x404b2b2d ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x508c9a13 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x52c2d744 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x54e2400b ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x568fe0f6 ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x629e33a2 ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6f88e969 ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x80c9858a ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x82183e96 ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x977e94da ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x9d834396 ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xc00f27e5 ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xca17a1e1 ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd3713673 ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe25cf0c6 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xede612f4 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf6da9538 ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf950dc19 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x33baad9c 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 0xa4e7b94b ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x02a2e57c siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x0c33b706 siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x89d78c4f __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xa100f7f2 siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xca0af329 siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xead058c8 siox_master_alloc -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x082d9538 slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0bee60b3 slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x105e75a6 slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x17ec803b slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1e72b543 slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x214af531 slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x28fdf416 __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x59347c27 slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6e3eea60 slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x70b8e602 of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7137a7d1 slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x72ff8dc9 slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7ac624c2 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7c2815e3 slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x827c0e73 slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8cd79ccf slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9c955871 slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb674aed7 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc1277f95 slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc95f52a8 slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xccdf5627 slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe0e58c45 slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe38d4ee5 slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf5929ba3 slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf9a0d546 slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfbad4058 slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x0e78df6d __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x1a7b8f65 sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x851f99f1 sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0xde8fcde9 sdw_cdns_debugfs_init -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x198601b9 altera_spi_init_master -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4281974b dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4869bb05 dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4c657492 dw_spi_dma_setup_generic -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x900b5e6a dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa752a271 dw_spi_check_status -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xba7b1914 dw_spi_update_config -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xcc965c66 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xe63ac1b0 dw_spi_set_cs -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xee9e9d12 dw_spi_dma_setup_mfld -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x1f4dc56d spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x602e918a spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xbad84a7d spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0e347589 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0e8f4c9c spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1f0b400b spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2c26b425 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x47dfa489 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x50c39606 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x66d0a991 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8cd94f58 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x950151a7 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9b9f20d5 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa56616fc spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaf8f97bc spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbe324eea spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcda3cbce spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf3f65936 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf5263e4c spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfaa4600e spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfb972ba4 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xbcf5fb0f ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x0a7a8965 anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4bf655b5 anybuss_client_driver_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x59740fdb anybuss_start_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5b3adb1c anybuss_read_output -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8a634273 anybuss_send_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x916851d5 anybuss_read_fbctrl -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xa08894fc anybuss_finish_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xa90b8d85 anybuss_recv_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xacff83d0 anybuss_send_ext -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb60335ad anybuss_set_power -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xd9148d24 devm_anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xed7e7c0a anybuss_write_input -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xf88c1ddb anybuss_client_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x11e00936 fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x3bb2589c fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xa384a338 fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xa59fb361 fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x20aa4463 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4430c528 gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x45d3c568 gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x520d10fa gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x85fc169b gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x86554a36 gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x88e18713 gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x89b684e1 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8a1fd84c gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xcb8beb70 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe22043c8 gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe8deb80a gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xedc38d1f gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x19231766 gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x314bc680 gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x45ea3fac gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x4dcb4cee gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x4e86bab7 gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5d799daa gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x93764518 gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9686e18c gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc26eba04 gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xcfad2cc1 gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe55de431 gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe658fc33 gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xecf6fb25 gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x66fb0957 gb_audio_manager_put_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x7a8a3e01 gb_audio_manager_get_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x6b620da5 gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x7732a42e gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xca863a6e gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xf0bff3ca gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x0965ebcf adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xcad8050b target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xd0b2b1ae target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xe5d4ce52 target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xf6ada9f2 target_submit -EXPORT_SYMBOL_GPL drivers/tee/tee 0x08e388d2 tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x1d1991e0 tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x32aec578 tee_client_open_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x366da618 tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tee/tee 0x45bd9ca7 tee_shm_alloc_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0x4b27a65b tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0x55cd3106 tee_client_invoke_func -EXPORT_SYMBOL_GPL drivers/tee/tee 0x60ce8fe9 tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/tee/tee 0x63596b83 tee_bus_type -EXPORT_SYMBOL_GPL drivers/tee/tee 0x76baaa75 tee_shm_va2pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7a6c3770 teedev_open -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7c2185ac tee_client_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x84a636be tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid -EXPORT_SYMBOL_GPL drivers/tee/tee 0x8b19e1c0 tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x9b693f21 tee_device_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa51806ec tee_device_unregister -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa97562fc tee_shm_pool_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb14a68c9 tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb1a684b7 tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb6302f11 teedev_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc8069865 tee_shm_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0xcd865996 tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd17921b8 tee_shm_pool_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd554c901 tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0xead2fb81 tee_shm_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0xeb02e558 tee_shm_pa2va -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf3973d26 tee_shm_pool_mgr_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0ceb0ceb tb_ring_free -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2478b6ce __tb_ring_enqueue -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x26a58481 tb_xdomain_request -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4076130e tb_ring_alloc_rx -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 0x56ddee37 tb_xdomain_release_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5a0caecb tb_service_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5a8b280c tb_ring_alloc_tx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x602c91d6 tb_xdomain_alloc_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6ccde534 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 0x8882213c tb_ring_stop -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x91180e5e tb_xdomain_release_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x947a4aca tb_ring_poll_complete -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x995f8fe0 tb_xdomain_lane_bonding_enable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa2fe2528 tb_xdomain_response -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa8afef75 tb_register_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xad262be5 tb_xdomain_disable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb45344fe tb_xdomain_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb51510da tb_xdomain_enable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb54fd1ba tb_xdomain_alloc_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb898adfe tb_xdomain_lane_bonding_disable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbb27bc4e tb_ring_start -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe5e41543 tb_unregister_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf05c741b tb_xdomain_find_by_uuid -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 0xfe36fec8 tb_ring_poll -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x3f9e0655 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xab17c89e usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x094a4ede cdns_suspend -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x10fb61dd cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x26d1ac25 cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x4a740c48 cdns_set_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x57fcd5e2 cdns_init -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x6944dcd2 cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb8d3b211 cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xba8d52f3 cdns_drd_gadget_off -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe9887a66 cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x436a1ea5 ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x97180c1c ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xbc227f37 hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xc709a705 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x23de83f7 imx_usbmisc_hsic_set_clk -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x4e78a240 imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x6a50869d imx_usbmisc_charger_detection -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xa3ec2548 imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xf237bb00 imx_usbmisc_hsic_set_connect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xf5bb9cd9 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x10241500 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x150487fa ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2c9367df __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9be7f619 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc0b8f60d ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf190b1c6 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x191a6708 empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x20a22515 udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x45ef3165 udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x8ae68f03 udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9b8a22d2 gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc2c88604 udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xce3069e3 init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xde2e2e8a free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xe909a168 udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x40f3d4d1 renesas_xhci_check_request_fw -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x1a648a2f ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x64caf49b ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x62a287f7 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9004e570 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9e55df4b ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc50be0d7 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd4fda06c usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xded870e3 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe5c1bbda usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xec5098a4 usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf119fb8b usb_ftdi_elan_edset_single -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 0x25e0bc0b musb_set_peripheral -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x4d42f9cf musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x5952f9e4 musb_get_mode -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af8c6dc musb_writel -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6b26e3bd musb_queue_resume_work -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x7e232683 musb_root_disconnect -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x935cf57b musb_set_host -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 0x03740fdd usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x14260a7b usb_phy_generic_register -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x4af255b0 usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x9811c283 usb_gen_phy_init -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xb557460a usb_phy_generic_unregister -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x5f0ccc8b isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x84676072 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x12e6c36b usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1566edc0 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x36da4773 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4be4da4c usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6259a919 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6d722c3c usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6e21e294 usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7a3d0d9d usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7f5c4bc3 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7ffb8961 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x80ed84a6 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xba909501 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc1e6bb06 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc94c4398 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd0b18bdc usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd5dc96df usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdbd2cf25 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf448ad74 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf950220f usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfa95ab22 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x2f49e6e3 dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x5ac23aa9 dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x55032074 tcpci_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x72330cf2 tcpm_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc37b9769 tcpm_cc_change -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xceb50012 tcpm_vbus_change -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x01d1b03b typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x05a25ae0 typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x088249c8 fwnode_typec_mux_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x08a8b6f0 typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0cdc7056 typec_unlink_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0dd00265 typec_mux_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1597bc1b fwnode_typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x162a052b typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b9e1f01 typec_cable_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1cfdb629 typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x20d30110 typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x270fcdc4 typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2b814801 typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2fe3c0ce typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3da99949 typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3e872c54 typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x40644fce typec_mux_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x42269286 typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4f767acd typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x52edfe92 typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x532d031f typec_partner_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5803c416 typec_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x60d43874 typec_altmode_attention -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x66098c4a __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6d9b442f typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x727f8229 typec_partner_set_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x78d67a37 typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x79550ef6 typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7ca8c82a typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7d18b009 typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7e131b32 typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7e3e303b typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x800ce6df typec_partner_set_pd_revision -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8ae47e6b typec_port_register_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x90d4133a typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x92be365b typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x93d52b4b typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x95f52e4a typec_cable_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9afa27ab typec_mux_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9bb6796e typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9ce58a1e typec_switch_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9e2c6d43 typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa7aa6c98 typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa866c56a typec_get_negotiated_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa9e1f233 typec_link_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xacdfa71e typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb15c22e5 typec_get_fw_cap -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb17b3f4a typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb17d0c36 typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb44aab50 typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xba2d0cee typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc3118965 typec_cable_is_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc38659e6 typec_altmode_get_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc79dced7 typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd448a5e7 typec_plug_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdd571af5 typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe24a07cc typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe6d048ee typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xed1838d2 typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf175a0b7 typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf79e945d typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x192842cb ucsi_destroy -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x2ab945f7 ucsi_create -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x313e035f ucsi_register -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x97b75753 ucsi_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa217a802 ucsi_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xaf8f5c44 ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xdf219d32 ucsi_connector_change -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf5325180 ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xfff19166 ucsi_unregister -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x04f8b6ca usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0fac73ad usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x696efb37 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6c3b562d usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb389921a dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc0808e55 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc14028bb usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc507ff50 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc8704f4a usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdb280f70 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf1ebe65d usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf7646a48 usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfc80b369 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x007a1e2f __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x23a25dcc vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x2497cd9e vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x4b6b224b vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x8fb230bf _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa35b3f9e _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb0b076a9 vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xbbaf40a1 __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc1f97dd1 vdpa_mgmtdev_register -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x615e71e4 vdpasim_create -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x7ba47bdc mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x17fc7937 vfio_pci_core_init_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x25a0d11a vfio_pci_core_mmap -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3b4e786f vfio_pci_core_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3b691c80 vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x43019be7 vfio_pci_core_read -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5bdb103c vfio_pci_core_request -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x65568e67 vfio_pci_core_register_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x674e8a2b vfio_pci_core_write -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6c2e088d vfio_pci_core_match -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x72b5f332 vfio_pci_core_sriov_configure -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7c15daee vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8a1a5509 vfio_pci_register_dev_region -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa36c194a vfio_pci_core_unregister_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xcbcac432 vfio_pci_core_disable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xcc558dec vfio_pci_core_close_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfd8572a3 vfio_pci_core_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfe2035ef vfio_pci_core_uninit_device -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x0a54d068 vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x156d76ca __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x6de03887 vfio_platform_probe_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xb4966a46 vfio_platform_remove_common -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x13872be6 vfio_register_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2eb7a9c7 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3c290cef vfio_iommu_group_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3e662f84 vfio_unregister_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3e9fc9ca vfio_group_get_external_user_from_dev -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 0x63793d6e vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x69464f37 vfio_external_group_match_file -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7369a546 vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x81a3c1e6 vfio_group_iommu_domain -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc2be6c22 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd9dace55 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xde7e2308 vfio_assign_device_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe3ef8658 vfio_iommu_group_get -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xea66429f vfio_init_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf1a5644a vfio_uninit_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x12429c34 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x53269ec9 vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x04912890 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0cab615e vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x14a2cf61 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x150dbf32 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x194c1c86 vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1ed871a1 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1fca3e69 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1fd34df1 vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3ae1dc93 vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x411005e6 vhost_clear_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x41c67424 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x48769682 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4a770aa8 vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b383a61 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x53dae06e vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x56d8c5ea vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x632af21c vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x65305232 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6cd084d4 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x70d97b24 vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8295864a vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x883ff300 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x944a8c4b vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9995b3d7 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9c5668be vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9ec7895a vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9fbfc480 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa0f79310 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa19d52f0 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xace772e3 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaf1061c1 vhost_work_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb10a153b vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb642dae8 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb75420f2 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xda84f0df vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdc5b8c46 vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe0b1a575 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe44e80b5 vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xea1f4344 vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfb1a0ad5 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xffd62c34 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range -EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset -EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x69e872f9 vhost_iotlb_itree_first -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 0x178c0d4c ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1f5d33be ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x72dc62c4 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8b180dbe ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc50ef7d2 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc942a9b5 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd452ffc7 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xe2e051f6 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x6fee6952 sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xedfe7e13 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x45223d42 w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0x5ef6e7ee w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x76b185e6 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9178364e w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9f1d74ea w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0xa4937666 w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0xe5174f8d w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xe64d68b6 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0xf6abc063 w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xfc404baf w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0xff390c31 w1_write_8 -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x15ae90d2 xen_front_pgdir_shbuf_map -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x1c3b5693 xen_front_pgdir_shbuf_get_dir_start -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x507a6aae xen_front_pgdir_shbuf_unmap -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x91dc90d6 xen_front_pgdir_shbuf_alloc -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xf5829d3b xen_front_pgdir_shbuf_free -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x6e923780 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9f54e820 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 0xea058cd4 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x27f5c2d7 nfsd4_ssc_init_umount_work -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1342bb06 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x31a0244d o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4dbe3a1e o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 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 0x84dce431 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x970aafe3 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 0xd60b383b o2nm_node_get -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 0xf338669e o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3a201ac2 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6ae95104 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x70b20dff 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 0xd04ccd3c 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 0xebd64472 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xeeccd18f dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x18764fd0 ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x316f1b98 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4c8cb28a ocfs2_kset -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 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/ocfs2/ocfs2_stackglue 0xdec2f727 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x1de1d58c unregister_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x687cad34 register_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x2689fcd1 register_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x307e2099 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 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/notifier-error-inject 0x28a11fce notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xf868f8da notifier_err_inject_init -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 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 0x2316a7a0 lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x7d360dc0 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/9p/9pnet 0x69c03638 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0xaaa8cb6b 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 0x2470c6c4 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 0x1b37a61f l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3d94d6f0 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7f247b98 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8ce96534 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x973f7003 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xaa1fb3f7 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc481a3f0 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe36a3c08 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe99748e2 l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xa8906e3e hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0c65191a br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1730f16a br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2006f570 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2657f407 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3418b5da br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4f00d228 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x722f2de8 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x77806213 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x91e71908 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9640c770 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xaa8ed8c1 br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb164172f br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb3de4fa8 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xbec7479a br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc0bc69b7 br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc933d157 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc9d60d51 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe2913056 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe2a2155b br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe66e811d br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xed4206ba nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xfe6361ad br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/core/failover 0x163fcff6 failover_register -EXPORT_SYMBOL_GPL net/core/failover 0x3c4c54fe failover_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xdb2cdacb failover_slave_unregister -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0171bb5f dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x071fc502 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0768646c dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x09e9423b dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x12846df8 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x14c12653 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x15b2feb7 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x162a8f7d dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x18107a6c dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x198c22f7 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d206123 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4421743c dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0x475af47f dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cce7ff0 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ecb3bba dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4eefed86 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5bd653e6 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5f2c14b3 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6d77662b dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x722630de dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x735ac428 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x884a32bd dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x88696d1d dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8b9dcad8 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x92a3a25e dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa15cdb32 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa1dc26ed dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb6d17e26 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb8f0e5f0 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcd689688 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe34abb0c dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xeabd66ba dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xeb9b37db dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xffe8826b dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0f286b02 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1ea39fa4 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x598f82ec dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa0c72cfb dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xbf009370 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd91da237 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x073786c7 dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0ed13a96 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x26763ffa dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3138fa4c dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x34e1614b dsa_tag_8021q_bridge_tx_fwd_offload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3b8e7b8c dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3ee85a91 dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x44466666 dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4766ac39 dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x47d92cab dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4c883123 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x625b707f dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x64ed50e4 dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x65f572e4 dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x66f60406 dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6bd17a57 dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x78cc87eb dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7d135f1d dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x825389c2 dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x93653ee3 dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x936cbf81 dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x93ef08dc dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x947f896f dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa0c91bd3 dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa22d9308 dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaa1afd5b dsa_enqueue_skb -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 0xc51038aa dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcbbf2910 dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcf9a9382 dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd1ac4673 dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd9ad7e97 dsa_tag_8021q_bridge_tx_fwd_unoffload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdb5431d4 dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe788ba8b dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xeca9d0a1 dsa_port_get_phy_strings -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 0x2c3dff10 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x35c48871 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x6017aa1f ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf4edeba0 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ife/ife 0x07eca5a4 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 0xa9a6c7b7 ife_decode -EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x38419d97 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xb0819038 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xe9782c6a esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/gre 0x14e01a31 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x94a3b0ac gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1c3a57de inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2a36ae17 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x97239571 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9bfe48d6 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9dca50b3 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xaa0aee66 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb593fab8 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc642b63f inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf2fc4acb inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xae172c3e gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1ad1ff71 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x37c2f909 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3b7aa4d6 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3ec0bbd4 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4db7901e ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x62becf43 ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x84a78c5f ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8c754427 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8e1c376e ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x99c98270 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9a84b37e ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9e28d583 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc4427fd8 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdc808bde ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe27b4e00 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xed9a1805 ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xeef58af4 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x32589f01 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x05431dcd ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x37febfe9 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x41a3881a nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x30b96f98 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x29b6c7ec nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2cd3bf96 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6330c69a nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7811c75a nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8b35d415 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8d6b9918 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xded366fd nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xb05a26e0 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x247ca36a nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x317b10a2 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xae3774b5 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x1d81508e nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xfc1ae7d5 nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0448e6c0 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x30633eb4 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5c55beee tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb72eac82 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe6a63ca6 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0c3cfeeb udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x12e7a568 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1eef3782 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x21519337 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xad8a11c4 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc8d52b36 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe45956ef udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xee3ff898 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x032a30ea esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x4d4cfd80 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x78ab8ba1 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x60f88d79 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe6125b87 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe84503ec ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x43dfa6cf udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x8241b73a udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x8d711077 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x37273482 nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x434b78d5 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x4c7b9ad6 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x591315e2 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0a16f1a0 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0e5cdb44 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x191370b9 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2ab536a7 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3866c1c2 nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x428d6dfd nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4d2ad4b0 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x373d8789 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x4edb4735 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xaeee3bbd nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xcdd0124d nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x55ff4bc2 nft_fib6_eval -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xc3474b3e nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x07287f1c l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0f352116 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0fde2865 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x20fc6205 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x239f0605 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2537af52 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2c396e67 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2dabc7e6 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3d4543f7 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x51b4097f l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5247ee35 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x669cd731 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x72c1a365 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x81a6795b l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x87572d1f l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9e66f357 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa886bf98 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaf25fe86 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbbc669de l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe69f89d1 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xead4ec5d l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x09561b57 l2tp_ioctl -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xa14f5735 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0a972557 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x29e05c68 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x331b659d ieeee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x35b28f75 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3d41da33 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3f782b4e ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4a2e310e wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4ab95f96 ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5a00f210 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6d4e9bea ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8419e6f4 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8dfff7c7 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa04fb881 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1247034 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa3a7d700 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4b2b77e ieee80211_key_replay -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad68d897 ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb745e2dc ieee80211_color_change_finish -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd087cd21 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xedac012c ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfa05c252 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfd656679 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x805ba592 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xafc4c078 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe11bd2ac mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xeffaefb1 mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xfc7a2aff mpls_dev_mtu -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1d50e5a4 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 0x28e499c5 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3ea51eee ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4762df45 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6918c732 ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6eeed256 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7466383b ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7b7abf8a ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x82b24f34 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8c689766 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x973b1bde ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9b607c15 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9be483bc ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa3f61011 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb012687f ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb7fdd172 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb89fe87f ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdc893ec6 ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfd568c4b ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0d0cddb2 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x4deec918 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xece0711a unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xeff6d9a1 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x1ad870b0 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x1f5522c8 nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ff55ad3 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c4cb9c3 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xa3a743c0 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xe8035408 nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xed7fb0c3 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0255338f nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x031c2f32 print_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x044fab84 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0769c075 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x094ae738 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a918d5c nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0fa116c4 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11698558 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x176fc9e1 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1be9b1b4 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1df3a9d9 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x231197e9 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25c4333a nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x271ee7e8 nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27c25382 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b099128 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b35219c nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b5532dc nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c5b8753 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ff1c321 nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33514860 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c2aa92f nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x43bce64d nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x455c5d98 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48a5a9a7 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c511a42 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x51dc2bf1 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a4b4635 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e75d790 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60fc1fda nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61299cba nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61405da8 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67a1e84e nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a987b1a nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f808fab nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73d58fd7 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a1101a3 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7bfe39ee nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7eb4adea nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x809606c7 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84761fdd __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8584cd83 nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a12a80c nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8cd4c89e nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ecfcb74 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f4393e1 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9375a254 nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x953fd1ce nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ae34488 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ea22736 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f27650c __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9fea8065 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa81c9fbc nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa876c9e3 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae5cbe7a nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae93a2a7 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf0847f0 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafb75d3f nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7c6d15b __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb9fb1b21 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbfe2a711 nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc33e4212 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc357d136 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3783338 nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc48823f4 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb0235b2 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb786c1e __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc961326 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd754c27 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcda9ff92 nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0373c1d nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2b2d5e6 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb892848 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf220a69 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea6a3f6d nf_ct_set_auto_assign_helper_warned -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea960cdf nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb30383c nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed4e68c9 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0f6d225 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf513a558 nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6a54cad nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf76b81f9 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8763569 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x965822b6 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x243243a1 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xae9d6717 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x03c5032f nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0a4fd5cf set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x311c0ad2 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x50833e28 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x88ef2595 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb019e05f set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xca4e26ca set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdcb78186 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe519e088 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf9fe5976 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xa97549c3 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x289d9a80 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x69216636 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x9c718327 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd34cf4c3 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1fa7db92 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x357f5c13 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3bbda7d1 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x42b394ec nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x720eee6b ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc3d470a6 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcba7bb31 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xdd9b424d nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x1a7b2ac4 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x17a170fa nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x7843e391 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xd14b61e4 nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0b5bd52f flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x11d670ca flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2389e629 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4fa34d06 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x526023fb flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x60781e9a flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6d525067 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x96a3f024 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x974ae158 nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa13eb825 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb119a048 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc9b32dbf nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdbeef699 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xebd43ae2 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf2de36d6 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf628316d nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfb47da95 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0a3624d9 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x14f14cbb nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x29b68e0a nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2e8aabc3 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x30618913 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3ae64121 nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3ff4fe18 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4e51f792 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6a516fc7 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6bdafe5d nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7857931b nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7ee2285b nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x92361cfe nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xab9542db nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb65555ac nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfc163786 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x36dc7291 ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4e13aaec nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x57e45d89 nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7ec68e69 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9ca75b3d synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbeadc150 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbf88ba4f synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcaefabf3 nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd3185c96 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe4ee4e0d synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf496049a ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x02ee42a7 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x09bc2a0f nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0f797f5e nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1af34b06 nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3355115c nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x376d99d7 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3d0a9c78 nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x43a42486 nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x49a2f49d nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4e6e45e9 nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x524f09a8 nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5617c42d nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x57d98887 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5f42cc18 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5f627b15 nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x71364527 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7959e979 nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7bc86ad3 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8ad895ab __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b5ae838 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f0a5739 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x911aa6ac nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa1c18b4a nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaba99ec9 nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb3bd62b8 nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb554a1e7 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb81c3dfe nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc23cd9bb nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc902e40e nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xca3d3a12 nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd9067f12 nf_tables_activate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdd05a0c2 nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe0b8692a nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xebae888c nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xec4e625c nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed0c4d68 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfab1078b nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfcf2622f nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x091e5161 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0af4499f nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1e19ba34 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2c03eb14 nfnetlink_broadcast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9a81e949 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf07c6e06 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfa2982ce nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x1d726e3b nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x567245dd nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xebde0a1a nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x29811c1f nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x635a71ec nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x04c43a42 nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x4b66ce8d nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x9a6e28d6 nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xcfc0cb02 nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x32022dac nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x544bf57d nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xb0b5823c 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 0x34b0e381 xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f23ad39 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6723ec7b xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6f9021da xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x70a3bbc7 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x71044aee xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7401063d xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x76c30959 xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x86f5c97f xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x89ec7e29 xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9d8c83a7 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9f368186 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa23978a4 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa26083bc xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa5871bb5 xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb1cfcd41 xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc086bf9e xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc25cf38a xt_proto_init -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 0xd9bb821b xt_copy_counters -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xda892440 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdbbc8e1b xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe7d6fa9d xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe89b328a xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xee64c165 xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x0590c1b1 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xe20e1459 xt_rateest_put -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x147be957 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x1d7dc081 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x352835d8 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x5cfd0dfd nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd7aee67c nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xda9f4c19 nci_uart_register -EXPORT_SYMBOL_GPL net/nsh/nsh 0x0d2c79a9 nsh_pop -EXPORT_SYMBOL_GPL net/nsh/nsh 0x4f1591bf nsh_push -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1bd1a603 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2d9e20b3 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5d30b309 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa63ae49c ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xab30f1bd ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb6877598 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/psample/psample 0x0f196833 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0x919204ca psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0xae7d0fb3 psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0xb9fae818 psample_group_put -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x2e2b8c31 qrtr_endpoint_post -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x6678973d qrtr_endpoint_unregister -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x813a9c03 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/rds/rds 0x004e3a53 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x079c1aeb rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x0bc1c2bf rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x0deeea95 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0x1131cacd rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x18b1cfca rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x19579615 rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x19ada431 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x1bf1df6e rds_conn_connect_if_down -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 0x2d33f752 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x41bb1afb rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x42ea37fe rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x442ed376 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -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 0x58998db6 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x61ec6e1f rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x626d56f8 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x6e2b77fa rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x7628773b rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x8eae407a rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x8f82d08b rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xab435120 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xb8bb0117 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0xbe4d61be rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xda60d140 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0xe002bcf7 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xe44c8c95 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0xef83aad0 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0xf1e827f3 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x9624d903 pie_drop_early -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xeb13b9f8 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 0x1902456d sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0x637fab3a sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x99363795 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xe848e40d sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/smc/smc 0x1d17d6c5 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0x34d0822c smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x3d9f7e65 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0x48cc3247 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0x562367fc smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x5ef421b8 smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x8d251944 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xc811703b smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0xe8884cfc smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xfcc0fb14 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/tls/tls 0x31ca08e8 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x687494c8 tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0x7e4a7f92 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0xcdaea73f 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 0x077aae43 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x09ce881b virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x15b2fcca virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x29c3cbcd virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x30f2ec66 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3a4b6845 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3f72ff87 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4c7ee2ee virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x589fca8b virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x599a665b virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x60de3127 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6887f224 virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6922e8e8 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6d796bdd virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x788b860f virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x79a312ca virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x85c68cd7 virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x86ac3842 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x87189cf9 virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x87f2b85a virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9c9d15f4 virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa99b37fb virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb1d2d413 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb75894e7 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb8ad8351 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xba5d08f4 virtio_transport_dgram_bind -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 0xbec0f0e8 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc38a1d7c virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xca065a7e virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd6c371e9 virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdb556fd0 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe1b6e0bb virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf1502916 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf7779ffe virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0237e981 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0b4af189 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x19976010 vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1e25c657 vsock_create_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2ac76aed vsock_core_unregister -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x32510113 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b5a568a vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x602e5ce0 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x67cad869 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9184897a vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9a87b849 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa2a4b60b vsock_deliver_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb062a98d vsock_assign_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb69daa90 vsock_remove_sock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb71f2224 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc3ee0017 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd88ae72f vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe29b1c4b vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe8bea2c4 vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf1db2d84 vsock_core_register -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x044c1b54 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1d006142 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2618a127 cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x30a4ce6e cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x354816e0 cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x737fc8e7 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7bb11312 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x958782c0 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa766ffff cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xaa9b0b5c cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc5ae8097 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc9259173 cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xceb1207b cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xde2f71ef cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe91b2035 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfdcad8b2 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x28014ba0 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x36325535 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x39fdd94b ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x4fed2aec ipcomp_destroy -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/firewire/snd-firewire-lib 0x02564a50 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1d752e60 amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x44aaece1 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x621fff0d amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x70d93f17 amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x936b03b2 amdtp_domain_stream_pcm_pointer -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9bcbeeac amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb6ba03ca amdtp_domain_start -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc29ed383 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc8235cc0 amdtp_domain_stream_pcm_ack -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xcaebded5 amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd5c41a57 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfcddac46 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05df4525 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x095c6af2 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x095dc888 snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x09a3b0f6 snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b4af46b snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0cb50e88 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0e30f7c4 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f1f8966 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0fb42d01 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0fb478be snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x138c53db snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x185aaa68 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1daa4de0 snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1e65edae snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f6a2a9f snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x253a5802 snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x272143d6 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2df9e5a0 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ee2a612 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x36aa4425 snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x38847cd3 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x38bb8eb9 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3ec25c4d snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3fbefaca snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x41cf98c2 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x45ea09e2 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4af93868 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4d3d0ca8 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e6b46ae snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5206d594 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x55be7012 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x562b0794 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5721e7a9 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c198c1d snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c39ed59 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5fe82871 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x60a6ae2e snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6201a522 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x65bd9719 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x669f7d24 snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67c86564 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6865914c snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6937dd64 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6e6cec78 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6f1145c2 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x78d24263 snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7aecac84 snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x80dc88ac snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x830e6af9 snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8671d041 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x86ebe5f4 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88e6c367 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8cba6d6b snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f96db45 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94ef6ec4 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x97e8ba41 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x988306ec hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9fc2738e snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7b42a9d snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa907877c snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaa24aa5a snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaa4d071e snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xacc5dea8 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb373b8e0 snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb3ae34a4 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4e4c0bb snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb8ade83b snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb250924 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbcab0c01 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe845560 snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbedaca87 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6f3899e snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd267ab6f snd_hdac_stop_streams_and_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd5867379 snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdde36067 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xde9d8eec snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf8259da snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe31a2724 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe46c2acd snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea888fda snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf90a6143 snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfd9273db snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe8a956a snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfea9ebd7 snd_hdac_stop_streams -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xff9bf16c snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x1812dac1 intel_nhlt_get_dmic_geo -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x3cd11617 snd_intel_acpi_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e859456 intel_nhlt_free -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x65803817 intel_nhlt_init -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xb9c5d2b2 snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x2282217b snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x5236db74 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7687b34d snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7bef7a28 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7c6caf78 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc3ee769e snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0089a56a snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0264634a snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03d51c76 snd_hda_codec_cleanup_for_unbind -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 0x072878ab snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x074174df snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x097e17d3 snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09e0b8e5 snd_hda_jack_detect_state_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bc4c927 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0deadae5 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e11ff4b snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0efeb414 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f4da836 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11753e6c snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12a0a43f snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14758742 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x158654e5 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x172539e8 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b474977 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e60d333 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2036690e azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2079e3be snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2181c4e6 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21fb9487 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29559d75 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d899cb2 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d9692ae snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e77465b snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2fddf983 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3498bcfc snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3595fdf1 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d600647 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40d02cc1 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41b81a78 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41c2ea7c azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42785a65 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4393fd8b snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43f7a856 snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47fb6df2 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x483c24f2 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x490c4a63 snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c6d86e6 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e0d38fd azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f6e9a12 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5037ef32 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x504fde71 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x507fbdab snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5521bb5a snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55ee7e6e azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x577eb3d7 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58135b2b snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59c20580 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b7dfdfe snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5fba0aa8 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x661e6d6c snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x664937b0 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68dec9ae snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ba7d9f6 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6cf4754b snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70c123c2 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74345c84 snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78fa872d snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a43a0f7 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7acf8f14 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fbfe717 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fe7b4e0 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82b61c5b snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8315ec01 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85012095 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x909dc8f3 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97dfef23 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ee78e57 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f530640 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1414090 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa48f4655 __snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7e7609e snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7ec43c3 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa84188f3 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9fdc3fb snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xabf1ea7a snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaea6b98e snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf7b4584 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaff9c121 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0e48af5 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2979236 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5b34a89 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb637213d snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb4dc0b9 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb7ec7b1 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd83a158 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdd391a5 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe0d2c3a snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe9c2f1f snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc090f332 snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0d1458d snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2ac93f2 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc64bbc75 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc82745d0 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca63ef9d snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc81c99b snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xccb23ce5 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0f8a880 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd10b86b7 snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1c70546 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7ccfdb7 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd85647c6 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda16c8c5 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde0b58df snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdfe188e0 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0e8f94a snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5a5d11a snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe99138e1 snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9949517 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb4bbee4 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf04ab7c6 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf092d391 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf27f02b0 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4689512 snd_hda_jack_set_button_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf57e1f3b snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf58cfb20 snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf61e9490 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7afdfdf snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7c6cdf5 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8f70185 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf91aa7fd azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf94480db snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x01696411 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0613d986 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1d365165 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3a4d6d42 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3a69f3a2 snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5d2bebc6 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6ddfa4c9 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6e79a37b snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76153927 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x81d22818 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x966330f4 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9dec23ae snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9ecb21a9 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa83ef493 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa9fe232c snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xac9b5262 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb27c68a9 snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb72ddb62 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc1e1d339 snd_hda_gen_add_micmute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc30c85d9 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc6361f0c snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0xde4450b7 adau1372_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x984ee812 adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xa47a8c6d adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x1cb83ca2 adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x2f2014f0 adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x78288080 adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8c7bc738 adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x9d77afde adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xcf471388 adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe11ef045 adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe2e75782 adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf4593522 adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xfb5e4a44 adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xf38a8cee adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x481ae4d3 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xdaa1959a cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x20752528 cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x9653beed cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xd014f7a1 cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xf9045896 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xfd46a439 cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x59956436 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xc5033c96 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xd7dc06d6 cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x035f8cc1 da7219_aad_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x3f3dae30 da7219_aad_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x8244ceba da7219_aad_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xc10cf290 da7219_aad_jack_det -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x1b776417 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x1e2ef5d7 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x3017d461 max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x71b434de soc_codec_dev_max98373 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x75c0a285 soc_codec_dev_max98373_sdw -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xda74684c max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x25db37b4 mt6358_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x5aca6132 mt6358_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xbeb19312 mt6358_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xbeb6647d mt6358_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x48fd365a nau8824_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x071aa3fa pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x77882726 pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xd4930716 pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x8b8897bc pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xd323ab3e pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x0d1e3827 pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xb118c895 pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x52cf1885 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x897fc7c9 pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xe360d04d pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xe946dca5 pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x2384c199 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7cbe9da7 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x99637a04 pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe534d03c pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x07de799a rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x29fe2b3e rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x69144a67 rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xadb35145 rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xc2718408 rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xf06aac6d rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x56759511 rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xbe83a7c3 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x79d10a22 rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0f70a91b rt5682_parse_dt -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x1ec95302 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 0x2fa3c7e2 rt5682_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x3e6f8790 rt5682_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x4910d4de rt5682_aif2_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x5a4bb586 rt5682_register_dai_clks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x78f5ecc5 rt5682_soc_component_dev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa2276fdd 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 0xbfa08acf rt5682_calibrate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xd1a7b3df rt5682_apply_patch_list -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xdd88fc02 rt5682_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x1bb8377b sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x370617bc devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb88de624 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc0ea8227 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc3d3c43d sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x37178053 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x6aa350c7 devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x218e1786 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x56c0ecd1 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x106de7b8 aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x1be5fcb6 aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xb7bd26ae 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 0x0d81b60d wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x77d93716 wcd938x_sdw_device_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xb9b35bc1 wcd938x_sdw_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xce90a311 wcd938x_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xe162d7d9 wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x8c420115 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x8cb19fdc wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xa4ae6e29 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xc6f93665 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xe79fbeb3 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x3998d451 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xa1223565 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 0x8e27dce3 audio_graph_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0ae1c76b asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0e8940f3 asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x28ead739 asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2c0297c5 asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3af5868b asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4bae5516 asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4fd4c01e asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x80ae5ebb asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8186dce2 asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa28a4774 asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa33e51a8 asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa620e3ff asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa8424a14 asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xac9c9182 asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb7fb1888 asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb9607b99 asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbe6b7653 asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xda6b7ce5 asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe4007076 asoc_simple_remove -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 0xf7f2fa4d asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x148b551e snd_sof_dbg_memory_info_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x320e9c91 snd_sof_dbg_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x9fb896b9 snd_sof_debugfs_io_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xd98fc5f6 snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xe7e89e6f snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x00fcdcaa line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0750ea64 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0cd0ca6c line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1380fd21 line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x34125048 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5346062d line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7d11be1f line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8867b899 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8efdc49e line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x94bdb75d line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb134175e line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb1c02ae2 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb4762bf7 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc5edd8f4 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd9eb2e50 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf83dedc4 line6_disconnect -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x054846ad XVphy_IBufDsEnable -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x08a7ec2d XHdmiphy1_TxPllreset -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x08c98344 XHdcp1x_IsEncrypted -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x090786f7 XDebug_SetDebugPrintf -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x09303446 XHdcp22Tx_GetTopologyReceiverIdList -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x0b666474 XHdcp1x_IsInWaitforready -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x0d112cd5 XHdcp1x_Reset -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x129825e3 XHdcp1x_Disable -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x1441a3bd XHdcp22Rx_Poll -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x1621613a XHdcp22_Rx_ConfigTable -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x17e77910 XHdcp22Cmn_Aes128Encrypt -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x18aedfc8 XVphy_HdmiCfgCalcMmcmParam -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x195864f9 XHdmiphy1_RegisterDebug -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x1a118634 XV_HdmiC_VSIF_ParsePacket -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x1d9b0786 xvphy_mutex_lock -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x1dcec7cc XVphy_ClkDetFreqReset -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x1e523e88 XHdcp22Rx_SetRepeater -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x1f5c571e XHdcp1x_SetTimerStop -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x1f6fe7a6 aes256_init -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x1fc5fd68 XHdcp22Cmn_Sha256Hash -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x2066c2f6 XDebug_SetDebugBufPrintf -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x208ae3f0 XHdcp1x_LateInit -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x21d99910 XHdcp22Tx_Reset -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x21fdf58d XHdcp1x_SetTopology -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x256cec64 VicTable -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x261e5727 XHdmiphy1_IBufDsEnable -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x28454cc7 XHdcp22Rx_IsEnabled -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x28c77842 XHdcp1x_SetTopologyField -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x2b42b10a XHdcp22Rx_LoadPublicCert -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x2ceb1ae9 XHdcp22Tx_SetCallback -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x2d3ce1c0 aes256_done -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x2e4102df XHdcp22Tx_IsAuthenticated -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x2e8ee6db XHdcp1x_CfgInitialize -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x311c2c09 XHdcp1x_IsInProgress -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x312bd489 XHdcp22Tx_Poll -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x31eebc57 XHdcp22Rx_SetWriteMessageAvailable -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x32dcd77e XHdcp22Rx_IsInProgress -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x338fcb24 XHdmiphy1_ClkDetFreqReset -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x34960ee1 XVidC_GetVideoModeIdWBlanking -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x3648b871 XHdcp1x_DisableBlank -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x36eaa3c1 XTmrCtr_SetResetValue -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x37d0c6ae XV_HdmiC_AVIIF_GeneratePacket -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x386958a6 XTmrCtr_SetOptions -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x3bc3b54d XHdcp22Tx_IsDwnstrmCapable -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x3dac3006 XHdcp22Tx_LogShow -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x412485b5 XHdcp22Tx_IsEnabled -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x41c9795c XHdcp22Rx_LoadLc128 -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x4287cbda XHdcp22Rx_SetCallback -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x43e65134 XHdcp1x_SetTopologyUpdate -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x473a98d6 XTmrCtr_ConfigTable -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x47430aa4 XHdcp22Rx_LogReset -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x48fc1b1f XHdmiphy1_LogShow -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x4993b7f4 XHdmiphy1_Clkout1OBufTdsEnable -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x4a95856b XHdcp1x_LookupConfig -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x4af2a400 XHdcp22Rx_SetDdcError -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x4c2fac99 XHdcp22Tx_IsRepeater -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x4daddcc3 XHdcp22Rx_Disable -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x4f99d4a5 XVphy_LogShow -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x4fd5f4a8 XHdcp22Tx_IsEncryptionEnabled -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x4fdd19b2 XVphy_RegisterDebug -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x5087e6c8 XVphy_IsBonded -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x5781bebe XHdcp22Tx_DisableEncryption -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x57ec7aab XHdcp1x_SetTopologyKSVList -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x5889f704 XHdcp22Rx_Info -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x58be2f7f XHdcp1x_SetPhysicalState -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x60d804fa XHdcp22Tx_Authenticate -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x6135db6d XTmrCtr_Offsets -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x61d39d6e XHdcp22_mmult_ConfigTable -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x636c9a47 XHdcp22Rx_IsEncryptionEnabled -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x63a6bdcb XHdcp22Tx_GetTopology -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x65e3d81a XHdcp1x_HandleTimeout -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x6914c8d3 XHdcp1x_IsRepeater -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x6922f1ff XHdcp22Tx_LookupConfig -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x69334274 XHdcp1x_ProcessAKsv -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x6ada3bf6 XHdcp1x_GetTopology -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x6b4fdee8 XVidC_GetVideoModeIdExtensive -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x6bdccf15 XHdcp22Tx_SetRepeater -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x6c2733b3 XHdcp1x_IsAuthenticated -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x6d31db9a XVphy_Clkout1OBufTdsEnable -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x6edc59c6 XHdcp22Tx_LoadLc128 -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x73cd2feb XHdmiphy1_ClkDetGetRefClkFreqHz -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x74174f57 XHdcp22_Rng_ConfigTable -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x759e32de XHdcp22Rx_SetLinkError -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x761c767c XHdcp22Rx_Reset -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x76b89faa XHdcp22Rx_GetTimer -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x7702711d XTmrCtr_Start -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x7863d7d6 XHdcp22Tx_GetVersion -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x795e83ce XHdcp1x_Authenticate -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x7a347035 XV_HdmiC_DRMIF_GeneratePacket -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x7ae12b56 XVidC_Set3DVideoStream -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x7b0eda22 XHdmiphy1_SetHdmiTxParam -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x7d8143b8 XHdcp1x_SetTimerDelay -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x7f8af0a2 XVidC_GetVideoModeId -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x804f5ff4 XHdmiphy1_GetLineRateHz -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x80cb9b71 XHdcp22Tx_GetTimer -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x837f40e1 XHdcp1x_EnableEncryption -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x83a090c8 XHdcp22Rx_GetContentStreamType -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x84901b8b XHdcp22Rx_LogShow -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x8588d9ce XHdcp1x_EnableBlank -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x85ea1236 XTmrCtr_InitHw -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x86bea6a1 XHdcp1x_Enable -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x8a358979 XVphy_ClkDetGetRefClkFreqHz -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x8af9c424 xvphy_mutex_unlock -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x8b930df1 XHdcp22Tx_GetTopologyField -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x8c0d1995 XHdcp22Tx_CfgInitialize -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x8c232850 XV_HdmiC_ParseAVIInfoFrame -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x8e526778 XHdmiphy1_HdmiDebugInfo -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x93951ad6 XV_HdmiC_VSIF_GeneratePacket -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x93cbbf1a XHdcp1x_IsDwnstrmCapable -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x9429d38f XHdcp1x_DisableEncryption -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x97a61004 XHdcp1x_SetCallback -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x996d43b8 XV_HdmiC_ParseGCP -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x99de5cd9 XV_HdmiC_AudioIF_GeneratePacket -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x9a7bc7c0 XHdcp1x_Info -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x9b35fce6 XHdcp22Rx_SetReadMessageComplete -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x9c1f6b19 XHdmiphy1_GetPllType -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0x9cd7c13e xvphy_get_xvphy -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xa01b1b7a XHdcp22Cmn_HmacSha256Hash -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xa081ad37 XHdcp22Tx_Disable -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xa08c4124 XTmrCtr_SetHandler -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xa08fe147 XHdcp22_Tx_ConfigTable -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xa0c9176e XTmrCtr_CfgInitialize -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xa0f8a97a XV_HdmiC_ParseAudioInfoFrame -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xa212a405 XHdcp22Tx_Info -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xa2d9e6bf XHdmiphy1_HdmiCfgCalcMmcmParam -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xa4977b50 XVidC_ReportStreamInfo -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xa7ef91f3 XVidC_ReportTiming -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xab2a4b3c XHdcp22_Cipher_ConfigTable -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xab74f89e XVphy_SetHdmiCallback -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xad875faf XHdcp22Tx_EnableEncryption -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xaedf9345 XHdcp1x_SelfTest -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xb1247361 XHdcp22Rx_IsRepeater -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xb14117ab XVphy_DruGetRefClkFreqHz -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xb20453be XVidC_ShowStreamInfo -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xb22a46c9 XHdcp22Tx_LoadRevocationTable -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xb3d7fc60 XVphy_HdmiDebugInfo -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xb3f70cd5 XVidC_GetPixelClockHzByHVFr -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xb6b075d0 XTmrCtr_GetOptions -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xb7e10aaf aes256_decrypt_ecb -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xb9efc36e XHdcp1x_SetKeySelect -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xbfd2b933 XHdcp22Tx_SetMessagePollingValue -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xc1c5ee81 XHdcp1x_IsInComputations -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xc3f66af8 XHdcp1x_SetTimerStart -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xc6106dcd XV_HdmiC_XVidC_To_IfColorformat -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xc67dd4b9 XTmrCtr_Stop -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xca895673 XHdcp22Rx_SetTopologyField -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xcaf12ebf XHdcp22Rx_IsAuthenticated -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xcca881d0 XHdmiphy1_DruGetRefClkFreqHz -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xccb5ee09 XHdcp22Rx_SetTopologyReceiverIdList -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xccc7b2b6 XV_HdmiC_IFAspectRatio_To_XVidC -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xccff7bbf XHdcp1x_SetHdmiMode -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xcd7d2aaa XHdcp22Tx_IsInProgress -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xcf0deaa3 XTmrCtr_IsExpired -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xcf369997 XHdcp1x_ConfigTable -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xd1cb4dec XTmrCtr_LookupConfig -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xd3ec774b XHdmiphy1_SetHdmiCallback -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xd513a6b9 XTmrCtr_InterruptHandler -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xd6026393 XHdcp22Tx_DisableBlank -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xd8222b16 XHdcp22Rx_LookupConfig -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xd8ab3a08 XHdcp1x_IsEnabled -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xd94f9366 XHdcp1x_SetRepeater -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xda4150f4 XVidC_GetPixelClockHzByVmId -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xdafc5ae8 XHdcp1x_GetTopologyField -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xdcf62e7a XVphy_MmcmStart -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xddf05381 XHdcp1x_Poll -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xdf55cf6b XHdcp1x_CipherIntrHandler -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xe760289f XHdcp22Rx_LoadPrivateKey -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xe7c9260e XHdmiphy1_MmcmStart -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xe8e7406c XHdcp1x_GetTopologyKSVList -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xe96531c9 XV_HdmiC_ParseDRMIF -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xeb79b23c XHdcp22Rx_Enable -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xed557bac XHdcp22Tx_SetContentStreamType -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xefc82bc9 XHdcp22Tx_EnableBlank -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xf01e0e03 XHdcp22Rx_SetBroadcast -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xf14c5437 XVphy_GetLineRateHz -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xf26b7067 XHdcp22Tx_Enable -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xf3a0cca4 XHdcp22Rx_SetTopology -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xf6a0511a XHdcp22Tx_LogReset -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xf947e17a XVphy_GetPllType -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xf97b19a1 XHdcp22Rx_SetTopologyUpdate -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xfa05d60f XVphy_SetHdmiTxParam -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xfa26dd1e XHdcp22Rx_CfgInitialize -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xfef0d8e4 XVidC_SetVideoStream -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xff3b90c1 XHdcp1x_SetDebugLogMsg -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-hdmi/hdmi/xilinx-vphy 0xffb56239 XHdcp1x_GetVersion -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/al5d/al5d 0x7062f7c4 al5d_user_create_channel -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/al5d/al5d 0x8bac564c al5d_user_search_start_code -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/al5d/al5d 0xdeba4ce7 al5d_user_decode_one_frame -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/al5e/al5e 0x90665ff8 al5e_user_create_channel -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/al5e/al5e 0xd438cb54 al5e_user_encode_one_frame -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x06e00ae7 al5_queue_push -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x09009d25 al5_create_empty_mail -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x0e27bd02 al5_bufpool_free -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x10bf028c al5_queue_lock -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x138f6af8 al5_mcu_is_empty -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x155edb44 al5_bufpool_allocate -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x174e4c1f al5_dmabuf_get_address -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x22aaba4a al5_mailbox_init -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x2d738d65 al5_codec_open -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x33510925 al5_mail_write -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x34c77955 al5_mail_create_copy -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x3687f16a xil_clk_set_up -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x37d49751 al5_chan_is_created -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x39964f87 al5_get_dmabuf_info -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x3ecc2265 al5_create_dmabuf_fd -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x447651b3 al5_create_classic_mail -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x467bd69f al5_queue_init -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x4b3aa0e6 xil_clk_clean_up -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x4cbdf7ab al5_user_init -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x520fa709 al5_hardirq_handler -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x525e0def al5_clean_up_codec_cdev -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x578cb7b7 al5_group_unbind_user -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x5c82e6c6 al5_setup_codec_cdev -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x5dc5f417 al5_alloc_dma -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x60a996f3 al5_mail_create -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x64116a58 al5_mcu_recv -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x6868939b al5_bufpool_reserve_fd -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x6b310bd8 al5_bufpool_get_id -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x6d1cf939 al5_ioctl_get_dma_fd -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x70fcaa70 al5_group_bind_user -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x71240aed al5_mail_write_word -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x839c4c60 al5_queue_pop_no_wait -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x8cb9d65d al5_mcu_get_virtual_address -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x8fb986c9 al5_codec_set_up -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x98bca293 al5_mail_get_size -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0x9aecfdc3 al5_mcu_interface_create -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xa399d82b al5_free_dma -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xa4350d0d al5_codec_set_firmware -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xa4af3632 al5_mail_get_word -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xa8dd015b al5_mailbox_write -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xab0978f2 al5_group_user_from_chan_uid -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xafe56fd7 al5_ioctl_get_dmabuf_dma_addr -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xb00d51c2 al5_mail_get_uid -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xba5999de al5_print_mcu_trace -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xbba6d5b2 al5_mcu_send -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xbcb7958f al5_check_and_send -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xc4184e69 al5_dmabuf_wrap -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xc7b4250a al5_queue_pop -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xcb995e5c al5_signal_mcu -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xcdc835cb al5_codec_release -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xd4693561 al5_free_mail -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xd61cb4a7 al5_setup_chrdev_region -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xd74a2a19 al5_irq_handler -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xdf4a9d37 al5_user_destroy_channel -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xdff6f838 al5_queue_pop_timeout -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xe7268a4e al5_mail_get_body -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xea5f762d al5_queue_unlock -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xeb828b95 al5_allocate_dmabuf -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xf198398f al5_codec_tear_down -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xf1f37bdc al5_mailbox_read -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xf4b7af2d al5_codec_poll -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xf7da2a82 al5_group_user_from_uid -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xf813a46a al5_codec_compat_ioctl -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xfe77cdf6 al5_mail_get_chan_uid -EXPORT_SYMBOL_GPL ubuntu/staging/xilinx-vcu/common/allegro 0xff7576df al5_mcu_interface_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0022b15d __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0x00276c14 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x002d072f ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x003c9cba hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x0049ca83 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL vmlinux 0x004af9b5 ubi_get_volume_info -EXPORT_SYMBOL_GPL vmlinux 0x004c9fd7 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x00507996 media_entity_remote_pad -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 0x00714164 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x0079eb67 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x007bc4c7 garp_register_application -EXPORT_SYMBOL_GPL vmlinux 0x0083ae3f snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL vmlinux 0x008ee569 memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x009b4c0f make_device_exclusive_range -EXPORT_SYMBOL_GPL vmlinux 0x00ab7b3f usb_of_get_interface_node -EXPORT_SYMBOL_GPL vmlinux 0x00b10076 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x00b2cf53 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00c1de75 dw_pcie_ep_init_complete -EXPORT_SYMBOL_GPL vmlinux 0x00c80741 xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL vmlinux 0x00ce0931 skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval -EXPORT_SYMBOL_GPL vmlinux 0x00eb094c bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0x00f94f8a pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL vmlinux 0x0105d5e5 ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0x0119ade3 rpc_wake_up_first -EXPORT_SYMBOL_GPL vmlinux 0x011b6dc6 da9150_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x0121a887 fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0x012a8038 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0x01302866 crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x013248ab iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL vmlinux 0x01390b9f tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x01394729 uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0x014bdb9a pm_runtime_get_if_active -EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale -EXPORT_SYMBOL_GPL vmlinux 0x015dc81f sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x01612c0b v4l2_detect_gtf -EXPORT_SYMBOL_GPL vmlinux 0x01632f67 kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x0169ac7d vb2_streamon -EXPORT_SYMBOL_GPL vmlinux 0x0169ae09 ahci_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x0174df50 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x017f551c __hid_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x01844742 devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x018d110b crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x0195dc9f snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x01a99564 hid_input_report -EXPORT_SYMBOL_GPL vmlinux 0x01b10fae pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0x01b12bfb usb_ep_free_request -EXPORT_SYMBOL_GPL vmlinux 0x01b365a4 pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x01b4551c debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x01b9bbef serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x01c12a33 of_get_named_gpio_flags -EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x01d086df devm_clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0x01d2ff75 dev_pm_genpd_suspend -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01f4e3f5 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x01fb71cf nfs_alloc_client -EXPORT_SYMBOL_GPL vmlinux 0x01fe64ae spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0x020539d1 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x020fb8b6 perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0x02120fd7 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x022a4d3f devm_fpga_mgr_create -EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x026671ab irq_chip_unmask_parent -EXPORT_SYMBOL_GPL vmlinux 0x0270e08b get_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x027a68f4 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x028b7067 vb2_request_validate -EXPORT_SYMBOL_GPL vmlinux 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL vmlinux 0x029abcc8 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x029d0e04 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x029db8d4 mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL vmlinux 0x029dd9d5 gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0x02a1f983 snd_soc_register_card -EXPORT_SYMBOL_GPL vmlinux 0x02a25bf9 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x02af9f92 media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL vmlinux 0x02c8c273 mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL vmlinux 0x02cf4f15 pin_get_name -EXPORT_SYMBOL_GPL vmlinux 0x02d39477 cache_seq_next_rcu -EXPORT_SYMBOL_GPL vmlinux 0x02eb3b67 zynqmp_pm_bbram_write_aeskey -EXPORT_SYMBOL_GPL vmlinux 0x02ebdd28 fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0x02f608d5 power_supply_get_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x02f8f3b0 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL vmlinux 0x030292b7 devm_krealloc -EXPORT_SYMBOL_GPL vmlinux 0x0302ee0a crypto_stats_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x031715b9 __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x0324b1f5 tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0x032c3425 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x032e3085 dax_layout_busy_page_range -EXPORT_SYMBOL_GPL vmlinux 0x033331ca bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x0344334a gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0x034b0f8b register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x03532e81 crypto_comp_decompress -EXPORT_SYMBOL_GPL vmlinux 0x03549171 devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0369cdc6 __traceiter_vb2_buf_queue -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 0x0377fa30 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0x03806757 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x038bcc4a nfs_probe_fsinfo -EXPORT_SYMBOL_GPL vmlinux 0x03910b96 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x039a7dfe sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0x039fd981 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x03a237a4 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL vmlinux 0x03b0660a kvm_put_kvm_no_destroy -EXPORT_SYMBOL_GPL vmlinux 0x03b76d75 acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0x03b8fd32 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x03bfbdb2 dev_pm_set_dedicated_wake_irq_reverse -EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x03c32109 regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03d84ccd sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x03d88d6c hid_compare_device_paths -EXPORT_SYMBOL_GPL vmlinux 0x03d93fad path_noexec -EXPORT_SYMBOL_GPL vmlinux 0x03d941a4 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x03e0cb57 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x03e98f60 __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x03f4373b wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0x03f4acb1 devm_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x03f8ff02 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x0425660f acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x044c79d8 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x046d5046 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x0472cf3b register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x047f0471 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x047fc61c irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0x04889b71 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x049fecd5 iio_channel_release_all -EXPORT_SYMBOL_GPL vmlinux 0x04ae11ae ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x04ae4b77 aie_partition_request -EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x04c2ca64 do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 0x04d245d4 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL vmlinux 0x04e369c5 rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0x04fe3238 aie_partition_reset -EXPORT_SYMBOL_GPL vmlinux 0x0504ec4c netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x05107dd0 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL vmlinux 0x051d44be blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x05234014 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x052cfb23 sfp_bus_add_upstream -EXPORT_SYMBOL_GPL vmlinux 0x0534345c nfs4_fs_type -EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x05495392 hid_debug -EXPORT_SYMBOL_GPL vmlinux 0x054a66f6 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x054bb5da aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL vmlinux 0x054db21e umd_unload_blob -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x05598312 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0578568d uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x0579244b rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL vmlinux 0x0579c6b8 uprobe_register_refctr -EXPORT_SYMBOL_GPL vmlinux 0x057e85ec power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x0586dd3a zynqmp_pm_probe_counter_write -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 0x05c16dd9 rpc_restart_call -EXPORT_SYMBOL_GPL vmlinux 0x05c3b5d1 fsg_store_file -EXPORT_SYMBOL_GPL vmlinux 0x05cc0307 nfs_init_commit -EXPORT_SYMBOL_GPL vmlinux 0x05cf3570 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x05e310b4 devlink_port_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x05e57064 __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL vmlinux 0x05ee388e fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0x05ee8c33 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x05f17d96 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x05f4c38a do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0x05fe4046 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x06023271 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x06059cd8 snd_soc_put_strobe -EXPORT_SYMBOL_GPL vmlinux 0x061b9d63 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting -EXPORT_SYMBOL_GPL vmlinux 0x06240f68 dev_pm_opp_find_freq_ceil_by_volt -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x06297529 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x062e400b sdhci_reset_tuning -EXPORT_SYMBOL_GPL vmlinux 0x063302ec snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL vmlinux 0x0633c4b9 fpga_bridges_enable -EXPORT_SYMBOL_GPL vmlinux 0x06384b72 __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0x063c187d phylink_mii_c45_pcs_get_state -EXPORT_SYMBOL_GPL vmlinux 0x06449da3 blk_mq_complete_request_remote -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x064dc534 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x06585532 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL vmlinux 0x06664d2f usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x06685926 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x066cef4d sdhci_cqe_disable -EXPORT_SYMBOL_GPL vmlinux 0x066d6365 snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL vmlinux 0x066ed40e ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0x06756de0 mtd_write -EXPORT_SYMBOL_GPL vmlinux 0x067943a0 devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x067b6516 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x067c0139 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x068a810c bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0x06956a76 nanddev_markbad -EXPORT_SYMBOL_GPL vmlinux 0x069f2c62 usb_assign_descriptors -EXPORT_SYMBOL_GPL vmlinux 0x06a31084 usb_string_id -EXPORT_SYMBOL_GPL vmlinux 0x06a777be dma_map_sgtable -EXPORT_SYMBOL_GPL vmlinux 0x06acf85e usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x06b970a5 zynqmp_pm_ospi_mux_select -EXPORT_SYMBOL_GPL vmlinux 0x06bb81c3 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x06c4f9bb l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x06cac399 dm_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06d02325 ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x06dc9638 stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0x06dda32c xhci_ext_cap_init -EXPORT_SYMBOL_GPL vmlinux 0x06e6b178 snd_fasync_helper -EXPORT_SYMBOL_GPL vmlinux 0x06f4c931 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x070aedfd irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x0715f497 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x0719cb5c garp_request_join -EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x07318b88 xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0x0744982e gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field -EXPORT_SYMBOL_GPL vmlinux 0x0757b985 usbnet_get_link -EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy -EXPORT_SYMBOL_GPL vmlinux 0x07664171 pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0x07729fd4 __SCK__tp_func_vb2_buf_queue -EXPORT_SYMBOL_GPL vmlinux 0x0778a14d platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x077fab7a nand_prog_page_begin_op -EXPORT_SYMBOL_GPL vmlinux 0x078081c9 xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL vmlinux 0x078a32d7 drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL vmlinux 0x078c3c62 xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0x078c69ea snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL vmlinux 0x079c21f4 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x07ad15ec pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0x07af904c wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b43e40 xhci_get_ep_ctx -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07d5ba46 fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0x07e6379e devm_acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x07f7fe88 __v4l2_async_notifier_add_fwnode_remote_subdev -EXPORT_SYMBOL_GPL vmlinux 0x07fce35b tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x07fe6a8f dev_pm_opp_put_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x0802647b v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL vmlinux 0x080be1a0 xilinx_xdma_v4l2_config -EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x0818fa36 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x08213956 phylink_ethtool_get_wol -EXPORT_SYMBOL_GPL vmlinux 0x082f62e0 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL vmlinux 0x083ff8c1 __devm_uio_register_device -EXPORT_SYMBOL_GPL vmlinux 0x08402862 v4l2_print_dv_timings -EXPORT_SYMBOL_GPL vmlinux 0x08418d49 fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0x0843cb29 usb_bus_start_enum -EXPORT_SYMBOL_GPL vmlinux 0x08480781 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x08576175 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x085a815a sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0x085e2808 snd_soc_component_compr_ack -EXPORT_SYMBOL_GPL vmlinux 0x086397f1 snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL vmlinux 0x086a99ee snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL vmlinux 0x0878c095 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x0881451a umd_load_blob -EXPORT_SYMBOL_GPL vmlinux 0x088e24c5 acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x089c7799 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL vmlinux 0x08a9fa34 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x08aa173c crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x08b1e7db __devm_iio_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x08b2b7ef snd_ctl_activate_id -EXPORT_SYMBOL_GPL vmlinux 0x08b2c467 __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL vmlinux 0x08b77446 media_device_pci_init -EXPORT_SYMBOL_GPL vmlinux 0x08bdbfdb unregister_gadget_item -EXPORT_SYMBOL_GPL vmlinux 0x08c267d4 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x08c6fd90 auth_domain_find -EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x08ce0c7d crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x08d3e2dd sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x08f0a365 __v4l2_async_notifier_add_i2c_subdev -EXPORT_SYMBOL_GPL vmlinux 0x08fa3c4e spi_mem_adjust_op_size -EXPORT_SYMBOL_GPL vmlinux 0x090095b2 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x09060016 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x090f772e dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0x090ff8f2 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x0911166e spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x09128033 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x09273adf ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x0929861e regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x0936e48d sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str -EXPORT_SYMBOL_GPL vmlinux 0x0939199a fpga_region_register -EXPORT_SYMBOL_GPL vmlinux 0x0939e43f vb2_qbuf -EXPORT_SYMBOL_GPL vmlinux 0x093f9ac5 perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x094e32c0 __sync_filesystem -EXPORT_SYMBOL_GPL vmlinux 0x0951f7cd dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x0958448b v4l2_set_edid_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0x09588c1a ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x096e7954 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x097fedd0 devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x098551b3 spi_bitbang_setup -EXPORT_SYMBOL_GPL vmlinux 0x099add3f device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x099aed0f xdr_process_buf -EXPORT_SYMBOL_GPL vmlinux 0x099bf09d devlink_alloc_ns -EXPORT_SYMBOL_GPL vmlinux 0x099c9793 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL vmlinux 0x099d2dc9 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x099f74c7 g_audio_setup -EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09bd6d3e regulator_set_active_discharge_regmap -EXPORT_SYMBOL_GPL vmlinux 0x09c53fdb device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x09cab6bb dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x09d63265 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x09e547d7 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x09e57d16 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x09e61c18 devm_gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0x09e877b5 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL vmlinux 0x09f2b856 __v4l2_async_notifier_add_fwnode_subdev -EXPORT_SYMBOL_GPL vmlinux 0x0a0aadeb mmc_cmdq_enable -EXPORT_SYMBOL_GPL vmlinux 0x0a14f269 follow_pte -EXPORT_SYMBOL_GPL vmlinux 0x0a1adb27 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL vmlinux 0x0a221c4d synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0x0a337da2 spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x0a37c6cc hid_dump_field -EXPORT_SYMBOL_GPL vmlinux 0x0a38c445 mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x0a4c6262 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x0a4c8854 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap -EXPORT_SYMBOL_GPL vmlinux 0x0a575945 xfrm_count_pfkey_auth_supported -EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0x0a6d347f noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0x0a6fd0ba strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x0a6fd295 devlink_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0x0a760d9a ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x0a79c841 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x0a7af61f of_pm_clk_add_clks -EXPORT_SYMBOL_GPL vmlinux 0x0a7b5211 gether_register_netdev -EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x0a8c3b4b usb_ep_set_halt -EXPORT_SYMBOL_GPL vmlinux 0x0a9ba248 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0abcbf05 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x0acfe2e7 usb_ep_set_wedge -EXPORT_SYMBOL_GPL vmlinux 0x0ada4460 regulator_set_pull_down_regmap -EXPORT_SYMBOL_GPL vmlinux 0x0ae289ef unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x0ae54162 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x0ae80047 svc_recv -EXPORT_SYMBOL_GPL vmlinux 0x0aea1898 i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0x0aebca68 __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL vmlinux 0x0af3d134 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b084cdf snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL vmlinux 0x0b08bc7f pci_ecam_map_bus -EXPORT_SYMBOL_GPL vmlinux 0x0b10a586 of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0x0b2076d7 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x0b2b884c fpga_bridges_put -EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b31ee74 put_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0x0b339f37 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x0b3a3ed7 zynqmp_pm_fpga_get_status -EXPORT_SYMBOL_GPL vmlinux 0x0b3cbce8 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0b3ccbba devm_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x0b40160a nfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0b427c15 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b5951f4 __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL vmlinux 0x0b6bb9a5 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x0b7176b4 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x0b762237 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x0b824e78 vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x0b84eb2a devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x0b855ead pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x0b8cd250 acpi_pm_set_device_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x0b958efe class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0bbc7b0f fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0bbd8e50 pinctrl_generic_get_group -EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x0bd50d25 devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x0bdd4db1 pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0x0bddca87 sm3_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x0be1f240 mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x0beeec0f extcon_set_property -EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x0bf9103f sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0bfad81e xdp_return_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x0c15e844 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x0c251d9b phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0c303f52 bch_encode -EXPORT_SYMBOL_GPL vmlinux 0x0c323360 gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0x0c32fcb5 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c383a1d usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0x0c3a4ac8 crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x0c3f7759 mptcp_pm_get_local_addr_max -EXPORT_SYMBOL_GPL vmlinux 0x0c43aa04 of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0x0c4ca136 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL vmlinux 0x0c589aba usb_validate_langid -EXPORT_SYMBOL_GPL vmlinux 0x0c7415ef dev_pm_opp_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x0c750ab0 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0c7a431e kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x0c808d14 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x0c8855ec clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0c9b942e devres_release -EXPORT_SYMBOL_GPL vmlinux 0x0cb1d3db ahci_platform_disable_phys -EXPORT_SYMBOL_GPL vmlinux 0x0cb35689 garp_request_leave -EXPORT_SYMBOL_GPL vmlinux 0x0cb7e477 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL vmlinux 0x0cbd7152 vp_modern_config_vector -EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0cc890c6 pci_platform_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x0ccf5275 zynqmp_pm_pinctrl_get_config -EXPORT_SYMBOL_GPL vmlinux 0x0d2df7a2 edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0x0d3245cd edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x0d337de5 led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0x0d3e3481 bch_free -EXPORT_SYMBOL_GPL vmlinux 0x0d44744b simple_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d4e3ffe iommu_device_sysfs_add -EXPORT_SYMBOL_GPL vmlinux 0x0d5a5939 cpu_topology -EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x0d5ead3f nfs_get_client -EXPORT_SYMBOL_GPL vmlinux 0x0d64f7d0 xdr_init_decode_pages -EXPORT_SYMBOL_GPL vmlinux 0x0d664a63 dev_attr_ncq_prio_supported -EXPORT_SYMBOL_GPL vmlinux 0x0d6bc872 iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0x0d7128b1 virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0x0d717354 iommu_uapi_cache_invalidate -EXPORT_SYMBOL_GPL vmlinux 0x0d7e8305 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x0d834147 zynqmp_pm_set_usb_config -EXPORT_SYMBOL_GPL vmlinux 0x0d89ede4 __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL vmlinux 0x0d8cd906 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x0d90d784 usb_ep_fifo_flush -EXPORT_SYMBOL_GPL vmlinux 0x0d93baec irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0x0dbceb10 svc_exit_thread -EXPORT_SYMBOL_GPL vmlinux 0x0dbe214f nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL vmlinux 0x0dc11352 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0x0dd0dcf1 svc_auth_register -EXPORT_SYMBOL_GPL vmlinux 0x0dd3e297 i2c_detect_slave_mode -EXPORT_SYMBOL_GPL vmlinux 0x0dd9cd52 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0df6690a nanddev_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x0e003ebc nfs_client_for_each_server -EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e04d6f4 v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL vmlinux 0x0e068fb6 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e1bcd30 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x0e200a8f rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x0e23fb32 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL vmlinux 0x0e33fd83 housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0x0e39babd pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0x0e3cb1a9 seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0x0e515d72 devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0x0e545166 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x0e622f44 xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e713d09 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL vmlinux 0x0e8ddd7c fpga_mgr_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0e8f4149 media_entity_find_link -EXPORT_SYMBOL_GPL vmlinux 0x0e9539ae vchan_tx_desc_free -EXPORT_SYMBOL_GPL vmlinux 0x0e95e8ad __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter -EXPORT_SYMBOL_GPL vmlinux 0x0ecf18ca devlink_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0x0eec799c cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL vmlinux 0x0ef0eae8 cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x0ef62cb7 __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0x0efdef8a nfs_create_rpc_client -EXPORT_SYMBOL_GPL vmlinux 0x0f01076e __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL vmlinux 0x0f0b0f7c phylink_mii_c22_pcs_config -EXPORT_SYMBOL_GPL vmlinux 0x0f0b4d47 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x0f0d742a of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0x0f105cf5 bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0f18ed79 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x0f31c9be __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x0f35ecff devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x0f365ebe snd_soc_get_dai_name -EXPORT_SYMBOL_GPL vmlinux 0x0f3e4af1 mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL vmlinux 0x0f446cac evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0x0f457924 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x0f5150a0 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x0f53e3c3 platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0x0f5b228b pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0x0f65977d xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0x0f768b0a virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f7d3774 clk_hw_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x0f8035f2 zynqmp_pm_rsa -EXPORT_SYMBOL_GPL vmlinux 0x0f8a374e fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x0f98b9df nfs_free_client -EXPORT_SYMBOL_GPL vmlinux 0x0fb77b39 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align -EXPORT_SYMBOL_GPL vmlinux 0x0fbfed80 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fde481c fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0x0fe2d77a spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL vmlinux 0x0ff3ce8d irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x100359e4 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x10096446 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x10098198 irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x100ff09a get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x101f6863 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL vmlinux 0x102b0dca gnttab_page_cache_put -EXPORT_SYMBOL_GPL vmlinux 0x10387479 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x106b512f __auxiliary_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x106f9ba5 icc_link_destroy -EXPORT_SYMBOL_GPL vmlinux 0x10774983 nfs_release_request -EXPORT_SYMBOL_GPL vmlinux 0x108385ac dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x1093aa0d xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x1093f14a auxiliary_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL vmlinux 0x1098b873 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0x10bc0474 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10efa486 drm_bridge_detect -EXPORT_SYMBOL_GPL vmlinux 0x10fa1a5c iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x11091291 nand_extract_bits -EXPORT_SYMBOL_GPL vmlinux 0x110a5241 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x11229625 rio_unregister_mport -EXPORT_SYMBOL_GPL vmlinux 0x112e7efe dapm_pinctrl_event -EXPORT_SYMBOL_GPL vmlinux 0x11383bf0 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL vmlinux 0x113d60f2 of_icc_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x114b116e unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x115b9663 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x115c51b0 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL vmlinux 0x116e8540 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x118ca6b6 genphy_c45_pma_resume -EXPORT_SYMBOL_GPL vmlinux 0x119cb45f nfs_generic_pgio -EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11b28064 iommu_capable -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 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL vmlinux 0x11f542e7 __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL vmlinux 0x11f899c5 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x1210b313 hisi_uncore_pmu_get_event_idx -EXPORT_SYMBOL_GPL vmlinux 0x12135396 phylink_mac_change -EXPORT_SYMBOL_GPL vmlinux 0x121ca1c1 pci_epc_write_header -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 0x12494a0f nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL vmlinux 0x1252518f usb_acpi_port_lpm_incapable -EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x125d7661 usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x126b61fb sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0x127daab9 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x12809813 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x12917449 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x12979616 snd_devm_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x129aaf24 dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0x12a2a51c pm_genpd_opp_to_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x12aa90ae devm_clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x12ae7de7 vb2_core_streamon -EXPORT_SYMBOL_GPL vmlinux 0x12b8f03d dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0x12bad580 fpga_region_class_find -EXPORT_SYMBOL_GPL vmlinux 0x12c9d439 serdev_device_write_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x12d6bd28 nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister -EXPORT_SYMBOL_GPL vmlinux 0x12f5b412 virtqueue_add_inbuf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x12f7cbcf attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x12fac405 rpcb_getport_async -EXPORT_SYMBOL_GPL vmlinux 0x12fb2b6d regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x1301203e devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x13012dcb usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131b2505 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x131e8b94 phylink_helper_basex_speed -EXPORT_SYMBOL_GPL vmlinux 0x132bd2b5 unregister_mtd_user -EXPORT_SYMBOL_GPL vmlinux 0x133012df sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x1335031b snd_soc_info_volsw -EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x134d8378 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x1350d983 vb2_expbuf -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x136fd656 zynqmp_pm_ulpi_reset -EXPORT_SYMBOL_GPL vmlinux 0x137967eb snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL vmlinux 0x1382a776 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL vmlinux 0x1382da1f device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init -EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x13cdf6d9 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13d13c22 nfs_server_insert_lists -EXPORT_SYMBOL_GPL vmlinux 0x13ed5390 icc_node_create -EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13f083c6 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x13f184da xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x13f2888b fsg_common_remove_lun -EXPORT_SYMBOL_GPL vmlinux 0x13f46d8a devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x1401bff5 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x140a373f snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL vmlinux 0x1415c1f0 dev_err_probe -EXPORT_SYMBOL_GPL vmlinux 0x141aa583 gether_get_qmult -EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL vmlinux 0x1422909f dma_request_chan_by_mask -EXPORT_SYMBOL_GPL vmlinux 0x14299edf irq_domain_create_sim -EXPORT_SYMBOL_GPL vmlinux 0x142dad24 snd_soc_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x142e4e74 __nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0x14315c19 gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x143cb7bf crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x143e7ca2 kvm_init -EXPORT_SYMBOL_GPL vmlinux 0x14620df4 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x1469c8d5 elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1472448d of_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x14832667 gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0x14854b41 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x148571ed spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x148fd794 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x14959dcf serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x14987287 fpga_bridge_disable -EXPORT_SYMBOL_GPL vmlinux 0x14bae168 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL vmlinux 0x14c5de95 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x14c96d25 nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x14fcee17 fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x14ffeb13 ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x1500ddbe blk_req_zone_write_trylock -EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0x15051fc0 gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0x1506408c hidinput_disconnect -EXPORT_SYMBOL_GPL vmlinux 0x151bc9eb led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0x152675cc crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x152ede18 zynqmp_pm_fpga_read -EXPORT_SYMBOL_GPL vmlinux 0x1533eb02 vfs_write -EXPORT_SYMBOL_GPL vmlinux 0x1537dcb3 fscrypt_mergeable_bio -EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x154a1420 pci_vpd_alloc -EXPORT_SYMBOL_GPL vmlinux 0x154acc37 irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x155b22c2 devm_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x156a58b0 v4l2_async_notifier_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x15701a0c media_request_put -EXPORT_SYMBOL_GPL vmlinux 0x157662d0 dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0x158a5298 ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x15a8f2f1 debug_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks -EXPORT_SYMBOL_GPL vmlinux 0x15c1513f power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x15c37851 hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x15c4e3e2 phylink_ethtool_set_pauseparam -EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x15cab8e7 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x15cf2457 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL vmlinux 0x15d624b3 device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0x15e712be amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x15ffaddc fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x16042b54 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x16133000 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x1618edaf led_get_default_pattern -EXPORT_SYMBOL_GPL vmlinux 0x161a5638 usb_role_switch_find_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x1640025a drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x1646437a crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x1661b106 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x16625f06 fsg_store_removable -EXPORT_SYMBOL_GPL vmlinux 0x1662ee8c crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x16737132 bd_prepare_to_claim -EXPORT_SYMBOL_GPL vmlinux 0x16791b4f ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device -EXPORT_SYMBOL_GPL vmlinux 0x1680a7eb usbnet_status_stop -EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size -EXPORT_SYMBOL_GPL vmlinux 0x16880c4d media_entity_has_route -EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x169482bf gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL vmlinux 0x1696a78c __fscrypt_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x1699920f aie_unregister_error_notification -EXPORT_SYMBOL_GPL vmlinux 0x16a0b027 snd_soc_suspend -EXPORT_SYMBOL_GPL vmlinux 0x16a1d7cd led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0x16a9f4f9 xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x16ad04f5 rpcauth_register -EXPORT_SYMBOL_GPL vmlinux 0x16ae89af iio_read_channel_average_raw -EXPORT_SYMBOL_GPL vmlinux 0x16c38138 nfs_refresh_inode -EXPORT_SYMBOL_GPL vmlinux 0x16ca1a8a phylink_suspend -EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put -EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x16e38fb8 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x16eb9b27 tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x1700f08a phy_reset -EXPORT_SYMBOL_GPL vmlinux 0x1702b111 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL vmlinux 0x17176b50 rio_pw_enable -EXPORT_SYMBOL_GPL vmlinux 0x17290e7a rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x174443dd cache_unregister_net -EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x1748f188 irq_chip_enable_parent -EXPORT_SYMBOL_GPL vmlinux 0x174aa2f1 iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x174dd84d regulator_bulk_free -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 0x1762d2d5 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x176b9ea0 virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x178e51b4 __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1798243c media_request_object_complete -EXPORT_SYMBOL_GPL vmlinux 0x17ac162f devlink_port_params_register -EXPORT_SYMBOL_GPL vmlinux 0x17b4b479 fsg_show_file -EXPORT_SYMBOL_GPL vmlinux 0x17bb5a88 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x17bd50f7 nfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x17bf8946 fpga_region_create -EXPORT_SYMBOL_GPL vmlinux 0x17d2efe8 fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0x17ee71b2 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x17f4edc9 sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0x17f4f02d iio_write_channel_ext_info -EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x1801bfb7 acpi_dev_get_memory_resources -EXPORT_SYMBOL_GPL vmlinux 0x1803a6ed raid6_2data_recov -EXPORT_SYMBOL_GPL vmlinux 0x180bb7b1 phy_led_triggers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1813cea0 md_account_bio -EXPORT_SYMBOL_GPL vmlinux 0x181764a1 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x1817b891 usbnet_nway_reset -EXPORT_SYMBOL_GPL vmlinux 0x181faa7e tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0x1825e45e usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x182856db fsg_store_inquiry_string -EXPORT_SYMBOL_GPL vmlinux 0x1828f095 rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x182b1ff7 v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL vmlinux 0x183216cb pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0x1833b5b5 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL vmlinux 0x18414fb1 fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x1846e34b snd_soc_component_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x1851fa84 regulator_is_equal -EXPORT_SYMBOL_GPL vmlinux 0x185570a7 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL vmlinux 0x185731ff pnfs_generic_pg_test -EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes -EXPORT_SYMBOL_GPL vmlinux 0x18698d82 nfs_wb_all -EXPORT_SYMBOL_GPL vmlinux 0x1872dbea blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0x187c2d3e rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x1881697d crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x1891a8fb ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x18924e4e hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x18bbc358 pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0x18ce643a sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x18d2c33c vb2_core_qbuf -EXPORT_SYMBOL_GPL vmlinux 0x18de5321 input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0x18e1b3fd stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x18fa1af9 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x19047db3 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x190eeb53 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0x192720aa rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x192a7f9a regulator_set_ramp_delay_regmap -EXPORT_SYMBOL_GPL vmlinux 0x1930923a dma_async_device_channel_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1932b41e usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x1950514e of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x1956dba0 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x1977d9d8 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x19837383 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x19922b68 sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL vmlinux 0x19953b76 v4l_enable_media_source -EXPORT_SYMBOL_GPL vmlinux 0x199f2dad blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x19a0ecc7 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x19a2206a scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19b01131 mtd_ooblayout_free -EXPORT_SYMBOL_GPL vmlinux 0x19b85de0 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x19bd74ab rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x19ce7896 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL vmlinux 0x19e34d76 clean_record_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit -EXPORT_SYMBOL_GPL vmlinux 0x19f88e3d usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0x19ffac5e rpc_clone_client -EXPORT_SYMBOL_GPL vmlinux 0x1a0c1260 bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0x1a0d9b44 kick_process -EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x1a121d8a ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x1a12f366 kvm_vcpu_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a1e2433 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL vmlinux 0x1a1fc680 irq_gc_set_wake -EXPORT_SYMBOL_GPL vmlinux 0x1a267fa8 bch_init -EXPORT_SYMBOL_GPL vmlinux 0x1a2cf90c spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x1a311494 fpga_mgr_get -EXPORT_SYMBOL_GPL vmlinux 0x1a3222a9 dev_pm_genpd_set_next_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x1a3b5f60 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x1a43970d device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x1a5395e4 pnfs_update_layout -EXPORT_SYMBOL_GPL vmlinux 0x1a5409eb wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x1a5da613 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x1a62875d od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a731e94 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x1a74a4b1 of_genpd_add_provider_simple -EXPORT_SYMBOL_GPL vmlinux 0x1a752756 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list -EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x1a8a18e1 devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x1a900310 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x1a95fc3d wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0x1a9754cf sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0x1a99e64d fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0x1aaa06fd cec_unregister_adapter -EXPORT_SYMBOL_GPL vmlinux 0x1aaf8db2 da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x1accda34 v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1acfc127 devlink_param_unpublish -EXPORT_SYMBOL_GPL vmlinux 0x1ad97bf6 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1af603e0 gov_update_cpu_data -EXPORT_SYMBOL_GPL vmlinux 0x1b0e9f3e nand_change_read_column_op -EXPORT_SYMBOL_GPL vmlinux 0x1b25a9d8 irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x1b2b2818 __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1b2c6065 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x1b37b386 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x1b485bb8 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1b697750 xprt_reconnect_delay -EXPORT_SYMBOL_GPL vmlinux 0x1b69b045 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x1b75b2c6 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL vmlinux 0x1b77fb7b snd_device_disconnect -EXPORT_SYMBOL_GPL vmlinux 0x1b7cb36b dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b8b8f2d nanddev_bbt_init -EXPORT_SYMBOL_GPL vmlinux 0x1b8dd960 crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL vmlinux 0x1b90dda0 badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1b9be982 sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL vmlinux 0x1b9f985a kvm_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x1ba026ac sched_trace_rd_span -EXPORT_SYMBOL_GPL vmlinux 0x1ba49e3d virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0x1bb61126 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x1bb6ae05 phylink_mii_c22_pcs_get_state -EXPORT_SYMBOL_GPL vmlinux 0x1bb831f9 svc_addsock -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bc7ba93 usbnet_status_start -EXPORT_SYMBOL_GPL vmlinux 0x1bc834ae gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x1bd0a495 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x1bd6f499 crypto_stats_get -EXPORT_SYMBOL_GPL vmlinux 0x1bda02d2 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x1be3e151 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x1c05a3ed class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x1c0b2974 xvip_width_padding_factor -EXPORT_SYMBOL_GPL vmlinux 0x1c1cae50 dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x1c1dff9e snd_soc_link_compr_set_params -EXPORT_SYMBOL_GPL vmlinux 0x1c2c758e i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x1c2ed066 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x1c309967 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x1c3cf5fc mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0x1c43a051 af_alg_free_sg -EXPORT_SYMBOL_GPL vmlinux 0x1c43ae24 kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0x1c455274 serdev_device_remove -EXPORT_SYMBOL_GPL vmlinux 0x1c4f5848 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x1c52d751 hisi_uncore_pmu_del -EXPORT_SYMBOL_GPL vmlinux 0x1c5529c4 gether_set_ifname -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 0x1c69f875 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x1c6c4d19 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x1c798f10 spi_mem_dtr_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c8558d8 mtd_is_locked -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c89fb22 zynqmp_pm_clock_setparent -EXPORT_SYMBOL_GPL vmlinux 0x1c90eacd pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x1c969052 v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x1ca55e2f kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x1cb57e58 subsys_interface_unregister -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 0x1cbebfe4 nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x1cc27e50 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0x1cc587b7 dev_pm_opp_sync_regulators -EXPORT_SYMBOL_GPL vmlinux 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL vmlinux 0x1ccc9410 dw_pcie_own_conf_map_bus -EXPORT_SYMBOL_GPL vmlinux 0x1ccfc3b5 fbcon_modechange_possible -EXPORT_SYMBOL_GPL vmlinux 0x1cd333e4 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x1cd3b574 rndis_register -EXPORT_SYMBOL_GPL vmlinux 0x1cd87949 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL vmlinux 0x1cdeec30 of_msi_configure -EXPORT_SYMBOL_GPL vmlinux 0x1ce2fbe5 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL vmlinux 0x1ce559eb vb2_video_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x1ce9ffe6 bind_interdomain_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x1cece84b devm_fpga_region_create -EXPORT_SYMBOL_GPL vmlinux 0x1cef58de pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x1cf2429e pci_find_host_bridge -EXPORT_SYMBOL_GPL vmlinux 0x1cf3f044 rndis_msg_parser -EXPORT_SYMBOL_GPL vmlinux 0x1d04b01b sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1d067014 snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL vmlinux 0x1d0efc5d transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1d10db29 tda829x_attach -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d2d291d devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x1d37978a pci_acpi_set_companion_lookup_hook -EXPORT_SYMBOL_GPL vmlinux 0x1d587e95 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL vmlinux 0x1d5fff58 dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0x1d614905 serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x1d617cc2 ahci_platform_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x1d704b55 sdhci_remove_host -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7cc279 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x1d8126c8 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL vmlinux 0x1d81b325 clk_hw_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle -EXPORT_SYMBOL_GPL vmlinux 0x1d9db1c5 vb2_plane_vaddr -EXPORT_SYMBOL_GPL vmlinux 0x1da1b5e7 nfs_pageio_resend -EXPORT_SYMBOL_GPL vmlinux 0x1da4bea1 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x1dae3a64 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x1db3d745 gnttab_pages_clear_private -EXPORT_SYMBOL_GPL vmlinux 0x1dbf5645 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL vmlinux 0x1dd00698 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x1dd425d9 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL vmlinux 0x1de0abbb sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x1de887ff zynqmp_pm_bootmode_write -EXPORT_SYMBOL_GPL vmlinux 0x1df77d52 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm -EXPORT_SYMBOL_GPL vmlinux 0x1dfd2fe6 devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e06d19e fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL vmlinux 0x1e27d952 sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0x1e288c83 zynqmp_pm_force_pwrdwn -EXPORT_SYMBOL_GPL vmlinux 0x1e36c7d1 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x1e37619d __devm_clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x1e4c84b1 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x1e528270 kvm_write_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x1e59352d gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x1e77b4ab disk_force_media_change -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e7e6d95 vb2_queue_error -EXPORT_SYMBOL_GPL vmlinux 0x1e831e5b pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x1e833bf5 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL vmlinux 0x1e83fee6 HYPERVISOR_physdev_op -EXPORT_SYMBOL_GPL vmlinux 0x1e84efb9 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x1e8f2251 v4l2_pipeline_pm_put -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e92f569 dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0x1e97e44a pinctrl_utils_reserve_map -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 0x1eb975a2 virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0x1eba2de0 snd_soc_component_write_field -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ebf7f38 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x1ed50c89 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x1ef4bece power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x1ef61f13 iio_read_max_channel_raw -EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x1efb3072 __devm_spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x1eff2a66 sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0x1f044a8f __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x1f09533f devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1f18e2f9 usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL vmlinux 0x1f1cc011 zynqmp_pm_get_chipid -EXPORT_SYMBOL_GPL vmlinux 0x1f1db784 clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0x1f1e18e9 pci_ecam_free -EXPORT_SYMBOL_GPL vmlinux 0x1f28f42f i2c_mux_del_adapters -EXPORT_SYMBOL_GPL vmlinux 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit -EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f4a8e6f of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0x1f551d0a ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f5df86d nand_op_parser_exec_op -EXPORT_SYMBOL_GPL vmlinux 0x1f63a508 nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0x1f6a3b7f mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x1f776182 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x1f842462 svc_set_num_threads -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f9a2b53 zynqmp_pm_clock_enable -EXPORT_SYMBOL_GPL vmlinux 0x1f9efb63 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1faacdaf fpga_bridge_create -EXPORT_SYMBOL_GPL vmlinux 0x1fb70eb9 gnttab_end_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x1fc5b0b7 clk_hw_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x1fd31021 sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1fe8950e iterate_mounts -EXPORT_SYMBOL_GPL vmlinux 0x1ff2778d iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x1ffdc43a of_dp_aux_populate_ep_devices -EXPORT_SYMBOL_GPL vmlinux 0x1ffea2cc soc_ac97_ops -EXPORT_SYMBOL_GPL vmlinux 0x2005424d sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x200a44da garp_uninit_applicant -EXPORT_SYMBOL_GPL vmlinux 0x2016b62f ahci_platform_enable_clks -EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x205dc820 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x205f0bdb fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x2074fd37 usb_add_config -EXPORT_SYMBOL_GPL vmlinux 0x207682d2 wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x207b2b3e crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x207fef80 mmc_sanitize -EXPORT_SYMBOL_GPL vmlinux 0x2082cab1 v4l_disable_media_source -EXPORT_SYMBOL_GPL vmlinux 0x20835979 nfs_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame -EXPORT_SYMBOL_GPL vmlinux 0x208561ed ahci_check_ready -EXPORT_SYMBOL_GPL vmlinux 0x20918e1e usbnet_open -EXPORT_SYMBOL_GPL vmlinux 0x2094b8b8 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x209b3e99 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x209d3cce key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x20a6ee42 v4l2_device_disconnect -EXPORT_SYMBOL_GPL vmlinux 0x20ab22a0 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x20c426ef blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x20d990b5 acpi_cppc_processor_probe -EXPORT_SYMBOL_GPL vmlinux 0x20f066ba sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0x20f20719 dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x20f5c09a regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x20fa929a mtd_panic_write -EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource -EXPORT_SYMBOL_GPL vmlinux 0x213ef29e gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x2144ec40 fpga_region_unregister -EXPORT_SYMBOL_GPL vmlinux 0x21552d5e devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x216064ca sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio -EXPORT_SYMBOL_GPL vmlinux 0x2176615b clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x217fc536 stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x218ab043 perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0x21936014 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x2199459e da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21b67d9f dw_pcie_ep_linkup -EXPORT_SYMBOL_GPL vmlinux 0x21b8a066 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0x21b8c28b drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL vmlinux 0x21bcf5bb usb_hcd_platform_shutdown -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 0x21e11bd4 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x21f11b71 snd_soc_bytes_info -EXPORT_SYMBOL_GPL vmlinux 0x21f2034a set_capacity_and_notify -EXPORT_SYMBOL_GPL vmlinux 0x21f943cd nfs_zap_acl_cache -EXPORT_SYMBOL_GPL vmlinux 0x21fff55b __traceiter_vb2_dqbuf -EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x220185b0 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0x220c13ca rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available -EXPORT_SYMBOL_GPL vmlinux 0x220d8f7a register_mtd_user -EXPORT_SYMBOL_GPL vmlinux 0x220ed2dd drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x221d5d7b snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x22285497 usb_string -EXPORT_SYMBOL_GPL vmlinux 0x222d16a5 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x223354a5 usb_add_function -EXPORT_SYMBOL_GPL vmlinux 0x224ba763 pnfs_generic_sync -EXPORT_SYMBOL_GPL vmlinux 0x224f51bf nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x224fed5b vp_modern_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0x22532656 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x225654c7 snd_soc_runtime_action -EXPORT_SYMBOL_GPL vmlinux 0x22763bd2 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x22864bec pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2298976f console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x22a81009 nfs_atomic_open -EXPORT_SYMBOL_GPL vmlinux 0x22b0c346 percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x22b3ffcb devm_snd_soc_register_card -EXPORT_SYMBOL_GPL vmlinux 0x22bfd072 kvm_read_guest -EXPORT_SYMBOL_GPL vmlinux 0x22c2b75d iio_read_channel_ext_info -EXPORT_SYMBOL_GPL vmlinux 0x22caab9c pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x22d47c45 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count -EXPORT_SYMBOL_GPL vmlinux 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends -EXPORT_SYMBOL_GPL vmlinux 0x22dab470 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x22f1248d svc_xprt_received -EXPORT_SYMBOL_GPL vmlinux 0x22f31abb add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0x22f3b821 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x22f48853 iommu_aux_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x22f6fd63 i2c_new_client_device -EXPORT_SYMBOL_GPL vmlinux 0x22fbadbd watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x22fef5c4 v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL vmlinux 0x22ff7e59 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2307b750 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x231ac8b8 __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x23213357 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x232424a4 dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0x23287830 usb_gadget_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x2338bb1c shmem_zero_setup -EXPORT_SYMBOL_GPL vmlinux 0x233e6bff hisi_uncore_pmu_start -EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x23451c77 fscrypt_prepare_new_inode -EXPORT_SYMBOL_GPL vmlinux 0x23478004 usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0x23488ca4 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x2348fd97 int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x23511291 gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0x2358484f kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL vmlinux 0x2358c2ec nand_prog_page_op -EXPORT_SYMBOL_GPL vmlinux 0x2358ff77 __traceiter_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x235fad55 fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0x23747d59 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x23842cef iommu_enable_nesting -EXPORT_SYMBOL_GPL vmlinux 0x2384507b rpc_force_rebind -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x23892ce3 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x23aa3d0e iomap_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x23be4ab9 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL vmlinux 0x23e86242 devm_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x23eb2953 devlink_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0x23fae714 regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x23fc676c ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x23fc9d7d fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0x23ff1e94 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x241b94b5 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const -EXPORT_SYMBOL_GPL vmlinux 0x242239b8 crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0x24311a5b platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x24350d4e svc_unreg_xprt_class -EXPORT_SYMBOL_GPL vmlinux 0x24451812 __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL vmlinux 0x244a4142 battery_hook_unregister -EXPORT_SYMBOL_GPL vmlinux 0x244e587f __xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x24561870 __clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x24567733 __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x246fb504 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x24754170 nfs_setsecurity -EXPORT_SYMBOL_GPL vmlinux 0x248377fd dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x2483d869 handle_fasteoi_nmi -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 0x248f42c7 rndis_set_host_mac -EXPORT_SYMBOL_GPL vmlinux 0x249210b0 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0x249bd7ae nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24b2790a phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x24b72b1a pnfs_ld_write_done -EXPORT_SYMBOL_GPL vmlinux 0x24b8b2b5 __traceiter_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24e254e8 sm4_expandkey -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24ed4ff2 nfs_create_server -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x24f81a31 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x25108ec0 sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0x2510e9c5 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x25177498 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x251a5bbe sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x2528418e usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL vmlinux 0x254bc6b8 ahci_save_initial_config -EXPORT_SYMBOL_GPL vmlinux 0x254cb02b edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x2551ef34 cache_seq_start_rcu -EXPORT_SYMBOL_GPL vmlinux 0x2552566c dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x25588553 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x25597b8e devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x255ae2ee acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0x255d2db2 phy_save_page -EXPORT_SYMBOL_GPL vmlinux 0x255ebca7 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL vmlinux 0x2572a8da devm_hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x2574da11 zynqmp_pm_write_pggs -EXPORT_SYMBOL_GPL vmlinux 0x25856370 of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x2593782f __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL vmlinux 0x259879c6 vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0x259caaac pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x25a881c7 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL vmlinux 0x25aa89d8 irq_chip_set_vcpu_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x25b3bd8c skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x25c1f4fd dev_pm_genpd_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x25c61409 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL vmlinux 0x25d30052 cec_register_adapter -EXPORT_SYMBOL_GPL vmlinux 0x25d36b09 gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0x25ff196f pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x2605cea7 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x26255968 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x262e4505 rio_mport_initialize -EXPORT_SYMBOL_GPL vmlinux 0x262f8c88 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x26356cd3 scmi_protocol_unregister -EXPORT_SYMBOL_GPL vmlinux 0x263751a6 snd_soc_component_compr_free -EXPORT_SYMBOL_GPL vmlinux 0x263f039e xas_nomem -EXPORT_SYMBOL_GPL vmlinux 0x26439f80 rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x26583405 phylink_mii_c22_pcs_an_restart -EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded -EXPORT_SYMBOL_GPL vmlinux 0x265d0b56 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock -EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x268238bc v4l2_event_pending -EXPORT_SYMBOL_GPL vmlinux 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL vmlinux 0x26898b4f __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x268b208e xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0x26a717f4 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26b5e006 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x26bbcca1 serial8250_update_uartclk -EXPORT_SYMBOL_GPL vmlinux 0x26c1c544 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x26c2e511 pci_pri_supported -EXPORT_SYMBOL_GPL vmlinux 0x26c3573f drm_bridge_connector_init -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26d50d7c ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL vmlinux 0x26f7c3f9 of_clk_hw_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x27002851 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL vmlinux 0x27072115 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x270b26b1 crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x270f6d57 v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL vmlinux 0x2718cb88 serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0x272136d6 snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL vmlinux 0x2723f9b7 rpcauth_init_cred -EXPORT_SYMBOL_GPL vmlinux 0x2734f2d1 power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x27371090 __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x2738c421 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL vmlinux 0x273dd85a tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0x274d2f87 af_alg_free_resources -EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x274dd5ce serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0x2750ca20 efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0x275b50d1 drm_of_component_match_add -EXPORT_SYMBOL_GPL vmlinux 0x275ec920 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x27609875 blk_mq_hctx_set_fq_lock_class -EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x2773eb41 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x277405f8 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x27945337 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0x27a4bb78 housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL vmlinux 0x27ae8813 drm_gem_cma_mmap -EXPORT_SYMBOL_GPL vmlinux 0x27bb2980 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x27bc63e7 devm_platform_ioremap_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x27c3012e usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x27c73012 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x27c97276 balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x27d445e6 dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x27e1bafc rio_set_port_lockout -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 0x280422f8 acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x281645cd xprt_disconnect_done -EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf -EXPORT_SYMBOL_GPL vmlinux 0x282b6f35 drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x2836c22b xprt_update_rtt -EXPORT_SYMBOL_GPL vmlinux 0x2842d508 locks_in_grace -EXPORT_SYMBOL_GPL vmlinux 0x284b95e9 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x284c54bd pci_ats_supported -EXPORT_SYMBOL_GPL vmlinux 0x284f1d80 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x28518eb1 iio_device_release_direct_mode -EXPORT_SYMBOL_GPL vmlinux 0x28537d4a v4l_vb2q_enable_media_source -EXPORT_SYMBOL_GPL vmlinux 0x285e2750 bus_register -EXPORT_SYMBOL_GPL vmlinux 0x28633f66 serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x2865f6d7 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x286f6e84 bio_release_pages -EXPORT_SYMBOL_GPL vmlinux 0x2874d282 rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2888d67b snd_soc_add_pcm_runtime -EXPORT_SYMBOL_GPL vmlinux 0x28952bb2 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x28962f32 zynqmp_pm_config_reg_access -EXPORT_SYMBOL_GPL vmlinux 0x289ac6b1 pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0x289d8827 sdhci_cqe_enable -EXPORT_SYMBOL_GPL vmlinux 0x289f1ccd gpiochip_irq_unmap -EXPORT_SYMBOL_GPL vmlinux 0x28a18ebb acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x28aca3c8 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x28aeb6d5 pci_dev_trylock -EXPORT_SYMBOL_GPL vmlinux 0x28afbb08 cpu_latency_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28be4054 clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0x28cc2967 reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0x28d66226 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x28e23139 xfrm_probe_algs -EXPORT_SYMBOL_GPL vmlinux 0x28e2ed00 nanddev_isreserved -EXPORT_SYMBOL_GPL vmlinux 0x28e54874 iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x28ee32f8 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x28f56819 mrp_init_applicant -EXPORT_SYMBOL_GPL vmlinux 0x28fbc6aa rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x28fd64b8 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x28ffa723 param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x2913ad89 v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine -EXPORT_SYMBOL_GPL vmlinux 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL vmlinux 0x291cd767 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x291e8053 pci_epc_set_msi -EXPORT_SYMBOL_GPL vmlinux 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL vmlinux 0x2938952e of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0x293af949 phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0x293fe37f ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x29573e14 usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x29574c49 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x295976dd tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0x2959ea88 dev_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x295b107e usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x296682b0 zynqmp_pm_get_rpu_mode -EXPORT_SYMBOL_GPL vmlinux 0x296e29af ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x298b306b sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL vmlinux 0x29a956ea regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x29add8e6 gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0x29b94cc3 tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x29bbe69c zynqmp_pm_set_tcm_config -EXPORT_SYMBOL_GPL vmlinux 0x29c256af blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x29e52868 efivar_entry_set_get_size -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29f8b433 xdr_align_data -EXPORT_SYMBOL_GPL vmlinux 0x29fce51a tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0x2a03eab5 led_trigger_read -EXPORT_SYMBOL_GPL vmlinux 0x2a05ed5c sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x2a0d1cc5 devlink_param_publish -EXPORT_SYMBOL_GPL vmlinux 0x2a191e73 __fscrypt_inode_uses_inline_crypto -EXPORT_SYMBOL_GPL vmlinux 0x2a1f8642 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL vmlinux 0x2a2a0f43 vb2_core_querybuf -EXPORT_SYMBOL_GPL vmlinux 0x2a2e7fbe devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x2a2e9a86 nfs_client_init_status -EXPORT_SYMBOL_GPL vmlinux 0x2a3aef1a kthread_func -EXPORT_SYMBOL_GPL vmlinux 0x2a3d8971 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL vmlinux 0x2a3ddde4 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x2a54bddc of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0x2a5d9c0f devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2a5ec969 usb_asmedia_modifyflowcontrol -EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2a671ea5 pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x2a7b75e4 nfs_file_set_open_context -EXPORT_SYMBOL_GPL vmlinux 0x2a8821fa of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x2a8af55a acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x2a983c68 pci_epf_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2a9d2a36 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL vmlinux 0x2aa3dae6 of_i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2ab07eed sunrpc_cache_update -EXPORT_SYMBOL_GPL vmlinux 0x2abd996c acpi_storage_d3 -EXPORT_SYMBOL_GPL vmlinux 0x2ad6d2ee acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0x2ad94ba1 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x2ada0fc1 devm_clk_hw_get_clk -EXPORT_SYMBOL_GPL vmlinux 0x2adf2000 spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL vmlinux 0x2ae0f426 gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x2ae1689e zynqmp_pm_clock_getdivider -EXPORT_SYMBOL_GPL vmlinux 0x2b0765ca xen_store_interface -EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x2b122293 drm_class_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2b128f28 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x2b2649d3 acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x2b2baa4e v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL vmlinux 0x2b30f429 raid6_call -EXPORT_SYMBOL_GPL vmlinux 0x2b31285d l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0x2b31d9da blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x2b37e31a ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0x2b387746 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b457f60 fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0x2b508d3d mtd_lock -EXPORT_SYMBOL_GPL vmlinux 0x2b538ac6 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple -EXPORT_SYMBOL_GPL vmlinux 0x2b62badb rpc_call_async -EXPORT_SYMBOL_GPL vmlinux 0x2b686056 usbnet_cdc_status -EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x2b79d7cc nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL vmlinux 0x2b80ba47 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2b86f0fd zynqmp_pm_bootmode_read -EXPORT_SYMBOL_GPL vmlinux 0x2b8d5419 acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x2b8dbd06 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x2bb47fed __dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x2bcdf62a usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x2bd0828e icc_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x2bd71e08 devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x2bd755d2 md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x2be4a5f8 software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x2be56630 kthread_use_mm -EXPORT_SYMBOL_GPL vmlinux 0x2be67eb6 extcon_get_edev_name -EXPORT_SYMBOL_GPL vmlinux 0x2be71483 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x2bef3657 hid_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0x2bf67def v4l2_calc_aspect_ratio -EXPORT_SYMBOL_GPL vmlinux 0x2bf93f40 crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x2bfd79a4 page_cache_async_ra -EXPORT_SYMBOL_GPL vmlinux 0x2bfdd5fd blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2c1051c8 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL vmlinux 0x2c139989 fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c2bee75 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c32c51c nvdimm_setup_pfn -EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x2c391779 devm_platform_get_irqs_affinity -EXPORT_SYMBOL_GPL vmlinux 0x2c5897eb nfs_init_cinfo -EXPORT_SYMBOL_GPL vmlinux 0x2c5a8440 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x2c5bd097 drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL vmlinux 0x2c5ca67e inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem -EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c70765a sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0x2c790d4a __tracepoint_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c7db7db regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL vmlinux 0x2c836e1c mtd_del_partition -EXPORT_SYMBOL_GPL vmlinux 0x2c88b0f0 fsnotify_add_mark -EXPORT_SYMBOL_GPL vmlinux 0x2c89bf1d pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL vmlinux 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2cab5c77 zynqmp_pm_mmio_read -EXPORT_SYMBOL_GPL vmlinux 0x2caca95a skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x2cb0f0e4 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL vmlinux 0x2ccb6c29 efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x2cd57f5e ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x2cd734c0 fwnode_create_software_node -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 0x2cfa618b devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x2d08e275 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x2d0eec15 gether_setup_name -EXPORT_SYMBOL_GPL vmlinux 0x2d18d646 usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d2295b6 ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0x2d28738c sched_trace_cfs_rq_avg -EXPORT_SYMBOL_GPL vmlinux 0x2d2c902f perf_trace_buf_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d368c4c nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL vmlinux 0x2d37b8ac aie_partition_release -EXPORT_SYMBOL_GPL vmlinux 0x2d39c243 cec_allocate_adapter -EXPORT_SYMBOL_GPL vmlinux 0x2d40c757 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x2d4106b2 __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d486295 nand_read_page_op -EXPORT_SYMBOL_GPL vmlinux 0x2d4c3c95 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x2d581148 balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict -EXPORT_SYMBOL_GPL vmlinux 0x2d64b23f fscrypt_ioctl_get_nonce -EXPORT_SYMBOL_GPL vmlinux 0x2d6624de devm_pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x2d6e4b7a unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x2d73a289 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x2d73cf41 fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x2d81dfa7 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x2d88d207 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL vmlinux 0x2d88de16 dma_vunmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x2d8eb4f2 ncsi_stop_dev -EXPORT_SYMBOL_GPL vmlinux 0x2d98732a nand_get_large_page_hamming_ooblayout -EXPORT_SYMBOL_GPL vmlinux 0x2da491d1 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x2db4891f udp_tunnel_nic_ops -EXPORT_SYMBOL_GPL vmlinux 0x2dda092d hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2dddab5c usb_add_gadget_udc -EXPORT_SYMBOL_GPL vmlinux 0x2de6d146 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x2df97d9e blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add -EXPORT_SYMBOL_GPL vmlinux 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL vmlinux 0x2e20aa4c vmf_insert_pfn_pmd_prot -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e294ea7 nlmclnt_init -EXPORT_SYMBOL_GPL vmlinux 0x2e3a2635 fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0x2e3d3c21 rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0x2e424b27 crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0x2e4a369e devm_regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x2e53e177 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0x2e599365 __traceiter_vb2_buf_done -EXPORT_SYMBOL_GPL vmlinux 0x2e59a15c rio_map_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x2e5a0594 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x2e5bf875 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x2e626f90 dst_cache_set_ip4 -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 0x2e6f9647 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x2e77a03f dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x2e8a84de sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x2e8ddc8e ethnl_cable_test_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2e8e18c6 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x2e966fcd mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL vmlinux 0x2ea39373 fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0x2eb2a727 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ebf86e2 acpi_subsys_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x2ebfdb0b nand_status_op -EXPORT_SYMBOL_GPL vmlinux 0x2ed58583 __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x2eded488 serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x2ee9ee6e phy_create -EXPORT_SYMBOL_GPL vmlinux 0x2efafe8b regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x2efcde2d pnfs_add_commit_array -EXPORT_SYMBOL_GPL vmlinux 0x2efd1c31 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL vmlinux 0x2efea0b6 usb_function_deactivate -EXPORT_SYMBOL_GPL vmlinux 0x2efecd4d xlnx_drm_pipeline_init -EXPORT_SYMBOL_GPL vmlinux 0x2f06e69e snd_soc_dai_action -EXPORT_SYMBOL_GPL vmlinux 0x2f0a23bc usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f14e301 power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x2f155d91 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2f31bf8c snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL vmlinux 0x2f41ee3f devm_of_led_get -EXPORT_SYMBOL_GPL vmlinux 0x2f475113 hid_check_keys_pressed -EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x2f4c1ea3 __traceiter_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x2f4da655 clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0x2f4e2b89 crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x2f556893 bpf_sk_storage_diag_put -EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f69242f v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL vmlinux 0x2f719eef xen_dbgp_reset_prep -EXPORT_SYMBOL_GPL vmlinux 0x2f733091 snd_soc_limit_volume -EXPORT_SYMBOL_GPL vmlinux 0x2f830d09 led_put -EXPORT_SYMBOL_GPL vmlinux 0x2f8fd89d xas_split_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2f918f35 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL vmlinux 0x2f91e1d6 acpi_spi_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2f964e0f firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0x2fa1128c __traceiter_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x2fb811ab devm_clk_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fd7212e media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL vmlinux 0x2fdeed22 sdhci_start_tuning -EXPORT_SYMBOL_GPL vmlinux 0x2fe4fef2 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x2fede89e input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x2ff7e756 pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0x2ffbfe5f arm64_mm_context_get -EXPORT_SYMBOL_GPL vmlinux 0x30086c59 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x300e66ce snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL vmlinux 0x3029efa8 __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x30403fc5 nfs_setattr -EXPORT_SYMBOL_GPL vmlinux 0x3042d483 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x30496988 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL vmlinux 0x3049f4cb svcauth_unix_purge -EXPORT_SYMBOL_GPL vmlinux 0x30513fcf kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x3053389a xprt_release_xprt_cong -EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3065e87d dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x3066c003 cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL vmlinux 0x306ba47b clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x307d5639 dax_copy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x307d9fba sdhci_execute_tuning -EXPORT_SYMBOL_GPL vmlinux 0x30827c6e led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x30969519 nand_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x30a040f2 zynqmp_pm_bbram_lock_userdata -EXPORT_SYMBOL_GPL vmlinux 0x30a44ac3 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL vmlinux 0x30a9c85f get_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x30b1e886 pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0x30c742b9 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x30d50710 gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0x30de95f1 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0x30eb5fd4 cec_transmit_msg -EXPORT_SYMBOL_GPL vmlinux 0x30f34fbe usb_of_has_combined_node -EXPORT_SYMBOL_GPL vmlinux 0x30fff20e usb_gadget_udc_reset -EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x310841bc lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0x3111585b pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0x3117e890 i2c_dw_acpi_configure -EXPORT_SYMBOL_GPL vmlinux 0x31185171 snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0x311bf39a blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x3128ca34 of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0x31348b32 rpc_put_sb_net -EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single -EXPORT_SYMBOL_GPL vmlinux 0x3141458b usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0x314aa6fa rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL vmlinux 0x314b6811 snd_soc_link_compr_startup -EXPORT_SYMBOL_GPL vmlinux 0x31540f2d rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0x316c2800 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x317d74ec ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes -EXPORT_SYMBOL_GPL vmlinux 0x3184906b icc_node_del -EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x318d094a devm_of_iio_channel_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x3194b417 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x3196769b inet6_compat_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x31a262bb __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31ae67f1 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x31bb1c06 i2c_root_adapter -EXPORT_SYMBOL_GPL vmlinux 0x31bd688a regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x31bfd76b usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31cd4594 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x31d10c68 blk_mq_flush_busy_ctxs -EXPORT_SYMBOL_GPL vmlinux 0x31d94f94 fork_usermode_driver -EXPORT_SYMBOL_GPL vmlinux 0x31d98b34 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x31e9e8d5 zynqmp_pm_set_suspend_mode -EXPORT_SYMBOL_GPL vmlinux 0x31f23154 gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0x31f8a1f8 pci_epc_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x31fca882 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x31ffaa2e get_mtd_device_nm -EXPORT_SYMBOL_GPL vmlinux 0x3200365e ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x320a903a nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x320c3e0b regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x320cbcb7 devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x322208c8 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x322703c7 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x3227ef0d fpga_image_info_free -EXPORT_SYMBOL_GPL vmlinux 0x3228034c xprt_write_space -EXPORT_SYMBOL_GPL vmlinux 0x322b1220 mtd_get_device_size -EXPORT_SYMBOL_GPL vmlinux 0x322c9861 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL vmlinux 0x32416a73 of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0x3247d9ee bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x3251b2c5 ahci_platform_resume -EXPORT_SYMBOL_GPL vmlinux 0x325217b4 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x3267ed28 media_request_object_unbind -EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0x3276e6ad __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x3284b0b1 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x329228a0 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x3299dc8c rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x329efd67 pinctrl_find_gpio_range_from_pin_nolock -EXPORT_SYMBOL_GPL vmlinux 0x32a2c99c devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32ac2f6b cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0x32b71430 xenbus_switch_state -EXPORT_SYMBOL_GPL vmlinux 0x32ba7b7b usbnet_get_drvinfo -EXPORT_SYMBOL_GPL vmlinux 0x32bb6e05 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL vmlinux 0x32bbebbf fuse_simple_background -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 0x32cfe39d crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x32d09b6f em_dev_register_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0x32dc382f fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL vmlinux 0x32efa3fa get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x33006173 efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x33068467 ahci_start_engine -EXPORT_SYMBOL_GPL vmlinux 0x3310ea6a i2c_acpi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x33178db9 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x3320bcfa bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0x332cd357 v4l2_mc_create_media_graph -EXPORT_SYMBOL_GPL vmlinux 0x333d2e55 snd_soc_unregister_card -EXPORT_SYMBOL_GPL vmlinux 0x334d70fd generic_handle_domain_irq -EXPORT_SYMBOL_GPL vmlinux 0x335817d8 nfs_access_get_cached -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x335ef142 pci_pr3_present -EXPORT_SYMBOL_GPL vmlinux 0x3362d3f6 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0x33697112 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0x336b9f40 af_alg_get_rsgl -EXPORT_SYMBOL_GPL vmlinux 0x3374ebe0 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x338f903d bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x33a13359 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x33a5ce4e phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0x33a6558a iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0x33b50b9e null_dailink_component -EXPORT_SYMBOL_GPL vmlinux 0x33b866ce crypto_ecdh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0x33b9bb19 irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0x33bc91a4 nfs_commit_free -EXPORT_SYMBOL_GPL vmlinux 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL vmlinux 0x33c5e31a nvmem_cell_read_variable_le_u32 -EXPORT_SYMBOL_GPL vmlinux 0x33cf4792 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x33ea2ea5 nfs_retry_commit -EXPORT_SYMBOL_GPL vmlinux 0x34030853 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x3407f858 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x3415ef5a scsi_host_complete_all_commands -EXPORT_SYMBOL_GPL vmlinux 0x341786e9 __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x34197d61 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x341bcb3d iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x3427e72b vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL vmlinux 0x342b467b debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x342d6937 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0x34342a0f v4l2_event_queue_fh -EXPORT_SYMBOL_GPL vmlinux 0x3435718a ping_bind -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 0x3458bd21 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL vmlinux 0x347059fa mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x34772aa1 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x3477a9ff devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x34850daa pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0x34873760 drm_bridge_get_modes -EXPORT_SYMBOL_GPL vmlinux 0x348ca1a3 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x34946cd0 udp_abort -EXPORT_SYMBOL_GPL vmlinux 0x34962383 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x349a76ce iio_read_channel_raw -EXPORT_SYMBOL_GPL vmlinux 0x34a332a9 nf_queue -EXPORT_SYMBOL_GPL vmlinux 0x34a4d5a9 devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x34a830fa devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x34af5756 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x34afefbf irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x34b4ba6e blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x34ce495d ahci_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL vmlinux 0x34db6d41 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x34dc0d08 fpga_bridge_get -EXPORT_SYMBOL_GPL vmlinux 0x34e61aea tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x34f15f81 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x34f4a15b usb_free_all_descriptors -EXPORT_SYMBOL_GPL vmlinux 0x34f7f25c dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x34fd930c __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait -EXPORT_SYMBOL_GPL vmlinux 0x352621dc vb2_fop_mmap -EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3538dd57 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x3546e800 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x354fb04a kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x35544dcd proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x355b89d8 drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next -EXPORT_SYMBOL_GPL vmlinux 0x355d78e0 v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL vmlinux 0x3562f983 read_sanitised_ftr_reg -EXPORT_SYMBOL_GPL vmlinux 0x3565a822 phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0x35688884 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x356cfb4b virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x358b8f13 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35932361 usb_gadget_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x35941c61 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x359d167a gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x35a4f59d zynqmp_pm_clock_setdivider -EXPORT_SYMBOL_GPL vmlinux 0x35b44d66 tty_kopen_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x35b6f6e4 xprt_lookup_rqst -EXPORT_SYMBOL_GPL vmlinux 0x35c4c220 icc_put -EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x35db4888 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0x35e79e89 of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x35ece39c blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0x35edf242 xvip_clr_and_set -EXPORT_SYMBOL_GPL vmlinux 0x35eed0cc regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0x35f3281b irq_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x35fc0f05 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x36085b59 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x36088a6d ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x360920bf garp_init_applicant -EXPORT_SYMBOL_GPL vmlinux 0x360be8c4 iommu_dev_feature_enabled -EXPORT_SYMBOL_GPL vmlinux 0x360d6b50 disk_uevent -EXPORT_SYMBOL_GPL vmlinux 0x3616d704 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x3619c82a device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x361b294d bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x361e3342 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x362a725b ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0x3639492e gether_get_dev_addr -EXPORT_SYMBOL_GPL vmlinux 0x36509415 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x365e2802 devlink_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0x36671211 dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x366810ca phy_resolve_aneg_pause -EXPORT_SYMBOL_GPL vmlinux 0x3672f71c ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x367307c7 xdr_buf_subsegment -EXPORT_SYMBOL_GPL vmlinux 0x3687eb27 __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x368811bb of_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0x3693d424 of_add_property -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36bfc49b device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x36c70e80 icc_link_create -EXPORT_SYMBOL_GPL vmlinux 0x36cfc1b6 bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x36d84c44 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x36db870b zynqmp_pm_sha_hash -EXPORT_SYMBOL_GPL vmlinux 0x36e8cca1 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x36e92c71 gether_disconnect -EXPORT_SYMBOL_GPL vmlinux 0x370ab1a6 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x370cfe6e v4l2_dv_timings_presets -EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x371e176b acpi_set_modalias -EXPORT_SYMBOL_GPL vmlinux 0x37260462 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x372cfd6e gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x37317592 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x37350076 vb2_core_dqbuf -EXPORT_SYMBOL_GPL vmlinux 0x37351035 mmc_crypto_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x373a8891 inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0x3745f80e __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read -EXPORT_SYMBOL_GPL vmlinux 0x3762bcb9 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state -EXPORT_SYMBOL_GPL vmlinux 0x377e75af vp_modern_get_status -EXPORT_SYMBOL_GPL vmlinux 0x378167fc of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0x378adfb7 zynqmp_pm_sd_dll_reset -EXPORT_SYMBOL_GPL vmlinux 0x378ef483 snd_ctl_apply_vmaster_followers -EXPORT_SYMBOL_GPL vmlinux 0x3790440b da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x37a02412 xfrm_aalg_get_byname -EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x37bfbe52 bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0x37caefdc usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x37d35e34 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0x37da3fb7 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x37e1a4a3 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0x37efe4db sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x37f9180e nfs_file_mmap -EXPORT_SYMBOL_GPL vmlinux 0x37fa5957 nfs_try_get_tree -EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x3806512c pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL vmlinux 0x380b0244 devlink_port_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x38170d02 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x381c29a0 fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0x381f579f srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x38220c11 shash_free_singlespawn_instance -EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x38293f20 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x385665d2 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x3890f657 v4l2_create_fwnode_links_to_pad -EXPORT_SYMBOL_GPL vmlinux 0x38961e09 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count -EXPORT_SYMBOL_GPL vmlinux 0x389ee695 snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL vmlinux 0x38a024ed fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0x38a90981 __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x38ab60f1 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x38abc4ce fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x38ad73f1 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x38b22fe4 drm_gem_shmem_free -EXPORT_SYMBOL_GPL vmlinux 0x38b72422 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x38bfc1f8 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x38c5d5d9 svc_print_addr -EXPORT_SYMBOL_GPL vmlinux 0x38c735aa user_describe -EXPORT_SYMBOL_GPL vmlinux 0x38c857ad dax_region_put -EXPORT_SYMBOL_GPL vmlinux 0x38d3dce5 g_make_token_header -EXPORT_SYMBOL_GPL vmlinux 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38ee6f55 pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x38f05890 switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x3903e220 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x39054175 component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0x3917e41d power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x3917e8d6 pinctrl_generic_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x391dd7e2 v4l2_g_parm_cap -EXPORT_SYMBOL_GPL vmlinux 0x3925d645 of_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x3926bb43 tps65912_device_exit -EXPORT_SYMBOL_GPL vmlinux 0x392c18cf genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0x39323e12 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x394812da ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0x395beea5 nfs_revalidate_inode -EXPORT_SYMBOL_GPL vmlinux 0x395f3034 fwnode_get_nth_parent -EXPORT_SYMBOL_GPL vmlinux 0x3966230f rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x39668a55 soc_device_match -EXPORT_SYMBOL_GPL vmlinux 0x396c8aa9 kvm_make_all_cpus_request -EXPORT_SYMBOL_GPL vmlinux 0x3979fbf9 crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL vmlinux 0x399eda0f sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout -EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x39c85c7b snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL vmlinux 0x39d50f59 __traceiter_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x39d6d698 strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL vmlinux 0x39e88d9d devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x39ece794 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x39f48ff8 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL vmlinux 0x39f4a23a lockd_down -EXPORT_SYMBOL_GPL vmlinux 0x39f70df2 snd_soc_get_volsw -EXPORT_SYMBOL_GPL vmlinux 0x39fd652f iio_get_debugfs_dentry -EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink -EXPORT_SYMBOL_GPL vmlinux 0x39fee4ef clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x3a05cb21 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL vmlinux 0x3a06113d snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL vmlinux 0x3a0aef7a fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0x3a2f78b9 of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL vmlinux 0x3a438c32 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x3a49cadd __device_reset -EXPORT_SYMBOL_GPL vmlinux 0x3a4e805e vp_modern_set_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a505586 usb_phy_get_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x3a607169 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x3a83c7d8 gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x3a884b1d v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL vmlinux 0x3a9039c0 fat_time_fat2unix -EXPORT_SYMBOL_GPL vmlinux 0x3a95154c set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x3a968592 pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0x3a990bce fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3a9ed8c5 cfi_qry_present -EXPORT_SYMBOL_GPL vmlinux 0x3aa315b5 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x3aa44da3 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x3aa68d7a v4l2_find_dv_timings_cap -EXPORT_SYMBOL_GPL vmlinux 0x3aab5738 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x3ac3d8da ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3adceeff snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL vmlinux 0x3ae964b9 dax_iomap_rw -EXPORT_SYMBOL_GPL vmlinux 0x3aec8511 power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x3b02b3f6 pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x3b0c7d57 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL vmlinux 0x3b0d0a2d inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x3b14a582 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x3b1725e9 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x3b28d34c rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x3b2c9f8a af_alg_pull_tsgl -EXPORT_SYMBOL_GPL vmlinux 0x3b2cbd63 sdhci_resume_host -EXPORT_SYMBOL_GPL vmlinux 0x3b360cd4 kvm_unmap_gfn -EXPORT_SYMBOL_GPL vmlinux 0x3b365fec cpufreq_enable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x3b3bfe8a pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x3b47ef4c nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b508296 rndis_borrow_net -EXPORT_SYMBOL_GPL vmlinux 0x3b529b2e add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x3b5588b5 vp_modern_remove -EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x3b64d4ec crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0x3b7de9e2 iio_update_buffers -EXPORT_SYMBOL_GPL vmlinux 0x3b8020d0 clk_gate_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x3b80392d __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3b8100ee pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x3b81b6fd pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x3b8979ea gnttab_grant_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x3b8bf9d0 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x3b92dcdb spi_delay_to_ns -EXPORT_SYMBOL_GPL vmlinux 0x3b9b4c9e led_blink_set_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x3b9d194f vb2_dma_contig_memops -EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3bbacbad tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x3bbc21ab usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL vmlinux 0x3bc0d6a4 v4l2_s_parm_cap -EXPORT_SYMBOL_GPL vmlinux 0x3bd6dd94 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x3bd9784f dma_free_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test -EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3bf71281 extcon_unregister_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg -EXPORT_SYMBOL_GPL vmlinux 0x3c114838 cpufreq_driver_resolve_freq -EXPORT_SYMBOL_GPL vmlinux 0x3c16a6b1 xvtc_generator_stop -EXPORT_SYMBOL_GPL vmlinux 0x3c19a650 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c2667b6 pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0x3c2b4b0a af_alg_async_cb -EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply -EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3c45744d efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0x3c4b74ff i2c_of_match_device -EXPORT_SYMBOL_GPL vmlinux 0x3c4f2d13 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x3c51cdd0 rpcauth_create -EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x3c673238 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c6a07d0 fsg_common_create_lun -EXPORT_SYMBOL_GPL vmlinux 0x3c9a599a __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x3ccd8b46 zynqmp_pm_clock_getparent -EXPORT_SYMBOL_GPL vmlinux 0x3cce44ae devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3ce47295 cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x3cfbee23 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x3d0bbc97 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x3d0ed03d scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0x3d1394e4 __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0x3d185e7d snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL vmlinux 0x3d1f0a7b led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d3d7e01 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x3d3f2e76 dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d55f4c3 devm_i2c_add_adapter -EXPORT_SYMBOL_GPL vmlinux 0x3d57fca5 pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3d58f21f snd_soc_dapm_free -EXPORT_SYMBOL_GPL vmlinux 0x3d7616fe of_property_read_u64_index -EXPORT_SYMBOL_GPL vmlinux 0x3d77ff1e devm_clk_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x3d877477 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x3d928794 _snd_pcm_stream_lock_irqsave_nested -EXPORT_SYMBOL_GPL vmlinux 0x3d9fdcd7 mtd_block_isbad -EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3daf9b0f ethnl_cable_test_fault_length -EXPORT_SYMBOL_GPL vmlinux 0x3db48927 sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0x3dc28472 da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0x3dc5d37c bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0x3ddec854 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3de7619e subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x3de8407b devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3def5345 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x3df70c99 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x3dfb943e snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0x3e057100 ahci_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x3e0b2689 nand_erase_op -EXPORT_SYMBOL_GPL vmlinux 0x3e106770 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x3e1672e5 led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x3e1980ef pinctrl_enable -EXPORT_SYMBOL_GPL vmlinux 0x3e1d52c8 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x3e5ae0ef cpufreq_table_index_unsorted -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e717476 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x3e7fcad6 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x3e95263c bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x3e9dea88 dw_pcie_ep_init -EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3ea55899 synth_event_trace -EXPORT_SYMBOL_GPL vmlinux 0x3ea66d76 irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x3ea9e8db gether_set_gadget -EXPORT_SYMBOL_GPL vmlinux 0x3eac5405 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x3eb1412e thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0x3ec4fc27 hisi_uncore_pmu_online_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3ecbce4e find_iova -EXPORT_SYMBOL_GPL vmlinux 0x3edc87b4 devm_of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x3ee42027 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL vmlinux 0x3ee7a2de nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3ef748f2 bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x3f0280d2 media_pipeline_start -EXPORT_SYMBOL_GPL vmlinux 0x3f16857b of_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x3f185430 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x3f1b334e irq_domain_remove_sim -EXPORT_SYMBOL_GPL vmlinux 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL vmlinux 0x3f2d0f19 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL vmlinux 0x3f440960 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f4f5a5b __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x3f52a7d8 xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0x3f5a49ce pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3f622662 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x3f6e6249 irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x3f777d7c usb_gadget_vbus_connect -EXPORT_SYMBOL_GPL vmlinux 0x3f82598a __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x3f826ec3 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put -EXPORT_SYMBOL_GPL vmlinux 0x3f8abd74 svc_rqst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3f910083 __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL vmlinux 0x3f937f84 macvlan_common_newlink -EXPORT_SYMBOL_GPL vmlinux 0x3f945461 ahci_set_em_messages -EXPORT_SYMBOL_GPL vmlinux 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index -EXPORT_SYMBOL_GPL vmlinux 0x3fb568f1 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x3fb5cd3e dmaengine_desc_attach_metadata -EXPORT_SYMBOL_GPL vmlinux 0x3fb77b18 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x3fba81a1 usbnet_set_rx_mode -EXPORT_SYMBOL_GPL vmlinux 0x3fc6205a svc_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3fe1bb04 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x3fe8ea29 platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0x3ff12f6e usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free -EXPORT_SYMBOL_GPL vmlinux 0x3ff8b036 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x40030128 __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x4003ab6c __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x400dd2db mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x4014ce67 media_device_register_entity -EXPORT_SYMBOL_GPL vmlinux 0x4014df71 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x402cd7c1 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x402d49f3 snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL vmlinux 0x4039e4c8 rpc_pton -EXPORT_SYMBOL_GPL vmlinux 0x403d7896 gpiod_get_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x403eff88 __devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4044ca16 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x4046ae15 page_cache_sync_ra -EXPORT_SYMBOL_GPL vmlinux 0x404cbaa3 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x404e35f0 net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0x40590849 usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x4066792e raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x40705c1e l3mdev_table_lookup_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL vmlinux 0x40748784 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x4077afa4 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x407bad11 devm_acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x407cf4c7 v4l2_hdmi_rx_colorimetry -EXPORT_SYMBOL_GPL vmlinux 0x408904b2 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x408a97da pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x408d545a svc_prepare_thread -EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x409cb086 nfs_fs_type -EXPORT_SYMBOL_GPL vmlinux 0x409e3bb3 vb2_thread_stop -EXPORT_SYMBOL_GPL vmlinux 0x409ed95f crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0x40c8187c clk_register -EXPORT_SYMBOL_GPL vmlinux 0x40c93270 cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL vmlinux 0x40cebb6a iomap_readahead -EXPORT_SYMBOL_GPL vmlinux 0x40d349b6 sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0x40d52ed5 set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0x40e0ba52 ftrace_set_notrace -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 0x4106789b dapm_regulator_event -EXPORT_SYMBOL_GPL vmlinux 0x4108a692 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x41187ef1 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x411ba6d9 tea5767_attach -EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature -EXPORT_SYMBOL_GPL vmlinux 0x4123cd16 uio_event_notify -EXPORT_SYMBOL_GPL vmlinux 0x412540fa gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x41261849 nand_select_target -EXPORT_SYMBOL_GPL vmlinux 0x412b7508 clk_hw_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x41308981 devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x413d8372 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x4157c179 sk_msg_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x41687ac1 snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL vmlinux 0x4179d1d5 ulpi_viewport_access_ops -EXPORT_SYMBOL_GPL vmlinux 0x417d6c47 kvm_put_kvm -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x4181649b of_dp_aux_depopulate_ep_devices -EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL vmlinux 0x418ca732 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL vmlinux 0x419a6ba0 da9150_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x419d7c83 zynqmp_pm_pinctrl_set_config -EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop -EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x41beb274 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x41d6e155 sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x41fa07f1 media_device_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x41fc3b04 xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x420b218c xprt_adjust_cwnd -EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4213cb8e sch_frag_xmit_hook -EXPORT_SYMBOL_GPL vmlinux 0x4219ba9c shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x421b09eb power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x4225fa0a rpc_num_bc_slots -EXPORT_SYMBOL_GPL vmlinux 0x4226f179 media_request_object_find -EXPORT_SYMBOL_GPL vmlinux 0x423121f1 __traceiter_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL vmlinux 0x42413ec1 media_graph_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x4250846a css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0x425e5094 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn -EXPORT_SYMBOL_GPL vmlinux 0x426da90e devlink_net -EXPORT_SYMBOL_GPL vmlinux 0x427ad53f pinmux_generic_add_function -EXPORT_SYMBOL_GPL vmlinux 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42853a47 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x42966049 page_endio -EXPORT_SYMBOL_GPL vmlinux 0x42a072c5 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x42a2e84a acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0x42b2b461 scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0x42b64f2e spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x42c1cd6f vb2_streamoff -EXPORT_SYMBOL_GPL vmlinux 0x42d4e1ad crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x42d5b98a xlnx_crtc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs -EXPORT_SYMBOL_GPL vmlinux 0x42ffe5f0 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x4302df25 vb2_core_expbuf -EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x4326ffae misc_cg_try_charge -EXPORT_SYMBOL_GPL vmlinux 0x43448788 dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x43467d7e linear_hugepage_index -EXPORT_SYMBOL_GPL vmlinux 0x4360f243 blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0x43689cdb pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit -EXPORT_SYMBOL_GPL vmlinux 0x43717715 nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL vmlinux 0x43738fab xvip_set_format_size -EXPORT_SYMBOL_GPL vmlinux 0x4376be2a debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x43840dc2 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x43848a21 mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x4397b983 wait_on_page_writeback -EXPORT_SYMBOL_GPL vmlinux 0x43a3d5ae iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43b9cd5a sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x43bd9857 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x43ce379b svc_authenticate -EXPORT_SYMBOL_GPL vmlinux 0x43d47885 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL vmlinux 0x43d5bf28 pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x43d69481 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x43ed4519 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x43f87c86 v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs -EXPORT_SYMBOL_GPL vmlinux 0x43fddc84 gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs -EXPORT_SYMBOL_GPL vmlinux 0x440e30af v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL vmlinux 0x4413f461 zynqmp_pm_request_wake -EXPORT_SYMBOL_GPL vmlinux 0x4422ac24 zynqmp_pm_set_tapdelay_bypass -EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x443f1e8b pinctrl_generic_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x44403379 kvm_release_page_clean -EXPORT_SYMBOL_GPL vmlinux 0x44456015 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x44464ff6 device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x444f2025 scsi_build_sense -EXPORT_SYMBOL_GPL vmlinux 0x44511979 amba_ahb_device_add -EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x445b27cb devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0x445d2801 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x44638115 mptcp_token_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x4463d67c sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x44656f7b tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x44734a94 fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0x4475e3c9 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x448202ea find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x4486b78f dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x449d9f0d tea5761_autodetection -EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op -EXPORT_SYMBOL_GPL vmlinux 0x44adff8e tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x44b1d0dc devm_regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0x44b3ffd4 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44c3b567 iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0x44c5d8f3 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x44cc3a41 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str -EXPORT_SYMBOL_GPL vmlinux 0x44d0dac3 of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0x44d896f6 iio_get_channel_type -EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats -EXPORT_SYMBOL_GPL vmlinux 0x44e58609 __uio_register_device -EXPORT_SYMBOL_GPL vmlinux 0x44e8f47e fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x44ee8d71 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x44f0714e snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x450a1814 snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x450d0e21 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x450e61b6 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x4519e461 crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0x452f53b1 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault -EXPORT_SYMBOL_GPL vmlinux 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL vmlinux 0x4541a346 devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x4543f2ef kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0x454f7477 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x4568fa8f regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x4574ab49 ahci_handle_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x4575b2aa usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x45967de0 dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x45bddd46 iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0x45be0a0b snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL vmlinux 0x45c20032 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x45cbaf23 vfs_read -EXPORT_SYMBOL_GPL vmlinux 0x45f97fe5 xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x45fa5a02 fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x4604d961 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x460802b6 sock_map_destroy -EXPORT_SYMBOL_GPL vmlinux 0x461459f4 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0x4617c01f serial8250_do_get_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x4617c48a dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0x461e6dc4 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x4631c6e4 pm_genpd_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x463f8923 usb_intf_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0x46414a1d hrtimer_sleeper_start_expires -EXPORT_SYMBOL_GPL vmlinux 0x465790d4 icc_std_aggregate -EXPORT_SYMBOL_GPL vmlinux 0x4659be13 sdhci_request -EXPORT_SYMBOL_GPL vmlinux 0x466c5ca7 __traceiter_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x4676d869 devm_request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x46811791 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46a02f03 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x46aa2f17 divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x46ac032f __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL vmlinux 0x46b764fc zynqmp_pm_fpga_get_feature_list -EXPORT_SYMBOL_GPL vmlinux 0x46bf29ee sdhci_get_property -EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x46d1a2d7 __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x46d6ba60 dev_pm_domain_attach_by_name -EXPORT_SYMBOL_GPL vmlinux 0x46e3671f sdhci_dumpregs -EXPORT_SYMBOL_GPL vmlinux 0x46e4dfcd usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL vmlinux 0x46e95453 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x46ef76b3 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x46fc691e edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0x46fe3bfc dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x4721d0ff rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x47351b08 v4l2_fwnode_connector_parse -EXPORT_SYMBOL_GPL vmlinux 0x47431dd5 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x4744d82c crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x4746bbf4 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x474f7ae4 af_alg_wait_for_data -EXPORT_SYMBOL_GPL vmlinux 0x4753395b do_splice_to -EXPORT_SYMBOL_GPL vmlinux 0x475542f2 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL vmlinux 0x4760e10d xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x476c1eda devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x47703180 debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0x4774848b iomap_dio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0x477c6811 mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x478c5457 __class_create -EXPORT_SYMBOL_GPL vmlinux 0x478debf5 phy_10gbit_fec_features -EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x4798c159 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47c55db1 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x47cfccc7 firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47df45fd cec_s_log_addrs -EXPORT_SYMBOL_GPL vmlinux 0x47e492e5 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x47e67277 aie_partition_is_available -EXPORT_SYMBOL_GPL vmlinux 0x47ed476a pinctrl_generic_get_group_count -EXPORT_SYMBOL_GPL vmlinux 0x47fd0bf4 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x48020c1c irq_get_percpu_devid_partition -EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x480c0ccf xenbus_dev_fatal -EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm -EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL vmlinux 0x4839762f v4l2_calc_timeperframe -EXPORT_SYMBOL_GPL vmlinux 0x483a063d devlink_params_publish -EXPORT_SYMBOL_GPL vmlinux 0x483afde1 usb_get_function_instance -EXPORT_SYMBOL_GPL vmlinux 0x48433a00 devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0x4848ed0d of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x48494537 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x484fc3bc nvmem_cell_read_variable_le_u64 -EXPORT_SYMBOL_GPL vmlinux 0x4855942d blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x486ed71c usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x487633f3 acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0x4880b410 devm_iio_kfifo_buffer_setup_ext -EXPORT_SYMBOL_GPL vmlinux 0x488148d1 svc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x488cac78 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x48a3a923 pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x48d19280 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x48e205bd v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL vmlinux 0x48f2132a sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL vmlinux 0x48f46635 iomap_writepages -EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse -EXPORT_SYMBOL_GPL vmlinux 0x48f8bb0d v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL vmlinux 0x48fc2b4c mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x490ac8a1 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4917319b task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x4917cb5c xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x4922a69b nfs_sops -EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4925f65e pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x4928c0d7 devm_of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x492f9fe6 nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL vmlinux 0x4934487c v4l2_create_fwnode_links -EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node -EXPORT_SYMBOL_GPL vmlinux 0x495033b8 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x49825aad badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0x498d4a75 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x4997688d regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x499d25b6 i2c_dw_probe_master -EXPORT_SYMBOL_GPL vmlinux 0x49aae29e nfs_alloc_inode -EXPORT_SYMBOL_GPL vmlinux 0x49ad2a56 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x49b40e71 pinmux_generic_get_function_count -EXPORT_SYMBOL_GPL vmlinux 0x49c0cc7c class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x49c12f91 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL vmlinux 0x49cba024 __vfs_removexattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49d9f030 usb_ep_fifo_status -EXPORT_SYMBOL_GPL vmlinux 0x49de7b06 dma_resv_get_fences -EXPORT_SYMBOL_GPL vmlinux 0x49e234f7 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x49e6d874 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49edbd9f acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4a01af55 clk_hw_get_parent_index -EXPORT_SYMBOL_GPL vmlinux 0x4a0c7516 xfrm_msg_min -EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a1d9dc3 media_remove_intf_links -EXPORT_SYMBOL_GPL vmlinux 0x4a2a21eb ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x4a34e9e5 gnttab_dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x4a3df9d0 gs_alloc_req -EXPORT_SYMBOL_GPL vmlinux 0x4a4029f1 kvm_vcpu_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a44c218 sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL vmlinux 0x4a4da5d6 report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0x4a546a9b blk_crypto_evict_key -EXPORT_SYMBOL_GPL vmlinux 0x4a556070 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x4a5f6043 __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x4a658c00 vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0x4a76a5ca svc_max_payload -EXPORT_SYMBOL_GPL vmlinux 0x4a77c534 nfs_reconfigure -EXPORT_SYMBOL_GPL vmlinux 0x4a8ba6d0 cache_purge -EXPORT_SYMBOL_GPL vmlinux 0x4a910a98 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x4a95b517 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x4aaa7cd7 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0x4ab560c8 nfs_write_inode -EXPORT_SYMBOL_GPL vmlinux 0x4adc9bab crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x4ae4875f free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0x4ae6dc25 xprt_alloc_slot -EXPORT_SYMBOL_GPL vmlinux 0x4aeca416 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4af34d8c usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x4af700fa cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x4b0d13ee crypto_engine_alloc_init -EXPORT_SYMBOL_GPL vmlinux 0x4b0d67b7 iio_read_channel_attribute -EXPORT_SYMBOL_GPL vmlinux 0x4b295f40 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x4b3c56f5 nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0x4b406a55 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL vmlinux 0x4b410bc8 em_dev_unregister_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0x4b44f880 dev_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x4b61680e devlink_param_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4b631f55 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x4b71d6a0 __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL vmlinux 0x4b71ec3d nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL vmlinux 0x4b7a088a rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x4b7cfdb7 __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL vmlinux 0x4b817baa yield_to -EXPORT_SYMBOL_GPL vmlinux 0x4b8ab8d9 of_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x4b8b29ad of_genpd_parse_idle_states -EXPORT_SYMBOL_GPL vmlinux 0x4b8b4025 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x4b8b7795 snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x4b969121 __fput_sync -EXPORT_SYMBOL_GPL vmlinux 0x4bac2857 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init -EXPORT_SYMBOL_GPL vmlinux 0x4bcbe3c6 dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4bdecc94 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL vmlinux 0x4be4dd5e snd_soc_component_compr_get_caps -EXPORT_SYMBOL_GPL vmlinux 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL vmlinux 0x4bf0afca drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL vmlinux 0x4bf3650f rndis_rm_hdr -EXPORT_SYMBOL_GPL vmlinux 0x4bf444ba rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4bf6fc98 tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0x4c0aa1e5 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4c120fda genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x4c143fe1 trace_array_init_printk -EXPORT_SYMBOL_GPL vmlinux 0x4c1710dc devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x4c232d92 rpc_release_client -EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0x4c2e07b9 acpi_cppc_processor_exit -EXPORT_SYMBOL_GPL vmlinux 0x4c3a6c83 ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4c3fa4cf nfs_mark_client_ready -EXPORT_SYMBOL_GPL vmlinux 0x4c4150d5 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x4c4dded9 ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0x4c4e7158 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c5f2871 tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x4c6c730b scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x4c83dcb8 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x4c87e2b5 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition -EXPORT_SYMBOL_GPL vmlinux 0x4c91503b pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x4ca7c765 dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0x4cacf153 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x4cad138e pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0x4caee394 regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL vmlinux 0x4cbecb03 i2c_mux_add_adapter -EXPORT_SYMBOL_GPL vmlinux 0x4cc699bb nfs_unlink -EXPORT_SYMBOL_GPL vmlinux 0x4cd356f0 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x4cd56d6d snd_soc_component_write -EXPORT_SYMBOL_GPL vmlinux 0x4ce6c319 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x4cf0d754 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0x4cf6ca51 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL vmlinux 0x4cfecdf1 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x4cff9cd0 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4cffbe66 phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d011ee9 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL vmlinux 0x4d0b752f alloc_iova -EXPORT_SYMBOL_GPL vmlinux 0x4d117240 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x4d18822f percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x4d1d2436 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x4d1dc983 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x4d1dcc70 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x4d23dfb7 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x4d272e08 pinmux_generic_get_function_groups -EXPORT_SYMBOL_GPL vmlinux 0x4d279aa6 bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0x4d2b90e2 xlnx_bridge_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4d2d0dfb drm_gem_cma_get_sg_table -EXPORT_SYMBOL_GPL vmlinux 0x4d2e4c19 ubi_close_volume -EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d58ca80 rpc_run_task -EXPORT_SYMBOL_GPL vmlinux 0x4d5d7f3e phy_set_speed -EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get -EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d7f7350 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4d8a96ab xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0x4d8c08eb zynqmp_pm_request_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4d93951d unix_domain_find -EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x4d98de24 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0x4da1f4a7 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4dbb2b06 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x4dbecd01 hid_match_device -EXPORT_SYMBOL_GPL vmlinux 0x4dc2dfd0 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x4dce7dd4 iio_format_value -EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4ded4472 fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0x4dfc24a9 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x4e1457de pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4e1c13bf nfs4_label_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4e1cbff4 perf_event_period -EXPORT_SYMBOL_GPL vmlinux 0x4e1f2823 snd_soc_bytes_get -EXPORT_SYMBOL_GPL vmlinux 0x4e3059a9 nand_read_page_hwecc_oob_first -EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL vmlinux 0x4e40e4dd usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4e50bc4b serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4e6996db xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0x4e6b8e00 virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x4e819e5c __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x4e8b42d0 media_device_delete -EXPORT_SYMBOL_GPL vmlinux 0x4e8ca557 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL vmlinux 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL vmlinux 0x4e9274c3 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x4e96a324 i2c_acpi_find_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0x4e992300 nfs_clone_server -EXPORT_SYMBOL_GPL vmlinux 0x4ea4a96b cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4eadff8a vb2_mmap -EXPORT_SYMBOL_GPL vmlinux 0x4eb01232 nand_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x4ebe7ecb page_cache_ra_unbounded -EXPORT_SYMBOL_GPL vmlinux 0x4ec3f955 trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4ed2996e dw8250_setup_port -EXPORT_SYMBOL_GPL vmlinux 0x4ed76b43 spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4edfa40a serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0x4eec11ba powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0x4eee2708 devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4efda070 led_set_brightness_nopm -EXPORT_SYMBOL_GPL vmlinux 0x4eff989a xprt_unregister_transport -EXPORT_SYMBOL_GPL vmlinux 0x4f01ec64 hid_hw_start -EXPORT_SYMBOL_GPL vmlinux 0x4f0c00fd __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL vmlinux 0x4f14d3f8 hid_dump_device -EXPORT_SYMBOL_GPL vmlinux 0x4f19ab93 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x4f20ad67 scmi_protocol_register -EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update -EXPORT_SYMBOL_GPL vmlinux 0x4f28c338 __put_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4f3e69b6 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4f45c092 zynqmp_pm_get_qos -EXPORT_SYMBOL_GPL vmlinux 0x4f52d8dc fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0x4f663414 nfs_scan_commit_list -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 0x4f7c082c tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0x4f83016e con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0x4f88d26f clk_hw_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x4f8f3c8c tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fbb4911 __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL vmlinux 0x4fbe75a9 kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0x4fbf9338 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x4fd9d4cf of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fddf820 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x4fdf5540 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fe612e4 regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4fea19d3 ahci_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x4fef9435 genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0x4ff8cdef msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0x4ffd16d7 blk_poll -EXPORT_SYMBOL_GPL vmlinux 0x4ffe3bd2 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x50101392 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x5010b844 __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0x501c8589 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x50277a0d usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x502996fa snd_soc_link_compr_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x5033d2f9 cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x50573b29 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x5069fad0 sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0x506ab3a9 usb_ep_queue -EXPORT_SYMBOL_GPL vmlinux 0x507a61d3 wakeup_sources_walk_start -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x509ac647 hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0x50a856bc bpf_map_inc_with_uref -EXPORT_SYMBOL_GPL vmlinux 0x50a87aa7 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x50ad65c2 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x50b824ca __vfs_setxattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL vmlinux 0x50c06d73 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL vmlinux 0x50c496a1 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x50d1612e mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x50dabc2f mtd_table_mutex -EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50ea95c4 trace_array_put -EXPORT_SYMBOL_GPL vmlinux 0x50ec9d0f pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x50f4263a mtd_unpoint -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x51127e20 ethnl_cable_test_result -EXPORT_SYMBOL_GPL vmlinux 0x511ffc17 zynqmp_pm_afi -EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x514b3126 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x514d0efe scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x515861f3 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x515db62c kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x51775dcd gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL vmlinux 0x5192d6db srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x51949548 cdrom_read_tocentry -EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51b5f27b platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x51b8815a dbs_update -EXPORT_SYMBOL_GPL vmlinux 0x51c2c2ff security_file_permission -EXPORT_SYMBOL_GPL vmlinux 0x51c62417 crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler -EXPORT_SYMBOL_GPL vmlinux 0x51d3e397 shake_page -EXPORT_SYMBOL_GPL vmlinux 0x51d482fa __traceiter_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x51d931a5 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x51dd4905 tda9887_attach -EXPORT_SYMBOL_GPL vmlinux 0x51e8627c blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0x51fc9a6d xenmem_reservation_decrease -EXPORT_SYMBOL_GPL vmlinux 0x520764f9 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x520bb77e sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0x5210c6fb devres_get -EXPORT_SYMBOL_GPL vmlinux 0x521364fa wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x52189def component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x521a4503 loop_backing_file -EXPORT_SYMBOL_GPL vmlinux 0x522030af user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x522dd016 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x523615cc clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x5245f14f ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x524a7168 iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x526f3636 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x52784722 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0x527ba2d0 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x528706c4 usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0x52877a99 pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x52926345 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x52996f01 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x529a29ca rpc_get_sb_net -EXPORT_SYMBOL_GPL vmlinux 0x529ce17f pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x52ad8275 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags -EXPORT_SYMBOL_GPL vmlinux 0x52bb30a3 tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0x52c08df4 nfs_umount_begin -EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x52c721e8 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x52cc7272 vp_modern_set_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x52ce2057 hv_setup_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52d7f045 iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0x52f4e9a3 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x53103c6b skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0x5317c8d2 to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0x531989d7 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x531c9611 fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0x5321d3d6 sbitmap_get -EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x5331f15b sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x533c198f __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL vmlinux 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL vmlinux 0x5345a3ef rndis_signal_connect -EXPORT_SYMBOL_GPL vmlinux 0x53483bdc debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x534d2650 zynqmp_pm_get_uid_info -EXPORT_SYMBOL_GPL vmlinux 0x53562a1d efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0x5358342e skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x535a0bd3 of_platform_device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x5375310a sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0x537bc753 microtune_attach -EXPORT_SYMBOL_GPL vmlinux 0x537e9eb9 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0x5386422f ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL vmlinux 0x5391f2c7 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x53a10f56 pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0x53a6ce14 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x53b711f9 regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x53baa3be clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x53bdc378 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0x53cc1d15 power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x53ceaaac crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x53d00b4c pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x53d63a12 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x53ddaa7e find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x53de8a69 genpd_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x53e187ea pm_clk_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x53ef3126 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x54009d37 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x540a6032 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x5420da84 __clk_hw_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x54320501 gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0x543ca492 i2c_acpi_client_count -EXPORT_SYMBOL_GPL vmlinux 0x5447685f devm_spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x545263f8 xvip_enum_frame_size -EXPORT_SYMBOL_GPL vmlinux 0x5461e81b vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x54656591 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x5466c871 zynqmp_pm_reset_get_status -EXPORT_SYMBOL_GPL vmlinux 0x546e72c8 of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0x546e7a45 af_alg_make_sg -EXPORT_SYMBOL_GPL vmlinux 0x546ff654 apply_to_existing_page_range -EXPORT_SYMBOL_GPL vmlinux 0x547b339d rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL vmlinux 0x548952d4 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0x548ebedb kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x5493bd23 bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x549dc4b3 phylink_fwnode_phy_connect -EXPORT_SYMBOL_GPL vmlinux 0x54ab04ce zynqmp_pm_request_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x54afd1e2 drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL vmlinux 0x54d05107 xen_xenbus_fops -EXPORT_SYMBOL_GPL vmlinux 0x54ec82ce pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x54f2d1cb fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x550600a1 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x55111aae xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0x5516049a rpc_task_timeout -EXPORT_SYMBOL_GPL vmlinux 0x551e7809 rpc_switch_client_transport -EXPORT_SYMBOL_GPL vmlinux 0x552695d0 __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0x5528403f aie_partition_get_freq_req -EXPORT_SYMBOL_GPL vmlinux 0x552f286b thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput -EXPORT_SYMBOL_GPL vmlinux 0x5538add5 drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5551c469 cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5552cfe5 xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0x556ba16d __traceiter_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL vmlinux 0x556db3ea extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x55799919 get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0x557cbae8 dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x558bf104 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x5594a677 __media_remove_intf_link -EXPORT_SYMBOL_GPL vmlinux 0x55956de6 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0x55965bf9 regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x55976cd2 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL vmlinux 0x5598b089 of_pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x559cef3d __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x559f189c dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x55a1992f irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x55a300e1 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x55a98608 zynqmp_pm_bbram_zeroize -EXPORT_SYMBOL_GPL vmlinux 0x55aa523d fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0x55b8a5c3 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -EXPORT_SYMBOL_GPL vmlinux 0x55c9880c zynqmp_pm_release_node -EXPORT_SYMBOL_GPL vmlinux 0x55d32237 dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x55e6700b switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x5602cc80 xen_xlate_unmap_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x560b46b5 fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0x5612deab rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x5618a78d sdhci_end_tuning -EXPORT_SYMBOL_GPL vmlinux 0x56215e13 gserial_connect -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x5632b6eb PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x5632e63d nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL vmlinux 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL vmlinux 0x563f04fa spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x564f85da perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0x566140b8 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x5665ba70 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x5669033a nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL vmlinux 0x567f54e7 vb2_core_poll -EXPORT_SYMBOL_GPL vmlinux 0x568add7f skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x5693d9c7 nfs_pageio_init_read -EXPORT_SYMBOL_GPL vmlinux 0x56a9285b ahci_platform_resume_host -EXPORT_SYMBOL_GPL vmlinux 0x56b7a011 fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0x56c0253a genphy_c45_read_mdix -EXPORT_SYMBOL_GPL vmlinux 0x56c48c6d nfs_dentry_operations -EXPORT_SYMBOL_GPL vmlinux 0x56c524ca devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0x56c55578 of_reserved_mem_lookup -EXPORT_SYMBOL_GPL vmlinux 0x56d7e66e iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x56e3e788 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x56e5bf7f acpi_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x56e9777d v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL vmlinux 0x56ef7a9a auxiliary_find_device -EXPORT_SYMBOL_GPL vmlinux 0x56fb4c0a blk_next_bio -EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x57072e96 led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x57215ccd scsi_host_block -EXPORT_SYMBOL_GPL vmlinux 0x57235827 of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x572781e2 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x5727e704 rpc_peeraddr2str -EXPORT_SYMBOL_GPL vmlinux 0x572ca5e9 platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0x57382ad1 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x573eca99 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL vmlinux 0x574208fb query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0x57476d7a cfi_cmdset_0003 -EXPORT_SYMBOL_GPL vmlinux 0x575a48f2 rpc_sleep_on -EXPORT_SYMBOL_GPL vmlinux 0x576420b4 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x576c89a2 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x576f01fc gserial_suspend -EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x57727285 phylink_ethtool_set_eee -EXPORT_SYMBOL_GPL vmlinux 0x57732438 inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x57743900 media_entity_pads_init -EXPORT_SYMBOL_GPL vmlinux 0x577e11d9 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL vmlinux 0x579206ab spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x579fb3ef hid_ignore -EXPORT_SYMBOL_GPL vmlinux 0x57a3b4dc edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x57b09fd2 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x57d2ae56 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index -EXPORT_SYMBOL_GPL vmlinux 0x57dc86b2 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x57f8e14c fwnode_get_phy_node -EXPORT_SYMBOL_GPL vmlinux 0x5804b74f shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x58134869 extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x5819697f usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id -EXPORT_SYMBOL_GPL vmlinux 0x582d8b4c component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x5836263e svc_generic_init_request -EXPORT_SYMBOL_GPL vmlinux 0x584361b7 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x5849d733 dev_pm_genpd_resume -EXPORT_SYMBOL_GPL vmlinux 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL vmlinux 0x584c0646 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x584ef0c1 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x5879e805 badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0x5889422f fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x5899a8ff thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x589d171e is_dock_device -EXPORT_SYMBOL_GPL vmlinux 0x58a1028d nand_reset_op -EXPORT_SYMBOL_GPL vmlinux 0x58a9c6d2 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x58b0110a pnfs_destroy_layout -EXPORT_SYMBOL_GPL vmlinux 0x58b0a3b8 devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0x58c4f9b0 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL vmlinux 0x58d64ba8 dev_pm_opp_put_clkname -EXPORT_SYMBOL_GPL vmlinux 0x58d6ed5e nfs_access_zap_cache -EXPORT_SYMBOL_GPL vmlinux 0x58dc2703 of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op -EXPORT_SYMBOL_GPL vmlinux 0x58f0260e pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0x58ff0157 drm_bridge_connector_disable_hpd -EXPORT_SYMBOL_GPL vmlinux 0x5904258d init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x5910736d crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5917c516 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x5923feec pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL vmlinux 0x592560e1 v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL vmlinux 0x59390ad1 hid_parse_report -EXPORT_SYMBOL_GPL vmlinux 0x593e6b9a to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x594f88ef fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0x59572a03 iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0x59724cf8 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5986401d screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x59895789 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x598cdc72 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x598d318d sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0x598d5c2d fb_sys_write -EXPORT_SYMBOL_GPL vmlinux 0x59923eb3 __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL vmlinux 0x59a4c173 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x59acce3b mmu_interval_notifier_remove -EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59b5685d scsi_host_unblock -EXPORT_SYMBOL_GPL vmlinux 0x59c22bea pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x59cd7ecc acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0x59ce5554 nfs_ssc_client_tbl -EXPORT_SYMBOL_GPL vmlinux 0x59d5e334 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x59e0695d phylink_speed_down -EXPORT_SYMBOL_GPL vmlinux 0x59e36662 devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns -EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm -EXPORT_SYMBOL_GPL vmlinux 0x59f36aa8 dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0x5a09cc45 put_device -EXPORT_SYMBOL_GPL vmlinux 0x5a0cf9a6 receive_fd -EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x5a162d5e led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x5a1b2492 kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0x5a1c7abd class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle -EXPORT_SYMBOL_GPL vmlinux 0x5a1e84b9 led_classdev_notify_brightness_hw_changed -EXPORT_SYMBOL_GPL vmlinux 0x5a357de7 pci_host_common_probe -EXPORT_SYMBOL_GPL vmlinux 0x5a39a3b8 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x5a3dfc43 of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x5a426c6c find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL vmlinux 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a4dbaad devm_fpga_mgr_register -EXPORT_SYMBOL_GPL vmlinux 0x5a541896 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL vmlinux 0x5a5d1e19 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL vmlinux 0x5a65eeaf max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a73fad7 spi_bitbang_init -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a88d664 sched_setattr_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x5a8c6de4 of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0x5a998140 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x5aa36fc2 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware -EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5ab57a26 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL vmlinux 0x5ab7ce06 md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x5abeeee1 fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x5acdf525 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL vmlinux 0x5ad09b89 usb_pipe_type_check -EXPORT_SYMBOL_GPL vmlinux 0x5ae563f1 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x5ae98eba pci_iov_virtfn_devfn -EXPORT_SYMBOL_GPL vmlinux 0x5af762f1 snd_fasync_free -EXPORT_SYMBOL_GPL vmlinux 0x5af94c70 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5affe1bf svc_create_pooled -EXPORT_SYMBOL_GPL vmlinux 0x5b12addc pinctrl_generic_add_group -EXPORT_SYMBOL_GPL vmlinux 0x5b201d7a pci_epc_multi_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b27d545 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x5b29eae9 svc_encode_result_payload -EXPORT_SYMBOL_GPL vmlinux 0x5b2bb7f7 hid_open_report -EXPORT_SYMBOL_GPL vmlinux 0x5b42cfeb lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0x5b47d7c4 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x5b4a505b blk_mq_virtio_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x5b521b26 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x5b5b9034 snd_card_disconnect_sync -EXPORT_SYMBOL_GPL vmlinux 0x5b5c0273 __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b73f97c show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x5b8684dc virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x5b976392 kvm_get_running_vcpu -EXPORT_SYMBOL_GPL vmlinux 0x5bb297d6 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x5bc0743f fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x5bc0e2f7 crypto_create_tfm_node -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 0x5be07ab8 drm_do_get_edid -EXPORT_SYMBOL_GPL vmlinux 0x5be5bef6 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL vmlinux 0x5c0bf7b9 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x5c0f77ce HYPERVISOR_platform_op_raw -EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action -EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x5c3f3058 usb_get_function -EXPORT_SYMBOL_GPL vmlinux 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params -EXPORT_SYMBOL_GPL vmlinux 0x5c42b235 pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0x5c49e475 dw_pcie_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0x5c61c805 regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x5c690a72 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x5c699441 xfrm_aalg_get_byid -EXPORT_SYMBOL_GPL vmlinux 0x5c6c9f0b xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0x5c6f4520 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x5c709646 bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x5c85783c inet6_sock_destruct -EXPORT_SYMBOL_GPL vmlinux 0x5c8861dc crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x5c889a71 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x5c912f27 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x5c9f79c1 mmc_send_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0x5ca4d9b5 gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x5ca9b09f __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5cb479a4 nvdimm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x5cbfdc73 rpc_localaddr -EXPORT_SYMBOL_GPL vmlinux 0x5cc24e8d virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x5cdd2c9a usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x5cddc163 svc_find_xprt -EXPORT_SYMBOL_GPL vmlinux 0x5ce35c1e crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5cedf605 usb_get_maximum_ssp_rate -EXPORT_SYMBOL_GPL vmlinux 0x5cf2e2c2 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x5cf62aa7 fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x5cff9a64 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x5d05f872 is_swiotlb_active -EXPORT_SYMBOL_GPL vmlinux 0x5d0c4dcc phylink_speed_up -EXPORT_SYMBOL_GPL vmlinux 0x5d0ef4e0 xprt_add_backlog -EXPORT_SYMBOL_GPL vmlinux 0x5d0fb149 pcie_aspm_capable -EXPORT_SYMBOL_GPL vmlinux 0x5d146d4f usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write -EXPORT_SYMBOL_GPL vmlinux 0x5d1a12d0 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x5d2238ad simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek -EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm -EXPORT_SYMBOL_GPL vmlinux 0x5d2ca8b0 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x5d2d608e led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0x5d32e5e7 ubi_open_volume_path -EXPORT_SYMBOL_GPL vmlinux 0x5d49f8b1 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x5d54c11a md_stop -EXPORT_SYMBOL_GPL vmlinux 0x5d617c24 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x5d62f054 pci_status_get_and_clear_errors -EXPORT_SYMBOL_GPL vmlinux 0x5d633a06 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x5d75cfdb rpc_peeraddr -EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5d931c51 of_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x5da3298c dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5da77966 mtd_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5dab7bc3 virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x5dcae86d gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x5ddff814 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL vmlinux 0x5de4ee63 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x5de68585 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x5dedc9d9 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL vmlinux 0x5df21da4 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL vmlinux 0x5dfcfe95 tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e198552 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x5e1a5929 gss_mech_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5e44c5ff kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x5e4c88d8 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e522ab8 acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x5e574e51 pcie_reset_flr -EXPORT_SYMBOL_GPL vmlinux 0x5e5ccc8c __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0x5e632124 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5e93d46d ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x5e9646f4 nfs_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x5e9ace1e kvm_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0x5ea1cff6 v4l2_fh_open -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 0x5ebc83a7 dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0x5ebf3a68 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL vmlinux 0x5ec3bdab regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x5eec1f21 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x5ef2cc10 vb2_request_queue -EXPORT_SYMBOL_GPL vmlinux 0x5ef63110 devres_find -EXPORT_SYMBOL_GPL vmlinux 0x5f0262ed usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x5f02c450 devm_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x5f08dd7b platform_get_mem_or_io -EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f27fa1e strp_stop -EXPORT_SYMBOL_GPL vmlinux 0x5f2882a6 __traceiter_block_split -EXPORT_SYMBOL_GPL vmlinux 0x5f38798d __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5f5ab742 spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0x5f64cf31 drm_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0x5f68eeba edac_mc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5f6951c3 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f7711f1 __media_remove_intf_links -EXPORT_SYMBOL_GPL vmlinux 0x5f7ea4d3 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x5f833b13 media_request_object_bind -EXPORT_SYMBOL_GPL vmlinux 0x5f92b7e9 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point -EXPORT_SYMBOL_GPL vmlinux 0x5fb2f1bc tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start -EXPORT_SYMBOL_GPL vmlinux 0x5fbf597b kvm_vcpu_map -EXPORT_SYMBOL_GPL vmlinux 0x5fc294ef usb_ep_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x5fd1535a simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x5fd36321 genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x5fed2613 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5fee2336 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x60069ee1 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x600d4853 serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0x600d8d6a mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x6028ab8a kvm_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x60290a74 xprt_request_get_cong -EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem -EXPORT_SYMBOL_GPL vmlinux 0x6042a561 regulator_set_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x60442822 phys_to_mach -EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x604c2734 xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0x605044ff snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL vmlinux 0x60524263 iomap_migrate_page -EXPORT_SYMBOL_GPL vmlinux 0x6052dd7c clk_hw_register_composite -EXPORT_SYMBOL_GPL vmlinux 0x605d5bfa cache_line_size -EXPORT_SYMBOL_GPL vmlinux 0x60634f72 strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x607c523f deregister_mtd_parser -EXPORT_SYMBOL_GPL vmlinux 0x6080bf62 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL vmlinux 0x60909f6e stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x6096e19e spi_nor_restore -EXPORT_SYMBOL_GPL vmlinux 0x609f9e2c blkdev_zone_mgmt -EXPORT_SYMBOL_GPL vmlinux 0x609ff385 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x60a09f44 hid_dump_report -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a1c2ba rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60bad671 crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x60c09d47 inode_dax -EXPORT_SYMBOL_GPL vmlinux 0x60d39594 pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0x60d8fed9 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x60db48f5 gserial_get_console -EXPORT_SYMBOL_GPL vmlinux 0x60dbc124 blk_ksm_intersect_modes -EXPORT_SYMBOL_GPL vmlinux 0x60e5c84a usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x60ea48a0 gs_free_req -EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf -EXPORT_SYMBOL_GPL vmlinux 0x610302df devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x610ace91 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x6114dc62 xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0x61170e8a tpm_tis_core_init -EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x611eb244 mmu_interval_notifier_insert -EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x612b69d8 irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x612ce264 __traceiter_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0x612ddce5 v4l2_fwnode_connector_free -EXPORT_SYMBOL_GPL vmlinux 0x613662b0 nfs_pgheader_init -EXPORT_SYMBOL_GPL vmlinux 0x613b11a1 devm_serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x61462395 __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0x61490198 fscrypt_set_bio_crypt_ctx -EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all -EXPORT_SYMBOL_GPL vmlinux 0x6159eab2 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0x61704b8c blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x617621e3 security_path_symlink -EXPORT_SYMBOL_GPL vmlinux 0x617b026c hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x61891e9b dvb_module_release -EXPORT_SYMBOL_GPL vmlinux 0x618a98e1 fpga_region_program_fpga -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 0x61ae1d2d xas_pause -EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x61d185d0 __traceiter_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x61df3b2a sched_trace_rq_avg_dl -EXPORT_SYMBOL_GPL vmlinux 0x61dfadf7 get_device -EXPORT_SYMBOL_GPL vmlinux 0x61e7391a nanddev_erase -EXPORT_SYMBOL_GPL vmlinux 0x61ef2078 __v4l2_async_notifier_add_subdev -EXPORT_SYMBOL_GPL vmlinux 0x61f10293 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x62024798 dev_pm_opp_get_required_pstate -EXPORT_SYMBOL_GPL vmlinux 0x62104126 phylink_ethtool_set_wol -EXPORT_SYMBOL_GPL vmlinux 0x621de540 xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x6223d4ec register_mtd_blktrans -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule -EXPORT_SYMBOL_GPL vmlinux 0x623972ac nfs_initiate_pgio -EXPORT_SYMBOL_GPL vmlinux 0x623af1d9 media_request_object_put -EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get -EXPORT_SYMBOL_GPL vmlinux 0x62580a3e __traceiter_vb2_qbuf -EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x6271fce0 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x627e4d79 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x628db9a2 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x629329e7 dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x62966a6e device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x62995547 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x629ed0c0 badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0x62b5eed9 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62bed9af acpi_subsys_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x62cd9670 xlnx_drm_pipeline_exit -EXPORT_SYMBOL_GPL vmlinux 0x62ce0462 pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0x62cf2ab6 do_truncate -EXPORT_SYMBOL_GPL vmlinux 0x62dec37e mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x62e70a01 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x62ef2328 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x62f0ac58 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL vmlinux 0x630071f7 of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x6300c193 v4l2_device_put -EXPORT_SYMBOL_GPL vmlinux 0x630b24d3 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL vmlinux 0x6314bd02 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x631ec1a5 devlink_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6320a03b wakeup_sources_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x63247bc9 nfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x632dbd01 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x63723d48 bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x637caaea virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x63983e41 fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0x6399e9f8 fpga_bridge_enable -EXPORT_SYMBOL_GPL vmlinux 0x639d9c1b governor_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x63a138f2 fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x63acea2b power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x63b6df0f devm_clk_get_optional_prepared -EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63c240c0 icc_set_tag -EXPORT_SYMBOL_GPL vmlinux 0x63c3231a perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x63d02754 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0x63d32d9e balloon_aops -EXPORT_SYMBOL_GPL vmlinux 0x63dff24e vb2_queue_init -EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63f72f22 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x63fa46c8 dvb_create_media_graph -EXPORT_SYMBOL_GPL vmlinux 0x641d25f7 smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x6424460c xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x643b06b0 zynqmp_pm_clock_setrate -EXPORT_SYMBOL_GPL vmlinux 0x64428c30 aie_free_errors -EXPORT_SYMBOL_GPL vmlinux 0x64465cb8 devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x64496432 kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x64650f82 switchdev_bridge_port_unoffload -EXPORT_SYMBOL_GPL vmlinux 0x646d965e mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6478a4b3 xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x64805cbe anon_inode_getfd_secure -EXPORT_SYMBOL_GPL vmlinux 0x648a7919 __put_net -EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x649892e8 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0x64aaca0e scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x64afd6af generic_device_group -EXPORT_SYMBOL_GPL vmlinux 0x64b71173 reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0x64ba465e encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x64bc23fb of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0x64c49a79 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x64d3cc4e xas_load -EXPORT_SYMBOL_GPL vmlinux 0x64d55569 acpi_device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x64debf64 hidraw_connect -EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete -EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x6506c06c hid_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x65222996 ahci_do_softreset -EXPORT_SYMBOL_GPL vmlinux 0x6529b092 phylink_of_phy_connect -EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x6531bb09 ubi_open_volume -EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x65600e97 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x656d86d6 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x65797f47 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x658179bc dax_layout_busy_page -EXPORT_SYMBOL_GPL vmlinux 0x6588a2b9 spi_controller_dma_map_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x65aa02c6 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x65b6169b usbnet_cdc_bind -EXPORT_SYMBOL_GPL vmlinux 0x65bbdb79 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x65c0ffe9 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x65c54521 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65d58723 uio_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x65d9cd39 nf_queue_entry_free -EXPORT_SYMBOL_GPL vmlinux 0x65da46bb vp_modern_get_features -EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache -EXPORT_SYMBOL_GPL vmlinux 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL vmlinux 0x6603ef46 wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x6605245b netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x660b6440 nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x660dfe9a xprt_wake_up_backlog -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x661fc45c snd_soc_dapm_init -EXPORT_SYMBOL_GPL vmlinux 0x66266ba0 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL vmlinux 0x66291cd5 nanddev_ecc_engine_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x662d4e44 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x66480dfc serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x66488a84 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x664e105b of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x66546198 media_entity_remove_links -EXPORT_SYMBOL_GPL vmlinux 0x66594753 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x666e7e86 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x666f358f devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x6683b7ad pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x66a67010 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL vmlinux 0x66a964df dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0x66b1317f net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66bfa707 sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x66cd3982 tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x66d29655 devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x66ef4842 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x66f5dfe7 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL vmlinux 0x66ffa693 device_driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x6700f680 bio_iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0x67013be0 pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0x67064481 icc_nodes_remove -EXPORT_SYMBOL_GPL vmlinux 0x6711a3c7 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x6711c8cb fpga_mgr_load -EXPORT_SYMBOL_GPL vmlinux 0x67250a3c tpm2_get_cc_attrs_tbl -EXPORT_SYMBOL_GPL vmlinux 0x67354072 gether_get_host_addr_cdc -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 0x67439741 ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x6749aa78 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x674abc22 __alloc_pages_bulk -EXPORT_SYMBOL_GPL vmlinux 0x674fd44e class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x67627332 gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0x677065d8 vb2_discard_done -EXPORT_SYMBOL_GPL vmlinux 0x67738571 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x67831f1d regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x678e6ea4 nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x679dc6eb pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0x67a7dabb devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0x67ac152a mctrl_gpio_init -EXPORT_SYMBOL_GPL vmlinux 0x67c8d8b1 is_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x67d050a0 cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x67d5504e __traceiter_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67ef056c validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0x681cc043 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x6831eccf phylink_ethtool_ksettings_get -EXPORT_SYMBOL_GPL vmlinux 0x68423ce6 edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0x684880ad pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x684ca117 zynqmp_pm_get_pll_frac_mode -EXPORT_SYMBOL_GPL vmlinux 0x685ab9ce of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x686e4892 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL vmlinux 0x687eb369 bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0x688003ca iomap_ioend_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x6895df34 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x6896a90d devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x68999a78 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x689bb41c snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0x689e09fe switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x68ac289a efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0x68bdc288 fscrypt_mergeable_bio_bh -EXPORT_SYMBOL_GPL vmlinux 0x68c161c1 snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL vmlinux 0x68cd1f66 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x68cf6829 irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0x68cfe91f rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL vmlinux 0x68d2be29 dev_pm_opp_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x68d5ef05 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x68dd05b4 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x68eb6804 gether_set_dev_addr -EXPORT_SYMBOL_GPL vmlinux 0x68f13094 xilinx_xdma_drm_config -EXPORT_SYMBOL_GPL vmlinux 0x68f14ba2 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x68f18246 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x68f21c1a devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x6908555d __snd_seq_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x690a2e0f cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x6912d5bf csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL vmlinux 0x6923ce88 dmaengine_desc_set_metadata_len -EXPORT_SYMBOL_GPL vmlinux 0x6927377f __media_pipeline_stop -EXPORT_SYMBOL_GPL vmlinux 0x6928caaa sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL vmlinux 0x6956d977 pinconf_generic_parse_dt_config -EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init -EXPORT_SYMBOL_GPL vmlinux 0x69755b2c phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6983b8e4 kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0x698cf214 nfs_clear_inode -EXPORT_SYMBOL_GPL vmlinux 0x698edfc3 zynqmp_pm_set_gem_config -EXPORT_SYMBOL_GPL vmlinux 0x6991301c mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x699473f4 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x69a10b1a fpga_mgr_unlock -EXPORT_SYMBOL_GPL vmlinux 0x69ac9555 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x69b8cbff pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x69c35ea2 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr -EXPORT_SYMBOL_GPL vmlinux 0x69d252a7 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL vmlinux 0x69df2280 acct_bioset_init -EXPORT_SYMBOL_GPL vmlinux 0x69e5f39a amba_device_add -EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen -EXPORT_SYMBOL_GPL vmlinux 0x69e70d55 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x69e9be9a inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high -EXPORT_SYMBOL_GPL vmlinux 0x6a03ebee regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a05c54d kvm_vcpu_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x6a096653 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x6a0c0673 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x6a147507 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6a14a4ec nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a1ed8b3 irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x6a29e5d2 irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0x6a2de036 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL vmlinux 0x6a2e779c device_phy_find_device -EXPORT_SYMBOL_GPL vmlinux 0x6a320595 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue -EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x6a48c1e5 ata_ncq_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x6a49dd94 ptp_parse_header -EXPORT_SYMBOL_GPL vmlinux 0x6a4b6f15 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a5de0dd regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x6a61e550 iio_channel_release -EXPORT_SYMBOL_GPL vmlinux 0x6a622105 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x6a7dc233 iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0x6a7e5975 devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a93c9b2 zynqmp_pm_pinctrl_get_function -EXPORT_SYMBOL_GPL vmlinux 0x6a9467f2 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf -EXPORT_SYMBOL_GPL vmlinux 0x6aa92be1 of_remove_property -EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x6ab42175 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0x6ac6cb27 vb2_fop_read -EXPORT_SYMBOL_GPL vmlinux 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL vmlinux 0x6ad1238e mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x6adb4c22 devm_mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x6af9764b clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b11507e max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x6b1657f8 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors -EXPORT_SYMBOL_GPL vmlinux 0x6b1c0d25 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x6b2b62af svc_drop -EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b307add v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL vmlinux 0x6b35bbd9 cec_notifier_conn_register -EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0x6b3d41cc crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0x6b4045ee zynqmp_pm_get_api_version -EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b4a5e92 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x6b5d4b50 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x6b60fbdd vb2_fop_write -EXPORT_SYMBOL_GPL vmlinux 0x6b70aa2d fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x6b70eead md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x6b76805e clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b874f78 is_software_node -EXPORT_SYMBOL_GPL vmlinux 0x6b88c345 dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0x6b8abfff devm_clk_get_optional_enabled -EXPORT_SYMBOL_GPL vmlinux 0x6b8de323 hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x6ba85644 kvm_read_guest_offset_cached -EXPORT_SYMBOL_GPL vmlinux 0x6bb8d393 devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x6bc4dd9e tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x6bcd7290 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init -EXPORT_SYMBOL_GPL vmlinux 0x6bd13e86 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save -EXPORT_SYMBOL_GPL vmlinux 0x6bd52dbd pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake -EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0x6c0afd54 debug_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x6c137d76 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print -EXPORT_SYMBOL_GPL vmlinux 0x6c2131e1 iio_read_channel_scale -EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data -EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6c408132 xilinx_xdma_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c4c2912 drmm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x6c585b0f gether_set_host_addr -EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x6c61cfa5 acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c6d9545 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x6c7f19d6 mark_page_dirty_in_slot -EXPORT_SYMBOL_GPL vmlinux 0x6c825859 ffs_lock -EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x6c9de30f input_class -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca6eb1d rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x6cab2b9b usbnet_get_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x6cbb9574 vb2_prepare_buf -EXPORT_SYMBOL_GPL vmlinux 0x6cc29400 irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x6cce3168 devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0x6ccf3f84 rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x6cd8157e xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0x6ce10eb0 trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL vmlinux 0x6ceee132 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x6cf15268 fwnode_get_parent -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 0x6d13f6fb serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0x6d1586e4 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x6d16fa5e crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0x6d27ccf2 phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x6d2bd3ec dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d302ecf clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0x6d30d473 ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x6d34d963 u_audio_stop_capture -EXPORT_SYMBOL_GPL vmlinux 0x6d356afe efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x6d44b440 of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit -EXPORT_SYMBOL_GPL vmlinux 0x6d4fa5a1 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x6d5e3a57 do_splice_from -EXPORT_SYMBOL_GPL vmlinux 0x6d670728 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d811ac0 ubi_leb_read_sg -EXPORT_SYMBOL_GPL vmlinux 0x6d97e190 iommu_device_unlink -EXPORT_SYMBOL_GPL vmlinux 0x6d9dc01a ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x6daf547d unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x6db55dac devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6df69767 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0x6df7564a regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0x6df8c34e nand_ecc_tweak_req -EXPORT_SYMBOL_GPL vmlinux 0x6e03accf devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0x6e0d2d42 fsg_common_set_cdev -EXPORT_SYMBOL_GPL vmlinux 0x6e0f7f85 __vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x6e1172ee ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x6e12f365 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL vmlinux 0x6e1d4505 gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0x6e241e19 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x6e3bf831 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e435d27 vfs_inode_has_locks -EXPORT_SYMBOL_GPL vmlinux 0x6e4971f3 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free -EXPORT_SYMBOL_GPL vmlinux 0x6e4f105e sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x6e60f03f snd_devm_card_new -EXPORT_SYMBOL_GPL vmlinux 0x6e68fc8f debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e7bbd26 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL vmlinux 0x6e848b0e of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0x6e882c70 regulator_get_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e9998b6 bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0x6e9acc41 v4l2_fill_pixfmt_mp -EXPORT_SYMBOL_GPL vmlinux 0x6ea0f468 usb_of_get_companion_dev -EXPORT_SYMBOL_GPL vmlinux 0x6ea17fae handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ec15860 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x6ee207aa __traceiter_pelt_rt_tp -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 0x6f050e55 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f12a3e2 xvip_clr_or_set -EXPORT_SYMBOL_GPL vmlinux 0x6f1d47ac badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f2f4069 devlink_trap_policers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6f426a9e power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x6f480fe0 rpc_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6f510cea regulator_set_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6f517012 devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x6f58a582 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x6f596102 of_mm_gpiochip_add_data -EXPORT_SYMBOL_GPL vmlinux 0x6f64f47a call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x6f6f69a8 __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x6f7c3129 dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f94807c sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x6f95bb84 sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0x6f96768b devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6fa1ce9d nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL vmlinux 0x6fa37de5 screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0x6fa426d2 phylink_ethtool_nway_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fb1807f xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x6fb396a2 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x6fb7bce4 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL vmlinux 0x6fc190f0 dvb_module_probe -EXPORT_SYMBOL_GPL vmlinux 0x6fc84f22 fb_sys_read -EXPORT_SYMBOL_GPL vmlinux 0x6fcb3e76 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fd39502 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x6fdf4fb2 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x7007d987 memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x700b24f6 dp_aux_dp_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x701d895c screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x70240ca7 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x70259261 regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x702c5539 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x703dbfa3 __kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x70423efb zynqmp_pm_set_sd_config -EXPORT_SYMBOL_GPL vmlinux 0x704255dd dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x7046575d crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL vmlinux 0x7046c2cc nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL vmlinux 0x7048c5f5 crypto_enqueue_request_head -EXPORT_SYMBOL_GPL vmlinux 0x704fe18a of_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x7055c56e __sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x70567647 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x7071f701 blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7079f398 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x707c945a blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x7081bb13 rpcauth_init_credcache -EXPORT_SYMBOL_GPL vmlinux 0x70920faa v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL vmlinux 0x709c4078 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x709fca3b rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x70b7c07a gnttab_grant_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70c80b1f skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x70cd34f7 xdr_stream_pos -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70d6faea ubi_leb_change -EXPORT_SYMBOL_GPL vmlinux 0x70e06e33 pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x70e66a45 fsg_show_removable -EXPORT_SYMBOL_GPL vmlinux 0x70e6cde1 zynqmp_pm_fpga_load -EXPORT_SYMBOL_GPL vmlinux 0x70f9703c usb_composite_overwrite_options -EXPORT_SYMBOL_GPL vmlinux 0x710af0e3 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x710c8b2c devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x710d8868 xdr_shift_buf -EXPORT_SYMBOL_GPL vmlinux 0x711cc566 gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0x711da758 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL vmlinux 0x71232369 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x71447e8e device_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x7146ab63 snd_soc_dai_active -EXPORT_SYMBOL_GPL vmlinux 0x7147ed1b iommu_device_link -EXPORT_SYMBOL_GPL vmlinux 0x714fe7d2 sdhci_set_bus_width -EXPORT_SYMBOL_GPL vmlinux 0x7157a496 blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0x715a8cb5 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71717e85 tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0x7173ff08 mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x717ae70f aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x717c1cdb iio_push_to_buffers -EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x718ac2f8 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x718edc92 fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x7198a492 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x7199d575 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x719bad86 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x719fd4dc hidinput_count_leds -EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type -EXPORT_SYMBOL_GPL vmlinux 0x71b2c0de pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL vmlinux 0x71b498ad __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x71b5781f cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now -EXPORT_SYMBOL_GPL vmlinux 0x71bc40e3 rpc_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0x71ca190b blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x71cdb6c5 nfs_statfs -EXPORT_SYMBOL_GPL vmlinux 0x71e78c43 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL vmlinux 0x71e7ec86 rpc_alloc_iostats -EXPORT_SYMBOL_GPL vmlinux 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL vmlinux 0x71fdf8f1 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x7214c26d strp_init -EXPORT_SYMBOL_GPL vmlinux 0x723096ec sdhci_set_power_noreg -EXPORT_SYMBOL_GPL vmlinux 0x723149d8 rpc_net_ns -EXPORT_SYMBOL_GPL vmlinux 0x72395dc1 xfrm_calg_get_byid -EXPORT_SYMBOL_GPL vmlinux 0x724c73aa ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x725edf2d nfs_mknod -EXPORT_SYMBOL_GPL vmlinux 0x725f1b46 crypto_register_kpp -EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page -EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum -EXPORT_SYMBOL_GPL vmlinux 0x7269c559 snd_device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x72722053 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x72767d1e rndis_set_param_medium -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x727cf48f gfn_to_memslot -EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x729117d5 dev_get_tstats64 -EXPORT_SYMBOL_GPL vmlinux 0x72b4a00c serial8250_em485_destroy -EXPORT_SYMBOL_GPL vmlinux 0x72c9d966 sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x72d20d63 vb2_reqbufs -EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x72d3419c __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x72d42709 snd_soc_jack_report -EXPORT_SYMBOL_GPL vmlinux 0x72dc9dd9 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x72de20e0 thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x72e08f4e rpc_put_task -EXPORT_SYMBOL_GPL vmlinux 0x72e134a2 devm_regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x72f1553b tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x72f1d5ed mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x72ff6523 iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL vmlinux 0x731d4325 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0x731d6c45 xvip_of_get_format -EXPORT_SYMBOL_GPL vmlinux 0x731d8085 v4l2_async_notifier_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x731eba7c file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x73242dcd cpu_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0x733cc034 sdhci_pltfm_free -EXPORT_SYMBOL_GPL vmlinux 0x7341d0f1 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0x7349cd47 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x734c6647 lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0x73513312 __traceiter_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x7351ad45 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x7358c8b2 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x7368414d gfn_to_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0x73770ea7 dma_mmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x7379053f dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x739825de ahci_init_controller -EXPORT_SYMBOL_GPL vmlinux 0x73a12330 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73b63a95 pci_dev_lock -EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73ca3ed5 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x73cbf757 usb_control_msg_recv -EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL vmlinux 0x73fb8ccd fpga_mgr_register -EXPORT_SYMBOL_GPL vmlinux 0x73fbdabb crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0x7409294f get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x7429327f devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x74320add pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x743b99d8 xenmem_reservation_increase -EXPORT_SYMBOL_GPL vmlinux 0x743ee88e ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x7444becc fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x74468b1a snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL vmlinux 0x745078e5 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x7458a255 pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7462d381 snd_soc_dai_compr_get_params -EXPORT_SYMBOL_GPL vmlinux 0x7475be8e crypto_ecdh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x748e7e8f sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x7498c127 tty_port_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x749fda56 ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0x74a27d32 nand_ecc_cleanup_req_tweaking -EXPORT_SYMBOL_GPL vmlinux 0x74a45b26 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x74acf590 device_set_node -EXPORT_SYMBOL_GPL vmlinux 0x74adb6c1 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74be6e27 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x74c0ce46 spi_bitbang_stop -EXPORT_SYMBOL_GPL vmlinux 0x74c49d68 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint -EXPORT_SYMBOL_GPL vmlinux 0x74dddeba regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x74e4c310 udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x74e5df2f debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74fc1ce1 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x75099d1b sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x752a23dc i2c_slave_register -EXPORT_SYMBOL_GPL vmlinux 0x752dbd07 strp_process -EXPORT_SYMBOL_GPL vmlinux 0x752f4f84 gnttab_dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x7535432c crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0x7538f4b9 cache_register_net -EXPORT_SYMBOL_GPL vmlinux 0x754216d6 input_device_enabled -EXPORT_SYMBOL_GPL vmlinux 0x7547bbf4 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x755d1a7d fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x756453e1 sdhci_pltfm_init -EXPORT_SYMBOL_GPL vmlinux 0x7570186c __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x75925c34 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x759cbe40 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL vmlinux 0x75b6d0d1 nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x75b77ad1 cec_transmit_done_ts -EXPORT_SYMBOL_GPL vmlinux 0x75c1bf8c nlmclnt_proc -EXPORT_SYMBOL_GPL vmlinux 0x75cbfa5e usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x75d3bc73 crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0x75d7789a _snd_pcm_stream_lock_irqsave -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 0x75ef184f device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x75f0e875 xas_store -EXPORT_SYMBOL_GPL vmlinux 0x75f111ec vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter -EXPORT_SYMBOL_GPL vmlinux 0x75ffb981 rpc_exit -EXPORT_SYMBOL_GPL vmlinux 0x760b0590 perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0x760fc8c0 pci_generic_ecam_ops -EXPORT_SYMBOL_GPL vmlinux 0x761958df kvm_get_kvm -EXPORT_SYMBOL_GPL vmlinux 0x761e035a hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x7633a107 clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x763a0cc5 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x764deb81 spi_res_release -EXPORT_SYMBOL_GPL vmlinux 0x764df987 crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register -EXPORT_SYMBOL_GPL vmlinux 0x76504b5e stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x765edb75 usb_urb_ep_type_check -EXPORT_SYMBOL_GPL vmlinux 0x7664b137 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove -EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0x7667a406 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x7673d6de md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x767bbf86 __sdhci_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7686f50a devm_regmap_init_vexpress_config -EXPORT_SYMBOL_GPL vmlinux 0x768e49e7 vb2_plane_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7692c4d8 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0x76932cd4 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x76956975 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x769a57ae md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0x769d58a7 devm_bitmap_alloc -EXPORT_SYMBOL_GPL vmlinux 0x76a70629 v4l2_event_wake_all -EXPORT_SYMBOL_GPL vmlinux 0x76bbec8e tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x76c4641f acct_bioset_exit -EXPORT_SYMBOL_GPL vmlinux 0x76c9f53b crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x76cd7515 regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76dfd329 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL vmlinux 0x76e81014 __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x772300e6 af_alg_release_parent -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree -EXPORT_SYMBOL_GPL vmlinux 0x77316196 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL vmlinux 0x7736495c trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x77395501 of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x77541abe gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x775ba6a2 genpd_dev_pm_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x776204c3 ahci_print_info -EXPORT_SYMBOL_GPL vmlinux 0x7763e5e5 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x77761f41 svc_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x778c2d32 fwnode_graph_get_remote_node -EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read -EXPORT_SYMBOL_GPL vmlinux 0x77922e3d ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77c88914 snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL vmlinux 0x77cad648 regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0x77d429bc usbnet_change_mtu -EXPORT_SYMBOL_GPL vmlinux 0x77d84a6e vb2_find_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x77da9526 dax_inode -EXPORT_SYMBOL_GPL vmlinux 0x77dad4bd devlink_params_unpublish -EXPORT_SYMBOL_GPL vmlinux 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL vmlinux 0x77e3957a fsg_lun_close -EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put -EXPORT_SYMBOL_GPL vmlinux 0x77ec019a nand_ecc_choose_conf -EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x77ed1848 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x77ed5b01 power_supply_get_property_from_supplier -EXPORT_SYMBOL_GPL vmlinux 0x77f3bdaa dst_blackhole_redirect -EXPORT_SYMBOL_GPL vmlinux 0x77f8d8eb led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0x7823aafc icc_disable -EXPORT_SYMBOL_GPL vmlinux 0x782d965d pci_epc_map_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0x7832023f fpga_mgr_free -EXPORT_SYMBOL_GPL vmlinux 0x7838ac39 tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x783b4f86 v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL vmlinux 0x78468127 of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0x784a7d6d snd_soc_unregister_dai -EXPORT_SYMBOL_GPL vmlinux 0x784f9535 pci_epf_add_vepf -EXPORT_SYMBOL_GPL vmlinux 0x78569402 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x785c06ab __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL vmlinux 0x786069f7 sysfs_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x786cc698 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x786e987b acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0x78735515 xprt_register_transport -EXPORT_SYMBOL_GPL vmlinux 0x787864ba __devm_reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x788cfe45 iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x78a1f60a i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x78a9ecf5 switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x78c04b7f rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL vmlinux 0x78c25bad v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL vmlinux 0x78ce209a vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL vmlinux 0x78d6141e tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x78d6532b dev_pm_opp_get_of_node -EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x78de4d3a tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0x78eb70d2 bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0x78ee32c8 iio_buffer_put -EXPORT_SYMBOL_GPL vmlinux 0x78f453e3 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr -EXPORT_SYMBOL_GPL vmlinux 0x791312bf find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0x7917f19f fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x7919f138 hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x792fd1d1 i2c_dw_adjust_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0x79343307 sysfs_remove_group -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 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x79454eaa devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x795525d4 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x79739dee snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7979a802 zynqmp_pm_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x797a6ece da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0x797e4a27 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x798730ac ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x798b502d snd_soc_dai_compr_set_params -EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x798bd7f0 blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0x799447c0 v4l2_ctrl_request_hdl_find -EXPORT_SYMBOL_GPL vmlinux 0x79996c37 pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x79be9faf platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x79c17818 kthread_unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x79c1a3af device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x79c78d1d hwmon_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x79d6ddeb icc_node_add -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79df748b kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x7a04d545 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x7a17353a usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x7a191857 __traceiter_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x7a1960b4 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x7a2927ad hid_set_field -EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x7a3e6320 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x7a41b9f2 usb_ep_set_maxpacket_limit -EXPORT_SYMBOL_GPL vmlinux 0x7a470f8f icc_sync_state -EXPORT_SYMBOL_GPL vmlinux 0x7a4d2667 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL vmlinux 0x7a70c02f sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a7cd08b regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a8ca627 xfrm_count_pfkey_enc_supported -EXPORT_SYMBOL_GPL vmlinux 0x7a91b56d wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0x7a9dc926 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group -EXPORT_SYMBOL_GPL vmlinux 0x7ab10403 rpc_put_task_async -EXPORT_SYMBOL_GPL vmlinux 0x7ab11bd5 ping_close -EXPORT_SYMBOL_GPL vmlinux 0x7ab7bcc6 __tracepoint_ff_layout_commit_error -EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x7ac1bf27 kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7ac7610f irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag -EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings -EXPORT_SYMBOL_GPL vmlinux 0x7adf5730 snd_device_get_state -EXPORT_SYMBOL_GPL vmlinux 0x7ae49d75 devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x7aed3015 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL vmlinux 0x7af05eda nand_decode_ext_id -EXPORT_SYMBOL_GPL vmlinux 0x7af88ce1 __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x7af95210 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x7af96b9b driver_deferred_probe_check_state -EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow -EXPORT_SYMBOL_GPL vmlinux 0x7b0c8c77 sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x7b19285c spi_nor_scan -EXPORT_SYMBOL_GPL vmlinux 0x7b2163bd HYPERVISOR_tmem_op -EXPORT_SYMBOL_GPL vmlinux 0x7b2736d9 nand_ecc_restore_req -EXPORT_SYMBOL_GPL vmlinux 0x7b2ab547 filemap_read -EXPORT_SYMBOL_GPL vmlinux 0x7b355153 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x7b4b0ee3 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi -EXPORT_SYMBOL_GPL vmlinux 0x7b54da42 trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b5ff6ce cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0x7b627f0b get_nfs_open_context -EXPORT_SYMBOL_GPL vmlinux 0x7b647ead snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x7b651daf dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0x7b6ac78f v4l2_phys_addr_validate -EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x7b737067 __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode -EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7b968940 fw_devlink_purge_absent_suppliers -EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7b9860cb mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x7b9bf100 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7b9bfcf3 pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7b9ed578 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x7ba95fbc of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0x7badd640 em_pd_get -EXPORT_SYMBOL_GPL vmlinux 0x7bafbd2c usb_control_msg_send -EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bb6f461 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x7bcbcbcf phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x7bcbd62d is_transparent_hugepage -EXPORT_SYMBOL_GPL vmlinux 0x7bd14898 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0x7bd446fe dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x7bdad589 noop_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0x7be89624 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL vmlinux 0x7bf8409a gpiochip_reqres_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bfc68a5 af_alg_poll -EXPORT_SYMBOL_GPL vmlinux 0x7c02145d dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x7c1e4035 i2c_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x7c22a110 __reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0x7c2b17fe regmap_write -EXPORT_SYMBOL_GPL vmlinux 0x7c2cffbf tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x7c334594 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x7c36da96 pnfs_ld_read_done -EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x7c44b9f5 crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x7c531bad __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x7c545b49 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0x7c626556 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7c658bf1 thermal_remove_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x7c6bfd59 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x7c7a780c drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL vmlinux 0x7c7f73cd __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x7c83d168 iio_channel_get_all -EXPORT_SYMBOL_GPL vmlinux 0x7c94c99a kvm_release_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7ca31475 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x7ca7b7f9 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x7ca85256 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x7cc3559d of_property_read_variable_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL vmlinux 0x7cd0bc67 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x7cd1b41d lochnagar_update_config -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7ce14cd8 phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0x7ce986b4 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cee63b1 of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0x7cf7cb49 v4l2_fh_add -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d041ca5 iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL vmlinux 0x7d05b08d iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x7d080ea8 __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0x7d1ef05b v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL vmlinux 0x7d2043be ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x7d211f31 fsg_store_cdrom -EXPORT_SYMBOL_GPL vmlinux 0x7d24342b nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL vmlinux 0x7d3884f5 __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x7d3a9313 dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x7d3e3eb8 pci_ecam_create -EXPORT_SYMBOL_GPL vmlinux 0x7d44561c cdc_ncm_tx_fixup -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 0x7d5b0ef8 fscrypt_symlink_getattr -EXPORT_SYMBOL_GPL vmlinux 0x7d663b65 of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0x7d68680f crypto_shash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x7d6c8e34 __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0x7d7a8de8 regulator_set_suspend_voltage -EXPORT_SYMBOL_GPL vmlinux 0x7d7b60b2 usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7d81fa73 fpga_mgr_lock -EXPORT_SYMBOL_GPL vmlinux 0x7d8f659c rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL vmlinux 0x7d98bc8e gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x7d9be39a v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL vmlinux 0x7dc3b541 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x7dc924f8 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0x7dccb2fa evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x7dd1868a usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7de38f29 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x7de53067 rpc_init_rtt -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 0x7df6d3e5 xdr_stream_decode_string -EXPORT_SYMBOL_GPL vmlinux 0x7e031838 rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL vmlinux 0x7e1280f3 usbnet_resume -EXPORT_SYMBOL_GPL vmlinux 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x7e2cb702 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x7e33a7fe fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e43e513 tracing_cond_snapshot_data -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 0x7e6d609f __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0x7e737096 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook -EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7e825226 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x7e88ea0f dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0x7e8a4fb8 icc_get -EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x7ea0aa21 blk_mark_disk_dead -EXPORT_SYMBOL_GPL vmlinux 0x7ea2a649 __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x7ea87a48 dev_pm_opp_put_regulators -EXPORT_SYMBOL_GPL vmlinux 0x7eb05405 acpi_gpiochip_request_interrupts -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 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7eee2b49 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0x7ef863ef blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x7efe0345 snd_soc_component_compr_get_codec_caps -EXPORT_SYMBOL_GPL vmlinux 0x7f002185 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x7f23f196 debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x7f31d1e2 bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0x7f339feb devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7f487442 genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x7f59b1c4 blkdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0x7f6c17b9 nfs_init_client -EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f89ac61 __traceiter_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL vmlinux 0x7f8cdd90 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0x7f906de5 pfn_to_online_page -EXPORT_SYMBOL_GPL vmlinux 0x7f93cf70 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x7fb6e580 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL vmlinux 0x7fdd2e10 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x7feef644 rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x7ff19c40 zynqmp_pm_set_requirement -EXPORT_SYMBOL_GPL vmlinux 0x7ff8f22a dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x7ffb3bfc ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x7ffda775 iio_channel_get -EXPORT_SYMBOL_GPL vmlinux 0x7ffdab0f pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x800694d3 trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0x801eb65d dev_pm_opp_of_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x802ca39c iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0x80330dd6 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL vmlinux 0x80425086 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x8043b1b2 sdhci_alloc_host -EXPORT_SYMBOL_GPL vmlinux 0x80552b9f trace_array_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put -EXPORT_SYMBOL_GPL vmlinux 0x805d5d9b nand_deselect_target -EXPORT_SYMBOL_GPL vmlinux 0x805df66a snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL vmlinux 0x806d8f28 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x80781487 devfreq_get_devfreq_by_node -EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x808db0a5 usbnet_pause_rx -EXPORT_SYMBOL_GPL vmlinux 0x808e74ac dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x8099c9ee usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x80a7dd25 fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0x80aa4dbd of_led_get -EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80ce8c87 rndis_signal_disconnect -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80dcaef2 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x80dced7e nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0x80f22563 of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0x80fd20ec ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x80fd35f1 __media_device_usb_init -EXPORT_SYMBOL_GPL vmlinux 0x80feca78 vb2_queue_init_name -EXPORT_SYMBOL_GPL vmlinux 0x81003d62 drm_gem_cma_free_object -EXPORT_SYMBOL_GPL vmlinux 0x811170a6 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL vmlinux 0x81130460 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x8121cb34 xen_dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0x812236a3 ahci_platform_enable_phys -EXPORT_SYMBOL_GPL vmlinux 0x8124f7ac nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x812756aa tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x813563c0 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x813cdf4a __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x8140ee6b __media_pipeline_start -EXPORT_SYMBOL_GPL vmlinux 0x81439514 fsl_mc_device_group -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x81562cbf ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x81565e04 clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0x81573d25 i2c_new_scanned_device -EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x8163e06d extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x81676473 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x8172b4d2 devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence -EXPORT_SYMBOL_GPL vmlinux 0x818d1d1a skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x819d7908 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x81aa78d8 zynqmp_pm_aes_engine -EXPORT_SYMBOL_GPL vmlinux 0x81adcf3a v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL vmlinux 0x81ae003b usb_put_function -EXPORT_SYMBOL_GPL vmlinux 0x81afcb64 __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0x81b01edb rpc_restart_call_prepare -EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x81b7701f edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x81bf56ed v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL vmlinux 0x81e75112 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x81e85620 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x81eb5757 of_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x81f2dcd0 iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x8202b650 irq_set_affinity -EXPORT_SYMBOL_GPL vmlinux 0x8206d749 sched_set_fifo -EXPORT_SYMBOL_GPL vmlinux 0x8208d890 iomap_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x820af4cb pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings -EXPORT_SYMBOL_GPL vmlinux 0x8230a67f fsg_show_inquiry_string -EXPORT_SYMBOL_GPL vmlinux 0x82396f9a scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x82409884 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL vmlinux 0x824ea129 devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0x8258f491 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x825c7340 phylink_get_eee_err -EXPORT_SYMBOL_GPL vmlinux 0x825eb42d phylink_mii_c22_pcs_set_advertisement -EXPORT_SYMBOL_GPL vmlinux 0x82643ed3 icc_enable -EXPORT_SYMBOL_GPL vmlinux 0x8269d8cc xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0x826bd510 serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0x8270fa0a usb_check_bulk_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog -EXPORT_SYMBOL_GPL vmlinux 0x8281e708 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x8286765c rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x828d4748 sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x82950be7 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x82a27285 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL vmlinux 0x82a30c20 devm_regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x82a4541b splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x82a73df8 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x82aa3c1c xenbus_grant_ring -EXPORT_SYMBOL_GPL vmlinux 0x82ac055a devlink_reload_enable -EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x82c22ca8 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x82c3e8d4 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x82c64240 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x82c70f1e media_device_usb_allocate -EXPORT_SYMBOL_GPL vmlinux 0x82cfdb1d gnttab_pages_set_private -EXPORT_SYMBOL_GPL vmlinux 0x82d0e2dd ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82dee014 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x82f5a500 dma_need_sync -EXPORT_SYMBOL_GPL vmlinux 0x82fdcba6 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x830069a3 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x83012e58 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x83022d36 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x830e152b devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x8313cb6a nd_region_dev -EXPORT_SYMBOL_GPL vmlinux 0x831872fb dev_pm_opp_find_level_ceil -EXPORT_SYMBOL_GPL vmlinux 0x83202334 alloc_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0x832e3719 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x832e8f0b nfs_alloc_fattr -EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x83513940 of_fpga_bridge_get -EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0x835a2295 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x835c6c45 iomap_writepage -EXPORT_SYMBOL_GPL vmlinux 0x83653b92 __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x8374686e fwnode_get_name -EXPORT_SYMBOL_GPL vmlinux 0x8388907b pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x838d306f genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0x838eb3d9 tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0x839194b8 serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0x83aa68a2 nd_blk_memremap_flags -EXPORT_SYMBOL_GPL vmlinux 0x83b37f01 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x83b55d0f i2c_slave_unregister -EXPORT_SYMBOL_GPL vmlinux 0x83c9d23d iommu_map_atomic -EXPORT_SYMBOL_GPL vmlinux 0x83cfe5e1 da9150_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x83d09e4d __fscrypt_prepare_readdir -EXPORT_SYMBOL_GPL vmlinux 0x83d77a34 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x83d969b2 sched_trace_rq_avg_irq -EXPORT_SYMBOL_GPL vmlinux 0x83dffb4c kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x83e3baf0 acpi_dev_get_property -EXPORT_SYMBOL_GPL vmlinux 0x83f62bd2 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x83f94460 gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0x83f99409 akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x8405d7a9 dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x840dbe29 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x84271bd5 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x8447b16e relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0x844f118d xdr_encode_array2 -EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x8464ad8d nfs4_dentry_operations -EXPORT_SYMBOL_GPL vmlinux 0x8476d680 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x8477bfcc mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x847f68fa cros_ec_check_features -EXPORT_SYMBOL_GPL vmlinux 0x847ff46e rpcauth_unregister -EXPORT_SYMBOL_GPL vmlinux 0x84837cbd devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x8489632d kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL vmlinux 0x84958c93 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x849b5453 of_css -EXPORT_SYMBOL_GPL vmlinux 0x849c9866 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert -EXPORT_SYMBOL_GPL vmlinux 0x84b779af rpc_call_null -EXPORT_SYMBOL_GPL vmlinux 0x84bd1176 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x84be9cab hid_register_report -EXPORT_SYMBOL_GPL vmlinux 0x84c3897b snd_pcm_fill_iec958_consumer -EXPORT_SYMBOL_GPL vmlinux 0x84c8e213 fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0x84d32e8d gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0x84df1f02 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x84e712b1 xprt_pin_rqst -EXPORT_SYMBOL_GPL vmlinux 0x84e82d24 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x8501b4a0 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x8508aaa8 devlink_region_snapshot_id_put -EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x85166d0e v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL vmlinux 0x851c61eb nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x85274b36 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x852c38ed regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x852c955e svc_fill_write_vector -EXPORT_SYMBOL_GPL vmlinux 0x85405cbd __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x8547aefc switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x8565f88e synth_event_trace_array -EXPORT_SYMBOL_GPL vmlinux 0x8567b358 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x8568ad36 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL vmlinux 0x858c0412 spi_controller_suspend -EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x85947354 ahci_platform_ops -EXPORT_SYMBOL_GPL vmlinux 0x8595ac74 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x859711fd debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x85a38083 mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x85a83088 xprt_put -EXPORT_SYMBOL_GPL vmlinux 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL vmlinux 0x85aaff1d divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x85b7af39 crypto_grab_shash -EXPORT_SYMBOL_GPL vmlinux 0x85b7b75f sdhci_cleanup_host -EXPORT_SYMBOL_GPL vmlinux 0x85b9a231 acpi_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0x85d13a0a devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x85e1672e nfs_get_lock_context -EXPORT_SYMBOL_GPL vmlinux 0x85f11287 pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL vmlinux 0x85f2e450 ffs_name_dev -EXPORT_SYMBOL_GPL vmlinux 0x85f4ad61 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x85fdc633 acpi_dev_clear_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x860a2eab bch_decode -EXPORT_SYMBOL_GPL vmlinux 0x860ce3b4 clk_hw_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0x8616fa35 perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0x861e9a8f perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x8628e542 mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array -EXPORT_SYMBOL_GPL vmlinux 0x862e0553 v4l2_pipeline_link_notify -EXPORT_SYMBOL_GPL vmlinux 0x8635b93a blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0x8636d631 device_del -EXPORT_SYMBOL_GPL vmlinux 0x8647ad21 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x864d1a41 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x86617f2c xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x8664914e vp_modern_probe -EXPORT_SYMBOL_GPL vmlinux 0x86682f39 fpga_bridge_register -EXPORT_SYMBOL_GPL vmlinux 0x866ca6a3 gnttab_page_cache_init -EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid -EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0x86795cab i2c_adapter_depth -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x86896512 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x86995f8f ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x869cfd4c bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x86a08cd3 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check -EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x86dbf0ce cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0x86dfa010 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x86e8e081 u_audio_set_mute -EXPORT_SYMBOL_GPL vmlinux 0x86f37136 drm_of_encoder_active_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x872b70f7 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x872fa47a locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x87405d5a nfs_do_submount -EXPORT_SYMBOL_GPL vmlinux 0x8750b2c6 drm_class_device_register -EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x875db812 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x875dc743 rpc_wake_up_next -EXPORT_SYMBOL_GPL vmlinux 0x87671dba iomap_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0x8775baa1 register_nfs_version -EXPORT_SYMBOL_GPL vmlinux 0x878f4da7 dma_buf_dynamic_attach -EXPORT_SYMBOL_GPL vmlinux 0x87aa0393 ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x87b4d7e5 rndis_set_param_dev -EXPORT_SYMBOL_GPL vmlinux 0x87b793cd snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL vmlinux 0x87c14931 vp_modern_generation -EXPORT_SYMBOL_GPL vmlinux 0x87c7e49a genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x87cb316e __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x87cdb03e shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x87ce0be2 free_iova -EXPORT_SYMBOL_GPL vmlinux 0x87d24e51 of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0x87e0c635 fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0x87ecfda1 dev_pm_opp_find_level_exact -EXPORT_SYMBOL_GPL vmlinux 0x87ee2109 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x87f10c26 vb2_read -EXPORT_SYMBOL_GPL vmlinux 0x87f87877 svc_xprt_init -EXPORT_SYMBOL_GPL vmlinux 0x87fd87c4 v4l2_fwnode_device_parse -EXPORT_SYMBOL_GPL vmlinux 0x8807483d svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL vmlinux 0x880fc972 __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0x882077d5 usb_ep_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x88275442 dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x882a7a95 pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x882fa20d bind_interdomain_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x88326cba tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x883b6844 of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x8847b580 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x8856413d irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x886f45e8 blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0x88786862 sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x8884fe3d fuse_dax_cancel_work -EXPORT_SYMBOL_GPL vmlinux 0x8887fa98 usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL vmlinux 0x88914a87 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL vmlinux 0x88988a07 hisi_uncore_pmu_identifier_attr_show -EXPORT_SYMBOL_GPL vmlinux 0x88a1e54c inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88ac74fe usb_add_config_only -EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88cdd461 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x88ced3b0 devm_hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x88dd2fe7 mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x88e0eddb xlnx_bridge_register -EXPORT_SYMBOL_GPL vmlinux 0x88f73cbf ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0x88fa4669 mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL vmlinux 0x8904fad4 __fl6_sock_lookup -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 0x891aa0a0 dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0x891ed990 sdhci_calc_clk -EXPORT_SYMBOL_GPL vmlinux 0x89237063 tda18271_attach -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x8928d51e af_alg_count_tsgl -EXPORT_SYMBOL_GPL vmlinux 0x892c4713 devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x89367a85 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put -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 0x895f1757 rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0x89695912 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x896f0b20 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x89799b4e ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x897d94a2 dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x89835857 vcpu_load -EXPORT_SYMBOL_GPL vmlinux 0x89877886 snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL vmlinux 0x898db384 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x89a037cd usbnet_set_msglevel -EXPORT_SYMBOL_GPL vmlinux 0x89a4476d HYPERVISOR_multicall -EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x89b8c1cd usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89bd41f2 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x89ce2bf7 fpga_image_info_alloc -EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x89eb3803 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x89ef8ce9 regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0x8a1af59a regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next -EXPORT_SYMBOL_GPL vmlinux 0x8a33c63c crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x8a39db91 md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low -EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x8a52745a __traceiter_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a555068 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL vmlinux 0x8a5e25a1 ahci_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a674ac8 kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0x8a6a066c virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x8a771707 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8a899267 dm_start_time_ns_from_clone -EXPORT_SYMBOL_GPL vmlinux 0x8a91da00 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8abcd239 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x8ad5eaf1 of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x8ae21ba4 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x8ae3461c __raw_v4_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8ae4fd65 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x8aea9dbb blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0x8aec39f8 ethnl_cable_test_step -EXPORT_SYMBOL_GPL vmlinux 0x8aeca0c5 xdr_expand_hole -EXPORT_SYMBOL_GPL vmlinux 0x8af27993 sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x8b00d52d dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8b043791 tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x8b065901 skb_segment_list -EXPORT_SYMBOL_GPL vmlinux 0x8b0875fb dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0x8b0bace3 devfreq_cooling_em_register -EXPORT_SYMBOL_GPL vmlinux 0x8b0d9b95 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b1f34e2 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x8b2dc9eb acpi_dev_gpio_irq_get_by -EXPORT_SYMBOL_GPL vmlinux 0x8b36660e v4l2_subdev_get_fwnode_pad_1_to_1 -EXPORT_SYMBOL_GPL vmlinux 0x8b382838 cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL vmlinux 0x8b46782d fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x8b48f9bb acpi_subsys_complete -EXPORT_SYMBOL_GPL vmlinux 0x8b49c117 of_property_read_variable_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x8b4bcc54 mtd_add_partition -EXPORT_SYMBOL_GPL vmlinux 0x8b535488 of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0x8b5bc10d register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x8b6c9b45 blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x8b73eb1f u_audio_get_mute -EXPORT_SYMBOL_GPL vmlinux 0x8b74e82b usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x8b75a51c rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x8b77aa93 dma_mmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x8b7f3910 sdhci_request_atomic -EXPORT_SYMBOL_GPL vmlinux 0x8b7fcbd8 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL vmlinux 0x8b830c73 tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0x8b918820 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x8b91dd6c v4l2_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8b92a65d otg_statemachine -EXPORT_SYMBOL_GPL vmlinux 0x8b92d5c4 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x8b9fea2f xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg -EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op -EXPORT_SYMBOL_GPL vmlinux 0x8bac2d4a securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x8baee9e0 xdr_page_pos -EXPORT_SYMBOL_GPL vmlinux 0x8bb670bc led_init_default_state_get -EXPORT_SYMBOL_GPL vmlinux 0x8bb71836 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x8bb7a2dc tcp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x8bc20e8b tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x8bc561cd snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x8be1a3ad pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x8be33a74 nvdimm_in_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x8be92fda dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x8bfd0cea scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0x8bfd28f3 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x8bff5f58 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c0b84cd hidinput_get_led_field -EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c32d711 dax_iomap_fault -EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x8c4b6a6e iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x8c515fc5 irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0x8c52d4e1 bio_add_zone_append_page -EXPORT_SYMBOL_GPL vmlinux 0x8c5e602a devm_hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x8c5eb0dc devlink_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x8c64af92 ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0x8c650439 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL vmlinux 0x8c65de6d bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8c6c5106 acpi_data_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x8c731e87 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0x8c737847 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c785713 pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x8c7af77d devm_pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c8faba8 create_signature -EXPORT_SYMBOL_GPL vmlinux 0x8c988f2d alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x8ca2cd97 snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x8ca32ae9 sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x8ca560ec ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x8cb1bd26 acpi_irq_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x8cb79de4 crypto_engine_exit -EXPORT_SYMBOL_GPL vmlinux 0x8cbe2ac2 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL vmlinux 0x8cc407e9 of_phandle_iterator_init -EXPORT_SYMBOL_GPL vmlinux 0x8cd6d7a1 ksm_madvise -EXPORT_SYMBOL_GPL vmlinux 0x8cddec2b msg_zerocopy_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8ce25cb0 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x8ce45a5f sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x8ce55876 phy_put -EXPORT_SYMBOL_GPL vmlinux 0x8ce80da1 phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8ce9e596 vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0x8d017a35 of_pci_dma_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x8d033d99 pci_host_common_remove -EXPORT_SYMBOL_GPL vmlinux 0x8d07d428 fpga_bridge_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x8d1b8f2f drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d3421c3 iio_write_channel_attribute -EXPORT_SYMBOL_GPL vmlinux 0x8d50f27f devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x8d66d64a devlink_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8d6a7d0d posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x8d700198 proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0x8d72bdf9 scsi_free_sgtables -EXPORT_SYMBOL_GPL vmlinux 0x8d74204d ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0x8d7575e0 mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x8d76b107 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x8d864069 snd_pcm_rate_range_to_bits -EXPORT_SYMBOL_GPL vmlinux 0x8d88ee64 sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x8da1836a kill_device -EXPORT_SYMBOL_GPL vmlinux 0x8da3c16a dev_pm_opp_unregister_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0x8db936d7 rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call -EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x8de3ae2a da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x8e16419b trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x8e171070 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x8e1ea971 device_link_add -EXPORT_SYMBOL_GPL vmlinux 0x8e2fbc86 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface -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 0x8e5be6d4 svcauth_gss_flavor -EXPORT_SYMBOL_GPL vmlinux 0x8e602c9f i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x8e6999e4 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count -EXPORT_SYMBOL_GPL vmlinux 0x8e6dd875 mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL vmlinux 0x8e6eec6f svc_shutdown_net -EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x8e6fd86e ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x8e7f0a9c acpi_get_phys_id -EXPORT_SYMBOL_GPL vmlinux 0x8e8784d7 fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0x8e8a3b92 pci_hp_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8e91fd57 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8e92e034 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x8e9ddf95 devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x8eb68442 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x8eb959f7 devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0x8ebb3f87 ahci_start_fis_rx -EXPORT_SYMBOL_GPL vmlinux 0x8ec136d2 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8ed1c03d devm_nvdimm_memremap -EXPORT_SYMBOL_GPL vmlinux 0x8ed1e88c hid_debug_event -EXPORT_SYMBOL_GPL vmlinux 0x8edb0b98 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x8ee2730b fixed_phy_change_carrier -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 0x8ef06cd6 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x8ef10682 phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x8f02d835 to_software_node -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f0b3057 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x8f0dfbf1 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x8f10b451 __hid_request -EXPORT_SYMBOL_GPL vmlinux 0x8f1d2937 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x8f2e5212 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x8f34767a devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8f3969e1 zynqmp_pm_clock_getrate -EXPORT_SYMBOL_GPL vmlinux 0x8f476aa4 xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f6ef031 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x8f6f70f2 ubi_leb_write -EXPORT_SYMBOL_GPL vmlinux 0x8f71a28a nfsacl_encode -EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8f7b4651 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x8f7f8655 mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL vmlinux 0x8f874ed6 drm_gem_cma_create -EXPORT_SYMBOL_GPL vmlinux 0x8f8d4341 v4l2_get_edid_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0x8f8fd33d put_rpccred -EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid -EXPORT_SYMBOL_GPL vmlinux 0x8fb95025 fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x8fc02fa7 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x8fc443f5 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x8fd03254 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL vmlinux 0x8fdd0844 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x8fe33648 zynqmp_pm_reset_assert -EXPORT_SYMBOL_GPL vmlinux 0x8fe539af elv_register -EXPORT_SYMBOL_GPL vmlinux 0x8fe97b41 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x8ff50c2f mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points -EXPORT_SYMBOL_GPL vmlinux 0x8ffabee4 ubi_leb_read -EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x900899cd vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL vmlinux 0x9011a000 crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x9013a403 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x901d3786 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x9020bb8f skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x9021d729 of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0x9023408c ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0x9023920d snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL vmlinux 0x90252bd5 sdhci_reset -EXPORT_SYMBOL_GPL vmlinux 0x90321bed crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x904615a3 pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0x90505be1 hisi_format_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x9065849f of_iio_channel_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put -EXPORT_SYMBOL_GPL vmlinux 0x9069d62e iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x90754ce9 devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x907ce5b2 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL vmlinux 0x907d727c vp_modern_queue_address -EXPORT_SYMBOL_GPL vmlinux 0x908328e6 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x908741cb iio_read_channel_processed -EXPORT_SYMBOL_GPL vmlinux 0x909dd726 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x909ee77e fscrypt_fname_siphash -EXPORT_SYMBOL_GPL vmlinux 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized -EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes -EXPORT_SYMBOL_GPL vmlinux 0x90b763f1 HYPERVISOR_console_io -EXPORT_SYMBOL_GPL vmlinux 0x90b8edc8 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x90b9723e sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x90c0c558 i2c_dw_configure_master -EXPORT_SYMBOL_GPL vmlinux 0x90c4fe5c shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x90c5c7db i2c_dw_validate_speed -EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x90cfaa38 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x90dfe703 devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x90ea372c devm_platform_get_and_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x90ebe557 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x90ec2c2e drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL vmlinux 0x91052e19 iommu_aux_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x910cbe5a gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x910fd445 fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0x91172ddb blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0x911fcd6c phylink_start -EXPORT_SYMBOL_GPL vmlinux 0x9121aec6 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x912942d9 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x912fb51f usbnet_disconnect -EXPORT_SYMBOL_GPL vmlinux 0x91367eee devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0x9138bd94 devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0x913a0745 i2c_client_type -EXPORT_SYMBOL_GPL vmlinux 0x914c56c5 snd_soc_add_component -EXPORT_SYMBOL_GPL vmlinux 0x91519a16 dev_pm_opp_of_cpumask_add_table -EXPORT_SYMBOL_GPL vmlinux 0x9172c87a snd_soc_get_enum_double -EXPORT_SYMBOL_GPL vmlinux 0x91831354 cpufreq_dbs_governor_exit -EXPORT_SYMBOL_GPL vmlinux 0x91882811 vp_modern_set_features -EXPORT_SYMBOL_GPL vmlinux 0x918d2b68 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x918f0c86 devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0x91935de0 alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x9194e4a8 acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x9195c9f4 snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL vmlinux 0x919e478e usbnet_defer_kevent -EXPORT_SYMBOL_GPL vmlinux 0x919f05a0 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x91a34fd2 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x91a35342 extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0x91a77ada zynqmp_pm_probe_counter_read -EXPORT_SYMBOL_GPL vmlinux 0x91add830 zynqmp_pm_force_powerdown -EXPORT_SYMBOL_GPL vmlinux 0x91b5f7da kvm_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval -EXPORT_SYMBOL_GPL vmlinux 0x91c23144 nand_read_oob_op -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource -EXPORT_SYMBOL_GPL vmlinux 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL vmlinux 0x91d2b7d5 fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0x91d44ca3 devlink_port_attrs_pci_sf_set -EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist -EXPORT_SYMBOL_GPL vmlinux 0x91e8d8d2 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean -EXPORT_SYMBOL_GPL vmlinux 0x91fe9aa6 iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0x920cba9d tea5767_autodetection -EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x9227db16 bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0x9228b402 usb_gadget_map_request -EXPORT_SYMBOL_GPL vmlinux 0x92295424 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x922ecd29 v4l2_enum_dv_timings_cap -EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable -EXPORT_SYMBOL_GPL vmlinux 0x923edb66 udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x925efd8b crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x926dfa42 ubi_leb_unmap -EXPORT_SYMBOL_GPL vmlinux 0x927487ea zynqmp_pm_read_ggs -EXPORT_SYMBOL_GPL vmlinux 0x9286e975 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0x928ebcd4 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x929eddf6 bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0x92a3d3b4 spi_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x92abdd24 usb_function_register -EXPORT_SYMBOL_GPL vmlinux 0x92b3c106 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg -EXPORT_SYMBOL_GPL vmlinux 0x92bd86e1 compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x92cdba54 __v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92e0d743 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL vmlinux 0x92e1201d __traceiter_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x92ea3252 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0x92eded4e garp_unregister_application -EXPORT_SYMBOL_GPL vmlinux 0x92fc6f10 serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0x93087ffe sdhci_setup_host -EXPORT_SYMBOL_GPL vmlinux 0x930d9e45 __irq_resolve_mapping -EXPORT_SYMBOL_GPL vmlinux 0x930fd3bc pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x931972bf regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0x9320d592 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array -EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x934541f4 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x9347e981 xdp_master_redirect -EXPORT_SYMBOL_GPL vmlinux 0x934b3960 tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0x934e65c1 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x9359d8c0 ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x93668187 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x9368db3c zynqmp_pm_usb_set_state -EXPORT_SYMBOL_GPL vmlinux 0x936edb08 nand_change_write_column_op -EXPORT_SYMBOL_GPL vmlinux 0x937e67c2 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x938e0209 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x938e0364 rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x938e8026 iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL vmlinux 0x938ede74 gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0x939ce62e device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x939cf396 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x93a200a5 phy_check_downshift -EXPORT_SYMBOL_GPL vmlinux 0x93a28b7c snd_pcm_stream_lock -EXPORT_SYMBOL_GPL vmlinux 0x93ae4053 svc_create -EXPORT_SYMBOL_GPL vmlinux 0x93b505ce acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0x93b573ba tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x93bb3283 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x93d87ce8 zynqmp_pm_clear_aie_npi_isr -EXPORT_SYMBOL_GPL vmlinux 0x93d975a8 pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x93fd0e8e __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x94042a70 dma_resv_test_signaled -EXPORT_SYMBOL_GPL vmlinux 0x941771a3 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL vmlinux 0x941900fd xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0x9419a482 iio_buffer_get -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack -EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x944077b5 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x94577d17 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock -EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x94721aec acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x94773918 tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x947928ef zynqmp_pm_set_rpu_mode -EXPORT_SYMBOL_GPL vmlinux 0x9479484c unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x948a631d drm_fb_cma_get_gem_addr -EXPORT_SYMBOL_GPL vmlinux 0x948b01de __devm_pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x948eb5cf snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL vmlinux 0x94915535 power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x949f0ef0 usbnet_write_cmd -EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94a9d261 hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x94aaee1e genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0x94ac8273 xvtc_of_get -EXPORT_SYMBOL_GPL vmlinux 0x94ae97af nfs_fhget -EXPORT_SYMBOL_GPL vmlinux 0x94bc3ce3 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x94be70c8 of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0x94c234e1 devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x94c7351f sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0x94ca7a36 ethnl_cable_test_finished -EXPORT_SYMBOL_GPL vmlinux 0x94d12ba6 snd_soc_component_read -EXPORT_SYMBOL_GPL vmlinux 0x94dce96c find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x94dfb448 iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi -EXPORT_SYMBOL_GPL vmlinux 0x94ec26ba xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL vmlinux 0x950166da xdr_encode_word -EXPORT_SYMBOL_GPL vmlinux 0x9502b758 ethtool_set_ethtool_phy_ops -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x950958b4 snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL vmlinux 0x9514c9bc nfs_file_write -EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x95227d44 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9522d3eb irq_chip_get_parent_state -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x954817de badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0x95488be7 __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0x955160bb nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x955ee217 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x955f1e3b ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x955fcd48 acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0x95687c6d dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x95699438 lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x956d833b ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x956ee5e0 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init -EXPORT_SYMBOL_GPL vmlinux 0x95860ecf msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x95a64715 __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x95a6b6fc usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x95aac403 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x95b11d5c set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x95b2dfac usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x95bb4eaf platform_irqchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95bd726d bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0x95c89026 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL vmlinux 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL vmlinux 0x95d866e0 nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL vmlinux 0x95dabeee usb_composite_unregister -EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x95f00639 xprt_get -EXPORT_SYMBOL_GPL vmlinux 0x95f2ffa7 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL vmlinux 0x95f3d054 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x962197f9 fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x962259eb ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x9627fe83 irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x962d5b63 tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x962da849 nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x963a9658 usb_gadget_activate -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9661f8a7 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x96661130 dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL vmlinux 0x96719225 tpm2_flush_context -EXPORT_SYMBOL_GPL vmlinux 0x9674489d v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL vmlinux 0x9683c53d spi_res_alloc -EXPORT_SYMBOL_GPL vmlinux 0x96862fd8 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x9688e131 __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0x969d2762 da9150_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x96adc66a hidinput_report_event -EXPORT_SYMBOL_GPL vmlinux 0x96bdbbb6 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x96c15a44 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL vmlinux 0x96c43e84 dev_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x96d1735d __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL vmlinux 0x96d58be6 crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0x96d95f50 v4l2_fh_exit -EXPORT_SYMBOL_GPL vmlinux 0x96e0c038 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x96e26e0e hisi_uncore_pmu_set_event_period -EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x96fc0980 bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x96fcf651 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL vmlinux 0x970316e9 efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x97359b92 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0x9736fd7a devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x97390309 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x97474d1a devm_clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x9748fc07 bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL vmlinux 0x974cf88b __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x9751f3bf spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x975d1f46 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x976038f7 media_create_pad_links -EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0x9767eb51 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0x9769f155 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x9784e95d drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL vmlinux 0x9785c8da user_update -EXPORT_SYMBOL_GPL vmlinux 0x97863719 debugfs_lookup_and_remove -EXPORT_SYMBOL_GPL vmlinux 0x978ee18f devm_namespace_enable -EXPORT_SYMBOL_GPL vmlinux 0x97908505 dma_buf_unpin -EXPORT_SYMBOL_GPL vmlinux 0x9795181a ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x9798fa22 acpi_pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x979eae2b mrp_request_leave -EXPORT_SYMBOL_GPL vmlinux 0x97a83bfa pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x97b14b22 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x97b15938 pin_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x97b90efd of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x97c7e5e8 vb2_poll -EXPORT_SYMBOL_GPL vmlinux 0x97cadd50 nfs_may_open -EXPORT_SYMBOL_GPL vmlinux 0x97ce4401 of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x97ddbf31 svc_set_client -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97e11fac ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x97ece899 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x97f5f665 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x97fec645 bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0x98098207 edac_device_handle_ce_count -EXPORT_SYMBOL_GPL vmlinux 0x981235c2 devlink_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0x981b367f devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL vmlinux 0x983276da phylink_disconnect_phy -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x9843ee05 balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x98469ec6 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x984981c6 acpi_get_and_request_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x985b3624 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL vmlinux 0x985f3246 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL vmlinux 0x985fc148 spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0x986647d8 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x986a83bf virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0x98789795 hidinput_find_field -EXPORT_SYMBOL_GPL vmlinux 0x98797aed amba_apb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x988101dd media_devnode_create -EXPORT_SYMBOL_GPL vmlinux 0x9888360f snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str -EXPORT_SYMBOL_GPL vmlinux 0x989b94b8 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x989de91e rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x98a52d8a sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0x98acdb31 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x98b8c06d of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0x98bd11fa regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x98bf9d65 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x98cfeba2 __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x98d4e427 __devm_clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x98d71d48 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0x98e338b5 pnfs_put_lseg -EXPORT_SYMBOL_GPL vmlinux 0x98e5c861 sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x98ef62b5 of_mm_gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x98f3e939 dev_pm_opp_set_opp -EXPORT_SYMBOL_GPL vmlinux 0x98f4777f snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x98ffaf6f pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x99003a7c devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x99057df1 perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0x99188764 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL vmlinux 0x991f7e3d cec_received_msg_ts -EXPORT_SYMBOL_GPL vmlinux 0x9929dc27 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x992a65f9 irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x992f49d2 sdhci_adma_write_desc -EXPORT_SYMBOL_GPL vmlinux 0x992f9273 acpi_device_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x99317736 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL vmlinux 0x9934654c ip6_input -EXPORT_SYMBOL_GPL vmlinux 0x99356efc da9150_write_qif -EXPORT_SYMBOL_GPL vmlinux 0x994273f9 nfs_show_devname -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x99686f40 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg -EXPORT_SYMBOL_GPL vmlinux 0x997da390 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0x997e071a pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL vmlinux 0x9982c90b rpc_malloc -EXPORT_SYMBOL_GPL vmlinux 0x99878da0 sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x99980ec3 v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x99a084e3 mmu_interval_notifier_insert_locked -EXPORT_SYMBOL_GPL vmlinux 0x99a44f07 of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x99c258d8 xprt_release_xprt -EXPORT_SYMBOL_GPL vmlinux 0x99c6ae97 dax_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x99c9bc34 driver_find -EXPORT_SYMBOL_GPL vmlinux 0x99d20a06 dev_pm_opp_of_add_table_indexed -EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x99e09ec3 devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0x99e67427 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x99f4b556 media_device_init -EXPORT_SYMBOL_GPL vmlinux 0x9a005eb0 lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a1a74c3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL vmlinux 0x9a1dfc90 spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9a1dfcef fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x9a1e27bf vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0x9a5ea7cb drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL vmlinux 0x9a5febd8 rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0x9a6dc232 devlink_port_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x9a6f46c5 dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0x9a6fd864 v4l2_get_link_freq -EXPORT_SYMBOL_GPL vmlinux 0x9a80a168 device_match_name -EXPORT_SYMBOL_GPL vmlinux 0x9a8a1fdd cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9a9c1be0 otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0x9aa93a99 vp_modern_map_vq_notify -EXPORT_SYMBOL_GPL vmlinux 0x9aab96c1 rpc_killall_tasks -EXPORT_SYMBOL_GPL vmlinux 0x9ab638ea sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ac4c2b0 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ad4fd9d irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x9ad6f36d phylink_decode_usxgmii_word -EXPORT_SYMBOL_GPL vmlinux 0x9adb60fd kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x9af71963 xhci_update_hub_device -EXPORT_SYMBOL_GPL vmlinux 0x9b023dbe sdhci_free_host -EXPORT_SYMBOL_GPL vmlinux 0x9b0851e8 rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL vmlinux 0x9b0bfa68 hisi_uncore_pmu_init_irq -EXPORT_SYMBOL_GPL vmlinux 0x9b1849b8 fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0x9b2d3918 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x9b2d7478 tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x9b33cfa0 nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0x9b397cde component_add -EXPORT_SYMBOL_GPL vmlinux 0x9b39ecb4 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x9b3bfbe3 __traceiter_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x9b4d3002 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle -EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x9b701975 usb_gadget_vbus_disconnect -EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x9b738604 dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0x9b88c3c7 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill -EXPORT_SYMBOL_GPL vmlinux 0x9b8cf324 skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9b9f6648 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9ba8e3e8 nand_prog_page_end_op -EXPORT_SYMBOL_GPL vmlinux 0x9bbd1f9c wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0x9bc41096 devm_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9bd38b55 usb_composite_setup_continue -EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range -EXPORT_SYMBOL_GPL vmlinux 0x9bec1e40 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bedc136 svc_reg_xprt_class -EXPORT_SYMBOL_GPL vmlinux 0x9bf0f5c2 crypto_engine_stop -EXPORT_SYMBOL_GPL vmlinux 0x9bfde704 snd_soc_daifmt_clock_provider_fliped -EXPORT_SYMBOL_GPL vmlinux 0x9c080cef crypto_shash_tfm_digest -EXPORT_SYMBOL_GPL vmlinux 0x9c0d9b5f pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x9c149893 ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x9c329835 xdr_init_encode -EXPORT_SYMBOL_GPL vmlinux 0x9c32e962 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x9c340fbd regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x9c354325 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9c363deb devm_clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x9c3c2467 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x9c5a5c84 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x9c64e819 cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL vmlinux 0x9c65aeb3 nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x9c73b48b dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x9c799884 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x9c7ecb03 __mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c81166e of_phandle_iterator_next -EXPORT_SYMBOL_GPL vmlinux 0x9c820bb9 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x9c83ab83 fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0x9c84e0cd ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9c863a0f devm_pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x9c8d394f device_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x9c8e367c rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x9c934a77 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL vmlinux 0x9c9547a9 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x9c9c2a40 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x9ca2e61a rndis_add_hdr -EXPORT_SYMBOL_GPL vmlinux 0x9cad0509 fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0x9cb5af34 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cd1e35b blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x9cd6b0cc pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x9cd82f4a snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL vmlinux 0x9cdb08ad __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x9cdbe082 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL vmlinux 0x9ce2ef35 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x9ce4fecb usb_string_ids_n -EXPORT_SYMBOL_GPL vmlinux 0x9ce8cb61 acpi_dev_get_dma_resources -EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d151490 sdio_retune_crc_enable -EXPORT_SYMBOL_GPL vmlinux 0x9d2444c0 devm_snd_soc_register_dai -EXPORT_SYMBOL_GPL vmlinux 0x9d28945c gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x9d5109ce cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0x9d511bd2 hid_report_raw_event -EXPORT_SYMBOL_GPL vmlinux 0x9d58ad28 clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x9d5cc778 crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0x9d61d36c nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0x9d64019f v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL vmlinux 0x9d69153e uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x9d6e4a02 xprt_setup_backchannel -EXPORT_SYMBOL_GPL vmlinux 0x9d76da60 usb_remove_function -EXPORT_SYMBOL_GPL vmlinux 0x9d788f3b srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x9d7b5720 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x9d80bc0c nfs_file_read -EXPORT_SYMBOL_GPL vmlinux 0x9db6488f nfs_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0x9db8ac58 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9dc41237 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x9ddcb954 phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x9de1a5c1 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x9de2f71a snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps -EXPORT_SYMBOL_GPL vmlinux 0x9e064230 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9e15db2e vchan_tx_submit -EXPORT_SYMBOL_GPL vmlinux 0x9e184d99 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x9e2a5ed5 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL vmlinux 0x9e2bda8d dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x9e32e302 tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0x9e35b152 usb_get_role_switch_default_mode -EXPORT_SYMBOL_GPL vmlinux 0x9e368db6 usb_put_function_instance -EXPORT_SYMBOL_GPL vmlinux 0x9e44461a wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e5a59a2 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0x9e7625a5 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x9e7f9ebd of_genpd_remove_last -EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x9e9d2765 __traceiter_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x9ea82b14 mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x9eb52803 usb_ep_disable -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ed62e55 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x9edc59a8 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x9ee739d1 sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9eeddf01 acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0x9ef1b3ea media_device_register_entity_notify -EXPORT_SYMBOL_GPL vmlinux 0x9efb5cef divider_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x9efe9d50 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x9f018d9f media_entity_setup_link -EXPORT_SYMBOL_GPL vmlinux 0x9f02bd99 hid_dump_input -EXPORT_SYMBOL_GPL vmlinux 0x9f03d7b3 __traceiter_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL vmlinux 0x9f0948ca snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL vmlinux 0x9f3287ee uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x9f43bcf2 rpc_mkpipe_data -EXPORT_SYMBOL_GPL vmlinux 0x9f483e57 xvip_init_resources -EXPORT_SYMBOL_GPL vmlinux 0x9f4e9626 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL vmlinux 0x9f509172 dax_finish_sync_fault -EXPORT_SYMBOL_GPL vmlinux 0x9f50b100 security_path_chmod -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 0x9f5ed04e blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x9f68051b usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL vmlinux 0x9f78f447 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x9f7c8e7e dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x9fb58cc6 dev_pm_opp_of_get_opp_desc_node -EXPORT_SYMBOL_GPL vmlinux 0x9fb91442 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write -EXPORT_SYMBOL_GPL vmlinux 0x9fca1311 sdhci_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0x9fcd9b54 mmc_crypto_prepare_req -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd21061 pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x9fdedbcd mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x9fdf160b inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x9fe69a86 __media_device_register -EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9feaba41 wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x9fef35ac v4l2_apply_frmsize_constraints -EXPORT_SYMBOL_GPL vmlinux 0xa000d3de bio_end_io_acct_remapped -EXPORT_SYMBOL_GPL vmlinux 0xa000f8e9 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL vmlinux 0xa00b8412 sched_trace_rq_cpu_capacity -EXPORT_SYMBOL_GPL vmlinux 0xa00e091a snd_soc_component_read_field -EXPORT_SYMBOL_GPL vmlinux 0xa00fa491 fs_dax_get_by_bdev -EXPORT_SYMBOL_GPL vmlinux 0xa011219b irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xa013c679 umd_cleanup_helper -EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa01fbb6b cec_notifier_set_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0xa0209460 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0xa024ef2a regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0xa026f246 svc_xprt_names -EXPORT_SYMBOL_GPL vmlinux 0xa029ec8b icc_provider_add -EXPORT_SYMBOL_GPL vmlinux 0xa02a4cbd security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0xa02c3b6e drm_bridge_get_edid -EXPORT_SYMBOL_GPL vmlinux 0xa0316099 nlmsvc_ops -EXPORT_SYMBOL_GPL vmlinux 0xa0396775 nfs_kill_super -EXPORT_SYMBOL_GPL vmlinux 0xa041316f bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa04d235d fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa0586ea6 nfs_wait_on_request -EXPORT_SYMBOL_GPL vmlinux 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL vmlinux 0xa0719f9e nvdimm_cmd_mask -EXPORT_SYMBOL_GPL vmlinux 0xa0792a24 nfs_pageio_init_write -EXPORT_SYMBOL_GPL vmlinux 0xa07ee9c7 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xa08164a8 of_icc_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0xa08604fb dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0xa095dfef devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0xa09b6c03 crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0xa09f1a03 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0xa0ab33ca snd_soc_component_set_pll -EXPORT_SYMBOL_GPL vmlinux 0xa0ae2411 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xa0c1948b irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xa0cafd1b cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xa0cd2cef debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0e29f51 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL vmlinux 0xa0e4aa4c init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xa0ef7823 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0xa0f77ae3 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa128f191 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0xa135e396 mtd_block_markbad -EXPORT_SYMBOL_GPL vmlinux 0xa136822f snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL vmlinux 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL vmlinux 0xa13f81f6 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa163b2f1 tcpv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xa165308a mtd_point -EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked -EXPORT_SYMBOL_GPL vmlinux 0xa16dbd2f __traceiter_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xa16deb13 sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xa18943d3 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL vmlinux 0xa18f994e devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xa1a2325b wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xa1a235eb of_clk_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0xa1a2e02d ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0xa1a3329d mmc_pwrseq_register -EXPORT_SYMBOL_GPL vmlinux 0xa1a8d235 devm_otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0xa1b43e74 genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0xa1b8d2a6 pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0xa1c67579 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0xa1d4685f blk_queue_set_zoned -EXPORT_SYMBOL_GPL vmlinux 0xa1d6f163 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0xa1d77657 xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1ddad17 xdr_decode_array2 -EXPORT_SYMBOL_GPL vmlinux 0xa1ee7c44 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xa1f11437 synth_event_trace_start -EXPORT_SYMBOL_GPL vmlinux 0xa205bc10 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xa2073245 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL vmlinux 0xa209e7d6 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa21a05f4 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0xa21c12fb nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL vmlinux 0xa21d5af9 handle_irq_desc -EXPORT_SYMBOL_GPL vmlinux 0xa2221a66 usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL vmlinux 0xa2273ca9 devlink_port_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0xa2299e1c blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0xa2312765 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0xa24e0877 snd_soc_find_dai -EXPORT_SYMBOL_GPL vmlinux 0xa24f07f3 trace_get_event_file -EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xa25a2399 devm_thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa25e4d4b usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0xa25ffd4e pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xa267db83 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL vmlinux 0xa2875ca6 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xa2899689 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xa290d6b5 usb_gadget_disconnect -EXPORT_SYMBOL_GPL vmlinux 0xa2980298 clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xa29e1d08 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0xa2a9ec37 fpga_region_free -EXPORT_SYMBOL_GPL vmlinux 0xa2aa357e __bio_crypt_clone -EXPORT_SYMBOL_GPL vmlinux 0xa2ac8f11 pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0xa2ae8262 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0xa2b282bd usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL vmlinux 0xa2b8f7b7 kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xa2c60b6b spi_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xa2d7eff4 v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported -EXPORT_SYMBOL_GPL vmlinux 0xa2fa0c96 gpiod_set_config -EXPORT_SYMBOL_GPL vmlinux 0xa2fff3d9 zynqmp_pm_mmio_write -EXPORT_SYMBOL_GPL vmlinux 0xa302c0f6 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0xa313718d __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0xa318de8e pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0xa31c5cb3 nfs_invalidate_atime -EXPORT_SYMBOL_GPL vmlinux 0xa33d3cdd fuse_conn_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa345364d inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xa3521562 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL vmlinux 0xa353a19f aie_get_error_categories -EXPORT_SYMBOL_GPL vmlinux 0xa3575dc8 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xa36d37d5 of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xa37643f9 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa38a6026 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa38e0574 v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL vmlinux 0xa39c192c dma_buf_move_notify -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3b7a829 iio_enum_write -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3c7c8a1 v4l2_event_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xa3d29f69 xdr_reserve_space -EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa3f7aa20 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0xa404904e blk_ksm_update_capabilities -EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa415c6b8 uart_console_device -EXPORT_SYMBOL_GPL vmlinux 0xa42640e8 zynqmp_pm_efuse_access -EXPORT_SYMBOL_GPL vmlinux 0xa428f394 i2c_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xa43f1792 msg_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0xa444c3ca topology_clear_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xa449d128 generic_fsdax_supported -EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa45169bb gether_get_ifname -EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq -EXPORT_SYMBOL_GPL vmlinux 0xa4593596 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print -EXPORT_SYMBOL_GPL vmlinux 0xa45d44fc zynqmp_pm_get_pll_frac_data -EXPORT_SYMBOL_GPL vmlinux 0xa46916ba elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0xa46e9e58 genphy_c45_pma_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa47a6c32 rpcauth_lookupcred -EXPORT_SYMBOL_GPL vmlinux 0xa47fbd35 svc_alien_sock -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa48418ec fsg_show_cdrom -EXPORT_SYMBOL_GPL vmlinux 0xa4888e75 bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0xa4b14492 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string -EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0xa4c37990 zynqmp_pm_get_operating_characteristic -EXPORT_SYMBOL_GPL vmlinux 0xa4cc19b3 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xa4cd7b70 __traceiter_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xa4cdb596 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0xa4d1f50d of_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xa4d6346f switchdev_handle_fdb_del_to_device -EXPORT_SYMBOL_GPL vmlinux 0xa4da3a16 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0xa4eb5793 sbitmap_weight -EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xa4f4affd acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0xa50c6611 security_path_chown -EXPORT_SYMBOL_GPL vmlinux 0xa5135279 crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0xa51a5079 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0xa51f8378 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL vmlinux 0xa526519c tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0xa52f8a9a kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa532cb8a media_remove_intf_link -EXPORT_SYMBOL_GPL vmlinux 0xa539febc kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xa53a83aa debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xa55c4397 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xa55f86d8 ahci_do_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xa56202ce blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0xa56cf635 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xa571f50e of_find_spi_device_by_node -EXPORT_SYMBOL_GPL vmlinux 0xa57783c6 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0xa578c6e6 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xa5b2abe0 clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0xa5cae92f fsg_ss_bulk_out_comp_desc -EXPORT_SYMBOL_GPL vmlinux 0xa5cd7a21 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5dc9fd3 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL vmlinux 0xa5e54ccb crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5f99b69 fsg_fs_function -EXPORT_SYMBOL_GPL vmlinux 0xa61c006e list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0xa61dfd7b edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0xa625dc3f pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xa63ae2bc usb_function_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa64d0765 fuse_request_end -EXPORT_SYMBOL_GPL vmlinux 0xa6578263 rdev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xa6735616 snd_soc_get_dai_id -EXPORT_SYMBOL_GPL vmlinux 0xa676ea01 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0xa67b7584 svc_seq_show -EXPORT_SYMBOL_GPL vmlinux 0xa67ffa85 nfs_symlink -EXPORT_SYMBOL_GPL vmlinux 0xa6841922 pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0xa69bcd1a scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0xa69db201 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0xa69f3ff5 usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name -EXPORT_SYMBOL_GPL vmlinux 0xa6a1933a devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xa6b0b278 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split -EXPORT_SYMBOL_GPL vmlinux 0xa6b7567c drm_gem_fb_create -EXPORT_SYMBOL_GPL vmlinux 0xa6c63297 cfi_qry_mode_off -EXPORT_SYMBOL_GPL vmlinux 0xa6cb81be regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xa6db3792 snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6ee15ca __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa6f5cfa0 svc_xprt_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xa6f6572c nfs4_set_ds_client -EXPORT_SYMBOL_GPL vmlinux 0xa6f86850 zynqmp_pm_get_node_status -EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa70cfb93 debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0xa717b064 gnttab_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xa721c1af irq_domain_update_bus_token -EXPORT_SYMBOL_GPL vmlinux 0xa728627f snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL vmlinux 0xa72c132b led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xa7384264 ahci_reset_controller -EXPORT_SYMBOL_GPL vmlinux 0xa74a7e90 blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0xa74d8d46 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0xa750ec26 serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0xa778426e of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0xa77dc849 call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0xa788700b copy_to_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0xa790f6b9 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xa79bc8e3 stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0xa7a27074 mrp_request_join -EXPORT_SYMBOL_GPL vmlinux 0xa7aa1586 blk_mq_alloc_sq_tag_set -EXPORT_SYMBOL_GPL vmlinux 0xa7ae1d2c kvm_clear_guest -EXPORT_SYMBOL_GPL vmlinux 0xa7b2e467 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xa7b8c8de iio_device_attach_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa7c9a2b6 phy_set_media -EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa7cf0589 ethnl_cable_test_free -EXPORT_SYMBOL_GPL vmlinux 0xa7e2e285 media_graph_walk_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xa7e39b05 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa7e64b3e spi_replace_transfers -EXPORT_SYMBOL_GPL vmlinux 0xa7e7641e ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0xa7f8048f i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0xa802a022 nfs_check_cache_invalid -EXPORT_SYMBOL_GPL vmlinux 0xa817a157 nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xa8257361 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL vmlinux 0xa825e878 crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xa8375972 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xa83eb46f pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0xa842de87 of_xlnx_bridge_get -EXPORT_SYMBOL_GPL vmlinux 0xa84b82b1 unregister_nfs_version -EXPORT_SYMBOL_GPL vmlinux 0xa84cf4ca mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa85ef6d5 af_alg_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0xa8821faf drm_gem_shmem_create -EXPORT_SYMBOL_GPL vmlinux 0xa8852609 edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0xa88ec0f2 tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL vmlinux 0xa8a2ef49 devm_device_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xa8a2fb9d clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xa8ac09e8 rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xa8be827b regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xa8d9f277 wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xa8e1b7f7 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL vmlinux 0xa8ef9ec8 wp_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0xa8fb77b4 dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0xa904c610 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xa91181c5 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa938a580 open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0xa94211dd fat_attach -EXPORT_SYMBOL_GPL vmlinux 0xa950d0bd edac_device_handle_ue_count -EXPORT_SYMBOL_GPL vmlinux 0xa95b4d97 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL vmlinux 0xa95df86c tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xa965210c syscon_regmap_lookup_by_phandle_args -EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0xa971766f fpga_bridge_free -EXPORT_SYMBOL_GPL vmlinux 0xa976f2bd nfs_generic_pg_test -EXPORT_SYMBOL_GPL vmlinux 0xa97ce3da clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0xa97cf600 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0xa97e00eb v4l2_detect_cvt -EXPORT_SYMBOL_GPL vmlinux 0xa98f0d09 drm_fb_cma_sync_non_coherent -EXPORT_SYMBOL_GPL vmlinux 0xa9943f65 stmpe811_adc_common_init -EXPORT_SYMBOL_GPL vmlinux 0xa99964e3 netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0xa99bcac3 iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa9a6fbaf cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0xa9a8e877 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0xa9b20818 regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xa9d2a004 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL vmlinux 0xa9d45e3d snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL vmlinux 0xa9d6afbe add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0xa9dbf923 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e74462 usb_ep_alloc_request -EXPORT_SYMBOL_GPL vmlinux 0xa9f3bdb4 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa31fd2d xprt_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaa3aca30 spi_mem_default_supports_op -EXPORT_SYMBOL_GPL vmlinux 0xaa4011f3 l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0xaa4d3a2e crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL vmlinux 0xaa539d3c ethnl_cable_test_amplitude -EXPORT_SYMBOL_GPL vmlinux 0xaa5948ec cfi_cmdset_0200 -EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa72080b ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0xaa75c85f mmu_notifier_range_update_to_read_only -EXPORT_SYMBOL_GPL vmlinux 0xaa7714cd put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xaa7984f2 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xaa7b6d0d bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0xaaa3e30c devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaaafd27e mtd_read_oob -EXPORT_SYMBOL_GPL vmlinux 0xaab23340 xfrm_calg_get_byname -EXPORT_SYMBOL_GPL vmlinux 0xaab93f38 __dp_aux_dp_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xaaca5200 dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0xaad96438 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL vmlinux 0xaada2d12 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0xaae3a065 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xaaf07fac nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0xaaf73d9f snd_ctl_disconnect_layer -EXPORT_SYMBOL_GPL vmlinux 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL vmlinux 0xab060841 zynqmp_pm_query_data -EXPORT_SYMBOL_GPL vmlinux 0xab079f78 hid_alloc_report_buf -EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab2d6ee6 xen_privcmd_fops -EXPORT_SYMBOL_GPL vmlinux 0xab2fe9c5 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xab475ceb rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xab505af5 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0xab528efc dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xab581367 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0xab5ac2ec dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0xab5addc5 __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0xab65acf1 nanddev_init -EXPORT_SYMBOL_GPL vmlinux 0xab6c68ac fsg_config_from_params -EXPORT_SYMBOL_GPL vmlinux 0xab6d091c dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0xab7ac8f0 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0xab7afc42 synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0xab7ec51f tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0xab864028 get_dev_pagemap -EXPORT_SYMBOL_GPL vmlinux 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL vmlinux 0xab8f805d pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0xab90d2bb __auxiliary_device_add -EXPORT_SYMBOL_GPL vmlinux 0xab9b9200 devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xab9d339d subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabd92eb7 nfs_sb_active -EXPORT_SYMBOL_GPL vmlinux 0xabdcd29b wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0xabea3294 devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xabf67a5a xen_privcmdbuf_fops -EXPORT_SYMBOL_GPL vmlinux 0xabfe4de6 i2c_parse_fw_timings -EXPORT_SYMBOL_GPL vmlinux 0xac0cb9d2 thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0xac20ddeb ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xac27f72b snd_soc_put_volsw -EXPORT_SYMBOL_GPL vmlinux 0xac297bbf ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0xac2e1421 l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0xac2fda62 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0xac36e490 __clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xac42e7dd tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0xac4b90fa usb_gadget_unmap_request -EXPORT_SYMBOL_GPL vmlinux 0xac527aca regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0xac570a6a fwnode_graph_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xac60d694 rpc_create -EXPORT_SYMBOL_GPL vmlinux 0xac63e093 u_audio_start_playback -EXPORT_SYMBOL_GPL vmlinux 0xac6ac659 rndis_deregister -EXPORT_SYMBOL_GPL vmlinux 0xac728cea n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0xac781588 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xac7d669d spi_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0xac9a6d84 mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacc578ab nfs_link -EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xacce26e9 ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0xacded41a device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xace22b90 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0xacef78f4 xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0xad014d57 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xad0a2676 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xad0b3083 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0xad0b6707 v4l2_event_queue -EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xad1ae4d7 u_audio_stop_playback -EXPORT_SYMBOL_GPL vmlinux 0xad23ee3c __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xad26d932 driver_register -EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0xad3f0bf3 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xad4670e5 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xad480e4b device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0xad497693 snd_dmaengine_pcm_close -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 0xad76a3f0 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xad808681 v4l2_fh_init -EXPORT_SYMBOL_GPL vmlinux 0xad855357 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL vmlinux 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0xad8ea027 ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0xad96fed5 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0xad973b30 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xad9d816f nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL vmlinux 0xad9e9b5f platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0xad9f6ba7 decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0xada36532 devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xadac2d3c vb2_queue_change_type -EXPORT_SYMBOL_GPL vmlinux 0xadb3810d usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xadb555b6 serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0xadba8a2c fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0xadc4045b gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xadcb445b netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0xaddd417d key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xade6028c rpc_clnt_show_stats -EXPORT_SYMBOL_GPL vmlinux 0xadf51d43 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock -EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xae11cd71 __get_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0xae1fb59f device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xae216f97 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae4602f2 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0xae46066c __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xae575c8f v4l2_phys_addr_for_input -EXPORT_SYMBOL_GPL vmlinux 0xae6202a8 xlnx_crtc_register -EXPORT_SYMBOL_GPL vmlinux 0xae64f1dd __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xae679efb usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae6c03d3 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0xae7333b9 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0xae737cbb __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae886f2a __traceiter_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xae8a087c svc_reserve -EXPORT_SYMBOL_GPL vmlinux 0xaeb62d76 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xaeb6f248 blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0xaeb8fb2d v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL vmlinux 0xaec46b2b kvm_irq_has_notifier -EXPORT_SYMBOL_GPL vmlinux 0xaed52a8b synth_event_gen_cmd_array_start -EXPORT_SYMBOL_GPL vmlinux 0xaed6c35d of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xaed71c00 drm_of_lvds_get_dual_link_pixel_order -EXPORT_SYMBOL_GPL vmlinux 0xaee236c6 cec_notifier_conn_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaee8548b __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL vmlinux 0xaee9b4b6 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0xaeee5b07 __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0xaef47227 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0xaef5697d v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL vmlinux 0xaefc889a auth_domain_put -EXPORT_SYMBOL_GPL vmlinux 0xaeff2b67 v4l2_device_register -EXPORT_SYMBOL_GPL vmlinux 0xaf012d89 ahci_shost_attrs -EXPORT_SYMBOL_GPL vmlinux 0xaf070b0b media_create_pad_link -EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0xaf0ea56d regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xaf201fa6 usb_ep_enable -EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xaf39fb60 dev_pm_opp_register_set_opp_helper -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 0xaf407efb regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0xaf46d51f skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0xaf51d5cd pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xaf537d1b regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL vmlinux 0xaf61441b ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xaf6feb7a vb2_fop_release -EXPORT_SYMBOL_GPL vmlinux 0xaf710842 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0xaf71c40f v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xaf87d754 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xaf8ec4ae devm_iio_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaf9dd40d mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0xafb0534c hid_validate_values -EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn -EXPORT_SYMBOL_GPL vmlinux 0xafb2f006 rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xafb627ce af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xafbb197a ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0xafc82439 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0xafc9e6c0 devm_iio_channel_get -EXPORT_SYMBOL_GPL vmlinux 0xafcf6d85 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xafd28e5c aie_partition_post_reinit -EXPORT_SYMBOL_GPL vmlinux 0xafd7302e phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0xafd9b5fd phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xafdf0b30 bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0xafe29e9d __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xafe54778 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xafe9f90e svc_create_xprt -EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xafee15bc nvmem_device_find -EXPORT_SYMBOL_GPL vmlinux 0xaffd1963 nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0xb00b79ff pci_aer_clear_nonfatal_status -EXPORT_SYMBOL_GPL vmlinux 0xb00e6c49 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL vmlinux 0xb020425e get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0xb028e7be of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb02d2c4f __traceiter_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xb02d4bdf ima_inode_hash -EXPORT_SYMBOL_GPL vmlinux 0xb03bd5aa regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb03c8b13 spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xb0508adc nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xb0695bf5 gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0xb06c4ba0 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xb06d21ed ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0xb06e62a9 gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb0892bfc bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb08f5a4b md_start -EXPORT_SYMBOL_GPL vmlinux 0xb0909632 devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xb0920ea2 dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xb09287a1 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL vmlinux 0xb093307f device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xb09c8d4d blk_ksm_is_superset -EXPORT_SYMBOL_GPL vmlinux 0xb0a6ef42 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xb0afd832 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xb0b69b70 of_i2c_get_board_info -EXPORT_SYMBOL_GPL vmlinux 0xb0b747c0 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0d3f64c hidinput_connect -EXPORT_SYMBOL_GPL vmlinux 0xb0d569d2 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xb0de1042 mptcp_token_get_sock -EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xb0e9c467 devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xb0f6e6b7 of_property_read_variable_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb1187fd8 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xb1189d58 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb121f764 ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0xb13ad636 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0xb13d41a0 v4l2_subdev_free_state -EXPORT_SYMBOL_GPL vmlinux 0xb13dc6c4 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xb142c2aa mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL vmlinux 0xb142ea69 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0xb144cb9e ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0xb153f593 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xb1555bfe dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0xb158dcad devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb17566f7 cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0xb17ead70 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0xb180f808 sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb186d306 of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xb18cd3a5 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xb1907070 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xb1953daa pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0xb1a14364 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb1a5d52d platform_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb1a83a7e sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0xb1aba6ff xdr_buf_trim -EXPORT_SYMBOL_GPL vmlinux 0xb1ad9392 rpc_bind_new_program -EXPORT_SYMBOL_GPL vmlinux 0xb1af6089 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0xb1b78e05 devm_nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0xb1bd2c16 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c5a1ef ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xb1cca4b7 wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1e8ff1e media_get_pad_index -EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string -EXPORT_SYMBOL_GPL vmlinux 0xb20060a4 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0xb2147130 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xb2197ff4 vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb230d2ec crypto_ecdh_encode_key -EXPORT_SYMBOL_GPL vmlinux 0xb238691e pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb2478d9d __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0xb250b071 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0xb261edbf component_del -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb2752866 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xb27d21a8 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xb28bfd2b request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0xb28dc6a9 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xb2997af7 serdev_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb29d2dd6 nfs_free_server -EXPORT_SYMBOL_GPL vmlinux 0xb29e74b1 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xb2aa2c72 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb2aa9c77 ahci_platform_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb2ac7736 iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0xb2af84e7 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0xb2b94d3e tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2c4c1e0 switchdev_handle_fdb_add_to_device -EXPORT_SYMBOL_GPL vmlinux 0xb2d8abb3 edac_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xb2d9dee7 fixed_phy_register_with_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xb2dbab9a irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2f15038 _copy_from_iter_flushcache -EXPORT_SYMBOL_GPL vmlinux 0xb2f9374e g_audio_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL vmlinux 0xb3145f05 devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0xb33ac45a regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb33ac8dc fat_scan -EXPORT_SYMBOL_GPL vmlinux 0xb3461741 watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0xb34b1aa6 __traceiter_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xb34b601a rcu_read_unlock_trace_special -EXPORT_SYMBOL_GPL vmlinux 0xb34d2cff crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0xb35f7de9 devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0xb371bc0f xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xb37d6ba3 gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0xb3a26a22 sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0xb3a47b01 md_find_rdev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xb3a53bbd l3mdev_ifindex_lookup_by_table_id -EXPORT_SYMBOL_GPL vmlinux 0xb3a6d7fe ethnl_cable_test_pulse -EXPORT_SYMBOL_GPL vmlinux 0xb3adf38d store_cdrom_address -EXPORT_SYMBOL_GPL vmlinux 0xb3b783ed mtd_erase -EXPORT_SYMBOL_GPL vmlinux 0xb3b90c12 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xb3fab774 __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xb4020d74 device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0xb40d673e zynqmp_pm_pinctrl_request -EXPORT_SYMBOL_GPL vmlinux 0xb418941b rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xb431a4b3 af_alg_alloc_areq -EXPORT_SYMBOL_GPL vmlinux 0xb43a1b0a pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xb43ba495 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0xb44aa600 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb45c175e led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb474592e vb2_write -EXPORT_SYMBOL_GPL vmlinux 0xb4794e83 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0xb47d6e1c ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0xb48f0f68 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xb48f3499 xlnx_register_event -EXPORT_SYMBOL_GPL vmlinux 0xb49a4900 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0xb4ada442 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4cf7635 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0xb4e398be __sdhci_read_caps -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb4edf0a1 devm_clk_get_prepared -EXPORT_SYMBOL_GPL vmlinux 0xb4fee2f1 extcon_set_property_sync -EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0xb50394ea regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0xb50b7454 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb510c250 raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xb5178f35 fpga_bridge_put -EXPORT_SYMBOL_GPL vmlinux 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL vmlinux 0xb533ce9b drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL vmlinux 0xb53c75c9 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0xb53d7796 crypto_engine_start -EXPORT_SYMBOL_GPL vmlinux 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL vmlinux 0xb5515fef security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0xb5529db4 netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0xb55de460 HYPERVISOR_dm_op -EXPORT_SYMBOL_GPL vmlinux 0xb5625c6c led_update_brightness -EXPORT_SYMBOL_GPL vmlinux 0xb56a58a4 drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL vmlinux 0xb57c4fc5 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xb58383fe vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL vmlinux 0xb5857eee dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0xb599a18b usbnet_probe -EXPORT_SYMBOL_GPL vmlinux 0xb5a27487 vp_modern_set_status -EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xb5b0f2fa cpufreq_dbs_governor_init -EXPORT_SYMBOL_GPL vmlinux 0xb5b6fb04 hv_get_vpreg -EXPORT_SYMBOL_GPL vmlinux 0xb5b848f9 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL vmlinux 0xb5bae5f9 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0xb5c112c0 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL vmlinux 0xb5c25118 xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0xb5d5ae4d clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0xb5d8ced8 gssd_running -EXPORT_SYMBOL_GPL vmlinux 0xb5dc6116 sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb5de31f2 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL vmlinux 0xb5e90933 gether_get_host_addr -EXPORT_SYMBOL_GPL vmlinux 0xb5eacb13 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL vmlinux 0xb5f227f1 bpfilter_umh_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xb5f76ef2 pci_epf_type_add_cfs -EXPORT_SYMBOL_GPL vmlinux 0xb6062121 dev_pm_genpd_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb608ddb9 nfs_permission -EXPORT_SYMBOL_GPL vmlinux 0xb6198bda fsnotify_get_group -EXPORT_SYMBOL_GPL vmlinux 0xb61cda49 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0xb624159e __traceiter_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xb625b58f ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb6324b4b irq_domain_translate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xb634df65 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xb636e63e dev_pm_opp_of_register_em -EXPORT_SYMBOL_GPL vmlinux 0xb6383b92 auth_domain_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb63d56ba debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm -EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xb65ce386 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL vmlinux 0xb676dc83 crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb68272f9 snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL vmlinux 0xb696671a snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL vmlinux 0xb6a4fb50 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL vmlinux 0xb6afcbc5 crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0xb6b37280 nfs_server_remove_lists -EXPORT_SYMBOL_GPL vmlinux 0xb6d0d002 lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xb6d634a4 acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0xb6d6d905 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xb6dbb76d extcon_set_state_sync -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6f45742 of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0xb6f4b031 __SCK__tp_func_vb2_qbuf -EXPORT_SYMBOL_GPL vmlinux 0xb6f884af xprt_complete_rqst -EXPORT_SYMBOL_GPL vmlinux 0xb703915f ubi_leb_erase -EXPORT_SYMBOL_GPL vmlinux 0xb7067255 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xb709554a cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xb7154690 dev_pm_opp_of_add_table_noclk -EXPORT_SYMBOL_GPL vmlinux 0xb71c566e nfs_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0xb72393ff aie_partition_get_freq -EXPORT_SYMBOL_GPL vmlinux 0xb72ebb9a attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb732ba21 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0xb73be794 xfrm_ealg_get_byidx -EXPORT_SYMBOL_GPL vmlinux 0xb7499403 st_register -EXPORT_SYMBOL_GPL vmlinux 0xb74d3332 rndis_uninit -EXPORT_SYMBOL_GPL vmlinux 0xb75a87a1 snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL vmlinux 0xb765a328 devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0xb775db55 alloc_ep_req -EXPORT_SYMBOL_GPL vmlinux 0xb782c1a3 hv_get_vpreg_128 -EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xb79066b9 fwnode_count_parents -EXPORT_SYMBOL_GPL vmlinux 0xb7990389 of_changeset_action -EXPORT_SYMBOL_GPL vmlinux 0xb79c9c6f nand_readid_op -EXPORT_SYMBOL_GPL vmlinux 0xb79f74e0 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7b5643a ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0xb7c516ea blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7c85141 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xb7cc6801 dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0xb7d26ed9 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xb7ddf408 irq_domain_create_simple -EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0xb7f83deb tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xb7fbd742 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xb7fe0361 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL vmlinux 0xb80f9f18 nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0xb812e6f3 crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0xb815eeb3 acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xb817fcd1 of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0xb834ad13 hisi_uncore_pmu_event_init -EXPORT_SYMBOL_GPL vmlinux 0xb83db282 phylink_connect_phy -EXPORT_SYMBOL_GPL vmlinux 0xb8438610 __mtd_next_device -EXPORT_SYMBOL_GPL vmlinux 0xb8461a61 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xb84f0198 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xb84fd503 fsg_show_ro -EXPORT_SYMBOL_GPL vmlinux 0xb85d2ecd acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0xb8641272 xvtc_generator_start -EXPORT_SYMBOL_GPL vmlinux 0xb8773d6c pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0xb87aaed1 nfs4_test_session_trunk -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 0xb88f1cde scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0xb8993fac __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xb89b109f nfs3_set_ds_client -EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb8a08e76 tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0xb8b24dd1 pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0xb8b7d6ae debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0xb8ba165d acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0xb8c08254 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xb8c4997f skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8eab0d7 acpi_spi_count_resources -EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb8fe381a tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0xb8ff24c0 devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0xb906b405 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0xb909ae2b power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable -EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address -EXPORT_SYMBOL_GPL vmlinux 0xb920d63a synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0xb92a8af3 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0xb9381d47 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0xb93b5c62 nlmclnt_done -EXPORT_SYMBOL_GPL vmlinux 0xb9449f8e device_match_any -EXPORT_SYMBOL_GPL vmlinux 0xb95ec325 poll_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xb962a1c0 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb9712576 hisi_uncore_pmu_add -EXPORT_SYMBOL_GPL vmlinux 0xb975f8e1 serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0xb9779444 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb98091b2 amba_apb_device_add -EXPORT_SYMBOL_GPL vmlinux 0xb9837cb0 bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0xb9a4ebfb register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xb9ae4c4d tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0xb9b93d4e pinctrl_find_gpio_range_from_pin -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 0xb9d2df39 __SCK__tp_func_vb2_dqbuf -EXPORT_SYMBOL_GPL vmlinux 0xb9d30ca8 nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0xb9fefc2f af_alg_sendpage -EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns -EXPORT_SYMBOL_GPL vmlinux 0xba125568 pinmux_generic_get_function_name -EXPORT_SYMBOL_GPL vmlinux 0xba143631 snd_soc_component_set_jack -EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba2c53c1 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0xba41e3e6 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0xba48a482 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0xba4f686c pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xba5306c8 security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL vmlinux 0xba5bf6ae kvm_write_guest -EXPORT_SYMBOL_GPL vmlinux 0xba61aa73 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xba6a31a2 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0xba6ba2e0 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL vmlinux 0xba70a0b7 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xba87ca70 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0xba90a7eb xprt_reserve_xprt -EXPORT_SYMBOL_GPL vmlinux 0xba9e53f4 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL vmlinux 0xba9f32ad fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0xbaa87e9e irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0xbaa882c0 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xbaa9b5e9 dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xbaa9b6aa nl_table -EXPORT_SYMBOL_GPL vmlinux 0xbaabcd50 md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbac67635 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xbaeecb9c inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbaf282b5 uprobe_unregister -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 0xbb17fc04 edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xbb28eb26 xenbus_free_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xbb3690c6 hid_disconnect -EXPORT_SYMBOL_GPL vmlinux 0xbb4d0333 rpc_setbufsize -EXPORT_SYMBOL_GPL vmlinux 0xbb4ff0e6 dma_resv_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0xbb565dbb media_graph_walk_init -EXPORT_SYMBOL_GPL vmlinux 0xbb5b7adb skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback -EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xbb6c6f79 __traceiter_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn -EXPORT_SYMBOL_GPL vmlinux 0xbb85a83b crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xbb88ed8e v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL vmlinux 0xbb8c6098 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0xbb9d7ba7 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xbba55329 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xbbabd5f1 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xbbd2a523 kvm_arch_ptp_get_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0xbbdb1ff4 usb_del_gadget -EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0xbbfdab7f __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xbc0046ad tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0xbc0f3fba led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0xbc2b8733 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL vmlinux 0xbc2cad28 of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xbc37c906 stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xbc429c57 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xbc44d699 account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0xbc45d469 icc_get_name -EXPORT_SYMBOL_GPL vmlinux 0xbc4b632e __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc7737f2 vb2_buffer_done -EXPORT_SYMBOL_GPL vmlinux 0xbc79c81a usb_del_gadget_udc -EXPORT_SYMBOL_GPL vmlinux 0xbc7b4209 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0xbc7ef5d7 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL vmlinux 0xbc82db62 phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xbc851264 sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0xbc88d29e gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xbc8a81a6 tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xbcb92c8b gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0xbcbecfad dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbcc96a47 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcd42c14 snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL vmlinux 0xbcd58d90 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0xbcd616f4 usb_gadget_check_config -EXPORT_SYMBOL_GPL vmlinux 0xbcd72db7 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbce45637 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbd0f3a03 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0xbd0f3ab7 lockd_up -EXPORT_SYMBOL_GPL vmlinux 0xbd1c419b serial8250_em485_stop_tx -EXPORT_SYMBOL_GPL vmlinux 0xbd2c8c84 pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0xbd2d45ca rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd43249e register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xbd4db29a debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xbd57f792 pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xbd6cfcb2 efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory -EXPORT_SYMBOL_GPL vmlinux 0xbd7ce9a4 cgroup_get_from_id -EXPORT_SYMBOL_GPL vmlinux 0xbd80720b vfs_getxattr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbd86fbae ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xbd8a7c37 device_register -EXPORT_SYMBOL_GPL vmlinux 0xbd8cfeef usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xbd93f096 xdr_decode_word -EXPORT_SYMBOL_GPL vmlinux 0xbda0724a of_map_id -EXPORT_SYMBOL_GPL vmlinux 0xbdaed387 devm_blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported -EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xbdb78e4c usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xbdc1f020 sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL vmlinux 0xbddc2a94 vchan_init -EXPORT_SYMBOL_GPL vmlinux 0xbde2aa48 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xbdee5e0e xenbus_dev_remove -EXPORT_SYMBOL_GPL vmlinux 0xbdf4060f rndis_get_next_response -EXPORT_SYMBOL_GPL vmlinux 0xbdf4340d mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL vmlinux 0xbe123808 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xbe12de18 regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0xbe274efc __kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0xbe296f59 rio_alloc_net -EXPORT_SYMBOL_GPL vmlinux 0xbe360e50 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe45ff93 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xbe4de675 cec_get_edid_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0xbe55604f hisi_uncore_pmu_read -EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xbe614d7d trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0xbe654062 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xbe66ae59 i2c_mux_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe6a21da rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0xbe72872d usb_gadget_probe_driver -EXPORT_SYMBOL_GPL vmlinux 0xbe7eed8a crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xbe80be8d v4l2_m2m_poll -EXPORT_SYMBOL_GPL vmlinux 0xbe8f91cd of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0xbe91a9c5 mtd_block_isreserved -EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbea21e0c dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeaa07a0 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL vmlinux 0xbeb72332 acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xbeb8bb4c devm_bitmap_zalloc -EXPORT_SYMBOL_GPL vmlinux 0xbebb88b6 __traceiter_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xbecdf665 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xbee24757 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xbeeb15ab devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0xbef46082 pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xbefeeb67 cros_ec_get_sensor_count -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf35a4b2 hid_hw_open -EXPORT_SYMBOL_GPL vmlinux 0xbf3fac7e bdev_disk_changed -EXPORT_SYMBOL_GPL vmlinux 0xbf48712b usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0xbf4a214d xdr_init_decode -EXPORT_SYMBOL_GPL vmlinux 0xbf4e4a74 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0xbf530f2a pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0xbf57176b usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0xbf6181cb fpga_mgr_put -EXPORT_SYMBOL_GPL vmlinux 0xbf64e6e7 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0xbf65e3ea skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0xbf6cb9e7 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL vmlinux 0xbf79a798 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xbf79c1c4 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0xbf7b417a pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0xbf7e7f01 devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xbf84a5d5 platform_irqchip_probe -EXPORT_SYMBOL_GPL vmlinux 0xbf88e89e genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0xbf8f3c78 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0xbf8f8e2f rndis_set_param_vendor -EXPORT_SYMBOL_GPL vmlinux 0xbf9190b2 devlink_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL vmlinux 0xbfb436d5 rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfc958a0 fsnotify_put_mark -EXPORT_SYMBOL_GPL vmlinux 0xbfe387c5 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfe8d266 vb2_core_queue_release -EXPORT_SYMBOL_GPL vmlinux 0xbfe94672 nand_reset -EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0xc01e8dda zynqmp_pm_get_meta_header -EXPORT_SYMBOL_GPL vmlinux 0xc020a282 i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0xc0328f64 sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0xc03910d3 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xc03ae2d0 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL vmlinux 0xc03da4b9 fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0xc03e7b2b hidraw_report_event -EXPORT_SYMBOL_GPL vmlinux 0xc04579a8 media_devnode_remove -EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq -EXPORT_SYMBOL_GPL vmlinux 0xc06cf60e nfs_pgio_header_free -EXPORT_SYMBOL_GPL vmlinux 0xc071d520 uart_xchar_out -EXPORT_SYMBOL_GPL vmlinux 0xc07c56a1 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL vmlinux 0xc09021b2 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL vmlinux 0xc09a9992 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0xc0a01527 gserial_set_console -EXPORT_SYMBOL_GPL vmlinux 0xc0a12318 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xc0a81bf8 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xc0a8f4be phylink_resume -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0d93510 led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0xc0d98eef media_pipeline_stop -EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0de977a xenbus_probe_node -EXPORT_SYMBOL_GPL vmlinux 0xc0e72b9f nfs_alloc_server -EXPORT_SYMBOL_GPL vmlinux 0xc0ea23ea nfs_access_add_cache -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0fe9235 crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support -EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc1216e9c cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL vmlinux 0xc1287131 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL vmlinux 0xc138250b snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0xc139ced7 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0xc13a305d dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0xc13c46a4 dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0xc1541de1 usbnet_get_msglevel -EXPORT_SYMBOL_GPL vmlinux 0xc15ed992 nfs_access_set_mask -EXPORT_SYMBOL_GPL vmlinux 0xc1613a82 kvm_io_bus_write -EXPORT_SYMBOL_GPL vmlinux 0xc1639991 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xc163f6b7 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0xc16ba219 nfs42_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0xc16f2887 cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc1754f0b usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xc182343e ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0xc19572c7 lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0xc196f333 devm_namespace_disable -EXPORT_SYMBOL_GPL vmlinux 0xc19cd018 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0xc19e2538 hid_add_device -EXPORT_SYMBOL_GPL vmlinux 0xc1b3f267 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xc1bf3f78 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL vmlinux 0xc1d03c71 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xc1d15a4c phylink_set_port_modes -EXPORT_SYMBOL_GPL vmlinux 0xc1d33f0a zynqmp_pm_set_wakeup_source -EXPORT_SYMBOL_GPL vmlinux 0xc1dbaac8 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc1e4e55f nfs_show_options -EXPORT_SYMBOL_GPL vmlinux 0xc1f766b8 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0xc1fe2201 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xc1ffbccb device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xc20925af ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0xc214bb85 blk_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc23095d3 fsg_lun_open -EXPORT_SYMBOL_GPL vmlinux 0xc231199b v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL vmlinux 0xc233a01e rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xc239ba4a unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xc25096c7 da9150_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xc25871ae rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xc25ce2a5 skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xc26d75ad event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0xc270cf9a snd_soc_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xc27d4616 hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0xc281e4e9 irq_chip_set_parent_state -EXPORT_SYMBOL_GPL vmlinux 0xc2825926 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL vmlinux 0xc2872dc8 cec_s_conn_info -EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc29767ab devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata -EXPORT_SYMBOL_GPL vmlinux 0xc2a5c08b usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2acc049 hid_resolv_usage -EXPORT_SYMBOL_GPL vmlinux 0xc2b056df lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0xc2b9773a __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xc2b9a153 fsnotify_alloc_user_group -EXPORT_SYMBOL_GPL vmlinux 0xc2ba424c phy_speed_down -EXPORT_SYMBOL_GPL vmlinux 0xc2bb546e usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2d69ca6 gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0xc2da225a led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2ea006b serial8250_em485_start_tx -EXPORT_SYMBOL_GPL vmlinux 0xc2f3286f extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0xc2f83336 svc_set_num_threads_sync -EXPORT_SYMBOL_GPL vmlinux 0xc3069f59 devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0xc30b1bea gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xc30ccfaa spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0xc30e3e4d clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xc3112de3 svc_xprt_put -EXPORT_SYMBOL_GPL vmlinux 0xc329c33e irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0xc33845b1 skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0xc340e246 zynqmp_pm_request_node -EXPORT_SYMBOL_GPL vmlinux 0xc34102fc led_trigger_write -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc3513dbc eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0xc353e8da sdhci_enable_clk -EXPORT_SYMBOL_GPL vmlinux 0xc35920fc regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc35d99f0 of_icc_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0xc36ad10c ip_route_output_tunnel -EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xc378e6c5 dev_pm_genpd_set_performance_state -EXPORT_SYMBOL_GPL vmlinux 0xc37a2cf3 irq_chip_eoi_parent -EXPORT_SYMBOL_GPL vmlinux 0xc37c9b80 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc383ab5e xprt_release_rqst_cong -EXPORT_SYMBOL_GPL vmlinux 0xc3906c58 phylink_ethtool_ksettings_set -EXPORT_SYMBOL_GPL vmlinux 0xc3a10941 of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xc3a255e0 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xc3a290ee input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL vmlinux 0xc3a8ddbd fpga_mgr_create -EXPORT_SYMBOL_GPL vmlinux 0xc3c2d342 __mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3ca89ee crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xc3d367f6 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3f4c102 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0xc403cd4f ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc4046340 usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xc4135199 put_pid -EXPORT_SYMBOL_GPL vmlinux 0xc4142918 svc_rpcb_setup -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc4348fea xdr_inline_decode -EXPORT_SYMBOL_GPL vmlinux 0xc4388ea6 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xc44a6aea skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0xc44c0c4e zynqmp_pm_fpga_get_version -EXPORT_SYMBOL_GPL vmlinux 0xc4539d5f syscon_regmap_lookup_by_phandle_optional -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc4597d9a pskb_put -EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create -EXPORT_SYMBOL_GPL vmlinux 0xc4707f84 mmu_interval_read_begin -EXPORT_SYMBOL_GPL vmlinux 0xc47133fb exportfs_decode_fh_raw -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc473a83e nfs_close_context -EXPORT_SYMBOL_GPL vmlinux 0xc47971ad v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL vmlinux 0xc4832ec3 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc49a8cdf gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xc49d6631 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xc4adf53c snd_soc_lookup_component -EXPORT_SYMBOL_GPL vmlinux 0xc4b31ee1 irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xc4b48497 iio_enum_available_read -EXPORT_SYMBOL_GPL vmlinux 0xc4bece7b usb_check_int_endpoints -EXPORT_SYMBOL_GPL vmlinux 0xc4befd0a posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xc4c1bd8c hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0xc4cc5aa3 pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0xc4cd5dcb hid_lookup_quirk -EXPORT_SYMBOL_GPL vmlinux 0xc4d0dfe6 snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL vmlinux 0xc4d54f1e attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0xc4d75e4f mtd_unlock -EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc50ee5e8 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL vmlinux 0xc510c148 clk_mux_val_to_index -EXPORT_SYMBOL_GPL vmlinux 0xc51e46f7 svc_rqst_replace_page -EXPORT_SYMBOL_GPL vmlinux 0xc5268b9b wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0xc526f23f skb_segment -EXPORT_SYMBOL_GPL vmlinux 0xc53e1c51 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xc555ebd2 inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xc55c0077 snd_soc_of_parse_node_prefix -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 0xc5719e60 regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array -EXPORT_SYMBOL_GPL vmlinux 0xc5804d5a ffs_single_dev -EXPORT_SYMBOL_GPL vmlinux 0xc586e814 usb_of_get_device_node -EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc58be0d1 skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0xc5a187fe nfs_flock -EXPORT_SYMBOL_GPL vmlinux 0xc5a55ef2 clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5b5c669 ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0xc5baaec4 alloc_nfs_open_context -EXPORT_SYMBOL_GPL vmlinux 0xc5daf1a8 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0xc5ef3bc7 srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0xc5f95b80 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc601b137 phylink_create -EXPORT_SYMBOL_GPL vmlinux 0xc60af855 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0xc6167479 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc61e61f8 bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xc61f91d6 pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0xc6417aa6 gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xc649007c virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned -EXPORT_SYMBOL_GPL vmlinux 0xc659ec15 __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc662ecda __tracepoint_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0xc668adce devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc672a391 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xc67471c3 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xc678aa76 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read -EXPORT_SYMBOL_GPL vmlinux 0xc698c987 gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0xc69942a4 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6a6b873 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xc6a922d5 ip_icmp_error_rfc4884 -EXPORT_SYMBOL_GPL vmlinux 0xc6affe31 mdiobus_modify -EXPORT_SYMBOL_GPL vmlinux 0xc6b12b73 tda827x_attach -EXPORT_SYMBOL_GPL vmlinux 0xc6b1fdbe xfrm_aalg_get_byidx -EXPORT_SYMBOL_GPL vmlinux 0xc6bbdaed nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xc6c53f6b pci_dev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xc6dc1fbc pin_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within -EXPORT_SYMBOL_GPL vmlinux 0xc6ef619f subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0xc6f5e461 device_remove_properties -EXPORT_SYMBOL_GPL vmlinux 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL vmlinux 0xc6fde710 pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xc700c8ed iio_read_channel_processed_scale -EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc70b2687 serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc7209610 tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0xc7238239 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0xc723c7c5 cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0xc729df7c acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xc73df3b7 alloc_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0xc742d6e8 __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL vmlinux 0xc7484191 nf_route -EXPORT_SYMBOL_GPL vmlinux 0xc75182ed xdr_read_pages -EXPORT_SYMBOL_GPL vmlinux 0xc768929b pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0xc76f8048 __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0xc778ac2a relay_open -EXPORT_SYMBOL_GPL vmlinux 0xc7790deb vb2_core_streamoff -EXPORT_SYMBOL_GPL vmlinux 0xc7826fa0 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc783a66a nvmem_cell_read_u8 -EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xc78e3d4b platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7a43d53 devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL vmlinux 0xc7b45aa4 __SCK__tp_func_vb2_buf_done -EXPORT_SYMBOL_GPL vmlinux 0xc7b611e7 drm_bridge_connector_enable_hpd -EXPORT_SYMBOL_GPL vmlinux 0xc7bccfbf opens_in_grace -EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0xc7c3cee0 of_property_read_variable_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xc7c97c9c dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0xc7ddd09e subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer -EXPORT_SYMBOL_GPL vmlinux 0xc7f33529 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc7fadf9f of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0xc7fb3ab5 fscrypt_set_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0xc7fcb230 nfs4_init_ds_session -EXPORT_SYMBOL_GPL vmlinux 0xc7fccb14 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xc7fcd4b1 __devm_rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0xc80486e6 usb_gadget_map_request_by_dev -EXPORT_SYMBOL_GPL vmlinux 0xc8048ff4 devm_of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xc8076e2a exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0xc807acbc vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0xc81c2c08 sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xc81c66c5 media_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL vmlinux 0xc827067f kthread_data -EXPORT_SYMBOL_GPL vmlinux 0xc82780e1 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xc83cd663 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0xc8403bb5 alloc_empty_file -EXPORT_SYMBOL_GPL vmlinux 0xc85096db thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc859d66f __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xc861ec54 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xc869e8a1 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xc86db385 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0xc877239e xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xc87a9163 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xc88abf25 xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0xc890c836 mmc_cmdq_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8a2deb4 tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0xc8a8cc81 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xc8c3b03f of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0xc8cb9847 device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8e4f6df iommu_device_sysfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL vmlinux 0xc902deb0 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0xc9141bb6 blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0xc918e8e3 acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0xc91dbe33 lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero -EXPORT_SYMBOL_GPL vmlinux 0xc92b9d21 xenbus_dev_error -EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0xc9377c6e led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0xc93c1cca usbnet_resume_rx -EXPORT_SYMBOL_GPL vmlinux 0xc93db078 of_genpd_add_provider_onecell -EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc947d8b1 ahci_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xc94f8edb __traceiter_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xc94f9d03 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc95cb1d8 __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xc95d7533 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc9688e6b tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0xc970a804 snd_soc_component_compr_open -EXPORT_SYMBOL_GPL vmlinux 0xc9768d18 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xc97dcc61 vb2_queue_release -EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc98e08bf nanddev_mtd_erase -EXPORT_SYMBOL_GPL vmlinux 0xc99317ca virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0xc99f4e24 msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0xc9a23a76 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL vmlinux 0xc9cd32c1 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0xc9d7a723 pci_hp_del -EXPORT_SYMBOL_GPL vmlinux 0xc9dc7992 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL vmlinux 0xc9e703b5 cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0xc9eaee75 nvdimm_to_bus -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 0xca08fa99 clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0xca21fce4 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0xca3653eb _copy_from_pages -EXPORT_SYMBOL_GPL vmlinux 0xca3b0c44 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xca3d085b bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0xca423e59 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0xca470fa7 uart_try_toggle_sysrq -EXPORT_SYMBOL_GPL vmlinux 0xca4aab77 sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0xca4c3edf zynqmp_pm_bbram_write_usrdata -EXPORT_SYMBOL_GPL vmlinux 0xca548f5d zynqmp_pm_set_max_latency -EXPORT_SYMBOL_GPL vmlinux 0xca55931b pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0xca5a83e2 cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL vmlinux 0xca5eb57f tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0xca6c1662 auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0xca6f6933 bpf_preload_ops -EXPORT_SYMBOL_GPL vmlinux 0xca7d51b1 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca861b20 snd_soc_cnew -EXPORT_SYMBOL_GPL vmlinux 0xca915716 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xca94da65 pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0xca9927aa fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0xca9ae718 devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0xca9d8081 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL vmlinux 0xca9f9071 devlink_param_register -EXPORT_SYMBOL_GPL vmlinux 0xcaacdfdf thermal_zone_device_enable -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcad0cf5b handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0xcad4fba1 genphy_c45_loopback -EXPORT_SYMBOL_GPL vmlinux 0xcad6c7df access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0xcae003e7 nvdimm_has_flush -EXPORT_SYMBOL_GPL vmlinux 0xcae97d0d proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xcaf4025f irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xcb054893 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb1b8b8a rpc_count_iostats -EXPORT_SYMBOL_GPL vmlinux 0xcb20432a edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xcb287a66 zynqmp_pm_bbram_read_usrdata -EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb5885b5 ahci_reset_em -EXPORT_SYMBOL_GPL vmlinux 0xcb599347 shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0xcb5c5981 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0xcb71f84b snd_ctl_register_layer -EXPORT_SYMBOL_GPL vmlinux 0xcb7675d4 hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL vmlinux 0xcb895a45 dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0xcb8ba55a drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL vmlinux 0xcba53983 spi_take_timestamp_pre -EXPORT_SYMBOL_GPL vmlinux 0xcbb200ad __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0xcbb2a118 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0xcbb35cc4 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xcbc31f18 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xcbd4e2bd ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcbd60dfb write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL vmlinux 0xcbd95caa serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0xcbda7386 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xcbdf95ac cache_create_net -EXPORT_SYMBOL_GPL vmlinux 0xcbe42607 simple_tuner_attach -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbede17a apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xcbf7e77f irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xcc0abf65 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xcc0d1b9b exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0xcc10cb3f v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL vmlinux 0xcc16a0d3 vb2_dqbuf -EXPORT_SYMBOL_GPL vmlinux 0xcc1b8ce8 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL vmlinux 0xcc236616 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xcc2b3645 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap -EXPORT_SYMBOL_GPL vmlinux 0xcc334c5b lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0xcc34bd9a regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL vmlinux 0xcc557bfa sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xcc5d5722 snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL vmlinux 0xcc5dd575 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0xcc5f7ce5 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL vmlinux 0xcc7743f1 devlink_region_snapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0xcc868eca sdhci_cqe_irq -EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable -EXPORT_SYMBOL_GPL vmlinux 0xcc92a004 dev_pm_opp_set_prop_name -EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xcc9d078c snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL vmlinux 0xcca8808a nand_ecc_init_req_tweaking -EXPORT_SYMBOL_GPL vmlinux 0xccb668e4 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL vmlinux 0xccb67f24 pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0xccce3fae devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xcceb888b usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xcd089e1c blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0xcd08bf00 drm_gem_cma_vmap -EXPORT_SYMBOL_GPL vmlinux 0xcd16189e spi_res_add -EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd2f979b hid_output_report -EXPORT_SYMBOL_GPL vmlinux 0xcd3622f7 v4l2_fh_release -EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory -EXPORT_SYMBOL_GPL vmlinux 0xcd3fd2e1 cache_check -EXPORT_SYMBOL_GPL vmlinux 0xcd4831dc regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xcd63e1eb devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcd657de8 devm_iio_triggered_buffer_setup_ext -EXPORT_SYMBOL_GPL vmlinux 0xcd66478d pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd86e52a dev_pm_qos_add_notifier -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 0xcda99164 __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdb88173 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xcdbe82d1 irq_get_default_host -EXPORT_SYMBOL_GPL vmlinux 0xcdc0ecf7 ubi_leb_map -EXPORT_SYMBOL_GPL vmlinux 0xcdc86b55 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdcb15c2 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xcdcca5d9 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL vmlinux 0xcdd6e420 __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0xcde0e948 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xcde33b16 nfs_create -EXPORT_SYMBOL_GPL vmlinux 0xcdece1b0 kvm_write_guest_offset_cached -EXPORT_SYMBOL_GPL vmlinux 0xcdfa7b83 espintcp_queue_out -EXPORT_SYMBOL_GPL vmlinux 0xcdfee862 sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0xce070267 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0xce0ce1ea nfs_path -EXPORT_SYMBOL_GPL vmlinux 0xce316d7e zynqmp_pm_set_sd_tapdelay -EXPORT_SYMBOL_GPL vmlinux 0xce4fb318 debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0xce598ef2 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xce660d16 usb_function_activate -EXPORT_SYMBOL_GPL vmlinux 0xce6719e2 dw_pcie_setup_rc -EXPORT_SYMBOL_GPL vmlinux 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce71fdc8 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0xce72248d clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xce8ed362 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0xcea66846 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0xceabdb1a bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0xceac8674 zynqmp_pm_read_pggs -EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xceb702c1 __traceiter_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0xcecef9b6 snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL vmlinux 0xced443e7 devm_spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0xced4d5ba fsg_store_nofua -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply -EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xcef0576d pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0xcef63d9d sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xcef7350d cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL vmlinux 0xcefa0fbf sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0xcf0172c1 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0xcf0bed44 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0xcf0f52c1 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xcf29b95f __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL vmlinux 0xcf3dae47 phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0xcf3f19d7 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xcf419b22 u_audio_start_capture -EXPORT_SYMBOL_GPL vmlinux 0xcf4ac5e3 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xcf52fd39 irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0xcf6769fc tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xcf6aa422 usb_gadget_deactivate -EXPORT_SYMBOL_GPL vmlinux 0xcf7f884d nfs_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0xcf7fe42d rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0xcf8bc246 put_nfs_open_context -EXPORT_SYMBOL_GPL vmlinux 0xcf8d0257 switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0xcfa97e13 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0xcfaf8f7d ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcfbd29b5 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xcfc544e9 tty_kopen_shared -EXPORT_SYMBOL_GPL vmlinux 0xcfc72d31 nfs_put_lock_context -EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0xcfd044b0 v4l2_async_register_subdev_sensor -EXPORT_SYMBOL_GPL vmlinux 0xcfd2dd03 addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xcfe30e87 acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0xcff11755 alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0xcff5e792 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xcff92f90 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xcffd793e hyperv_report_panic -EXPORT_SYMBOL_GPL vmlinux 0xcfff6aad thp_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0xd006c6dd dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op -EXPORT_SYMBOL_GPL vmlinux 0xd0280419 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL vmlinux 0xd02f1963 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xd0316fca nand_read_data_op -EXPORT_SYMBOL_GPL vmlinux 0xd034392d v4l2_match_dv_timings -EXPORT_SYMBOL_GPL vmlinux 0xd037e17e sdio_enable_func -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 0xd0510e40 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xd0648f81 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd0671e19 fat_update_time -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd080baf1 mtd_write_oob -EXPORT_SYMBOL_GPL vmlinux 0xd08fdd7b phy_validate -EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type -EXPORT_SYMBOL_GPL vmlinux 0xd09d32c3 dax_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xd09fe543 soc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd0a8c348 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd0af23df ubi_do_get_device_info -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c2e5d3 __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0xd0cc8a86 device_move -EXPORT_SYMBOL_GPL vmlinux 0xd0ce086d devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xd0d63f49 usb_initialize_gadget -EXPORT_SYMBOL_GPL vmlinux 0xd0d7e4c8 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0e5e0b6 divider_ro_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xd0e8c2e7 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL vmlinux 0xd0ec348d pnfs_free_commit_array -EXPORT_SYMBOL_GPL vmlinux 0xd0ecfaad __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL vmlinux 0xd0ed002c drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL vmlinux 0xd0f74cf0 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0xd101f25c xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0xd10696e6 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL vmlinux 0xd1096907 disk_update_readahead -EXPORT_SYMBOL_GPL vmlinux 0xd10c6d83 synth_event_create -EXPORT_SYMBOL_GPL vmlinux 0xd10d1d5b rpc_machine_cred -EXPORT_SYMBOL_GPL vmlinux 0xd10d7b28 mrp_register_application -EXPORT_SYMBOL_GPL vmlinux 0xd111c75f svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL vmlinux 0xd11fe595 zynqmp_pm_set_sgmii_mode -EXPORT_SYMBOL_GPL vmlinux 0xd12f2caf blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xd1386738 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0xd13d54bf acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear -EXPORT_SYMBOL_GPL vmlinux 0xd1514dbb xdr_terminate_string -EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd15d567e media_create_intf_link -EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0xd1918bd4 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xd19e81c8 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xd19eac6e free_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0xd1a0699d __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xd1a3e8e0 fsg_common_create_luns -EXPORT_SYMBOL_GPL vmlinux 0xd1a99786 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xd1acac80 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0xd1aee874 pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0xd1b2fe07 vb2_create_bufs -EXPORT_SYMBOL_GPL vmlinux 0xd1b54c4d of_device_request_module -EXPORT_SYMBOL_GPL vmlinux 0xd1b77e76 ata_host_put -EXPORT_SYMBOL_GPL vmlinux 0xd1bcdad3 spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0xd1c7825e relay_reset -EXPORT_SYMBOL_GPL vmlinux 0xd1cb53ce lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1d31539 acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0xd1eb04cf svcauth_unix_set_client -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1f50af2 debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd1f68892 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL vmlinux 0xd1fbe8d8 nvdimm_security_setup_events -EXPORT_SYMBOL_GPL vmlinux 0xd200de7f uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0xd20b74bc extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0xd20e5277 xvip_get_format_by_code -EXPORT_SYMBOL_GPL vmlinux 0xd20e5c26 usb_interface_id -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 0xd220b2c3 snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource -EXPORT_SYMBOL_GPL vmlinux 0xd246bc38 ahci_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xd24aac40 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init -EXPORT_SYMBOL_GPL vmlinux 0xd2521dad tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xd255b9d6 scmi_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd257f8f2 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd25900d2 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0xd264c4be tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xd2906f2c sock_map_close -EXPORT_SYMBOL_GPL vmlinux 0xd29d97a1 crypto_comp_compress -EXPORT_SYMBOL_GPL vmlinux 0xd2a24647 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2b72778 fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0xd2c12d19 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xd2c573de xdr_buf_from_iov -EXPORT_SYMBOL_GPL vmlinux 0xd2da8cb1 vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0xd2df093e rpc_shutdown_client -EXPORT_SYMBOL_GPL vmlinux 0xd2df66ed __percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0xd2e63e38 devm_thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL vmlinux 0xd2ef1db5 security_path_truncate -EXPORT_SYMBOL_GPL vmlinux 0xd2f836d9 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xd2ffaa00 __traceiter_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xd3017bc9 media_request_get_by_fd -EXPORT_SYMBOL_GPL vmlinux 0xd30f3ec2 hid_hw_stop -EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xd31fdda5 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xd324f678 spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0xd329f0c1 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed -EXPORT_SYMBOL_GPL vmlinux 0xd33b9ced __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0xd351fe10 nfs4_setup_sequence -EXPORT_SYMBOL_GPL vmlinux 0xd3551a76 zynqmp_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd36278b4 iio_map_array_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd362ecd9 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xd3807cee serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xd383d8aa device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0xd3863d51 snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xd3881db7 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL vmlinux 0xd38a5765 bc_svc_process -EXPORT_SYMBOL_GPL vmlinux 0xd38f6d60 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xd3919afa __sdhci_add_host -EXPORT_SYMBOL_GPL vmlinux 0xd398f269 tty_get_icount -EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3b4ff51 stp_proto_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd3bf30ca ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0xd3c672b8 nand_subop_get_data_len -EXPORT_SYMBOL_GPL vmlinux 0xd3c6b8bf of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0xd3d45268 devm_thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0xd3e557a4 snd_card_rw_proc_new -EXPORT_SYMBOL_GPL vmlinux 0xd3e63e14 pci_get_dsn -EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap -EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage -EXPORT_SYMBOL_GPL vmlinux 0xd3f9f0f8 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xd3ff56e6 devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0xd4021fa1 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd40f7654 v4l2_subdev_alloc_state -EXPORT_SYMBOL_GPL vmlinux 0xd41d1e4b dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0xd41ff2ac nand_subop_get_data_start_off -EXPORT_SYMBOL_GPL vmlinux 0xd4221696 gnttab_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xd426994d regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count -EXPORT_SYMBOL_GPL vmlinux 0xd42caf2f rpc_unlink -EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd439d566 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0xd43d5c7d dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0xd442deee set_secondary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd459d6fc xprt_free -EXPORT_SYMBOL_GPL vmlinux 0xd45a606b phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0xd4668bfa __trace_array_puts -EXPORT_SYMBOL_GPL vmlinux 0xd46a9df8 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs -EXPORT_SYMBOL_GPL vmlinux 0xd46cd3b3 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0xd470ae8e thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xd470df4d cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0xd47739c5 nvmem_cell_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0xd4832e0f devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd487221c register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xd48918a9 of_reserved_mem_device_init_by_idx -EXPORT_SYMBOL_GPL vmlinux 0xd49269a5 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xd4a18e60 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done -EXPORT_SYMBOL_GPL vmlinux 0xd4b729d6 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c478c8 aie_flush_errors -EXPORT_SYMBOL_GPL vmlinux 0xd4cb51aa bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xd4cf97d7 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd4d62443 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd4fa50f7 dma_async_device_channel_register -EXPORT_SYMBOL_GPL vmlinux 0xd50edcd2 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0xd51045c9 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xd51cbc4c cec_delete_adapter -EXPORT_SYMBOL_GPL vmlinux 0xd52fee96 pl08x_filter_id -EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value -EXPORT_SYMBOL_GPL vmlinux 0xd536cd49 vb2_core_reqbufs -EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role -EXPORT_SYMBOL_GPL vmlinux 0xd54fb35e nfs_commit_inode -EXPORT_SYMBOL_GPL vmlinux 0xd5545adf gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd5643c62 xdr_write_pages -EXPORT_SYMBOL_GPL vmlinux 0xd5653d13 arm64_mm_context_put -EXPORT_SYMBOL_GPL vmlinux 0xd5720153 serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0xd57fbd31 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd5851bbd strp_done -EXPORT_SYMBOL_GPL vmlinux 0xd587dbfe __page_mapcount -EXPORT_SYMBOL_GPL vmlinux 0xd595f3b2 cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd5b219a9 sdhci_switch_external_dma -EXPORT_SYMBOL_GPL vmlinux 0xd5b32e4a sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0xd5b7e6c3 gnttab_foreach_grant_in_range -EXPORT_SYMBOL_GPL vmlinux 0xd5daa200 usbnet_skb_return -EXPORT_SYMBOL_GPL vmlinux 0xd5e376d3 __traceiter_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0xd5e5db55 devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xd5e76e9e rpc_delay -EXPORT_SYMBOL_GPL vmlinux 0xd5ee94ed devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xd5f1ddbe of_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xd610dcce bio_trim -EXPORT_SYMBOL_GPL vmlinux 0xd6205e03 security_path_rmdir -EXPORT_SYMBOL_GPL vmlinux 0xd62fa43d crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0xd62ff08b fscrypt_set_bio_crypt_ctx_bh -EXPORT_SYMBOL_GPL vmlinux 0xd633d407 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xd6381bfc dev_pm_opp_of_find_icc_paths -EXPORT_SYMBOL_GPL vmlinux 0xd64c0107 get_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0xd64df153 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd653771e __iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0xd6586fae watchdog_set_last_hw_keepalive -EXPORT_SYMBOL_GPL vmlinux 0xd65ddd29 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xd6680a03 phy_configure -EXPORT_SYMBOL_GPL vmlinux 0xd66cdcd8 icc_provider_del -EXPORT_SYMBOL_GPL vmlinux 0xd66fc992 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd6777fb7 generic_online_page -EXPORT_SYMBOL_GPL vmlinux 0xd67aaf62 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd67fef9e tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0xd6a1a823 skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0xd6a7a48c spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0xd6ab03ff spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0xd6bb90b0 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0xd6bdcf4a usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0xd6c8d95c sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL vmlinux 0xd6cc0492 nfs_getattr -EXPORT_SYMBOL_GPL vmlinux 0xd6cc34c2 __traceiter_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0xd6d34b3c xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL vmlinux 0xd6f096b8 dst_blackhole_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xd6f50cf7 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL vmlinux 0xd6f51ac5 __media_entity_remove_links -EXPORT_SYMBOL_GPL vmlinux 0xd6f5926d snd_ac97_reset -EXPORT_SYMBOL_GPL vmlinux 0xd6fb30dd mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xd704bade relay_close -EXPORT_SYMBOL_GPL vmlinux 0xd708a1d3 svc_bind -EXPORT_SYMBOL_GPL vmlinux 0xd70fbc11 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0xd70fca5e dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0xd71c9ac8 pci_create_slot -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 0xd74585bd usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xd75c260e gpiochip_irqchip_add_domain -EXPORT_SYMBOL_GPL vmlinux 0xd760cfab usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd769c1fc gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0xd76d16ad snd_soc_component_initialize -EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xd7799b99 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xd78cd852 usb_string_ids_tab -EXPORT_SYMBOL_GPL vmlinux 0xd790f118 blk_ksm_register -EXPORT_SYMBOL_GPL vmlinux 0xd790f925 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL vmlinux 0xd7933ab7 devlink_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd795ad55 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0xd79a3ba8 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xd7a66b87 iomap_releasepage -EXPORT_SYMBOL_GPL vmlinux 0xd7af68d9 irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0xd7b411cb __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0xd7b5dfee xas_split -EXPORT_SYMBOL_GPL vmlinux 0xd7b7fb80 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0xd7c18263 mptcp_pm_get_add_addr_accept_max -EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xd7d70d52 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd7dc7eb1 tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xd7e24044 snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd7e67376 ahci_platform_init_host -EXPORT_SYMBOL_GPL vmlinux 0xd7f225ba snd_soc_resume -EXPORT_SYMBOL_GPL vmlinux 0xd804e8ff bio_start_io_acct -EXPORT_SYMBOL_GPL vmlinux 0xd8056de1 file_is_kvm -EXPORT_SYMBOL_GPL vmlinux 0xd826165c cdc_ncm_unbind -EXPORT_SYMBOL_GPL vmlinux 0xd838b3c0 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0xd839c9c9 xprt_force_disconnect -EXPORT_SYMBOL_GPL vmlinux 0xd841d902 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd85b9b7f crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0xd85ce8ec snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL vmlinux 0xd8649282 bio_start_io_acct_time -EXPORT_SYMBOL_GPL vmlinux 0xd8785ce2 dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xd87b1e1b bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd88eaa3c fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0xd8966942 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xd89ceb4a devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0xd8a6c2c2 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0xd8ab1e76 fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0xd8ab5bf0 dapm_clock_event -EXPORT_SYMBOL_GPL vmlinux 0xd8bb77bc regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xd8bbf1b8 crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0xd8c88c62 devm_of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0xd8d2a725 aie_get_errors -EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type -EXPORT_SYMBOL_GPL vmlinux 0xd8fa1cad inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd90777ff devm_device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xd9133b46 cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk -EXPORT_SYMBOL_GPL vmlinux 0xd9262b3b device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data -EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xd9334926 xvip_enum_mbus_code -EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0xd9467182 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL vmlinux 0xd95c8835 ata_scsi_dma_need_drain -EXPORT_SYMBOL_GPL vmlinux 0xd95f6128 gether_connect -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd977cb55 __cpuhp_state_remove_instance -EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0xd9984ac0 usb_ep_autoconfig -EXPORT_SYMBOL_GPL vmlinux 0xd99a4d11 of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0xd99bd505 genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0xd9a80b90 xenbus_probe_devices -EXPORT_SYMBOL_GPL vmlinux 0xd9ab816b dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xd9ac3792 regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0xd9b681aa pinmux_generic_remove_function -EXPORT_SYMBOL_GPL vmlinux 0xd9c152ef pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xd9c3cd85 devm_gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0xd9c3ef8f fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0xd9d358bd vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0xd9f2d8ce ahci_ops -EXPORT_SYMBOL_GPL vmlinux 0xd9fa227e clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0xd9faa7a5 zynqmp_pm_set_pll_frac_mode -EXPORT_SYMBOL_GPL vmlinux 0xd9fe024d mtd_pairing_groups -EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xda049176 xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xda0785af sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda096102 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xda0dc096 hisi_uncore_pmu_disable -EXPORT_SYMBOL_GPL vmlinux 0xda151a61 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xda1ca67c nfs_client_init_is_complete -EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda474631 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL vmlinux 0xda4caf9c battery_hook_register -EXPORT_SYMBOL_GPL vmlinux 0xda578acd acpi_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0xda5d6946 __clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xda69d918 wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0xda6d60d3 of_clk_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0xda768ac5 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xda79c2a5 xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0xda8a5fab pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdab518f7 dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdab7399a param_set_uint_minmax -EXPORT_SYMBOL_GPL vmlinux 0xdad19ccc skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xdad26c91 dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0xdada0318 nfs_file_fsync -EXPORT_SYMBOL_GPL vmlinux 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdaf9200c crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0xdafc02f3 devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0xdb08c1fe nfs_free_inode -EXPORT_SYMBOL_GPL vmlinux 0xdb1bfb26 sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0xdb2609e9 devm_regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdb29609d rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0xdb309cb9 crypto_alloc_acomp_node -EXPORT_SYMBOL_GPL vmlinux 0xdb3d42dd platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xdb3d892c securityfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xdb517dd3 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0xdb626af3 mrp_unregister_application -EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb65de17 gether_set_qmult -EXPORT_SYMBOL_GPL vmlinux 0xdb682b38 ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0xdb68e445 proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0xdb77e825 filemap_range_needs_writeback -EXPORT_SYMBOL_GPL vmlinux 0xdb816c45 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xdb82a76a led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0xdb82f71f sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb950244 cfi_qry_mode_on -EXPORT_SYMBOL_GPL vmlinux 0xdb98da67 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xdbaef207 acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdbb26ac3 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0xdbbd39f1 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0xdbc084b8 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xdbe2a354 of_usb_get_dr_mode_by_phy -EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdbf60eb2 sdhci_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdbfeba27 usbnet_stop -EXPORT_SYMBOL_GPL vmlinux 0xdc01fad1 devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available -EXPORT_SYMBOL_GPL vmlinux 0xdc05083f ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc0d41b8 vcpu_put -EXPORT_SYMBOL_GPL vmlinux 0xdc10263e pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall -EXPORT_SYMBOL_GPL vmlinux 0xdc1f87f4 xhci_reset_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0xdc24f131 security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xdc273982 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0xdc28b33d snd_soc_dpcm_can_be_prepared -EXPORT_SYMBOL_GPL vmlinux 0xdc346182 sdhci_set_ios -EXPORT_SYMBOL_GPL vmlinux 0xdc386bb1 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xdc395cf7 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0xdc400bbe kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xdc4440f4 xdr_inline_pages -EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc581d91 ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc6f92ab to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0xdc7a1161 srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0xdc7c6aa0 dev_fill_forward_path -EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc83f308 pci_find_vsec_capability -EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdc970c4f uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc97d80f gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0xdc98488d is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdcaf07de __devm_iio_device_register -EXPORT_SYMBOL_GPL vmlinux 0xdcb0a2c0 phylink_stop -EXPORT_SYMBOL_GPL vmlinux 0xdcb4f773 gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0xdcb60ea4 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0xdcc1e55c debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0xdcc9f6d2 nfs_initiate_commit -EXPORT_SYMBOL_GPL vmlinux 0xdccb072b dst_blackhole_mtu -EXPORT_SYMBOL_GPL vmlinux 0xdccd6d82 xdr_commit_encode -EXPORT_SYMBOL_GPL vmlinux 0xdce350e9 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0xdced92c6 snd_soc_unregister_component -EXPORT_SYMBOL_GPL vmlinux 0xdcfa8ea9 usbnet_start_xmit -EXPORT_SYMBOL_GPL vmlinux 0xdcfe4504 aie_partition_get_fd -EXPORT_SYMBOL_GPL vmlinux 0xdd031f41 dax_supported -EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd07e775 gpiochip_get_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd14def0 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd449685 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xdd496de4 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd64e9c0 iio_map_array_register -EXPORT_SYMBOL_GPL vmlinux 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xdd7c3d82 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xdd9674c3 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0xdda267b8 of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0xdda345c1 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0xdda9f639 dt_init_idle_driver -EXPORT_SYMBOL_GPL vmlinux 0xddadda15 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0xddbd2d73 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddec6e6b __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xddf4274b __traceiter_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xddfc8301 usb_gstrings_attach -EXPORT_SYMBOL_GPL vmlinux 0xde09a94d xas_find -EXPORT_SYMBOL_GPL vmlinux 0xde1976e0 tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0xde23bd13 nanddev_isbad -EXPORT_SYMBOL_GPL vmlinux 0xde283f0a blk_ksm_destroy -EXPORT_SYMBOL_GPL vmlinux 0xde296ac5 svc_sock_update_bufs -EXPORT_SYMBOL_GPL vmlinux 0xde350f5a xdr_stream_subsegment -EXPORT_SYMBOL_GPL vmlinux 0xde3b8a32 dma_vmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xde3d183e hid_hw_close -EXPORT_SYMBOL_GPL vmlinux 0xde45de21 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0xde551a21 nfs_file_release -EXPORT_SYMBOL_GPL vmlinux 0xde65fb50 pstore_register -EXPORT_SYMBOL_GPL vmlinux 0xde66f4a7 phylink_mii_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde7c0a28 snd_power_ref_and_wait -EXPORT_SYMBOL_GPL vmlinux 0xde7f6a52 mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL vmlinux 0xde81fb95 cdrom_multisession -EXPORT_SYMBOL_GPL vmlinux 0xde8840e5 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0xde891e19 sched_trace_cfs_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0xde89885a dev_pm_opp_adjust_voltage -EXPORT_SYMBOL_GPL vmlinux 0xde92a2a4 hisi_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xde9d40a2 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL vmlinux 0xdea20f1e gether_setup_name_default -EXPORT_SYMBOL_GPL vmlinux 0xdea7cce2 dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0xdeab4bb9 tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0xdec8fc62 trace_array_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0xdece8cb4 nfs_sb_deactive -EXPORT_SYMBOL_GPL vmlinux 0xded11b9d iio_read_channel_offset -EXPORT_SYMBOL_GPL vmlinux 0xded2a486 sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0xded878e6 hid_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0xdedca081 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0xdedcfce4 acpi_dma_request_slave_chan_by_index -EXPORT_SYMBOL_GPL vmlinux 0xdee27f9b md_run -EXPORT_SYMBOL_GPL vmlinux 0xdef1a540 of_pci_get_max_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xdefefb46 nfs41_sequence_done -EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xdf0743b0 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0xdf0af0a8 nfs_lock -EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0xdf0ef819 sdhci_pltfm_register -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf1b56cb __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0xdf1cfa27 d_exchange -EXPORT_SYMBOL_GPL vmlinux 0xdf1eeb1c dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0xdf25a54f devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf37b061 usb_phy_set_charger_current -EXPORT_SYMBOL_GPL vmlinux 0xdf389bd9 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL vmlinux 0xdf3e2b97 bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xdf4a7d9e crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0xdf59003d ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0xdf5a4f77 usb_add_gadget -EXPORT_SYMBOL_GPL vmlinux 0xdf5ac7c4 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0xdf636f01 cec_s_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0xdf693d30 vp_modern_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL vmlinux 0xdf96dce4 pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0xdf99b646 xlnx_unregister_event -EXPORT_SYMBOL_GPL vmlinux 0xdf9b7dda usbnet_read_cmd -EXPORT_SYMBOL_GPL vmlinux 0xdfab6e45 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0xdfb6e495 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfd4c621 xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0xdfe006b3 devm_memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0xe0112266 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0xe012b0c7 ping_err -EXPORT_SYMBOL_GPL vmlinux 0xe013072f xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0xe02bc6f7 nand_soft_waitrdy -EXPORT_SYMBOL_GPL vmlinux 0xe02e9f38 kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xe03e6404 usbnet_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe04d5d6b device_property_present -EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe08a1b9d v4l2_pipeline_pm_get -EXPORT_SYMBOL_GPL vmlinux 0xe0988c4c iio_show_mount_matrix -EXPORT_SYMBOL_GPL vmlinux 0xe09dc6c3 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0c3b9a0 __media_entity_setup_link -EXPORT_SYMBOL_GPL vmlinux 0xe0c49ed9 extcon_find_edev_by_node -EXPORT_SYMBOL_GPL vmlinux 0xe0c685d4 fscrypt_d_revalidate -EXPORT_SYMBOL_GPL vmlinux 0xe0c6d40b snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL vmlinux 0xe0ce927c tda829x_probe -EXPORT_SYMBOL_GPL vmlinux 0xe0dc1d4d devlink_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0xe0dfd4ef br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0xe0e15677 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xe0e2713c nfs_request_add_commit_list -EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op -EXPORT_SYMBOL_GPL vmlinux 0xe0e9446d iomap_finish_ioends -EXPORT_SYMBOL_GPL vmlinux 0xe0f68168 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0xe0ff36cf zynqmp_pm_aie_operation -EXPORT_SYMBOL_GPL vmlinux 0xe1014e5e vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe1244fea iommu_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0xe14f8612 perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0xe15292b1 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe179384c platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0xe17c3222 mmc_pwrseq_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe1856356 devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL vmlinux 0xe1a11c8d nanddev_ecc_engine_init -EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx -EXPORT_SYMBOL_GPL vmlinux 0xe1cc1fa1 thermal_zone_of_get_sensor_id -EXPORT_SYMBOL_GPL vmlinux 0xe1d8dc5d nand_write_data_op -EXPORT_SYMBOL_GPL vmlinux 0xe1e53754 kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0xe1f2ccb5 wait_on_page_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0xe1f5878b usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xe203befa firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0xe2063ae2 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xe20c3d49 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0xe21a9a21 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0xe2230034 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe2373a22 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xe23ed391 pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0xe24098c9 devm_memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0xe24cc888 acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0xe24fd53f fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xe25066ce to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0xe2521b1c xfrma_policy -EXPORT_SYMBOL_GPL vmlinux 0xe2522c7c of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0xe2537f07 fsnotify_init_mark -EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0xe25f1f29 of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0xe2660429 blk_ksm_init_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xe26713ca tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0xe26c1471 sdhci_set_power -EXPORT_SYMBOL_GPL vmlinux 0xe27999ad nfs_add_or_obtain -EXPORT_SYMBOL_GPL vmlinux 0xe2822320 __v4l2_find_nearest_size -EXPORT_SYMBOL_GPL vmlinux 0xe28308ed tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0xe2854ef2 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xe28c839a usb_gadget_set_state -EXPORT_SYMBOL_GPL vmlinux 0xe299cfe9 skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0xe2a36c75 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0xe2a474b1 crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0xe2a9c49e cpufreq_driver_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0xe2ace8eb ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0xe2b21c21 _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe2d3b3fb gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0xe2f0469a blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0xe2f1473b usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0xe2fdaea9 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xe30e56b1 drm_of_find_panel_or_bridge -EXPORT_SYMBOL_GPL vmlinux 0xe310584b ahci_platform_disable_resources -EXPORT_SYMBOL_GPL vmlinux 0xe329ccbe tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xe32edd02 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xe338c5ac inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0xe33ce3e7 misc_cg_uncharge -EXPORT_SYMBOL_GPL vmlinux 0xe3607c68 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0xe36f3c72 fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0xe377935c devm_pinctrl_unregister -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 0xe3ade987 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete -EXPORT_SYMBOL_GPL vmlinux 0xe3bec366 tpm_tis_resume -EXPORT_SYMBOL_GPL vmlinux 0xe3bfa827 pinctrl_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0xe3c0757a fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0xe3ca950c blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe3dfb68e __register_mtd_parser -EXPORT_SYMBOL_GPL vmlinux 0xe3efb67d pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xe4042ea6 addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0xe40b7c6b ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe413dc07 gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0xe41ed16b serial8250_rpm_get_tx -EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print -EXPORT_SYMBOL_GPL vmlinux 0xe42ac7cd snd_soc_bytes_put -EXPORT_SYMBOL_GPL vmlinux 0xe42c8397 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xe4308e60 acpi_get_first_physical_node -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe4346e9f devm_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0xe43f4278 nfs4_sequence_done -EXPORT_SYMBOL_GPL vmlinux 0xe4411a63 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xe44236b2 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0xe44d8fdf of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0xe452d76d mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe45ee352 user_read -EXPORT_SYMBOL_GPL vmlinux 0xe468a9e7 rpc_max_payload -EXPORT_SYMBOL_GPL vmlinux 0xe46ae82c sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xe46c47fe device_add -EXPORT_SYMBOL_GPL vmlinux 0xe47197a0 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0xe47da959 iommu_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe4867a32 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL vmlinux 0xe4889db8 stp_proto_register -EXPORT_SYMBOL_GPL vmlinux 0xe48b964a media_device_unregister_entity -EXPORT_SYMBOL_GPL vmlinux 0xe48f8a3e dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL vmlinux 0xe491e700 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xe496b901 __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe49a5677 devm_irq_domain_create_sim -EXPORT_SYMBOL_GPL vmlinux 0xe4a5046e drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL vmlinux 0xe4a9849c wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xe4abfc4b vp_modern_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xe4ade225 netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe4ae4345 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0xe4b051cf raid6_datap_recov -EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xe4b302a7 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str -EXPORT_SYMBOL_GPL vmlinux 0xe4b93f27 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xe4be5222 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4cc5e7b blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0xe4d19f48 kill_mtd_super -EXPORT_SYMBOL_GPL vmlinux 0xe4da7dbe securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4e56ed2 crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0xe4f039a2 spi_controller_dma_unmap_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0xe506788c devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe509c62f crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0xe50e3b07 gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0xe51b632f restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xe51e7e93 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xe529673e ip6_dst_lookup_tunnel -EXPORT_SYMBOL_GPL vmlinux 0xe53b12eb phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0xe545c83d nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL vmlinux 0xe5543f9c of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xe5577fcb aie_register_error_notification -EXPORT_SYMBOL_GPL vmlinux 0xe55ddf0e security_inode_permission -EXPORT_SYMBOL_GPL vmlinux 0xe5629822 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xe56ff789 nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xe5716639 sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe589a922 v4l2_event_subscribe -EXPORT_SYMBOL_GPL vmlinux 0xe58ccc1d snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0xe58f25ea aie_partition_set_freq_req -EXPORT_SYMBOL_GPL vmlinux 0xe591458a usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL vmlinux 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL vmlinux 0xe591ae5e sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0xe59b37ca cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL vmlinux 0xe5a925d3 zynqmp_pm_init_finalize -EXPORT_SYMBOL_GPL vmlinux 0xe5bcf4ba crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xe5d20765 fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0xe5e5c110 macvlan_dellink -EXPORT_SYMBOL_GPL vmlinux 0xe6017dc4 __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe60ef9fc md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0xe6164b50 scsi_host_busy_iter -EXPORT_SYMBOL_GPL vmlinux 0xe6185a7a regulator_desc_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xe61c6bf8 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe61d1588 regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe640478a pm_clk_remove_clk -EXPORT_SYMBOL_GPL vmlinux 0xe64bac6d v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL vmlinux 0xe6519dd8 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0xe6566a7b iommu_setup_dma_ops -EXPORT_SYMBOL_GPL vmlinux 0xe66bac4b genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0xe6715342 alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0xe67bd9ff ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xe67cb8de xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0xe67e13b8 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0xe68c3021 devm_rtc_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xe6a8240e devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xe6abab28 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0xe6c1c6a1 phy_get -EXPORT_SYMBOL_GPL vmlinux 0xe6cdfe83 snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL vmlinux 0xe6d6378b security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6ebdbd5 phy_exit -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 0xe6f841cd xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0xe6f8be14 dm_copy_name_and_uuid -EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert -EXPORT_SYMBOL_GPL vmlinux 0xe70507df __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL vmlinux 0xe705f929 mtd_device_parse_register -EXPORT_SYMBOL_GPL vmlinux 0xe7227347 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xe725b387 phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xe726788b of_genpd_del_provider -EXPORT_SYMBOL_GPL vmlinux 0xe72d9d6b fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0xe72fc5b9 devm_fpga_bridge_create -EXPORT_SYMBOL_GPL vmlinux 0xe7339b5e acpi_get_psd_map -EXPORT_SYMBOL_GPL vmlinux 0xe740ae86 fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe7638595 device_rename -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe77118f7 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe786e4bc cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xe78a05ab sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0xe790f69e da9150_read_qif -EXPORT_SYMBOL_GPL vmlinux 0xe7936243 zynqmp_pm_clock_getstate -EXPORT_SYMBOL_GPL vmlinux 0xe79aa77b __bio_try_merge_page -EXPORT_SYMBOL_GPL vmlinux 0xe7be3ab7 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL vmlinux 0xe7c5fc62 perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0xe7c9598f macvlan_link_register -EXPORT_SYMBOL_GPL vmlinux 0xe7d59447 snd_soc_card_add_dai_link -EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7dcfbad snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL vmlinux 0xe7e1d681 gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0xe7e9a728 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe7efd790 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0xe7f12b71 of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0xe7f14a9e xprt_unlock_connect -EXPORT_SYMBOL_GPL vmlinux 0xe7fc7231 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0xe801f9bf unmap_mapping_pages -EXPORT_SYMBOL_GPL vmlinux 0xe80f9dcf regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe812edfd pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe8199ff8 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xe819d648 nfs_stream_decode_acl -EXPORT_SYMBOL_GPL vmlinux 0xe81e1a8e rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL vmlinux 0xe82fa1e6 crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL vmlinux 0xe83287e4 spi_mem_poll_status -EXPORT_SYMBOL_GPL vmlinux 0xe83979ec v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL vmlinux 0xe8459736 iio_enum_read -EXPORT_SYMBOL_GPL vmlinux 0xe84ed34a unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe854d8de rpc_max_bc_payload -EXPORT_SYMBOL_GPL vmlinux 0xe857062a snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL vmlinux 0xe8582f24 regmap_test_bits -EXPORT_SYMBOL_GPL vmlinux 0xe85a4195 pinctrl_generic_get_group_name -EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe8677ccd snd_soc_component_async_complete -EXPORT_SYMBOL_GPL vmlinux 0xe8874a05 irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xe897cd98 extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0xe89a6a95 pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xe89dc424 gserial_alloc_line_no_console -EXPORT_SYMBOL_GPL vmlinux 0xe89f0421 of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xe8a09e85 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0xe8acfa45 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static -EXPORT_SYMBOL_GPL vmlinux 0xe8c137ed phylink_set_pcs -EXPORT_SYMBOL_GPL vmlinux 0xe8d36643 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe8e6a1ed sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0xe8f4c222 nfs_instantiate -EXPORT_SYMBOL_GPL vmlinux 0xe8f9e5ce pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe8ff9afe media_request_object_init -EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read -EXPORT_SYMBOL_GPL vmlinux 0xe916f2b3 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL vmlinux 0xe9195f77 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0xe91d4172 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL vmlinux 0xe921dc1e vb2_fop_poll -EXPORT_SYMBOL_GPL vmlinux 0xe9290b34 peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe92ff489 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe931ded7 __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0xe9323c57 nfs_rmdir -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe942318c irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xe9433092 ubi_open_volume_nm -EXPORT_SYMBOL_GPL vmlinux 0xe9496fd3 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xe9534fce v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL vmlinux 0xe955cd37 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe95ed3c6 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xe9637b0b cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe96e73af ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xe97a51c8 usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL vmlinux 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL vmlinux 0xe9810899 kvm_get_kvm_safe -EXPORT_SYMBOL_GPL vmlinux 0xe9869041 __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL vmlinux 0xe986e4fc cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xe9950abe split_page -EXPORT_SYMBOL_GPL vmlinux 0xe99c65b0 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL vmlinux 0xe9a0ef41 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0xe9a22673 topology_set_thermal_pressure -EXPORT_SYMBOL_GPL vmlinux 0xe9a29cbc crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0xe9ac2732 usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0xe9ae2793 edac_mc_free -EXPORT_SYMBOL_GPL vmlinux 0xe9b4660e cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xe9b68148 usb_phy_set_charger_state -EXPORT_SYMBOL_GPL vmlinux 0xe9c06f36 xprt_free_slot -EXPORT_SYMBOL_GPL vmlinux 0xe9cd5b41 timer_unstable_counter_workaround -EXPORT_SYMBOL_GPL vmlinux 0xe9cdbadd iio_device_id -EXPORT_SYMBOL_GPL vmlinux 0xe9cec7f1 pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9db9890 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL vmlinux 0xe9dfa2b1 dev_pm_opp_xlate_required_opp -EXPORT_SYMBOL_GPL vmlinux 0xe9e7af1d kvm_vcpu_kick -EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea13d799 v4l2_fh_del -EXPORT_SYMBOL_GPL vmlinux 0xea1473a8 sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0xea178458 blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xea1a0883 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0xea2b47d7 rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0xea2c4981 dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0xea3b1c67 pinmux_generic_get_function -EXPORT_SYMBOL_GPL vmlinux 0xea44744c bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0xea48afbd fsg_show_nofua -EXPORT_SYMBOL_GPL vmlinux 0xea4d4762 __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL vmlinux 0xea54103b bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0xea58d377 drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL vmlinux 0xea7b8c64 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL vmlinux 0xea7e362b tps65912_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xea81773e kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xea996fd0 phy_init -EXPORT_SYMBOL_GPL vmlinux 0xea9a2bd4 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0xeaba20b7 rpc_proc_register -EXPORT_SYMBOL_GPL vmlinux 0xeac576b6 acpi_dev_get_first_consumer_dev -EXPORT_SYMBOL_GPL vmlinux 0xeac892d1 ata_acpi_cbl_80wire -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 0xead8dcf7 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeae56d36 u_audio_get_volume -EXPORT_SYMBOL_GPL vmlinux 0xeae8522f __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL vmlinux 0xeaeabaf1 crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0xeaf5950b devm_fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xeaf8469d hv_do_fast_hypercall8 -EXPORT_SYMBOL_GPL vmlinux 0xeb05611f iommu_uapi_sva_bind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0xeb08e33b ipi_send_mask -EXPORT_SYMBOL_GPL vmlinux 0xeb0a81ce usb_wakeup_enabled_descendants -EXPORT_SYMBOL_GPL vmlinux 0xeb14219d rpc_call_sync -EXPORT_SYMBOL_GPL vmlinux 0xeb1d59f9 __traceiter_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xeb1f3d7a nfs_set_verifier -EXPORT_SYMBOL_GPL vmlinux 0xeb1ffd51 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0xeb2640ad virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0xeb2800d2 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xeb298fc1 crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL vmlinux 0xeb2aa85e pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0xeb3ecca1 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0xeb4221e4 trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xeb4df91f ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xeb66d334 fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0xeb6902a7 sdhci_set_clock -EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL vmlinux 0xeb718b34 snd_card_free_on_error -EXPORT_SYMBOL_GPL vmlinux 0xeb78b1ed unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xeb7d80b1 nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0xeb826324 acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0xeb8f9a48 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeb98ee1f usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL vmlinux 0xeb9d7760 mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0xebba6c16 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL vmlinux 0xebbb3392 mptcp_pm_get_add_addr_signal_max -EXPORT_SYMBOL_GPL vmlinux 0xebc17b4f drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL vmlinux 0xebc384e3 __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xebc3cbe4 usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xebc67043 vb2_thread_start -EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebdaeaa9 xhci_add_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xebe62465 hisi_uncore_pmu_enable -EXPORT_SYMBOL_GPL vmlinux 0xebf977fb divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0xec02ebe0 phylink_init_eee -EXPORT_SYMBOL_GPL vmlinux 0xec059baf usb_gadget_connect -EXPORT_SYMBOL_GPL vmlinux 0xec2100ab pinctrl_count_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0xec22f4b0 mmput -EXPORT_SYMBOL_GPL vmlinux 0xec27dc11 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xec2853a0 devm_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0xec51954e nand_gpio_waitrdy -EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xec702e3a snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xec7231fd sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0xec733105 net_selftest -EXPORT_SYMBOL_GPL vmlinux 0xec75b045 snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xec7df028 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL vmlinux 0xec7ede42 debugfs_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0xeca827dc devlink_free -EXPORT_SYMBOL_GPL vmlinux 0xecb2ed54 __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0xecbbc238 proc_create_net_single_write -EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xece0242c relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xece7db6c regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0xecf2f047 dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0xecfbc868 pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xecfc1e1d cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL vmlinux 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL vmlinux 0xed195a31 snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL vmlinux 0xed1b0caa gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xed23ee53 hid_field_extract -EXPORT_SYMBOL_GPL vmlinux 0xed24b03a scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0xed2b68ed kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0xed358e30 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0xed379f52 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID -EXPORT_SYMBOL_GPL vmlinux 0xed3a91f1 of_clk_hw_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xed49688e thermal_zone_device_disable -EXPORT_SYMBOL_GPL vmlinux 0xed5df13f cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xed5f8130 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL vmlinux 0xed65fdea xhci_drop_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xed67ecd5 xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL vmlinux 0xed6e484e check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0xed703b01 __traceiter_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xed7e7b4d paste_selection -EXPORT_SYMBOL_GPL vmlinux 0xed804066 devm_phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0xed883766 fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0xed8b0212 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL vmlinux 0xed914a08 regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0xed95b612 gnttab_page_cache_get -EXPORT_SYMBOL_GPL vmlinux 0xed965e27 v4l2_device_register_subdev -EXPORT_SYMBOL_GPL vmlinux 0xed98319c platform_bus -EXPORT_SYMBOL_GPL vmlinux 0xed9c0577 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xedac715e gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0xedb54993 dev_pm_opp_put_prop_name -EXPORT_SYMBOL_GPL vmlinux 0xedbd467a devm_iio_channel_get_all -EXPORT_SYMBOL_GPL vmlinux 0xedcd9657 get_tree_mtd -EXPORT_SYMBOL_GPL vmlinux 0xedce8829 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xede41327 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0xedea5046 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0xedee29fd usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xee104af0 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xee235bfa pinctrl_parse_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0xee262b22 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xee2cbe77 snd_soc_dai_link_set_capabilities -EXPORT_SYMBOL_GPL vmlinux 0xee364d06 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0xee3792d1 xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee3fb817 __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xee4abf28 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xee56f230 pci_reset_function_locked -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 0xee72f138 dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xee73cad9 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0xee7a8559 dma_buf_pin -EXPORT_SYMBOL_GPL vmlinux 0xee91b70d irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xee9bf736 of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xee9fa56f devlink_flash_update_timeout_notify -EXPORT_SYMBOL_GPL vmlinux 0xeea68692 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xeeaa7c81 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL vmlinux 0xeed0a5eb __xenbus_register_backend -EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0xeed7150e nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL vmlinux 0xeedb10be dev_pm_opp_detach_genpd -EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0xeedfa62a zynqmp_pm_is_function_supported -EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run -EXPORT_SYMBOL_GPL vmlinux 0xeee83d17 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xeefba55f usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0xef01d8ef zynqmp_pm_write_aes_key -EXPORT_SYMBOL_GPL vmlinux 0xef072c93 of_console_check -EXPORT_SYMBOL_GPL vmlinux 0xef0832f7 crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef2737b7 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xef2851d7 dax_copy_to_iter -EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xef2afd8f af_alg_register_type -EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xef3c96f8 devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0xef4486d4 __traceiter_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef490d51 of_icc_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xef5a03be nfs_commitdata_release -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 0xef744bb5 sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0xef779f2b kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0xef787dae hisi_uncore_pmu_event_update -EXPORT_SYMBOL_GPL vmlinux 0xef84b13d sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0xef8d9ab4 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last -EXPORT_SYMBOL_GPL vmlinux 0xef9365f6 nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0xef9480e9 io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefa88135 bio_alloc_kiocb -EXPORT_SYMBOL_GPL vmlinux 0xefaeb0d1 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL vmlinux 0xefb91663 dw_pcie_upconfig_setup -EXPORT_SYMBOL_GPL vmlinux 0xefbf8aa7 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xefc96a4e snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xefcbbb00 locks_start_grace -EXPORT_SYMBOL_GPL vmlinux 0xefdca099 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xefe217e7 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xefebe4ac mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL vmlinux 0xefecaf5d svc_proc_register -EXPORT_SYMBOL_GPL vmlinux 0xf0371257 rpc_queue_upcall -EXPORT_SYMBOL_GPL vmlinux 0xf03b0410 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xf03cc7b1 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle -EXPORT_SYMBOL_GPL vmlinux 0xf0542437 v4l2_device_set_name -EXPORT_SYMBOL_GPL vmlinux 0xf0568a40 kvm_map_gfn -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 0xf069b3bd nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0xf06ddb50 config_ep_by_speed -EXPORT_SYMBOL_GPL vmlinux 0xf082e0fc i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf093faae rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL vmlinux 0xf0a0c69d init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xf0a9c7ef iio_write_channel_raw -EXPORT_SYMBOL_GPL vmlinux 0xf0b061eb raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xf0c184bf sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xf0d01cde clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xf0d478c7 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xf0d72693 device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0xf0daf2c9 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0xf0e469ed snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xf0edeec3 nanddev_bbt_update -EXPORT_SYMBOL_GPL vmlinux 0xf0f3163a max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0xf0f6136c ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0xf1025d0a of_fpga_mgr_get -EXPORT_SYMBOL_GPL vmlinux 0xf11613f8 xprt_unpin_rqst -EXPORT_SYMBOL_GPL vmlinux 0xf11691db acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0xf1218ee9 iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0xf12c0037 __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0xf135a4e6 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL vmlinux 0xf14c0c51 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xf159919f subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xf159e2c2 iommu_aux_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xf17d07b7 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xf18facb5 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0xf193e251 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0xf1968371 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0xf1a600ba phy_set_mode_ext -EXPORT_SYMBOL_GPL vmlinux 0xf1c58098 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xf1cedf2a xvip_cleanup_resources -EXPORT_SYMBOL_GPL vmlinux 0xf1d7acd1 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0xf1e455a3 mptcp_subflow_init_cookie_req -EXPORT_SYMBOL_GPL vmlinux 0xf1f5f736 of_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xf1fe6b0a device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0xf2026b2d svc_process -EXPORT_SYMBOL_GPL vmlinux 0xf210cb43 device_add_software_node -EXPORT_SYMBOL_GPL vmlinux 0xf218ab3c pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf21f03c3 modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xf22e97a9 iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0xf245748a regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xf24e42d3 devlink_rate_leaf_create -EXPORT_SYMBOL_GPL vmlinux 0xf258ace5 gserial_resume -EXPORT_SYMBOL_GPL vmlinux 0xf25bc7f7 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0xf2667085 pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL vmlinux 0xf26ac780 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0xf28c1549 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf2966f4e ahci_stop_engine -EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf29cf385 gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0xf2a26510 espintcp_push_skb -EXPORT_SYMBOL_GPL vmlinux 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2b75bf5 gserial_disconnect -EXPORT_SYMBOL_GPL vmlinux 0xf2b97e5d devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0xf2cbb430 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0xf2d733f4 skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xf2d89d43 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0xf2dce101 sched_trace_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf2e69443 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xf2ecb0cb ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xf2f867ab usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0xf2f8c787 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xf2f9901e acpi_device_fix_up_power -EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xf30184bf sdhci_add_host -EXPORT_SYMBOL_GPL vmlinux 0xf3082965 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0xf3083a1d phylink_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf30fe2cb mddev_init_writes_pending -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 0xf320fd28 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0xf32666fe phy_restore_page -EXPORT_SYMBOL_GPL vmlinux 0xf32764c0 dev_pm_domain_start -EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf32f915b fsg_store_ro -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf337930a pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0xf3383e6b spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xf349c893 snd_soc_register_component -EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf35e37b1 snd_soc_dai_compr_trigger -EXPORT_SYMBOL_GPL vmlinux 0xf36607c0 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0xf36807c2 snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL vmlinux 0xf36d47ec clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf379729e fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit -EXPORT_SYMBOL_GPL vmlinux 0xf37cb3f2 devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf39c4871 device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0xf3c3b8df crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0xf3da490e pm_clk_add -EXPORT_SYMBOL_GPL vmlinux 0xf3e1372c of_get_required_opp_performance_state -EXPORT_SYMBOL_GPL vmlinux 0xf3f3a4f5 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xf3f54257 gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xf3faec75 skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0xf402798f crypto_alloc_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0xf406fd0b crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xf410ae2d tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0xf411909e usbnet_update_max_qlen -EXPORT_SYMBOL_GPL vmlinux 0xf41828fe usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0xf4262abc mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0xf4456cf2 lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0xf45ba762 rio_add_net -EXPORT_SYMBOL_GPL vmlinux 0xf460bc01 pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0xf466b4fb phy_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause -EXPORT_SYMBOL_GPL vmlinux 0xf4725445 i2c_acpi_find_adapter_by_handle -EXPORT_SYMBOL_GPL vmlinux 0xf47473f6 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit -EXPORT_SYMBOL_GPL vmlinux 0xf487ec49 pci_device_group -EXPORT_SYMBOL_GPL vmlinux 0xf49783a9 security_path_link -EXPORT_SYMBOL_GPL vmlinux 0xf498207a thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0xf49b58dd u_audio_set_volume -EXPORT_SYMBOL_GPL vmlinux 0xf49db512 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL vmlinux 0xf49fae52 __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xf4a19511 snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL vmlinux 0xf4a27ead regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4b6448d deregister_mtd_blktrans -EXPORT_SYMBOL_GPL vmlinux 0xf4b6e3bd blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0xf4c0376f nfs_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf4c413ed __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0xf4c7ffd1 edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf4cef73d fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0xf4e32f7e snd_soc_dai_compr_set_metadata -EXPORT_SYMBOL_GPL vmlinux 0xf4e35e28 sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0xf4ee72be fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL vmlinux 0xf4f2d79c serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0xf4ffd671 copy_user_highpage -EXPORT_SYMBOL_GPL vmlinux 0xf50ac3b1 blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xf512bbde fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xf51a66a0 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL vmlinux 0xf528f8ce devm_of_dp_aux_populate_ep_devices -EXPORT_SYMBOL_GPL vmlinux 0xf52aba6d mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xf5351e18 rpc_free -EXPORT_SYMBOL_GPL vmlinux 0xf5364311 ohci_init_driver -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 0xf5538c27 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xf5565cdb perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0xf56238f4 v4l2_find_dv_timings_cea861_vic -EXPORT_SYMBOL_GPL vmlinux 0xf569de9c phy_package_leave -EXPORT_SYMBOL_GPL vmlinux 0xf570a4c9 xprt_lock_connect -EXPORT_SYMBOL_GPL vmlinux 0xf570cff3 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0xf57d1dc6 af_alg_release -EXPORT_SYMBOL_GPL vmlinux 0xf5935a04 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xf594e8f7 st_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5bb0cb2 crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xf5c10452 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xf5d270fc irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xf5d5caf5 of_xlnx_bridge_put -EXPORT_SYMBOL_GPL vmlinux 0xf5ec64cc dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL vmlinux 0xf5f2c283 hidraw_disconnect -EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf5fab91a driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0xf5feff2c ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xf6026d87 nfs_show_stats -EXPORT_SYMBOL_GPL vmlinux 0xf619eb2d irq_domain_disconnect_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall -EXPORT_SYMBOL_GPL vmlinux 0xf61d5f4f cgroup_get_e_css -EXPORT_SYMBOL_GPL vmlinux 0xf62918b3 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xf62aecf9 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0xf62b06d9 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xf6383dd2 debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xf638f6c4 of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xf64c707f init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xf6512e94 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf66a56ab blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xf6743247 vb2_common_vm_ops -EXPORT_SYMBOL_GPL vmlinux 0xf67ec284 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL vmlinux 0xf69c3abc devm_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xf6abd022 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0xf6b149d9 svc_rqst_free -EXPORT_SYMBOL_GPL vmlinux 0xf6b3c686 nfs_wait_client_init_complete -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 0xf6c9743c dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xf6cac9fe rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0xf6d8a506 zynqmp_pm_get_last_reset_reason -EXPORT_SYMBOL_GPL vmlinux 0xf6db6929 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf6e47bd9 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6e9cfc1 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xf703a3f9 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL vmlinux 0xf7084997 nfs_show_path -EXPORT_SYMBOL_GPL vmlinux 0xf7123cab hisi_uncore_pmu_stop -EXPORT_SYMBOL_GPL vmlinux 0xf713b329 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL vmlinux 0xf71c72a3 icmp_build_probe -EXPORT_SYMBOL_GPL vmlinux 0xf729ea6c irq_domain_create_legacy -EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size -EXPORT_SYMBOL_GPL vmlinux 0xf72fb76e pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL vmlinux 0xf7330335 bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0xf733e8a4 hisi_cpumask_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0xf744af57 nfs4_test_deviceid_unavailable -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 0xf761fc3c preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf765dc9e mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0xf766211a nfs_stream_encode_acl -EXPORT_SYMBOL_GPL vmlinux 0xf77300d1 blk_ksm_reprogram_all_keys -EXPORT_SYMBOL_GPL vmlinux 0xf7801360 nfs41_maxgetdevinfo_overhead -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 0xf7a038c0 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xf7a29de2 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init -EXPORT_SYMBOL_GPL vmlinux 0xf7b4bc48 af_alg_unregister_type -EXPORT_SYMBOL_GPL vmlinux 0xf7ba0917 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL vmlinux 0xf7bb9ec8 pci_epf_remove_vepf -EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7bd7d78 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7cce69e spi_bitbang_start -EXPORT_SYMBOL_GPL vmlinux 0xf7d00313 fuse_mount_remove -EXPORT_SYMBOL_GPL vmlinux 0xf7d0176d mtd_writev -EXPORT_SYMBOL_GPL vmlinux 0xf7d0336f of_reserved_mem_device_init_by_name -EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite -EXPORT_SYMBOL_GPL vmlinux 0xf7dca2b7 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0xf7e50f1e dev_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0xf7e65f77 device_link_del -EXPORT_SYMBOL_GPL vmlinux 0xf7ea00eb __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0xf7f4ad26 v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL vmlinux 0xf804b8f3 crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0xf8061b9c v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL vmlinux 0xf80a990a device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0xf80f0d52 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xf80fe14a snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL vmlinux 0xf82ad238 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf834d0fa amba_bustype -EXPORT_SYMBOL_GPL vmlinux 0xf845bf4e inet6_cleanup_sock -EXPORT_SYMBOL_GPL vmlinux 0xf84f7418 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xf8578929 rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0xf8581309 scmi_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xf85d03f9 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xf861fb5c dev_pm_opp_remove_all_dynamic -EXPORT_SYMBOL_GPL vmlinux 0xf8640870 mtd_read -EXPORT_SYMBOL_GPL vmlinux 0xf864335e devm_irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xf865286d iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0xf870808d noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0xf87bcf4b d_walk -EXPORT_SYMBOL_GPL vmlinux 0xf87cc6fe snd_soc_dai_compr_ack -EXPORT_SYMBOL_GPL vmlinux 0xf8805998 tea5761_attach -EXPORT_SYMBOL_GPL vmlinux 0xf885f78d udp_destruct_common -EXPORT_SYMBOL_GPL vmlinux 0xf88650b2 device_attach -EXPORT_SYMBOL_GPL vmlinux 0xf889cd57 dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xf8b1f500 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf8b494b9 start_poll_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xf8b9c64e ping_hash -EXPORT_SYMBOL_GPL vmlinux 0xf8bc1d59 nvdimm_delete -EXPORT_SYMBOL_GPL vmlinux 0xf8bed70f __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xf8d0e5c1 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xf8f2a4eb snd_kill_fasync -EXPORT_SYMBOL_GPL vmlinux 0xf8f330aa of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fe5642 phylink_ethtool_get_pauseparam -EXPORT_SYMBOL_GPL vmlinux 0xf900c77d zynqmp_pm_clock_disable -EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xf918c3e8 aie_get_error_string -EXPORT_SYMBOL_GPL vmlinux 0xf91a9095 of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xf91c8593 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL vmlinux 0xf91e10ca virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0xf926ce5c iommu_uapi_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0xf938e96c skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0xf93bae92 sdhci_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0xf951f53f regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf95e5478 svc_close_xprt -EXPORT_SYMBOL_GPL vmlinux 0xf95efce5 l3mdev_table_lookup_register -EXPORT_SYMBOL_GPL vmlinux 0xf95fa1cf nfs_put_client -EXPORT_SYMBOL_GPL vmlinux 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xf964486f uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version -EXPORT_SYMBOL_GPL vmlinux 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL vmlinux 0xf988d687 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xf997062e pinconf_generic_dt_subnode_to_map -EXPORT_SYMBOL_GPL vmlinux 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL vmlinux 0xf99af85f nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL vmlinux 0xf99f2652 snd_soc_get_strobe -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a3c5dc zynqmp_pm_load_pdi -EXPORT_SYMBOL_GPL vmlinux 0xf9cdfb44 gss_mech_register -EXPORT_SYMBOL_GPL vmlinux 0xf9e20a19 serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0xf9e6ea40 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL vmlinux 0xf9f3886f ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0xf9fbe71a snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL vmlinux 0xf9ff12e9 zynqmp_pm_secure_load -EXPORT_SYMBOL_GPL vmlinux 0xfa055cff handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa2030a5 extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0xfa206a4c kvm_vcpu_block -EXPORT_SYMBOL_GPL vmlinux 0xfa27526d devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xfa2d23ac device_create -EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue -EXPORT_SYMBOL_GPL vmlinux 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL vmlinux 0xfa35ae42 nfs_file_llseek -EXPORT_SYMBOL_GPL vmlinux 0xfa43aed4 kvm_read_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0xfa5093f7 fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xfa5bc367 devlink_register -EXPORT_SYMBOL_GPL vmlinux 0xfa5e4651 skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0xfa81970e sm4_crypt_block -EXPORT_SYMBOL_GPL vmlinux 0xfa825ccd rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0xfa842d37 usbnet_tx_timeout -EXPORT_SYMBOL_GPL vmlinux 0xfa8e4b60 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xfa9b6b79 usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0xfa9f2913 gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0xfaa20c78 devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xfab1946c ahci_kick_engine -EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit -EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line -EXPORT_SYMBOL_GPL vmlinux 0xfacfa8dd rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfadef64b tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0xfae1a7a4 blk_queue_zone_write_granularity -EXPORT_SYMBOL_GPL vmlinux 0xfaf598c6 snd_ctl_request_layer -EXPORT_SYMBOL_GPL vmlinux 0xfafab551 nfsacl_decode -EXPORT_SYMBOL_GPL vmlinux 0xfafbe8fc skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0xfb057f6a mrp_uninit_applicant -EXPORT_SYMBOL_GPL vmlinux 0xfb0ad84b xvip_bpl_scaling_factor -EXPORT_SYMBOL_GPL vmlinux 0xfb0c3464 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL vmlinux 0xfb1f397b sched_trace_rq_nr_running -EXPORT_SYMBOL_GPL vmlinux 0xfb27ee77 config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL vmlinux 0xfb327437 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0xfb327ecb vb2_core_create_bufs -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb3807c7 spi_take_timestamp_post -EXPORT_SYMBOL_GPL vmlinux 0xfb3bdc4c sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0xfb4d0863 xhci_check_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0xfb6373d1 hisi_uncore_pmu_offline_cpu -EXPORT_SYMBOL_GPL vmlinux 0xfb6b3a3e virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0xfb6c3ee9 of_get_drm_display_mode -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb736fec set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xfb75efba perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0xfb7d29f7 usb_gadget_set_remote_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xfb7d3b9e snd_card_ref -EXPORT_SYMBOL_GPL vmlinux 0xfb959e98 of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0xfb96f72b topology_set_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xfb9ba1e1 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0xfbb7114b ubi_is_mapped -EXPORT_SYMBOL_GPL vmlinux 0xfbb7625c zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbc084ba store_sampling_rate -EXPORT_SYMBOL_GPL vmlinux 0xfbc9702f nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL vmlinux 0xfbeac781 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0xfbf1b45e amba_ahb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0xfbfe7a08 platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xfc014cb6 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0xfc03a4ca proc_dou8vec_minmax -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xfc169134 devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key -EXPORT_SYMBOL_GPL vmlinux 0xfc1bd3d5 rpc_task_release_transport -EXPORT_SYMBOL_GPL vmlinux 0xfc1f4434 dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xfc2eafe8 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc433aa2 media_graph_walk_start -EXPORT_SYMBOL_GPL vmlinux 0xfc46fb57 rpc_call_start -EXPORT_SYMBOL_GPL vmlinux 0xfc48cd5c nfs_writeback_update_inode -EXPORT_SYMBOL_GPL vmlinux 0xfc4e72bd bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL vmlinux 0xfc654560 snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL vmlinux 0xfc66e20b pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0xfc7248e0 fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0xfc746b3c gnttab_page_cache_shrink -EXPORT_SYMBOL_GPL vmlinux 0xfc781c47 __media_entity_enum_init -EXPORT_SYMBOL_GPL vmlinux 0xfc78f05f tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xfc7b1a7b balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xfc7d866a regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0xfc9005ef af_alg_accept -EXPORT_SYMBOL_GPL vmlinux 0xfc9477b5 zynqmp_pm_set_pll_frac_data -EXPORT_SYMBOL_GPL vmlinux 0xfc95e039 usb_composite_probe -EXPORT_SYMBOL_GPL vmlinux 0xfc9b2d8c raw_abort -EXPORT_SYMBOL_GPL vmlinux 0xfc9dcad5 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0xfca1614e pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xfcaa0a74 __acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0xfcb4c2ad led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0xfcbb7cd5 nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed -EXPORT_SYMBOL_GPL vmlinux 0xfcc0aa39 __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfccf1430 pinconf_generic_dt_node_to_map -EXPORT_SYMBOL_GPL vmlinux 0xfcdb5117 xdr_enter_page -EXPORT_SYMBOL_GPL vmlinux 0xfce6ded0 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfd046d68 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0xfd068326 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xfd082655 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0xfd101c38 macvlan_common_setup -EXPORT_SYMBOL_GPL vmlinux 0xfd22cb5c sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0xfd243340 fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0xfd2b4b21 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL vmlinux 0xfd45d423 badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0xfd47cb39 __class_register -EXPORT_SYMBOL_GPL vmlinux 0xfd4f4d6c platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0xfd58041b usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xfd5dda5b preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfd60c516 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xfd65a621 amba_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfd685ee8 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xfd6e2ab8 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable -EXPORT_SYMBOL_GPL vmlinux 0xfd76d9a9 kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xfd78a23e sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xfd79e8f5 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xfd7a4509 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xfd7b69de inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xfd9011ee pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xfd919ced __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0xfda09956 kvm_release_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xfda366e3 crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL vmlinux 0xfda5fc9b setfl -EXPORT_SYMBOL_GPL vmlinux 0xfdaf9237 rndis_free_response -EXPORT_SYMBOL_GPL vmlinux 0xfdbaf88c usb_for_each_port -EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdc0804a watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xfdcc47b2 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL vmlinux 0xfde4cb17 iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0xfde886d3 xfer_to_guest_mode_handle_work -EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfdea5d3c __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL vmlinux 0xfdefeec5 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0xfdf72645 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xfe0d7bd8 acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0xfe0d99c4 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release -EXPORT_SYMBOL_GPL vmlinux 0xfe30dbff kvm_vcpu_unmap -EXPORT_SYMBOL_GPL vmlinux 0xfe36cbca pm_wakeup_ws_event -EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfe3ab90e invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe51af58 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0xfe60f54c acpi_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0xfe618952 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0xfe7376ba pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xfe7fe7be nfs_commitdata_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0xfe923ffc _vb2_fop_release -EXPORT_SYMBOL_GPL vmlinux 0xfe969494 dev_pm_opp_get_suspend_opp_freq -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfe9ed5d9 cache_destroy_net -EXPORT_SYMBOL_GPL vmlinux 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL vmlinux 0xfea0d83d snd_soc_dapm_sync -EXPORT_SYMBOL_GPL vmlinux 0xfea41ae7 pinconf_generic_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0xfea69237 acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xfeb904ed fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0xfebb0a8e dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0xfebb8bde is_current_mnt_ns -EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0xfed0eb15 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xfee4c60d mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0xfee7b016 of_detach_node -EXPORT_SYMBOL_GPL vmlinux 0xfee88dd1 tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert -EXPORT_SYMBOL_GPL vmlinux 0xff214d80 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff42c38f vb2_core_queue_init -EXPORT_SYMBOL_GPL vmlinux 0xff585440 v4l2_dv_timings_aspect_ratio -EXPORT_SYMBOL_GPL vmlinux 0xff5c56fe nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0xff7d0b60 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui -EXPORT_SYMBOL_GPL vmlinux 0xff80600a hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0xff83e301 devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xff9bd9b9 pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xff9e70eb v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL vmlinux 0xffa424cd iomap_readpage -EXPORT_SYMBOL_GPL vmlinux 0xffa91993 iommu_set_pgtable_quirks -EXPORT_SYMBOL_GPL vmlinux 0xffaa6248 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xffab26b1 of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffc824d9 kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xffe2e0a8 xen_remap_vma_range -EXPORT_SYMBOL_GPL vmlinux 0xffe6bf48 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0xfff32349 hid_connect -FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux -IIO_ADISLIB EXPORT_SYMBOL 0x94d920d0 adis_debugfs_reg_access drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL 0xa6dcb350 __adis_enable_irq drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x0b61efef __adis_initial_startup drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x1c55d649 adis_update_scan_mode drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x2c9cf824 adis_single_conversion drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x3e00f517 devm_adis_probe_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x610e812a __adis_write_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x99a52f50 __adis_check_status drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xbb737a88 __adis_read_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xcef9fc96 __adis_update_bits_base drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xed75ad08 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xed9d576f adis_init drivers/iio/imu/adis_lib -IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x3fdc085b __adis_reset drivers/iio/imu/adis_lib -IIO_HID EXPORT_SYMBOL 0x0d88a29b hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x1b73df56 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x3dde033e hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x470fac8f hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x4a8ec67a hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x5be337b5 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x657778ad hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x7aa3489a hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x8a762f80 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x9f6d09bb hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xadeef441 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xfbd6ea71 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x109fb5cf hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x3cecdfec hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x6799b318 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xf6c71dde hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -LTC2497 EXPORT_SYMBOL 0x6642fbc6 ltc2497core_probe drivers/iio/adc/ltc2497-core -LTC2497 EXPORT_SYMBOL 0xa01be903 ltc2497core_remove drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x0e2847d2 mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x62c49308 mcb_get_resource drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x66f9a5b2 mcb_bus_add_devices drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x837b47da mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x97bc9842 mcb_free_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xa0ee9930 mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xb317e4e5 __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xb32c95be mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xba91e0d5 chameleon_parse_cells drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xd074d133 mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xdc1a2ed1 mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xe1bea49b mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xf912a8c0 mcb_alloc_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xfa8d48b8 mcb_request_mem drivers/mcb/mcb -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x15a832e6 nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x38d8b547 nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x74c8443e nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x8d9f2f2d nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xb885817b nvme_execute_passthru_rq drivers/nvme/host/nvme-core -PMBUS EXPORT_SYMBOL_GPL 0x215068dc pmbus_clear_faults vmlinux -PMBUS EXPORT_SYMBOL_GPL 0x2ddb970a pmbus_set_page vmlinux -PMBUS EXPORT_SYMBOL_GPL 0x3031a174 pmbus_get_fan_rate_device vmlinux -PMBUS EXPORT_SYMBOL_GPL 0x37ff812d pmbus_get_fan_rate_cached vmlinux -PMBUS EXPORT_SYMBOL_GPL 0x524881bc pmbus_update_fan vmlinux -PMBUS EXPORT_SYMBOL_GPL 0x539d487b pmbus_regulator_ops vmlinux -PMBUS EXPORT_SYMBOL_GPL 0x64352ace pmbus_check_byte_register vmlinux -PMBUS EXPORT_SYMBOL_GPL 0x67af2ea7 pmbus_read_word_data vmlinux -PMBUS EXPORT_SYMBOL_GPL 0x74a7931b pmbus_write_byte vmlinux -PMBUS EXPORT_SYMBOL_GPL 0x7a5c8f52 pmbus_write_byte_data vmlinux -PMBUS EXPORT_SYMBOL_GPL 0x7cd98941 pmbus_clear_cache vmlinux -PMBUS EXPORT_SYMBOL_GPL 0x810465ab pmbus_do_probe vmlinux -PMBUS EXPORT_SYMBOL_GPL 0x85051f78 pmbus_check_word_register vmlinux -PMBUS EXPORT_SYMBOL_GPL 0x91e4440f pmbus_write_word_data vmlinux -PMBUS EXPORT_SYMBOL_GPL 0x98e41e48 pmbus_set_update vmlinux -PMBUS EXPORT_SYMBOL_GPL 0x9eb7c468 pmbus_get_debugfs_dir vmlinux -PMBUS EXPORT_SYMBOL_GPL 0xbb4037c5 pmbus_update_byte_data vmlinux -PMBUS EXPORT_SYMBOL_GPL 0xdc3f32d1 pmbus_read_byte_data vmlinux -PMBUS EXPORT_SYMBOL_GPL 0xf44b7b72 pmbus_get_driver_info vmlinux -SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x4c535c01 sdw_intel_exit drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x4cfd84d4 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 0xaa52eba1 sdw_intel_thread drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xe06b9b64 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xee9ffab2 sdw_intel_probe drivers/soundwire/soundwire-intel -USB_STORAGE EXPORT_SYMBOL_GPL 0x01be324d usb_stor_suspend vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0x0793099f usb_stor_Bulk_reset vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0x33cce591 usb_stor_Bulk_transport vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0x3ecc277d usb_stor_bulk_srb vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0x68b69a66 usb_stor_transparent_scsi_command vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0x706384d8 usb_stor_CB_transport vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0x7e0ddd0d usb_stor_probe1 vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0x7f0af0e1 usb_stor_access_xfer_buf vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0x88257ef8 usb_stor_post_reset vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0x90a0d9f2 usb_stor_host_template_init vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0x9367735b usb_stor_set_xfer_buf vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0x9d5f4af9 usb_stor_bulk_transfer_sg vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0xab1c8741 usb_stor_bulk_transfer_buf vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0xafd0a473 usb_stor_pre_reset vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0xb8e9b885 usb_stor_disconnect vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0xbad23963 usb_stor_clear_halt vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0xbee5b139 usb_stor_CB_reset vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0xc75be6b5 usb_stor_reset_resume vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0xcc66c243 usb_stor_probe2 vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0xce1644f4 fill_inquiry_response vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0xd3880df1 usb_stor_ctrl_transfer vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0xdd1eb14b usb_stor_resume vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0xdf2533bf usb_stor_control_msg vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0xe9b4ba09 usb_stor_adjust_quirks vmlinux reverted: --- linux-xilinx-zynqmp-5.15.0/debian.zynqmp/abi/arm64/xilinx-zynqmp.compiler +++ linux-xilinx-zynqmp-5.15.0.orig/debian.zynqmp/abi/arm64/xilinx-zynqmp.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 reverted: --- linux-xilinx-zynqmp-5.15.0/debian.zynqmp/abi/arm64/xilinx-zynqmp.modules +++ linux-xilinx-zynqmp-5.15.0.orig/debian.zynqmp/abi/arm64/xilinx-zynqmp.modules @@ -1,5685 +0,0 @@ -3c59x -3w-9xxx -3w-sas -3w-xxxx -6lowpan -6pack -8139cp -8139too -8250_men_mcb -8255 -8255_pci -8390 -842 -842_compress -842_decompress -88pg86x -88pm800 -88pm800-regulator -88pm805 -88pm80x -88pm80x_onkey -88pm8607 -88pm860x-ts -88pm860x_battery -88pm860x_bl -88pm860x_charger -88pm860x_onkey -9p -9pnet -9pnet_rdma -9pnet_virtio -9pnet_xen -a100u2w -a3d -a8293 -aacraid -aat2870-regulator -aat2870_bl -abp060mg -acard-ahci -acecad -acenic -acp_audio_dma -acpi-als -acpi_configfs -acpi_ipmi -acpi_power_meter -acpi_tad -acpiphp_ibm -act8865-regulator -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 -ad2s1200 -ad2s1210 -ad2s90 -ad5064 -ad5110 -ad525x_dpot -ad525x_dpot-i2c -ad525x_dpot-spi -ad5272 -ad5360 -ad5380 -ad5398 -ad5421 -ad5446 -ad5449 -ad5504 -ad5592r -ad5592r-base -ad5593r -ad5624r_spi -ad5686 -ad5686-spi -ad5696-i2c -ad5755 -ad5758 -ad5761 -ad5764 -ad5766 -ad5770r -ad5791 -ad5820 -ad5933 -ad7091r-base -ad7091r5 -ad7124 -ad714x -ad714x-i2c -ad714x-spi -ad7150 -ad7192 -ad7266 -ad7280a -ad7291 -ad7292 -ad7298 -ad7303 -ad7314 -ad7414 -ad7418 -ad7476 -ad7606 -ad7606_par -ad7606_spi -ad7746 -ad7766 -ad7768-1 -ad7780 -ad7791 -ad7793 -ad7816 -ad7877 -ad7879 -ad7879-i2c -ad7879-spi -ad7887 -ad7923 -ad7949 -ad799x -ad8366 -ad8801 -ad9389b -ad9467 -ad9523 -ad9832 -ad9834 -ad_sigma_delta -adc-joystick -adc-keys -adc128d818 -adcxx -addi_apci_1032 -addi_apci_1500 -addi_apci_1516 -addi_apci_1564 -addi_apci_16xx -addi_apci_2032 -addi_apci_2200 -addi_apci_3120 -addi_apci_3501 -addi_apci_3xxx -addi_watchdog -ade7854 -ade7854-i2c -ade7854-spi -adf4350 -adf4371 -adf7242 -adfs -adi -adi-axi-adc -adiantum -adin -adis16080 -adis16130 -adis16136 -adis16201 -adis16203 -adis16209 -adis16240 -adis16260 -adis16400 -adis16460 -adis16475 -adis16480 -adis_lib -adjd_s311 -adl_pci6208 -adl_pci7x3x -adl_pci8164 -adl_pci9111 -adl_pci9118 -adm1021 -adm1025 -adm1026 -adm1029 -adm1031 -adm1177 -adm1266 -adm1275 -adm8211 -adm9240 -adp1653 -adp5061 -adp5520-keys -adp5520_bl -adp5588-keys -adp5589-keys -adp8860_bl -adp8870_bl -adq12b -ads7828 -ads7846 -ads7871 -adt7310 -adt7316 -adt7316-i2c -adt7316-spi -adt7410 -adt7411 -adt7462 -adt7470 -adt7475 -adt7x10 -adummy -adutux -adux1020 -adv7170 -adv7175 -adv7180 -adv7183 -adv7343 -adv7393 -adv748x -adv7511_drm -adv7604 -adv7842 -adv_pci1710 -adv_pci1720 -adv_pci1723 -adv_pci1724 -adv_pci1760 -adv_pci_dio -advansys -adxl34x -adxl34x-i2c -adxl34x-spi -adxl372 -adxl372_i2c -adxl372_spi -adxrs290 -adxrs450 -aegis128 -aes-arm64 -aes-ce-blk -aes-ce-ccm -aes-ce-cipher -aes-neon-blk -aes-neon-bs -aes_ti -af9013 -af9033 -af_key -af_packet_diag -afe4403 -afe4404 -affs -afs -ah4 -ah6 -ahci -ahci_ceva -ahci_qoriq -ahci_xgene -aht10 -aic79xx -aic7xxx -aic94xx -aio_aio12_8 -aio_iiro_16 -aiptek -aircable -airspy -ak7375 -ak881x -ak8974 -ak8975 -al3010 -al3320a -al5d -al5e -alcor -alcor_pci -algif_aead -algif_rng -alim7101_wdt -allegro -altera-ci -altera-cvp -altera-freeze-bridge -altera-msgdma -altera-pr-ip-core -altera-pr-ip-core-plat -altera-ps-spi -altera-stapl -altera_jtaguart -altera_ps2 -altera_tse -altera_uart -alx -am2315 -am53c974 -amba-clcd -ambakmi -amc6821 -amd -amd-xgbe -amd5536udc_pci -amd8111e -amdgpu -amlogic-gxl-crypto -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 -amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 -amplc_pci236 -amplc_pci263 -ams-iaq-core -ams369fg06 -analog -analogix-anx6345 -analogix-anx78xx -analogix_dp -ansi_cprng -anx7625 -anybuss_core -aoe -ap1302 -apbps2 -apds9300 -apds9802als -apds990x -apds9960 -apple-mfi-fastcharge -appledisplay -appletalk -appletouch -applicom -aptina-pll -aqc111 -aquacomputer_d5next -aquantia -ar1021_i2c -ar1335 -ar5523 -ar7part -ar9331 -arc-rawmode -arc-rimi -arc_ps2 -arc_uart -arcmsr -arcnet -arcpgu -arcx-anybus -arcxcnn_bl -arizona -arizona-haptics -arizona-i2c -arizona-ldo1 -arizona-micsupp -arizona-spi -ark3116 -arkfb -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 -arp_tables -arpt_mangle -arptable_filter -as102_fe -as370-hwmon -as3711-regulator -as3711_bl -as3722-regulator -as3935 -as5011 -as73211 -asc7621 -ascot2e -ashmem_linux -aspeed-pwm-tacho -aspeed-video -ast -asym_tpm -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at25 -at76c50x-usb -at803x -at86rf230 -ata_generic -ata_piix -atbm8830 -atc260x-core -atc260x-i2c -atc260x-onkey -atc260x-poweroff -atc260x-regulator -ath -ath10k_core -ath10k_pci -ath10k_sdio -ath10k_usb -ath11k -ath11k_ahb -ath11k_pci -ath3k -ath5k -ath6kl_core -ath6kl_sdio -ath6kl_usb -ath9k -ath9k_common -ath9k_htc -ath9k_hw -ath9k_pci_owl_loader -ati_remote -ati_remote2 -atl1 -atl1c -atl1e -atl2 -atlantic -atlas-ezo-sensor -atlas-sensor -atm -atmel -atmel-ecc -atmel-flexcom -atmel-hlcdc -atmel-i2c -atmel-sha204a -atmel_captouch -atmel_mxt_ts -atmel_pci -atmtcp -atp870u -atusb -atxp1 -aty128fb -atyfb -au0828 -au8522_common -au8522_decoder -au8522_dig -auo-pixcir-ts -authenc -authencesn -autofs4 -avmfritz -ax25 -axi-fan-control -axis-fifo -axp20x -axp20x-i2c -axp20x-pek -axp20x-regulator -axp20x_ac_power -axp20x_adc -axp20x_battery -axp20x_usb_power -axp288_adc -b2c2-flexcop -b2c2-flexcop-pci -b2c2-flexcop-usb -b43 -b43legacy -b44 -b53_common -b53_mdio -b53_mmap -b53_serdes -b53_spi -b53_srab -ba431-rng -bareudp -batman-adv -baycom_par -baycom_ser_fdx -baycom_ser_hdx -bcache -bcm-keypad -bcm-phy-lib -bcm-sf2 -bcm203x -bcm3510 -bcm54140 -bcm590xx -bcm590xx-regulator -bcm5974 -bcm63138_nand -bcm6368_nand -bcm63xx_uart -bcm7xxx -bcm87xx -bcm_vk -bcma -bcma-hcd -bcmsysport -bd6107 -bd71815-regulator -bd71828-regulator -bd718x7-regulator -bd9571mwv -bd9571mwv-regulator -bd9576-regulator -bd9576_wdt -bd99954-charger -bdc -be2iscsi -be2net -befs -bel-pfe -belkin_sa -bfa -bfq -bfs -bfusb -bh1750 -bh1770glc -bh1780 -binder_linux -binfmt_misc -block2mtd -blowfish_common -blowfish_generic -bluefield_edac -bluetooth -bluetooth_6lowpan -bma150 -bma220_spi -bma400_core -bma400_i2c -bma400_spi -bmc150-accel-core -bmc150-accel-i2c -bmc150-accel-spi -bmc150_magn -bmc150_magn_i2c -bmc150_magn_spi -bme680_core -bme680_i2c -bme680_spi -bmg160_core -bmg160_i2c -bmg160_spi -bmi088-accel-core -bmi088-accel-spi -bmi160_core -bmi160_i2c -bmi160_spi -bmp280 -bmp280-i2c -bmp280-spi -bna -bnep -bnx2 -bnx2fc -bnx2i -bnx2x -bnxt_en -bnxt_re -bochs -bonding -bpa-rs600 -bpa10x -bpfilter -bpqether -bq2415x_charger -bq24190_charger -bq24257_charger -bq24735-charger -bq2515x_charger -bq256xx_charger -bq25890_charger -bq25980_charger -bq27xxx_battery -bq27xxx_battery_hdq -bq27xxx_battery_i2c -br2684 -br_netfilter -brcmfmac -brcmnand -brcmsmac -brcmstb_nand -brcmutil -bridge -broadcom -bsd_comp -bt819 -bt856 -bt866 -bt878 -btbcm -btcoexist -btintel -btmrvl -btmrvl_sdio -btmtksdio -btmtkuart -btqca -btrsi -btrtl -btsdio -bttv -btusb -bu21013_ts -bu21029_ts -budget -budget-av -budget-ci -budget-core -budget-patch -c67x00 -c6xdigio -c_can -c_can_pci -c_can_platform -ca8210 -cachefiles -cadence-nand-controller -cafe_ccic -cafe_nand -caif -caif_serial -caif_socket -caif_usb -caif_virtio -camellia_generic -can -can-bcm -can-dev -can-gw -can-isotp -can-j1939 -can-raw -cap11xx -capmode -capsule-loader -carl9170 -carminefb -cassini -cast5_generic -cast6_generic -cast_common -catc -cavium_ptp -cb710 -cb710-mmc -cb_pcidas -cb_pcidas64 -cb_pcidda -cb_pcimdas -cb_pcimdda -cc10001_adc -cc2520 -cc770 -cc770_isa -cc770_platform -ccm -ccp -ccp-crypto -ccree -ccs -ccs-pll -ccs811 -cctrng -cdc-acm -cdc-phonet -cdc-wdm -cdc_eem -cdc_mbim -cdns-csi2rx -cdns-csi2tx -cdns-dphy -cdns-dsi -cdns-mhdp8546 -cdns-pltfrm -cdns-usb-common -cdns3 -cdns3-pci-wrap -cdnsp-udc-pci -ceph -cfb -cfg80211 -cfi_cmdset_0002 -cfi_cmdset_0020 -ch -ch341 -ch7006 -ch7322 -ch9200 -ch_ipsec -ch_ktls -chacha-neon -chacha20poly1305 -chacha_generic -chaoskey -charlcd -chcr -chipone-icn6211 -chipone_icn8318 -chipone_icn8505 -chnl_net -chromeos_tbmc -chrontel-ch7033 -ci_hdrc -ci_hdrc_imx -ci_hdrc_msm -ci_hdrc_pci -ci_hdrc_tegra -ci_hdrc_usb2 -cicada -cifs -cifs_arc4 -cifs_md4 -cirrus -cirrusfb -clip -clk-axi-clkgen -clk-bd718x7 -clk-cdce706 -clk-cdce925 -clk-cs2000-cp -clk-lmk04832 -clk-lochnagar -clk-max77686 -clk-max9485 -clk-palmas -clk-pwm -clk-rk808 -clk-s2mps11 -clk-scmi -clk-scpi -clk-si514 -clk-si5351 -clk-si544 -clk-twl6040 -clk-versaclock5 -clk-wm831x -cls_basic -cls_bpf -cls_cgroup -cls_flow -cls_flower -cls_fw -cls_matchall -cls_route -cls_u32 -cm109 -cm32181 -cm3232 -cm3323 -cm3605 -cm36651 -cma3000_d0x -cma3000_d0x_i2c -cmac -cmtp -cnic -cobra -coda -colibri-vf50-ts -com20020 -com20020-pci -com90io -com90xx -comedi -comedi_8254 -comedi_8255 -comedi_bond -comedi_example_test -comedi_parport -comedi_pci -comedi_test -comedi_usb -contec_pci_dio -cordic -core -corsair-cpro -corsair-psu -cortina -counter -cp210x -cpcap-adc -cpcap-battery -cpcap-pwrbutton -cpcap-regulator -cpia2 -cppc_cpufreq -cramfs -crc-itu-t -crc32_generic -crc4 -crc64 -crc7 -crct10dif-ce -cros-ec-anx7688 -cros-ec-cec -cros-ec-regulator -cros-ec-sensorhub -cros_ec -cros_ec_accel_legacy -cros_ec_baro -cros_ec_chardev -cros_ec_debugfs -cros_ec_dev -cros_ec_i2c -cros_ec_keyb -cros_ec_lid_angle -cros_ec_light_prox -cros_ec_lightbar -cros_ec_mkbp_proximity -cros_ec_rpmsg -cros_ec_sensors -cros_ec_sensors_core -cros_ec_spi -cros_ec_sysfs -cros_ec_typec -cros_ec_vbc -cros_kbd_led_backlight -cros_peripheral_charger -cros_usbpd-charger -cros_usbpd_logger -cros_usbpd_notify -cryptd -crypto_safexcel -crypto_simd -crypto_user -cryptoloop -cs3308 -cs5345 -cs53l32a -csiostor -curve25519-generic -cuse -cw1200_core -cw1200_wlan_sdio -cw1200_wlan_spi -cw2015_battery -cx18 -cx18-alsa -cx22700 -cx22702 -cx231xx -cx231xx-alsa -cx231xx-dvb -cx2341x -cx23885 -cx24110 -cx24113 -cx24116 -cx24117 -cx24120 -cx24123 -cx25821 -cx25821-alsa -cx25840 -cx82310_eth -cx88-alsa -cx88-blackbird -cx88-dvb -cx88-vp3054-i2c -cx8800 -cx8802 -cx88xx -cxacru -cxd2099 -cxd2820r -cxd2841er -cxd2880 -cxd2880-spi -cxgb -cxgb3 -cxgb3i -cxgb4 -cxgb4i -cxgb4vf -cxgbit -cxl_acpi -cxl_core -cxl_pci -cxl_pmem -cy8ctma140 -cy8ctmg110_ts -cyapatp -cyber2000fb -cyberjack -cypress_cy7c63 -cypress_firmware -cypress_m8 -cytherm -cyttsp4_core -cyttsp4_i2c -cyttsp4_spi -cyttsp_core -cyttsp_i2c -cyttsp_i2c_common -cyttsp_spi -da280 -da311 -da7280 -da9030_battery -da9034-ts -da903x-regulator -da903x_bl -da9052-battery -da9052-hwmon -da9052-regulator -da9052_bl -da9052_onkey -da9052_tsi -da9052_wdt -da9055-hwmon -da9055-regulator -da9055_onkey -da9055_wdt -da9062-core -da9062-regulator -da9062-thermal -da9062_wdt -da9063-regulator -da9063_onkey -da9063_wdt -da9121-regulator -da9150-charger -da9150-fg -da9150-gpadc -da9210-regulator -da9211-regulator -dac02 -daqboard2000 -das08 -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 -dax_hmem -dax_pmem -dax_pmem_compat -dax_pmem_core -db9 -dc395x -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -ddbridge -ddbridge-dummy-fe -de2104x -defxx -denali -denali_dt -denali_pci -des_generic -designware_i2s -device_dax -dfl -dfl-afu -dfl-emif -dfl-fme -dfl-fme-br -dfl-fme-mgr -dfl-fme-region -dfl-n3000-nios -dfl-pci -dht11 -diag -dib0070 -dib0090 -dib3000mb -dib3000mc -dib7000m -dib7000p -dib8000 -dib9000 -dibx000_common -digi_acceleport -digicolor-usart -diskonchip -display-connector -dl2k -dlhl60d -dlink-dir685-touchkeys -dlm -dln2 -dln2-adc -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 -dm1105 -dm9601 -dma-axi-dmac -dmaproxy -dmard06 -dmard09 -dmard10 -dmc520_edac -dme1737 -dmfe -dmi-sysfs -dmm32at -dmx3191d -dnet -dp159 -dp83640 -dp83822 -dp83869 -dp83tc811 -dpot-dac -dps310 -dps920ab -dpt_i2o -drbd -drivetemp -drm_mipi_dbi -drm_ttm_helper -drm_vram_helper -drm_xen_front -drv260x -drv2665 -drv2667 -drx39xyj -drxd -drxk -ds1621 -ds1682 -ds1803 -ds1wm -ds2482 -ds2490 -ds2760_battery -ds2780_battery -ds2781_battery -ds2782_battery -ds3000 -ds4424 -ds620 -dsa_core -dsbr100 -dst -dst_ca -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x -dt3000 -dt3155 -dt9812 -dummy -dummy-irq -dummy_stm -dvb-as102 -dvb-bt8xx -dvb-pll -dvb-ttpci -dvb-ttusb-budget -dvb-usb -dvb-usb-a800 -dvb-usb-af9005 -dvb-usb-af9005-remote -dvb-usb-af9015 -dvb-usb-af9035 -dvb-usb-anysee -dvb-usb-au6610 -dvb-usb-az6007 -dvb-usb-az6027 -dvb-usb-ce6230 -dvb-usb-cinergyT2 -dvb-usb-cxusb -dvb-usb-dib0700 -dvb-usb-dibusb-common -dvb-usb-dibusb-mb -dvb-usb-dibusb-mc -dvb-usb-dibusb-mc-common -dvb-usb-digitv -dvb-usb-dtt200u -dvb-usb-dtv5100 -dvb-usb-dvbsky -dvb-usb-dw2102 -dvb-usb-ec168 -dvb-usb-gl861 -dvb-usb-gp8psk -dvb-usb-lmedm04 -dvb-usb-m920x -dvb-usb-mxl111sf -dvb-usb-nova-t-usb2 -dvb-usb-opera -dvb-usb-pctv452e -dvb-usb-rtl28xxu -dvb-usb-technisat-usb2 -dvb-usb-ttusb2 -dvb-usb-umt-010 -dvb-usb-vp702x -dvb-usb-vp7045 -dvb_dummy_fe -dvb_usb_v2 -dw-axi-dmac-platform -dw-edma -dw-edma-pcie -dw-hdmi -dw-hdmi-ahb-audio -dw-hdmi-cec -dw-hdmi-i2s-audio -dw-i3c-master -dw-xdata-pcie -dw9714 -dw9768 -dw9807-vcm -dw_dmac -dw_dmac_core -dw_dmac_pci -dw_drm_dsi -dw_mmc -dw_mmc-bluefield -dw_mmc-exynos -dw_mmc-hi3798cv200 -dw_mmc-k3 -dw_mmc-pci -dw_mmc-pltfm -dw_wdt -dwc-xlgmac -dwc2_pci -dwc3-pci -dwmac-dwc-qos-eth -dwmac-generic -dwmac-intel-plat -dwmac-loongson -dyna_pci10xx -dynapro -e100 -e1000 -e1000e -e3x0-button -e4000 -earth-pt1 -earth-pt3 -ebt_802_3 -ebt_among -ebt_arp -ebt_arpreply -ebt_dnat -ebt_ip -ebt_ip6 -ebt_limit -ebt_log -ebt_mark -ebt_mark_m -ebt_nflog -ebt_pkttype -ebt_redirect -ebt_snat -ebt_stp -ebt_vlan -ebtable_broute -ebtable_filter -ebtable_nat -ebtables -ec100 -ec_sys -ecdsa_generic -echainiv -echo -ecrdsa_generic -edt-ft5x06 -ee1004 -eeprom -eeprom_93cx6 -eeprom_93xx46 -eeti_ts -efa -efct -efi-pstore -efi_test -efibc -efs -egalax_ts -egalax_ts_serial -ehci-fsl -ehci-platform -ehset -einj -ektf2127 -elan_i2c -elants_i2c -elo -em28xx -em28xx-alsa -em28xx-dvb -em28xx-rc -em28xx-v4l -em_canid -em_cmp -em_ipset -em_ipt -em_meta -em_nbyte -em_text -em_u32 -emc1403 -emc2103 -emc6w201 -emi26 -emi62 -empeg -ems_pci -ems_usb -emu10k1-gp -ena -enc28j60 -enclosure -encx24j600 -encx24j600-regmap -ene_ir -eni -enic -envelope-detector -epic100 -eql -erofs -esas2r -esd_usb2 -esp4 -esp4_offload -esp6 -esp6_offload -esp_scsi -essiv -et131x -et8ek8 -etas_es58x -ethoc -etnaviv -evbug -exc3000 -exfat -extcon-adc-jack -extcon-fsa9480 -extcon-gpio -extcon-max14577 -extcon-max3355 -extcon-max77693 -extcon-max77843 -extcon-max8997 -extcon-palmas -extcon-ptn5150 -extcon-rt8973a -extcon-sm5502 -extcon-usb-gpio -extcon-usbc-cros-ec -extcon-usbc-tusb320 -ezusb -f2fs -f71805f -f71882fg -f75375s -f81232 -f81534 -f81601 -failover -fakelb -fan53555 -fan53880 -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_tinylcd -fb_tls8204 -fb_uc1611 -fb_uc1701 -fb_upd161704 -fb_watterott -fbtft -fc0011 -fc0012 -fc0013 -fc2580 -fcoe -fcrypt -fdomain -fdomain_pci -fdp -fdp_i2c -fealnx -ff-memless -ffa-module -fieldbus_dev -fintek-cir -firedtv -firewire-core -firewire-net -firewire-ohci -firewire-sbp2 -firewire-serial -fjes -fl512 -flexcan -fm10k -fm801-gp -fm_drv -forcedeth -fore_200e -fotg210-hcd -fotg210-udc -fou -fou6 -freevxfs -fscache -fsi-core -fsi-master-aspeed -fsi-master-gpio -fsi-master-hub -fsi-occ -fsi-sbefifo -fsi-scom -fsia6b -fsl-edma -fsl-edma-common -fsl-enetc -fsl-enetc-ierb -fsl-enetc-mdio -fsl-enetc-ptp -fsl-enetc-vf -fsl-mph-dr-of -fsl-qdma -fsl_linflexuart -fsl_lpuart -fsl_pq_mdio -fsl_ucc_hdlc -fsp-3y -ftdi-elan -ftdi_sio -ftl -ftm-quaddec -ftsteutates -fujitsu_ts -fusb302 -fxas21002c_core -fxas21002c_i2c -fxas21002c_spi -fxls8962af-core -fxls8962af-i2c -fxls8962af-spi -fxos8700_core -fxos8700_i2c -fxos8700_spi -g450_pll -g760a -g762 -g_acm_ms -g_audio -g_cdc -g_dbgp -g_ether -g_ffs -g_hid -g_mass_storage -g_midi -g_ncm -g_nokia -g_printer -g_serial -g_webcam -g_zero -gadgetfs -gamecon -gameport -garmin_gps -gateworks-gsc -gb-audio-apbridgea -gb-audio-codec -gb-audio-gb -gb-audio-manager -gb-audio-module -gb-bootrom -gb-es2 -gb-firmware -gb-gbphy -gb-gpio -gb-hid -gb-i2c -gb-light -gb-log -gb-loopback -gb-power-supply -gb-pwm -gb-raw -gb-sdio -gb-spi -gb-spilib -gb-uart -gb-usb -gb-vibrator -gdmtty -gdmulte -gemini -generic -generic-adc-battery -genet -geneve -genwqe_card -gf2k -gfs2 -gianfar_driver -gl518sm -gl520sm -gl620a -gluebi -gm12u320 -gnss -gnss-mtk -gnss-serial -gnss-sirf -gnss-ubx -go7007 -go7007-loader -go7007-usb -goku_udc -goldfish_battery -goodix -gp2ap002 -gp2ap020a00f -gp8psk-fe -gpio -gpio-74x164 -gpio-74xx-mmio -gpio-adnp -gpio-adp5520 -gpio-adp5588 -gpio-aggregator -gpio-altera -gpio-amd-fch -gpio-amdpt -gpio-arizona -gpio-bd70528 -gpio-bd71815 -gpio-bd71828 -gpio-bd9571mwv -gpio-beeper -gpio-cadence -gpio-charger -gpio-da9052 -gpio-da9055 -gpio-dln2 -gpio-dwapb -gpio-exar -gpio-fan -gpio-grgpio -gpio-gw-pld -gpio-hisi -gpio-hlwd -gpio-ir-recv -gpio-ir-tx -gpio-janz-ttl -gpio-kempld -gpio-logicvc -gpio-lp3943 -gpio-lp873x -gpio-lp87565 -gpio-madera -gpio-max3191x -gpio-max7300 -gpio-max7301 -gpio-max730x -gpio-max732x -gpio-max77620 -gpio-max77650 -gpio-mb86s7x -gpio-mc33880 -gpio-menz127 -gpio-mlxbf -gpio-mlxbf2 -gpio-moxtet -gpio-pca9570 -gpio-pcf857x -gpio-pci-idio-16 -gpio-pcie-idio-24 -gpio-pisosr -gpio-rdc321x -gpio-sama5d2-piobu -gpio-siox -gpio-syscon -gpio-tpic2810 -gpio-tps65218 -gpio-tps65912 -gpio-tqmx86 -gpio-twl4030 -gpio-twl6040 -gpio-ucb1400 -gpio-vibra -gpio-viperboard -gpio-virtio -gpio-wcd934x -gpio-wm831x -gpio-wm8350 -gpio-wm8994 -gpio-xra1403 -gpio_backlight -gpio_decoder -gpio_mouse -gpio_wdt -gpu-sched -gr_udc -grcan -gre -greybus -grip -grip_mp -gs1662 -gs_fpga -gs_usb -gsc-hwmon -gsc_hpdi -gspca_benq -gspca_conex -gspca_cpia1 -gspca_dtcs033 -gspca_etoms -gspca_finepix -gspca_gl860 -gspca_jeilinj -gspca_jl2005bcd -gspca_kinect -gspca_konica -gspca_m5602 -gspca_main -gspca_mars -gspca_mr97310a -gspca_nw80x -gspca_ov519 -gspca_ov534 -gspca_ov534_9 -gspca_pac207 -gspca_pac7302 -gspca_pac7311 -gspca_se401 -gspca_sn9c2028 -gspca_sn9c20x -gspca_sonixb -gspca_sonixj -gspca_spca1528 -gspca_spca500 -gspca_spca501 -gspca_spca505 -gspca_spca506 -gspca_spca508 -gspca_spca561 -gspca_sq905 -gspca_sq905c -gspca_sq930x -gspca_stk014 -gspca_stk1135 -gspca_stv0680 -gspca_stv06xx -gspca_sunplus -gspca_t613 -gspca_topro -gspca_touptek -gspca_tv8532 -gspca_vc032x -gspca_vicam -gspca_xirlink_cit -gspca_zc3xx -gtp -gud -guillemot -gunze -gve -habanalabs -hackrf -hamachi -hampshire -hanwang -hbmc-am654 -hci -hci_nokia -hci_uart -hci_vhci -hclge -hclgevf -hd3ss3220 -hd44780 -hd44780_common -hdc100x -hdc2010 -hdlc -hdlc_cisco -hdlc_fr -hdlc_ppp -hdlc_raw -hdlc_raw_eth -hdlc_x25 -hdlcd -hdlcdrv -hdma -hdma_mgmt -hdpvr -he -helene -hellcreek_sw -hexium_gemini -hexium_orion -hfcmulti -hfcpci -hfcsusb -hfs -hfsplus -hi311x -hi556 -hi6210-i2s -hi6421-pmic-core -hi6421-regulator -hi6421-spmi-pmic -hi6421v530-regulator -hi6421v600-irq -hi6421v600-regulator -hi8435 -hibmc-drm -hid-a4tech -hid-accutouch -hid-alps -hid-apple -hid-appleir -hid-asus -hid-aureal -hid-axff -hid-belkin -hid-betopff -hid-bigbenff -hid-cherry -hid-chicony -hid-cmedia -hid-corsair -hid-cougar -hid-cp2112 -hid-creative-sb0540 -hid-cypress -hid-dr -hid-elan -hid-elecom -hid-elo -hid-emsff -hid-ezkey -hid-ft260 -hid-gaff -hid-gembird -hid-gfrm -hid-glorious -hid-google-hammer -hid-gt683r -hid-gyration -hid-holtek-kbd -hid-holtek-mouse -hid-holtekff -hid-hyperv -hid-icade -hid-ite -hid-jabra -hid-kensington -hid-keytouch -hid-kye -hid-lcpower -hid-led -hid-lenovo -hid-lg-g15 -hid-logitech -hid-logitech-dj -hid-logitech-hidpp -hid-macally -hid-magicmouse -hid-maltron -hid-mcp2221 -hid-mf -hid-microsoft -hid-monterey -hid-multitouch -hid-nti -hid-ntrig -hid-ortek -hid-penmount -hid-petalynx -hid-picolcd -hid-pl -hid-plantronics -hid-playstation -hid-primax -hid-prodikeys -hid-redragon -hid-retrode -hid-rmi -hid-roccat -hid-roccat-arvo -hid-roccat-common -hid-roccat-isku -hid-roccat-kone -hid-roccat-koneplus -hid-roccat-konepure -hid-roccat-kovaplus -hid-roccat-lua -hid-roccat-pyra -hid-roccat-ryos -hid-roccat-savu -hid-saitek -hid-samsung -hid-semitek -hid-sensor-accel-3d -hid-sensor-als -hid-sensor-custom -hid-sensor-custom-intel-hinge -hid-sensor-gyro-3d -hid-sensor-hub -hid-sensor-humidity -hid-sensor-iio-common -hid-sensor-incl-3d -hid-sensor-magn-3d -hid-sensor-press -hid-sensor-prox -hid-sensor-rotation -hid-sensor-temperature -hid-sensor-trigger -hid-sjoy -hid-sony -hid-speedlink -hid-steam -hid-steelseries -hid-sunplus -hid-thrustmaster -hid-tivo -hid-tmff -hid-topseed -hid-twinhan -hid-u2fzero -hid-uclogic -hid-udraw-ps3 -hid-viewsonic -hid-vivaldi -hid-waltop -hid-wiimote -hid-xinmo -hid-zpff -hid-zydacron -hideep -hidp -hih6130 -hinic -hip04_eth -hisi-spmi-controller -hisi-trng-v2 -hisi_femac -hisi_hikey_usb -hisi_hpre -hisi_qm -hisi_sas_main -hisi_sas_v1_hw -hisi_sas_v2_hw -hisi_sas_v3_hw -hisi_sec -hisi_sec2 -hisi_zip -hix5hd2_gmac -hmc425a -hmc5843_core -hmc5843_i2c -hmc5843_spi -hmc6352 -hms-profinet -hnae -hnae3 -hns-roce-hw-v1 -hns-roce-hw-v2 -hns3 -hns_dsaf -hns_enet_drv -hns_mdio -hopper -horus3a -hostap -hostap_pci -hostap_plx -hp03 -hp206c -hpfs -hpilo -hpsa -hptiop -hpwdt -hsi -hsi_char -hso -hsr -ht16k33 -htc-pasic3 -hts221 -hts221_i2c -hts221_spi -htu21 -huawei_cdc_ncm -hv_balloon -hv_netvsc -hv_sock -hv_storvsc -hv_utils -hv_vmbus -hwmon-vid -hwpoison-inject -hx711 -hx8357 -hx8357d -hycon-hy46xx -hyperbus-core -hyperv-keyboard -hyperv_drm -hyperv_fb -i2c-algo-pca -i2c-ali1535 -i2c-ali1563 -i2c-ali15x3 -i2c-amd756 -i2c-amd8111 -i2c-arb-gpio-challenge -i2c-cadence -i2c-cbus-gpio -i2c-cp2615 -i2c-cros-ec-tunnel -i2c-demux-pinctrl -i2c-designware-pci -i2c-diolan-u2c -i2c-dln2 -i2c-fsi -i2c-gpio -i2c-hid -i2c-hid-acpi -i2c-hid-of -i2c-hid-of-goodix -i2c-hisi -i2c-i801 -i2c-isch -i2c-kempld -i2c-matroxfb -i2c-mlxbf -i2c-mux-gpio -i2c-mux-gpmux -i2c-mux-ltc4306 -i2c-mux-mlxcpld -i2c-mux-pca954x -i2c-mux-pinctrl -i2c-mux-reg -i2c-nforce2 -i2c-nomadik -i2c-nvidia-gpu -i2c-ocores -i2c-parport -i2c-pca-platform -i2c-piix4 -i2c-rk3x -i2c-robotfuzz-osif -i2c-scmi -i2c-simtec -i2c-sis5595 -i2c-sis630 -i2c-sis96x -i2c-smbus -i2c-stub -i2c-taos-evm -i2c-thunderx -i2c-tiny-usb -i2c-via -i2c-viapro -i2c-viperboard -i2c-virtio -i3c -i3c-master-cdns -i40e -i5k_amb -i6300esb -i740fb -iavf -ib_cm -ib_core -ib_ipoib -ib_iser -ib_isert -ib_mthca -ib_srp -ib_srpt -ib_umad -ib_uverbs -ibm-cffps -ibmaem -ibmpex -ice -ice40-spi -icp10100 -icp_multi -ics932s401 -idma64 -idmouse -idt77252 -idt_89hpesx -idt_gen2 -idt_gen3 -idtcps -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -ifcvf -ife -ifi_canfd -iforce -iforce-serio -iforce-usb -igb -igbvf -igc -igorplugusb -iguanair -ii_pci20kc -iio-mux -iio-rescale -iio-trig-hrtimer -iio-trig-interrupt -iio-trig-loop -iio-trig-sysfs -iio_dummy -ila -ili210x -ili9225 -ili922x -ili9320 -ili9341 -ili9486 -ilitek_ts_i2c -img-ascii-lcd -img-i2s-in -img-i2s-out -img-parallel-out -img-spdif-in -img-spdif-out -imon -imon_raw -ims-pcu -imx208 -imx214 -imx258 -imx274 -imx290 -imx319 -imx334 -imx335 -imx355 -imx412 -imx547 -imx6ul_tsc -ina209 -ina260-adc -ina2xx -ina2xx-adc -ina3221 -industrialio-buffer-cb -industrialio-buffer-dma -industrialio-buffer-dmaengine -industrialio-configfs -industrialio-hw-consumer -industrialio-sw-device -industrialio-sw-trigger -industrialio-triggered-event -inet_diag -inexio -inftl -initio -input-leds -inspur-ipsps -int51x1 -intel-m10-bmc -intel-m10-bmc-hwmon -intel-nand-controller -intel-qep -intel-xway -intel_pmt -intel_th -intel_th_acpi -intel_th_gth -intel_th_msu -intel_th_msu_sink -intel_th_pci -intel_th_pti -intel_th_sth -intel_vr_nor -interact -interrupt-cnt -inv-icm42600 -inv-icm42600-i2c -inv-icm42600-spi -inv-mpu6050 -inv-mpu6050-i2c -inv-mpu6050-spi -io_edgeport -io_ti -ionic -iosm -iowarrior -ip6_gre -ip6_tables -ip6_tunnel -ip6_udp_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_tunnel -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 -ipaq -ipcomp -ipcomp6 -iphase -ipheth -ipip -ipmb_dev_int -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipoctal -ipr -iproc_nand -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 -ipw -ipw2100 -ipw2200 -iqs269a -iqs5xx -iqs620at-temp -iqs621-als -iqs624-pos -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-usb -ir-xmp-decoder -ir35221 -ir36021 -ir_toy -irdma -irq-madera -iscsi_boot_sysfs -iscsi_ibft -iscsi_target_mod -iscsi_tcp -isdnhdlc -isight_firmware -isl29003 -isl29018 -isl29020 -isl29028 -isl29125 -isl29501 -isl6271a-regulator -isl6405 -isl6421 -isl6423 -isl68137 -isl9305 -isp116x-hcd -isp1704_charger -isp1760 -it87 -it913x -itd1000 -ite-cir -ite-it66121 -itg3200 -iuu_phoenix -ivtv -ivtv-alsa -ivtvfb -iw_cm -iw_cxgb4 -iwl3945 -iwl4965 -iwldvm -iwlegacy -iwlmvm -iwlwifi -ix2505v -ixgb -ixgbe -ixgbevf -janz-cmodio -janz-ican3 -jc42 -jedec_probe -jfs -jmb38x_ms -jme -joydev -joydump -jr3_pci -jsa1212 -jsm -kafs -kalmia -kaweth -kbtab -kcm -kcomedilib -ke_counter -kempld-core -kempld_wdt -kernelcapi -keyspan -keyspan_pda -keyspan_remote -keywrap -kheaders -kirin-drm -kl5kusb105 -kmem -kmx61 -kobil_sct -komeda -ks0127 -ks7010 -ks8842 -ks8851_common -ks8851_par -ks8851_spi -ksmbd -ksz8795 -ksz8795_spi -ksz884x -ksz8863_smi -ksz9477 -ksz9477_i2c -ksz9477_spi -ksz_common -ktd253-backlight -kvaser_pci -kvaser_pciefd -kvaser_usb -kxcjk-1013 -kxsd9 -kxsd9-i2c -kxsd9-spi -kxtj9 -kyrofb -l1oip -l2tp_core -l2tp_debugfs -l2tp_eth -l2tp_ip -l2tp_ip6 -l2tp_netlink -l2tp_ppp -l4f00242t03 -l64781 -lan743x -lan78xx -lan9303-core -lan9303_i2c -lan9303_mdio -lanai -lantiq_gswip -lapb -lapbether -lattice-ecp3-config -lcd -lcd2s -ldusb -lec -led-class-flash -led-class-multicolor -led_bl -leds-88pm860x -leds-aat1290 -leds-adp5520 -leds-an30259a -leds-as3645a -leds-aw2013 -leds-bcm6328 -leds-bcm6358 -leds-bd2802 -leds-blinkm -leds-cpcap -leds-cr0014114 -leds-da903x -leds-da9052 -leds-dac124s085 -leds-el15203000 -leds-is31fl319x -leds-is31fl32xx -leds-ktd2692 -leds-lm3530 -leds-lm3532 -leds-lm3533 -leds-lm355x -leds-lm3601x -leds-lm36274 -leds-lm3642 -leds-lm3692x -leds-lm3697 -leds-lp3944 -leds-lp3952 -leds-lp50xx -leds-lp5521 -leds-lp5523 -leds-lp5562 -leds-lp55xx-common -leds-lp8501 -leds-lp8788 -leds-lp8860 -leds-lt3593 -leds-max77650 -leds-max77693 -leds-max8997 -leds-mc13783 -leds-menf21bmc -leds-mlxreg -leds-mt6323 -leds-pca9532 -leds-pca955x -leds-pca963x -leds-pwm -leds-regulator -leds-rt4505 -leds-rt8515 -leds-sgm3140 -leds-spi-byte -leds-tca6507 -leds-ti-lmu-common -leds-tlc591xx -leds-tps6105x -leds-wm831x-status -leds-wm8350 -ledtrig-activity -ledtrig-audio -ledtrig-netdev -ledtrig-pattern -ledtrig-tty -ledtrig-usbport -legousbtower -lg-vl600 -lg2160 -lgdt3305 -lgdt3306a -lgdt330x -lgs8gl5 -lgs8gxx -lib80211 -lib80211_crypt_ccmp -lib80211_crypt_tkip -lib80211_crypt_wep -libarc4 -libceph -libchacha -libchacha20poly1305 -libcurve25519 -libcurve25519-generic -libcxgb -libcxgbi -libdes -libertas -libertas_sdio -libertas_spi -libertas_tf -libertas_tf_usb -libfc -libfcoe -libipw -libiscsi -libiscsi_tcp -libpoly1305 -libsas -lightning -lineage-pem -linear -liquidio -liquidio_vf -lis3lv02d -lis3lv02d_i2c -liteuart -litex_liteeth -litex_soc_ctrl -lkkbd -ll_temac -llc2 -lm25066 -lm3533-als -lm3533-core -lm3533-ctrlbank -lm3533_bl -lm3560 -lm3630a_bl -lm3639_bl -lm363x-regulator -lm3646 -lm70 -lm73 -lm75 -lm77 -lm78 -lm80 -lm83 -lm8323 -lm8333 -lm85 -lm87 -lm90 -lm92 -lm93 -lm95234 -lm95241 -lm95245 -lmp91000 -lms283gf05 -lms501kf03 -lnbh25 -lnbh29 -lnbp21 -lnbp22 -lochnagar-hwmon -lochnagar-regulator -lontium-lt8912b -lontium-lt9611 -lontium-lt9611uxc -lp -lp3943 -lp3971 -lp3972 -lp855x_bl -lp8727_charger -lp872x -lp873x -lp873x-regulator -lp8755 -lp87565 -lp87565-regulator -lp8788-buck -lp8788-charger -lp8788-ldo -lp8788_adc -lp8788_bl -lpc_ich -lpc_sch -lpddr_cmds -lpfc -lru_cache -lrw -lt3651-charger -ltc1660 -ltc2471 -ltc2485 -ltc2496 -ltc2497 -ltc2497-core -ltc2632 -ltc2941-battery-gauge -ltc2945 -ltc2947-core -ltc2947-i2c -ltc2947-spi -ltc2978 -ltc2983 -ltc2990 -ltc2992 -ltc3589 -ltc3676 -ltc3815 -ltc4151 -ltc4162-l-charger -ltc4215 -ltc4222 -ltc4245 -ltc4260 -ltc4261 -ltr501 -ltv350qv -lv0104cs -lv5207lp -lvds-codec -lvstest -lz4 -lz4_compress -lz4hc -lz4hc_compress -m2m-deinterlace -m52790 -m5mols -m62332 -m88ds3103 -m88rs2000 -m88rs6000t -mISDN_core -mISDN_dsp -mISDNinfineon -mISDNipac -mISDNisar -m_can -m_can_pci -m_can_platform -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -mac80211 -mac80211_hwsim -mac802154 -mac802154_hwsim -macb_pci -machxo2-spi -macmodes -macsec -macvtap -madera -madera-i2c -madera-spi -mag3110 -magellan -mailbox-altera -mailbox-test -mali -mantis -mantis_core -map_absent -map_ram -map_rom -marvell-88x2222 -marvell10g -matrix-keymap -matrix_keypad -matrox_w1 -matroxfb_DAC1064 -matroxfb_Ti3026 -matroxfb_accel -matroxfb_base -matroxfb_crtc2 -matroxfb_g450 -matroxfb_maven -matroxfb_misc -max1027 -max11100 -max1111 -max1118 -max11801_ts -max1241 -max127 -max1363 -max14577-regulator -max14577_charger -max14656_charger_detector -max15301 -max1586 -max16064 -max16065 -max1619 -max16601 -max1668 -max17040_battery -max17042_battery -max1721x_battery -max197 -max20730 -max2165 -max2175 -max30100 -max30102 -max3100 -max31722 -max31730 -max31785 -max31790 -max31856 -max3420_udc -max3421-hcd -max34440 -max44000 -max44009 -max517 -max5432 -max5481 -max5487 -max5821 -max63xx_wdt -max6621 -max6639 -max6642 -max6650 -max6697 -max6875 -max7359_keypad -max77620-regulator -max77620_thermal -max77620_wdt -max77650 -max77650-charger -max77650-onkey -max77650-regulator -max77686-regulator -max77693-haptic -max77693-regulator -max77693_charger -max77802-regulator -max77826-regulator -max8649 -max8660 -max8688 -max8893 -max8903_charger -max8907 -max8907-regulator -max8925-regulator -max8925_bl -max8925_onkey -max8925_power -max8952 -max8973-regulator -max8997-regulator -max8997_charger -max8997_haptic -max8998 -max8998_charger -max9271 -max9286 -max9611 -maxim_thermocouple -mb1232 -mb862xxfb -mb86a16 -mb86a20s -mc13783-adc -mc13783-pwrbutton -mc13783-regulator -mc13783_ts -mc13892-regulator -mc13xxx-core -mc13xxx-i2c -mc13xxx-regulator-core -mc13xxx-spi -mc3230 -mcam-core -mcb -mcb-lpc -mcb-pci -mcba_usb -mceusb -mchp23k256 -mchp48l640 -mcp16502 -mcp251x -mcp251xfd -mcp3021 -mcp320x -mcp3422 -mcp3911 -mcp4018 -mcp41010 -mcp4131 -mcp4531 -mcp4725 -mcp4922 -mcr20a -mcs5000_ts -mcs7830 -mcs_touchkey -mct_u232 -mctp -md-cluster -md4 -mdc800 -mdev -mdio -mdio-bcm-unimac -mdio-cavium -mdio-gpio -mdio-hisi-femac -mdio-i2c -mdio-ipq4019 -mdio-ipq8064 -mdio-mscc-miim -mdio-mux -mdio-mux-gpio -mdio-mux-mmioreg -mdio-mux-multiplexer -mdio-mvusb -mdio-octeon -mdio-thunder -me4000 -me_daq -mediatek-ge -megachips-stdpxxxx-ge-b850v3-fw -megaraid -megaraid_mbox -megaraid_mm -megaraid_sas -melfas_mip4 -memory-notifier-error-inject -memstick -men_z135_uart -men_z188_adc -mena21_wdt -menf21bmc -menf21bmc_hwmon -menf21bmc_wdt -menz69_wdt -metro-usb -metronomefb -mf6x4 -mgag200 -mhi -mhi_net -mhi_pci_generic -mhi_wwan_ctrl -mhi_wwan_mbim -mi0283qt -michael_mic -microchip -microchip-tcb-capture -microchip_t1 -microread -microread_i2c -microtek -minix -mip6 -mipi-i3c-hci -mite -mk712 -mkiss -ml86v7667 -mlx4_core -mlx4_en -mlx4_ib -mlx5_core -mlx5_ib -mlx5_vdpa -mlx90614 -mlx90632 -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 -mma7455_core -mma7455_i2c -mma7455_spi -mma7660 -mma8450 -mma8452 -mma9551 -mma9551_core -mma9553 -mmc35240 -mmc_hsq -mmc_spi -mms114 -mn88443x -mn88472 -mn88473 -mos7720 -mos7840 -most_cdev -most_core -most_dim2 -most_i2c -most_net -most_snd -most_usb -most_video -motorcomm -motorola-cpcap -moxa -moxtet -mp2629 -mp2629_adc -mp2629_charger -mp2888 -mp2975 -mp5416 -mp8859 -mp886x -mpc624 -mpi3mr -mpl115 -mpl115_i2c -mpl115_spi -mpl3115 -mpls_gso -mpls_iptunnel -mpls_router -mpoa -mpq7920 -mpr121_touchkey -mpt3sas -mptbase -mptcp_diag -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mpu3050 -mr75203 -mrf24j40 -ms5611_core -ms5611_i2c -ms5611_spi -ms5637 -ms_block -ms_sensors_i2c -mscc -mscc_felix -mscc_ocelot -mscc_ocelot_switch_lib -mscc_seville -msdos -msg2638 -msi001 -msi2500 -msp3400 -mspro_block -mt2060 -mt2063 -mt2131 -mt2266 -mt312 -mt352 -mt6311-regulator -mt6315-regulator -mt6323-regulator -mt6358-regulator -mt6359-regulator -mt6360-adc -mt6360-core -mt6360-regulator -mt6360_charger -mt6397 -mt6397-regulator -mt7530 -mt76 -mt76-connac-lib -mt76-sdio -mt76-usb -mt7601u -mt7603e -mt7615-common -mt7615e -mt7663-usb-sdio-common -mt7663s -mt7663u -mt76x0-common -mt76x02-lib -mt76x02-usb -mt76x0e -mt76x0u -mt76x2-common -mt76x2e -mt76x2u -mt7915e -mt7921e -mt9m001 -mt9m032 -mt9m111 -mt9p031 -mt9t001 -mt9t112 -mt9v011 -mt9v032 -mt9v111 -mtd_nandbiterrs -mtd_nandecctest -mtd_oobtest -mtd_pagetest -mtd_readtest -mtd_speedtest -mtd_stresstest -mtd_subpagetest -mtd_torturetest -mtdpstore -mtdram -mtdswap -mtip32xx -mtk-pmic-keys -mtk-sd -mtouch -multipath -multiq3 -musb_hdrc -mux-adg792a -mux-adgs1408 -mux-core -mux-gpio -mux-mmio -mv88e6060 -mv88e6xxx -mv_u3d_core -mv_udc -mvmdio -mvsas -mvumi -mwifiex -mwifiex_pcie -mwifiex_sdio -mwifiex_usb -mwl8k -mxb -mxc4005 -mxc6255 -mxic_nand -mxl-gpy -mxl111sf-demod -mxl111sf-tuner -mxl301rf -mxl5005s -mxl5007t -mxl5xx -mxl692 -mxser -mxuport -myrb -myri10ge -myrs -n5pf -n_gsm -n_hdlc -nandsim -natsemi -nau7802 -navman -nbd -nci -nci_spi -nci_uart -nct6683 -nct6775 -nct7802 -nct7904 -nd_blk -nd_btt -nd_pmem -nd_virtio -ne2k-pci -neofb -net2272 -net2280 -net_failover -netconsole -netdevsim -netfs -netjet -netlink_diag -netrom -netup-unidvb -netxen_nic -newtonkbd -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 -nfcmrvl -nfcmrvl_i2c -nfcmrvl_spi -nfcmrvl_uart -nfcmrvl_usb -nfcsim -nfit -nfnetlink -nfnetlink_acct -nfnetlink_cthelper -nfnetlink_cttimeout -nfnetlink_hook -nfnetlink_log -nfnetlink_osf -nfnetlink_queue -nfp -nfsd -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 -nftl -ngene -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -nhpoly1305 -nhpoly1305-neon -ni_6527 -ni_65xx -ni_660x -ni_670x -ni_at_a2150 -ni_at_ao -ni_atmio -ni_atmio16d -ni_labpc -ni_labpc_common -ni_labpc_pci -ni_pcidio -ni_pcimio -ni_routes_test -ni_routing -ni_tio -ni_tiocmd -ni_usb6501 -nicpf -nicstar -nicvf -nilfs2 -niu -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-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 -noa1305 -noon010pc30 -nosy -notifier-error-inject -nouveau -nozomi -npcm750-pwm-fan -nps_enet -ns558 -ns83820 -nsh -ntb -ntb_hw_epf -ntb_hw_idt -ntb_hw_switchtec -ntb_netdev -ntb_perf -ntb_pingpong -ntb_tool -ntb_transport -ntc_thermistor -ntfs -ntfs3 -ntxec -null_blk -nuvoton-cir -nvidiafb -nvme -nvme-core -nvme-fabrics -nvme-fc -nvme-loop -nvme-rdma -nvme-tcp -nvmem-rave-sp-eeprom -nvmem-reboot-mode -nvmem-rmem -nvmem_qcom-spmi-sdam -nvmet -nvmet-fc -nvmet-rdma -nvmet-tcp -nwl-dsi -nxp-c45-tja11xx -nxp-nci -nxp-nci_i2c -nxp-ptn3460 -nxp-tja11xx -nxt200x -nxt6000 -nzxt-kraken2 -objagg -ocfb -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stack_o2cb -ocfs2_stack_user -ocfs2_stackglue -ocrdma -of_mmc_spi -of_pmem -ofb -ohci-platform -omap4-keypad -omfs -omninet -onenand -opencores-kbd -openvswitch -opt3001 -optee -optee-rng -opticon -option -or51132 -or51211 -orangefs -orinoco -orinoco_nortel -orinoco_plx -orinoco_tmd -orinoco_usb -oti6858 -otm3225a -ov02a10 -ov13858 -ov2640 -ov2659 -ov2680 -ov2685 -ov2740 -ov5640 -ov5645 -ov5647 -ov5648 -ov5670 -ov5675 -ov5695 -ov6650 -ov7251 -ov7640 -ov7670 -ov772x -ov7740 -ov8856 -ov8865 -ov9282 -ov9640 -ov9650 -ov9734 -oxu210hp-hcd -p54common -p54pci -p54spi -p54usb -pa12203001 -palmas-pwrbutton -palmas-regulator -palmas_gpadc -pandora_bl -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-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_it8213 -pata_it821x -pata_jmicron -pata_legacy -pata_marvell -pata_mpiix -pata_netcell -pata_ninja32 -pata_ns87410 -pata_ns87415 -pata_of_platform -pata_oldpiix -pata_opti -pata_optidma -pata_pdc2027x -pata_pdc202xx_old -pata_piccolo -pata_platform -pata_radisys -pata_rdc -pata_rz1000 -pata_sch -pata_serverworks -pata_sil680 -pata_sis -pata_sl82c105 -pata_triflex -pata_via -pc300too -pc87360 -pc87427 -pca9450-regulator -pcap-regulator -pcap_keys -pcap_ts -pcbc -pcf50633 -pcf50633-adc -pcf50633-backlight -pcf50633-charger -pcf50633-gpio -pcf50633-input -pcf50633-regulator -pcf8574_keypad -pcf8591 -pch_udc -pci -pci-epf-ntb -pci-pf-stub -pci-stub -pci200syn -pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad -pcmcia_core -pcmcia_rsrc -pcmda12 -pcmmio -pcmuio -pcnet32 -pcrypt -pcs-lynx -pcs_xpcs -pcwd_pci -pcwd_usb -pda_power -pdc_adma -peak_pci -peak_pciefd -peak_usb -pegasus -pegasus_notetaker -penmount -pf8x00-regulator -pfuze100-regulator -phantom -phonet -phram -phy-bcm-kona-usb2 -phy-cadence-salvo -phy-cadence-sierra -phy-cadence-torrent -phy-can-transceiver -phy-cpcap-usb -phy-exynos-usb2 -phy-fsl-imx8-mipi-dphy -phy-fsl-imx8mq-usb -phy-generic -phy-gpio-vbus-usb -phy-isp1301 -phy-mapphone-mdm6600 -phy-ocelot-serdes -phy-pxa-28nm-hsic -phy-pxa-28nm-usb2 -phy-qcom-usb-hs -phy-qcom-usb-hsic -phy-tahvo -phy-tusb1210 -physmap -pi3usb30532 -pi433 -pim4328 -pinctrl-axp209 -pinctrl-da9062 -pinctrl-lochnagar -pinctrl-madera -pinctrl-max77620 -pinctrl-mcp23s08 -pinctrl-mcp23s08_i2c -pinctrl-mcp23s08_spi -pinctrl-rk805 -pinctrl-stmfx -ping -pistachio-internal-dac -pixcir_i2c_ts -pkcs7_test_key -pkcs8_key_parser -pktcdvd -pl111_drm -pl172 -pl2303 -pl330 -plat-ram -plat_nand -platform_lcd -platform_mhu -platform_profile -plip -plusb -pluto2 -plx_dma -plx_pci -pm-notifier-error-inject -pm2fb -pm3fb -pm6764tr -pm80xx -pmc551 -pmcraid -pms7003 -pn532_uart -pn533 -pn533_i2c -pn533_usb -pn544 -pn544_i2c -pn_pep -poly1305-neon -poly1305_generic -port100 -powermate -powr1220 -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps-gpio -pps-ldisc -pps_parport -pptp -prestera -prestera_pci -pretimeout_panic -prism2_usb -ps2-gpio -ps2mult -psample -psmouse -pstore_blk -pstore_zone -psxpad-spi -ptp-qoriq -ptp_clockmatrix -ptp_idt82p33 -ptp_ines -ptp_ocp -pulse8-cec -pulsedlight-lidar-lite-v2 -pv88060-regulator -pv88080-regulator -pv88090-regulator -pvpanic -pvpanic-mmio -pvpanic-pci -pvrusb2 -pwc -pwm-atmel-hlcdc -pwm-atmel-tcb -pwm-beeper -pwm-cros-ec -pwm-dwc -pwm-fsl-ftm -pwm-iqs620a -pwm-ir-tx -pwm-lp3943 -pwm-ntxec -pwm-pca9685 -pwm-regulator -pwm-twl -pwm-twl-led -pwm-vibra -pwm_bl -pwrseq_sd8787 -pxa27x_udc -pxe1610 -pxrc -q54sj108a2 -qca8k -qca_7k_common -qcaspi -qcauart -qcaux -qcom-emac -qcom-labibb-regulator -qcom-pm8008 -qcom-spmi-adc5 -qcom-spmi-iadc -qcom-spmi-vadc -qcom-vadc-common -qcom-wled -qcom_glink -qcom_glink_rpm -qcom_spmi-regulator -qcom_usb_vbus-regulator -qcserial -qed -qede -qedf -qedi -qedr -qemu_fw_cfg -qinfo_probe -qla1280 -qla2xxx -qla3xxx -qla4xxx -qlcnic -qlge -qm1d1b0004 -qm1d1c0042 -qmi_helpers -qmi_wwan -qnx4 -qnx6 -qrtr -qrtr-mhi -qrtr-smd -qrtr-tun -qt1010 -qt1050 -qt1070 -qt2160 -qtnfmac -qtnfmac_pcie -quatech2 -quota_v1 -qwiic-joystick -qxl -r592 -r6040 -r8152 -r8153_ecm -r8169 -r8188eu -r8192e_pci -r8192u_usb -r820t -r852 -r8712u -r8723bs -r8a66597-hcd -r8a66597-udc -radeon -radeonfb -radio-keene -radio-ma901 -radio-maxiradio -radio-mr800 -radio-platform-si4713 -radio-raremono -radio-shark -radio-si470x-common -radio-si470x-i2c -radio-si470x-usb -radio-si476x -radio-tea5764 -radio-usb-si4713 -radio-wl1273 -raid0 -raid1 -raid10 -raid456 -raid_class -rainshadow-cec -ramoops -rave-sp -rave-sp-backlight -rave-sp-pwrbutton -rave-sp-wdt -raw_diag -raw_gadget -raydium_i2c_ts -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 -rc5t583-regulator -rcar_dw_hdmi -rdacm20 -rdacm21 -rdc321x-southbridge -rdma_cm -rdma_rxe -rdma_ucm -rds -rds_rdma -rds_tcp -realtek-smi -reboot-mode -redboot -redrat3 -reed_solomon -regmap-i3c -regmap-sccb -regmap-sdw -regmap-sdw-mbq -regmap-slimbus -regmap-spi-avmm -regmap-spmi -regmap-w1 -regulator-haptic -reiserfs -repaper -reset-scmi -reset-ti-syscon -resistive-adc-touch -retu-mfd -retu-pwrbutton -retu_wdt -rfc1051 -rfc1201 -rfcomm -rfd77402 -rfd_ftl -rio-scan -rio_cm -rio_mport_cdev -rionet -rivafb -rj54n1cb0c -rk805-pwrkey -rk808 -rk808-regulator -rm3100-core -rm3100-i2c -rm3100-spi -rmd160 -rmi_core -rmi_i2c -rmi_smbus -rmi_spi -rmnet -rn5t618 -rn5t618-adc -rn5t618-regulator -rn5t618_power -rn5t618_wdt -rnbd-client -rnbd-server -rndis_host -rndis_wlan -rockchip -rocker -rohm-bd70528 -rohm-bd71828 -rohm-bd718x7 -rohm-bd9576 -rohm-regulator -rohm_bu21023 -romfs -rose -rotary_encoder -rp2 -rpcrdma -rpcsec_gss_krb5 -rpi-panel-attiny-regulator -rpmsg_char -rpmsg_core -rpmsg_ns -rpmsg_wwan_ctrl -rpr0521 -rsi_91x -rsi_sdio -rsi_usb -rsmu-i2c -rsmu-spi -rsxx -rt2400pci -rt2500pci -rt2500usb -rt2800lib -rt2800mmio -rt2800pci -rt2800usb -rt2x00lib -rt2x00mmio -rt2x00pci -rt2x00usb -rt4801-regulator -rt4831 -rt4831-backlight -rt4831-regulator -rt5033 -rt5033-regulator -rt5033_battery -rt6160-regulator -rt61pci -rt6245-regulator -rt73usb -rt9455_charger -rtc-88pm80x -rtc-88pm860x -rtc-ab-b5ze-s3 -rtc-ab-eoz9 -rtc-abx80x -rtc-as3722 -rtc-bd70528 -rtc-bq32k -rtc-bq4802 -rtc-cadence -rtc-cpcap -rtc-cros-ec -rtc-da9052 -rtc-da9055 -rtc-da9063 -rtc-ds1286 -rtc-ds1302 -rtc-ds1305 -rtc-ds1307 -rtc-ds1343 -rtc-ds1347 -rtc-ds1374 -rtc-ds1390 -rtc-ds1511 -rtc-ds1553 -rtc-ds1672 -rtc-ds1685 -rtc-ds1742 -rtc-ds2404 -rtc-ds3232 -rtc-em3027 -rtc-fm3130 -rtc-ftrtc010 -rtc-goldfish -rtc-hid-sensor-time -rtc-hym8563 -rtc-isl12022 -rtc-isl12026 -rtc-isl1208 -rtc-lp8788 -rtc-m41t80 -rtc-m41t93 -rtc-m41t94 -rtc-m48t35 -rtc-m48t59 -rtc-m48t86 -rtc-max6900 -rtc-max6902 -rtc-max6916 -rtc-max77686 -rtc-max8907 -rtc-max8925 -rtc-max8997 -rtc-max8998 -rtc-mc13xxx -rtc-mcp795 -rtc-msm6242 -rtc-mt6397 -rtc-ntxec -rtc-palmas -rtc-pcap -rtc-pcf2123 -rtc-pcf2127 -rtc-pcf50633 -rtc-pcf85063 -rtc-pcf8523 -rtc-pcf85363 -rtc-pcf8563 -rtc-pcf8583 -rtc-pl030 -rtc-pl031 -rtc-r7301 -rtc-r9701 -rtc-rc5t583 -rtc-rc5t619 -rtc-rk808 -rtc-rp5c01 -rtc-rs5c348 -rtc-rs5c372 -rtc-rv3028 -rtc-rv3029c2 -rtc-rv3032 -rtc-rv8803 -rtc-rx4581 -rtc-rx6110 -rtc-rx8010 -rtc-rx8025 -rtc-rx8581 -rtc-s35390a -rtc-s5m -rtc-sd3078 -rtc-stk17ta8 -rtc-tps6586x -rtc-tps65910 -rtc-tps80031 -rtc-twl -rtc-v3020 -rtc-wm831x -rtc-wm8350 -rtc-x1205 -rtc-zynqmp -rtd520 -rti800 -rti802 -rtl2830 -rtl2832 -rtl2832_sdr -rtl8150 -rtl8187 -rtl8188ee -rtl818x_pci -rtl8192c-common -rtl8192ce -rtl8192cu -rtl8192de -rtl8192ee -rtl8192se -rtl8723-common -rtl8723ae -rtl8723be -rtl8821ae -rtl8xxxu -rtl_pci -rtl_usb -rtllib -rtllib_crypt_ccmp -rtllib_crypt_tkip -rtllib_crypt_wep -rtlwifi -rtmv20-regulator -rtq2134-regulator -rtq6752-regulator -rtrs-client -rtrs-core -rtrs-server -rts5208 -rtsx_pci -rtsx_pci_ms -rtsx_pci_sdmmc -rtsx_usb -rtsx_usb_ms -rtsx_usb_sdmmc -rtw88_8723d -rtw88_8723de -rtw88_8821c -rtw88_8821ce -rtw88_8822b -rtw88_8822be -rtw88_8822c -rtw88_8822ce -rtw88_core -rtw88_pci -rtw89_core -rtw89_pci -rvu_af -rvu_mbox -rvu_nicpf -rvu_nicvf -rx51_battery -rxrpc -s1d13xxxfb -s2250 -s2255drv -s2imac -s2io -s2mpa01 -s2mps11 -s3fb -s3fwrn5 -s3fwrn5_i2c -s3fwrn82_uart -s526 -s5c73m3 -s5h1409 -s5h1411 -s5h1420 -s5h1432 -s5k4ecgx -s5k5baf -s5k6a3 -s5k6aa -s5m8767 -s626 -s6sy761 -s921 -saa6588 -saa6752hs -saa7110 -saa7115 -saa7127 -saa7134 -saa7134-alsa -saa7134-dvb -saa7134-empress -saa7134-go7007 -saa7146 -saa7146_vv -saa7164 -saa717x -saa7185 -saa7706h -safe_serial -sample-trace-array -samsung-keypad -samsung-sxgbe -sata_dwc_460ex -sata_inic162x -sata_mv -sata_nv -sata_promise -sata_qstor -sata_sil -sata_sil24 -sata_sis -sata_svw -sata_sx4 -sata_uli -sata_via -sata_vsc -savagefb -sb1000 -sbp_target -sbrmi -sbs-battery -sbs-charger -sbs-manager -sbsa_gwdt -sbtsi_temp -sc16is7xx -sc92031 -sca3000 -sca3300 -scd30_core -scd30_i2c -scd30_serial -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_multiq -sch_netem -sch_pie -sch_plug -sch_prio -sch_qfq -sch_red -sch_sfb -sch_sfq -sch_taprio -sch_tbf -sch_teql -scmi-cpufreq -scmi-hwmon -scmi-regulator -scmi_iio -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_fc -scsi_transport_iscsi -scsi_transport_sas -scsi_transport_spi -scsi_transport_srp -sctp -sctp_diag -sd_adc_modulator -sdhci-acpi -sdhci-cadence -sdhci-milbeaut -sdhci-of-aspeed -sdhci-of-at91 -sdhci-of-dwcmshc -sdhci-omap -sdhci-pci -sdhci-xenon-driver -sdhci_am654 -sdhci_f_sdh30 -sdio_uart -sensorhub -serial_ir -serio_raw -sermouse -serpent_generic -ses -sf-pdma -sfc -sfc-falcon -sfp -sgi_w1 -sgp30 -sgp40 -shark2 -shiftfs -sht15 -sht21 -sht3x -sht4x -shtc1 -si1133 -si1145 -si2157 -si2165 -si2168 -si21xx -si4713 -si476x-core -si7005 -si7020 -sidewinder -sierra -sierra_net -sifive -sii902x -sii9234 -sil-sii8620 -sil164 -silead -simple-bridge -simpledrm -simplefb -siox-bus-gpio -siox-core -sir_ir -sis190 -sis5595 -sis900 -sis_i2c -sisfb -sisusbvga -sit -siw -sja1000 -sja1000_isa -sja1000_platform -sja1105 -skfp -skge -sky2 -sky81452 -sky81452-backlight -sky81452-regulator -sl811-hcd -slcan -slg51000-regulator -slicoss -slim-qcom-ctrl -slimbus -slip -slram -sm2_generic -sm4_generic -sm501 -sm501fb -sm712fb -sm750fb -sm_common -sm_ftl -smartpqi -smb347-charger -smc -smc_diag -smipcie -smm665 -smsc47b397 -smsc47m1 -smsc47m192 -smsc75xx -smsc911x -smsc9420 -smsc95xx -smscufx -smsdvb -smsmdtv -smssdio -smsusb -snd-ac97-codec -snd-ad1889 -snd-ak4113 -snd-ak4114 -snd-ak4xxx-adda -snd-ali5451 -snd-aloop -snd-als300 -snd-atiixp -snd-atiixp-modem -snd-au8810 -snd-au8820 -snd-au8830 -snd-aw2 -snd-azt3328 -snd-bcd2000 -snd-bebob -snd-bt87x -snd-ca0106 -snd-cmipci -snd-cs4281 -snd-cs46xx -snd-cs8427 -snd-ctl-led -snd-ctxfi -snd-darla20 -snd-darla24 -snd-dice -snd-dummy -snd-echo3g -snd-emu10k1 -snd-emu10k1-synth -snd-emu10k1x -snd-emux-synth -snd-ens1370 -snd-ens1371 -snd-es1938 -snd-es1968 -snd-fireface -snd-firewire-digi00x -snd-firewire-lib -snd-firewire-motu -snd-firewire-tascam -snd-fireworks -snd-fm801 -snd-gina20 -snd-gina24 -snd-hda-codec -snd-hda-codec-analog -snd-hda-codec-ca0110 -snd-hda-codec-ca0132 -snd-hda-codec-cirrus -snd-hda-codec-cmedia -snd-hda-codec-conexant -snd-hda-codec-cs8409 -snd-hda-codec-generic -snd-hda-codec-hdmi -snd-hda-codec-idt -snd-hda-codec-realtek -snd-hda-codec-si3054 -snd-hda-codec-via -snd-hda-core -snd-hda-intel -snd-hdsp -snd-hdspm -snd-hrtimer -snd-i2c -snd-ice1712 -snd-ice1724 -snd-ice17xx-ak4xxx -snd-indigo -snd-indigodj -snd-indigodjx -snd-indigoio -snd-indigoiox -snd-intel-dspcfg -snd-intel-sdw-acpi -snd-intel8x0 -snd-intel8x0m -snd-isight -snd-korg1212 -snd-layla20 -snd-layla24 -snd-lola -snd-lx6464es -snd-maestro3 -snd-mia -snd-mixart -snd-mixer-oss -snd-mona -snd-mpu401 -snd-mpu401-uart -snd-mtpav -snd-mts64 -snd-nm256 -snd-opl3-lib -snd-opl3-synth -snd-oxfw -snd-oxygen -snd-oxygen-lib -snd-pcxhr -snd-portman2x4 -snd-pt2258 -snd-riptide -snd-rme32 -snd-rme96 -snd-rme9652 -snd-seq -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-serial-u16550 -snd-soc-63xx -snd-soc-ac97 -snd-soc-acp-da7219mx98357-mach -snd-soc-acp-rt5645-mach -snd-soc-adau-utils -snd-soc-adau1372 -snd-soc-adau1372-i2c -snd-soc-adau1372-spi -snd-soc-adau1701 -snd-soc-adau1761 -snd-soc-adau1761-i2c -snd-soc-adau1761-spi -snd-soc-adau17x1 -snd-soc-adau7002 -snd-soc-adau7118 -snd-soc-adau7118-hw -snd-soc-adau7118-i2c -snd-soc-adi-axi-i2s -snd-soc-adi-axi-spdif -snd-soc-ak4104 -snd-soc-ak4118 -snd-soc-ak4458 -snd-soc-ak4554 -snd-soc-ak4613 -snd-soc-ak4642 -snd-soc-ak5386 -snd-soc-ak5558 -snd-soc-alc5623 -snd-soc-audio-graph-card -snd-soc-bd28623 -snd-soc-bt-sco -snd-soc-cpcap -snd-soc-cros-ec-codec -snd-soc-cs35l32 -snd-soc-cs35l33 -snd-soc-cs35l34 -snd-soc-cs35l35 -snd-soc-cs35l36 -snd-soc-cs4234 -snd-soc-cs4265 -snd-soc-cs4270 -snd-soc-cs4271 -snd-soc-cs4271-i2c -snd-soc-cs4271-spi -snd-soc-cs42l42 -snd-soc-cs42l51 -snd-soc-cs42l51-i2c -snd-soc-cs42l52 -snd-soc-cs42l56 -snd-soc-cs42l73 -snd-soc-cs42xx8 -snd-soc-cs42xx8-i2c -snd-soc-cs43130 -snd-soc-cs4341 -snd-soc-cs4349 -snd-soc-cs53l30 -snd-soc-cx2072x -snd-soc-da7213 -snd-soc-da7219 -snd-soc-dmic -snd-soc-es7134 -snd-soc-es7241 -snd-soc-es8316 -snd-soc-es8328 -snd-soc-es8328-i2c -snd-soc-es8328-spi -snd-soc-fsl-asrc -snd-soc-fsl-audmix -snd-soc-fsl-easrc -snd-soc-fsl-esai -snd-soc-fsl-micfil -snd-soc-fsl-mqs -snd-soc-fsl-rpmsg -snd-soc-fsl-sai -snd-soc-fsl-spdif -snd-soc-fsl-ssi -snd-soc-fsl-xcvr -snd-soc-gtm601 -snd-soc-hdmi-codec -snd-soc-ics43432 -snd-soc-imx-audmux -snd-soc-inno-rk3036 -snd-soc-lochnagar-sc -snd-soc-lpass-rx-macro -snd-soc-lpass-tx-macro -snd-soc-lpass-va-macro -snd-soc-lpass-wsa-macro -snd-soc-max9759 -snd-soc-max98088 -snd-soc-max98357a -snd-soc-max98373 -snd-soc-max98373-i2c -snd-soc-max98373-sdw -snd-soc-max98390 -snd-soc-max98504 -snd-soc-max9860 -snd-soc-max9867 -snd-soc-max98927 -snd-soc-mikroe-proto -snd-soc-msm8916-analog -snd-soc-msm8916-digital -snd-soc-mt6351 -snd-soc-mt6358 -snd-soc-mt6660 -snd-soc-nau8315 -snd-soc-nau8540 -snd-soc-nau8810 -snd-soc-nau8822 -snd-soc-nau8824 -snd-soc-pcm1681 -snd-soc-pcm1789-codec -snd-soc-pcm1789-i2c -snd-soc-pcm179x-codec -snd-soc-pcm179x-i2c -snd-soc-pcm179x-spi -snd-soc-pcm186x -snd-soc-pcm186x-i2c -snd-soc-pcm186x-spi -snd-soc-pcm3060 -snd-soc-pcm3060-i2c -snd-soc-pcm3060-spi -snd-soc-pcm3168a -snd-soc-pcm3168a-i2c -snd-soc-pcm3168a-spi -snd-soc-pcm5102a -snd-soc-pcm512x -snd-soc-pcm512x-i2c -snd-soc-pcm512x-spi -snd-soc-rk3328 -snd-soc-rk817 -snd-soc-rl6231 -snd-soc-rt1308-sdw -snd-soc-rt1316-sdw -snd-soc-rt5616 -snd-soc-rt5631 -snd-soc-rt5640 -snd-soc-rt5645 -snd-soc-rt5659 -snd-soc-rt5682 -snd-soc-rt5682-i2c -snd-soc-rt5682-sdw -snd-soc-rt700 -snd-soc-rt711 -snd-soc-rt711-sdca -snd-soc-rt715 -snd-soc-rt715-sdca -snd-soc-sdw-mockup -snd-soc-sgtl5000 -snd-soc-si476x -snd-soc-sigmadsp -snd-soc-sigmadsp-i2c -snd-soc-sigmadsp-regmap -snd-soc-simple-amplifier -snd-soc-simple-card -snd-soc-simple-card-utils -snd-soc-simple-mux -snd-soc-spdif-rx -snd-soc-spdif-tx -snd-soc-ssm2305 -snd-soc-ssm2518 -snd-soc-ssm2602 -snd-soc-ssm2602-i2c -snd-soc-ssm2602-spi -snd-soc-ssm4567 -snd-soc-sta32x -snd-soc-sta350 -snd-soc-sti-sas -snd-soc-tas2552 -snd-soc-tas2562 -snd-soc-tas2764 -snd-soc-tas2770 -snd-soc-tas5086 -snd-soc-tas571x -snd-soc-tas5720 -snd-soc-tas6424 -snd-soc-tda7419 -snd-soc-tfa9879 -snd-soc-tfa989x -snd-soc-tlv320adcx140 -snd-soc-tlv320aic23 -snd-soc-tlv320aic23-i2c -snd-soc-tlv320aic23-spi -snd-soc-tlv320aic31xx -snd-soc-tlv320aic32x4 -snd-soc-tlv320aic32x4-i2c -snd-soc-tlv320aic32x4-spi -snd-soc-tlv320aic3x -snd-soc-tlv320aic3x-i2c -snd-soc-tlv320aic3x-spi -snd-soc-tpa6130a2 -snd-soc-ts3a227e -snd-soc-tscs42xx -snd-soc-tscs454 -snd-soc-uda1334 -snd-soc-wcd-mbhc -snd-soc-wcd9335 -snd-soc-wcd934x -snd-soc-wcd938x -snd-soc-wcd938x-sdw -snd-soc-wm8510 -snd-soc-wm8523 -snd-soc-wm8524 -snd-soc-wm8580 -snd-soc-wm8711 -snd-soc-wm8728 -snd-soc-wm8731 -snd-soc-wm8737 -snd-soc-wm8741 -snd-soc-wm8750 -snd-soc-wm8753 -snd-soc-wm8770 -snd-soc-wm8776 -snd-soc-wm8782 -snd-soc-wm8804 -snd-soc-wm8804-i2c -snd-soc-wm8804-spi -snd-soc-wm8903 -snd-soc-wm8904 -snd-soc-wm8960 -snd-soc-wm8962 -snd-soc-wm8974 -snd-soc-wm8978 -snd-soc-wm8985 -snd-soc-wsa881x -snd-soc-xtfpga-i2s -snd-soc-zl38060 -snd-sof -snd-sof-of -snd-sonicvibes -snd-trident -snd-ua101 -snd-usb-6fire -snd-usb-caiaq -snd-usb-hiface -snd-usb-line6 -snd-usb-pod -snd-usb-podhd -snd-usb-toneport -snd-usb-variax -snd-util-mem -snd-via82xx -snd-via82xx-modem -snd-virmidi -snd-virtuoso -snd-vx-lib -snd-vx222 -snd-ymfpci -snd_xen_front -snic -snps_udc_core -snps_udc_plat -soc_button_array -softdog -softing -solo6x10 -solos-pci -sony-btf-mpx -soundwire-bus -soundwire-cadence -soundwire-generic-allocation -soundwire-intel -soundwire-qcom -sp2 -sp805_wdt -sp8870 -sp887x -spaceball -spaceorb -sparse-keymap -spcp8x5 -speedfax -speedtch -spi-altera-core -spi-altera-dfl -spi-altera-platform -spi-amd -spi-axi-spi-engine -spi-butterfly -spi-dln2 -spi-dw -spi-dw-mmio -spi-dw-pci -spi-fsi -spi-gpio -spi-hisi-kunpeng -spi-hisi-sfc-v3xx -spi-lm70llp -spi-loopback-test -spi-mux -spi-mxic -spi-nxp-fspi -spi-oc-tiny -spi-pl022 -spi-pxa2xx-pci -spi-pxa2xx-platform -spi-rockchip -spi-sc18is602 -spi-sifive -spi-slave-system-control -spi-slave-time -spi-thunderx -spi-tle62x0 -spi-xcomm -spi-xilinx -spi-zynqmp-gqspi -spi_ks8995 -spidev -spinand -spmi -sprd_serial -sps30 -sps30_i2c -sps30_serial -sr030pc30 -sr9700 -sr9800 -srf04 -srf08 -ssb -ssb-hcd -ssd1307fb -ssfdc -ssp_accel_sensor -ssp_gyro_sensor -ssp_iio -sst25l -sstfb -ssu100 -st -st-mipid02 -st-nci -st-nci_i2c -st-nci_spi -st1232 -st21nfca_hci -st21nfca_i2c -st7586 -st7735r -st95hf -st_accel -st_accel_i2c -st_accel_spi -st_gyro -st_gyro_i2c -st_gyro_spi -st_lsm6dsx -st_lsm6dsx_i2c -st_lsm6dsx_i3c -st_lsm6dsx_spi -st_lsm9ds0 -st_lsm9ds0_i2c -st_lsm9ds0_spi -st_magn -st_magn_i2c -st_magn_spi -st_pressure -st_pressure_i2c -st_pressure_spi -st_sensors -st_sensors_i2c -st_sensors_spi -st_uvis25_core -st_uvis25_i2c -st_uvis25_spi -starfire -stb0899 -stb6000 -stb6100 -stex -stinger -stk1160 -stk3310 -stk8312 -stk8ba50 -stkwebcam -stm_console -stm_core -stm_ftrace -stm_heartbeat -stm_p_basic -stm_p_sys-t -stmfts -stmfx -stmmac -stmmac-pci -stmmac-platform -stmpe-adc -stmpe-keypad -stmpe-ts -stowaway -stpddc60 -stpmic1 -stpmic1_onkey -stpmic1_regulator -stpmic1_wdt -streamzap -streebog_generic -stts751 -stusb160x -stv0288 -stv0297 -stv0299 -stv0367 -stv0900 -stv090x -stv0910 -stv6110 -stv6110x -stv6111 -sundance -sungem -sungem_phy -sunhme -suni -sunkbd -sur40 -surface3_spi -surface_acpi_notify -surface_aggregator -surface_aggregator_cdev -surface_aggregator_registry -surface_battery -surface_charger -surface_dtx -surface_gpe -surface_hid -surface_hid_core -surface_hotplug -surface_kbd -surface_platform_profile -svc-i3c-master -svgalib -switchtec -sx8654 -sx9310 -sx9500 -sy8106a-regulator -sy8824x -sy8827n -sym53c8xx -symbolserial -synaptics_i2c -synaptics_usb -synclink_gt -syscon-reboot-mode -sysv -t5403 -tag_ar9331 -tag_brcm -tag_dsa -tag_gswip -tag_hellcreek -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 -tc-dwc-g210 -tc-dwc-g210-pci -tc-dwc-g210-pltfrm -tc358743 -tc358762 -tc358764 -tc358767 -tc358768 -tc358775 -tc3589x-keypad -tc654 -tc74 -tc90522 -tca6416-keypad -tca8418_keypad -tcan4x5x -tcm_fc -tcm_loop -tcm_qla2xxx -tcm_usb_gadget -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 -tcpci -tcpci_maxim -tcpci_mt6360 -tcpci_rt1711h -tcpm -tcrypt -tcs3414 -tcs3472 -tda10021 -tda10023 -tda10048 -tda1004x -tda10071 -tda10086 -tda18212 -tda18218 -tda18250 -tda18271c2dd -tda1997x -tda665x -tda7432 -tda8083 -tda8261 -tda826x -tda9840 -tda9950 -tda998x -tdfxfb -tdo24m -tea575x -tea6415c -tea6420 -team -team_mode_activebackup -team_mode_broadcast -team_mode_loadbalance -team_mode_random -team_mode_roundrobin -tee -tef6862 -tehuti -teranetics -test_blackhole_dev -test_bpf -test_div64 -test_power -tg3 -thc63lvd1024 -thermal-generic-adc -thermal_mmio -thmc50 -ths7303 -ths8200 -thunder_bgx -thunder_xcv -thunderbolt -thunderbolt-net -thunderx_edac -thunderx_zip -ti-adc081c -ti-adc0832 -ti-adc084s021 -ti-adc108s102 -ti-adc12138 -ti-adc128s052 -ti-adc161s626 -ti-ads1015 -ti-ads124s08 -ti-ads131e08 -ti-ads7950 -ti-ads8344 -ti-ads8688 -ti-dac082s085 -ti-dac5571 -ti-dac7311 -ti-dac7612 -ti-lmu -ti-sn65dsi83 -ti-sn65dsi86 -ti-tfp410 -ti-tlc4541 -ti-tpd12s015 -ti-tsc2046 -ti_am335x_adc -ti_am335x_tsc -ti_am335x_tscadc -ti_usb_3410_5052 -tidss -tifm_7xx1 -tifm_core -tifm_ms -tifm_sd -timeriomem-rng -tipc -tlan -tls -tlv320aic23b -tm2-touchkey -tm6000 -tm6000-alsa -tm6000-dvb -tmdc -tmp006 -tmp007 -tmp102 -tmp103 -tmp108 -tmp117 -tmp401 -tmp421 -tmp513 -toshsd -touchit213 -touchright -touchwin -tpci200 -tpl0102 -tpm_atmel -tpm_ftpm_tee -tpm_i2c_atmel -tpm_i2c_infineon -tpm_i2c_nuvoton -tpm_infineon -tpm_key_parser -tpm_st33zp24 -tpm_st33zp24_i2c -tpm_st33zp24_spi -tpm_tis_i2c_cr50 -tpm_tis_spi -tpm_vtpm_proxy -tps23861 -tps40422 -tps51632-regulator -tps53679 -tps6105x -tps6105x-regulator -tps62360-regulator -tps65010 -tps65023-regulator -tps6507x -tps6507x-regulator -tps6507x-ts -tps65090-charger -tps65090-regulator -tps65132-regulator -tps65217 -tps65217-regulator -tps65217_bl -tps65217_charger -tps65218 -tps65218-pwrbutton -tps65218-regulator -tps6524x-regulator -tps6586x-regulator -tps65910-regulator -tps65912-regulator -tps6598x -tps80031-regulator -tqmx86 -trace-printk -trancevibrator -trf7970a -tridentfb -ts2020 -ts_bm -ts_fsm -ts_kmp -tsc2004 -tsc2005 -tsc2007 -tsc200x-core -tsc40 -tsi568 -tsi57x -tsi721_mport -tsl2550 -tsl2563 -tsl2583 -tsl2591 -tsl2772 -tsl4531 -tsys01 -tsys02d -ttm -ttpci-eeprom -ttusb_dec -ttusbdecfe -ttusbir -ttynull -tua6100 -tua9001 -tulip -tuner -tunnel4 -tunnel6 -turbografx -tvaudio -tveeprom -tvp514x -tvp5150 -tvp7002 -tw2804 -tw5864 -tw68 -tw686x -tw9903 -tw9906 -tw9910 -twidjoy -twl-regulator -twl4030-madc -twl4030-pwrbutton -twl4030-vibra -twl4030_charger -twl4030_keypad -twl4030_madc_battery -twl4030_wdt -twl6030-gpadc -twl6030-regulator -twl6040-vibra -twofish_common -twofish_generic -typec -typec_displayport -typec_nvidia -typec_ucsi -typhoon -u132-hcd -uPD60620 -uacce -ubuntu-host -ucan -ucb1400_core -ucb1400_ts -ucc_uart -ucd9000 -ucd9200 -ucs1002_power -ucsi_acpi -ucsi_ccg -uda1342 -udf -udl -udlfb -udp_diag -udp_tunnel -ueagle-atm -ufs -ufshcd-core -ufshcd-dwc -ufshcd-pci -ufshcd-pltfrm -uhid -uio_aec -uio_cif -uio_dfl -uio_dmem_genirq -uio_hv_generic -uio_mf624 -uio_netx -uio_pci_generic -uio_pdrv_genirq -uio_pruss -uio_sercos3 -uio_xilinx_ai_engine -uleds -uli526x -ulpi -ums-alauda -ums-cypress -ums-datafab -ums-eneub6250 -ums-freecom -ums-isd200 -ums-jumpshot -ums-karma -ums-onetouch -ums-realtek -ums-sddr09 -ums-sddr55 -ums-usbat -unix_diag -upd64031a -upd64083 -upd78f0730 -us5182d -usb-conn-gpio -usb-serial-simple -usb2244 -usb251xb -usb3503 -usb4604 -usb5744 -usb8xxx -usb_8dev -usb_debug -usb_f_phonet -usb_f_tcm -usb_wwan -usbatm -usbdux -usbduxfast -usbduxsigma -usbhid -usbip-core -usbip-host -usbip-vudc -usbkbd -usblcd -usblp -usbmisc_imx -usbmon -usbmouse -usbserial -usbsevseg -usbtest -usbtmc -usbtouchscreen -usbtv -usdhi6rol0 -userio -userspace-consumer -ushc -uss720 -uvesafb -v4l2-flash-led-class -v4l2-tpg -vcan -vcnl3020 -vcnl4000 -vcnl4035 -vctrl-regulator -vdpa -vdpa_sim -vdpa_sim_blk -vdpa_sim_net -vduse -veml6030 -veml6070 -ves1820 -ves1x93 -vexpress-hwmon -vexpress-regulator -vf610_adc -vf610_dac -vfio -vfio-amba -vfio-pci -vfio-pci-core -vfio-platform -vfio-platform-amdxgbe -vfio-platform-base -vfio-platform-calxedaxgmac -vfio_iommu_type1 -vfio_virqfd -vgastate -vgem -vgg2432a4 -vhci-hcd -vhost -vhost_iotlb -vhost_net -vhost_scsi -vhost_vdpa -vhost_vsock -via-rhine -via-sdmmc -via-velocity -via686a -vicodec -video-i2c -video-mux -videobuf-core -videobuf-dma-sg -videobuf-vmalloc -videobuf2-dvb -videocodec -vim2m -vimc -viperboard -viperboard_adc -virt_wifi -virtio-gpu -virtio-rng -virtio_blk -virtio_bt -virtio_crypto -virtio_dma_buf -virtio_input -virtio_net -virtio_pmem -virtio_rpmsg_bus -virtio_scsi -virtio_snd -virtio_vdpa -virtiofs -virtual -virtual_ncidev -visor -vitesse-vsc73xx-core -vitesse-vsc73xx-platform -vitesse-vsc73xx-spi -vivid -vkms -vl53l0x-i2c -vl6180 -vmac -vme_fake -vme_tsi148 -vme_user -vme_vmivme7805 -vmk80xx -vmw_pvrdma -vmw_vmci -vmw_vsock_virtio_transport -vmw_vsock_virtio_transport_common -vmw_vsock_vmci_transport -vmwgfx -vmxnet3 -vp27smpx -vp_vdpa -vport-geneve -vport-gre -vport-vxlan -vpx3220 -vrf -vringh -vs6624 -vsock -vsock_diag -vsock_loopback -vsockmon -vsxxxaa -vt1211 -vt6655_stage -vt6656_stage -vt8231 -vt8623fb -vub300 -vx855 -vxcan -vxge -vxlan -vz89x -w1-gpio -w1_ds2405 -w1_ds2406 -w1_ds2408 -w1_ds2413 -w1_ds2423 -w1_ds2430 -w1_ds2431 -w1_ds2433 -w1_ds2438 -w1_ds250x -w1_ds2780 -w1_ds2781 -w1_ds2805 -w1_ds28e04 -w1_ds28e17 -w1_smem -w1_therm -w5100 -w5100-spi -w5300 -w6692 -w83627ehf -w83627hf -w83773g -w83781d -w83791d -w83792d -w83793 -w83795 -w83l785ts -w83l786ng -wacom -wacom_i2c -wacom_serial4 -wacom_w8001 -walkera0701 -wanxl -warrior -wcd934x -wcn36xx -wd719x -wdat_wdt -wdt87xx_i2c -wdt_pci -wfx -whiteheat -wil6210 -wilc1000 -wilc1000-sdio -wilc1000-spi -winbond-840 -wire -wireguard -wishbone-serial -wl1251 -wl1251_sdio -wl1251_spi -wl1273-core -wl12xx -wl18xx -wlcore -wlcore_sdio -wlcore_spi -wm831x-dcdc -wm831x-hwmon -wm831x-isink -wm831x-ldo -wm831x-on -wm831x-ts -wm831x_backup -wm831x_bl -wm831x_power -wm831x_wdt -wm8350-hwmon -wm8350-regulator -wm8350_power -wm8350_wdt -wm8400-regulator -wm8739 -wm8775 -wm8994 -wm8994-regulator -wm97xx-ts -wp512 -wwan -wwan_hwsim -x25 -x_tables -xbox_remote -xcbc -xdpe12284 -xen-blkback -xen-fbfront -xen-front-pgdir-shbuf -xen-gntalloc -xen-gntdev -xen-kbdfront -xen-netback -xen-scsiback -xen-scsifront -xen-tpmfront -xen_wdt -xfrm4_tunnel -xfrm6_tunnel -xfrm_interface -xfrm_ipcomp -xfs -xgene-hwmon -xgene_edac -xhci-pci -xhci-pci-renesas -xilinx-hdmi-rx -xilinx-hdmi-tx -xilinx-isppipeline -xilinx-spi -xilinx-vphy -xilinx_can -xilinxfb -xillybus_class -xillybus_core -xillybus_of -xillybus_pcie -xillyusb -xiphera-trng -xircom_cb -xlnx_vcu -xpad -xr_serial -xrs700x -xrs700x_i2c -xrs700x_mdio -xsens_mt -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 -xtkbd -xusbatm -xz_dec_test -yam -yamaha-yas530 -yealink -yellowfin -yenta_socket -yurex -z3fold -zd1201 -zd1211rw -zd1301 -zd1301_demod -zet6223 -zforce_ts -zhenhua -ziirave_wdt -zinitix -zl10036 -zl10039 -zl10353 -zl6100 -zocl -zonefs -zopt2201 -zpa2326 -zpa2326_i2c -zpa2326_spi -zr36016 -zr36050 -zr36060 -zr36067 -zr364xx -zram -zynqmp-dpsub -zynqmp_r5_remoteproc reverted: --- linux-xilinx-zynqmp-5.15.0/debian.zynqmp/abi/arm64/xilinx-zynqmp.modules.builtin +++ linux-xilinx-zynqmp-5.15.0.orig/debian.zynqmp/abi/arm64/xilinx-zynqmp.modules.builtin @@ -1,670 +0,0 @@ -8021q -8250 -8250_base -8250_dw -8250_exar -8250_of -8250_pci -88pm860x -ac -ac97_bus -acpi_mdio -acpiphp -aead -aes_generic -af_alg -af_packet -ahci_platform -akcipher -algif_hash -algif_skcipher -amba-pl010 -amba-pl011 -arasan-nand-controller -arm-cci -arm-cci -arm-ccn -armmmci -as3722 -as3722-poweroff -asiliantfb -asix -asn1_decoder -asn1_encoder -asymmetric_keys -at24 -atkbd -auth_rpcgss -ax88179_178a -ax88796b -backlight -battery -bch -bcm84881 -binfmt_elf -binfmt_script -blake2b_generic -blocklayoutdriver -brd -bsg -btree -btrfs -button -cadence_wdt -cbc -cdc_ether -cdc_ncm -cdc_subset -cdrom -cec -cfbcopyarea -cfbfillrect -cfbimgblt -cfi_cmdset_0001 -cfi_probe -cfi_util -charger-manager -chipreg -clk-fixed-mmio -clk-idt8t49n24x -clk-si5324drv -clk-si5341 -clk-si570 -clk-vexpress-osc -clk-xlnx-clock-wizard -cma_heap -cmdlinepart -cn -compat_binfmt_elf -configfs -configs -cpufreq-dt -cpufreq_conservative -cpufreq_ondemand -cpufreq_performance -cpufreq_powersave -cpufreq_userspace -cqhci -crc-ccitt -crc-t10dif -crc16 -crc32 -crc32c_generic -crc8 -crct10dif_common -crct10dif_generic -crypto -crypto_acompress -crypto_algapi -crypto_engine -crypto_hash -crypto_null -cryptomgr -ctr -cts -da903x -da9052-core -da9052-i2c -da9052-spi -da9055 -da9063 -da9150-core -davicom -dax -deflate -dh_generic -digsig -dm-mod -dmatest -dns_resolver -dp83848 -dp83867 -drbg -drm -drm_dp_aux_bus -drm_kms_helper -drm_mipi_dsi -drm_panel_orientation_quirks -drop_monitor -dvb-core -dwc2 -dwc3 -dwc3-haps -dwc3-of-simple -dwc3-xilinx -ecb -ecc -ecdh_generic -ecryptfs -edac_core -efivarfs -ehci-hcd -ehci-pci -encrypted-keys -et1011c -evdev -exportfs -ext4 -extcon-core -ezx-pcap -fan -fat -fb -fb_sys_fops -fddi -firmware_class -fixed -fixed_phy -font -fpga-bridge -fpga-mgr -fpga-region -freq_table -fuse -fwnode_mdio -garp -gcm -gen_probe -geniv -gf128mul -ghash-ce -ghash-generic -glob -governor_passive -governor_performance -governor_powersave -governor_simpleondemand -governor_userspace -gpio-generic -gpio-pca953x -gpio-pl061 -gpio-poweroff -gpio-regulator -gpio-restart -gpio-slg7xl45106 -gpio-tps65086 -gpio-xilinx -gpio-zynq -gpio-zynqmp-modepin -gpio_keys -gpio_keys_polled -grace -hed -hid -hid-generic -hisi_uncore_ddrc_pmu -hisi_uncore_hha_pmu -hisi_uncore_l3c_pmu -hisi_uncore_pa_pmu -hisi_uncore_pmu -hisi_uncore_sllc_pmu -hmac -hwmon -hwspinlock_core -i2c-algo-bit -i2c-core -i2c-designware-core -i2c-designware-platform -i2c-dev -i2c-mux -i2c-mux-pca9541 -i2c-slave-eeprom -i2c-xiic -icc-core -icplus -iio_hwmon -imsttfb -imx219 -industrialio -industrialio-triggered-buffer -input-core -iova -ipv6 -ir38064 -irps5401 -irq-al-fic -irqbypass -isofs -jbd2 -jesd204b -jesd204b_phy -jffs2 -jitterentropy_rng -kfifo_buf -kgdboc -kpp -kvm -kyber-iosched -led-class -leds-gpio -ledtrig-backlight -ledtrig-camera -ledtrig-default-on -ledtrig-gpio -ledtrig-heartbeat -ledtrig-oneshot -ledtrig-timer -ledtrig-transient -libaes -libahci -libahci_platform -libata -libblake2s -libcomposite -libcrc32c -libnvdimm -libphy -libps2 -libsha256 -libsm4 -linear_ranges -llc -lm63 -lockd -loop -lp8788 -ltc2952-poweroff -lxt -lz4_decompress -lzo -lzo-rle -lzo_compress -lzo_decompress -macb -macvlan -map_funcs -marvell -max14577 -max20751 -max310x -max77686 -max77693 -mbcache -mc -mc44s803 -md-mod -md5 -mdio-bitbang -mdio_devres -mfd-core -micrel -mii -mmc_block -mmc_core -mousedev -mpi -mq-deadline -mrp -mt20xx -mt6323-poweroff -mtd -mtd_blkdevs -mtd_dataflash -mtdblock -mtdoops -mv_xor_v2 -n_null -nand -nandcore -national -net1080 -nfs -nfs_acl -nfs_layout_flexfiles -nfs_layout_nfsv41_files -nfs_ssc -nfsv2 -nfsv3 -nfsv4 -nls_base -nls_cp437 -nls_iso8859-1 -nvmem_core -nvmem_xlnx_secure_config -nvmem_zynqmp_nvmem -of-fpga-region -of_mdio -of_xilinx_wdt -ofpart -ohci-hcd -ohci-pci -oid_registry -overlay -p8022 -packing -palmas -panel-simple -pci-ep-cfs -pci-epc-core -pci-epc-mem -pci-epf-core -pci-host-common -pci-host-generic -pcie-altera -pcie-altera-msi -pcie-hisi-error -pcie-microchip-host -phy-ulpi -phy-xgene -phy-zynqmp -phylink -pinctrl-amd -pinctrl-as3722 -pinctrl-palmas -pinctrl-single -pinctrl-zynqmp -pkcs7_message -pktgen -pldmfw -pmbus -pmbus_core -power_supply -powercap_sys -ppp_generic -pps_core -pretimeout_noop -processor -psnap -pstore -ptp -ptp_kvm -public_key -pvcalls-back -pvcalls-front -pwm-cadence -pwm-fan -pwrseq_emmc -pwrseq_simple -qsemi -quota_tree -quota_v2 -raid6_pq -rapidio -rational -realtek -regmap-i2c -regmap-mmio -regmap-spi -regulator-poweroff -remoteproc -restart-poweroff -rfkill -rfkill-gpio -rng -rng-core -roles -rsa_generic -rtc-efi -sccnxp -sch_mqprio -sch_skbprio -scmi-module -scsi_common -scsi_mod -sd_mod -sdhci -sdhci-of-arasan -sdhci-pltfm -sec-core -sec-irq -selftests -seqiv -serdev -serial_core -serial_mctrl_gpio -serio -serport -sg -sha1-ce -sha1_generic -sha2-ce -sha256-arm64 -sha256_generic -sha3-ce -sha3_generic -sha512-arm64 -sha512-ce -sha512_generic -shpchp -simple-pm-bus -skcipher -slhc -sm3-ce -sm3_generic -sm4-ce -smc91x -smsc -snd -snd-hwdep -snd-pcm -snd-pcm-dmaengine -snd-rawmidi -snd-seq-device -snd-soc-core -snd-soc-xlnx-formatter-pcm -snd-soc-xlnx-i2s -snd-timer -snd-usb-audio -snd-usbmidi-lib -soundcore -spi-bitbang -spi-cadence -spi-cadence-quadspi -spi-fsl-lib -spi-fsl-spi -spi-nor -squashfs -sr_mod -st_drv -ste10Xp -stmpe-i2c -stmpe-spi -stp -sunrpc -synopsys_edac -syscopyarea -sysfillrect -sysimgblt -system_heap -t10-pi -tc3589x -tcp_cubic -tda18271 -tda827x -tda8290 -tda9887 -tea5761 -tea5767 -thermal -tpm -tpm_crb -tpm_tis -tpm_tis_core -tps65086 -tps65086-regulator -tps65086-restart -tps6586x -tps65912-core -tps65912-i2c -tps65912-spi -trusted -ttyprintk -tun -tuner-simple -tuner-types -tuner-xc2028 -twl4030-audio -twl6040 -u_audio -u_ether -u_serial -uartlite -uartlite-rs485 -uas -ubi -ubifs -ucs2_string -udc-core -udc-xilinx -udmabuf -uhci-hcd -uinput -uio -uio_xilinx_apm -unicode -unix -usb-common -usb-otg-fsm -usb-storage -usb_f_acm -usb_f_ecm -usb_f_ecm_subset -usb_f_eem -usb_f_fs -usb_f_hid -usb_f_mass_storage -usb_f_midi -usb_f_ncm -usb_f_obex -usb_f_printer -usb_f_rndis -usb_f_serial -usb_f_ss_lb -usb_f_uac1 -usb_f_uac1_legacy -usb_f_uac2 -usb_f_uvc -usbcore -usbnet -uvcvideo -v4l2-async -v4l2-dv-timings -v4l2-fwnode -v4l2-mem2mem -versal-sysmon -veth -vexpress-config -vexpress-sysreg -vfat -videobuf2-common -videobuf2-dma-contig -videobuf2-dma-sg -videobuf2-memops -videobuf2-v4l2 -videobuf2-vmalloc -videodev -virt-dma -virtio -virtio-iommu -virtio_balloon -virtio_console -virtio_mmio -virtio_pci -virtio_pci_modern_dev -virtio_ring -vitesse -watch_queue -watchdog -x509_key_parser -xc4000 -xc5000 -xen-blkfront -xen-evtchn -xen-netfront -xen-privcmd -xenbus -xenbus_probe_frontend -xenfs -xfrm_algo -xfrm_user -xgmac_mdio -xhci-hcd -xhci-plat-hcd -xilinx-afi -xilinx-aie -xilinx-ams -xilinx-axis-broadcaster -xilinx-axis-subsetconv -xilinx-axis-switch -xilinx-cfa -xilinx-cresample -xilinx-csi2rxss -xilinx-demosaic -xilinx-dma-apf -xilinx-dp-card -xilinx-dp-codec -xilinx-dp-pcm -xilinx-gamma -xilinx-hdmirxss -xilinx-hls -xilinx-m2m -xilinx-multi-scaler -xilinx-pr-decoupler -xilinx-remapper -xilinx-rgb2yuv -xilinx-scaler -xilinx-scd -xilinx-sdirxss -xilinx-switch -xilinx-tpg -xilinx-video -xilinx-vpss-csc -xilinx-vpss-scaler -xilinx-vtc -xilinx-xadc -xilinx_ddrmc_edac -xilinx_dma -xilinx_dpdma -xilinx_emac -xilinx_emac_tsn -xilinx_emaclite -xilinx_fclk -xilinx_flex_pm -xilinx_frmbuf -xilinx_gmii2rgmii -xilinx_phy -xilinx_sdfec -xilinx_trafgen -xilinx_tsn_ep -xilinx_tsn_ep_ex -xilinx_tsn_ip -xilinx_tsn_switch -xilinx_uartps -xlnk -xlnk-eng -xlnx-sdi -xlnx_csc -xlnx_dptx -xlnx_drm -xlnx_dsi -xlnx_mixer -xlnx_pl_disp -xlnx_pl_snd_card -xlnx_scaler -xlnx_sdi_audio -xlnx_spdif -xlnx_vtc -xlnxsync -xor -xor-neon -xts -xxhash -xxhash_generic -xz_dec -zaurus -zbud -zlib_deflate -zlib_inflate -zpool -zsmalloc -zstd -zstd_compress -zstd_decompress -zswap -zynqmp-aes-gcm -zynqmp-fpga -zynqmp-ipi-mailbox -zynqmp-rsa -zynqmp-sha-deprecated -zynqmp_dma -zynqmp_ocm_edac reverted: --- linux-xilinx-zynqmp-5.15.0/debian.zynqmp/abi/arm64/xilinx-zynqmp.retpoline +++ linux-xilinx-zynqmp-5.15.0.orig/debian.zynqmp/abi/arm64/xilinx-zynqmp.retpoline @@ -1 +0,0 @@ -# RETPOLINE NOT ENABLED reverted: --- linux-xilinx-zynqmp-5.15.0/debian.zynqmp/abi/fwinfo +++ linux-xilinx-zynqmp-5.15.0.orig/debian.zynqmp/abi/fwinfo @@ -1,1795 +0,0 @@ -firmware: 3826.arm -firmware: 3com/typhoon.bin -firmware: 6fire/dmx6fireap.ihx -firmware: 6fire/dmx6firecf.bin -firmware: 6fire/dmx6firel2.ihx -firmware: BCM2033-FW.bin -firmware: BCM2033-MD.hex -firmware: RTL8192E/boot.img -firmware: RTL8192E/data.img -firmware: RTL8192E/main.img -firmware: RTL8192U/boot.img -firmware: RTL8192U/data.img -firmware: RTL8192U/main.img -firmware: acenic/tg1.bin -firmware: acenic/tg2.bin -firmware: adaptec/starfire_rx.bin -firmware: adaptec/starfire_tx.bin -firmware: advansys/3550.bin -firmware: advansys/38C0800.bin -firmware: advansys/38C1600.bin -firmware: advansys/mcode.bin -firmware: agere_ap_fw.bin -firmware: agere_sta_fw.bin -firmware: aic94xx-seq.fw -firmware: amdgpu/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: ar5523.bin -firmware: ast_dp501_fw.bin -firmware: ath10k/QCA6174/hw2.1/board-2.bin -firmware: ath10k/QCA6174/hw2.1/board.bin -firmware: ath10k/QCA6174/hw2.1/firmware-4.bin -firmware: ath10k/QCA6174/hw2.1/firmware-5.bin -firmware: ath10k/QCA6174/hw3.0/board-2.bin -firmware: ath10k/QCA6174/hw3.0/board.bin -firmware: ath10k/QCA6174/hw3.0/firmware-4.bin -firmware: ath10k/QCA6174/hw3.0/firmware-5.bin -firmware: ath10k/QCA6174/hw3.0/firmware-6.bin -firmware: ath10k/QCA9377/hw1.0/board.bin -firmware: ath10k/QCA9377/hw1.0/firmware-5.bin -firmware: ath10k/QCA9377/hw1.0/firmware-6.bin -firmware: ath10k/QCA9887/hw1.0/board-2.bin -firmware: ath10k/QCA9887/hw1.0/board.bin -firmware: ath10k/QCA9887/hw1.0/firmware-5.bin -firmware: ath10k/QCA988X/hw2.0/board-2.bin -firmware: ath10k/QCA988X/hw2.0/board.bin -firmware: ath10k/QCA988X/hw2.0/firmware-2.bin -firmware: ath10k/QCA988X/hw2.0/firmware-3.bin -firmware: ath10k/QCA988X/hw2.0/firmware-4.bin -firmware: ath10k/QCA988X/hw2.0/firmware-5.bin -firmware: ath11k/QCA6390/hw2.0/amss.bin -firmware: ath11k/QCA6390/hw2.0/board-2.bin -firmware: ath11k/QCA6390/hw2.0/m3.bin -firmware: ath3k-1.fw -firmware: ath6k/AR6003/hw2.0/athwlan.bin.z77 -firmware: ath6k/AR6003/hw2.0/bdata.SD31.bin -firmware: ath6k/AR6003/hw2.0/bdata.bin -firmware: ath6k/AR6003/hw2.0/data.patch.bin -firmware: ath6k/AR6003/hw2.0/otp.bin.z77 -firmware: ath6k/AR6003/hw2.1.1/athwlan.bin -firmware: ath6k/AR6003/hw2.1.1/bdata.SD31.bin -firmware: ath6k/AR6003/hw2.1.1/bdata.bin -firmware: ath6k/AR6003/hw2.1.1/data.patch.bin -firmware: ath6k/AR6003/hw2.1.1/otp.bin -firmware: ath6k/AR6004/hw1.0/bdata.DB132.bin -firmware: ath6k/AR6004/hw1.0/bdata.bin -firmware: ath6k/AR6004/hw1.0/fw.ram.bin -firmware: ath6k/AR6004/hw1.1/bdata.DB132.bin -firmware: ath6k/AR6004/hw1.1/bdata.bin -firmware: ath6k/AR6004/hw1.1/fw.ram.bin -firmware: ath6k/AR6004/hw1.2/bdata.bin -firmware: ath6k/AR6004/hw1.2/fw.ram.bin -firmware: ath6k/AR6004/hw1.3/bdata.bin -firmware: ath6k/AR6004/hw1.3/fw.ram.bin -firmware: ath9k_htc/htc_7010-1.4.0.fw -firmware: ath9k_htc/htc_9271-1.4.0.fw -firmware: atmel/wilc1000_wifi_firmware-1.bin -firmware: atmel_at76c502-wpa.bin -firmware: atmel_at76c502.bin -firmware: atmel_at76c502_3com-wpa.bin -firmware: atmel_at76c502_3com.bin -firmware: atmel_at76c502d-wpa.bin -firmware: atmel_at76c502d.bin -firmware: atmel_at76c502e-wpa.bin -firmware: atmel_at76c502e.bin -firmware: atmel_at76c503-i3861.bin -firmware: atmel_at76c503-i3863.bin -firmware: atmel_at76c503-rfmd-acc.bin -firmware: atmel_at76c503-rfmd.bin -firmware: atmel_at76c504-wpa.bin -firmware: atmel_at76c504.bin -firmware: atmel_at76c504_2958-wpa.bin -firmware: atmel_at76c504_2958.bin -firmware: atmel_at76c504a_2958-wpa.bin -firmware: atmel_at76c504a_2958.bin -firmware: atmel_at76c505-rfmd.bin -firmware: atmel_at76c505-rfmd2958.bin -firmware: atmel_at76c505a-rfmd2958.bin -firmware: atmel_at76c505amx-rfmd.bin -firmware: atmel_at76c506-wpa.bin -firmware: atmel_at76c506.bin -firmware: atsc_denver.inp -firmware: av7110/bootcode.bin -firmware: b43/ucode11.fw -firmware: b43/ucode13.fw -firmware: b43/ucode14.fw -firmware: b43/ucode15.fw -firmware: b43/ucode16_lp.fw -firmware: b43/ucode16_mimo.fw -firmware: b43/ucode24_lcn.fw -firmware: b43/ucode25_lcn.fw -firmware: b43/ucode25_mimo.fw -firmware: b43/ucode26_mimo.fw -firmware: b43/ucode29_mimo.fw -firmware: b43/ucode30_mimo.fw -firmware: b43/ucode33_lcn40.fw -firmware: b43/ucode40.fw -firmware: b43/ucode42.fw -firmware: b43/ucode5.fw -firmware: b43/ucode9.fw -firmware: b43legacy/ucode2.fw -firmware: b43legacy/ucode4.fw -firmware: bfubase.frm -firmware: bnx2/bnx2-mips-06-6.2.3.fw -firmware: bnx2/bnx2-mips-09-6.2.1b.fw -firmware: bnx2/bnx2-rv2p-06-6.0.15.fw -firmware: bnx2/bnx2-rv2p-09-6.0.17.fw -firmware: bnx2/bnx2-rv2p-09ax-6.0.17.fw -firmware: bnx2x/bnx2x-e1-7.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: brcm/bcm43xx-0.fw -firmware: brcm/bcm43xx_hdr-0.fw -firmware: brcm/brcmfmac*-pcie.*.bin -firmware: brcm/brcmfmac*-pcie.*.txt -firmware: brcm/brcmfmac*-pcie.txt -firmware: brcm/brcmfmac*-sdio.*.bin -firmware: brcm/brcmfmac*-sdio.*.txt -firmware: brcm/brcmfmac43012-sdio.bin -firmware: brcm/brcmfmac43012-sdio.clm_blob -firmware: brcm/brcmfmac43143-sdio.bin -firmware: brcm/brcmfmac43143.bin -firmware: brcm/brcmfmac43236b.bin -firmware: brcm/brcmfmac43241b0-sdio.bin -firmware: brcm/brcmfmac43241b4-sdio.bin -firmware: brcm/brcmfmac43241b5-sdio.bin -firmware: brcm/brcmfmac43242a.bin -firmware: brcm/brcmfmac4329-sdio.bin -firmware: brcm/brcmfmac4330-sdio.bin -firmware: brcm/brcmfmac4334-sdio.bin -firmware: brcm/brcmfmac43340-sdio.bin -firmware: brcm/brcmfmac4335-sdio.bin -firmware: brcm/brcmfmac43362-sdio.bin -firmware: brcm/brcmfmac4339-sdio.bin -firmware: brcm/brcmfmac43430-sdio.bin -firmware: brcm/brcmfmac43430-sdio.clm_blob -firmware: brcm/brcmfmac43430a0-sdio.bin -firmware: brcm/brcmfmac43430b0-sdio.bin -firmware: brcm/brcmfmac43455-sdio.bin -firmware: brcm/brcmfmac43455-sdio.clm_blob -firmware: brcm/brcmfmac43456-sdio.bin -firmware: brcm/brcmfmac4350-pcie.bin -firmware: brcm/brcmfmac4350c2-pcie.bin -firmware: brcm/brcmfmac4354-sdio.bin -firmware: brcm/brcmfmac4354-sdio.clm_blob -firmware: brcm/brcmfmac4356-pcie.bin -firmware: brcm/brcmfmac4356-pcie.clm_blob -firmware: brcm/brcmfmac4356-sdio.bin -firmware: brcm/brcmfmac4356-sdio.clm_blob -firmware: brcm/brcmfmac43569.bin -firmware: brcm/brcmfmac43570-pcie.bin -firmware: brcm/brcmfmac43570-pcie.clm_blob -firmware: brcm/brcmfmac4358-pcie.bin -firmware: brcm/brcmfmac4359-pcie.bin -firmware: brcm/brcmfmac4359-sdio.bin -firmware: brcm/brcmfmac43602-pcie.bin -firmware: brcm/brcmfmac4364-pcie.bin -firmware: brcm/brcmfmac4365b-pcie.bin -firmware: brcm/brcmfmac4365c-pcie.bin -firmware: brcm/brcmfmac4366b-pcie.bin -firmware: brcm/brcmfmac4366c-pcie.bin -firmware: brcm/brcmfmac4371-pcie.bin -firmware: brcm/brcmfmac4373-sdio.bin -firmware: brcm/brcmfmac4373-sdio.clm_blob -firmware: brcm/brcmfmac4373.bin -firmware: brcm/brcmfmac43752-sdio.bin -firmware: brcm/brcmfmac43752-sdio.clm_blob -firmware: c218tunx.cod -firmware: c320tunx.cod -firmware: cadence/mhdp8546.bin -firmware: carl9170-1.fw -firmware: cavium/cnn55xx_se.fw -firmware: cbfw-3.2.5.1.bin -firmware: cmmb_ming_app.inp -firmware: cmmb_vega_12mhz.inp -firmware: cmmb_venice_12mhz.inp -firmware: comedi/jr3pci.idm -firmware: cp204unx.cod -firmware: cpia2/stv0672_vp4.bin -firmware: cs46xx/cwc4630 -firmware: cs46xx/cwcasync -firmware: cs46xx/cwcbinhack -firmware: cs46xx/cwcdma -firmware: cs46xx/cwcsnoop -firmware: ct2fw-3.2.5.1.bin -firmware: ctefx-desktop.bin -firmware: ctefx-r3di.bin -firmware: ctefx.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: daqboard2000_firmware.bin -firmware: digiface_firmware.bin -firmware: digiface_firmware_rev11.bin -firmware: dvb-cx18-mpc718-mt352.fw -firmware: dvb-demod-m88ds3103.fw -firmware: dvb-demod-m88ds3103b.fw -firmware: dvb-demod-m88rs6000.fw -firmware: dvb-demod-mn88472-02.fw -firmware: dvb-demod-mn88473-01.fw -firmware: dvb-demod-mxl692.fw -firmware: dvb-demod-si2165.fw -firmware: dvb-demod-si2168-a20-01.fw -firmware: dvb-demod-si2168-a30-01.fw -firmware: dvb-demod-si2168-b40-01.fw -firmware: dvb-demod-si2168-d60-01.fw -firmware: dvb-fe-af9013.fw -firmware: dvb-fe-cx24117.fw -firmware: dvb-fe-drxj-mc-1.0.8.fw -firmware: dvb-fe-ds3000.fw -firmware: dvb-fe-tda10071.fw -firmware: dvb-tuner-si2141-a10-01.fw -firmware: dvb-tuner-si2157-a30-01.fw -firmware: dvb-tuner-si2158-a20-01.fw -firmware: dvb-usb-af9015.fw -firmware: dvb-usb-af9035-02.fw -firmware: dvb-usb-dib0700-1.20.fw -firmware: dvb-usb-dw2101.fw -firmware: dvb-usb-dw2102.fw -firmware: dvb-usb-dw2104.fw -firmware: dvb-usb-dw3101.fw -firmware: dvb-usb-ec168.fw -firmware: dvb-usb-it9135-01.fw -firmware: dvb-usb-it9135-02.fw -firmware: dvb-usb-it9303-01.fw -firmware: dvb-usb-lme2510-lg.fw -firmware: dvb-usb-lme2510-s0194.fw -firmware: dvb-usb-lme2510c-lg.fw -firmware: dvb-usb-lme2510c-rs2000.fw -firmware: dvb-usb-lme2510c-s0194.fw -firmware: dvb-usb-lme2510c-s7395.fw -firmware: dvb-usb-p1100.fw -firmware: dvb-usb-p7500.fw -firmware: dvb-usb-s630.fw -firmware: dvb-usb-s660.fw -firmware: dvb-usb-terratec-h7-az6007.fw -firmware: dvb_nova_12mhz.inp -firmware: dvb_nova_12mhz_b0.inp -firmware: dvb_rio.inp -firmware: dvbh_rio.inp -firmware: e100/d101m_ucode.bin -firmware: e100/d101s_ucode.bin -firmware: e100/d102e_ucode.bin -firmware: ea/3g_asic.fw -firmware: ea/darla20_dsp.fw -firmware: ea/darla24_dsp.fw -firmware: ea/echo3g_dsp.fw -firmware: ea/gina20_dsp.fw -firmware: ea/gina24_301_asic.fw -firmware: ea/gina24_301_dsp.fw -firmware: ea/gina24_361_asic.fw -firmware: ea/gina24_361_dsp.fw -firmware: ea/indigo_dj_dsp.fw -firmware: ea/indigo_djx_dsp.fw -firmware: ea/indigo_dsp.fw -firmware: ea/indigo_io_dsp.fw -firmware: ea/indigo_iox_dsp.fw -firmware: ea/layla20_asic.fw -firmware: ea/layla20_dsp.fw -firmware: ea/layla24_1_asic.fw -firmware: ea/layla24_2A_asic.fw -firmware: ea/layla24_2S_asic.fw -firmware: ea/layla24_dsp.fw -firmware: ea/loader_dsp.fw -firmware: ea/mia_dsp.fw -firmware: ea/mona_2_asic.fw -firmware: ea/mona_301_1_asic_48.fw -firmware: ea/mona_301_1_asic_96.fw -firmware: ea/mona_301_dsp.fw -firmware: ea/mona_361_1_asic_48.fw -firmware: ea/mona_361_1_asic_96.fw -firmware: ea/mona_361_dsp.fw -firmware: edgeport/boot.fw -firmware: edgeport/boot2.fw -firmware: edgeport/down.fw -firmware: edgeport/down2.fw -firmware: edgeport/down3.bin -firmware: emi26/bitstream.fw -firmware: emi26/firmware.fw -firmware: emi26/loader.fw -firmware: emi62/bitstream.fw -firmware: emi62/loader.fw -firmware: emi62/spdif.fw -firmware: emu/audio_dock.fw -firmware: emu/emu0404.fw -firmware: emu/emu1010_notebook.fw -firmware: emu/emu1010b.fw -firmware: emu/hana.fw -firmware: emu/micro_dock.fw -firmware: ene-ub6250/ms_init.bin -firmware: ene-ub6250/ms_rdwr.bin -firmware: ene-ub6250/msp_rdwr.bin -firmware: ene-ub6250/sd_init1.bin -firmware: ene-ub6250/sd_init2.bin -firmware: ene-ub6250/sd_rdwr.bin -firmware: ess/maestro3_assp_kernel.fw -firmware: ess/maestro3_assp_minisrc.fw -firmware: f2255usb.bin -firmware: fm_radio.inp -firmware: fm_radio_rio.inp -firmware: fw.ram.bin -firmware: go7007/go7007fw.bin -firmware: go7007/go7007tv.bin -firmware: go7007/lr192.fw -firmware: go7007/px-m402u.fw -firmware: go7007/px-tv402u.fw -firmware: go7007/s2250-1.fw -firmware: go7007/s2250-2.fw -firmware: go7007/wis-startrek.fw -firmware: idt82p33xxx.bin -firmware: intel/ibt-11-5.ddc -firmware: intel/ibt-11-5.sfi -firmware: intel/ibt-12-16.ddc -firmware: intel/ibt-12-16.sfi -firmware: intel/ice/ddp/ice.pkg -firmware: ipw2100-1.3-i.fw -firmware: ipw2100-1.3-p.fw -firmware: ipw2100-1.3.fw -firmware: ipw2200-bss.fw -firmware: ipw2200-ibss.fw -firmware: ipw2200-sniffer.fw -firmware: isdbt_nova_12mhz.inp -firmware: isdbt_nova_12mhz_b0.inp -firmware: isdbt_pele.inp -firmware: isdbt_rio.inp -firmware: isdn/ISAR.BIN -firmware: isight.fw -firmware: isl3886pci -firmware: isl3886usb -firmware: isl3887usb -firmware: iwlwifi-100-5.ucode -firmware: iwlwifi-1000-5.ucode -firmware: iwlwifi-105-6.ucode -firmware: iwlwifi-135-6.ucode -firmware: iwlwifi-2000-6.ucode -firmware: iwlwifi-2030-6.ucode -firmware: iwlwifi-3160-17.ucode -firmware: iwlwifi-3168-29.ucode -firmware: iwlwifi-3945-2.ucode -firmware: iwlwifi-4965-2.ucode -firmware: iwlwifi-5000-5.ucode -firmware: iwlwifi-5150-2.ucode -firmware: iwlwifi-6000-6.ucode -firmware: iwlwifi-6000g2a-6.ucode -firmware: iwlwifi-6000g2b-6.ucode -firmware: iwlwifi-6050-5.ucode -firmware: iwlwifi-7260-17.ucode -firmware: iwlwifi-7265-17.ucode -firmware: iwlwifi-7265D-29.ucode -firmware: iwlwifi-8000C-36.ucode -firmware: iwlwifi-8265-36.ucode -firmware: iwlwifi-9000-pu-b0-jf-b0-46.ucode -firmware: iwlwifi-9260-th-b0-jf-b0-46.ucode -firmware: iwlwifi-Qu-b0-hr-b0-66.ucode -firmware: iwlwifi-Qu-b0-jf-b0-66.ucode -firmware: iwlwifi-Qu-c0-hr-b0-66.ucode -firmware: iwlwifi-QuQnj-b0-hr-b0-66.ucode -firmware: iwlwifi-QuQnj-b0-jf-b0-66.ucode -firmware: iwlwifi-QuZ-a0-hr-b0-66.ucode -firmware: iwlwifi-QuZ-a0-jf-b0-66.ucode -firmware: iwlwifi-SoSnj-a0-gf-a0-66.ucode -firmware: iwlwifi-SoSnj-a0-gf4-a0-66.ucode -firmware: iwlwifi-SoSnj-a0-hr-b0-66.ucode -firmware: iwlwifi-SoSnj-a0-jf-b0-66.ucode -firmware: iwlwifi-SoSnj-a0-mr-a0-66.ucode -firmware: iwlwifi-bz-a0-gf-a0-66.ucode -firmware: iwlwifi-bz-a0-gf4-a0-66.ucode -firmware: iwlwifi-bz-a0-hr-b0-66.ucode -firmware: iwlwifi-bz-a0-mr-a0-66.ucode -firmware: iwlwifi-cc-a0-66.ucode -firmware: iwlwifi-ma-a0-fm-a0-66.ucode -firmware: iwlwifi-ma-a0-gf-a0-66.ucode -firmware: iwlwifi-ma-a0-gf4-a0-66.ucode -firmware: iwlwifi-ma-a0-hr-b0-66.ucode -firmware: iwlwifi-ma-a0-mr-a0-66.ucode -firmware: iwlwifi-so-a0-gf-a0-66.ucode -firmware: iwlwifi-so-a0-hr-b0-66.ucode -firmware: iwlwifi-so-a0-jf-b0-66.ucode -firmware: iwlwifi-ty-a0-gf-a0-66.ucode -firmware: kaweth/new_code.bin -firmware: kaweth/new_code_fix.bin -firmware: kaweth/trigger_code.bin -firmware: kaweth/trigger_code_fix.bin -firmware: keyspan/mpr.fw -firmware: keyspan/usa18x.fw -firmware: keyspan/usa19.fw -firmware: keyspan/usa19qi.fw -firmware: keyspan/usa19qw.fw -firmware: keyspan/usa19w.fw -firmware: keyspan/usa28.fw -firmware: keyspan/usa28x.fw -firmware: keyspan/usa28xa.fw -firmware: keyspan/usa28xb.fw -firmware: keyspan/usa49w.fw -firmware: keyspan/usa49wlc.fw -firmware: keyspan_pda/keyspan_pda.fw -firmware: keyspan_pda/xircom_pgs.fw -firmware: korg/k1212.dsp -firmware: ks7010sd.rom -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: lbtf_usb.bin -firmware: lgs8g75.fw -firmware: libertas/gspi8385.bin -firmware: libertas/gspi8385_helper.bin -firmware: libertas/gspi8385_hlp.bin -firmware: libertas/gspi8686.bin -firmware: libertas/gspi8686_hlp.bin -firmware: libertas/gspi8686_v9.bin -firmware: libertas/gspi8686_v9_helper.bin -firmware: libertas/gspi8688.bin -firmware: libertas/gspi8688_helper.bin -firmware: libertas/sd8385.bin -firmware: libertas/sd8385_helper.bin -firmware: libertas/sd8686_v8.bin -firmware: libertas/sd8686_v8_helper.bin -firmware: libertas/sd8686_v9.bin -firmware: libertas/sd8686_v9_helper.bin -firmware: libertas/sd8688.bin -firmware: libertas/sd8688_helper.bin -firmware: libertas/usb8388.bin -firmware: libertas/usb8388_v5.bin -firmware: libertas/usb8388_v9.bin -firmware: libertas/usb8682.bin -firmware: liquidio/lio_210nv_nic.bin -firmware: liquidio/lio_210sv_nic.bin -firmware: liquidio/lio_23xx_nic.bin -firmware: liquidio/lio_410nv_nic.bin -firmware: me2600_firmware.bin -firmware: me4000_firmware.bin -firmware: mediatek/WIFI_MT7922_patch_mcu_1_1_hdr.bin -firmware: mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin -firmware: mediatek/WIFI_RAM_CODE_MT7922_1.bin -firmware: mediatek/WIFI_RAM_CODE_MT7961_1.bin -firmware: mediatek/mt7610e.bin -firmware: mediatek/mt7610u.bin -firmware: mediatek/mt7615_cr4.bin -firmware: mediatek/mt7615_n9.bin -firmware: mediatek/mt7615_rom_patch.bin -firmware: mediatek/mt7622pr2h.bin -firmware: mediatek/mt7650e.bin -firmware: mediatek/mt7663_n9_rebb.bin -firmware: mediatek/mt7663_n9_v3.bin -firmware: mediatek/mt7663pr2h.bin -firmware: mediatek/mt7663pr2h_rebb.bin -firmware: mediatek/mt7668pr2h.bin -firmware: mediatek/mt7915_rom_patch.bin -firmware: mediatek/mt7915_wa.bin -firmware: mediatek/mt7915_wm.bin -firmware: mellanox/mlxsw_spectrum-13.2008.2406.mfa2 -firmware: mellanox/mlxsw_spectrum2-29.2008.2406.mfa2 -firmware: mellanox/mlxsw_spectrum3-30.2008.2406.mfa2 -firmware: microchip/mscc_vsc8574_revb_int8051_29e8.bin -firmware: microchip/mscc_vsc8584_revb_int8051_fb48.bin -firmware: mixart/miXart8.elf -firmware: mixart/miXart8.xlx -firmware: mixart/miXart8AES.xlx -firmware: moxa/moxa-1110.fw -firmware: moxa/moxa-1130.fw -firmware: moxa/moxa-1131.fw -firmware: moxa/moxa-1150.fw -firmware: moxa/moxa-1151.fw -firmware: mrvl/sd8688.bin -firmware: mrvl/sd8688_helper.bin -firmware: mrvl/sd8786_uapsta.bin -firmware: mrvl/sd8787_uapsta.bin -firmware: mrvl/sd8797_uapsta.bin -firmware: mrvl/sd8887_uapsta.bin -firmware: mrvl/sd8897_uapsta.bin -firmware: mrvl/sd8987_uapsta.bin -firmware: mrvl/sdsd8977_combo_v2.bin -firmware: mrvl/sdsd8997_combo_v4.bin -firmware: mrvl/usb8766_uapsta.bin -firmware: mrvl/usb8797_uapsta.bin -firmware: mrvl/usb8801_uapsta.bin -firmware: mrvl/usbusb8997_combo_v4.bin -firmware: mt7601u.bin -firmware: mt7603_e1.bin -firmware: mt7603_e2.bin -firmware: mt7628_e1.bin -firmware: mt7628_e2.bin -firmware: mt7662.bin -firmware: mt7662_rom_patch.bin -firmware: mts_cdma.fw -firmware: mts_edge.fw -firmware: mts_gsm.fw -firmware: mts_mt9234mu.fw -firmware: mts_mt9234zba.fw -firmware: multiface_firmware.bin -firmware: multiface_firmware_rev11.bin -firmware: mwl8k/fmimage_8363.fw -firmware: mwl8k/fmimage_8366.fw -firmware: mwl8k/fmimage_8366_ap-3.fw -firmware: mwl8k/fmimage_8687.fw -firmware: mwl8k/helper_8363.fw -firmware: mwl8k/helper_8366.fw -firmware: mwl8k/helper_8687.fw -firmware: myri10ge_eth_z8e.dat -firmware: myri10ge_ethp_z8e.dat -firmware: myri10ge_rss_eth_z8e.dat -firmware: myri10ge_rss_ethp_z8e.dat -firmware: 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: ni6534a.bin -firmware: niscrb01.bin -firmware: niscrb02.bin -firmware: nvidia/gm200/acr/bl.bin -firmware: nvidia/gm200/acr/ucode_load.bin -firmware: nvidia/gm200/acr/ucode_unload.bin -firmware: nvidia/gm200/gr/fecs_bl.bin -firmware: nvidia/gm200/gr/fecs_data.bin -firmware: nvidia/gm200/gr/fecs_inst.bin -firmware: nvidia/gm200/gr/fecs_sig.bin -firmware: nvidia/gm200/gr/gpccs_bl.bin -firmware: nvidia/gm200/gr/gpccs_data.bin -firmware: nvidia/gm200/gr/gpccs_inst.bin -firmware: nvidia/gm200/gr/gpccs_sig.bin -firmware: nvidia/gm200/gr/sw_bundle_init.bin -firmware: nvidia/gm200/gr/sw_ctx.bin -firmware: nvidia/gm200/gr/sw_method_init.bin -firmware: nvidia/gm200/gr/sw_nonctx.bin -firmware: nvidia/gm204/acr/bl.bin -firmware: nvidia/gm204/acr/ucode_load.bin -firmware: nvidia/gm204/acr/ucode_unload.bin -firmware: nvidia/gm204/gr/fecs_bl.bin -firmware: nvidia/gm204/gr/fecs_data.bin -firmware: nvidia/gm204/gr/fecs_inst.bin -firmware: nvidia/gm204/gr/fecs_sig.bin -firmware: nvidia/gm204/gr/gpccs_bl.bin -firmware: nvidia/gm204/gr/gpccs_data.bin -firmware: nvidia/gm204/gr/gpccs_inst.bin -firmware: nvidia/gm204/gr/gpccs_sig.bin -firmware: nvidia/gm204/gr/sw_bundle_init.bin -firmware: nvidia/gm204/gr/sw_ctx.bin -firmware: nvidia/gm204/gr/sw_method_init.bin -firmware: nvidia/gm204/gr/sw_nonctx.bin -firmware: nvidia/gm206/acr/bl.bin -firmware: nvidia/gm206/acr/ucode_load.bin -firmware: nvidia/gm206/acr/ucode_unload.bin -firmware: nvidia/gm206/gr/fecs_bl.bin -firmware: nvidia/gm206/gr/fecs_data.bin -firmware: nvidia/gm206/gr/fecs_inst.bin -firmware: nvidia/gm206/gr/fecs_sig.bin -firmware: nvidia/gm206/gr/gpccs_bl.bin -firmware: nvidia/gm206/gr/gpccs_data.bin -firmware: nvidia/gm206/gr/gpccs_inst.bin -firmware: nvidia/gm206/gr/gpccs_sig.bin -firmware: nvidia/gm206/gr/sw_bundle_init.bin -firmware: nvidia/gm206/gr/sw_ctx.bin -firmware: nvidia/gm206/gr/sw_method_init.bin -firmware: nvidia/gm206/gr/sw_nonctx.bin -firmware: nvidia/gp100/acr/bl.bin -firmware: nvidia/gp100/acr/ucode_load.bin -firmware: nvidia/gp100/acr/ucode_unload.bin -firmware: nvidia/gp100/gr/fecs_bl.bin -firmware: nvidia/gp100/gr/fecs_data.bin -firmware: nvidia/gp100/gr/fecs_inst.bin -firmware: nvidia/gp100/gr/fecs_sig.bin -firmware: nvidia/gp100/gr/gpccs_bl.bin -firmware: nvidia/gp100/gr/gpccs_data.bin -firmware: nvidia/gp100/gr/gpccs_inst.bin -firmware: nvidia/gp100/gr/gpccs_sig.bin -firmware: nvidia/gp100/gr/sw_bundle_init.bin -firmware: nvidia/gp100/gr/sw_ctx.bin -firmware: nvidia/gp100/gr/sw_method_init.bin -firmware: nvidia/gp100/gr/sw_nonctx.bin -firmware: nvidia/gp102/acr/bl.bin -firmware: nvidia/gp102/acr/ucode_load.bin -firmware: nvidia/gp102/acr/ucode_unload.bin -firmware: nvidia/gp102/acr/unload_bl.bin -firmware: nvidia/gp102/gr/fecs_bl.bin -firmware: nvidia/gp102/gr/fecs_data.bin -firmware: nvidia/gp102/gr/fecs_inst.bin -firmware: nvidia/gp102/gr/fecs_sig.bin -firmware: nvidia/gp102/gr/gpccs_bl.bin -firmware: nvidia/gp102/gr/gpccs_data.bin -firmware: nvidia/gp102/gr/gpccs_inst.bin -firmware: nvidia/gp102/gr/gpccs_sig.bin -firmware: nvidia/gp102/gr/sw_bundle_init.bin -firmware: nvidia/gp102/gr/sw_ctx.bin -firmware: nvidia/gp102/gr/sw_method_init.bin -firmware: nvidia/gp102/gr/sw_nonctx.bin -firmware: nvidia/gp102/nvdec/scrubber.bin -firmware: nvidia/gp102/sec2/desc-1.bin -firmware: nvidia/gp102/sec2/desc.bin -firmware: nvidia/gp102/sec2/image-1.bin -firmware: nvidia/gp102/sec2/image.bin -firmware: nvidia/gp102/sec2/sig-1.bin -firmware: nvidia/gp102/sec2/sig.bin -firmware: nvidia/gp104/acr/bl.bin -firmware: nvidia/gp104/acr/ucode_load.bin -firmware: nvidia/gp104/acr/ucode_unload.bin -firmware: nvidia/gp104/acr/unload_bl.bin -firmware: nvidia/gp104/gr/fecs_bl.bin -firmware: nvidia/gp104/gr/fecs_data.bin -firmware: nvidia/gp104/gr/fecs_inst.bin -firmware: nvidia/gp104/gr/fecs_sig.bin -firmware: nvidia/gp104/gr/gpccs_bl.bin -firmware: nvidia/gp104/gr/gpccs_data.bin -firmware: nvidia/gp104/gr/gpccs_inst.bin -firmware: nvidia/gp104/gr/gpccs_sig.bin -firmware: nvidia/gp104/gr/sw_bundle_init.bin -firmware: nvidia/gp104/gr/sw_ctx.bin -firmware: nvidia/gp104/gr/sw_method_init.bin -firmware: nvidia/gp104/gr/sw_nonctx.bin -firmware: nvidia/gp104/nvdec/scrubber.bin -firmware: nvidia/gp104/sec2/desc-1.bin -firmware: nvidia/gp104/sec2/desc.bin -firmware: nvidia/gp104/sec2/image-1.bin -firmware: nvidia/gp104/sec2/image.bin -firmware: nvidia/gp104/sec2/sig-1.bin -firmware: nvidia/gp104/sec2/sig.bin -firmware: nvidia/gp106/acr/bl.bin -firmware: nvidia/gp106/acr/ucode_load.bin -firmware: nvidia/gp106/acr/ucode_unload.bin -firmware: nvidia/gp106/acr/unload_bl.bin -firmware: nvidia/gp106/gr/fecs_bl.bin -firmware: nvidia/gp106/gr/fecs_data.bin -firmware: nvidia/gp106/gr/fecs_inst.bin -firmware: nvidia/gp106/gr/fecs_sig.bin -firmware: nvidia/gp106/gr/gpccs_bl.bin -firmware: nvidia/gp106/gr/gpccs_data.bin -firmware: nvidia/gp106/gr/gpccs_inst.bin -firmware: nvidia/gp106/gr/gpccs_sig.bin -firmware: nvidia/gp106/gr/sw_bundle_init.bin -firmware: nvidia/gp106/gr/sw_ctx.bin -firmware: nvidia/gp106/gr/sw_method_init.bin -firmware: nvidia/gp106/gr/sw_nonctx.bin -firmware: nvidia/gp106/nvdec/scrubber.bin -firmware: nvidia/gp106/sec2/desc-1.bin -firmware: nvidia/gp106/sec2/desc.bin -firmware: nvidia/gp106/sec2/image-1.bin -firmware: nvidia/gp106/sec2/image.bin -firmware: nvidia/gp106/sec2/sig-1.bin -firmware: nvidia/gp106/sec2/sig.bin -firmware: nvidia/gp107/acr/bl.bin -firmware: nvidia/gp107/acr/ucode_load.bin -firmware: nvidia/gp107/acr/ucode_unload.bin -firmware: nvidia/gp107/acr/unload_bl.bin -firmware: nvidia/gp107/gr/fecs_bl.bin -firmware: nvidia/gp107/gr/fecs_data.bin -firmware: nvidia/gp107/gr/fecs_inst.bin -firmware: nvidia/gp107/gr/fecs_sig.bin -firmware: nvidia/gp107/gr/gpccs_bl.bin -firmware: nvidia/gp107/gr/gpccs_data.bin -firmware: nvidia/gp107/gr/gpccs_inst.bin -firmware: nvidia/gp107/gr/gpccs_sig.bin -firmware: nvidia/gp107/gr/sw_bundle_init.bin -firmware: nvidia/gp107/gr/sw_ctx.bin -firmware: nvidia/gp107/gr/sw_method_init.bin -firmware: nvidia/gp107/gr/sw_nonctx.bin -firmware: nvidia/gp107/nvdec/scrubber.bin -firmware: nvidia/gp107/sec2/desc-1.bin -firmware: nvidia/gp107/sec2/desc.bin -firmware: nvidia/gp107/sec2/image-1.bin -firmware: nvidia/gp107/sec2/image.bin -firmware: nvidia/gp107/sec2/sig-1.bin -firmware: nvidia/gp107/sec2/sig.bin -firmware: nvidia/gp108/acr/bl.bin -firmware: nvidia/gp108/acr/ucode_load.bin -firmware: nvidia/gp108/acr/ucode_unload.bin -firmware: nvidia/gp108/acr/unload_bl.bin -firmware: nvidia/gp108/gr/fecs_bl.bin -firmware: nvidia/gp108/gr/fecs_data.bin -firmware: nvidia/gp108/gr/fecs_inst.bin -firmware: nvidia/gp108/gr/fecs_sig.bin -firmware: nvidia/gp108/gr/gpccs_bl.bin -firmware: nvidia/gp108/gr/gpccs_data.bin -firmware: nvidia/gp108/gr/gpccs_inst.bin -firmware: nvidia/gp108/gr/gpccs_sig.bin -firmware: nvidia/gp108/gr/sw_bundle_init.bin -firmware: nvidia/gp108/gr/sw_ctx.bin -firmware: nvidia/gp108/gr/sw_method_init.bin -firmware: nvidia/gp108/gr/sw_nonctx.bin -firmware: nvidia/gp108/nvdec/scrubber.bin -firmware: nvidia/gp108/sec2/desc.bin -firmware: nvidia/gp108/sec2/image.bin -firmware: nvidia/gp108/sec2/sig.bin -firmware: nvidia/gv100/acr/bl.bin -firmware: nvidia/gv100/acr/ucode_load.bin -firmware: nvidia/gv100/acr/ucode_unload.bin -firmware: nvidia/gv100/acr/unload_bl.bin -firmware: nvidia/gv100/gr/fecs_bl.bin -firmware: nvidia/gv100/gr/fecs_data.bin -firmware: nvidia/gv100/gr/fecs_inst.bin -firmware: nvidia/gv100/gr/fecs_sig.bin -firmware: nvidia/gv100/gr/gpccs_bl.bin -firmware: nvidia/gv100/gr/gpccs_data.bin -firmware: nvidia/gv100/gr/gpccs_inst.bin -firmware: nvidia/gv100/gr/gpccs_sig.bin -firmware: nvidia/gv100/gr/sw_bundle_init.bin -firmware: nvidia/gv100/gr/sw_ctx.bin -firmware: nvidia/gv100/gr/sw_method_init.bin -firmware: nvidia/gv100/gr/sw_nonctx.bin -firmware: nvidia/gv100/nvdec/scrubber.bin -firmware: nvidia/gv100/sec2/desc.bin -firmware: nvidia/gv100/sec2/image.bin -firmware: nvidia/gv100/sec2/sig.bin -firmware: nvidia/tu102/acr/bl.bin -firmware: nvidia/tu102/acr/ucode_ahesasc.bin -firmware: nvidia/tu102/acr/ucode_asb.bin -firmware: nvidia/tu102/acr/ucode_unload.bin -firmware: nvidia/tu102/acr/unload_bl.bin -firmware: nvidia/tu102/gr/fecs_bl.bin -firmware: nvidia/tu102/gr/fecs_data.bin -firmware: nvidia/tu102/gr/fecs_inst.bin -firmware: nvidia/tu102/gr/fecs_sig.bin -firmware: nvidia/tu102/gr/gpccs_bl.bin -firmware: nvidia/tu102/gr/gpccs_data.bin -firmware: nvidia/tu102/gr/gpccs_inst.bin -firmware: nvidia/tu102/gr/gpccs_sig.bin -firmware: nvidia/tu102/gr/sw_bundle_init.bin -firmware: nvidia/tu102/gr/sw_ctx.bin -firmware: nvidia/tu102/gr/sw_method_init.bin -firmware: nvidia/tu102/gr/sw_nonctx.bin -firmware: nvidia/tu102/nvdec/scrubber.bin -firmware: nvidia/tu102/sec2/desc.bin -firmware: nvidia/tu102/sec2/image.bin -firmware: nvidia/tu102/sec2/sig.bin -firmware: nvidia/tu104/acr/bl.bin -firmware: nvidia/tu104/acr/ucode_ahesasc.bin -firmware: nvidia/tu104/acr/ucode_asb.bin -firmware: nvidia/tu104/acr/ucode_unload.bin -firmware: nvidia/tu104/acr/unload_bl.bin -firmware: nvidia/tu104/gr/fecs_bl.bin -firmware: nvidia/tu104/gr/fecs_data.bin -firmware: nvidia/tu104/gr/fecs_inst.bin -firmware: nvidia/tu104/gr/fecs_sig.bin -firmware: nvidia/tu104/gr/gpccs_bl.bin -firmware: nvidia/tu104/gr/gpccs_data.bin -firmware: nvidia/tu104/gr/gpccs_inst.bin -firmware: nvidia/tu104/gr/gpccs_sig.bin -firmware: nvidia/tu104/gr/sw_bundle_init.bin -firmware: nvidia/tu104/gr/sw_ctx.bin -firmware: nvidia/tu104/gr/sw_method_init.bin -firmware: nvidia/tu104/gr/sw_nonctx.bin -firmware: nvidia/tu104/nvdec/scrubber.bin -firmware: nvidia/tu104/sec2/desc.bin -firmware: nvidia/tu104/sec2/image.bin -firmware: nvidia/tu104/sec2/sig.bin -firmware: nvidia/tu106/acr/bl.bin -firmware: nvidia/tu106/acr/ucode_ahesasc.bin -firmware: nvidia/tu106/acr/ucode_asb.bin -firmware: nvidia/tu106/acr/ucode_unload.bin -firmware: nvidia/tu106/acr/unload_bl.bin -firmware: nvidia/tu106/gr/fecs_bl.bin -firmware: nvidia/tu106/gr/fecs_data.bin -firmware: nvidia/tu106/gr/fecs_inst.bin -firmware: nvidia/tu106/gr/fecs_sig.bin -firmware: nvidia/tu106/gr/gpccs_bl.bin -firmware: nvidia/tu106/gr/gpccs_data.bin -firmware: nvidia/tu106/gr/gpccs_inst.bin -firmware: nvidia/tu106/gr/gpccs_sig.bin -firmware: nvidia/tu106/gr/sw_bundle_init.bin -firmware: nvidia/tu106/gr/sw_ctx.bin -firmware: nvidia/tu106/gr/sw_method_init.bin -firmware: nvidia/tu106/gr/sw_nonctx.bin -firmware: nvidia/tu106/nvdec/scrubber.bin -firmware: nvidia/tu106/sec2/desc.bin -firmware: nvidia/tu106/sec2/image.bin -firmware: nvidia/tu106/sec2/sig.bin -firmware: nvidia/tu116/acr/bl.bin -firmware: nvidia/tu116/acr/ucode_ahesasc.bin -firmware: nvidia/tu116/acr/ucode_asb.bin -firmware: nvidia/tu116/acr/ucode_unload.bin -firmware: nvidia/tu116/acr/unload_bl.bin -firmware: nvidia/tu116/gr/fecs_bl.bin -firmware: nvidia/tu116/gr/fecs_data.bin -firmware: nvidia/tu116/gr/fecs_inst.bin -firmware: nvidia/tu116/gr/fecs_sig.bin -firmware: nvidia/tu116/gr/gpccs_bl.bin -firmware: nvidia/tu116/gr/gpccs_data.bin -firmware: nvidia/tu116/gr/gpccs_inst.bin -firmware: nvidia/tu116/gr/gpccs_sig.bin -firmware: nvidia/tu116/gr/sw_bundle_init.bin -firmware: nvidia/tu116/gr/sw_ctx.bin -firmware: nvidia/tu116/gr/sw_method_init.bin -firmware: nvidia/tu116/gr/sw_nonctx.bin -firmware: nvidia/tu116/nvdec/scrubber.bin -firmware: nvidia/tu116/sec2/desc.bin -firmware: nvidia/tu116/sec2/image.bin -firmware: nvidia/tu116/sec2/sig.bin -firmware: nvidia/tu117/acr/bl.bin -firmware: nvidia/tu117/acr/ucode_ahesasc.bin -firmware: nvidia/tu117/acr/ucode_asb.bin -firmware: nvidia/tu117/acr/ucode_unload.bin -firmware: nvidia/tu117/acr/unload_bl.bin -firmware: nvidia/tu117/gr/fecs_bl.bin -firmware: nvidia/tu117/gr/fecs_data.bin -firmware: nvidia/tu117/gr/fecs_inst.bin -firmware: nvidia/tu117/gr/fecs_sig.bin -firmware: nvidia/tu117/gr/gpccs_bl.bin -firmware: nvidia/tu117/gr/gpccs_data.bin -firmware: nvidia/tu117/gr/gpccs_inst.bin -firmware: nvidia/tu117/gr/gpccs_sig.bin -firmware: nvidia/tu117/gr/sw_bundle_init.bin -firmware: nvidia/tu117/gr/sw_ctx.bin -firmware: nvidia/tu117/gr/sw_method_init.bin -firmware: nvidia/tu117/gr/sw_nonctx.bin -firmware: nvidia/tu117/nvdec/scrubber.bin -firmware: nvidia/tu117/sec2/desc.bin -firmware: nvidia/tu117/sec2/image.bin -firmware: nvidia/tu117/sec2/sig.bin -firmware: orinoco_ezusb_fw -firmware: pca200e_ecd.bin2 -firmware: pcxhr/dspb1222e.b56 -firmware: pcxhr/dspb1222hr.b56 -firmware: pcxhr/dspb882e.b56 -firmware: pcxhr/dspb882hr.b56 -firmware: pcxhr/dspb924.b56 -firmware: pcxhr/dspd1222.d56 -firmware: pcxhr/dspd222.d56 -firmware: pcxhr/dspd882.d56 -firmware: pcxhr/dspe882.e56 -firmware: pcxhr/dspe924.e56 -firmware: pcxhr/xlxc1222e.dat -firmware: pcxhr/xlxc1222hr.dat -firmware: pcxhr/xlxc222.dat -firmware: pcxhr/xlxc882e.dat -firmware: pcxhr/xlxc882hr.dat -firmware: pcxhr/xlxc924.dat -firmware: pcxhr/xlxint.dat -firmware: phanfw.bin -firmware: prism2_ru.fw -firmware: prism_ap_fw.bin -firmware: prism_sta_fw.bin -firmware: qed/qed_init_values_zipped-8.42.2.0.bin -firmware: ql2100_fw.bin -firmware: ql2200_fw.bin -firmware: ql2300_fw.bin -firmware: ql2322_fw.bin -firmware: ql2400_fw.bin -firmware: ql2500_fw.bin -firmware: qlogic/1040.bin -firmware: qlogic/12160.bin -firmware: qlogic/1280.bin -firmware: 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: renesas_usb_fw.mem -firmware: riptide.hex -firmware: rp2.fw -firmware: rpm_firmware.bin -firmware: rs9113_wlan_qspi.rps -firmware: rt2561.bin -firmware: rt2561s.bin -firmware: rt2661.bin -firmware: rt2860.bin -firmware: rt2870.bin -firmware: rt73.bin -firmware: rtl_bt/rtl8723a_fw.bin -firmware: rtl_bt/rtl8723b_config.bin -firmware: rtl_bt/rtl8723b_fw.bin -firmware: rtl_bt/rtl8723bs_config.bin -firmware: rtl_bt/rtl8723bs_fw.bin -firmware: rtl_bt/rtl8723ds_config.bin -firmware: rtl_bt/rtl8723ds_fw.bin -firmware: rtl_bt/rtl8761a_config.bin -firmware: rtl_bt/rtl8761a_fw.bin -firmware: rtl_bt/rtl8821a_config.bin -firmware: rtl_bt/rtl8821a_fw.bin -firmware: rtl_bt/rtl8822b_config.bin -firmware: rtl_bt/rtl8822b_fw.bin -firmware: rtl_bt/rtl8852au_config.bin -firmware: rtl_bt/rtl8852au_fw.bin -firmware: rtl_nic/rtl8105e-1.fw -firmware: rtl_nic/rtl8106e-1.fw -firmware: rtl_nic/rtl8106e-2.fw -firmware: rtl_nic/rtl8107e-1.fw -firmware: rtl_nic/rtl8107e-2.fw -firmware: rtl_nic/rtl8125a-3.fw -firmware: rtl_nic/rtl8125b-2.fw -firmware: rtl_nic/rtl8153a-2.fw -firmware: rtl_nic/rtl8153a-3.fw -firmware: rtl_nic/rtl8153a-4.fw -firmware: rtl_nic/rtl8153b-2.fw -firmware: rtl_nic/rtl8153c-1.fw -firmware: rtl_nic/rtl8156a-2.fw -firmware: rtl_nic/rtl8156b-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: rtlwifi/rtl8188efw.bin -firmware: rtlwifi/rtl8188eufw.bin -firmware: rtlwifi/rtl8192cfw.bin -firmware: rtlwifi/rtl8192cfwU.bin -firmware: rtlwifi/rtl8192cfwU_B.bin -firmware: rtlwifi/rtl8192cufw.bin -firmware: rtlwifi/rtl8192cufw_A.bin -firmware: rtlwifi/rtl8192cufw_B.bin -firmware: rtlwifi/rtl8192cufw_TMSC.bin -firmware: rtlwifi/rtl8192defw.bin -firmware: rtlwifi/rtl8192eefw.bin -firmware: rtlwifi/rtl8192eu_nic.bin -firmware: rtlwifi/rtl8192sefw.bin -firmware: rtlwifi/rtl8712u.bin -firmware: rtlwifi/rtl8723aufw_A.bin -firmware: rtlwifi/rtl8723aufw_B.bin -firmware: rtlwifi/rtl8723aufw_B_NoBT.bin -firmware: rtlwifi/rtl8723befw.bin -firmware: rtlwifi/rtl8723befw_36.bin -firmware: rtlwifi/rtl8723bu_bt.bin -firmware: rtlwifi/rtl8723bu_nic.bin -firmware: rtlwifi/rtl8723efw.bin -firmware: rtlwifi/rtl8821aefw.bin -firmware: rtlwifi/rtl8821aefw_29.bin -firmware: rtw88/rtw8723d_fw.bin -firmware: rtw88/rtw8821c_fw.bin -firmware: rtw88/rtw8822b_fw.bin -firmware: rtw88/rtw8822c_fw.bin -firmware: rtw88/rtw8822c_wow_fw.bin -firmware: rtw89/rtw8852a_fw.bin -firmware: s5k4ecgx.bin -firmware: sd8385.bin -firmware: sd8385_helper.bin -firmware: sd8686.bin -firmware: sd8686_helper.bin -firmware: sd8688.bin -firmware: sd8688_helper.bin -firmware: slicoss/gbdownload.sys -firmware: slicoss/gbrcvucode.sys -firmware: slicoss/oasisdownload.sys -firmware: slicoss/oasisrcvucode.sys -firmware: sms1xxx-hcw-55xxx-dvbt-02.fw -firmware: sms1xxx-hcw-55xxx-isdbt-02.fw -firmware: sms1xxx-nova-a-dvbt-01.fw -firmware: sms1xxx-nova-b-dvbt-01.fw -firmware: sms1xxx-stellar-dvbt-01.fw -firmware: solos-FPGA.bin -firmware: solos-Firmware.bin -firmware: solos-db-FPGA.bin -firmware: sun/cassini.bin -firmware: symbol_sp24t_prim_fw -firmware: symbol_sp24t_sec_fw -firmware: tdmb_denver.inp -firmware: tdmb_nova_12mhz.inp -firmware: tdmb_nova_12mhz_b0.inp -firmware: tehuti/bdx.bin -firmware: ti-connectivity/wl1251-fw.bin -firmware: ti-connectivity/wl1251-nvs.bin -firmware: ti-connectivity/wl127x-fw-5-mr.bin -firmware: ti-connectivity/wl127x-fw-5-plt.bin -firmware: ti-connectivity/wl127x-fw-5-sr.bin -firmware: ti-connectivity/wl128x-fw-5-mr.bin -firmware: ti-connectivity/wl128x-fw-5-plt.bin -firmware: ti-connectivity/wl128x-fw-5-sr.bin -firmware: ti-connectivity/wl18xx-fw-4.bin -firmware: ti_3410.fw -firmware: ti_5052.fw -firmware: tigon/tg3.bin -firmware: tigon/tg357766.bin -firmware: tigon/tg3_tso.bin -firmware: tigon/tg3_tso5.bin -firmware: ttusb-budget/dspbootcode.bin -firmware: ueagle-atm/930-fpga.bin -firmware: ueagle-atm/CMV4i.bin -firmware: ueagle-atm/CMV4i.bin.v2 -firmware: ueagle-atm/CMV4p.bin -firmware: ueagle-atm/CMV4p.bin.v2 -firmware: ueagle-atm/CMV9i.bin -firmware: ueagle-atm/CMV9i.bin.v2 -firmware: ueagle-atm/CMV9p.bin -firmware: ueagle-atm/CMV9p.bin.v2 -firmware: ueagle-atm/CMVei.bin -firmware: ueagle-atm/CMVei.bin.v2 -firmware: ueagle-atm/CMVep.bin -firmware: ueagle-atm/CMVep.bin.v2 -firmware: ueagle-atm/DSP4i.bin -firmware: ueagle-atm/DSP4p.bin -firmware: ueagle-atm/DSP9i.bin -firmware: ueagle-atm/DSP9p.bin -firmware: ueagle-atm/DSPei.bin -firmware: ueagle-atm/DSPep.bin -firmware: ueagle-atm/adi930.fw -firmware: ueagle-atm/eagle.fw -firmware: ueagle-atm/eagleI.fw -firmware: ueagle-atm/eagleII.fw -firmware: ueagle-atm/eagleIII.fw -firmware: ueagle-atm/eagleIV.fw -firmware: usb8388.bin -firmware: usbdux_firmware.bin -firmware: usbduxfast_firmware.bin -firmware: usbduxsigma_firmware.bin -firmware: v4l-cx231xx-avcore-01.fw -firmware: v4l-cx23418-apu.fw -firmware: v4l-cx23418-cpu.fw -firmware: v4l-cx23418-dig.fw -firmware: v4l-cx2341x-dec.fw -firmware: v4l-cx2341x-enc.fw -firmware: v4l-cx2341x-init.mpg -firmware: v4l-cx23885-avcore-01.fw -firmware: v4l-cx23885-enc.fw -firmware: v4l-cx25840.fw -firmware: v4l-pvrusb2-24xxx-01.fw -firmware: v4l-pvrusb2-29xxx-01.fw -firmware: v4l-pvrusb2-73xxx-01.fw -firmware: vicam/firmware.fw -firmware: vntwusb.fw -firmware: vx/bd56002.boot -firmware: vx/bd563s3.boot -firmware: vx/bd563v2.boot -firmware: vx/bx_1_vp4.b56 -firmware: vx/bx_1_vxp.b56 -firmware: vx/l_1_v22.d56 -firmware: vx/l_1_vp4.d56 -firmware: vx/l_1_vx2.d56 -firmware: vx/l_1_vxp.d56 -firmware: vx/x1_1_vp4.xlx -firmware: vx/x1_1_vx2.xlx -firmware: vx/x1_1_vxp.xlx -firmware: vx/x1_2_v22.xlx -firmware: vxge/X3fw-pxe.ncf -firmware: vxge/X3fw.ncf -firmware: wd719x-risc.bin -firmware: wd719x-wcs.bin -firmware: whiteheat.fw -firmware: whiteheat_loader.fw -firmware: wil6210.brd -firmware: wil6210.fw -firmware: wil6210_sparrow_plus.fw -firmware: wil6436.brd -firmware: wil6436.fw -firmware: wlan/prima/WCNSS_qcom_wlan_nv.bin -firmware: xc3028-v27.fw -firmware: yam/1200.bin -firmware: yam/9600.bin -firmware: yamaha/ds1_ctrl.fw -firmware: yamaha/ds1_dsp.fw -firmware: yamaha/ds1e_ctrl.fw -firmware: zd1201-ap.fw -firmware: zd1201.fw -firmware: zd1211/zd1211_ub -firmware: zd1211/zd1211_uphr -firmware: zd1211/zd1211_ur -firmware: zd1211/zd1211b_ub -firmware: zd1211/zd1211b_uphr -firmware: zd1211/zd1211b_ur reverted: --- linux-xilinx-zynqmp-5.15.0/debian.zynqmp/abi/fwinfo.builtin +++ linux-xilinx-zynqmp-5.15.0.orig/debian.zynqmp/abi/fwinfo.builtin @@ -1,6 +0,0 @@ -firmware: dvb-fe-xc4000-1.4.1.fw -firmware: dvb-fe-xc4000-1.4.fw -firmware: dvb-fe-xc5000-1.6.114.fw -firmware: dvb-fe-xc5000c-4.1.30.7.fw -firmware: xc3028-v27.fw -firmware: xc3028L-v36.fw reverted: --- linux-xilinx-zynqmp-5.15.0/debian.zynqmp/abi/version +++ linux-xilinx-zynqmp-5.15.0.orig/debian.zynqmp/abi/version @@ -1 +0,0 @@ -5.15.0-1026.30 diff -u linux-xilinx-zynqmp-5.15.0/debian.zynqmp/changelog linux-xilinx-zynqmp-5.15.0/debian.zynqmp/changelog --- linux-xilinx-zynqmp-5.15.0/debian.zynqmp/changelog +++ linux-xilinx-zynqmp-5.15.0/debian.zynqmp/changelog @@ -1,3 +1,2543 @@ +linux-xilinx-zynqmp (5.15.0-1028.32) jammy; urgency=medium + + * jammy/linux-xilinx-zynqmp: 5.15.0-1028.32 -proposed tracker (LP: #2059494) + + * Packaging resync (LP: #1786013) + - [Packaging] drop getabis data + - [Packaging] drop ABI data + - [Packaging] debian.zynqmp/dkms-versions -- update from kernel-versions + (main/2024.04.01) + + * Jammy update: v5.15.148 upstream stable release (LP: #2055145) + - [Config] update annotations for CONFIG_MMC_SDHCI_AM654 + + * Jammy update: v5.15.149 upstream stable release (LP: #2059014) + - [Config] updateconfigs for MFD_TI_AM335X_TSCADC + + * Backport AXI 1-wire host driver (LP: #2058707) + - dt-bindings: w1: Add AMD AXI w1 host and MAINTAINERS entry + - w1: Add AXI 1-wire host driver for AMD programmable logic IP core + - w1: amd_axi_w1: Explicitly include correct DT includes + - [Config] Enable CONFIG_W1_MASTER_AMD_AXI + + * Unsupported platform 'ZynqMP KV260 revB (LP: #2058321) + - [Packaging] Add breaks on flash-kernel older than 3.104ubuntu20 + + * Update on-chip oscillator clock nodes for Kria (LP: #2055241) + - arm64: zynqmp: Sync clock labels with kr260 revB + - arm64: zynqmp: Describe 25MHz fixed clock for PL GEMs + - arm64: zynqmp: Fix kr260 clock wiring + + [ Ubuntu: 5.15.0-104.114 ] + + * jammy/linux: 5.15.0-104.114 -proposed tracker (LP: #2059497) + * Drop fips-checks script from trees (LP: #2055083) + - [Packaging] Remove fips-checks script + * alsa/realtek: adjust max output valume for headphone on 2 LG machines + (LP: #2058573) + - ALSA: hda/realtek: fix the hp playback volume issue for LG machines + * A general-proteciton exception during guest migration to unsupported PKRU + machine (LP: #2032164) + - x86/fpu: Allow caller to constrain xfeatures when copying to uabi buffer + - KVM: x86: Constrain guest-supported xfeatures only at KVM_GET_XSAVE{2} + * [ICX] [SPR] [ipc/msg] performance: Mitigate the lock contention with percpu + counter (LP: #2058485) + - ipc: check checkpoint_restore_ns_capable() to modify C/R proc files + - ipc/ipc_sysctl.c: remove fallback for !CONFIG_PROC_SYSCTL + - ipc: Store mqueue sysctls in the ipc namespace + - ipc: Store ipc sysctls in the ipc namespace + - ipc: Use the same namespace to modify and validate + - ipc: Remove extra1 field abuse to pass ipc namespace + - ipc: Check permissions for checkpoint_restart sysctls at open time + - percpu: add percpu_counter_add_local and percpu_counter_sub_local + - ipc/msg: mitigate the lock contention with percpu counter + * Remove getabis scripts (LP: #2059143) + - [Packaging] Remove getabis + * Jammy update: v5.15.149 upstream stable release (LP: #2059014) + - ksmbd: free ppace array on error in parse_dacl + - ksmbd: don't allow O_TRUNC open on read-only share + - ksmbd: validate mech token in session setup + - ksmbd: fix UAF issue in ksmbd_tcp_new_connection() + - ksmbd: only v2 leases handle the directory + - iio: adc: ad7091r: Set alert bit in config register + - iio: adc: ad7091r: Allow users to configure device events + - iio: adc: ad7091r: Enable internal vref if external vref is not supplied + - dmaengine: fix NULL pointer in channel unregistration function + - scsi: ufs: core: Simplify power management during async scan + - scsi: ufs: core: Remove the ufshcd_hba_exit() call from ufshcd_async_scan() + - iio:adc:ad7091r: Move exports into IIO_AD7091R namespace. + - ext4: allow for the last group to be marked as trimmed + - btrfs: sysfs: validate scrub_speed_max value + - crypto: api - Disallow identical driver names + - PM: hibernate: Enforce ordering during image compression/decompression + - hwrng: core - Fix page fault dead lock on mmap-ed hwrng + - crypto: s390/aes - Fix buffer overread in CTR mode + - media: imx355: Enable runtime PM before registering async sub-device + - rpmsg: virtio: Free driver_override when rpmsg_remove() + - media: ov9734: Enable runtime PM before registering async sub-device + - mips: Fix max_mapnr being uninitialized on early stages + - bus: mhi: host: Drop chan lock before queuing buffers + - bus: mhi: host: Add spinlock to protect WP access when queueing TREs + - parisc/firmware: Fix F-extend for PDC addresses + - async: Split async_schedule_node_domain() + - async: Introduce async_schedule_dev_nocall() + - arm64: dts: qcom: sc7180: fix USB wakeup interrupt types + - arm64: dts: qcom: sdm845: fix USB wakeup interrupt types + - arm64: dts: qcom: sm8150: fix USB wakeup interrupt types + - arm64: dts: qcom: sdm845: fix USB DP/DM HS PHY interrupts + - lsm: new security_file_ioctl_compat() hook + - scripts/get_abi: fix source path leak + - mmc: core: Use mrq.sbc in close-ended ffu + - mmc: mmc_spi: remove custom DMA mapped buffers + - rtc: Adjust failure return code for cmos_set_alarm() + - nouveau/vmm: don't set addr on the fail path to avoid warning + - ubifs: ubifs_symlink: Fix memleak of inode->i_link in error path + - rename(): fix the locking of subdirectories + - ksmbd: set v2 lease version on lease upgrade + - ksmbd: fix potential circular locking issue in smb2_set_ea() + - ksmbd: don't increment epoch if current state and request state are same + - ksmbd: send lease break notification on FILE_RENAME_INFORMATION + - ksmbd: Add missing set_freezable() for freezable kthread + - net/smc: fix illegal rmb_desc access in SMC-D connection dump + - tcp: make sure init the accept_queue's spinlocks once + - bnxt_en: Wait for FLR to complete during probe + - vlan: skip nested type that is not IFLA_VLAN_QOS_MAPPING + - llc: make llc_ui_sendmsg() more robust against bonding changes + - llc: Drop support for ETH_P_TR_802_2. + - net/rds: Fix UBSAN: array-index-out-of-bounds in rds_cmsg_recv + - tracing: Ensure visibility when inserting an element into tracing_map + - afs: Hide silly-rename files from userspace + - tcp: Add memory barrier to tcp_push() + - netlink: fix potential sleeping issue in mqueue_flush_file + - ipv6: init the accept_queue's spinlocks in inet6_create + - net/mlx5: DR, Use the right GVMI number for drop action + - net/mlx5: DR, Align mlx5dv_dr API vport action with FW behavior + - net/mlx5: DR, Can't go to uplink vport on RX rule + - net/mlx5e: fix a double-free in arfs_create_groups + - net/mlx5e: fix a potential double-free in fs_any_create_groups + - overflow: Allow mixed type arguments + - netfilter: nft_limit: reject configurations that cause integer overflow + - netfilter: nf_tables: restrict anonymous set and map names to 16 bytes + - netfilter: nf_tables: validate NFPROTO_* family + - net: stmmac: Wait a bit for the reset to take effect + - net: mvpp2: clear BM pool before initialization + - selftests: netdevsim: fix the udp_tunnel_nic test + - fjes: fix memleaks in fjes_hw_setup + - net: fec: fix the unhandled context fault from smmu + - btrfs: fix infinite directory reads + - btrfs: set last dir index to the current last index when opening dir + - btrfs: refresh dir last index during a rewinddir(3) call + - btrfs: fix race between reading a directory and adding entries to it + - btrfs: avoid copying BTRFS_ROOT_SUBVOL_DEAD flag to snapshot of subvolume + being deleted + - btrfs: ref-verify: free ref cache before clearing mount opt + - btrfs: tree-checker: fix inline ref size in error messages + - btrfs: don't warn if discard range is not aligned to sector + - btrfs: defrag: reject unknown flags of btrfs_ioctl_defrag_range_args + - btrfs: don't abort filesystem when attempting to snapshot deleted subvolume + - rbd: don't move requests to the running list on errors + - exec: Fix error handling in begin_new_exec() + - wifi: iwlwifi: fix a memory corruption + - hv_netvsc: Calculate correct ring size when PAGE_SIZE is not 4 Kbytes + - netfilter: nft_chain_filter: handle NETDEV_UNREGISTER for inet/ingress + basechain + - firmware: arm_scmi: Check mailbox/SMT channel for consistency + - xfs: read only mounts with fsopen mount API are busted + - gpiolib: acpi: Ignore touchpad wakeup on GPD G1619-04 + - drm: Don't unref the same fb many times by mistake due to deadlock handling + - drm/bridge: nxp-ptn3460: fix i2c_master_send() error checking + - drm/tidss: Fix atomic_flush check + - drm/bridge: nxp-ptn3460: simplify some error checking + - PM: core: Remove unnecessary (void *) conversions + - PM: sleep: Fix possible deadlocks in core system-wide PM code + - bus: mhi: host: Rename "struct mhi_tre" to "struct mhi_ring_element" + - bus: mhi: host: Add alignment check for event ring read pointer + - fs/pipe: move check to pipe_has_watch_queue() + - pipe: wakeup wr_wait after setting max_usage + - ARM: dts: qcom: sdx55: fix USB wakeup interrupt types + - ARM: dts: samsung: exynos4210-i9100: Unconditionally enable LDO12 + - ARM: dts: qcom: sdx55: fix pdc '#interrupt-cells' + - ARM: dts: qcom: sdx55: fix USB DP/DM HS PHY interrupts + - ARM: dts: qcom: sdx55: fix USB SS wakeup + - media: mtk-jpeg: Fix use after free bug due to error path handling in + mtk_jpeg_dec_device_run + - mm: use __pfn_to_section() instead of open coding it + - mm/sparsemem: fix race in accessing memory_section->usage + - PM / devfreq: Fix buffer overflow in trans_stat_show + - btrfs: add definition for EXTENT_TREE_V2 + - ksmbd: fix global oob in ksmbd_nl_policy + - cpufreq: intel_pstate: Drop redundant intel_pstate_get_hwp_cap() call + - cpufreq: intel_pstate: Refine computation of P-state for given frequency + - drm: panel-simple: add missing bus flags for Tianma tm070jvhg[30/33] + - drm/exynos: fix accidental on-stack copy of exynos_drm_plane + - drm/exynos: gsc: minor fix for loop iteration in gsc_runtime_resume + - gpio: eic-sprd: Clear interrupt after set the interrupt type + - spi: bcm-qspi: fix SFDP BFPT read by usig mspi read + - mips: Call lose_fpu(0) before initializing fcr31 in mips_set_personality_nan + - tick/sched: Preserve number of idle sleeps across CPU hotplug events + - x86/entry/ia32: Ensure s32 is sign extended to s64 + - powerpc/mm: Fix null-pointer dereference in pgtable_cache_add + - arm64: irq: set the correct node for VMAP stack + - drivers/perf: pmuv3: don't expose SW_INCR event in sysfs + - powerpc: Fix build error due to is_valid_bugaddr() + - powerpc/mm: Fix build failures due to arch_reserved_kernel_pages() + - powerpc/64s: Fix CONFIG_NUMA=n build due to create_section_mapping() + - x86/boot: Ignore NMIs during very early boot + - powerpc: pmd_move_must_withdraw() is only needed for + CONFIG_TRANSPARENT_HUGEPAGE + - powerpc/lib: Validate size for vector operations + - x86/mce: Mark fatal MCE's page as poison to avoid panic in the kdump kernel + - perf/core: Fix narrow startup race when creating the perf nr_addr_filters + sysfs file + - debugobjects: Stop accessing objects after releasing hash bucket lock + - regulator: core: Only increment use_count when enable_count changes + - audit: Send netlink ACK before setting connection in auditd_set + - ACPI: video: Add quirk for the Colorful X15 AT 23 Laptop + - PNP: ACPI: fix fortify warning + - ACPI: extlog: fix NULL pointer dereference check + - PM / devfreq: Synchronize devfreq_monitor_[start/stop] + - ACPI: APEI: set memory failure flags as MF_ACTION_REQUIRED on synchronous + events + - FS:JFS:UBSAN:array-index-out-of-bounds in dbAdjTree + - jfs: fix slab-out-of-bounds Read in dtSearch + - jfs: fix array-index-out-of-bounds in dbAdjTree + - pstore/ram: Fix crash when setting number of cpus to an odd number + - crypto: octeontx2 - Fix cptvf driver cleanup + - crypto: stm32/crc32 - fix parsing list of devices + - afs: fix the usage of read_seqbegin_or_lock() in afs_lookup_volume_rcu() + - afs: fix the usage of read_seqbegin_or_lock() in afs_find_server*() + - rxrpc_find_service_conn_rcu: fix the usage of read_seqbegin_or_lock() + - jfs: fix array-index-out-of-bounds in diNewExt + - arch: consolidate arch_irq_work_raise prototypes + - s390/ptrace: handle setting of fpc register correctly + - KVM: s390: fix setting of fpc register + - SUNRPC: Fix a suspicious RCU usage warning + - ecryptfs: Reject casefold directory inodes + - ext4: fix inconsistent between segment fstrim and full fstrim + - ext4: unify the type of flexbg_size to unsigned int + - ext4: remove unnecessary check from alloc_flex_gd() + - ext4: avoid online resizing failures due to oversized flex bg + - wifi: rt2x00: restart beacon queue when hardware reset + - selftests/bpf: satisfy compiler by having explicit return in btf test + - selftests/bpf: Fix pyperf180 compilation failure with clang18 + - selftests/bpf: Fix issues in setup_classid_environment() + - scsi: lpfc: Fix possible file string name overflow when updating firmware + - PCI: Add no PM reset quirk for NVIDIA Spectrum devices + - bonding: return -ENOMEM instead of BUG in alb_upper_dev_walk + - scsi: arcmsr: Support new PCI device IDs 1883 and 1886 + - ARM: dts: imx7d: Fix coresight funnel ports + - ARM: dts: imx7s: Fix lcdif compatible + - ARM: dts: imx7s: Fix nand-controller #size-cells + - wifi: ath9k: Fix potential array-index-out-of-bounds read in + ath9k_htc_txstatus() + - bpf: Add map and need_defer parameters to .map_fd_put_ptr() + - scsi: libfc: Don't schedule abort twice + - scsi: libfc: Fix up timeout error in fc_fcp_rec_error() + - bpf: Set uattr->batch.count as zero before batched update or deletion + - ARM: dts: rockchip: fix rk3036 hdmi ports node + - ARM: dts: imx25/27-eukrea: Fix RTC node name + - ARM: dts: imx: Use flash@0,0 pattern + - ARM: dts: imx27: Fix sram node + - ARM: dts: imx1: Fix sram node + - ionic: pass opcode to devcmd_wait + - block/rnbd-srv: Check for unlikely string overflow + - ARM: dts: imx25: Fix the iim compatible string + - ARM: dts: imx25/27: Pass timing0 + - ARM: dts: imx27-apf27dev: Fix LED name + - ARM: dts: imx23-sansa: Use preferred i2c-gpios properties + - ARM: dts: imx23/28: Fix the DMA controller node name + - net: dsa: mv88e6xxx: Fix mv88e6352_serdes_get_stats error path + - block: prevent an integer overflow in bvec_try_merge_hw_page + - md: Whenassemble the array, consult the superblock of the freshest device + - arm64: dts: qcom: msm8996: Fix 'in-ports' is a required property + - arm64: dts: qcom: msm8998: Fix 'out-ports' is a required property + - wifi: rtl8xxxu: Add additional USB IDs for RTL8192EU devices + - libbpf: Fix NULL pointer dereference in bpf_object__collect_prog_relos + - ALSA: usb-audio: Add delay quirk for MOTU M Series 2nd revision + - wifi: rtlwifi: rtl8723{be,ae}: using calculate_bit_shift() + - wifi: cfg80211: free beacon_ies when overridden from hidden BSS + - Bluetooth: qca: Set both WIDEBAND_SPEECH and LE_STATES quirks for QCA2066 + - Bluetooth: L2CAP: Fix possible multiple reject send + - bridge: cfm: fix enum typo in br_cc_ccm_tx_parse + - i40e: Fix VF disable behavior to block all traffic + - octeontx2-af: Fix max NPC MCAM entry check while validating ref_entry + - f2fs: fix to check return value of f2fs_reserve_new_block() + - ALSA: hda: Refer to correct stream index at loops + - ASoC: doc: Fix undefined SND_SOC_DAPM_NOPM argument + - fast_dput(): handle underflows gracefully + - RDMA/IPoIB: Fix error code return in ipoib_mcast_join + - drm/amd/display: Fix tiled display misalignment + - f2fs: fix write pointers on zoned device after roll forward + - drm/drm_file: fix use of uninitialized variable + - drm/framebuffer: Fix use of uninitialized variable + - drm/mipi-dsi: Fix detach call without attach + - media: stk1160: Fixed high volume of stk1160_dbg messages + - media: rockchip: rga: fix swizzling for RGB formats + - PCI: add INTEL_HDA_ARL to pci_ids.h + - ALSA: hda: Intel: add HDA_ARL PCI ID support + - ALSA: hda: intel-dspcfg: add filters for ARL-S and ARL + - media: rkisp1: Drop IRQF_SHARED + - f2fs: fix to tag gcing flag on page during block migration + - drm/exynos: Call drm_atomic_helper_shutdown() at shutdown/unbind time + - IB/ipoib: Fix mcast list locking + - media: ddbridge: fix an error code problem in ddb_probe + - media: i2c: imx335: Fix hblank min/max values + - drm/msm/dpu: Ratelimit framedone timeout msgs + - drm/amdgpu: fix ftrace event amdgpu_bo_move always move on same heap + - clk: hi3620: Fix memory leak in hi3620_mmc_clk_init() + - clk: mmp: pxa168: Fix memory leak in pxa168_clk_init() + - watchdog: it87_wdt: Keep WDTCTRL bit 3 unmodified for IT8784/IT8786 + - clk: imx: scu: Fix memory leak in __imx_clk_gpr_scu() + - clk: imx: clk-imx8qxp: fix LVDS bypass, pixel and phy clocks + - drm/amdgpu: Let KFD sync with VM fences + - drm/amdgpu: Drop 'fence' check in 'to_amdgpu_amdkfd_fence()' + - ALSA: hda/conexant: Fix headset auto detect fail in cx8070 and SN6140 + - leds: trigger: panic: Don't register panic notifier if creating the trigger + failed + - um: Fix naming clash between UML and scheduler + - um: Don't use vfprintf() for os_info() + - um: net: Fix return type of uml_net_start_xmit() + - um: time-travel: fix time corruption + - i3c: master: cdns: Update maximum prescaler value for i2c clock + - xen/gntdev: Fix the abuse of underlying struct page in DMA-buf import + - mfd: ti_am335x_tscadc: Fix TI SoC dependencies + - [Config] updateconfigs for MFD_TI_AM335X_TSCADC + - mailbox: arm_mhuv2: Fix a bug for mhuv2_sender_interrupt + - PCI: Only override AMD USB controller if required + - PCI: switchtec: Fix stdev_release() crash after surprise hot remove + - perf cs-etm: Bump minimum OpenCSD version to ensure a bugfix is present + - usb: hub: Replace hardcoded quirk value with BIT() macro + - selftests/sgx: Fix linker script asserts + - tty: allow TIOCSLCKTRMIOS with CAP_CHECKPOINT_RESTORE + - fs/kernfs/dir: obey S_ISGID + - PCI: Fix 64GT/s effective data rate calculation + - PCI/AER: Decode Requester ID when no error info found + - libsubcmd: Fix memory leak in uniq() + - drm/amdkfd: Fix lock dependency warning + - virtio_net: Fix "‘%d’ directive writing between 1 and 11 bytes into a region + of size 10" warnings + - blk-mq: fix IO hang from sbitmap wakeup race + - ceph: fix deadlock or deadcode of misusing dget() + - drm/amd/powerplay: Fix kzalloc parameter 'ATOM_Tonga_PPM_Table' in + 'get_platform_power_management_table()' + - drm/amdgpu: Release 'adev->pm.fw' before return in + 'amdgpu_device_need_post()' + - drm/amdkfd: Fix 'node' NULL check in 'svm_range_get_range_boundaries()' + - perf: Fix the nr_addr_filters fix + - wifi: cfg80211: fix RCU dereference in __cfg80211_bss_update + - drm: using mul_u32_u32() requires linux/math64.h + - scsi: isci: Fix an error code problem in isci_io_request_build() + - scsi: core: Move scsi_host_busy() out of host lock for waking up EH handler + - selftests: net: give more time for GRO aggregation + - ip6_tunnel: use dev_sw_netstats_rx_add() + - ip6_tunnel: make sure to pull inner header in __ip6_tnl_rcv() + - tcp: add sanity checks to rx zerocopy + - ixgbe: Remove non-inclusive language + - ixgbe: Refactor returning internal error codes + - ixgbe: Refactor overtemp event handling + - ixgbe: Fix an error handling path in ixgbe_read_iosf_sb_reg_x550() + - ipv6: Ensure natural alignment of const ipv6 loopback and router addresses + - llc: call sock_orphan() at release time + - bridge: mcast: fix disabled snooping after long uptime + - netfilter: nf_tables: restrict tunnel object to NFPROTO_NETDEV + - netfilter: nf_log: replace BUG_ON by WARN_ON_ONCE when putting logger + - netfilter: nft_ct: sanitize layer 3 and 4 protocol number in custom + expectations + - net: ipv4: fix a memleak in ip_setup_cork + - af_unix: fix lockdep positive in sk_diag_dump_icons() + - SAUCE: Sync apparmor copy of af_unix.c + - selftests: net: fix available tunnels detection + - net: sysfs: Fix /sys/class/net/ path + - arm64: irq: set the correct node for shadow call stack + - gve: Fix use-after-free vulnerability + - HID: apple: Add support for the 2021 Magic Keyboard + - HID: apple: Add 2021 magic keyboard FN key mapping + - bonding: remove print in bond_verify_device_path + - ASoC: codecs: lpass-wsa-macro: fix compander volume hack + - dmaengine: fsl-dpaa2-qdma: Fix the size of dma pools + - dmaengine: ti: k3-udma: Report short packet errors + - dmaengine: fsl-qdma: Fix a memory leak related to the status queue DMA + - dmaengine: fsl-qdma: Fix a memory leak related to the queue command DMA + - phy: renesas: rcar-gen3-usb2: Fix returning wrong error code + - dmaengine: fix is_slave_direction() return false when DMA_DEV_TO_DEV + - phy: ti: phy-omap-usb2: Fix NULL pointer dereference for SRP + - drm/msm/dp: return correct Colorimetry for DP_TEST_DYNAMIC_RANGE_CEA case + - net: stmmac: xgmac: fix handling of DPP safety error for DMA channels + - selftests: net: cut more slack for gro fwd tests. + - selftests: net: avoid just another constant wait + - tunnels: fix out of bounds access when building IPv6 PMTU error + - atm: idt77252: fix a memleak in open_card_ubr0 + - octeontx2-pf: Fix a memleak otx2_sq_init + - hwmon: (aspeed-pwm-tacho) mutex for tach reading + - hwmon: (coretemp) Fix out-of-bounds memory access + - hwmon: (coretemp) Fix bogus core_id to attr name mapping + - inet: read sk->sk_family once in inet_recv_error() + - rxrpc: Fix response to PING RESPONSE ACKs to a dead call + - tipc: Check the bearer type before calling tipc_udp_nl_bearer_add() + - af_unix: Call kfree_skb() for dead unix_(sk)->oob_skb in GC. + - ppp_async: limit MRU to 64K + - netfilter: nft_compat: reject unused compat flag + - netfilter: nft_compat: restrict match/target protocol to u16 + - drm/amd/display: Fix multiple memory leaks reported by coverity + - drm/amd/display: Implement bounds check for stream encoder creation in + DCN301 + - netfilter: nft_ct: reject direction for ct id + - netfilter: nft_set_pipapo: store index in scratch maps + - netfilter: nft_set_pipapo: add helper to release pcpu scratch area + - netfilter: nft_set_pipapo: remove scratch_aligned pointer + - fs/ntfs3: Fix an NULL dereference bug + - scsi: core: Move scsi_host_busy() out of host lock if it is for per-command + - blk-iocost: Fix an UBSAN shift-out-of-bounds warning + - drivers: lkdtm: fix clang -Wformat warning + - ALSA: usb-audio: Add a quirk for Yamaha YIT-W12TX transmitter + - USB: serial: qcserial: add new usb-id for Dell Wireless DW5826e + - USB: serial: option: add Fibocom FM101-GL variant + - USB: serial: cp210x: add ID for IMST iM871A-USB + - usb: dwc3: host: Set XHCI_SG_TRB_CACHE_SIZE_QUIRK + - usb: host: xhci-plat: Add support for XHCI_SG_TRB_CACHE_SIZE_QUIRK + - hrtimer: Report offline hrtimer enqueue + - Input: i8042 - fix strange behavior of touchpad on Clevo NS70PU + - Input: atkbd - skip ATKBD_CMD_SETLEDS when skipping ATKBD_CMD_GETID + - clocksource: Skip watchdog check for large watchdog intervals + - net: stmmac: xgmac: use #define for string constants + - net: stmmac: xgmac: fix a typo of register name in DPP safety handling + - btrfs: forbid creating subvol qgroups + - btrfs: forbid deleting live subvol qgroup + - btrfs: send: return EOPNOTSUPP on unknown flags + - of: unittest: Fix compile in the non-dynamic case + - wifi: iwlwifi: Fix some error codes + - net: openvswitch: limit the number of recursions from action sets + - spi: ppc4xx: Drop write-only variable + - ASoC: rt5645: Fix deadlock in rt5645_jack_detect_work() + - net: sysfs: Fix /sys/class/net/ path for statistics + - MIPS: Add 'memory' clobber to csum_ipv6_magic() inline assembler + - i40e: Fix waiting for queues of all VSIs to be disabled + - scs: add CONFIG_MMU dependency for vfree_atomic() + - tracing/trigger: Fix to return error if failed to alloc snapshot + - mm/writeback: fix possible divide-by-zero in wb_dirty_limits(), again + - scsi: storvsc: Fix ring buffer size calculation + - ALSA: hda/realtek: Fix the external mic not being recognised for Acer Swift + 1 SF114-32 + - ALSA: hda/realtek: Enable Mute LED on HP Laptop 14-fq0xxx + - HID: i2c-hid-of: fix NULL-deref on failed power up + - HID: wacom: generic: Avoid reporting a serial of '0' to userspace + - HID: wacom: Do not register input devices until after hid_hw_start + - iio: hid-sensor-als: Return 0 for HID_USAGE_SENSOR_TIME_TIMESTAMP + - usb: ucsi_acpi: Fix command completion handling + - USB: hub: check for alternate port before enabling A_ALT_HNP_SUPPORT + - usb: f_mass_storage: forbid async queue when shutdown happen + - usb: dwc3: gadget: Fix NULL pointer dereference in dwc3_gadget_suspend + - media: ir_toy: fix a memleak in irtoy_tx + - powerpc/kasan: Fix addr error caused by page alignment + - i2c: i801: Remove i801_set_block_buffer_mode + - i2c: i801: Fix block process call transactions + - modpost: trim leading spaces when processing source files list + - mptcp: fix data re-injection from stale subflow + - scsi: Revert "scsi: fcoe: Fix potential deadlock on &fip->ctlr_lock" + - Revert "drm/amd: flush any delayed gfxoff on suspend entry" + - firewire: core: correct documentation of fw_csr_string() kernel API + - kbuild: Fix changing ELF file type for output of gen_btf for big endian + - nfc: nci: free rx_data_reassembly skb on NCI device cleanup + - net: hsr: remove WARN_ONCE() in send_hsr_supervision_frame() + - xen-netback: properly sync TX responses + - ALSA: hda/realtek: Enable headset mic on Vaio VJFE-ADL + - ASoC: codecs: wcd938x: handle deferred probe + - binder: signal epoll threads of self-work + - misc: fastrpc: Mark all sessions as invalid in cb_remove + - ext4: fix double-free of blocks due to wrong extents moved_len + - tracing: Fix wasted memory in saved_cmdlines logic + - staging: iio: ad5933: fix type mismatch regression + - iio: magnetometer: rm3100: add boundary check for the value read from + RM3100_REG_TMRC + - iio: core: fix memleak in iio_device_register_sysfs + - iio: accel: bma400: Fix a compilation problem + - media: rc: bpf attach/detach requires write permission + - drm/prime: Support page array >= 4GB + - hv_netvsc: Fix race condition between netvsc_probe and netvsc_remove + - ring-buffer: Clean ring_buffer_poll_wait() error return + - serial: max310x: set default value when reading clock ready bit + - serial: max310x: improve crystal stable clock detection + - serial: max310x: fail probe if clock crystal is unstable + - powerpc/64: Set task pt_regs->link to the LR value on scv entry + - x86/Kconfig: Transmeta Crusoe is CPU family 5, not 6 + - x86/mm/ident_map: Use gbpages only where full GB page should be mapped. + - mmc: slot-gpio: Allow non-sleeping GPIO ro + - ALSA: hda/conexant: Add quirk for SWS JS201D + - nilfs2: fix data corruption in dsync block recovery for small block sizes + - nilfs2: fix hang in nilfs_lookup_dirty_data_buffers() + - crypto: ccp - Fix null pointer dereference in __sev_platform_shutdown_locked + - nfp: use correct macro for LengthSelect in BAR config + - nfp: flower: prevent re-adding mac index for bonded port + - wifi: mac80211: reload info pointer in ieee80211_tx_dequeue() + - irqchip/irq-brcmstb-l2: Add write memory barrier before exit + - irqchip/gic-v3-its: Fix GICv4.1 VPE affinity update + - net: ethernet: ti: cpsw: enable mac_managed_pm to fix mdio + - s390/qeth: Fix potential loss of L3-IP@ in case of network issues + - net: ethernet: ti: cpsw_new: enable mac_managed_pm to fix mdio + - ceph: prevent use-after-free in encode_cap_msg() + - mm: hugetlb pages should not be reserved by shmat() if SHM_NORESERVE + - of: property: fix typo in io-channels + - can: j1939: prevent deadlock by changing j1939_socks_lock to rwlock + - can: j1939: Fix UAF in j1939_sk_match_filter during + setsockopt(SO_J1939_FILTER) + - pmdomain: core: Move the unused cleanup to a _sync initcall + - tracing: Inform kmemleak of saved_cmdlines allocation + - af_unix: Fix task hung while purging oob_skb in GC. + - dma-buf: add dma_fence_timestamp helper + - bus: moxtet: Add spi device table + - crypto: lib/mpi - Fix unexpected pointer access in mpi_ec_init + - usb: dwc3: gadget: Wait for ep0 xfers to complete during dequeue + - usb: dwc3: ep0: Don't prepare beyond Setup stage + - usb: dwc3: gadget: Only End Transfer for ep0 data phase + - usb: dwc3: gadget: Delay issuing End Transfer + - usb: dwc3: Fix ep0 handling when getting reset while doing control transfer + - usb: dwc3: gadget: Force sending delayed status during soft disconnect + - usb: dwc3: gadget: Submit endxfer command if delayed during disconnect + - usb: dwc3: gadget: Stall and restart EP0 if host is unresponsive + - usb: dwc3: gadget: Refactor EP0 forced stall/restart into a separate API + - usb: dwc3: gadget: Handle EP0 request dequeuing properly + - usb: dwc3: gadget: Queue PM runtime idle on disconnect event + - serial: 8250_exar: Fill in rs485_supported + - serial: 8250_exar: Set missing rs485_supported flag + - fbdev/defio: Early-out if page is already enlisted + - fbdev: Don't sort deferred-I/O pages by default + - fbdev: defio: fix the pagelist corruption + - fbdev: Track deferred-I/O pages in pageref struct + - fbdev: Rename pagelist to pagereflist for deferred I/O + - fbdev: Fix invalid page access after closing deferred I/O devices + - fbdev: Fix incorrect page mapping clearance at fb_deferred_io_release() + - fbdev: flush deferred IO before closing + - scripts/decode_stacktrace.sh: support old bash version + - scripts: decode_stacktrace: demangle Rust symbols + - scripts/decode_stacktrace.sh: optionally use LLVM utilities + - netfilter: ipset: fix performance regression in swap operation + - hrtimer: Ignore slack time for RT tasks in schedule_hrtimeout_range() + - net: prevent mss overflow in skb_segment() + - netfilter: ipset: Missing gc cancellations fixed + - sched/membarrier: reduce the ability to hammer on sys_membarrier + - nilfs2: fix potential bug in end_buffer_async_write + - nilfs2: replace WARN_ONs for invalid DAT metadata block requests + - arm64: Subscribe Microsoft Azure Cobalt 100 to ARM Neoverse N2 errata + - PM: runtime: Have devm_pm_runtime_enable() handle + pm_runtime_dont_use_autosuspend() + - drm/msm/dsi: Enable runtime PM + - net: bcmgenet: Fix EEE implementation + - fs/ntfs3: Add null pointer checks + - smb3: Replace smb2pdu 1-element arrays with flex-arrays + - staging: fbtft: core: set smem_len before fb_deferred_io_init call + - usb: dwc3: gadget: Don't delay End Transfer on delayed_status + - usb: dwc3: gadget: Execute gadget stop after halting the controller + - media: Revert "media: rkisp1: Drop IRQF_SHARED" + - usb: dwc3: gadget: Ignore End Transfer delay on teardown + - Linux 5.15.149 + * Jammy update: v5.15.149 upstream stable release (LP: #2059014) // + CVE-2023-52603 + - UBSAN: array-index-out-of-bounds in dtSplitRoot + * CVE-2023-52600 + - jfs: fix uaf in jfs_evict_inode + * CVE-2023-24023 + - Bluetooth: Add more enc key size check + * Fix headphone mic detection issue on ALC897 (LP: #2056418) + - ALSA: hda/realtek - Fix headset Mic no show at resume back for Lenovo ALC897 + platform + * CVE-2024-26581 + - netfilter: nft_set_rbtree: skip end interval element from gc + * CVE-2023-6039 + - timers: Replace BUG_ON()s + * Problems with HVCS and hotplugging (LP: #2056373) + - hvcs: Fix hvcs port reference counting + - hvcs: Use dev_groups to manage hvcs device attributes + - hvcs: Use driver groups to manage driver attributes + - hvcs: Get reference to tty in remove + - hvcs: Use vhangup in hotplug remove + - hvcs: Synchronize hotplug remove with port free + * KVM: arm64: softlockups in stage2_apply_range (LP: #2056227) + - KVM: arm64: Work out supported block level at compile time + - KVM: arm64: Limit stage2_apply_range() batch size to largest block + + [ Ubuntu: 5.15.0-102.112 ] + + * jammy/linux: 5.15.0-102.112 -proposed tracker (LP: #2055632) + * Drop ABI checks from kernel build (LP: #2055686) + - [Packaging] Remove in-tree abi checks + - [Packaging] Drop abi checks from final-checks + * Packaging resync (LP: #1786013) + - [Packaging] drop ABI data + - [Packaging] update annotations scripts + - debian.master/dkms-versions -- update from kernel-versions (main/2024.03.04) + * block/loop: No longer allows to create partitions (LP: #2056143) + - block, loop: support partitions without scanning + * Cranky update-dkms-versions rollout (LP: #2055685) + - [Packaging] remove update-dkms-versions + - Move debian/dkms-versions to debian.master/dkms-versions + - [Packaging] Replace debian/dkms-versions with $(DEBIAN)/dkms-versions + - [Packaging] remove update-version-dkms + * linux: please move erofs.ko (CONFIG_EROFS for EROFS support) from linux- + modules-extra to linux-modules (LP: #2054809) + - UBUNTU [Packaging]: Include erofs in linux-modules instead of linux-modules- + extra + * linux-tools-common: man page of usbip[d] is misplaced (LP: #2054094) + - [Packaging] rules: Put usbip manpages in the correct directory + * CVE-2024-23851 + - dm ioctl: log an error if the ioctl structure is corrupted + - dm: limit the number of targets and parameter size area + * CVE-2024-23850 + - btrfs: do not ASSERT() if the newly created subvolume already got read + * x86: performance: tsc: Extend watchdog check exemption to 4-Sockets platform + (LP: #2054699) + - x86/tsc: Extend watchdog check exemption to 4-Sockets platform + * linux: please move dmi-sysfs.ko (CONFIG_DMI_SYSFS for SMBIOS support) from + linux-modules-extra to linux-modules (LP: #2045561) + - [Packaging] Move dmi-sysfs.ko into linux-modules + * Fix bpf selftests build failure after v5.15.139 update (LP: #2054567) + - Revert "selftests/bpf: Test tail call counting with bpf2bpf and data on + stack" + * Jammy update: v5.15.148 upstream stable release (LP: #2055145) + - f2fs: explicitly null-terminate the xattr list + - pinctrl: lochnagar: Don't build on MIPS + - ALSA: hda - Fix speaker and headset mic pin config for CHUWI CoreBook XPro + - mptcp: fix uninit-value in mptcp_incoming_options + - wifi: cfg80211: lock wiphy mutex for rfkill poll + - debugfs: fix automount d_fsdata usage + - drm/amdgpu: Fix cat debugfs amdgpu_regs_didt causes kernel null pointer + - nvme-core: check for too small lba shift + - ASoC: wm8974: Correct boost mixer inputs + - ASoC: Intel: Skylake: Fix mem leak in few functions + - ASoC: nau8822: Fix incorrect type in assignment and cast to restricted + __be16 + - ASoC: Intel: Skylake: mem leak in skl register function + - ASoC: cs43130: Fix the position of const qualifier + - ASoC: cs43130: Fix incorrect frame delay configuration + - ASoC: rt5650: add mutex to avoid the jack detection failure + - nouveau/tu102: flush all pdbs on vmm flush + - net/tg3: fix race condition in tg3_reset_task() + - ASoC: da7219: Support low DC impedance headset + - ASoC: ops: add correct range check for limiting volume + - nvme: introduce helper function to get ctrl state + - drm/amdgpu: Add NULL checks for function pointers + - drm/exynos: fix a potential error pointer dereference + - drm/exynos: fix a wrong error checking + - hwmon: (corsair-psu) Fix probe when built-in + - clk: rockchip: rk3128: Fix HCLK_OTG gate register + - jbd2: correct the printing of write_flags in jbd2_write_superblock() + - drm/crtc: Fix uninit-value bug in drm_mode_setcrtc + - neighbour: Don't let neigh_forced_gc() disable preemption for long + - platform/x86: intel-vbtn: Fix missing tablet-mode-switch events + - jbd2: fix soft lockup in journal_finish_inode_data_buffers() + - tracing: Have large events show up as '[LINE TOO BIG]' instead of nothing + - tracing: Add size check when printing trace_marker output + - stmmac: dwmac-loongson: drop useless check for compatible fallback + - MIPS: dts: loongson: drop incorrect dwmac fallback compatible + - tracing: Fix uaf issue when open the hist or hist_debug file + - ring-buffer: Do not record in NMI if the arch does not support cmpxchg in + NMI + - reset: hisilicon: hi6220: fix Wvoid-pointer-to-enum-cast warning + - Input: atkbd - skip ATKBD_CMD_GETID in translated mode + - Input: i8042 - add nomux quirk for Acer P459-G2-M + - s390/scm: fix virtual vs physical address confusion + - ARC: fix spare error + - wifi: iwlwifi: pcie: avoid a NULL pointer dereference + - Input: xpad - add Razer Wolverine V2 support + - ASoC: Intel: bytcr_rt5640: Add quirk for the Medion Lifetab S10346 + - i2c: rk3x: fix potential spinlock recursion on poll + - net: qrtr: ns: Return 0 if server port is not present + - ARM: sun9i: smp: fix return code check of of_property_match_string + - drm/crtc: fix uninitialized variable use + - ACPI: resource: Add another DMI match for the TongFang GMxXGxx + - Revert "ASoC: atmel: Remove system clock tree configuration for + at91sam9g20ek" + - bpf: Add --skip_encoding_btf_inconsistent_proto, --btf_gen_optimized to + pahole flags for v1.25 + - kprobes: Fix to handle forcibly unoptimized kprobes on freeing_list + - Revert "md/raid5: Wait for MD_SB_CHANGE_PENDING in raid5d" + - binder: use EPOLLERR from eventpoll.h + - binder: fix use-after-free in shinker's callback + - binder: fix trivial typo of binder_free_buf_locked() + - binder: fix comment on binder_alloc_new_buf() return value + - uio: Fix use-after-free in uio_open + - parport: parport_serial: Add Brainboxes BAR details + - parport: parport_serial: Add Brainboxes device IDs and geometry + - leds: ledtrig-tty: Free allocated ttyname buffer on deactivate + - PCI: Add ACS quirk for more Zhaoxin Root Ports + - coresight: etm4x: Fix width of CCITMIN field + - x86/lib: Fix overflow when counting digits + - EDAC/thunderx: Fix possible out-of-bounds string access + - powerpc: Mark .opd section read-only + - powerpc/toc: Future proof kernel toc + - powerpc: remove checks for binutils older than 2.25 + - powerpc: add crtsavres.o to always-y instead of extra-y + - powerpc/44x: select I2C for CURRITUCK + - powerpc/pseries/memhp: Fix access beyond end of drmem array + - selftests/powerpc: Fix error handling in FPU/VMX preemption tests + - powerpc/powernv: Add a null pointer check to scom_debug_init_one() + - powerpc/powernv: Add a null pointer check in opal_event_init() + - powerpc/powernv: Add a null pointer check in opal_powercap_init() + - powerpc/imc-pmu: Add a null pointer check in update_events_in_group() + - spi: spi-zynqmp-gqspi: fix driver kconfig dependencies + - mtd: rawnand: Increment IFC_TIMEOUT_MSECS for nand controller response + - ACPI: video: check for error while searching for backlight device parent + - ACPI: LPIT: Avoid u32 multiplication overflow + - of: property: define of_property_read_u{8,16,32,64}_array() unconditionally + - of: Add of_property_present() helper + - cpufreq: Use of_property_present() for testing DT property presence + - cpufreq: scmi: process the result of devm_of_clk_add_hw_provider() + - calipso: fix memory leak in netlbl_calipso_add_pass() + - efivarfs: force RO when remounting if SetVariable is not supported + - spi: sh-msiof: Enforce fixed DTDL for R-Car H3 + - ACPI: LPSS: Fix the fractional clock divider flags + - ACPI: extlog: Clear Extended Error Log status when RAS_CEC handled the error + - kunit: debugfs: Fix unchecked dereference in debugfs_print_results() + - mtd: Fix gluebi NULL pointer dereference caused by ftl notifier + - selinux: Fix error priority for bind with AF_UNSPEC on PF_INET6 socket + - crypto: virtio - Handle dataq logic with tasklet + - crypto: sa2ul - Return crypto_aead_setkey to transfer the error + - crypto: ccp - fix memleak in ccp_init_dm_workarea + - crypto: af_alg - Disallow multiple in-flight AIO requests + - crypto: sahara - remove FLAGS_NEW_KEY logic + - crypto: sahara - fix cbc selftest failure + - crypto: sahara - fix ahash selftest failure + - crypto: sahara - fix processing requests with cryptlen < sg->length + - crypto: sahara - fix error handling in sahara_hw_descriptor_create() + - pstore: ram_core: fix possible overflow in persistent_ram_init_ecc() + - fs: indicate request originates from old mount API + - gfs2: Fix kernel NULL pointer dereference in gfs2_rgrp_dump + - crypto: virtio - Wait for tasklet to complete on device remove + - crypto: sahara - avoid skcipher fallback code duplication + - crypto: sahara - handle zero-length aes requests + - crypto: sahara - fix ahash reqsize + - crypto: sahara - fix wait_for_completion_timeout() error handling + - crypto: sahara - improve error handling in sahara_sha_process() + - crypto: sahara - fix processing hash requests with req->nbytes < sg->length + - crypto: sahara - do not resize req->src when doing hash operations + - crypto: scomp - fix req->dst buffer overflow + - blocklayoutdriver: Fix reference leak of pnfs_device_node + - NFSv4.1/pnfs: Ensure we handle the error NFS4ERR_RETURNCONFLICT + - wifi: rtw88: fix RX filter in FIF_ALLMULTI flag + - bpf, lpm: Fix check prefixlen before walking trie + - bpf: Add crosstask check to __bpf_get_stack + - wifi: ath11k: Defer on rproc_get failure + - wifi: libertas: stop selecting wext + - ARM: dts: qcom: apq8064: correct XOADC register address + - net/ncsi: Fix netlink major/minor version numbers + - firmware: ti_sci: Fix an off-by-one in ti_sci_debugfs_create() + - firmware: meson_sm: populate platform devices from sm device tree data + - wifi: rtlwifi: rtl8821ae: phy: fix an undefined bitwise shift behavior + - arm64: dts: ti: k3-am65-main: Fix DSS irq trigger type + - bpf: enforce precision of R0 on callback return + - ARM: dts: qcom: sdx65: correct SPMI node name + - arm64: dts: qcom: sc7180: Make watchdog bark interrupt edge triggered + - arm64: dts: qcom: sc7280: Make watchdog bark interrupt edge triggered + - arm64: dts: qcom: sdm845: Make watchdog bark interrupt edge triggered + - arm64: dts: qcom: sm8150: Make watchdog bark interrupt edge triggered + - arm64: dts: qcom: sm8250: Make watchdog bark interrupt edge triggered + - bpf: fix check for attempt to corrupt spilled pointer + - scsi: fnic: Return error if vmalloc() failed + - arm64: dts: qcom: qrb5165-rb5: correct LED panic indicator + - arm64: dts: qcom: sdm845-db845c: correct LED panic indicator + - arm64: dts: qcom: sc7280: fix usb_2 wakeup interrupt types + - bpf: Fix verification of indirect var-off stack access + - block: Set memalloc_noio to false on device_add_disk() error path + - scsi: hisi_sas: Rename HISI_SAS_{RESET -> RESETTING}_BIT + - scsi: hisi_sas: Prevent parallel FLR and controller reset + - scsi: hisi_sas: Replace with standard error code return value + - scsi: hisi_sas: Rollback some operations if FLR failed + - scsi: hisi_sas: Correct the number of global debugfs registers + - selftests/net: fix grep checking for fib_nexthop_multiprefix + - virtio/vsock: fix logic which reduces credit update messages + - dma-mapping: Add dma_release_coherent_memory to DMA API + - dma-mapping: clear dev->dma_mem to NULL after freeing it + - soc: qcom: llcc: Fix dis_cap_alloc and retain_on_pc configuration + - arm64: dts: qcom: sm8150-hdk: fix SS USB regulators + - block: add check of 'minors' and 'first_minor' in device_add_disk() + - arm64: dts: qcom: sc7280: Mark SDHCI hosts as cache-coherent + - wifi: rtlwifi: add calculate_bit_shift() + - wifi: rtlwifi: rtl8188ee: phy: using calculate_bit_shift() + - wifi: rtlwifi: rtl8192c: using calculate_bit_shift() + - wifi: rtlwifi: rtl8192cu: using calculate_bit_shift() + - wifi: rtlwifi: rtl8192ce: using calculate_bit_shift() + - wifi: rtlwifi: rtl8192de: using calculate_bit_shift() + - wifi: rtlwifi: rtl8192ee: using calculate_bit_shift() + - wifi: rtlwifi: rtl8192se: using calculate_bit_shift() + - wifi: iwlwifi: mvm: set siso/mimo chains to 1 in FW SMPS request + - wifi: iwlwifi: mvm: send TX path flush in rfkill + - netfilter: nf_tables: mark newset as dead on transaction abort + - Bluetooth: Fix bogus check for re-auth no supported with non-ssp + - Bluetooth: btmtkuart: fix recv_buf() return value + - block: make BLK_DEF_MAX_SECTORS unsigned + - null_blk: don't cap max_hw_sectors to BLK_DEF_MAX_SECTORS + - net/sched: act_ct: fix skb leak and crash on ooo frags + - mlxbf_gige: Fix intermittent no ip issue + - net: mellanox: mlxbf_gige: Replace non-standard interrupt handling + - mlxbf_gige: Enable the GigE port in mlxbf_gige_open + - ip6_tunnel: fix NEXTHDR_FRAGMENT handling in ip6_tnl_parse_tlv_enc_lim() + - ARM: davinci: always select CONFIG_CPU_ARM926T + - Revert "drm/tidss: Annotate dma-fence critical section in commit path" + - Revert "drm/omapdrm: Annotate dma-fence critical section in commit path" + - RDMA/usnic: Silence uninitialized symbol smatch warnings + - RDMA/hns: Fix inappropriate err code for unsupported operations + - drm/panel-elida-kd35t133: hold panel in reset for unprepare + - drm/nouveau/fence:: fix warning directly dereferencing a rcu pointer + - drm/bridge: tpd12s015: Drop buggy __exit annotation for remove function + - drm/tilcdc: Fix irq free on unload + - media: pvrusb2: fix use after free on context disconnection + - drm/bridge: Fix typo in post_disable() description + - f2fs: fix to avoid dirent corruption + - drm/radeon/r600_cs: Fix possible int overflows in r600_cs_check_reg() + - drm/radeon/r100: Fix integer overflow issues in r100_cs_track_check() + - drm/radeon: check return value of radeon_ring_lock() + - ASoC: cs35l33: Fix GPIO name and drop legacy include + - ASoC: cs35l34: Fix GPIO name and drop legacy include + - drm/msm/mdp4: flush vblank event on disable + - drm/msm/dsi: Use pm_runtime_resume_and_get to prevent refcnt leaks + - drm/drv: propagate errors from drm_modeset_register_all() + - drm/radeon: check the alloc_workqueue return value in radeon_crtc_init() + - drm/radeon/dpm: fix a memleak in sumo_parse_power_table + - drm/radeon/trinity_dpm: fix a memleak in trinity_parse_power_table + - drm/bridge: cdns-mhdp8546: Fix use of uninitialized variable + - drm/bridge: tc358767: Fix return value on error case + - media: cx231xx: fix a memleak in cx231xx_init_isoc + - clk: qcom: gpucc-sm8150: Update the gpu_cc_pll1 config + - media: rkisp1: Disable runtime PM in probe error path + - f2fs: fix to check compress file in f2fs_move_file_range() + - f2fs: fix to update iostat correctly in f2fs_filemap_fault() + - f2fs: fix the f2fs_file_write_iter tracepoint + - media: dvbdev: drop refcount on error path in dvb_device_open() + - media: dvb-frontends: m88ds3103: Fix a memory leak in an error handling path + of m88ds3103_probe() + - drm/amdgpu/debugfs: fix error code when smc register accessors are NULL + - drm/amd/pm: fix a double-free in si_dpm_init + - drivers/amd/pm: fix a use-after-free in kv_parse_power_table + - gpu/drm/radeon: fix two memleaks in radeon_vm_init + - dt-bindings: clock: Update the videocc resets for sm8150 + - clk: qcom: videocc-sm8150: Update the videocc resets + - clk: qcom: videocc-sm8150: Add missing PLL config property + - drivers: clk: zynqmp: calculate closest mux rate + - clk: zynqmp: make bestdiv unsigned + - clk: zynqmp: Add a check for NULL pointer + - drivers: clk: zynqmp: update divider round rate logic + - watchdog: set cdev owner before adding + - watchdog/hpwdt: Only claim UNKNOWN NMI if from iLO + - watchdog: bcm2835_wdt: Fix WDIOC_SETTIMEOUT handling + - watchdog: rti_wdt: Drop runtime pm reference count when watchdog is unused + - clk: si5341: fix an error code problem in si5341_output_clk_set_rate + - clk: asm9260: use parent index to link the reference clock + - clk: fixed-rate: add devm_clk_hw_register_fixed_rate + - clk: fixed-rate: fix clk_hw_register_fixed_rate_with_accuracy_parent_hw + - pwm: stm32: Use regmap_clear_bits and regmap_set_bits where applicable + - pwm: stm32: Use hweight32 in stm32_pwm_detect_channels + - pwm: stm32: Fix enable count for clk in .probe() + - ASoC: rt5645: Drop double EF20 entry from dmi_platform_data[] + - ALSA: scarlett2: Add missing error check to scarlett2_config_save() + - ALSA: scarlett2: Add missing error check to scarlett2_usb_set_config() + - ALSA: scarlett2: Allow passing any output to line_out_remap() + - ALSA: scarlett2: Add missing error checks to *_ctl_get() + - ALSA: scarlett2: Add clamp() in scarlett2_mixer_ctl_put() + - mmc: sdhci_am654: Fix TI SoC dependencies + - [Config] update annotations for CONFIG_MMC_SDHCI_AM654 + - [Config] remove sdhci_am654 module for armhf/ppc64el + - mmc: sdhci_omap: Fix TI SoC dependencies + - [Config] update annotations for CONFIG_MMC_SDHCI_OMAP + - [Config] remove sdhci-omap module for arm64/ppc64el + - IB/iser: Prevent invalidating wrong MR + - drm/amd/pm/smu7: fix a memleak in smu7_hwmgr_backend_init + - ksmbd: validate the zero field of packet header + - of: Fix double free in of_parse_phandle_with_args_map + - of: unittest: Fix of_count_phandle_with_args() expected value message + - selftests/bpf: Add assert for user stacks in test_task_stack + - binder: fix async space check for 0-sized buffers + - binder: fix unused alloc->free_async_space + - Input: atkbd - use ab83 as id when skipping the getid command + - dma-mapping: Fix build error unused-value + - virtio-crypto: fix memory leak in virtio_crypto_alg_skcipher_close_session() + - binder: fix race between mmput() and do_exit() + - tick-sched: Fix idle and iowait sleeptime accounting vs CPU hotplug + - usb: phy: mxs: remove CONFIG_USB_OTG condition for mxs_phy_is_otg_host() + - usb: dwc: ep0: Update request status in dwc3_ep0_stall_restart + - Revert "usb: dwc3: Soft reset phy on probe for host" + - Revert "usb: dwc3: don't reset device side if dwc3 was configured as host- + only" + - usb: chipidea: wait controller resume finished for wakeup irq + - usb: cdns3: fix uvc failure work since sg support enabled + - usb: cdns3: fix iso transfer error when mult is not zero + - usb: cdns3: Fix uvc fail when DMA cross 4k boundery since sg enabled + - Revert "usb: typec: class: fix typec_altmode_put_partner to put plugs" + - usb: typec: class: fix typec_altmode_put_partner to put plugs + - usb: mon: Fix atomicity violation in mon_bin_vma_fault + - serial: imx: Ensure that imx_uart_rs485_config() is called with enabled + clock + - ALSA: oxygen: Fix right channel of capture volume mixer + - ALSA: hda/relatek: Enable Mute LED on HP Laptop 15s-fq2xxx + - fbdev: flush deferred work in fb_deferred_io_fsync() + - scsi: mpi3mr: Refresh sdev queue depth after controller reset + - block: add check that partition length needs to be aligned with block size + - pwm: jz4740: Don't use dev_err_probe() in .request() + - io_uring/rw: ensure io->bytes_done is always initialized + - rootfs: Fix support for rootfstype= when root= is given + - Bluetooth: Fix atomicity violation in {min,max}_key_size_set + - bpf: Fix re-attachment branch in bpf_tracing_prog_attach + - iommu/arm-smmu-qcom: Add missing GMU entry to match table + - wifi: mt76: fix broken precal loading from MTD for mt7915 + - wifi: rtlwifi: Remove bogus and dangerous ASPM disable/enable code + - wifi: rtlwifi: Convert LNKCTL change to PCIe cap RMW accessors + - wifi: mwifiex: configure BSSID consistently when starting AP + - PCI: dwc: endpoint: Fix dw_pcie_ep_raise_msix_irq() alignment support + - PCI: mediatek: Clear interrupt status before dispatching handler + - x86/kvm: Do not try to disable kvmclock if it was not enabled + - KVM: arm64: vgic-v4: Restore pending state on host userspace write + - KVM: arm64: vgic-its: Avoid potential UAF in LPI translation cache + - iio: adc: ad7091r: Pass iio_dev to event handler + - HID: wacom: Correct behavior when processing some confidence == false + touches + - serial: sc16is7xx: add check for unsupported SPI modes during probe + - serial: sc16is7xx: set safe default SPI clock frequency + - iommu/dma: Trace bounce buffer usage when mapping buffers + - ARM: 9330/1: davinci: also select PINCTRL + - mfd: syscon: Fix null pointer dereference in of_syscon_register() + - leds: aw2013: Select missing dependency REGMAP_I2C + - mfd: intel-lpss: Fix the fractional clock divider flags + - mips: dmi: Fix early remap on MIPS32 + - mips: Fix incorrect max_low_pfn adjustment + - riscv: Check if the code to patch lies in the exit section + - riscv: Fix module_alloc() that did not reset the linear mapping permissions + - MIPS: Alchemy: Fix an out-of-bound access in db1200_dev_setup() + - MIPS: Alchemy: Fix an out-of-bound access in db1550_dev_setup() + - power: supply: cw2015: correct time_to_empty units in sysfs + - power: supply: bq256xx: fix some problem in bq256xx_hw_init + - serial: 8250: omap: Don't skip resource freeing if + pm_runtime_resume_and_get() failed + - libapi: Add missing linux/types.h header to get the __u64 type on io.h + - software node: Let args be NULL in software_node_get_reference_args + - serial: imx: fix tx statemachine deadlock + - selftests/sgx: Fix uninitialized pointer dereference in error path + - selftests/sgx: Skip non X86_64 platform + - iio: adc: ad9467: Benefit from devm_clk_get_enabled() to simplify + - iio: adc: ad9467: fix reset gpio handling + - iio: adc: ad9467: don't ignore error codes + - iio: adc: ad9467: fix scale setting + - perf genelf: Set ELF program header addresses properly + - tty: change tty_write_lock()'s ndelay parameter to bool + - tty: early return from send_break() on TTY_DRIVER_HARDWARE_BREAK + - tty: don't check for signal_pending() in send_break() + - tty: use 'if' in send_break() instead of 'goto' + - usb: cdc-acm: return correct error code on unsupported break + - nvmet-tcp: Fix a kernel panic when host sends an invalid H2C PDU length + - nvmet-tcp: fix a crash in nvmet_req_complete() + - perf env: Avoid recursively taking env->bpf_progs.lock + - apparmor: avoid crash when parsed profile name is empty + - usb: xhci-mtk: fix a short packet issue of gen1 isoc-in transfer + - serial: imx: Correct clock error message in function probe() + - nvmet: re-fix tracing strncpy() warning + - nvmet-tcp: Fix the H2C expected PDU len calculation + - PCI: keystone: Fix race condition when initializing PHYs + - s390/pci: fix max size calculation in zpci_memcpy_toio() + - net: qualcomm: rmnet: fix global oob in rmnet_policy + - net: ethernet: ti: am65-cpsw: Fix max mtu to fit ethernet frames + - net: phy: micrel: populate .soft_reset for KSZ9131 + - mptcp: mptcp_parse_option() fix for MPTCPOPT_MP_JOIN + - mptcp: drop unused sk in mptcp_get_options + - mptcp: strict validation before using mp_opt->hmac + - mptcp: use OPTION_MPTCP_MPJ_SYNACK in subflow_finish_connect() + - mptcp: use OPTION_MPTCP_MPJ_SYN in subflow_check_req() + - net: ravb: Fix dma_addr_t truncation in error case + - net: stmmac: ethtool: Fixed calltrace caused by unbalanced disable_irq_wake + calls + - bpf: Reject variable offset alu on PTR_TO_FLOW_KEYS + - net: dsa: vsc73xx: Add null pointer check to vsc73xx_gpio_probe + - netfilter: nf_tables: reject invalid set policy + - netfilter: nft_connlimit: move stateful fields out of expression data + - netfilter: nft_last: move stateful fields out of expression data + - netfilter: nft_quota: move stateful fields out of expression data + - netfilter: nft_limit: rename stateful structure + - netfilter: nft_limit: move stateful fields out of expression data + - netfilter: nf_tables: memcg accounting for dynamically allocated objects + - netfilter: nft_limit: do not ignore unsupported flags + - netfilter: nf_tables: do not allow mismatch field size and set key length + - netfilter: nf_tables: skip dead set elements in netlink dump + - netfilter: nf_tables: reject NFT_SET_CONCAT with not field length + description + - ipvs: avoid stat macros calls from preemptible context + - kdb: Fix a potential buffer overflow in kdb_local() + - ethtool: netlink: Add missing ethnl_ops_begin/complete + - mlxsw: spectrum_acl_erp: Fix error flow of pool allocation failure + - mlxsw: spectrum: Use 'bitmap_zalloc()' when applicable + - mlxsw: spectrum_acl_tcam: Add missing mutex_destroy() + - mlxsw: spectrum_acl_tcam: Make fini symmetric to init + - mlxsw: spectrum_acl_tcam: Reorder functions to avoid forward declarations + - mlxsw: spectrum_acl_tcam: Fix stack corruption + - selftests: mlxsw: qos_pfc: Adjust the test to support 8 lanes + - ipv6: mcast: fix data-race in ipv6_mc_down / mld_ifc_work + - i2c: s3c24xx: fix read transfers in polling mode + - i2c: s3c24xx: fix transferring more than one message in polling mode + - block: Remove special-casing of compound pages + - netfilter: nf_tables: typo NULL check in _clone() function + - netfilter: nft_connlimit: memleak if nf_ct_netns_get() fails + - netfilter: nft_limit: fix stateful object memory leak + - netfilter: nft_limit: Clone packet limits' cost value + - netfilter: nft_last: copy content when cloning expression + - netfilter: nft_quota: copy content when cloning expression + - arm64: dts: armada-3720-turris-mox: set irq type for RTC + - Revert "Revert "md/raid5: Wait for MD_SB_CHANGE_PENDING in raid5d"" + - Linux 5.15.148 + * CVE-2024-24855 + - scsi: lpfc: Fix a possible data race in lpfc_unregister_fcf_rescan() + * performance: Scheduler: ratelimit updating of load_avg (LP: #2053251) + - sched/fair: Ratelimit update to tg->load_avg + * Jammy update: v5.15.147 upstream stable release (LP: #2054411) + - block: Don't invalidate pagecache for invalid falloc modes + - ALSA: hda/realtek: Fix mute and mic-mute LEDs for HP ProBook 440 G6 + - Revert "PCI/ASPM: Remove pcie_aspm_pm_state_change()" + - wifi: iwlwifi: pcie: don't synchronize IRQs from IRQ + - drm/bridge: ti-sn65dsi86: Never store more than msg->size bytes in AUX xfer + - nfc: llcp_core: Hold a ref to llcp_local->dev when holding a ref to + llcp_local + - octeontx2-af: Fix marking couple of structure as __packed + - drm/i915/dp: Fix passing the correct DPCD_REV for + drm_dp_set_phy_test_pattern + - i40e: Fix filter input checks to prevent config with invalid values + - igc: Report VLAN EtherType matching back to user + - igc: Check VLAN TCI mask + - igc: Check VLAN EtherType mask + - ASoC: fsl_rpmsg: Fix error handler with pm_runtime_enable + - mlxbf_gige: fix receive packet race condition + - net: sched: em_text: fix possible memory leak in em_text_destroy() + - r8169: Fix PCI error on system resume + - net: Implement missing getsockopt(SO_TIMESTAMPING_NEW) + - can: raw: add support for SO_TXTIME/SCM_TXTIME + - can: raw: add support for SO_MARK + - net-timestamp: extend SOF_TIMESTAMPING_OPT_ID to HW timestamps + - ARM: sun9i: smp: Fix array-index-out-of-bounds read in sunxi_mc_smp_init + - sfc: fix a double-free bug in efx_probe_filters + - net: bcmgenet: Fix FCS generation for fragmented skbuffs + - netfilter: nft_immediate: drop chain reference counter on error + - net: Save and restore msg_namelen in sock_sendmsg + - i40e: fix use-after-free in i40e_aqc_add_filters() + - ASoC: meson: g12a-toacodec: Validate written enum values + - ASoC: meson: g12a-tohdmitx: Validate written enum values + - ASoC: meson: g12a-toacodec: Fix event generation + - ASoC: meson: g12a-tohdmitx: Fix event generation for S/PDIF mux + - i40e: Restore VF MSI-X state during PCI reset + - igc: Fix hicredit calculation + - net/qla3xxx: fix potential memleak in ql_alloc_buffer_queues + - octeontx2-af: Don't enable Pause frames by default + - octeontx2-af: Set NIX link credits based on max LMAC + - octeontx2-af: Always configure NIX TX link credits based on max frame size + - octeontx2-af: Re-enable MAC TX in otx2_stop processing + - asix: Add check for usbnet_get_endpoints + - bnxt_en: Remove mis-applied code from bnxt_cfg_ntp_filters() + - net: Implement missing SO_TIMESTAMPING_NEW cmsg support + - selftests: secretmem: floor the memory size to the multiple of page_size + - mm/memory-failure: check the mapcount of the precise page + - firewire: ohci: suppress unexpected system reboot in AMD Ryzen machines and + ASM108x/VT630x PCIe cards + - x86/kprobes: fix incorrect return address calculation in + kprobe_emulate_call_indirect + - i2c: core: Fix atomic xfer check for non-preempt config + - mm: fix unmap_mapping_range high bits shift bug + - mmc: meson-mx-sdhc: Fix initialization frozen issue + - mmc: rpmb: fixes pause retune on all RPMB partitions. + - mmc: core: Cancel delayed work before releasing host + - mmc: sdhci-sprd: Fix eMMC init failure after hw reset + - ipv6: remove max_size check inline with ipv4 + - perf inject: Fix GEN_ELF_TEXT_OFFSET for jit + - kallsyms: Make module_kallsyms_on_each_symbol generally available + - tracing/kprobes: Fix symbol counting logic by looking at modules as well + - net: usb: ax88179_178a: remove redundant init code + - net: usb: ax88179_178a: move priv to driver_priv + - Linux 5.15.147 + * CVE-2024-1085 + - netfilter: nf_tables: check if catch-all set element is active in next + generation + * CVE-2023-23000 + - phy: tegra: xusb: Fix return value of tegra_xusb_find_port_node function + * performance: mm/percpu-internal.h: Re-layout pcpu_chunk to mitigate false + sharing (LP: #2053152) + - percpu-internal/pcpu_chunk: re-layout pcpu_chunk structure to reduce false + sharing + * performance: address_space: add padding for i_map and i_mmap_rwsem to + mitigate a false sharing (LP: #2053069) + - fs/address_space: add alignment padding for i_map and i_mmap_rwsem to + mitigate a false sharing. + * cpufreq: intel_pstate: Enable HWP IO boost for all servers (LP: #2052817) + - cpufreq: intel_pstate: Enable HWP IO boost for all servers + * performance: mm/memcontrol.c: remove the redundant updating of + stats_flush_threshold (LP: #2052827) + - mm/memcontrol.c: remove the redundant updating of stats_flush_threshold + * Jammy update: v5.15.146 upstream stable release (LP: #2053212) + - ARM: dts: dra7: Fix DRA7 L3 NoC node register size + - ARM: OMAP2+: Fix null pointer dereference and memory leak in + omap_soc_device_init + - reset: Fix crash when freeing non-existent optional resets + - s390/vx: fix save/restore of fpu kernel context + - wifi: iwlwifi: pcie: add another missing bh-disable for rxq->lock + - wifi: mac80211: mesh_plink: fix matches_local logic + - net/mlx5e: Fix slab-out-of-bounds in mlx5_query_nic_vport_mac_list() + - net/mlx5e: fix a potential double-free in fs_udp_create_groups + - net/mlx5: Fix fw tracer first block check + - net/mlx5e: Correct snprintf truncation handling for fw_version buffer used + by representors + - net: sched: ife: fix potential use-after-free + - ethernet: atheros: fix a memleak in atl1e_setup_ring_resources + - net/rose: fix races in rose_kill_by_device() + - net: mana: select PAGE_POOL + - net: check vlan filter feature in vlan_vids_add_by_dev() and + vlan_vids_del_by_dev() + - afs: Fix the dynamic root's d_delete to always delete unused dentries + - afs: Fix dynamic root lookup DNS check + - net: check dev->gso_max_size in gso_features_check() + - keys, dns: Allow key types (eg. DNS) to be reclaimed immediately on expiry + - keys, dns: Fix missing size check of V1 server-list header + - keys, dns: Fix size check of V1 server-list header + - afs: Fix overwriting of result of DNS query + - afs: Use refcount_t rather than atomic_t + - afs: Fix use-after-free due to get/remove race in volume tree + - ASoC: hdmi-codec: fix missing report for jack initial status + - i2c: aspeed: Handle the coalesced stop conditions with the start conditions. + - pinctrl: at91-pio4: use dedicated lock class for IRQ + - gpiolib: cdev: add gpio_device locking wrapper around gpio_ioctl() + - ksmbd: fix wrong name of SMB2_CREATE_ALLOCATION_SIZE + - drm/i915/mtl: limit second scaler vertical scaling in ver >= 14 + - drm/i915: Relocate intel_atomic_setup_scalers() + - drm/i915: Fix intel_atomic_setup_scalers() plane_state handling + - smb: client: fix NULL deref in asn1_ber_decoder() + - smb: client: fix OOB in smb2_query_reparse_point() + - interconnect: Treat xlate() returning NULL node as an error + - iio: imu: inv_mpu6050: fix an error code problem in inv_mpu6050_read_raw + - Input: ipaq-micro-keys - add error handling for devm_kmemdup + - scsi: bnx2fc: Fix skb double free in bnx2fc_rcv() + - iio: common: ms_sensors: ms_sensors_i2c: fix humidity conversion time table + - iio: adc: ti_am335x_adc: Fix return value check of tiadc_request_dma() + - iio: triggered-buffer: prevent possible freeing of wrong buffer + - ALSA: usb-audio: Increase delay in MOTU M quirk + - wifi: cfg80211: Add my certificate + - wifi: cfg80211: fix certs build to not depend on file order + - USB: serial: ftdi_sio: update Actisense PIDs constant names + - USB: serial: option: add Quectel EG912Y module support + - USB: serial: option: add Foxconn T99W265 with new baseline + - USB: serial: option: add Quectel RM500Q R13 firmware support + - Bluetooth: hci_event: Fix not checking if HCI_OP_INQUIRY has been sent + - Bluetooth: MGMT/SMP: Fix address type when using SMP over BREDR/LE + - Input: soc_button_array - add mapping for airplane mode button + - net: 9p: avoid freeing uninit memory in p9pdu_vreadf + - net: rfkill: gpio: set GPIO direction + - net: ks8851: Fix TX stall caused by TX buffer overrun + - dt-bindings: nvmem: mxs-ocotp: Document fsl,ocotp + - scsi: core: Always send batch on reset or error handling command + - tracing / synthetic: Disable events after testing in + synth_event_gen_test_init() + - bus: ti-sysc: Flush posted write only after srst_udelay + - gpio: dwapb: mask/unmask IRQ when disable/enale it + - lib/vsprintf: Fix %pfwf when current node refcount == 0 + - KVM: arm64: vgic: Force vcpu vgic teardown on vcpu destroy + - x86/alternatives: Sync core before enabling interrupts + - fuse: share lookup state between submount and its parent + - ksmbd: have a dependency on cifs ARC4 + - ksmbd: set epoch in create context v2 lease + - ksmbd: set v2 lease capability + - ksmbd: downgrade RWH lease caching state to RH for directory + - ksmbd: send v2 lease break notification for directory + - ksmbd: lazy v2 lease break on smb2_write() + - ksmbd: avoid duplicate opinfo_put() call on error of smb21_lease_break_ack() + - ksmbd: fix wrong allocation size update in smb2_open() + - ARM: dts: Fix occasional boot hang for am3 usb + - usb: fotg210-hcd: delete an incorrect bounds test + - ethernet: constify references to netdev->dev_addr in drivers + - net: usb: ax88179_178a: clean up pm calls + - net: usb: ax88179_178a: wol optimizations + - net: usb: ax88179_178a: avoid failed operations when device is disconnected + - device property: Add const qualifier to device_get_match_data() parameter + - spi: Introduce spi_get_device_match_data() helper + - iio: imu: adis16475: add spi_device_id table + - smb: client: fix OOB in SMB2_query_info_init() + - mm/filemap: avoid buffered read/write race to read inconsistent data + - ring-buffer: Fix wake ups when buffer_percent is set to 100 + - tracing: Fix blocked reader of snapshot buffer + - ring-buffer: Remove useless update to write_stamp in rb_try_to_discard() + - ring-buffer: Fix slowpath of interrupted event + - dm-integrity: don't modify bio's immutable bio_vec in integrity_metadata() + - device property: Allow const parameter to dev_fwnode() + - bpf: Fix prog_array_map_poke_run map poke update + - Linux 5.15.146 + * CVE-2023-46838 + - xen-netback: don't produce zero-size SKB frags + * CVE-2024-1086 + - netfilter: nf_tables: reject QUEUE/DROP verdict parameters + * disable Intel DMA remapping by default (LP: #1971699) + - [Config] update tracking bug for CONFIG_INTEL_IOMMU_DEFAULT_ON + * Validate connection interval to pass Bluetooth Test Suite (LP: #2052005) + - Bluetooth: Enforce validation on max value of connection interval + * Jammy update: v5.15.145 upstream stable release (LP: #2052406) + - ksmbd: use ksmbd_req_buf_next() in ksmbd_verify_smb_message() + - ksmdb: use cmd helper variable in smb2_get_ksmbd_tcon() + - ksmbd: Remove redundant 'flush_workqueue()' calls + - ksmbd: remove md4 leftovers + - ksmbd: remove smb2_buf_length in smb2_hdr + - ksmbd: remove smb2_buf_length in smb2_transform_hdr + - ksmbd: change LeaseKey data type to u8 array + - ksmbd: use oid registry functions to decode OIDs + - ksmbd: Remove unused parameter from smb2_get_name() + - ksmbd: Remove unused fields from ksmbd_file struct definition + - ksmbd: set both ipv4 and ipv6 in FSCTL_QUERY_NETWORK_INTERFACE_INFO + - ksmbd: Fix buffer_check_err() kernel-doc comment + - ksmbd: Fix smb2_set_info_file() kernel-doc comment + - ksmbd: Delete an invalid argument description in + smb2_populate_readdir_entry() + - ksmbd: Fix smb2_get_name() kernel-doc comment + - ksmbd: register ksmbd ib client with ib_register_client() + - ksmbd: set 445 port to smbdirect port by default + - ksmbd: smbd: call rdma_accept() under CM handler + - ksmbd: smbd: create MR pool + - ksmbd: smbd: change the default maximum read/write, receive size + - ksmbd: smbd: fix missing client's memory region invalidation + - ksmbd: smbd: validate buffer descriptor structures + - ksmbd: add support for key exchange + - ksmbd: use netif_is_bridge_port + - ksmbd: store fids as opaque u64 integers + - ksmbd: shorten experimental warning on loading the module + - ksmbd: Remove a redundant zeroing of memory + - ksmbd: replace usage of found with dedicated list iterator variable + - smb3: fix ksmbd bigendian bug in oplock break, and move its struct to + smbfs_common + - ksmbd: remove filename in ksmbd_file + - ksmbd: smbd: change prototypes of RDMA read/write related functions + - ksmbd: smbd: introduce read/write credits for RDMA read/write + - ksmbd: smbd: simplify tracking pending packets + - ksmbd: smbd: change the return value of get_sg_list + - ksmbd: smbd: handle multiple Buffer descriptors + - ksmbd: fix wrong smbd max read/write size check + - ksmbd: Fix some kernel-doc comments + - ksmbd: smbd: fix connection dropped issue + - ksmbd: smbd: relax the count of sges required + - ksmbd: smbd: Remove useless license text when SPDX-License-Identifier is + already used + - ksmbd: remove duplicate flag set in smb2_write + - ksmbd: remove unused ksmbd_share_configs_cleanup function + - ksmbd: use wait_event instead of schedule_timeout() + - ksmbd: request update to stale share config + - ksmbd: remove unnecessary generic_fillattr in smb2_open + - ksmbd: don't open-code file_path() + - ksmbd: don't open-code %pD + - ksmbd: constify struct path + - ksmbd: remove generic_fillattr use in smb2_open() + - ksmbd: casefold utf-8 share names and fix ascii lowercase conversion + - ksmbd: change security id to the one samba used for posix extension + - ksmbd: set file permission mode to match Samba server posix extension + behavior + - ksmbd: fill sids in SMB_FIND_FILE_POSIX_INFO response + - ksmbd: fix encryption failure issue for session logoff response + - ksmbd: set NTLMSSP_NEGOTIATE_SEAL flag to challenge blob + - ksmbd: decrease the number of SMB3 smbdirect server SGEs + - ksmbd: reduce server smbdirect max send/receive segment sizes + - ksmbd: hide socket error message when ipv6 config is disable + - ksmbd: make utf-8 file name comparison work in __caseless_lookup() + - ksmbd: call ib_drain_qp when disconnected + - ksmbd: validate share name from share config response + - ksmbd: replace one-element arrays with flexible-array members + - ksmbd: set SMB2_SESSION_FLAG_ENCRYPT_DATA when enforcing data encryption for + this share + - ksmbd: use F_SETLK when unlocking a file + - ksmbd: Fix resource leak in smb2_lock() + - ksmbd: Convert to use sysfs_emit()/sysfs_emit_at() APIs + - ksmbd: send proper error response in smb2_tree_connect() + - ksmbd: Implements sess->rpc_handle_list as xarray + - ksmbd: fix typo, syncronous->synchronous + - ksmbd: Remove duplicated codes + - ksmbd: update Kconfig to note Kerberos support and fix indentation + - ksmbd: Fix spelling mistake "excceed" -> "exceeded" + - ksmbd: Fix parameter name and comment mismatch + - ksmbd: fix possible memory leak in smb2_lock() + - ksmbd: fix wrong signingkey creation when encryption is AES256 + - ksmbd: remove unused is_char_allowed function + - ksmbd: delete asynchronous work from list + - ksmbd: fix slab-out-of-bounds in init_smb2_rsp_hdr + - ksmbd: avoid out of bounds access in decode_preauth_ctxt() + - ksmbd: set NegotiateContextCount once instead of every inc + - ksmbd: avoid duplicate negotiate ctx offset increments + - ksmbd: remove unused compression negotiate ctx packing + - fs: introduce lock_rename_child() helper + - ksmbd: fix racy issue from using ->d_parent and ->d_name + - ksmbd: destroy expired sessions + - ksmbd: block asynchronous requests when making a delay on session setup + - ksmbd: fix racy issue from smb2 close and logoff with multichannel + - ksmbd: fix racy issue under cocurrent smb2 tree disconnect + - ksmbd: fix uninitialized pointer read in ksmbd_vfs_rename() + - ksmbd: fix uninitialized pointer read in smb2_create_link() + - ksmbd: fix multiple out-of-bounds read during context decoding + - ksmbd: fix UAF issue from opinfo->conn + - ksmbd: call putname after using the last component + - ksmbd: fix out-of-bound read in deassemble_neg_contexts() + - ksmbd: fix out-of-bound read in parse_lease_state() + - ksmbd: fix posix_acls and acls dereferencing possible ERR_PTR() + - ksmbd: check the validation of pdu_size in ksmbd_conn_handler_loop + - ksmbd: validate smb request protocol id + - ksmbd: add mnt_want_write to ksmbd vfs functions + - ksmbd: remove unused ksmbd_tree_conn_share function + - ksmbd: use kzalloc() instead of __GFP_ZERO + - ksmbd: return a literal instead of 'err' in ksmbd_vfs_kern_path_locked() + - ksmbd: Change the return value of ksmbd_vfs_query_maximal_access to void + - ksmbd: use kvzalloc instead of kvmalloc + - ksmbd: Replace the ternary conditional operator with min() + - ksmbd: fix out of bounds read in smb2_sess_setup + - ksmbd: add missing compound request handing in some commands + - ksmbd: Use struct_size() helper in ksmbd_negotiate_smb_dialect() + - ksmbd: Replace one-element array with flexible-array member + - ksmbd: Fix unsigned expression compared with zero + - ksmbd: check if a mount point is crossed during path lookup + - ksmbd: validate session id and tree id in compound request + - ksmbd: fix out of bounds in init_smb2_rsp_hdr() + - ksmbd: switch to use kmemdup_nul() helper + - ksmbd: add support for read compound + - ksmbd: fix wrong interim response on compound + - ksmbd: fix `force create mode' and `force directory mode' + - ksmbd: reduce descriptor size if remaining bytes is less than request size + - ksmbd: Fix one kernel-doc comment + - ksmbd: fix slub overflow in ksmbd_decode_ntlmssp_auth_blob() + - ksmbd: add missing calling smb2_set_err_rsp() on error + - ksmbd: remove experimental warning + - ksmbd: remove unneeded mark_inode_dirty in set_info_sec() + - ksmbd: fix passing freed memory 'aux_payload_buf' + - ksmbd: return invalid parameter error response if smb2 request is invalid + - ksmbd: check iov vector index in ksmbd_conn_write() + - ksmbd: fix race condition between session lookup and expire + - ksmbd: fix race condition with fp + - ksmbd: fix race condition from parallel smb2 logoff requests + - ksmbd: fix race condition from parallel smb2 lock requests + - ksmbd: fix race condition between tree conn lookup and disconnect + - ksmbd: fix wrong error response status by using set_smb2_rsp_status() + - ksmbd: fix Null pointer dereferences in ksmbd_update_fstate() + - ksmbd: fix potential double free on smb2_read_pipe() error path + - ksmbd: Remove unused field in ksmbd_user struct + - ksmbd: reorganize ksmbd_iov_pin_rsp() + - ksmbd: fix kernel-doc comment of ksmbd_vfs_setxattr() + - ksmbd: fix recursive locking in vfs helpers + - ksmbd: fix missing RDMA-capable flag for IPoIB device in + ksmbd_rdma_capable_netdev() + - ksmbd: add support for surrogate pair conversion + - ksmbd: no need to wait for binded connection termination at logoff + - ksmbd: fix kernel-doc comment of ksmbd_vfs_kern_path_locked() + - ksmbd: handle malformed smb1 message + - ksmbd: prevent memory leak on error return + - ksmbd: fix possible deadlock in smb2_open + - ksmbd: separately allocate ci per dentry + - ksmbd: move oplock handling after unlock parent dir + - ksmbd: release interim response after sending status pending response + - ksmbd: move setting SMB2_FLAGS_ASYNC_COMMAND and AsyncId + - ksmbd: don't update ->op_state as OPLOCK_STATE_NONE on error + - tracing/kprobes: Return EADDRNOTAVAIL when func matches several symbols + - kasan: disable kasan_non_canonical_hook() for HW tags + - Linux 5.15.145 + * Jammy update: v5.15.144 upstream stable release (LP: #2052404) + - r8152: add vendor/device ID pair for D-Link DUB-E250 + - r8152: add vendor/device ID pair for ASUS USB-C2500 + - netfilter: nf_tables: fix 'exist' matching on bigendian arches + - mm/memory_hotplug: handle memblock_add_node() failures in + add_memory_resource() + - memblock: allow to specify flags with memblock_add_node() + - MIPS: Loongson64: Handle more memory types passed from firmware + - ksmbd: fix memory leak in smb2_lock() + - afs: Fix refcount underflow from error handling race + - HID: lenovo: Restrict detection of patched firmware only to USB cptkbd + - net: ipv6: support reporting otherwise unknown prefix flags in RTM_NEWPREFIX + - qca_debug: Prevent crash on TX ring changes + - qca_debug: Fix ethtool -G iface tx behavior + - qca_spi: Fix reset behavior + - atm: solos-pci: Fix potential deadlock on &cli_queue_lock + - atm: solos-pci: Fix potential deadlock on &tx_queue_lock + - net: vlan: introduce skb_vlan_eth_hdr() + - net: fec: correct queue selection + - octeontx2-af: fix a use-after-free in rvu_nix_register_reporters + - octeontx2-pf: Fix promisc mcam entry action + - octeontx2-af: Update RSS algorithm index + - qed: Fix a potential use-after-free in qed_cxt_tables_alloc + - net: Remove acked SYN flag from packet in the transmit queue correctly + - net: ena: Destroy correct number of xdp queues upon failure + - net: ena: Fix xdp drops handling due to multibuf packets + - net: ena: Fix XDP redirection error + - stmmac: dwmac-loongson: Make sure MDIO is initialized before use + - sign-file: Fix incorrect return values check + - vsock/virtio: Fix unsigned integer wrap around in + virtio_transport_has_space() + - dpaa2-switch: fix size of the dma_unmap + - net: stmmac: use dev_err_probe() for reporting mdio bus registration failure + - net: stmmac: Handle disabled MDIO busses from devicetree + - net: atlantic: fix double free in ring reinit logic + - cred: switch to using atomic_long_t + - fuse: dax: set fc->dax to NULL in fuse_dax_conn_free() + - ALSA: hda/hdmi: add force-connect quirk for NUC5CPYB + - ALSA: hda/hdmi: add force-connect quirks for ASUSTeK Z170 variants + - ALSA: hda/realtek: Apply mute LED quirk for HP15-db + - PCI: loongson: Limit MRRS to 256 + - drm/mediatek: Add spinlock for setting vblank event in atomic_begin + - usb: aqc111: check packet for fixup for true limit + - stmmac: dwmac-loongson: Add architecture dependency + - [Config] updateconfigs for CONFIG_DWMAC_LOONGSON + - blk-throttle: fix lockdep warning of "cgroup_mutex or RCU read lock + required!" + - blk-cgroup: bypass blkcg_deactivate_policy after destroying + - bcache: avoid oversize memory allocation by small stripe_size + - bcache: remove redundant assignment to variable cur_idx + - bcache: add code comments for bch_btree_node_get() and + __bch_btree_node_alloc() + - bcache: avoid NULL checking to c->root in run_cache_set() + - platform/x86: intel_telemetry: Fix kernel doc descriptions + - HID: glorious: fix Glorious Model I HID report + - HID: add ALWAYS_POLL quirk for Apple kb + - HID: hid-asus: reset the backlight brightness level on resume + - HID: multitouch: Add quirk for HONOR GLO-GXXX touchpad + - asm-generic: qspinlock: fix queued_spin_value_unlocked() implementation + - net: usb: qmi_wwan: claim interface 4 for ZTE MF290 + - HID: hid-asus: add const to read-only outgoing usb buffer + - btrfs: do not allow non subvolume root targets for snapshot + - soundwire: stream: fix NULL pointer dereference for multi_link + - ext4: prevent the normalized size from exceeding EXT_MAX_BLOCKS + - arm64: mm: Always make sw-dirty PTEs hw-dirty in pte_modify + - team: Fix use-after-free when an option instance allocation fails + - drm/amdgpu/sdma5.2: add begin/end_use ring callbacks + - ring-buffer: Fix memory leak of free page + - tracing: Update snapshot buffer on resize if it is allocated + - ring-buffer: Do not update before stamp when switching sub-buffers + - ring-buffer: Have saved event hold the entire event + - ring-buffer: Fix writing to the buffer with max_data_size + - ring-buffer: Fix a race in rb_time_cmpxchg() for 32 bit archs + - ring-buffer: Do not try to put back write_stamp + - USB: gadget: core: adjust uevent timing on gadget unbind + - powerpc/ftrace: Create a dummy stackframe to fix stack unwind + - powerpc/ftrace: Fix stack teardown in ftrace_no_trace + - r8152: avoid to change cfg for all devices + - r8152: remove rtl_vendor_mode function + - r8152: fix the autosuspend doesn't work + - Linux 5.15.144 + * CVE-2023-32247 + - ksmbd: destroy expired sessions + * CVE-2024-22705 + - ksmbd: fix slab-out-of-bounds in smb_strndup_from_utf16() + + [ 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 + + -- Portia Stephens Fri, 12 Apr 2024 15:19:01 +1000 + linux-xilinx-zynqmp (5.15.0-1027.31) jammy; urgency=medium * jammy/linux-xilinx-zynqmp: 5.15.0-1027.31 -proposed tracker (LP: #2054500) diff -u linux-xilinx-zynqmp-5.15.0/debian.zynqmp/config/annotations linux-xilinx-zynqmp-5.15.0/debian.zynqmp/config/annotations --- linux-xilinx-zynqmp-5.15.0/debian.zynqmp/config/annotations +++ linux-xilinx-zynqmp-5.15.0/debian.zynqmp/config/annotations @@ -957,6 +957,7 @@ CONFIG_MFD_SPMI_PMIC policy<{'arm64': '-'}> CONFIG_MFD_SUN4I_GPADC policy<{'arm64': '-'}> CONFIG_MFD_SUN6I_PRCM policy<{'arm64': '-'}> +CONFIG_MFD_TI_AM335X_TSCADC policy<{'arm64': '-'}> CONFIG_MFD_TPS65086 policy<{'arm64': 'y'}> CONFIG_MICREL_PHY policy<{'arm64': 'y'}> CONFIG_MMC_BCM2835 policy<{'arm64': '-'}> @@ -968,6 +969,7 @@ CONFIG_MMC_MXC policy<{'arm64': '-'}> CONFIG_MMC_OWL policy<{'arm64': '-'}> CONFIG_MMC_QCOM_DML policy<{'arm64': '-'}> +CONFIG_MMC_SDHCI_AM654 policy<{'arm64': '-'}> CONFIG_MMC_SDHCI_BRCMSTB policy<{'arm64': '-'}> CONFIG_MMC_SDHCI_ESDHC_IMX policy<{'arm64': '-'}> CONFIG_MMC_SDHCI_IPROC policy<{'arm64': '-'}> @@ -1959,6 +1961,7 @@ CONFIG_TEST_UBSAN policy<{'arm64': '-'}> CONFIG_THUNDERX2_PMU policy<{'arm64': '-'}> CONFIG_TIMER_IMX_SYS_CTR policy<{'arm64': '-'}> +CONFIG_TI_AM335X_ADC policy<{'arm64': '-'}> CONFIG_TI_AM65_CPSW_TAS policy<{'arm64': '-'}> CONFIG_TI_DAVINCI_MDIO policy<{'arm64': '-'}> CONFIG_TI_K3_AM65_CPSW_NUSS policy<{'arm64': '-'}> @@ -1986,6 +1989,7 @@ CONFIG_TOUCHSCREEN_IPROC policy<{'arm64': '-'}> CONFIG_TOUCHSCREEN_RASPBERRYPI_FW policy<{'arm64': '-'}> CONFIG_TOUCHSCREEN_SUN4I policy<{'arm64': '-'}> +CONFIG_TOUCHSCREEN_TI_AM335X_TSC policy<{'arm64': '-'}> CONFIG_TURRIS_MOX_RWTM policy<{'arm64': '-'}> CONFIG_TYPEC_QCOM_PMIC policy<{'arm64': '-'}> CONFIG_UBIFS_FS policy<{'arm64': 'y'}> @@ -2167,6 +2171,8 @@ CONFIG_VITESSE_PHY policy<{'arm64': 'y'}> CONFIG_VLAN_8021Q policy<{'arm64': 'y'}> CONFIG_VMXNET3 policy<{'arm64': 'm'}> +CONFIG_W1 policy<{'arm64': 'y'}> +CONFIG_W1_MASTER_AMD_AXI policy<{'arm64': 'y'}> CONFIG_W1_MASTER_MXC policy<{'arm64': '-'}> CONFIG_XENFS policy<{'arm64': 'y'}> CONFIG_XEN_DEV_EVTCHN policy<{'arm64': 'y'}> diff -u linux-xilinx-zynqmp-5.15.0/debian.zynqmp/control.d/flavour-control.stub linux-xilinx-zynqmp-5.15.0/debian.zynqmp/control.d/flavour-control.stub --- linux-xilinx-zynqmp-5.15.0/debian.zynqmp/control.d/flavour-control.stub +++ linux-xilinx-zynqmp-5.15.0/debian.zynqmp/control.d/flavour-control.stub @@ -29,7 +29,7 @@ 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, initramfs-tools | linux-initramfs-tool -Breaks: flash-kernel (<< 3.90ubuntu2) [arm64 armhf], s390-tools (<< 2.3.0-0ubuntu3) [s390x] +Breaks: flash-kernel (<< 3.104ubuntu20) [arm64 armhf], s390-tools (<< 2.3.0-0ubuntu3) [s390x] Conflicts: linux-image=SIGN-PEER-PKG=-PKGVER-ABINUM-FLAVOUR Suggests: fdutils, linux-doc | SRCPKGNAME-source-PKGVER, SRCPKGNAME-tools, linux-headers-PKGVER-ABINUM-FLAVOUR, linux-modules-extra-PKGVER-ABINUM-FLAVOUR Description: Linux kernel image for version PKGVER on DESC reverted: --- linux-xilinx-zynqmp-5.15.0/debian.zynqmp/etc/getabis +++ linux-xilinx-zynqmp-5.15.0.orig/debian.zynqmp/etc/getabis @@ -1,14 +0,0 @@ -repo_list=( - "http://archive.ubuntu.com/ubuntu/pool/main/l/linux-xilinx-zynqmp" - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-xilinx-zynqmp" - "http://archive.ubuntu.com/ubuntu/pool/universe/l/linux-xilinx-zynqmp" - "http://ports.ubuntu.com/ubuntu-ports/pool/universe/l/linux-xilinx-zynqmp" - "http://ppa.launchpad.net/canonical-kernel-team/ppa/ubuntu/pool/main/l/linux-xilinx-zynqmp" - "http://ppa.launchpad.net/canonical-kernel-team/ppa2/ubuntu/pool/main/l/linux-xilinx-zynqmp" - "http://ppa.launchpad.net/canonical-kernel-team/unstable/ubuntu/pool/main/l/linux-xilinx-zynqmp" - "http://ppa.launchpad.net/canonical-kernel-team/bootstrap/ubuntu/pool/main/l/linux-xilinx-zynqmp" -) - -package_prefixes linux-buildinfo - -getall arm64 xilinx-zynqmp diff -u linux-xilinx-zynqmp-5.15.0/debian.zynqmp/reconstruct linux-xilinx-zynqmp-5.15.0/debian.zynqmp/reconstruct --- linux-xilinx-zynqmp-5.15.0/debian.zynqmp/reconstruct +++ linux-xilinx-zynqmp-5.15.0/debian.zynqmp/reconstruct @@ -5,7 +5,6 @@ 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' @@ -17,10 +16,8 @@ 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' @@ -31,10 +28,8 @@ 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' @@ -56,8 +51,6 @@ chmod +x 'snapcraft.yaml' 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/dma/xilinx/zynqmp_dma.txt' @@ -111,6 +104,7 @@ 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/mellanox/mlxbf_gige/mlxbf_gige_gpio.c' rm -f 'drivers/net/vxlan.c' rm -f 'drivers/of/of_net.c' rm -f 'drivers/pinctrl/ralink/pinctrl-rt2880.c' diff -u linux-xilinx-zynqmp-5.15.0/debian.zynqmp/tracking-bug linux-xilinx-zynqmp-5.15.0/debian.zynqmp/tracking-bug --- linux-xilinx-zynqmp-5.15.0/debian.zynqmp/tracking-bug +++ linux-xilinx-zynqmp-5.15.0/debian.zynqmp/tracking-bug @@ -1 +1 @@ -2054500 d2024.02.07-1 +2059494 2024.04.01-1 diff -u linux-xilinx-zynqmp-5.15.0/debian/changelog linux-xilinx-zynqmp-5.15.0/debian/changelog --- linux-xilinx-zynqmp-5.15.0/debian/changelog +++ linux-xilinx-zynqmp-5.15.0/debian/changelog @@ -1,3 +1,2543 @@ +linux-xilinx-zynqmp (5.15.0-1028.32) jammy; urgency=medium + + * jammy/linux-xilinx-zynqmp: 5.15.0-1028.32 -proposed tracker (LP: #2059494) + + * Packaging resync (LP: #1786013) + - [Packaging] drop getabis data + - [Packaging] drop ABI data + - [Packaging] debian.zynqmp/dkms-versions -- update from kernel-versions + (main/2024.04.01) + + * Jammy update: v5.15.148 upstream stable release (LP: #2055145) + - [Config] update annotations for CONFIG_MMC_SDHCI_AM654 + + * Jammy update: v5.15.149 upstream stable release (LP: #2059014) + - [Config] updateconfigs for MFD_TI_AM335X_TSCADC + + * Backport AXI 1-wire host driver (LP: #2058707) + - dt-bindings: w1: Add AMD AXI w1 host and MAINTAINERS entry + - w1: Add AXI 1-wire host driver for AMD programmable logic IP core + - w1: amd_axi_w1: Explicitly include correct DT includes + - [Config] Enable CONFIG_W1_MASTER_AMD_AXI + + * Unsupported platform 'ZynqMP KV260 revB (LP: #2058321) + - [Packaging] Add breaks on flash-kernel older than 3.104ubuntu20 + + * Update on-chip oscillator clock nodes for Kria (LP: #2055241) + - arm64: zynqmp: Sync clock labels with kr260 revB + - arm64: zynqmp: Describe 25MHz fixed clock for PL GEMs + - arm64: zynqmp: Fix kr260 clock wiring + + [ Ubuntu: 5.15.0-104.114 ] + + * jammy/linux: 5.15.0-104.114 -proposed tracker (LP: #2059497) + * Drop fips-checks script from trees (LP: #2055083) + - [Packaging] Remove fips-checks script + * alsa/realtek: adjust max output valume for headphone on 2 LG machines + (LP: #2058573) + - ALSA: hda/realtek: fix the hp playback volume issue for LG machines + * A general-proteciton exception during guest migration to unsupported PKRU + machine (LP: #2032164) + - x86/fpu: Allow caller to constrain xfeatures when copying to uabi buffer + - KVM: x86: Constrain guest-supported xfeatures only at KVM_GET_XSAVE{2} + * [ICX] [SPR] [ipc/msg] performance: Mitigate the lock contention with percpu + counter (LP: #2058485) + - ipc: check checkpoint_restore_ns_capable() to modify C/R proc files + - ipc/ipc_sysctl.c: remove fallback for !CONFIG_PROC_SYSCTL + - ipc: Store mqueue sysctls in the ipc namespace + - ipc: Store ipc sysctls in the ipc namespace + - ipc: Use the same namespace to modify and validate + - ipc: Remove extra1 field abuse to pass ipc namespace + - ipc: Check permissions for checkpoint_restart sysctls at open time + - percpu: add percpu_counter_add_local and percpu_counter_sub_local + - ipc/msg: mitigate the lock contention with percpu counter + * Remove getabis scripts (LP: #2059143) + - [Packaging] Remove getabis + * Jammy update: v5.15.149 upstream stable release (LP: #2059014) + - ksmbd: free ppace array on error in parse_dacl + - ksmbd: don't allow O_TRUNC open on read-only share + - ksmbd: validate mech token in session setup + - ksmbd: fix UAF issue in ksmbd_tcp_new_connection() + - ksmbd: only v2 leases handle the directory + - iio: adc: ad7091r: Set alert bit in config register + - iio: adc: ad7091r: Allow users to configure device events + - iio: adc: ad7091r: Enable internal vref if external vref is not supplied + - dmaengine: fix NULL pointer in channel unregistration function + - scsi: ufs: core: Simplify power management during async scan + - scsi: ufs: core: Remove the ufshcd_hba_exit() call from ufshcd_async_scan() + - iio:adc:ad7091r: Move exports into IIO_AD7091R namespace. + - ext4: allow for the last group to be marked as trimmed + - btrfs: sysfs: validate scrub_speed_max value + - crypto: api - Disallow identical driver names + - PM: hibernate: Enforce ordering during image compression/decompression + - hwrng: core - Fix page fault dead lock on mmap-ed hwrng + - crypto: s390/aes - Fix buffer overread in CTR mode + - media: imx355: Enable runtime PM before registering async sub-device + - rpmsg: virtio: Free driver_override when rpmsg_remove() + - media: ov9734: Enable runtime PM before registering async sub-device + - mips: Fix max_mapnr being uninitialized on early stages + - bus: mhi: host: Drop chan lock before queuing buffers + - bus: mhi: host: Add spinlock to protect WP access when queueing TREs + - parisc/firmware: Fix F-extend for PDC addresses + - async: Split async_schedule_node_domain() + - async: Introduce async_schedule_dev_nocall() + - arm64: dts: qcom: sc7180: fix USB wakeup interrupt types + - arm64: dts: qcom: sdm845: fix USB wakeup interrupt types + - arm64: dts: qcom: sm8150: fix USB wakeup interrupt types + - arm64: dts: qcom: sdm845: fix USB DP/DM HS PHY interrupts + - lsm: new security_file_ioctl_compat() hook + - scripts/get_abi: fix source path leak + - mmc: core: Use mrq.sbc in close-ended ffu + - mmc: mmc_spi: remove custom DMA mapped buffers + - rtc: Adjust failure return code for cmos_set_alarm() + - nouveau/vmm: don't set addr on the fail path to avoid warning + - ubifs: ubifs_symlink: Fix memleak of inode->i_link in error path + - rename(): fix the locking of subdirectories + - ksmbd: set v2 lease version on lease upgrade + - ksmbd: fix potential circular locking issue in smb2_set_ea() + - ksmbd: don't increment epoch if current state and request state are same + - ksmbd: send lease break notification on FILE_RENAME_INFORMATION + - ksmbd: Add missing set_freezable() for freezable kthread + - net/smc: fix illegal rmb_desc access in SMC-D connection dump + - tcp: make sure init the accept_queue's spinlocks once + - bnxt_en: Wait for FLR to complete during probe + - vlan: skip nested type that is not IFLA_VLAN_QOS_MAPPING + - llc: make llc_ui_sendmsg() more robust against bonding changes + - llc: Drop support for ETH_P_TR_802_2. + - net/rds: Fix UBSAN: array-index-out-of-bounds in rds_cmsg_recv + - tracing: Ensure visibility when inserting an element into tracing_map + - afs: Hide silly-rename files from userspace + - tcp: Add memory barrier to tcp_push() + - netlink: fix potential sleeping issue in mqueue_flush_file + - ipv6: init the accept_queue's spinlocks in inet6_create + - net/mlx5: DR, Use the right GVMI number for drop action + - net/mlx5: DR, Align mlx5dv_dr API vport action with FW behavior + - net/mlx5: DR, Can't go to uplink vport on RX rule + - net/mlx5e: fix a double-free in arfs_create_groups + - net/mlx5e: fix a potential double-free in fs_any_create_groups + - overflow: Allow mixed type arguments + - netfilter: nft_limit: reject configurations that cause integer overflow + - netfilter: nf_tables: restrict anonymous set and map names to 16 bytes + - netfilter: nf_tables: validate NFPROTO_* family + - net: stmmac: Wait a bit for the reset to take effect + - net: mvpp2: clear BM pool before initialization + - selftests: netdevsim: fix the udp_tunnel_nic test + - fjes: fix memleaks in fjes_hw_setup + - net: fec: fix the unhandled context fault from smmu + - btrfs: fix infinite directory reads + - btrfs: set last dir index to the current last index when opening dir + - btrfs: refresh dir last index during a rewinddir(3) call + - btrfs: fix race between reading a directory and adding entries to it + - btrfs: avoid copying BTRFS_ROOT_SUBVOL_DEAD flag to snapshot of subvolume + being deleted + - btrfs: ref-verify: free ref cache before clearing mount opt + - btrfs: tree-checker: fix inline ref size in error messages + - btrfs: don't warn if discard range is not aligned to sector + - btrfs: defrag: reject unknown flags of btrfs_ioctl_defrag_range_args + - btrfs: don't abort filesystem when attempting to snapshot deleted subvolume + - rbd: don't move requests to the running list on errors + - exec: Fix error handling in begin_new_exec() + - wifi: iwlwifi: fix a memory corruption + - hv_netvsc: Calculate correct ring size when PAGE_SIZE is not 4 Kbytes + - netfilter: nft_chain_filter: handle NETDEV_UNREGISTER for inet/ingress + basechain + - firmware: arm_scmi: Check mailbox/SMT channel for consistency + - xfs: read only mounts with fsopen mount API are busted + - gpiolib: acpi: Ignore touchpad wakeup on GPD G1619-04 + - drm: Don't unref the same fb many times by mistake due to deadlock handling + - drm/bridge: nxp-ptn3460: fix i2c_master_send() error checking + - drm/tidss: Fix atomic_flush check + - drm/bridge: nxp-ptn3460: simplify some error checking + - PM: core: Remove unnecessary (void *) conversions + - PM: sleep: Fix possible deadlocks in core system-wide PM code + - bus: mhi: host: Rename "struct mhi_tre" to "struct mhi_ring_element" + - bus: mhi: host: Add alignment check for event ring read pointer + - fs/pipe: move check to pipe_has_watch_queue() + - pipe: wakeup wr_wait after setting max_usage + - ARM: dts: qcom: sdx55: fix USB wakeup interrupt types + - ARM: dts: samsung: exynos4210-i9100: Unconditionally enable LDO12 + - ARM: dts: qcom: sdx55: fix pdc '#interrupt-cells' + - ARM: dts: qcom: sdx55: fix USB DP/DM HS PHY interrupts + - ARM: dts: qcom: sdx55: fix USB SS wakeup + - media: mtk-jpeg: Fix use after free bug due to error path handling in + mtk_jpeg_dec_device_run + - mm: use __pfn_to_section() instead of open coding it + - mm/sparsemem: fix race in accessing memory_section->usage + - PM / devfreq: Fix buffer overflow in trans_stat_show + - btrfs: add definition for EXTENT_TREE_V2 + - ksmbd: fix global oob in ksmbd_nl_policy + - cpufreq: intel_pstate: Drop redundant intel_pstate_get_hwp_cap() call + - cpufreq: intel_pstate: Refine computation of P-state for given frequency + - drm: panel-simple: add missing bus flags for Tianma tm070jvhg[30/33] + - drm/exynos: fix accidental on-stack copy of exynos_drm_plane + - drm/exynos: gsc: minor fix for loop iteration in gsc_runtime_resume + - gpio: eic-sprd: Clear interrupt after set the interrupt type + - spi: bcm-qspi: fix SFDP BFPT read by usig mspi read + - mips: Call lose_fpu(0) before initializing fcr31 in mips_set_personality_nan + - tick/sched: Preserve number of idle sleeps across CPU hotplug events + - x86/entry/ia32: Ensure s32 is sign extended to s64 + - powerpc/mm: Fix null-pointer dereference in pgtable_cache_add + - arm64: irq: set the correct node for VMAP stack + - drivers/perf: pmuv3: don't expose SW_INCR event in sysfs + - powerpc: Fix build error due to is_valid_bugaddr() + - powerpc/mm: Fix build failures due to arch_reserved_kernel_pages() + - powerpc/64s: Fix CONFIG_NUMA=n build due to create_section_mapping() + - x86/boot: Ignore NMIs during very early boot + - powerpc: pmd_move_must_withdraw() is only needed for + CONFIG_TRANSPARENT_HUGEPAGE + - powerpc/lib: Validate size for vector operations + - x86/mce: Mark fatal MCE's page as poison to avoid panic in the kdump kernel + - perf/core: Fix narrow startup race when creating the perf nr_addr_filters + sysfs file + - debugobjects: Stop accessing objects after releasing hash bucket lock + - regulator: core: Only increment use_count when enable_count changes + - audit: Send netlink ACK before setting connection in auditd_set + - ACPI: video: Add quirk for the Colorful X15 AT 23 Laptop + - PNP: ACPI: fix fortify warning + - ACPI: extlog: fix NULL pointer dereference check + - PM / devfreq: Synchronize devfreq_monitor_[start/stop] + - ACPI: APEI: set memory failure flags as MF_ACTION_REQUIRED on synchronous + events + - FS:JFS:UBSAN:array-index-out-of-bounds in dbAdjTree + - jfs: fix slab-out-of-bounds Read in dtSearch + - jfs: fix array-index-out-of-bounds in dbAdjTree + - pstore/ram: Fix crash when setting number of cpus to an odd number + - crypto: octeontx2 - Fix cptvf driver cleanup + - crypto: stm32/crc32 - fix parsing list of devices + - afs: fix the usage of read_seqbegin_or_lock() in afs_lookup_volume_rcu() + - afs: fix the usage of read_seqbegin_or_lock() in afs_find_server*() + - rxrpc_find_service_conn_rcu: fix the usage of read_seqbegin_or_lock() + - jfs: fix array-index-out-of-bounds in diNewExt + - arch: consolidate arch_irq_work_raise prototypes + - s390/ptrace: handle setting of fpc register correctly + - KVM: s390: fix setting of fpc register + - SUNRPC: Fix a suspicious RCU usage warning + - ecryptfs: Reject casefold directory inodes + - ext4: fix inconsistent between segment fstrim and full fstrim + - ext4: unify the type of flexbg_size to unsigned int + - ext4: remove unnecessary check from alloc_flex_gd() + - ext4: avoid online resizing failures due to oversized flex bg + - wifi: rt2x00: restart beacon queue when hardware reset + - selftests/bpf: satisfy compiler by having explicit return in btf test + - selftests/bpf: Fix pyperf180 compilation failure with clang18 + - selftests/bpf: Fix issues in setup_classid_environment() + - scsi: lpfc: Fix possible file string name overflow when updating firmware + - PCI: Add no PM reset quirk for NVIDIA Spectrum devices + - bonding: return -ENOMEM instead of BUG in alb_upper_dev_walk + - scsi: arcmsr: Support new PCI device IDs 1883 and 1886 + - ARM: dts: imx7d: Fix coresight funnel ports + - ARM: dts: imx7s: Fix lcdif compatible + - ARM: dts: imx7s: Fix nand-controller #size-cells + - wifi: ath9k: Fix potential array-index-out-of-bounds read in + ath9k_htc_txstatus() + - bpf: Add map and need_defer parameters to .map_fd_put_ptr() + - scsi: libfc: Don't schedule abort twice + - scsi: libfc: Fix up timeout error in fc_fcp_rec_error() + - bpf: Set uattr->batch.count as zero before batched update or deletion + - ARM: dts: rockchip: fix rk3036 hdmi ports node + - ARM: dts: imx25/27-eukrea: Fix RTC node name + - ARM: dts: imx: Use flash@0,0 pattern + - ARM: dts: imx27: Fix sram node + - ARM: dts: imx1: Fix sram node + - ionic: pass opcode to devcmd_wait + - block/rnbd-srv: Check for unlikely string overflow + - ARM: dts: imx25: Fix the iim compatible string + - ARM: dts: imx25/27: Pass timing0 + - ARM: dts: imx27-apf27dev: Fix LED name + - ARM: dts: imx23-sansa: Use preferred i2c-gpios properties + - ARM: dts: imx23/28: Fix the DMA controller node name + - net: dsa: mv88e6xxx: Fix mv88e6352_serdes_get_stats error path + - block: prevent an integer overflow in bvec_try_merge_hw_page + - md: Whenassemble the array, consult the superblock of the freshest device + - arm64: dts: qcom: msm8996: Fix 'in-ports' is a required property + - arm64: dts: qcom: msm8998: Fix 'out-ports' is a required property + - wifi: rtl8xxxu: Add additional USB IDs for RTL8192EU devices + - libbpf: Fix NULL pointer dereference in bpf_object__collect_prog_relos + - ALSA: usb-audio: Add delay quirk for MOTU M Series 2nd revision + - wifi: rtlwifi: rtl8723{be,ae}: using calculate_bit_shift() + - wifi: cfg80211: free beacon_ies when overridden from hidden BSS + - Bluetooth: qca: Set both WIDEBAND_SPEECH and LE_STATES quirks for QCA2066 + - Bluetooth: L2CAP: Fix possible multiple reject send + - bridge: cfm: fix enum typo in br_cc_ccm_tx_parse + - i40e: Fix VF disable behavior to block all traffic + - octeontx2-af: Fix max NPC MCAM entry check while validating ref_entry + - f2fs: fix to check return value of f2fs_reserve_new_block() + - ALSA: hda: Refer to correct stream index at loops + - ASoC: doc: Fix undefined SND_SOC_DAPM_NOPM argument + - fast_dput(): handle underflows gracefully + - RDMA/IPoIB: Fix error code return in ipoib_mcast_join + - drm/amd/display: Fix tiled display misalignment + - f2fs: fix write pointers on zoned device after roll forward + - drm/drm_file: fix use of uninitialized variable + - drm/framebuffer: Fix use of uninitialized variable + - drm/mipi-dsi: Fix detach call without attach + - media: stk1160: Fixed high volume of stk1160_dbg messages + - media: rockchip: rga: fix swizzling for RGB formats + - PCI: add INTEL_HDA_ARL to pci_ids.h + - ALSA: hda: Intel: add HDA_ARL PCI ID support + - ALSA: hda: intel-dspcfg: add filters for ARL-S and ARL + - media: rkisp1: Drop IRQF_SHARED + - f2fs: fix to tag gcing flag on page during block migration + - drm/exynos: Call drm_atomic_helper_shutdown() at shutdown/unbind time + - IB/ipoib: Fix mcast list locking + - media: ddbridge: fix an error code problem in ddb_probe + - media: i2c: imx335: Fix hblank min/max values + - drm/msm/dpu: Ratelimit framedone timeout msgs + - drm/amdgpu: fix ftrace event amdgpu_bo_move always move on same heap + - clk: hi3620: Fix memory leak in hi3620_mmc_clk_init() + - clk: mmp: pxa168: Fix memory leak in pxa168_clk_init() + - watchdog: it87_wdt: Keep WDTCTRL bit 3 unmodified for IT8784/IT8786 + - clk: imx: scu: Fix memory leak in __imx_clk_gpr_scu() + - clk: imx: clk-imx8qxp: fix LVDS bypass, pixel and phy clocks + - drm/amdgpu: Let KFD sync with VM fences + - drm/amdgpu: Drop 'fence' check in 'to_amdgpu_amdkfd_fence()' + - ALSA: hda/conexant: Fix headset auto detect fail in cx8070 and SN6140 + - leds: trigger: panic: Don't register panic notifier if creating the trigger + failed + - um: Fix naming clash between UML and scheduler + - um: Don't use vfprintf() for os_info() + - um: net: Fix return type of uml_net_start_xmit() + - um: time-travel: fix time corruption + - i3c: master: cdns: Update maximum prescaler value for i2c clock + - xen/gntdev: Fix the abuse of underlying struct page in DMA-buf import + - mfd: ti_am335x_tscadc: Fix TI SoC dependencies + - [Config] updateconfigs for MFD_TI_AM335X_TSCADC + - mailbox: arm_mhuv2: Fix a bug for mhuv2_sender_interrupt + - PCI: Only override AMD USB controller if required + - PCI: switchtec: Fix stdev_release() crash after surprise hot remove + - perf cs-etm: Bump minimum OpenCSD version to ensure a bugfix is present + - usb: hub: Replace hardcoded quirk value with BIT() macro + - selftests/sgx: Fix linker script asserts + - tty: allow TIOCSLCKTRMIOS with CAP_CHECKPOINT_RESTORE + - fs/kernfs/dir: obey S_ISGID + - PCI: Fix 64GT/s effective data rate calculation + - PCI/AER: Decode Requester ID when no error info found + - libsubcmd: Fix memory leak in uniq() + - drm/amdkfd: Fix lock dependency warning + - virtio_net: Fix "‘%d’ directive writing between 1 and 11 bytes into a region + of size 10" warnings + - blk-mq: fix IO hang from sbitmap wakeup race + - ceph: fix deadlock or deadcode of misusing dget() + - drm/amd/powerplay: Fix kzalloc parameter 'ATOM_Tonga_PPM_Table' in + 'get_platform_power_management_table()' + - drm/amdgpu: Release 'adev->pm.fw' before return in + 'amdgpu_device_need_post()' + - drm/amdkfd: Fix 'node' NULL check in 'svm_range_get_range_boundaries()' + - perf: Fix the nr_addr_filters fix + - wifi: cfg80211: fix RCU dereference in __cfg80211_bss_update + - drm: using mul_u32_u32() requires linux/math64.h + - scsi: isci: Fix an error code problem in isci_io_request_build() + - scsi: core: Move scsi_host_busy() out of host lock for waking up EH handler + - selftests: net: give more time for GRO aggregation + - ip6_tunnel: use dev_sw_netstats_rx_add() + - ip6_tunnel: make sure to pull inner header in __ip6_tnl_rcv() + - tcp: add sanity checks to rx zerocopy + - ixgbe: Remove non-inclusive language + - ixgbe: Refactor returning internal error codes + - ixgbe: Refactor overtemp event handling + - ixgbe: Fix an error handling path in ixgbe_read_iosf_sb_reg_x550() + - ipv6: Ensure natural alignment of const ipv6 loopback and router addresses + - llc: call sock_orphan() at release time + - bridge: mcast: fix disabled snooping after long uptime + - netfilter: nf_tables: restrict tunnel object to NFPROTO_NETDEV + - netfilter: nf_log: replace BUG_ON by WARN_ON_ONCE when putting logger + - netfilter: nft_ct: sanitize layer 3 and 4 protocol number in custom + expectations + - net: ipv4: fix a memleak in ip_setup_cork + - af_unix: fix lockdep positive in sk_diag_dump_icons() + - SAUCE: Sync apparmor copy of af_unix.c + - selftests: net: fix available tunnels detection + - net: sysfs: Fix /sys/class/net/ path + - arm64: irq: set the correct node for shadow call stack + - gve: Fix use-after-free vulnerability + - HID: apple: Add support for the 2021 Magic Keyboard + - HID: apple: Add 2021 magic keyboard FN key mapping + - bonding: remove print in bond_verify_device_path + - ASoC: codecs: lpass-wsa-macro: fix compander volume hack + - dmaengine: fsl-dpaa2-qdma: Fix the size of dma pools + - dmaengine: ti: k3-udma: Report short packet errors + - dmaengine: fsl-qdma: Fix a memory leak related to the status queue DMA + - dmaengine: fsl-qdma: Fix a memory leak related to the queue command DMA + - phy: renesas: rcar-gen3-usb2: Fix returning wrong error code + - dmaengine: fix is_slave_direction() return false when DMA_DEV_TO_DEV + - phy: ti: phy-omap-usb2: Fix NULL pointer dereference for SRP + - drm/msm/dp: return correct Colorimetry for DP_TEST_DYNAMIC_RANGE_CEA case + - net: stmmac: xgmac: fix handling of DPP safety error for DMA channels + - selftests: net: cut more slack for gro fwd tests. + - selftests: net: avoid just another constant wait + - tunnels: fix out of bounds access when building IPv6 PMTU error + - atm: idt77252: fix a memleak in open_card_ubr0 + - octeontx2-pf: Fix a memleak otx2_sq_init + - hwmon: (aspeed-pwm-tacho) mutex for tach reading + - hwmon: (coretemp) Fix out-of-bounds memory access + - hwmon: (coretemp) Fix bogus core_id to attr name mapping + - inet: read sk->sk_family once in inet_recv_error() + - rxrpc: Fix response to PING RESPONSE ACKs to a dead call + - tipc: Check the bearer type before calling tipc_udp_nl_bearer_add() + - af_unix: Call kfree_skb() for dead unix_(sk)->oob_skb in GC. + - ppp_async: limit MRU to 64K + - netfilter: nft_compat: reject unused compat flag + - netfilter: nft_compat: restrict match/target protocol to u16 + - drm/amd/display: Fix multiple memory leaks reported by coverity + - drm/amd/display: Implement bounds check for stream encoder creation in + DCN301 + - netfilter: nft_ct: reject direction for ct id + - netfilter: nft_set_pipapo: store index in scratch maps + - netfilter: nft_set_pipapo: add helper to release pcpu scratch area + - netfilter: nft_set_pipapo: remove scratch_aligned pointer + - fs/ntfs3: Fix an NULL dereference bug + - scsi: core: Move scsi_host_busy() out of host lock if it is for per-command + - blk-iocost: Fix an UBSAN shift-out-of-bounds warning + - drivers: lkdtm: fix clang -Wformat warning + - ALSA: usb-audio: Add a quirk for Yamaha YIT-W12TX transmitter + - USB: serial: qcserial: add new usb-id for Dell Wireless DW5826e + - USB: serial: option: add Fibocom FM101-GL variant + - USB: serial: cp210x: add ID for IMST iM871A-USB + - usb: dwc3: host: Set XHCI_SG_TRB_CACHE_SIZE_QUIRK + - usb: host: xhci-plat: Add support for XHCI_SG_TRB_CACHE_SIZE_QUIRK + - hrtimer: Report offline hrtimer enqueue + - Input: i8042 - fix strange behavior of touchpad on Clevo NS70PU + - Input: atkbd - skip ATKBD_CMD_SETLEDS when skipping ATKBD_CMD_GETID + - clocksource: Skip watchdog check for large watchdog intervals + - net: stmmac: xgmac: use #define for string constants + - net: stmmac: xgmac: fix a typo of register name in DPP safety handling + - btrfs: forbid creating subvol qgroups + - btrfs: forbid deleting live subvol qgroup + - btrfs: send: return EOPNOTSUPP on unknown flags + - of: unittest: Fix compile in the non-dynamic case + - wifi: iwlwifi: Fix some error codes + - net: openvswitch: limit the number of recursions from action sets + - spi: ppc4xx: Drop write-only variable + - ASoC: rt5645: Fix deadlock in rt5645_jack_detect_work() + - net: sysfs: Fix /sys/class/net/ path for statistics + - MIPS: Add 'memory' clobber to csum_ipv6_magic() inline assembler + - i40e: Fix waiting for queues of all VSIs to be disabled + - scs: add CONFIG_MMU dependency for vfree_atomic() + - tracing/trigger: Fix to return error if failed to alloc snapshot + - mm/writeback: fix possible divide-by-zero in wb_dirty_limits(), again + - scsi: storvsc: Fix ring buffer size calculation + - ALSA: hda/realtek: Fix the external mic not being recognised for Acer Swift + 1 SF114-32 + - ALSA: hda/realtek: Enable Mute LED on HP Laptop 14-fq0xxx + - HID: i2c-hid-of: fix NULL-deref on failed power up + - HID: wacom: generic: Avoid reporting a serial of '0' to userspace + - HID: wacom: Do not register input devices until after hid_hw_start + - iio: hid-sensor-als: Return 0 for HID_USAGE_SENSOR_TIME_TIMESTAMP + - usb: ucsi_acpi: Fix command completion handling + - USB: hub: check for alternate port before enabling A_ALT_HNP_SUPPORT + - usb: f_mass_storage: forbid async queue when shutdown happen + - usb: dwc3: gadget: Fix NULL pointer dereference in dwc3_gadget_suspend + - media: ir_toy: fix a memleak in irtoy_tx + - powerpc/kasan: Fix addr error caused by page alignment + - i2c: i801: Remove i801_set_block_buffer_mode + - i2c: i801: Fix block process call transactions + - modpost: trim leading spaces when processing source files list + - mptcp: fix data re-injection from stale subflow + - scsi: Revert "scsi: fcoe: Fix potential deadlock on &fip->ctlr_lock" + - Revert "drm/amd: flush any delayed gfxoff on suspend entry" + - firewire: core: correct documentation of fw_csr_string() kernel API + - kbuild: Fix changing ELF file type for output of gen_btf for big endian + - nfc: nci: free rx_data_reassembly skb on NCI device cleanup + - net: hsr: remove WARN_ONCE() in send_hsr_supervision_frame() + - xen-netback: properly sync TX responses + - ALSA: hda/realtek: Enable headset mic on Vaio VJFE-ADL + - ASoC: codecs: wcd938x: handle deferred probe + - binder: signal epoll threads of self-work + - misc: fastrpc: Mark all sessions as invalid in cb_remove + - ext4: fix double-free of blocks due to wrong extents moved_len + - tracing: Fix wasted memory in saved_cmdlines logic + - staging: iio: ad5933: fix type mismatch regression + - iio: magnetometer: rm3100: add boundary check for the value read from + RM3100_REG_TMRC + - iio: core: fix memleak in iio_device_register_sysfs + - iio: accel: bma400: Fix a compilation problem + - media: rc: bpf attach/detach requires write permission + - drm/prime: Support page array >= 4GB + - hv_netvsc: Fix race condition between netvsc_probe and netvsc_remove + - ring-buffer: Clean ring_buffer_poll_wait() error return + - serial: max310x: set default value when reading clock ready bit + - serial: max310x: improve crystal stable clock detection + - serial: max310x: fail probe if clock crystal is unstable + - powerpc/64: Set task pt_regs->link to the LR value on scv entry + - x86/Kconfig: Transmeta Crusoe is CPU family 5, not 6 + - x86/mm/ident_map: Use gbpages only where full GB page should be mapped. + - mmc: slot-gpio: Allow non-sleeping GPIO ro + - ALSA: hda/conexant: Add quirk for SWS JS201D + - nilfs2: fix data corruption in dsync block recovery for small block sizes + - nilfs2: fix hang in nilfs_lookup_dirty_data_buffers() + - crypto: ccp - Fix null pointer dereference in __sev_platform_shutdown_locked + - nfp: use correct macro for LengthSelect in BAR config + - nfp: flower: prevent re-adding mac index for bonded port + - wifi: mac80211: reload info pointer in ieee80211_tx_dequeue() + - irqchip/irq-brcmstb-l2: Add write memory barrier before exit + - irqchip/gic-v3-its: Fix GICv4.1 VPE affinity update + - net: ethernet: ti: cpsw: enable mac_managed_pm to fix mdio + - s390/qeth: Fix potential loss of L3-IP@ in case of network issues + - net: ethernet: ti: cpsw_new: enable mac_managed_pm to fix mdio + - ceph: prevent use-after-free in encode_cap_msg() + - mm: hugetlb pages should not be reserved by shmat() if SHM_NORESERVE + - of: property: fix typo in io-channels + - can: j1939: prevent deadlock by changing j1939_socks_lock to rwlock + - can: j1939: Fix UAF in j1939_sk_match_filter during + setsockopt(SO_J1939_FILTER) + - pmdomain: core: Move the unused cleanup to a _sync initcall + - tracing: Inform kmemleak of saved_cmdlines allocation + - af_unix: Fix task hung while purging oob_skb in GC. + - dma-buf: add dma_fence_timestamp helper + - bus: moxtet: Add spi device table + - crypto: lib/mpi - Fix unexpected pointer access in mpi_ec_init + - usb: dwc3: gadget: Wait for ep0 xfers to complete during dequeue + - usb: dwc3: ep0: Don't prepare beyond Setup stage + - usb: dwc3: gadget: Only End Transfer for ep0 data phase + - usb: dwc3: gadget: Delay issuing End Transfer + - usb: dwc3: Fix ep0 handling when getting reset while doing control transfer + - usb: dwc3: gadget: Force sending delayed status during soft disconnect + - usb: dwc3: gadget: Submit endxfer command if delayed during disconnect + - usb: dwc3: gadget: Stall and restart EP0 if host is unresponsive + - usb: dwc3: gadget: Refactor EP0 forced stall/restart into a separate API + - usb: dwc3: gadget: Handle EP0 request dequeuing properly + - usb: dwc3: gadget: Queue PM runtime idle on disconnect event + - serial: 8250_exar: Fill in rs485_supported + - serial: 8250_exar: Set missing rs485_supported flag + - fbdev/defio: Early-out if page is already enlisted + - fbdev: Don't sort deferred-I/O pages by default + - fbdev: defio: fix the pagelist corruption + - fbdev: Track deferred-I/O pages in pageref struct + - fbdev: Rename pagelist to pagereflist for deferred I/O + - fbdev: Fix invalid page access after closing deferred I/O devices + - fbdev: Fix incorrect page mapping clearance at fb_deferred_io_release() + - fbdev: flush deferred IO before closing + - scripts/decode_stacktrace.sh: support old bash version + - scripts: decode_stacktrace: demangle Rust symbols + - scripts/decode_stacktrace.sh: optionally use LLVM utilities + - netfilter: ipset: fix performance regression in swap operation + - hrtimer: Ignore slack time for RT tasks in schedule_hrtimeout_range() + - net: prevent mss overflow in skb_segment() + - netfilter: ipset: Missing gc cancellations fixed + - sched/membarrier: reduce the ability to hammer on sys_membarrier + - nilfs2: fix potential bug in end_buffer_async_write + - nilfs2: replace WARN_ONs for invalid DAT metadata block requests + - arm64: Subscribe Microsoft Azure Cobalt 100 to ARM Neoverse N2 errata + - PM: runtime: Have devm_pm_runtime_enable() handle + pm_runtime_dont_use_autosuspend() + - drm/msm/dsi: Enable runtime PM + - net: bcmgenet: Fix EEE implementation + - fs/ntfs3: Add null pointer checks + - smb3: Replace smb2pdu 1-element arrays with flex-arrays + - staging: fbtft: core: set smem_len before fb_deferred_io_init call + - usb: dwc3: gadget: Don't delay End Transfer on delayed_status + - usb: dwc3: gadget: Execute gadget stop after halting the controller + - media: Revert "media: rkisp1: Drop IRQF_SHARED" + - usb: dwc3: gadget: Ignore End Transfer delay on teardown + - Linux 5.15.149 + * Jammy update: v5.15.149 upstream stable release (LP: #2059014) // + CVE-2023-52603 + - UBSAN: array-index-out-of-bounds in dtSplitRoot + * CVE-2023-52600 + - jfs: fix uaf in jfs_evict_inode + * CVE-2023-24023 + - Bluetooth: Add more enc key size check + * Fix headphone mic detection issue on ALC897 (LP: #2056418) + - ALSA: hda/realtek - Fix headset Mic no show at resume back for Lenovo ALC897 + platform + * CVE-2024-26581 + - netfilter: nft_set_rbtree: skip end interval element from gc + * CVE-2023-6039 + - timers: Replace BUG_ON()s + * Problems with HVCS and hotplugging (LP: #2056373) + - hvcs: Fix hvcs port reference counting + - hvcs: Use dev_groups to manage hvcs device attributes + - hvcs: Use driver groups to manage driver attributes + - hvcs: Get reference to tty in remove + - hvcs: Use vhangup in hotplug remove + - hvcs: Synchronize hotplug remove with port free + * KVM: arm64: softlockups in stage2_apply_range (LP: #2056227) + - KVM: arm64: Work out supported block level at compile time + - KVM: arm64: Limit stage2_apply_range() batch size to largest block + + [ Ubuntu: 5.15.0-102.112 ] + + * jammy/linux: 5.15.0-102.112 -proposed tracker (LP: #2055632) + * Drop ABI checks from kernel build (LP: #2055686) + - [Packaging] Remove in-tree abi checks + - [Packaging] Drop abi checks from final-checks + * Packaging resync (LP: #1786013) + - [Packaging] drop ABI data + - [Packaging] update annotations scripts + - debian.master/dkms-versions -- update from kernel-versions (main/2024.03.04) + * block/loop: No longer allows to create partitions (LP: #2056143) + - block, loop: support partitions without scanning + * Cranky update-dkms-versions rollout (LP: #2055685) + - [Packaging] remove update-dkms-versions + - Move debian/dkms-versions to debian.master/dkms-versions + - [Packaging] Replace debian/dkms-versions with $(DEBIAN)/dkms-versions + - [Packaging] remove update-version-dkms + * linux: please move erofs.ko (CONFIG_EROFS for EROFS support) from linux- + modules-extra to linux-modules (LP: #2054809) + - UBUNTU [Packaging]: Include erofs in linux-modules instead of linux-modules- + extra + * linux-tools-common: man page of usbip[d] is misplaced (LP: #2054094) + - [Packaging] rules: Put usbip manpages in the correct directory + * CVE-2024-23851 + - dm ioctl: log an error if the ioctl structure is corrupted + - dm: limit the number of targets and parameter size area + * CVE-2024-23850 + - btrfs: do not ASSERT() if the newly created subvolume already got read + * x86: performance: tsc: Extend watchdog check exemption to 4-Sockets platform + (LP: #2054699) + - x86/tsc: Extend watchdog check exemption to 4-Sockets platform + * linux: please move dmi-sysfs.ko (CONFIG_DMI_SYSFS for SMBIOS support) from + linux-modules-extra to linux-modules (LP: #2045561) + - [Packaging] Move dmi-sysfs.ko into linux-modules + * Fix bpf selftests build failure after v5.15.139 update (LP: #2054567) + - Revert "selftests/bpf: Test tail call counting with bpf2bpf and data on + stack" + * Jammy update: v5.15.148 upstream stable release (LP: #2055145) + - f2fs: explicitly null-terminate the xattr list + - pinctrl: lochnagar: Don't build on MIPS + - ALSA: hda - Fix speaker and headset mic pin config for CHUWI CoreBook XPro + - mptcp: fix uninit-value in mptcp_incoming_options + - wifi: cfg80211: lock wiphy mutex for rfkill poll + - debugfs: fix automount d_fsdata usage + - drm/amdgpu: Fix cat debugfs amdgpu_regs_didt causes kernel null pointer + - nvme-core: check for too small lba shift + - ASoC: wm8974: Correct boost mixer inputs + - ASoC: Intel: Skylake: Fix mem leak in few functions + - ASoC: nau8822: Fix incorrect type in assignment and cast to restricted + __be16 + - ASoC: Intel: Skylake: mem leak in skl register function + - ASoC: cs43130: Fix the position of const qualifier + - ASoC: cs43130: Fix incorrect frame delay configuration + - ASoC: rt5650: add mutex to avoid the jack detection failure + - nouveau/tu102: flush all pdbs on vmm flush + - net/tg3: fix race condition in tg3_reset_task() + - ASoC: da7219: Support low DC impedance headset + - ASoC: ops: add correct range check for limiting volume + - nvme: introduce helper function to get ctrl state + - drm/amdgpu: Add NULL checks for function pointers + - drm/exynos: fix a potential error pointer dereference + - drm/exynos: fix a wrong error checking + - hwmon: (corsair-psu) Fix probe when built-in + - clk: rockchip: rk3128: Fix HCLK_OTG gate register + - jbd2: correct the printing of write_flags in jbd2_write_superblock() + - drm/crtc: Fix uninit-value bug in drm_mode_setcrtc + - neighbour: Don't let neigh_forced_gc() disable preemption for long + - platform/x86: intel-vbtn: Fix missing tablet-mode-switch events + - jbd2: fix soft lockup in journal_finish_inode_data_buffers() + - tracing: Have large events show up as '[LINE TOO BIG]' instead of nothing + - tracing: Add size check when printing trace_marker output + - stmmac: dwmac-loongson: drop useless check for compatible fallback + - MIPS: dts: loongson: drop incorrect dwmac fallback compatible + - tracing: Fix uaf issue when open the hist or hist_debug file + - ring-buffer: Do not record in NMI if the arch does not support cmpxchg in + NMI + - reset: hisilicon: hi6220: fix Wvoid-pointer-to-enum-cast warning + - Input: atkbd - skip ATKBD_CMD_GETID in translated mode + - Input: i8042 - add nomux quirk for Acer P459-G2-M + - s390/scm: fix virtual vs physical address confusion + - ARC: fix spare error + - wifi: iwlwifi: pcie: avoid a NULL pointer dereference + - Input: xpad - add Razer Wolverine V2 support + - ASoC: Intel: bytcr_rt5640: Add quirk for the Medion Lifetab S10346 + - i2c: rk3x: fix potential spinlock recursion on poll + - net: qrtr: ns: Return 0 if server port is not present + - ARM: sun9i: smp: fix return code check of of_property_match_string + - drm/crtc: fix uninitialized variable use + - ACPI: resource: Add another DMI match for the TongFang GMxXGxx + - Revert "ASoC: atmel: Remove system clock tree configuration for + at91sam9g20ek" + - bpf: Add --skip_encoding_btf_inconsistent_proto, --btf_gen_optimized to + pahole flags for v1.25 + - kprobes: Fix to handle forcibly unoptimized kprobes on freeing_list + - Revert "md/raid5: Wait for MD_SB_CHANGE_PENDING in raid5d" + - binder: use EPOLLERR from eventpoll.h + - binder: fix use-after-free in shinker's callback + - binder: fix trivial typo of binder_free_buf_locked() + - binder: fix comment on binder_alloc_new_buf() return value + - uio: Fix use-after-free in uio_open + - parport: parport_serial: Add Brainboxes BAR details + - parport: parport_serial: Add Brainboxes device IDs and geometry + - leds: ledtrig-tty: Free allocated ttyname buffer on deactivate + - PCI: Add ACS quirk for more Zhaoxin Root Ports + - coresight: etm4x: Fix width of CCITMIN field + - x86/lib: Fix overflow when counting digits + - EDAC/thunderx: Fix possible out-of-bounds string access + - powerpc: Mark .opd section read-only + - powerpc/toc: Future proof kernel toc + - powerpc: remove checks for binutils older than 2.25 + - powerpc: add crtsavres.o to always-y instead of extra-y + - powerpc/44x: select I2C for CURRITUCK + - powerpc/pseries/memhp: Fix access beyond end of drmem array + - selftests/powerpc: Fix error handling in FPU/VMX preemption tests + - powerpc/powernv: Add a null pointer check to scom_debug_init_one() + - powerpc/powernv: Add a null pointer check in opal_event_init() + - powerpc/powernv: Add a null pointer check in opal_powercap_init() + - powerpc/imc-pmu: Add a null pointer check in update_events_in_group() + - spi: spi-zynqmp-gqspi: fix driver kconfig dependencies + - mtd: rawnand: Increment IFC_TIMEOUT_MSECS for nand controller response + - ACPI: video: check for error while searching for backlight device parent + - ACPI: LPIT: Avoid u32 multiplication overflow + - of: property: define of_property_read_u{8,16,32,64}_array() unconditionally + - of: Add of_property_present() helper + - cpufreq: Use of_property_present() for testing DT property presence + - cpufreq: scmi: process the result of devm_of_clk_add_hw_provider() + - calipso: fix memory leak in netlbl_calipso_add_pass() + - efivarfs: force RO when remounting if SetVariable is not supported + - spi: sh-msiof: Enforce fixed DTDL for R-Car H3 + - ACPI: LPSS: Fix the fractional clock divider flags + - ACPI: extlog: Clear Extended Error Log status when RAS_CEC handled the error + - kunit: debugfs: Fix unchecked dereference in debugfs_print_results() + - mtd: Fix gluebi NULL pointer dereference caused by ftl notifier + - selinux: Fix error priority for bind with AF_UNSPEC on PF_INET6 socket + - crypto: virtio - Handle dataq logic with tasklet + - crypto: sa2ul - Return crypto_aead_setkey to transfer the error + - crypto: ccp - fix memleak in ccp_init_dm_workarea + - crypto: af_alg - Disallow multiple in-flight AIO requests + - crypto: sahara - remove FLAGS_NEW_KEY logic + - crypto: sahara - fix cbc selftest failure + - crypto: sahara - fix ahash selftest failure + - crypto: sahara - fix processing requests with cryptlen < sg->length + - crypto: sahara - fix error handling in sahara_hw_descriptor_create() + - pstore: ram_core: fix possible overflow in persistent_ram_init_ecc() + - fs: indicate request originates from old mount API + - gfs2: Fix kernel NULL pointer dereference in gfs2_rgrp_dump + - crypto: virtio - Wait for tasklet to complete on device remove + - crypto: sahara - avoid skcipher fallback code duplication + - crypto: sahara - handle zero-length aes requests + - crypto: sahara - fix ahash reqsize + - crypto: sahara - fix wait_for_completion_timeout() error handling + - crypto: sahara - improve error handling in sahara_sha_process() + - crypto: sahara - fix processing hash requests with req->nbytes < sg->length + - crypto: sahara - do not resize req->src when doing hash operations + - crypto: scomp - fix req->dst buffer overflow + - blocklayoutdriver: Fix reference leak of pnfs_device_node + - NFSv4.1/pnfs: Ensure we handle the error NFS4ERR_RETURNCONFLICT + - wifi: rtw88: fix RX filter in FIF_ALLMULTI flag + - bpf, lpm: Fix check prefixlen before walking trie + - bpf: Add crosstask check to __bpf_get_stack + - wifi: ath11k: Defer on rproc_get failure + - wifi: libertas: stop selecting wext + - ARM: dts: qcom: apq8064: correct XOADC register address + - net/ncsi: Fix netlink major/minor version numbers + - firmware: ti_sci: Fix an off-by-one in ti_sci_debugfs_create() + - firmware: meson_sm: populate platform devices from sm device tree data + - wifi: rtlwifi: rtl8821ae: phy: fix an undefined bitwise shift behavior + - arm64: dts: ti: k3-am65-main: Fix DSS irq trigger type + - bpf: enforce precision of R0 on callback return + - ARM: dts: qcom: sdx65: correct SPMI node name + - arm64: dts: qcom: sc7180: Make watchdog bark interrupt edge triggered + - arm64: dts: qcom: sc7280: Make watchdog bark interrupt edge triggered + - arm64: dts: qcom: sdm845: Make watchdog bark interrupt edge triggered + - arm64: dts: qcom: sm8150: Make watchdog bark interrupt edge triggered + - arm64: dts: qcom: sm8250: Make watchdog bark interrupt edge triggered + - bpf: fix check for attempt to corrupt spilled pointer + - scsi: fnic: Return error if vmalloc() failed + - arm64: dts: qcom: qrb5165-rb5: correct LED panic indicator + - arm64: dts: qcom: sdm845-db845c: correct LED panic indicator + - arm64: dts: qcom: sc7280: fix usb_2 wakeup interrupt types + - bpf: Fix verification of indirect var-off stack access + - block: Set memalloc_noio to false on device_add_disk() error path + - scsi: hisi_sas: Rename HISI_SAS_{RESET -> RESETTING}_BIT + - scsi: hisi_sas: Prevent parallel FLR and controller reset + - scsi: hisi_sas: Replace with standard error code return value + - scsi: hisi_sas: Rollback some operations if FLR failed + - scsi: hisi_sas: Correct the number of global debugfs registers + - selftests/net: fix grep checking for fib_nexthop_multiprefix + - virtio/vsock: fix logic which reduces credit update messages + - dma-mapping: Add dma_release_coherent_memory to DMA API + - dma-mapping: clear dev->dma_mem to NULL after freeing it + - soc: qcom: llcc: Fix dis_cap_alloc and retain_on_pc configuration + - arm64: dts: qcom: sm8150-hdk: fix SS USB regulators + - block: add check of 'minors' and 'first_minor' in device_add_disk() + - arm64: dts: qcom: sc7280: Mark SDHCI hosts as cache-coherent + - wifi: rtlwifi: add calculate_bit_shift() + - wifi: rtlwifi: rtl8188ee: phy: using calculate_bit_shift() + - wifi: rtlwifi: rtl8192c: using calculate_bit_shift() + - wifi: rtlwifi: rtl8192cu: using calculate_bit_shift() + - wifi: rtlwifi: rtl8192ce: using calculate_bit_shift() + - wifi: rtlwifi: rtl8192de: using calculate_bit_shift() + - wifi: rtlwifi: rtl8192ee: using calculate_bit_shift() + - wifi: rtlwifi: rtl8192se: using calculate_bit_shift() + - wifi: iwlwifi: mvm: set siso/mimo chains to 1 in FW SMPS request + - wifi: iwlwifi: mvm: send TX path flush in rfkill + - netfilter: nf_tables: mark newset as dead on transaction abort + - Bluetooth: Fix bogus check for re-auth no supported with non-ssp + - Bluetooth: btmtkuart: fix recv_buf() return value + - block: make BLK_DEF_MAX_SECTORS unsigned + - null_blk: don't cap max_hw_sectors to BLK_DEF_MAX_SECTORS + - net/sched: act_ct: fix skb leak and crash on ooo frags + - mlxbf_gige: Fix intermittent no ip issue + - net: mellanox: mlxbf_gige: Replace non-standard interrupt handling + - mlxbf_gige: Enable the GigE port in mlxbf_gige_open + - ip6_tunnel: fix NEXTHDR_FRAGMENT handling in ip6_tnl_parse_tlv_enc_lim() + - ARM: davinci: always select CONFIG_CPU_ARM926T + - Revert "drm/tidss: Annotate dma-fence critical section in commit path" + - Revert "drm/omapdrm: Annotate dma-fence critical section in commit path" + - RDMA/usnic: Silence uninitialized symbol smatch warnings + - RDMA/hns: Fix inappropriate err code for unsupported operations + - drm/panel-elida-kd35t133: hold panel in reset for unprepare + - drm/nouveau/fence:: fix warning directly dereferencing a rcu pointer + - drm/bridge: tpd12s015: Drop buggy __exit annotation for remove function + - drm/tilcdc: Fix irq free on unload + - media: pvrusb2: fix use after free on context disconnection + - drm/bridge: Fix typo in post_disable() description + - f2fs: fix to avoid dirent corruption + - drm/radeon/r600_cs: Fix possible int overflows in r600_cs_check_reg() + - drm/radeon/r100: Fix integer overflow issues in r100_cs_track_check() + - drm/radeon: check return value of radeon_ring_lock() + - ASoC: cs35l33: Fix GPIO name and drop legacy include + - ASoC: cs35l34: Fix GPIO name and drop legacy include + - drm/msm/mdp4: flush vblank event on disable + - drm/msm/dsi: Use pm_runtime_resume_and_get to prevent refcnt leaks + - drm/drv: propagate errors from drm_modeset_register_all() + - drm/radeon: check the alloc_workqueue return value in radeon_crtc_init() + - drm/radeon/dpm: fix a memleak in sumo_parse_power_table + - drm/radeon/trinity_dpm: fix a memleak in trinity_parse_power_table + - drm/bridge: cdns-mhdp8546: Fix use of uninitialized variable + - drm/bridge: tc358767: Fix return value on error case + - media: cx231xx: fix a memleak in cx231xx_init_isoc + - clk: qcom: gpucc-sm8150: Update the gpu_cc_pll1 config + - media: rkisp1: Disable runtime PM in probe error path + - f2fs: fix to check compress file in f2fs_move_file_range() + - f2fs: fix to update iostat correctly in f2fs_filemap_fault() + - f2fs: fix the f2fs_file_write_iter tracepoint + - media: dvbdev: drop refcount on error path in dvb_device_open() + - media: dvb-frontends: m88ds3103: Fix a memory leak in an error handling path + of m88ds3103_probe() + - drm/amdgpu/debugfs: fix error code when smc register accessors are NULL + - drm/amd/pm: fix a double-free in si_dpm_init + - drivers/amd/pm: fix a use-after-free in kv_parse_power_table + - gpu/drm/radeon: fix two memleaks in radeon_vm_init + - dt-bindings: clock: Update the videocc resets for sm8150 + - clk: qcom: videocc-sm8150: Update the videocc resets + - clk: qcom: videocc-sm8150: Add missing PLL config property + - drivers: clk: zynqmp: calculate closest mux rate + - clk: zynqmp: make bestdiv unsigned + - clk: zynqmp: Add a check for NULL pointer + - drivers: clk: zynqmp: update divider round rate logic + - watchdog: set cdev owner before adding + - watchdog/hpwdt: Only claim UNKNOWN NMI if from iLO + - watchdog: bcm2835_wdt: Fix WDIOC_SETTIMEOUT handling + - watchdog: rti_wdt: Drop runtime pm reference count when watchdog is unused + - clk: si5341: fix an error code problem in si5341_output_clk_set_rate + - clk: asm9260: use parent index to link the reference clock + - clk: fixed-rate: add devm_clk_hw_register_fixed_rate + - clk: fixed-rate: fix clk_hw_register_fixed_rate_with_accuracy_parent_hw + - pwm: stm32: Use regmap_clear_bits and regmap_set_bits where applicable + - pwm: stm32: Use hweight32 in stm32_pwm_detect_channels + - pwm: stm32: Fix enable count for clk in .probe() + - ASoC: rt5645: Drop double EF20 entry from dmi_platform_data[] + - ALSA: scarlett2: Add missing error check to scarlett2_config_save() + - ALSA: scarlett2: Add missing error check to scarlett2_usb_set_config() + - ALSA: scarlett2: Allow passing any output to line_out_remap() + - ALSA: scarlett2: Add missing error checks to *_ctl_get() + - ALSA: scarlett2: Add clamp() in scarlett2_mixer_ctl_put() + - mmc: sdhci_am654: Fix TI SoC dependencies + - [Config] update annotations for CONFIG_MMC_SDHCI_AM654 + - [Config] remove sdhci_am654 module for armhf/ppc64el + - mmc: sdhci_omap: Fix TI SoC dependencies + - [Config] update annotations for CONFIG_MMC_SDHCI_OMAP + - [Config] remove sdhci-omap module for arm64/ppc64el + - IB/iser: Prevent invalidating wrong MR + - drm/amd/pm/smu7: fix a memleak in smu7_hwmgr_backend_init + - ksmbd: validate the zero field of packet header + - of: Fix double free in of_parse_phandle_with_args_map + - of: unittest: Fix of_count_phandle_with_args() expected value message + - selftests/bpf: Add assert for user stacks in test_task_stack + - binder: fix async space check for 0-sized buffers + - binder: fix unused alloc->free_async_space + - Input: atkbd - use ab83 as id when skipping the getid command + - dma-mapping: Fix build error unused-value + - virtio-crypto: fix memory leak in virtio_crypto_alg_skcipher_close_session() + - binder: fix race between mmput() and do_exit() + - tick-sched: Fix idle and iowait sleeptime accounting vs CPU hotplug + - usb: phy: mxs: remove CONFIG_USB_OTG condition for mxs_phy_is_otg_host() + - usb: dwc: ep0: Update request status in dwc3_ep0_stall_restart + - Revert "usb: dwc3: Soft reset phy on probe for host" + - Revert "usb: dwc3: don't reset device side if dwc3 was configured as host- + only" + - usb: chipidea: wait controller resume finished for wakeup irq + - usb: cdns3: fix uvc failure work since sg support enabled + - usb: cdns3: fix iso transfer error when mult is not zero + - usb: cdns3: Fix uvc fail when DMA cross 4k boundery since sg enabled + - Revert "usb: typec: class: fix typec_altmode_put_partner to put plugs" + - usb: typec: class: fix typec_altmode_put_partner to put plugs + - usb: mon: Fix atomicity violation in mon_bin_vma_fault + - serial: imx: Ensure that imx_uart_rs485_config() is called with enabled + clock + - ALSA: oxygen: Fix right channel of capture volume mixer + - ALSA: hda/relatek: Enable Mute LED on HP Laptop 15s-fq2xxx + - fbdev: flush deferred work in fb_deferred_io_fsync() + - scsi: mpi3mr: Refresh sdev queue depth after controller reset + - block: add check that partition length needs to be aligned with block size + - pwm: jz4740: Don't use dev_err_probe() in .request() + - io_uring/rw: ensure io->bytes_done is always initialized + - rootfs: Fix support for rootfstype= when root= is given + - Bluetooth: Fix atomicity violation in {min,max}_key_size_set + - bpf: Fix re-attachment branch in bpf_tracing_prog_attach + - iommu/arm-smmu-qcom: Add missing GMU entry to match table + - wifi: mt76: fix broken precal loading from MTD for mt7915 + - wifi: rtlwifi: Remove bogus and dangerous ASPM disable/enable code + - wifi: rtlwifi: Convert LNKCTL change to PCIe cap RMW accessors + - wifi: mwifiex: configure BSSID consistently when starting AP + - PCI: dwc: endpoint: Fix dw_pcie_ep_raise_msix_irq() alignment support + - PCI: mediatek: Clear interrupt status before dispatching handler + - x86/kvm: Do not try to disable kvmclock if it was not enabled + - KVM: arm64: vgic-v4: Restore pending state on host userspace write + - KVM: arm64: vgic-its: Avoid potential UAF in LPI translation cache + - iio: adc: ad7091r: Pass iio_dev to event handler + - HID: wacom: Correct behavior when processing some confidence == false + touches + - serial: sc16is7xx: add check for unsupported SPI modes during probe + - serial: sc16is7xx: set safe default SPI clock frequency + - iommu/dma: Trace bounce buffer usage when mapping buffers + - ARM: 9330/1: davinci: also select PINCTRL + - mfd: syscon: Fix null pointer dereference in of_syscon_register() + - leds: aw2013: Select missing dependency REGMAP_I2C + - mfd: intel-lpss: Fix the fractional clock divider flags + - mips: dmi: Fix early remap on MIPS32 + - mips: Fix incorrect max_low_pfn adjustment + - riscv: Check if the code to patch lies in the exit section + - riscv: Fix module_alloc() that did not reset the linear mapping permissions + - MIPS: Alchemy: Fix an out-of-bound access in db1200_dev_setup() + - MIPS: Alchemy: Fix an out-of-bound access in db1550_dev_setup() + - power: supply: cw2015: correct time_to_empty units in sysfs + - power: supply: bq256xx: fix some problem in bq256xx_hw_init + - serial: 8250: omap: Don't skip resource freeing if + pm_runtime_resume_and_get() failed + - libapi: Add missing linux/types.h header to get the __u64 type on io.h + - software node: Let args be NULL in software_node_get_reference_args + - serial: imx: fix tx statemachine deadlock + - selftests/sgx: Fix uninitialized pointer dereference in error path + - selftests/sgx: Skip non X86_64 platform + - iio: adc: ad9467: Benefit from devm_clk_get_enabled() to simplify + - iio: adc: ad9467: fix reset gpio handling + - iio: adc: ad9467: don't ignore error codes + - iio: adc: ad9467: fix scale setting + - perf genelf: Set ELF program header addresses properly + - tty: change tty_write_lock()'s ndelay parameter to bool + - tty: early return from send_break() on TTY_DRIVER_HARDWARE_BREAK + - tty: don't check for signal_pending() in send_break() + - tty: use 'if' in send_break() instead of 'goto' + - usb: cdc-acm: return correct error code on unsupported break + - nvmet-tcp: Fix a kernel panic when host sends an invalid H2C PDU length + - nvmet-tcp: fix a crash in nvmet_req_complete() + - perf env: Avoid recursively taking env->bpf_progs.lock + - apparmor: avoid crash when parsed profile name is empty + - usb: xhci-mtk: fix a short packet issue of gen1 isoc-in transfer + - serial: imx: Correct clock error message in function probe() + - nvmet: re-fix tracing strncpy() warning + - nvmet-tcp: Fix the H2C expected PDU len calculation + - PCI: keystone: Fix race condition when initializing PHYs + - s390/pci: fix max size calculation in zpci_memcpy_toio() + - net: qualcomm: rmnet: fix global oob in rmnet_policy + - net: ethernet: ti: am65-cpsw: Fix max mtu to fit ethernet frames + - net: phy: micrel: populate .soft_reset for KSZ9131 + - mptcp: mptcp_parse_option() fix for MPTCPOPT_MP_JOIN + - mptcp: drop unused sk in mptcp_get_options + - mptcp: strict validation before using mp_opt->hmac + - mptcp: use OPTION_MPTCP_MPJ_SYNACK in subflow_finish_connect() + - mptcp: use OPTION_MPTCP_MPJ_SYN in subflow_check_req() + - net: ravb: Fix dma_addr_t truncation in error case + - net: stmmac: ethtool: Fixed calltrace caused by unbalanced disable_irq_wake + calls + - bpf: Reject variable offset alu on PTR_TO_FLOW_KEYS + - net: dsa: vsc73xx: Add null pointer check to vsc73xx_gpio_probe + - netfilter: nf_tables: reject invalid set policy + - netfilter: nft_connlimit: move stateful fields out of expression data + - netfilter: nft_last: move stateful fields out of expression data + - netfilter: nft_quota: move stateful fields out of expression data + - netfilter: nft_limit: rename stateful structure + - netfilter: nft_limit: move stateful fields out of expression data + - netfilter: nf_tables: memcg accounting for dynamically allocated objects + - netfilter: nft_limit: do not ignore unsupported flags + - netfilter: nf_tables: do not allow mismatch field size and set key length + - netfilter: nf_tables: skip dead set elements in netlink dump + - netfilter: nf_tables: reject NFT_SET_CONCAT with not field length + description + - ipvs: avoid stat macros calls from preemptible context + - kdb: Fix a potential buffer overflow in kdb_local() + - ethtool: netlink: Add missing ethnl_ops_begin/complete + - mlxsw: spectrum_acl_erp: Fix error flow of pool allocation failure + - mlxsw: spectrum: Use 'bitmap_zalloc()' when applicable + - mlxsw: spectrum_acl_tcam: Add missing mutex_destroy() + - mlxsw: spectrum_acl_tcam: Make fini symmetric to init + - mlxsw: spectrum_acl_tcam: Reorder functions to avoid forward declarations + - mlxsw: spectrum_acl_tcam: Fix stack corruption + - selftests: mlxsw: qos_pfc: Adjust the test to support 8 lanes + - ipv6: mcast: fix data-race in ipv6_mc_down / mld_ifc_work + - i2c: s3c24xx: fix read transfers in polling mode + - i2c: s3c24xx: fix transferring more than one message in polling mode + - block: Remove special-casing of compound pages + - netfilter: nf_tables: typo NULL check in _clone() function + - netfilter: nft_connlimit: memleak if nf_ct_netns_get() fails + - netfilter: nft_limit: fix stateful object memory leak + - netfilter: nft_limit: Clone packet limits' cost value + - netfilter: nft_last: copy content when cloning expression + - netfilter: nft_quota: copy content when cloning expression + - arm64: dts: armada-3720-turris-mox: set irq type for RTC + - Revert "Revert "md/raid5: Wait for MD_SB_CHANGE_PENDING in raid5d"" + - Linux 5.15.148 + * CVE-2024-24855 + - scsi: lpfc: Fix a possible data race in lpfc_unregister_fcf_rescan() + * performance: Scheduler: ratelimit updating of load_avg (LP: #2053251) + - sched/fair: Ratelimit update to tg->load_avg + * Jammy update: v5.15.147 upstream stable release (LP: #2054411) + - block: Don't invalidate pagecache for invalid falloc modes + - ALSA: hda/realtek: Fix mute and mic-mute LEDs for HP ProBook 440 G6 + - Revert "PCI/ASPM: Remove pcie_aspm_pm_state_change()" + - wifi: iwlwifi: pcie: don't synchronize IRQs from IRQ + - drm/bridge: ti-sn65dsi86: Never store more than msg->size bytes in AUX xfer + - nfc: llcp_core: Hold a ref to llcp_local->dev when holding a ref to + llcp_local + - octeontx2-af: Fix marking couple of structure as __packed + - drm/i915/dp: Fix passing the correct DPCD_REV for + drm_dp_set_phy_test_pattern + - i40e: Fix filter input checks to prevent config with invalid values + - igc: Report VLAN EtherType matching back to user + - igc: Check VLAN TCI mask + - igc: Check VLAN EtherType mask + - ASoC: fsl_rpmsg: Fix error handler with pm_runtime_enable + - mlxbf_gige: fix receive packet race condition + - net: sched: em_text: fix possible memory leak in em_text_destroy() + - r8169: Fix PCI error on system resume + - net: Implement missing getsockopt(SO_TIMESTAMPING_NEW) + - can: raw: add support for SO_TXTIME/SCM_TXTIME + - can: raw: add support for SO_MARK + - net-timestamp: extend SOF_TIMESTAMPING_OPT_ID to HW timestamps + - ARM: sun9i: smp: Fix array-index-out-of-bounds read in sunxi_mc_smp_init + - sfc: fix a double-free bug in efx_probe_filters + - net: bcmgenet: Fix FCS generation for fragmented skbuffs + - netfilter: nft_immediate: drop chain reference counter on error + - net: Save and restore msg_namelen in sock_sendmsg + - i40e: fix use-after-free in i40e_aqc_add_filters() + - ASoC: meson: g12a-toacodec: Validate written enum values + - ASoC: meson: g12a-tohdmitx: Validate written enum values + - ASoC: meson: g12a-toacodec: Fix event generation + - ASoC: meson: g12a-tohdmitx: Fix event generation for S/PDIF mux + - i40e: Restore VF MSI-X state during PCI reset + - igc: Fix hicredit calculation + - net/qla3xxx: fix potential memleak in ql_alloc_buffer_queues + - octeontx2-af: Don't enable Pause frames by default + - octeontx2-af: Set NIX link credits based on max LMAC + - octeontx2-af: Always configure NIX TX link credits based on max frame size + - octeontx2-af: Re-enable MAC TX in otx2_stop processing + - asix: Add check for usbnet_get_endpoints + - bnxt_en: Remove mis-applied code from bnxt_cfg_ntp_filters() + - net: Implement missing SO_TIMESTAMPING_NEW cmsg support + - selftests: secretmem: floor the memory size to the multiple of page_size + - mm/memory-failure: check the mapcount of the precise page + - firewire: ohci: suppress unexpected system reboot in AMD Ryzen machines and + ASM108x/VT630x PCIe cards + - x86/kprobes: fix incorrect return address calculation in + kprobe_emulate_call_indirect + - i2c: core: Fix atomic xfer check for non-preempt config + - mm: fix unmap_mapping_range high bits shift bug + - mmc: meson-mx-sdhc: Fix initialization frozen issue + - mmc: rpmb: fixes pause retune on all RPMB partitions. + - mmc: core: Cancel delayed work before releasing host + - mmc: sdhci-sprd: Fix eMMC init failure after hw reset + - ipv6: remove max_size check inline with ipv4 + - perf inject: Fix GEN_ELF_TEXT_OFFSET for jit + - kallsyms: Make module_kallsyms_on_each_symbol generally available + - tracing/kprobes: Fix symbol counting logic by looking at modules as well + - net: usb: ax88179_178a: remove redundant init code + - net: usb: ax88179_178a: move priv to driver_priv + - Linux 5.15.147 + * CVE-2024-1085 + - netfilter: nf_tables: check if catch-all set element is active in next + generation + * CVE-2023-23000 + - phy: tegra: xusb: Fix return value of tegra_xusb_find_port_node function + * performance: mm/percpu-internal.h: Re-layout pcpu_chunk to mitigate false + sharing (LP: #2053152) + - percpu-internal/pcpu_chunk: re-layout pcpu_chunk structure to reduce false + sharing + * performance: address_space: add padding for i_map and i_mmap_rwsem to + mitigate a false sharing (LP: #2053069) + - fs/address_space: add alignment padding for i_map and i_mmap_rwsem to + mitigate a false sharing. + * cpufreq: intel_pstate: Enable HWP IO boost for all servers (LP: #2052817) + - cpufreq: intel_pstate: Enable HWP IO boost for all servers + * performance: mm/memcontrol.c: remove the redundant updating of + stats_flush_threshold (LP: #2052827) + - mm/memcontrol.c: remove the redundant updating of stats_flush_threshold + * Jammy update: v5.15.146 upstream stable release (LP: #2053212) + - ARM: dts: dra7: Fix DRA7 L3 NoC node register size + - ARM: OMAP2+: Fix null pointer dereference and memory leak in + omap_soc_device_init + - reset: Fix crash when freeing non-existent optional resets + - s390/vx: fix save/restore of fpu kernel context + - wifi: iwlwifi: pcie: add another missing bh-disable for rxq->lock + - wifi: mac80211: mesh_plink: fix matches_local logic + - net/mlx5e: Fix slab-out-of-bounds in mlx5_query_nic_vport_mac_list() + - net/mlx5e: fix a potential double-free in fs_udp_create_groups + - net/mlx5: Fix fw tracer first block check + - net/mlx5e: Correct snprintf truncation handling for fw_version buffer used + by representors + - net: sched: ife: fix potential use-after-free + - ethernet: atheros: fix a memleak in atl1e_setup_ring_resources + - net/rose: fix races in rose_kill_by_device() + - net: mana: select PAGE_POOL + - net: check vlan filter feature in vlan_vids_add_by_dev() and + vlan_vids_del_by_dev() + - afs: Fix the dynamic root's d_delete to always delete unused dentries + - afs: Fix dynamic root lookup DNS check + - net: check dev->gso_max_size in gso_features_check() + - keys, dns: Allow key types (eg. DNS) to be reclaimed immediately on expiry + - keys, dns: Fix missing size check of V1 server-list header + - keys, dns: Fix size check of V1 server-list header + - afs: Fix overwriting of result of DNS query + - afs: Use refcount_t rather than atomic_t + - afs: Fix use-after-free due to get/remove race in volume tree + - ASoC: hdmi-codec: fix missing report for jack initial status + - i2c: aspeed: Handle the coalesced stop conditions with the start conditions. + - pinctrl: at91-pio4: use dedicated lock class for IRQ + - gpiolib: cdev: add gpio_device locking wrapper around gpio_ioctl() + - ksmbd: fix wrong name of SMB2_CREATE_ALLOCATION_SIZE + - drm/i915/mtl: limit second scaler vertical scaling in ver >= 14 + - drm/i915: Relocate intel_atomic_setup_scalers() + - drm/i915: Fix intel_atomic_setup_scalers() plane_state handling + - smb: client: fix NULL deref in asn1_ber_decoder() + - smb: client: fix OOB in smb2_query_reparse_point() + - interconnect: Treat xlate() returning NULL node as an error + - iio: imu: inv_mpu6050: fix an error code problem in inv_mpu6050_read_raw + - Input: ipaq-micro-keys - add error handling for devm_kmemdup + - scsi: bnx2fc: Fix skb double free in bnx2fc_rcv() + - iio: common: ms_sensors: ms_sensors_i2c: fix humidity conversion time table + - iio: adc: ti_am335x_adc: Fix return value check of tiadc_request_dma() + - iio: triggered-buffer: prevent possible freeing of wrong buffer + - ALSA: usb-audio: Increase delay in MOTU M quirk + - wifi: cfg80211: Add my certificate + - wifi: cfg80211: fix certs build to not depend on file order + - USB: serial: ftdi_sio: update Actisense PIDs constant names + - USB: serial: option: add Quectel EG912Y module support + - USB: serial: option: add Foxconn T99W265 with new baseline + - USB: serial: option: add Quectel RM500Q R13 firmware support + - Bluetooth: hci_event: Fix not checking if HCI_OP_INQUIRY has been sent + - Bluetooth: MGMT/SMP: Fix address type when using SMP over BREDR/LE + - Input: soc_button_array - add mapping for airplane mode button + - net: 9p: avoid freeing uninit memory in p9pdu_vreadf + - net: rfkill: gpio: set GPIO direction + - net: ks8851: Fix TX stall caused by TX buffer overrun + - dt-bindings: nvmem: mxs-ocotp: Document fsl,ocotp + - scsi: core: Always send batch on reset or error handling command + - tracing / synthetic: Disable events after testing in + synth_event_gen_test_init() + - bus: ti-sysc: Flush posted write only after srst_udelay + - gpio: dwapb: mask/unmask IRQ when disable/enale it + - lib/vsprintf: Fix %pfwf when current node refcount == 0 + - KVM: arm64: vgic: Force vcpu vgic teardown on vcpu destroy + - x86/alternatives: Sync core before enabling interrupts + - fuse: share lookup state between submount and its parent + - ksmbd: have a dependency on cifs ARC4 + - ksmbd: set epoch in create context v2 lease + - ksmbd: set v2 lease capability + - ksmbd: downgrade RWH lease caching state to RH for directory + - ksmbd: send v2 lease break notification for directory + - ksmbd: lazy v2 lease break on smb2_write() + - ksmbd: avoid duplicate opinfo_put() call on error of smb21_lease_break_ack() + - ksmbd: fix wrong allocation size update in smb2_open() + - ARM: dts: Fix occasional boot hang for am3 usb + - usb: fotg210-hcd: delete an incorrect bounds test + - ethernet: constify references to netdev->dev_addr in drivers + - net: usb: ax88179_178a: clean up pm calls + - net: usb: ax88179_178a: wol optimizations + - net: usb: ax88179_178a: avoid failed operations when device is disconnected + - device property: Add const qualifier to device_get_match_data() parameter + - spi: Introduce spi_get_device_match_data() helper + - iio: imu: adis16475: add spi_device_id table + - smb: client: fix OOB in SMB2_query_info_init() + - mm/filemap: avoid buffered read/write race to read inconsistent data + - ring-buffer: Fix wake ups when buffer_percent is set to 100 + - tracing: Fix blocked reader of snapshot buffer + - ring-buffer: Remove useless update to write_stamp in rb_try_to_discard() + - ring-buffer: Fix slowpath of interrupted event + - dm-integrity: don't modify bio's immutable bio_vec in integrity_metadata() + - device property: Allow const parameter to dev_fwnode() + - bpf: Fix prog_array_map_poke_run map poke update + - Linux 5.15.146 + * CVE-2023-46838 + - xen-netback: don't produce zero-size SKB frags + * CVE-2024-1086 + - netfilter: nf_tables: reject QUEUE/DROP verdict parameters + * disable Intel DMA remapping by default (LP: #1971699) + - [Config] update tracking bug for CONFIG_INTEL_IOMMU_DEFAULT_ON + * Validate connection interval to pass Bluetooth Test Suite (LP: #2052005) + - Bluetooth: Enforce validation on max value of connection interval + * Jammy update: v5.15.145 upstream stable release (LP: #2052406) + - ksmbd: use ksmbd_req_buf_next() in ksmbd_verify_smb_message() + - ksmdb: use cmd helper variable in smb2_get_ksmbd_tcon() + - ksmbd: Remove redundant 'flush_workqueue()' calls + - ksmbd: remove md4 leftovers + - ksmbd: remove smb2_buf_length in smb2_hdr + - ksmbd: remove smb2_buf_length in smb2_transform_hdr + - ksmbd: change LeaseKey data type to u8 array + - ksmbd: use oid registry functions to decode OIDs + - ksmbd: Remove unused parameter from smb2_get_name() + - ksmbd: Remove unused fields from ksmbd_file struct definition + - ksmbd: set both ipv4 and ipv6 in FSCTL_QUERY_NETWORK_INTERFACE_INFO + - ksmbd: Fix buffer_check_err() kernel-doc comment + - ksmbd: Fix smb2_set_info_file() kernel-doc comment + - ksmbd: Delete an invalid argument description in + smb2_populate_readdir_entry() + - ksmbd: Fix smb2_get_name() kernel-doc comment + - ksmbd: register ksmbd ib client with ib_register_client() + - ksmbd: set 445 port to smbdirect port by default + - ksmbd: smbd: call rdma_accept() under CM handler + - ksmbd: smbd: create MR pool + - ksmbd: smbd: change the default maximum read/write, receive size + - ksmbd: smbd: fix missing client's memory region invalidation + - ksmbd: smbd: validate buffer descriptor structures + - ksmbd: add support for key exchange + - ksmbd: use netif_is_bridge_port + - ksmbd: store fids as opaque u64 integers + - ksmbd: shorten experimental warning on loading the module + - ksmbd: Remove a redundant zeroing of memory + - ksmbd: replace usage of found with dedicated list iterator variable + - smb3: fix ksmbd bigendian bug in oplock break, and move its struct to + smbfs_common + - ksmbd: remove filename in ksmbd_file + - ksmbd: smbd: change prototypes of RDMA read/write related functions + - ksmbd: smbd: introduce read/write credits for RDMA read/write + - ksmbd: smbd: simplify tracking pending packets + - ksmbd: smbd: change the return value of get_sg_list + - ksmbd: smbd: handle multiple Buffer descriptors + - ksmbd: fix wrong smbd max read/write size check + - ksmbd: Fix some kernel-doc comments + - ksmbd: smbd: fix connection dropped issue + - ksmbd: smbd: relax the count of sges required + - ksmbd: smbd: Remove useless license text when SPDX-License-Identifier is + already used + - ksmbd: remove duplicate flag set in smb2_write + - ksmbd: remove unused ksmbd_share_configs_cleanup function + - ksmbd: use wait_event instead of schedule_timeout() + - ksmbd: request update to stale share config + - ksmbd: remove unnecessary generic_fillattr in smb2_open + - ksmbd: don't open-code file_path() + - ksmbd: don't open-code %pD + - ksmbd: constify struct path + - ksmbd: remove generic_fillattr use in smb2_open() + - ksmbd: casefold utf-8 share names and fix ascii lowercase conversion + - ksmbd: change security id to the one samba used for posix extension + - ksmbd: set file permission mode to match Samba server posix extension + behavior + - ksmbd: fill sids in SMB_FIND_FILE_POSIX_INFO response + - ksmbd: fix encryption failure issue for session logoff response + - ksmbd: set NTLMSSP_NEGOTIATE_SEAL flag to challenge blob + - ksmbd: decrease the number of SMB3 smbdirect server SGEs + - ksmbd: reduce server smbdirect max send/receive segment sizes + - ksmbd: hide socket error message when ipv6 config is disable + - ksmbd: make utf-8 file name comparison work in __caseless_lookup() + - ksmbd: call ib_drain_qp when disconnected + - ksmbd: validate share name from share config response + - ksmbd: replace one-element arrays with flexible-array members + - ksmbd: set SMB2_SESSION_FLAG_ENCRYPT_DATA when enforcing data encryption for + this share + - ksmbd: use F_SETLK when unlocking a file + - ksmbd: Fix resource leak in smb2_lock() + - ksmbd: Convert to use sysfs_emit()/sysfs_emit_at() APIs + - ksmbd: send proper error response in smb2_tree_connect() + - ksmbd: Implements sess->rpc_handle_list as xarray + - ksmbd: fix typo, syncronous->synchronous + - ksmbd: Remove duplicated codes + - ksmbd: update Kconfig to note Kerberos support and fix indentation + - ksmbd: Fix spelling mistake "excceed" -> "exceeded" + - ksmbd: Fix parameter name and comment mismatch + - ksmbd: fix possible memory leak in smb2_lock() + - ksmbd: fix wrong signingkey creation when encryption is AES256 + - ksmbd: remove unused is_char_allowed function + - ksmbd: delete asynchronous work from list + - ksmbd: fix slab-out-of-bounds in init_smb2_rsp_hdr + - ksmbd: avoid out of bounds access in decode_preauth_ctxt() + - ksmbd: set NegotiateContextCount once instead of every inc + - ksmbd: avoid duplicate negotiate ctx offset increments + - ksmbd: remove unused compression negotiate ctx packing + - fs: introduce lock_rename_child() helper + - ksmbd: fix racy issue from using ->d_parent and ->d_name + - ksmbd: destroy expired sessions + - ksmbd: block asynchronous requests when making a delay on session setup + - ksmbd: fix racy issue from smb2 close and logoff with multichannel + - ksmbd: fix racy issue under cocurrent smb2 tree disconnect + - ksmbd: fix uninitialized pointer read in ksmbd_vfs_rename() + - ksmbd: fix uninitialized pointer read in smb2_create_link() + - ksmbd: fix multiple out-of-bounds read during context decoding + - ksmbd: fix UAF issue from opinfo->conn + - ksmbd: call putname after using the last component + - ksmbd: fix out-of-bound read in deassemble_neg_contexts() + - ksmbd: fix out-of-bound read in parse_lease_state() + - ksmbd: fix posix_acls and acls dereferencing possible ERR_PTR() + - ksmbd: check the validation of pdu_size in ksmbd_conn_handler_loop + - ksmbd: validate smb request protocol id + - ksmbd: add mnt_want_write to ksmbd vfs functions + - ksmbd: remove unused ksmbd_tree_conn_share function + - ksmbd: use kzalloc() instead of __GFP_ZERO + - ksmbd: return a literal instead of 'err' in ksmbd_vfs_kern_path_locked() + - ksmbd: Change the return value of ksmbd_vfs_query_maximal_access to void + - ksmbd: use kvzalloc instead of kvmalloc + - ksmbd: Replace the ternary conditional operator with min() + - ksmbd: fix out of bounds read in smb2_sess_setup + - ksmbd: add missing compound request handing in some commands + - ksmbd: Use struct_size() helper in ksmbd_negotiate_smb_dialect() + - ksmbd: Replace one-element array with flexible-array member + - ksmbd: Fix unsigned expression compared with zero + - ksmbd: check if a mount point is crossed during path lookup + - ksmbd: validate session id and tree id in compound request + - ksmbd: fix out of bounds in init_smb2_rsp_hdr() + - ksmbd: switch to use kmemdup_nul() helper + - ksmbd: add support for read compound + - ksmbd: fix wrong interim response on compound + - ksmbd: fix `force create mode' and `force directory mode' + - ksmbd: reduce descriptor size if remaining bytes is less than request size + - ksmbd: Fix one kernel-doc comment + - ksmbd: fix slub overflow in ksmbd_decode_ntlmssp_auth_blob() + - ksmbd: add missing calling smb2_set_err_rsp() on error + - ksmbd: remove experimental warning + - ksmbd: remove unneeded mark_inode_dirty in set_info_sec() + - ksmbd: fix passing freed memory 'aux_payload_buf' + - ksmbd: return invalid parameter error response if smb2 request is invalid + - ksmbd: check iov vector index in ksmbd_conn_write() + - ksmbd: fix race condition between session lookup and expire + - ksmbd: fix race condition with fp + - ksmbd: fix race condition from parallel smb2 logoff requests + - ksmbd: fix race condition from parallel smb2 lock requests + - ksmbd: fix race condition between tree conn lookup and disconnect + - ksmbd: fix wrong error response status by using set_smb2_rsp_status() + - ksmbd: fix Null pointer dereferences in ksmbd_update_fstate() + - ksmbd: fix potential double free on smb2_read_pipe() error path + - ksmbd: Remove unused field in ksmbd_user struct + - ksmbd: reorganize ksmbd_iov_pin_rsp() + - ksmbd: fix kernel-doc comment of ksmbd_vfs_setxattr() + - ksmbd: fix recursive locking in vfs helpers + - ksmbd: fix missing RDMA-capable flag for IPoIB device in + ksmbd_rdma_capable_netdev() + - ksmbd: add support for surrogate pair conversion + - ksmbd: no need to wait for binded connection termination at logoff + - ksmbd: fix kernel-doc comment of ksmbd_vfs_kern_path_locked() + - ksmbd: handle malformed smb1 message + - ksmbd: prevent memory leak on error return + - ksmbd: fix possible deadlock in smb2_open + - ksmbd: separately allocate ci per dentry + - ksmbd: move oplock handling after unlock parent dir + - ksmbd: release interim response after sending status pending response + - ksmbd: move setting SMB2_FLAGS_ASYNC_COMMAND and AsyncId + - ksmbd: don't update ->op_state as OPLOCK_STATE_NONE on error + - tracing/kprobes: Return EADDRNOTAVAIL when func matches several symbols + - kasan: disable kasan_non_canonical_hook() for HW tags + - Linux 5.15.145 + * Jammy update: v5.15.144 upstream stable release (LP: #2052404) + - r8152: add vendor/device ID pair for D-Link DUB-E250 + - r8152: add vendor/device ID pair for ASUS USB-C2500 + - netfilter: nf_tables: fix 'exist' matching on bigendian arches + - mm/memory_hotplug: handle memblock_add_node() failures in + add_memory_resource() + - memblock: allow to specify flags with memblock_add_node() + - MIPS: Loongson64: Handle more memory types passed from firmware + - ksmbd: fix memory leak in smb2_lock() + - afs: Fix refcount underflow from error handling race + - HID: lenovo: Restrict detection of patched firmware only to USB cptkbd + - net: ipv6: support reporting otherwise unknown prefix flags in RTM_NEWPREFIX + - qca_debug: Prevent crash on TX ring changes + - qca_debug: Fix ethtool -G iface tx behavior + - qca_spi: Fix reset behavior + - atm: solos-pci: Fix potential deadlock on &cli_queue_lock + - atm: solos-pci: Fix potential deadlock on &tx_queue_lock + - net: vlan: introduce skb_vlan_eth_hdr() + - net: fec: correct queue selection + - octeontx2-af: fix a use-after-free in rvu_nix_register_reporters + - octeontx2-pf: Fix promisc mcam entry action + - octeontx2-af: Update RSS algorithm index + - qed: Fix a potential use-after-free in qed_cxt_tables_alloc + - net: Remove acked SYN flag from packet in the transmit queue correctly + - net: ena: Destroy correct number of xdp queues upon failure + - net: ena: Fix xdp drops handling due to multibuf packets + - net: ena: Fix XDP redirection error + - stmmac: dwmac-loongson: Make sure MDIO is initialized before use + - sign-file: Fix incorrect return values check + - vsock/virtio: Fix unsigned integer wrap around in + virtio_transport_has_space() + - dpaa2-switch: fix size of the dma_unmap + - net: stmmac: use dev_err_probe() for reporting mdio bus registration failure + - net: stmmac: Handle disabled MDIO busses from devicetree + - net: atlantic: fix double free in ring reinit logic + - cred: switch to using atomic_long_t + - fuse: dax: set fc->dax to NULL in fuse_dax_conn_free() + - ALSA: hda/hdmi: add force-connect quirk for NUC5CPYB + - ALSA: hda/hdmi: add force-connect quirks for ASUSTeK Z170 variants + - ALSA: hda/realtek: Apply mute LED quirk for HP15-db + - PCI: loongson: Limit MRRS to 256 + - drm/mediatek: Add spinlock for setting vblank event in atomic_begin + - usb: aqc111: check packet for fixup for true limit + - stmmac: dwmac-loongson: Add architecture dependency + - [Config] updateconfigs for CONFIG_DWMAC_LOONGSON + - blk-throttle: fix lockdep warning of "cgroup_mutex or RCU read lock + required!" + - blk-cgroup: bypass blkcg_deactivate_policy after destroying + - bcache: avoid oversize memory allocation by small stripe_size + - bcache: remove redundant assignment to variable cur_idx + - bcache: add code comments for bch_btree_node_get() and + __bch_btree_node_alloc() + - bcache: avoid NULL checking to c->root in run_cache_set() + - platform/x86: intel_telemetry: Fix kernel doc descriptions + - HID: glorious: fix Glorious Model I HID report + - HID: add ALWAYS_POLL quirk for Apple kb + - HID: hid-asus: reset the backlight brightness level on resume + - HID: multitouch: Add quirk for HONOR GLO-GXXX touchpad + - asm-generic: qspinlock: fix queued_spin_value_unlocked() implementation + - net: usb: qmi_wwan: claim interface 4 for ZTE MF290 + - HID: hid-asus: add const to read-only outgoing usb buffer + - btrfs: do not allow non subvolume root targets for snapshot + - soundwire: stream: fix NULL pointer dereference for multi_link + - ext4: prevent the normalized size from exceeding EXT_MAX_BLOCKS + - arm64: mm: Always make sw-dirty PTEs hw-dirty in pte_modify + - team: Fix use-after-free when an option instance allocation fails + - drm/amdgpu/sdma5.2: add begin/end_use ring callbacks + - ring-buffer: Fix memory leak of free page + - tracing: Update snapshot buffer on resize if it is allocated + - ring-buffer: Do not update before stamp when switching sub-buffers + - ring-buffer: Have saved event hold the entire event + - ring-buffer: Fix writing to the buffer with max_data_size + - ring-buffer: Fix a race in rb_time_cmpxchg() for 32 bit archs + - ring-buffer: Do not try to put back write_stamp + - USB: gadget: core: adjust uevent timing on gadget unbind + - powerpc/ftrace: Create a dummy stackframe to fix stack unwind + - powerpc/ftrace: Fix stack teardown in ftrace_no_trace + - r8152: avoid to change cfg for all devices + - r8152: remove rtl_vendor_mode function + - r8152: fix the autosuspend doesn't work + - Linux 5.15.144 + * CVE-2023-32247 + - ksmbd: destroy expired sessions + * CVE-2024-22705 + - ksmbd: fix slab-out-of-bounds in smb_strndup_from_utf16() + + [ 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 + + -- Portia Stephens Fri, 12 Apr 2024 15:19:01 +1000 + linux-xilinx-zynqmp (5.15.0-1027.31) jammy; urgency=medium * jammy/linux-xilinx-zynqmp: 5.15.0-1027.31 -proposed tracker (LP: #2054500) diff -u linux-xilinx-zynqmp-5.15.0/debian/control linux-xilinx-zynqmp-5.15.0/debian/control --- linux-xilinx-zynqmp-5.15.0/debian/control +++ linux-xilinx-zynqmp-5.15.0/debian/control @@ -61,7 +61,7 @@ XS-Testsuite: autopkgtest #XS-Testsuite-Depends: gcc-4.7 binutils -Package: linux-xilinx-zynqmp-headers-5.15.0-1027 +Package: linux-xilinx-zynqmp-headers-5.15.0-1028 Build-Profiles: Architecture: all Multi-Arch: foreign @@ -71,7 +71,7 @@ Description: Header files related to Linux kernel version 5.15.0 This package provides kernel header files for version 5.15.0, for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-xilinx-zynqmp-headers-5.15.0-1027/debian.README.gz for details + /usr/share/doc/linux-xilinx-zynqmp-headers-5.15.0-1028/debian.README.gz for details Package: linux-xilinx-zynqmp-tools-common Build-Profiles: @@ -85,18 +85,18 @@ version locked tools (such as perf and x86_energy_perf_policy) for version 5.15.0. -Package: linux-xilinx-zynqmp-tools-5.15.0-1027 +Package: linux-xilinx-zynqmp-tools-5.15.0-1028 Build-Profiles: Architecture: arm64 Section: devel Priority: optional Depends: ${misc:Depends}, ${shlibs:Depends}, linux-tools-common -Description: Linux kernel version specific tools for version 5.15.0-1027 +Description: Linux kernel version specific tools for version 5.15.0-1028 This package provides the architecture dependant parts for kernel version locked tools (such as perf and x86_energy_perf_policy) for - version 5.15.0-1027 on + version 5.15.0-1028 on . - You probably want to install linux-tools-5.15.0-1027-. + You probably want to install linux-tools-5.15.0-1028-. Package: linux-xilinx-zynqmp-tools-host Build-Profiles: @@ -110,17 +110,17 @@ -Package: linux-image-5.15.0-1027-xilinx-zynqmp +Package: linux-image-5.15.0-1028-xilinx-zynqmp Build-Profiles: Architecture: arm64 Section: kernel Priority: optional Provides: linux-image, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, virtualbox-guest-modules [amd64], ${linux:rprovides} -Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-5.15.0-1027-xilinx-zynqmp +Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-5.15.0-1028-xilinx-zynqmp Recommends: grub-pc [amd64] | grub-efi-amd64 [amd64] | grub-efi-ia32 [amd64] | grub [amd64] | lilo [amd64] | flash-kernel [armhf arm64] | grub-efi-arm64 [arm64] | grub-efi-arm [armhf] | grub-ieee1275 [ppc64el], initramfs-tools | linux-initramfs-tool -Breaks: flash-kernel (<< 3.90ubuntu2) [arm64 armhf], s390-tools (<< 2.3.0-0ubuntu3) [s390x] -Conflicts: linux-image-unsigned-5.15.0-1027-xilinx-zynqmp -Suggests: fdutils, linux-doc | linux-xilinx-zynqmp-source-5.15.0, linux-xilinx-zynqmp-tools, linux-headers-5.15.0-1027-xilinx-zynqmp, linux-modules-extra-5.15.0-1027-xilinx-zynqmp +Breaks: flash-kernel (<< 3.104ubuntu20) [arm64 armhf], s390-tools (<< 2.3.0-0ubuntu3) [s390x] +Conflicts: linux-image-unsigned-5.15.0-1028-xilinx-zynqmp +Suggests: fdutils, linux-doc | linux-xilinx-zynqmp-source-5.15.0, linux-xilinx-zynqmp-tools, linux-headers-5.15.0-1028-xilinx-zynqmp, linux-modules-extra-5.15.0-1028-xilinx-zynqmp Description: Linux kernel image for version 5.15.0 on SMP This package contains the Linux kernel image for version 5.15.0 on SMP. @@ -133,12 +133,12 @@ the linux-xilinx-zynqmp meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-modules-5.15.0-1027-xilinx-zynqmp +Package: linux-modules-5.15.0-1028-xilinx-zynqmp Build-Profiles: Architecture: arm64 Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-5.15.0-1027-xilinx-zynqmp | linux-image-unsigned-5.15.0-1027-xilinx-zynqmp +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-5.15.0-1028-xilinx-zynqmp | linux-image-unsigned-5.15.0-1028-xilinx-zynqmp Built-Using: ${linux:BuiltUsing} Description: Linux kernel extra modules for version 5.15.0 on SMP Contains the corresponding System.map file, the modules built by the @@ -153,12 +153,12 @@ the linux-xilinx-zynqmp meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-modules-extra-5.15.0-1027-xilinx-zynqmp +Package: linux-modules-extra-5.15.0-1028-xilinx-zynqmp Build-Profiles: Architecture: arm64 Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-5.15.0-1027-xilinx-zynqmp | linux-image-unsigned-5.15.0-1027-xilinx-zynqmp, crda | wireless-crda +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-5.15.0-1028-xilinx-zynqmp | linux-image-unsigned-5.15.0-1028-xilinx-zynqmp, crda | wireless-crda Description: Linux kernel extra modules for version 5.15.0 on SMP This package contains the Linux kernel extra modules for version 5.15.0 on SMP. @@ -175,21 +175,21 @@ the linux-xilinx-zynqmp meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-headers-5.15.0-1027-xilinx-zynqmp +Package: linux-headers-5.15.0-1028-xilinx-zynqmp Build-Profiles: Architecture: arm64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-xilinx-zynqmp-headers-5.15.0-1027, ${shlibs:Depends} +Depends: ${misc:Depends}, linux-xilinx-zynqmp-headers-5.15.0-1028, ${shlibs:Depends} Provides: linux-headers, linux-headers-3.0 Description: Linux kernel headers for version 5.15.0 on SMP This package provides kernel header files for version 5.15.0 on SMP. . This is for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-headers-5.15.0-1027/debian.README.gz for details. + /usr/share/doc/linux-headers-5.15.0-1028/debian.README.gz for details. -Package: linux-image-5.15.0-1027-xilinx-zynqmp-dbgsym +Package: linux-image-5.15.0-1028-xilinx-zynqmp-dbgsym Build-Profiles: Architecture: arm64 Section: devel @@ -206,31 +206,31 @@ is uncompressed, and unstripped. This package also includes the unstripped modules. -Package: linux-tools-5.15.0-1027-xilinx-zynqmp +Package: linux-tools-5.15.0-1028-xilinx-zynqmp Build-Profiles: Architecture: arm64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-xilinx-zynqmp-tools-5.15.0-1027 -Description: Linux kernel version specific tools for version 5.15.0-1027 +Depends: ${misc:Depends}, linux-xilinx-zynqmp-tools-5.15.0-1028 +Description: Linux kernel version specific tools for version 5.15.0-1028 This package provides the architecture dependant parts for kernel version locked tools (such as perf and x86_energy_perf_policy) for - version 5.15.0-1027 on + version 5.15.0-1028 on . -Package: linux-cloud-tools-5.15.0-1027-xilinx-zynqmp +Package: linux-cloud-tools-5.15.0-1028-xilinx-zynqmp Build-Profiles: Architecture: arm64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-xilinx-zynqmp-cloud-tools-5.15.0-1027 -Description: Linux kernel version specific cloud tools for version 5.15.0-1027 +Depends: ${misc:Depends}, linux-xilinx-zynqmp-cloud-tools-5.15.0-1028 +Description: Linux kernel version specific cloud tools for version 5.15.0-1028 This package provides the architecture dependant parts for kernel - version locked tools for cloud for version 5.15.0-1027 on + version locked tools for cloud for version 5.15.0-1028 on . -Package: linux-buildinfo-5.15.0-1027-xilinx-zynqmp +Package: linux-buildinfo-5.15.0-1028-xilinx-zynqmp Build-Profiles: Architecture: arm64 Section: kernel reverted: --- linux-xilinx-zynqmp-5.15.0/debian/dkms-versions +++ linux-xilinx-zynqmp-5.15.0.orig/debian/dkms-versions @@ -1 +0,0 @@ -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 -u linux-xilinx-zynqmp-5.15.0/debian/rules linux-xilinx-zynqmp-5.15.0/debian/rules --- linux-xilinx-zynqmp-5.15.0/debian/rules +++ linux-xilinx-zynqmp-5.15.0/debian/rules @@ -101,12 +101,6 @@ do_tools_host= endif -$(foreach _m,$(all_built-in_dkms_modules), \ - $(if $(filter true,$(do_$(_m))),, \ - $(eval do_$(_m)_disable := $$(shell for m in $$$$(cat $(DROOT)/$(_m)-modules.ignore); do grep -qxF $$$$m $(prev_abidir)/../modules.ignore 2>/dev/null || echo $$$$m >> $(prev_abidir)/../modules.ignore; done)) \ - ) \ -) - ifeq ($(do_dkms_wireguard),false) do_wireguard_disable:=$(shell for m in $$(cat $(DROOT)/wireguard-modules.ignore); do grep -qxF $$m $(prev_abidir)/../modules.ignore 2>/dev/null || echo $$m >> $(prev_abidir)/../modules.ignore; done) endif @@ -115,8 +109,8 @@ do_any_tools=$(sort $(filter-out false,$(do_linux_tools) $(do_cloud_tools))) # NVIDIA DKMS package gross series split into desktop and server. -nvidia_desktop_series=$(shell sed -n -e 's/^nvidia-graphics-drivers-\([0-9][0-9]*\) .*/\1/p' debian/dkms-versions) -nvidia_server_series=$(shell sed -n -e 's/^nvidia-graphics-drivers-\([0-9][0-9]*-server\) .*/\1/p' debian/dkms-versions) +nvidia_desktop_series=$(shell sed -n -e 's/^nvidia-graphics-drivers-\([0-9][0-9]*\) .*/\1/p' $(DEBIAN)/dkms-versions) +nvidia_server_series=$(shell sed -n -e 's/^nvidia-graphics-drivers-\([0-9][0-9]*-server\) .*/\1/p' $(DEBIAN)/dkms-versions) # Debian Build System targets binary: binary-indep binary-arch @@ -129,7 +123,7 @@ dh_clean # normal build junk - rm -rf $(DEBIAN)/abi/$(release)-$(revision) + rm -rf $(DEBIAN)/abi rm -rf $(builddir) rm -f $(stampdir)/stamp-* rm -rf $(DEBIAN)/linux-* diff -u linux-xilinx-zynqmp-5.15.0/debian/rules.d/0-common-vars.mk linux-xilinx-zynqmp-5.15.0/debian/rules.d/0-common-vars.mk --- linux-xilinx-zynqmp-5.15.0/debian/rules.d/0-common-vars.mk +++ linux-xilinx-zynqmp-5.15.0/debian/rules.d/0-common-vars.mk @@ -128,7 +128,6 @@ endif abidir := $(CURDIR)/$(DEBIAN)/__abi.current/$(arch) -prev_abidir := $(CURDIR)/$(DEBIAN)/abi/$(arch) commonconfdir := $(CURDIR)/$(DEBIAN)/config archconfdir := $(CURDIR)/$(DEBIAN)/config/$(arch) sharedconfdir := $(CURDIR)/debian.master/config @@ -221,9 +220,6 @@ # DTBs do_dtbs=false -# FIPS check -do_fips_checks=false - # Support parallel= in DEB_BUILD_OPTIONS (see #209008) # # These 2 environment variables set the -j value of the kernel build. For example, @@ -292,7 +288,7 @@ subst_paired = $(subst $(firstword $(subst =, ,$(1))),$(lastword $(subst =, ,$(1))),$(2)) recursive_call = $(if $(2),$(call recursive_call,$(1),$(wordlist 2,$(words $(2)),$(2)),$(call $(1),$(firstword $(2)),$(3))),$(3)) -$(foreach _line,$(shell gawk '{ OFS = "!"; $$1 = $$1; print }' $(DROOT)/dkms-versions), \ +$(foreach _line,$(shell gawk '{ OFS = "!"; $$1 = $$1; print }' $(DEBIAN)/dkms-versions), \ $(eval _params = $(subst !, ,$(_line))) \ $(eval _deb_pkgname = $(firstword $(_params))) \ $(eval _deb_version = $(word 2,$(_params))) \ diff -u linux-xilinx-zynqmp-5.15.0/debian/rules.d/1-maintainer.mk linux-xilinx-zynqmp-5.15.0/debian/rules.d/1-maintainer.mk --- linux-xilinx-zynqmp-5.15.0/debian/rules.d/1-maintainer.mk +++ linux-xilinx-zynqmp-5.15.0/debian/rules.d/1-maintainer.mk @@ -146,9 +146,6 @@ fi finalchecks: debian/control -ifeq ($(do_fips_checks),true) - $(DROOT)/scripts/misc/fips-checks -endif $(DROOT)/scripts/misc/final-checks "$(DEBIAN)" "$(prev_fullver)" diffupstream: diff -u linux-xilinx-zynqmp-5.15.0/debian/rules.d/3-binary-indep.mk linux-xilinx-zynqmp-5.15.0/debian/rules.d/3-binary-indep.mk --- linux-xilinx-zynqmp-5.15.0/debian/rules.d/3-binary-indep.mk +++ linux-xilinx-zynqmp-5.15.0/debian/rules.d/3-binary-indep.mk @@ -112,7 +112,7 @@ install -m755 debian/tools/generic $(toolsbin)/usbip install -m755 debian/tools/generic $(toolsbin)/usbipd - install -m644 $(CURDIR)/tools/usb/usbip/doc/*.8 $(toolsman)/man1/ + install -m644 $(CURDIR)/tools/usb/usbip/doc/*.8 $(toolsman)/man8/ install -m755 debian/tools/generic $(toolsbin)/cpupower install -m644 $(CURDIR)/tools/power/cpupower/man/*.1 $(toolsman)/man1/ diff -u linux-xilinx-zynqmp-5.15.0/debian/rules.d/4-checks.mk linux-xilinx-zynqmp-5.15.0/debian/rules.d/4-checks.mk --- linux-xilinx-zynqmp-5.15.0/debian/rules.d/4-checks.mk +++ linux-xilinx-zynqmp-5.15.0/debian/rules.d/4-checks.mk @@ -1,15 +1,3 @@ -# Check ABI for package against last release (if not same abinum) -abi-check-%: $(stampdir)/stamp-install-% - @echo Debug: $@ - @perl -f $(DROOT)/scripts/abi-check "$*" "$(prev_abinum)" "$(abinum)" \ - "$(prev_abidir)" "$(abidir)" "$(skipabi)" - -# Check the module list against the last release (always) -module-check-%: $(stampdir)/stamp-install-% - @echo Debug: $@ - $(DROOT)/scripts/module-check "$*" \ - "$(prev_abidir)" "$(abidir)" $(skipmodule) - # Check the signature of staging modules module-signature-check-%: $(stampdir)/stamp-install-% @echo Debug: $@ @@ -17,13 +5,7 @@ "$(DROOT)/$(mods_pkg_name)-$*" \ "$(DROOT)/$(mods_extra_pkg_name)-$*" -# Check the reptoline jmp/call functions against the last release. -retpoline-check-%: $(stampdir)/stamp-install-% - @echo Debug: $@ - $(SHELL) $(DROOT)/scripts/retpoline-check "$*" \ - "$(prev_abidir)" "$(abidir)" "$(skipretpoline)" "$(builddir)/build-$*" - -checks-%: module-check-% module-signature-check-% abi-check-% retpoline-check-% +checks-%: module-signature-check-% @echo Debug: $@ # Check the config against the known options list. reverted: --- linux-xilinx-zynqmp-5.15.0/debian/scripts/abi-check +++ linux-xilinx-zynqmp-5.15.0.orig/debian/scripts/abi-check @@ -1,210 +0,0 @@ -#!/usr/bin/perl -w - -my $flavour = shift; -my $prev_abinum = shift; -my $abinum = shift; -my $prev_abidir = shift; -my $abidir = shift; -my $skipabi = shift; - -my $fail_exit = 1; -my $EE = "EE:"; -my $errors = 0; -my $abiskip = 0; - -my $count; - -print "II: Checking ABI for $flavour...\n"; - -if (-f "$prev_abidir/ignore" - or -f "$prev_abidir/$flavour.ignore" or "$skipabi" eq "true") { - print "WW: Explicitly asked to ignore ABI, running in no-fail mode\n"; - $fail_exit = 0; - $abiskip = 1; - $EE = "WW:"; -} - -if ($prev_abinum != $abinum) { - print "II: Different ABI's, running in no-fail mode\n"; - $fail_exit = 0; - $EE = "WW:"; -} - -if (not -f "$abidir/$flavour" or not -f "$prev_abidir/$flavour") { - print "EE: Previous or current ABI file missing!\n"; - print " $abidir/$flavour\n" if not -f "$abidir/$flavour"; - print " $prev_abidir/$flavour\n" if not -f "$prev_abidir/$flavour"; - - # Exit if the ABI files are missing, but return status based on whether - # skip ABI was indicated. - if ("$abiskip" eq "1") { - exit(0); - } else { - exit(1); - } -} - -my %symbols; -my %symbols_ignore; -my %modules_ignore; -my %module_syms; - -# See if we have any ignores -my $ignore = 0; -print " Reading symbols/modules to ignore..."; - -for $file ("$prev_abidir/../blacklist") { - if (-f $file) { - open(IGNORE, "< $file") or - die "Could not open $file"; - while () { - chomp; - if ($_ =~ m/M: (.*)/) { - $modules_ignore{$1} = 1; - } else { - $symbols_ignore{$_} = 1; - } - $ignore++; - } - close(IGNORE); - } -} -print "read $ignore symbols/modules.\n"; - -sub is_ignored($$) { - my ($mod, $sym) = @_; - - die "Missing module name in is_ignored()" if not defined($mod); - die "Missing symbol name in is_ignored()" if not defined($sym); - - if (defined($symbols_ignore{$sym}) or defined($modules_ignore{$mod})) { - return 1; - } - return 0; -} - -# Read new syms first -print " Reading new symbols ($abinum)..."; -$count = 0; -open(NEW, "< $abidir/$flavour") or - die "Could not open $abidir/$flavour"; -while () { - chomp; - m/^(\S+)\s(.+)\s(0x[0-9a-f]+)\s(.+)$/; - $symbols{$4}{'type'} = $1; - $symbols{$4}{'loc'} = $2; - $symbols{$4}{'hash'} = $3; - $module_syms{$2} = 0; - $count++; -} -close(NEW); -print "read $count symbols.\n"; - -# Now the old symbols, checking for missing ones -print " Reading old symbols ($prev_abinum)..."; -$count = 0; -open(OLD, "< $prev_abidir/$flavour") or - die "Could not open $prev_abidir/$flavour"; -while () { - chomp; - m/^(\S+)\s(.+)\s(0x[0-9a-f]+)\s(.+)$/; - $symbols{$4}{'old_type'} = $1; - $symbols{$4}{'old_loc'} = $2; - $symbols{$4}{'old_hash'} = $3; - $count++; -} -close(OLD); - -print "read $count symbols.\n"; - -print "II: Checking for missing symbols in new ABI..."; -$count = 0; -foreach $sym (keys(%symbols)) { - if (!defined($symbols{$sym}{'type'})) { - print "\n" if not $count; - printf(" MISS : %s%s\n", $sym, - is_ignored($symbols{$sym}{'old_loc'}, $sym) ? " (ignored)" : ""); - $count++ if !is_ignored($symbols{$sym}{'old_loc'}, $sym); - } -} -print " " if $count; -print "found $count missing symbols\n"; -if ($count) { - print "$EE Symbols gone missing (what did you do!?!)\n"; - $errors++; -} - - -print "II: Checking for new symbols in new ABI..."; -$count = 0; -foreach $sym (keys(%symbols)) { - if (!defined($symbols{$sym}{'old_type'})) { - print "\n" if not $count; - print " NEW : $sym\n"; - $count++; - } -} -print " " if $count; -print "found $count new symbols\n"; -if ($count and $prev_abinum == $abinum) { - print "WW: Found new symbols within same ABI. Not recommended\n"; -} - -print "II: Checking for changes to ABI...\n"; -$count = 0; -my $moved = 0; -my $changed_type = 0; -my $changed_hash = 0; -foreach $sym (keys(%symbols)) { - if (!defined($symbols{$sym}{'old_type'}) or - !defined($symbols{$sym}{'type'})) { - next; - } - - # Changes in location don't hurt us, but log it anyway - if ($symbols{$sym}{'loc'} ne $symbols{$sym}{'old_loc'}) { - printf(" MOVE : %-40s : %s => %s\n", $sym, $symbols{$sym}{'old_loc'}, - $symbols{$sym}{'loc'}); - $moved++; - } - - # Changes to export type are only bad if new type isn't - # EXPORT_SYMBOL. Changing things to GPL are bad. - if ($symbols{$sym}{'type'} ne $symbols{$sym}{'old_type'}) { - printf(" TYPE : %-40s : %s => %s%s\n", $sym, $symbols{$sym}{'old_type'}. - $symbols{$sym}{'type'}, is_ignored($symbols{$sym}{'loc'}, $sym) - ? " (ignored)" : ""); - $changed_type++ if $symbols{$sym}{'type'} ne "EXPORT_SYMBOL" - and !is_ignored($symbols{$sym}{'loc'}, $sym); - } - - # Changes to the hash are always bad - if ($symbols{$sym}{'hash'} ne $symbols{$sym}{'old_hash'}) { - printf(" HASH : %-40s : %s => %s%s\n", $sym, $symbols{$sym}{'old_hash'}, - $symbols{$sym}{'hash'}, is_ignored($symbols{$sym}{'loc'}, $sym) - ? " (ignored)" : ""); - $changed_hash++ if !is_ignored($symbols{$sym}{'loc'}, $sym); - $module_syms{$symbols{$sym}{'loc'}}++; - } -} - -print "WW: $moved symbols changed location\n" if $moved; -print "$EE $changed_type symbols changed export type and weren't ignored\n" if $changed_type; -print "$EE $changed_hash symbols changed hash and weren't ignored\n" if $changed_hash; - -$errors++ if $changed_hash or $changed_type; -if ($changed_hash) { - print "II: Module hash change summary...\n"; - foreach $mod (sort { $module_syms{$b} <=> $module_syms{$a} } keys %module_syms) { - next if ! $module_syms{$mod}; - printf(" %-40s: %d\n", $mod, $module_syms{$mod}); - } -} - -print "II: Done\n"; - -if ($errors) { - exit($fail_exit); -} else { - exit(0); -} diff -u linux-xilinx-zynqmp-5.15.0/debian/scripts/control-create linux-xilinx-zynqmp-5.15.0/debian/scripts/control-create --- linux-xilinx-zynqmp-5.15.0/debian/scripts/control-create +++ linux-xilinx-zynqmp-5.15.0/debian/scripts/control-create @@ -67 +67 @@ -done <"debian/dkms-versions" +done <"${DEBIAN}/dkms-versions" diff -u linux-xilinx-zynqmp-5.15.0/debian/scripts/misc/final-checks linux-xilinx-zynqmp-5.15.0/debian/scripts/misc/final-checks --- linux-xilinx-zynqmp-5.15.0/debian/scripts/misc/final-checks +++ linux-xilinx-zynqmp-5.15.0/debian/scripts/misc/final-checks @@ -14,48 +14,6 @@ fail=1 } -abi_check() -{ - local abidir="$1" - local arch="$2" - local flavour="$3" - - local abidir="$abidir/$arch" - - if [ ! -f "$abidir/$flavour" -a \ - ! -f "$abidir/$flavour.ignore" -a \ - ! -f "$abidir/ignore" ] - then - failure "$arch/$flavour ABI symbol file missing" - fi - - if [ ! -f "$abidir/$flavour.modules" -a \ - ! -f "$abidir/$flavour.ignore.modules" -a \ - ! -f "$abidir/ignore.modules" ] - then - failure "$arch/$flavour ABI modules file missing" - fi - - if [ ! -f "$abidir/$flavour.retpoline" -a \ - ! -f "$abidir/$flavour.ignore.retpoline" -a \ - ! -f "$abidir/ignore.retpoline" ] - then - failure "$arch/$flavour ABI retpoline file missing" - fi -} - -abi_version="$debian/abi/version" -if ! [ -f "$abi_version" ] -then - failure "$abi_version ABI version file missing" -fi - -version=$(cat "$abi_version") -if [ "$abi" != "$version" ] -then - failure "$abi_version ABI version mismatch ($abi != $version)" -fi - if [ -e $debian/config/config.common.ubuntu ]; then if [ -d debian/certs ]; then if ! grep -q '^CONFIG_SYSTEM_TRUSTED_KEYS="debian/canonical-certs.pem"$' $debian/config/config.common.ubuntu; then @@ -72,23 +30,2 @@ -for arch in $archs -do - image_pkg=$(awk -F '\\s*=\\s*' '$1 == "do_flavour_image_package" { print $2 }' $debian/rules.d/$arch.mk) - if [ "$image_pkg" = "false" ]; then - continue - fi - if [ ! -f "$debian/rules.d/$arch.mk" ]; then - continue - fi - flavours=$( - awk '/^\s*flavours\s*=/{ - sub(/^\s*flavours\s*=\s*/, ""); - print - }' "$debian/rules.d/$arch.mk") - for flavour in $flavours - do - flavour=$(echo "$flavour" | sed -e 's@.*/config.flavour.@@') - abi_check "$debian/abi" "$arch" "$flavour" - done -done - exit "$fail" reverted: --- linux-xilinx-zynqmp-5.15.0/debian/scripts/misc/fips-checks +++ linux-xilinx-zynqmp-5.15.0.orig/debian/scripts/misc/fips-checks @@ -1,139 +0,0 @@ -#!/bin/bash -eu -export LC_ALL=C.UTF-8 - -usage() { - cat << EOF -Usage: ${P:-$(basename "$0")} [-h|--help] - -Check if there are any FIPS relevant changes since the last -release. Any change that is identified should have a justification in -the justifications file or the check will fail. - -Optional arguments: - -h, --help Show this help message and exit. - -p, --previous Version to use as the previous base version. - -c, --current Version to use as the current base version. - -EOF -} - -prev_base_version= -curr_base_version= -crypto_files=( crypto arch/x86/crypto drivers/char/random.c arch/s390/crypto arch/arm64/crypto lib/sha1.c lib/crypto/aes.c ) - -c_red='\033[0;31m' -c_green='\033[0;32m' -c_off='\033[0m' - -# Parse arguments -while [ "$#" -gt 0 ]; do - case "$1" in - -h|--help) - usage - exit 0 - ;; - -p|--previous) - shift - prev_base_version="$1" - ;; - -c|--current) - shift - curr_base_version="$1" - ;; - *) - usage - exit 1 - ;; - esac - shift -done - -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 - echo "Missing file: $CONF" - exit 1 -fi -# shellcheck disable=SC1090 -. "$CONF" - -if [ "$DEBIAN_MASTER" = "" ]; then - echo "DEBIAN_MASTER should be defined either in $DEBIAN/etc/update.conf or the environment" - exit 1 -fi - -# Find the base kernel version used by the previous version -if [ -z "$prev_base_version" ]; then - offset=1 - # 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 - prev_base_version=$(echo "$changes" | sed -n -r -e '/^\s.*\[ Ubuntu: ([~0-9.-]*) \]$/{s//\1/p;q}') - [ "$prev_base_version" ] && break - offset=$(( offset + 1 )) - done - if [ -z "${prev_base_version}" ]; then - echo "Failed to retrieve base version from previous version from changelog: $DEBIAN/changelog" - exit 1 - fi -fi - -# Find the current base kernel version -if [ -z "$curr_base_version" ]; then - curr_base_version=$(dpkg-parsechangelog -l"${DEBIAN_MASTER}/changelog" -SVersion) - if ! [ "$curr_base_version" ]; then - echo "Failed to retrieve current master version from changelog: $DEBIAN_MASTER/changelog" - exit 1 - fi -fi - -# Check base kernel tags -package=$(dpkg-parsechangelog -l"${DEBIAN_MASTER}/changelog" -SSource) -tag_prefix="Ubuntu${package#linux}-" -prev_tag="${tag_prefix}${prev_base_version}" -curr_tag="${tag_prefix}${curr_base_version}" -for tag in "$prev_tag" "$curr_tag"; do - if ! git rev-parse --verify "$tag" &> /dev/null; then - echo "Missing tag \"$tag\". Please fetch tags from base kernel." - exit 1 - fi -done - -# Check all the changes -fails=0 -justifications_file="$DEBIAN/fips.justifications" -justifications=$(grep -P '^[^#\s]' "$justifications_file" 2> /dev/null || true) -while read -r id; do - short_msg=$(git log --format=%s --max-count=1 "$id") - if echo "$justifications" | grep -q -x -F "$short_msg"; then - echo -e "${c_green}OK${c_off} | ${id::12} ${short_msg}" - continue - fi - echo -e "${c_red}FAIL${c_off} | ${id::12} ${short_msg}" - fails=$(( fails + 1 )) -done < <(git rev-list "${prev_tag}..${curr_tag}" -- "${crypto_files[@]}") - -echo -if [ "$fails" -gt 0 ]; then - echo "FIPS relevant changes were found without justification: ${fails} change(s)." - echo "Please, check the commits above and update the file \"${justifications_file}\"." - exit 1 -fi - -echo "Check completed without errors." -exit 0 reverted: --- linux-xilinx-zynqmp-5.15.0/debian/scripts/misc/getabis +++ linux-xilinx-zynqmp-5.15.0.orig/debian/scripts/misc/getabis @@ -1,222 +0,0 @@ -#!/bin/bash - -export LC_ALL=C.UTF-8 - -if [ "$#" = "1" ]; then - set - $(echo "$1" | sed -e 's/-/ /') -fi -if [ "$#" != "2" ]; then - echo "Usage: $0 " 1>&2 - echo "Usage: $0 " 1>&2 - exit 1 -fi - -if [ "$DEBIAN" = "" ]; then - . debian/debian.env -fi - -ver=$1 -revision=$2 -abi=${revision%%.*} - -verabi=$ver-$abi -verfull=$ver-$revision - -WGET="wget --tries=1 --timeout=10 --quiet -c" - -# Check if we use a flat (unversioned) ABI directory -if [ -f "${DEBIAN}/abi/version" ] || \ - grep -qP '^abidir\s+.*/__abi.current/' debian/rules.d/0-common-vars.mk ; then - echo "Using flat ABI directory" - flat_abi=1 - abidir=$(pwd)/${DEBIAN}/abi -else - echo "Using versioned ABI directory" - flat_abi=0 - abidir=$(pwd)/${DEBIAN}/abi/${verfull} -fi - -tmpdir="`pwd`/abi-tmp-$verfull" -origdir="`pwd`" -fwinfo=$abidir/fwinfo - -test -d $tmpdir || mkdir $tmpdir - -package_prefixes() { - : # no longer used ... -} - -getall() { - arch=$1 - shift - - mkdir -p $abidir/$arch - - for sub in $@; do - if [ -f $abidir/$arch/$sub ]; then - echo "Existing $sub($arch)..." - continue - fi - echo "Fetching $sub($arch)..." - getall_set "linux-buildinfo" "$arch" "$sub" || \ - getall_set "linux-image-unsigned linux-modules linux-modules-extra" "$arch" "$sub" || \ - getall_set "linux-image-unsigned linux-modules" "$arch" "$sub" || \ - getall_set "linux-image linux-modules linux-modules-extra" "$arch" "$sub" || \ - getall_set "linux-image linux-modules" "$arch" "$sub" || \ - getall_set "linux-image linux-image-extra" "$arch" "$sub" || \ - getall_set "linux-image" "$arch" "$sub" || \ - { echo "FAILED"; exit 1; } - done -} -getall_set() -{ - prefixes="$1" - arch="$2" - sub="$3" - ( - echo -n " set:" - filenames="" - cd $tmpdir - found=1 - for prefix in $prefixes - do - echo -n " $prefix=" - if [ "$found" = 0 ]; then - echo -n "-" - continue - fi - filename=${prefix}-${verabi}-${sub}_${verfull}_${arch}.deb - for r in "${repo_list[@]}" - do - if ! [ -f $filename ]; then - $WGET $r/$filename - rc="$?" - # If this was not successful or a valid error - # return from the server all bets are off, bail. - [ "$rc" != 0 -a "$rc" != 8 ] && return 2 - fi - if [ -f $filename ]; then - echo -n "y" - filenames="$filenames $filename" - break - fi - done - if [ ! -f "$filename" ]; then - echo -n "n" - found=0 - fi - done - echo "" - if [ "$found" = 0 ]; then - return 1 - fi - echo " extracting..." - for filename in $filenames - do - dpkg-deb --extract $filename tmp - done - # FORM 1: linux-image et al extracted here. - if [ -d tmp/boot ]; then - echo " images..." - find tmp -name "*.ko" | while read f; do - modinfo $f | grep ^firmware >> $fwinfo - done - if [ -f tmp/boot/abi-* ]; then - mv tmp/boot/abi-* $abidir/$arch/$sub - else - echo " NO ABI FILE" - fi - if [ -f tmp/boot/retpoline-* ]; then - mv tmp/boot/retpoline-* $abidir/$arch/$sub.retpoline - else - echo " NO RETPOLINE FILE" - fi - (cd tmp; find lib/modules/$verabi-$sub/kernel -name '*.ko') | \ - sed -e 's/.*\/\([^\/]*\)\.ko/\1/' | sort > \ - $abidir/$arch/$sub.modules - ( - cd tmp; - # Prevent exposing some errors when called by python scripts. SIGPIPE seems to get - # exposed when using the `find ...` form of the command. - ko=$(find lib/modules/$verabi-$sub/kernel \ - -name '*.ko' | head -1) - readelf -p .comment "$ko" | gawk ' - ($1 == "[") { - printf("%s", $3); - for (n=4; n<=NF; n++) { - printf(" %s", $n); - } - print "" - }' | sort -u >$abidir/$arch/$sub.compiler - version=`cat $abidir/$arch/$sub.compiler` - echo " $version" - ) - # FORM 2: moduleinfo packages - # cranky fix -- modinfo supported - else - echo " buildinfo..." - base="tmp/usr/lib/linux/${verabi}-${sub}" - mv "$base/abi" "$abidir/$arch/$sub" - for comp in 'modules' 'retpoline' 'compiler' - do - mv "$base/$comp" "$abidir/$arch/$sub.$comp" - done - if [ -e "${base}"/modules.builtin ] ; then - mv "${base}"/modules.builtin "${abidir}/${arch}/${sub}".modules.builtin - fi - cat "$base/fwinfo" >>"$fwinfo" - if [ -e "${base}"/fwinfo.builtin ] ; then - cat "${base}"/fwinfo.builtin >> "${fwinfo}".builtin - fi - fi - rm -rf tmp $filenames - echo " done" - ) - rc="$?" - if [ "$rc" = 2 ]; then - echo "ERROR: downloads are reporting network failures" 1>&2 - exit 1 - fi - return "$rc" -} - -# MAIN - -# Setup abi directory -rm -rf "${abidir}" -mkdir -p $abidir -echo $abi > $abidir/abiname -if [ ${flat_abi} -eq 1 ] ; then - echo "${verfull}" > "${abidir}"/version -fi - -# NOTE: The flavours are hardcoded, because they may have changed from the -# current build. - -. $DEBIAN/etc/getabis - -# Extract compiler source package version from e.g.: -# GCC: (Ubuntu/Linaro 4.8.2-19ubuntu1) 4.8.2 -compilers=`sed 's/^.*(.* \(.*\)).*$/\1/' $abidir/*/*.compiler | sort -u | wc -l` -if [ "$compilers" != 1 ]; then - echo "WARNING: inconsistent compiler versions detected:" 1>&2 - sort -u $abidir/*/*.compiler | sed 's/^/WARNING: /' 1>&2 -fi - -# Sort fwinfo files -sort < $fwinfo | uniq > fwinfo.tmp -mv fwinfo.tmp $fwinfo -if [ -e "${fwinfo}".builtin ] ; then - sort < "${fwinfo}".builtin | uniq > fwinfo.tmp - mv fwinfo.tmp "${fwinfo}".builtin -fi - -rmdir $tmpdir - -# If this is running in a git repo, add the new ABI directory, remove the old -if [ -d ".git" ]; then - git add "${abidir}" - if [ ${flat_abi} -eq 0 ] ; then - find "$DEBIAN"/abi/* -maxdepth 0 -type d | grep -v "$verfull" | while read f; do git rm -rf "$f"; done - fi -fi diff -u linux-xilinx-zynqmp-5.15.0/debian/scripts/misc/kconfig/annotations.py linux-xilinx-zynqmp-5.15.0/debian/scripts/misc/kconfig/annotations.py --- linux-xilinx-zynqmp-5.15.0/debian/scripts/misc/kconfig/annotations.py +++ linux-xilinx-zynqmp-5.15.0/debian/scripts/misc/kconfig/annotations.py @@ -65,6 +65,10 @@ 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 @@ -110,13 +114,22 @@ m = re.match(r".* policy<(.*?)>", line) if m: match = True - try: - entry["policy"] |= literal_eval(m.group(1)) - except TypeError: - entry["policy"] = { - **entry["policy"], - **literal_eval(m.group(1)), - } + # Update the previous entry considering potential overrides: + # - if the new entry is adding a rule for a new + # arch/flavour, simply add that + # - if the new entry is overriding a previous + # arch-flavour item, then overwrite that item + # - if the new entry is overriding a whole arch, then + # remove all the previous flavour rules of that arch + new_entry = literal_eval(m.group(1)) + for key in new_entry: + if key in self.arch: + for flavour_key in list(entry["policy"].keys()): + if flavour_key.startswith(key): + del entry["policy"][flavour_key] + entry["policy"][key] = new_entry[key] + else: + entry["policy"][key] = new_entry[key] m = re.match(r".* note<(.*?)>", line) if m: @@ -218,12 +231,10 @@ self._json_parse(data, is_included=True) def _parse(self, data: str): - # Try to parse the legacy format first, otherwise use the new JSON - # format. - try: - self._legacy_parse(data) - except SyntaxError: + 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]: diff -u linux-xilinx-zynqmp-5.15.0/debian/scripts/misc/kconfig/run.py linux-xilinx-zynqmp-5.15.0/debian/scripts/misc/kconfig/run.py --- linux-xilinx-zynqmp-5.15.0/debian/scripts/misc/kconfig/run.py +++ linux-xilinx-zynqmp-5.15.0/debian/scripts/misc/kconfig/run.py @@ -75,6 +75,11 @@ 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( @@ -156,7 +161,7 @@ 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)) + 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: reverted: --- linux-xilinx-zynqmp-5.15.0/debian/scripts/module-check +++ linux-xilinx-zynqmp-5.15.0.orig/debian/scripts/module-check @@ -1,113 +0,0 @@ -#!/usr/bin/python3 - -import os -import sys - -if len(sys.argv) < 4 or len(sys.argv) > 5: - print('Usage: module-check []') - sys.exit(2) - -flavor, prev_abidir, abidir = sys.argv[1:4] # pylint: disable=W0632 -if len(sys.argv) > 4: - skipmodule = sys.argv[4] -else: - skipmodule = '' - -print('II: Checking modules for {}...'.format(flavor), end='') - -if ((os.path.exists('{}/ignore.modules'.format(prev_abidir)) or - os.path.exists('{}/{}.ignore.modules'.format(prev_abidir, flavor)))): - print('explicitly ignoring modules') - sys.exit(0) - -curr_modules = '{}/{}.modules'.format(abidir, flavor) -prev_modules = '{}/{}.modules'.format(prev_abidir, flavor) -if not os.path.exists(curr_modules) or not os.path.exists(prev_modules): - print('previous or current modules file missing!') - print(' {}'.format(curr_modules)) - print(' {}'.format(prev_modules)) - sys.exit(0 if skipmodule else 1) - -print() - -modules = {} -modules_ignore = {} -missing = 0 -new = 0 -errors = 0 - -# See if we have any ignores -prev_modules_ignore = '{}/../modules.ignore'.format(prev_abidir) -if os.path.exists(prev_modules_ignore): - ignore = 0 - with open(prev_modules_ignore) as fh: - for mod in fh: - mod = mod.strip() - if mod.startswith('#'): - continue - modules_ignore[mod] = 1 - ignore += 1 - print('read {} modules.'.format(ignore)) - -# Read new modules first -print(' reading new modules...', end='') -new_count = 0 -for f in (curr_modules, curr_modules + '.builtin'): - if not os.path.exists(f): - continue - with open(f) as fh: - for mod in fh: - mod = mod.strip() - modules[mod] = 1 - new_count += 1 -print('read {} modules.'.format(new_count)) - -# Now the old modules, checking for missing ones -print(' reading old modules...', end='') -old_count = 0 -for f in (prev_modules, prev_modules + '.builtin'): - if not os.path.exists(f): - continue - with open(f) as fh: - for mod in fh: - mod = mod.strip() - if mod not in modules: - if not missing: - print() - missing += 1 - if mod not in modules_ignore: - print(' MISS: {}'.format(mod)) - errors += 1 - else: - print(' MISS: {} (ignored)'.format(mod)) - else: - modules[mod] += 1 - old_count += 1 -# Check for new modules -for mod, cnt in modules.items(): - if cnt < 2: - if not missing and not new: - print() - print(' NEW: {}'.format(mod)) - new += 1 -if new or missing: - print(' read {} modules : new({}) missing({})'.format(old_count, new, missing)) -else: - print('read {} modules.'.format(old_count)) - -# Let's see where we stand... -if errors: - if skipmodule: - print('WW: Explicitly asked to ignore failures') - else: - print('EE: Missing modules') - sys.exit(1) - -if new: - print('II: New modules') -else: - print('II: No new modules') - -print('II: Done') - -sys.exit(0) reverted: --- linux-xilinx-zynqmp-5.15.0/debian/scripts/retpoline-check +++ linux-xilinx-zynqmp-5.15.0.orig/debian/scripts/retpoline-check @@ -1,47 +0,0 @@ -#!/bin/bash - -flavour="$1" -prev_abidir="$2" -curr_abidir="$3" -skipretpoline="$4" - -echo "II: Checking retpoline indirections for $flavour..."; - -if [ "$skipretpoline" = 'true' ]; then - echo "manual request ignoring retpoline delta" -fi - -if [ -f "$prev_abidir/ignore.retpoline" -o \ - -f "$prev_abidir/$flavour.ignore.retpoline" ]; then - echo "explicitly ignoring retpoline delta" - skipretpoline='true' -fi - -prev="$prev_abidir/$flavour.retpoline" -curr="$curr_abidir/$flavour.retpoline" -if [ ! -f "$prev" ]; then - echo "previous retpoline file missing!" - echo " $prev" - prev="/dev/null" -fi -if [ ! -f "$curr" ]; then - echo "current retpoline file missing!" - echo " $curr" - curr="/dev/null" -fi - -echo "II: retpoline delta in this package..." -rc=0 -diff -u "$prev" "$curr" || true -count=$( diff -u "$prev" "$curr" | grep '^+[^+]' | wc -l ) -if [ "$count" != 0 ]; then - rc=1 - echo "WW: $count new retpoline sequences detected" -fi - -echo "II: Done"; -if [ "$skipretpoline" = 'true' -a "$rc" -ne 0 ]; then - echo "II: ignoring errors" - exit 0 -fi -exit "$rc" diff -u linux-xilinx-zynqmp-5.15.0/drivers/acpi/acpi_extlog.c linux-xilinx-zynqmp-5.15.0/drivers/acpi/acpi_extlog.c --- linux-xilinx-zynqmp-5.15.0/drivers/acpi/acpi_extlog.c +++ linux-xilinx-zynqmp-5.15.0/drivers/acpi/acpi_extlog.c @@ -145,9 +145,14 @@ static u32 err_seq; estatus = extlog_elog_entry_check(cpu, bank); - if (estatus == NULL || (mce->kflags & MCE_HANDLED_CEC)) + if (!estatus) return NOTIFY_DONE; + if (mce->kflags & MCE_HANDLED_CEC) { + estatus->block_status = 0; + return NOTIFY_DONE; + } + memcpy(elog_buf, (void *)estatus, ELOG_ENTRY_LEN); /* clear record status to enable BIOS to update it again */ estatus->block_status = 0; @@ -303,9 +308,10 @@ static void __exit extlog_exit(void) { mce_unregister_decode_chain(&extlog_mce_dec); - ((struct extlog_l1_head *)extlog_l1_addr)->flags &= ~FLAG_OS_OPTIN; - if (extlog_l1_addr) + if (extlog_l1_addr) { + ((struct extlog_l1_head *)extlog_l1_addr)->flags &= ~FLAG_OS_OPTIN; acpi_os_unmap_iomem(extlog_l1_addr, l1_size); + } if (elog_addr) acpi_os_unmap_iomem(elog_addr, elog_size); release_mem_region(elog_base, elog_size); diff -u linux-xilinx-zynqmp-5.15.0/drivers/acpi/acpi_fpdt.c linux-xilinx-zynqmp-5.15.0/drivers/acpi/acpi_fpdt.c --- linux-xilinx-zynqmp-5.15.0/drivers/acpi/acpi_fpdt.c +++ linux-xilinx-zynqmp-5.15.0/drivers/acpi/acpi_fpdt.c @@ -194,12 +194,19 @@ 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 @@ 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 @@ 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 @@ 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 @@ } } 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 @@ 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 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/acpi/acpi_lpss.c linux-xilinx-zynqmp-5.15.0/drivers/acpi/acpi_lpss.c --- linux-xilinx-zynqmp-5.15.0/drivers/acpi/acpi_lpss.c +++ linux-xilinx-zynqmp-5.15.0/drivers/acpi/acpi_lpss.c @@ -439,8 +439,9 @@ if (!clk_name) return -ENOMEM; clk = clk_register_fractional_divider(NULL, clk_name, parent, + 0, prv_base, 1, 15, 16, 15, CLK_FRAC_DIVIDER_POWER_OF_TWO_PS, - prv_base, 1, 15, 16, 15, 0, NULL); + NULL); parent = clk_name; clk_name = kasprintf(GFP_KERNEL, "%s-update", devname); diff -u linux-xilinx-zynqmp-5.15.0/drivers/acpi/acpi_video.c linux-xilinx-zynqmp-5.15.0/drivers/acpi/acpi_video.c --- linux-xilinx-zynqmp-5.15.0/drivers/acpi/acpi_video.c +++ linux-xilinx-zynqmp-5.15.0/drivers/acpi/acpi_video.c @@ -566,6 +566,15 @@ DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 3350"), }, }, + { + .callback = video_set_report_key_events, + .driver_data = (void *)((uintptr_t)REPORT_BRIGHTNESS_KEY_EVENTS), + .ident = "COLORFUL X15 AT 23", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "COLORFUL"), + DMI_MATCH(DMI_PRODUCT_NAME, "X15 AT 23"), + }, + }, /* * Some machines change the brightness themselves when a brightness * hotkey gets pressed, despite us telling them not to. In this case @@ -1793,12 +1802,12 @@ return; count++; - acpi_get_parent(device->dev->handle, &acpi_parent); - - pdev = acpi_get_pci_dev(acpi_parent); - if (pdev) { - parent = &pdev->dev; - pci_dev_put(pdev); + if (ACPI_SUCCESS(acpi_get_parent(device->dev->handle, &acpi_parent))) { + pdev = acpi_get_pci_dev(acpi_parent); + if (pdev) { + parent = &pdev->dev; + pci_dev_put(pdev); + } } memset(&props, 0, sizeof(struct backlight_properties)); diff -u linux-xilinx-zynqmp-5.15.0/drivers/acpi/apei/ghes.c linux-xilinx-zynqmp-5.15.0/drivers/acpi/apei/ghes.c --- linux-xilinx-zynqmp-5.15.0/drivers/acpi/apei/ghes.c +++ linux-xilinx-zynqmp-5.15.0/drivers/acpi/apei/ghes.c @@ -100,6 +100,20 @@ } /* + * A platform may describe one error source for the handling of synchronous + * errors (e.g. MCE or SEA), or for handling asynchronous errors (e.g. SCI + * or External Interrupt). On x86, the HEST notifications are always + * asynchronous, so only SEA on ARM is delivered as a synchronous + * notification. + */ +static inline bool is_hest_sync_notify(struct ghes *ghes) +{ + u8 notify_type = ghes->generic->notify.type; + + return notify_type == ACPI_HEST_NOTIFY_SEA; +} + +/* * This driver isn't really modular, however for the time being, * continuing to use module_param is the easiest way to remain * compatible with existing boot arg use cases. @@ -461,7 +475,7 @@ } static bool ghes_handle_memory_failure(struct acpi_hest_generic_data *gdata, - int sev) + int sev, bool sync) { int flags = -1; int sec_sev = ghes_severity(gdata->error_severity); @@ -475,7 +489,7 @@ (gdata->flags & CPER_SEC_ERROR_THRESHOLD_EXCEEDED)) flags = MF_SOFT_OFFLINE; if (sev == GHES_SEV_RECOVERABLE && sec_sev == GHES_SEV_RECOVERABLE) - flags = 0; + flags = sync ? MF_ACTION_REQUIRED : 0; if (flags != -1) return ghes_do_memory_failure(mem_err->physical_addr, flags); @@ -483,9 +497,11 @@ return false; } -static bool ghes_handle_arm_hw_error(struct acpi_hest_generic_data *gdata, int sev) +static bool ghes_handle_arm_hw_error(struct acpi_hest_generic_data *gdata, + int sev, bool sync) { struct cper_sec_proc_arm *err = acpi_hest_get_payload(gdata); + int flags = sync ? MF_ACTION_REQUIRED : 0; bool queued = false; int sec_sev, i; char *p; @@ -510,7 +526,7 @@ * and don't filter out 'corrected' error here. */ if (is_cache && has_pa) { - queued = ghes_do_memory_failure(err_info->physical_fault_addr, 0); + queued = ghes_do_memory_failure(err_info->physical_fault_addr, flags); p += err_info->length; continue; } @@ -631,6 +647,7 @@ const guid_t *fru_id = &guid_null; char *fru_text = ""; bool queued = false; + bool sync = is_hest_sync_notify(ghes); sev = ghes_severity(estatus->error_severity); apei_estatus_for_each_section(estatus, gdata) { @@ -648,13 +665,13 @@ ghes_edac_report_mem_error(sev, mem_err); arch_apei_report_mem_error(sev, mem_err); - queued = ghes_handle_memory_failure(gdata, sev); + queued = ghes_handle_memory_failure(gdata, sev, sync); } else if (guid_equal(sec_type, &CPER_SEC_PCIE)) { ghes_handle_aer(gdata); } else if (guid_equal(sec_type, &CPER_SEC_PROC_ARM)) { - queued = ghes_handle_arm_hw_error(gdata, sev); + queued = ghes_handle_arm_hw_error(gdata, sev, sync); } else { void *err = acpi_hest_get_payload(gdata); diff -u linux-xilinx-zynqmp-5.15.0/drivers/acpi/resource.c linux-xilinx-zynqmp-5.15.0/drivers/acpi/resource.c --- linux-xilinx-zynqmp-5.15.0/drivers/acpi/resource.c +++ linux-xilinx-zynqmp-5.15.0/drivers/acpi/resource.c @@ -447,6 +447,13 @@ }, }, { + /* 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 = { DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), @@ -475,6 +482,25 @@ } }, { + /* TongFang GMxXGxx/TUXEDO Polaris 15 Gen5 AMD */ + .matches = { + DMI_MATCH(DMI_BOARD_NAME, "GMxXGxx"), + }, + }, + { + /* TongFang GMxXGxx sold as Eluktronics Inc. RP-15 */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Eluktronics Inc."), + DMI_MATCH(DMI_BOARD_NAME, "RP-15"), + }, + }, + { + /* TongFang GM6XGxX/TUXEDO Stellaris 16 Gen5 AMD */ + .matches = { + DMI_MATCH(DMI_BOARD_NAME, "GM6XGxX"), + }, + }, + { .ident = "MAINGEAR Vector Pro 2 17", .matches = { DMI_MATCH(DMI_SYS_VENDOR, "Micro Electronics Inc"), diff -u linux-xilinx-zynqmp-5.15.0/drivers/android/binder.c linux-xilinx-zynqmp-5.15.0/drivers/android/binder.c --- linux-xilinx-zynqmp-5.15.0/drivers/android/binder.c +++ linux-xilinx-zynqmp-5.15.0/drivers/android/binder.c @@ -450,6 +450,16 @@ { WARN_ON(!list_empty(&thread->waiting_thread_node)); binder_enqueue_work_ilocked(work, &thread->todo); + + /* (e)poll-based threads require an explicit wakeup signal when + * queuing their own work; they rely on these events to consume + * messages without I/O block. Without it, threads risk waiting + * indefinitely without handling the work. + */ + if (thread->looper & BINDER_LOOPER_STATE_POLL && + thread->pid == current->pid && !thread->process_todo) + wake_up_interruptible_sync(&thread->wait); + thread->process_todo = true; } @@ -4627,6 +4637,7 @@ "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"); @@ -4842,7 +4853,7 @@ thread = binder_get_thread(proc); if (!thread) - return POLLERR; + return EPOLLERR; binder_inner_proc_lock(thread->proc); thread->looper |= BINDER_LOOPER_STATE_POLL; diff -u linux-xilinx-zynqmp-5.15.0/drivers/android/binder_alloc.c linux-xilinx-zynqmp-5.15.0/drivers/android/binder_alloc.c --- linux-xilinx-zynqmp-5.15.0/drivers/android/binder_alloc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/android/binder_alloc.c @@ -270,7 +270,7 @@ } if (mm) { mmap_write_unlock(mm); - mmput(mm); + mmput_async(mm); } return 0; @@ -303,7 +303,7 @@ err_no_vma: if (mm) { mmap_write_unlock(mm); - mmput(mm); + mmput_async(mm); } return vma ? -ENOMEM : -ESRCH; } @@ -343,8 +343,7 @@ continue; if (!buffer->async_transaction) continue; - total_alloc_size += binder_alloc_buffer_size(alloc, buffer) - + sizeof(struct binder_buffer); + total_alloc_size += binder_alloc_buffer_size(alloc, buffer); num_buffers++; } @@ -406,17 +405,17 @@ alloc->pid, extra_buffers_size); return ERR_PTR(-EINVAL); } - if (is_async && - alloc->free_async_space < size + sizeof(struct binder_buffer)) { + + /* Pad 0-size buffers so they get assigned unique addresses */ + size = max(size, sizeof(void *)); + + if (is_async && alloc->free_async_space < size) { binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC, "%d: binder_alloc_buf size %zd failed, no async space left\n", alloc->pid, size); return ERR_PTR(-ENOSPC); } - /* Pad 0-size buffers so they get assigned unique addresses */ - size = max(size, sizeof(void *)); - while (n) { buffer = rb_entry(n, struct binder_buffer, rb_node); BUG_ON(!buffer->free); @@ -518,7 +517,7 @@ buffer->pid = pid; buffer->oneway_spam_suspect = false; if (is_async) { - alloc->free_async_space -= size + sizeof(struct binder_buffer); + alloc->free_async_space -= size; binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC_ASYNC, "%d: binder_alloc_buf size %zd async free %zd\n", alloc->pid, size, alloc->free_async_space); @@ -556,7 +555,7 @@ * is the sum of the three given sizes (each rounded up to * pointer-sized boundary) * - * Return: The allocated buffer or %NULL if error + * Return: The allocated buffer or %ERR_PTR(-errno) if error */ struct binder_buffer *binder_alloc_new_buf(struct binder_alloc *alloc, size_t data_size, @@ -656,8 +655,7 @@ BUG_ON(buffer->user_data > alloc->buffer + alloc->buffer_size); if (buffer->async_transaction) { - alloc->free_async_space += buffer_size + sizeof(struct binder_buffer); - + alloc->free_async_space += buffer_size; binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC_ASYNC, "%d: binder_free_buf size %zd async free %zd\n", alloc->pid, size, alloc->free_async_space); @@ -705,7 +703,7 @@ /* * We could eliminate the call to binder_alloc_clear_buf() * from binder_alloc_deferred_release() by moving this to - * binder_alloc_free_buf_locked(). However, that could + * binder_free_buf_locked(). However, that could * increase contention for the alloc mutex if clear_on_free * is used frequently for large buffers. The mutex is not * needed for correctness here. @@ -1004,7 +1002,9 @@ goto err_mmget; if (!mmap_read_trylock(mm)) goto err_mmap_read_lock_failed; - vma = binder_alloc_get_vma(alloc); + vma = vma_lookup(mm, page_addr); + if (vma && vma != binder_alloc_get_vma(alloc)) + goto err_invalid_vma; list_lru_isolate(lru, item); spin_unlock(lock); @@ -1030,6 +1030,8 @@ mutex_unlock(&alloc->mutex); return LRU_REMOVED_RETRY; +err_invalid_vma: + mmap_read_unlock(mm); err_mmap_read_lock_failed: mmput_async(mm); err_mmget: diff -u linux-xilinx-zynqmp-5.15.0/drivers/ata/libata-core.c linux-xilinx-zynqmp-5.15.0/drivers/ata/libata-core.c --- linux-xilinx-zynqmp-5.15.0/drivers/ata/libata-core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/ata/libata-core.c @@ -2382,7 +2382,7 @@ 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; diff -u linux-xilinx-zynqmp-5.15.0/drivers/ata/libata-eh.c linux-xilinx-zynqmp-5.15.0/drivers/ata/libata-eh.c --- linux-xilinx-zynqmp-5.15.0/drivers/ata/libata-eh.c +++ linux-xilinx-zynqmp-5.15.0/drivers/ata/libata-eh.c @@ -2223,7 +2223,7 @@ 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) diff -u linux-xilinx-zynqmp-5.15.0/drivers/atm/idt77252.c linux-xilinx-zynqmp-5.15.0/drivers/atm/idt77252.c --- linux-xilinx-zynqmp-5.15.0/drivers/atm/idt77252.c +++ linux-xilinx-zynqmp-5.15.0/drivers/atm/idt77252.c @@ -2930,6 +2930,8 @@ vc->scq = alloc_scq(card, vc->class); if (!vc->scq) { printk("%s: can't get SCQ.\n", card->name); + kfree(card->vcs[0]); + card->vcs[0] = NULL; return -ENOMEM; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/base/dd.c linux-xilinx-zynqmp-5.15.0/drivers/base/dd.c --- linux-xilinx-zynqmp-5.15.0/drivers/base/dd.c +++ linux-xilinx-zynqmp-5.15.0/drivers/base/dd.c @@ -1228,8 +1228,6 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/base/platform.c linux-xilinx-zynqmp-5.15.0/drivers/base/platform.c --- linux-xilinx-zynqmp-5.15.0/drivers/base/platform.c +++ linux-xilinx-zynqmp-5.15.0/drivers/base/platform.c @@ -1270,31 +1270,11 @@ const char *buf, size_t count) { struct platform_device *pdev = to_platform_device(dev); - char *driver_override, *old, *cp; + int ret; - /* 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); - - kfree(old); + ret = driver_set_override(dev, &pdev->driver_override, buf, count); + if (ret) + return ret; return count; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/base/power/domain.c linux-xilinx-zynqmp-5.15.0/drivers/base/power/domain.c --- linux-xilinx-zynqmp-5.15.0/drivers/base/power/domain.c +++ linux-xilinx-zynqmp-5.15.0/drivers/base/power/domain.c @@ -1044,7 +1044,7 @@ return 0; } -late_initcall(genpd_power_off_unused); +late_initcall_sync(genpd_power_off_unused); #ifdef CONFIG_PM_SLEEP diff -u linux-xilinx-zynqmp-5.15.0/drivers/base/power/main.c linux-xilinx-zynqmp-5.15.0/drivers/base/power/main.c --- linux-xilinx-zynqmp-5.15.0/drivers/base/power/main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/base/power/main.c @@ -580,7 +580,7 @@ } /** - * device_resume_noirq - Execute a "noirq resume" callback for given device. + * __device_resume_noirq - Execute a "noirq resume" callback for given device. * @dev: Device to handle. * @state: PM transition of the system being carried out. * @async: If true, the device is being resumed asynchronously. @@ -588,7 +588,7 @@ * The driver of @dev will not receive interrupts while this function is being * executed. */ -static int device_resume_noirq(struct device *dev, pm_message_t state, bool async) +static void __device_resume_noirq(struct device *dev, pm_message_t state, bool async) { pm_callback_t callback = NULL; const char *info = NULL; @@ -656,7 +656,13 @@ Out: complete_all(&dev->power.completion); TRACE_RESUME(error); - return error; + + if (error) { + suspend_stats.failed_resume_noirq++; + dpm_save_failed_step(SUSPEND_RESUME_NOIRQ); + dpm_save_failed_dev(dev_name(dev)); + pm_dev_err(dev, state, async ? " async noirq" : " noirq", error); + } } static bool is_async(struct device *dev) @@ -669,27 +675,35 @@ { reinit_completion(&dev->power.completion); - if (is_async(dev)) { - get_device(dev); - async_schedule_dev(func, dev); + if (!is_async(dev)) + return false; + + get_device(dev); + + if (async_schedule_dev_nocall(func, dev)) return true; - } + + put_device(dev); return false; } static void async_resume_noirq(void *data, async_cookie_t cookie) { - struct device *dev = (struct device *)data; - int error; - - error = device_resume_noirq(dev, pm_transition, true); - if (error) - pm_dev_err(dev, pm_transition, " async", error); + struct device *dev = data; + __device_resume_noirq(dev, pm_transition, true); put_device(dev); } +static void device_resume_noirq(struct device *dev) +{ + if (dpm_async_fn(dev, async_resume_noirq)) + return; + + __device_resume_noirq(dev, pm_transition, false); +} + static void dpm_noirq_resume_devices(pm_message_t state) { struct device *dev; @@ -699,14 +713,6 @@ mutex_lock(&dpm_list_mtx); pm_transition = state; - /* - * Advanced the async threads upfront, - * in case the starting of async threads is - * delayed by non-async resuming devices. - */ - list_for_each_entry(dev, &dpm_noirq_list, power.entry) - dpm_async_fn(dev, async_resume_noirq); - while (!list_empty(&dpm_noirq_list)) { dev = to_device(dpm_noirq_list.next); get_device(dev); @@ -714,17 +720,7 @@ mutex_unlock(&dpm_list_mtx); - if (!is_async(dev)) { - int error; - - error = device_resume_noirq(dev, state, false); - if (error) { - suspend_stats.failed_resume_noirq++; - dpm_save_failed_step(SUSPEND_RESUME_NOIRQ); - dpm_save_failed_dev(dev_name(dev)); - pm_dev_err(dev, state, " noirq", error); - } - } + device_resume_noirq(dev); put_device(dev); @@ -754,14 +750,14 @@ } /** - * device_resume_early - Execute an "early resume" callback for given device. + * __device_resume_early - Execute an "early resume" callback for given device. * @dev: Device to handle. * @state: PM transition of the system being carried out. * @async: If true, the device is being resumed asynchronously. * * Runtime PM is disabled for @dev while this function is being executed. */ -static int device_resume_early(struct device *dev, pm_message_t state, bool async) +static void __device_resume_early(struct device *dev, pm_message_t state, bool async) { pm_callback_t callback = NULL; const char *info = NULL; @@ -814,21 +810,31 @@ pm_runtime_enable(dev); complete_all(&dev->power.completion); - return error; + + if (error) { + suspend_stats.failed_resume_early++; + dpm_save_failed_step(SUSPEND_RESUME_EARLY); + dpm_save_failed_dev(dev_name(dev)); + pm_dev_err(dev, state, async ? " async early" : " early", error); + } } static void async_resume_early(void *data, async_cookie_t cookie) { - struct device *dev = (struct device *)data; - int error; - - error = device_resume_early(dev, pm_transition, true); - if (error) - pm_dev_err(dev, pm_transition, " async", error); + struct device *dev = data; + __device_resume_early(dev, pm_transition, true); put_device(dev); } +static void device_resume_early(struct device *dev) +{ + if (dpm_async_fn(dev, async_resume_early)) + return; + + __device_resume_early(dev, pm_transition, false); +} + /** * dpm_resume_early - Execute "early resume" callbacks for all devices. * @state: PM transition of the system being carried out. @@ -842,14 +848,6 @@ mutex_lock(&dpm_list_mtx); pm_transition = state; - /* - * Advanced the async threads upfront, - * in case the starting of async threads is - * delayed by non-async resuming devices. - */ - list_for_each_entry(dev, &dpm_late_early_list, power.entry) - dpm_async_fn(dev, async_resume_early); - while (!list_empty(&dpm_late_early_list)) { dev = to_device(dpm_late_early_list.next); get_device(dev); @@ -857,17 +855,7 @@ mutex_unlock(&dpm_list_mtx); - if (!is_async(dev)) { - int error; - - error = device_resume_early(dev, state, false); - if (error) { - suspend_stats.failed_resume_early++; - dpm_save_failed_step(SUSPEND_RESUME_EARLY); - dpm_save_failed_dev(dev_name(dev)); - pm_dev_err(dev, state, " early", error); - } - } + device_resume_early(dev); put_device(dev); @@ -891,12 +879,12 @@ EXPORT_SYMBOL_GPL(dpm_resume_start); /** - * device_resume - Execute "resume" callbacks for given device. + * __device_resume - Execute "resume" callbacks for given device. * @dev: Device to handle. * @state: PM transition of the system being carried out. * @async: If true, the device is being resumed asynchronously. */ -static int device_resume(struct device *dev, pm_message_t state, bool async) +static void __device_resume(struct device *dev, pm_message_t state, bool async) { pm_callback_t callback = NULL; const char *info = NULL; @@ -978,20 +966,30 @@ TRACE_RESUME(error); - return error; + if (error) { + suspend_stats.failed_resume++; + dpm_save_failed_step(SUSPEND_RESUME); + dpm_save_failed_dev(dev_name(dev)); + pm_dev_err(dev, state, async ? " async" : "", error); + } } static void async_resume(void *data, async_cookie_t cookie) { - struct device *dev = (struct device *)data; - int error; + struct device *dev = data; - error = device_resume(dev, pm_transition, true); - if (error) - pm_dev_err(dev, pm_transition, " async", error); + __device_resume(dev, pm_transition, true); put_device(dev); } +static void device_resume(struct device *dev) +{ + if (dpm_async_fn(dev, async_resume)) + return; + + __device_resume(dev, pm_transition, false); +} + /** * dpm_resume - Execute "resume" callbacks for non-sysdev devices. * @state: PM transition of the system being carried out. @@ -1011,27 +1009,17 @@ pm_transition = state; async_error = 0; - list_for_each_entry(dev, &dpm_suspended_list, power.entry) - dpm_async_fn(dev, async_resume); - while (!list_empty(&dpm_suspended_list)) { dev = to_device(dpm_suspended_list.next); + get_device(dev); - if (!is_async(dev)) { - int error; - mutex_unlock(&dpm_list_mtx); + mutex_unlock(&dpm_list_mtx); - error = device_resume(dev, state, false); - if (error) { - suspend_stats.failed_resume++; - dpm_save_failed_step(SUSPEND_RESUME); - dpm_save_failed_dev(dev_name(dev)); - pm_dev_err(dev, state, "", error); - } + device_resume(dev); + + mutex_lock(&dpm_list_mtx); - mutex_lock(&dpm_list_mtx); - } if (!list_empty(&dev->power.entry)) list_move_tail(&dev->power.entry, &dpm_prepared_list); @@ -1272,7 +1260,7 @@ static void async_suspend_noirq(void *data, async_cookie_t cookie) { - struct device *dev = (struct device *)data; + struct device *dev = data; int error; error = __device_suspend_noirq(dev, pm_transition, true); @@ -1455,7 +1443,7 @@ static void async_suspend_late(void *data, async_cookie_t cookie) { - struct device *dev = (struct device *)data; + struct device *dev = data; int error; error = __device_suspend_late(dev, pm_transition, true); @@ -1731,7 +1719,7 @@ static void async_suspend(void *data, async_cookie_t cookie) { - struct device *dev = (struct device *)data; + struct device *dev = data; int error; error = __device_suspend(dev, pm_transition, true); diff -u linux-xilinx-zynqmp-5.15.0/drivers/base/power/runtime.c linux-xilinx-zynqmp-5.15.0/drivers/base/power/runtime.c --- linux-xilinx-zynqmp-5.15.0/drivers/base/power/runtime.c +++ linux-xilinx-zynqmp-5.15.0/drivers/base/power/runtime.c @@ -1479,11 +1479,16 @@ static void pm_runtime_disable_action(void *data) { + pm_runtime_dont_use_autosuspend(data); pm_runtime_disable(data); } /** * devm_pm_runtime_enable - devres-enabled version of pm_runtime_enable. + * + * NOTE: this will also handle calling pm_runtime_dont_use_autosuspend() for + * you at driver exit time if needed. + * * @dev: Device to handle. */ int devm_pm_runtime_enable(struct device *dev) diff -u linux-xilinx-zynqmp-5.15.0/drivers/base/property.c linux-xilinx-zynqmp-5.15.0/drivers/base/property.c --- linux-xilinx-zynqmp-5.15.0/drivers/base/property.c +++ linux-xilinx-zynqmp-5.15.0/drivers/base/property.c @@ -18,12 +18,19 @@ #include #include -struct fwnode_handle *dev_fwnode(struct device *dev) +struct fwnode_handle *__dev_fwnode(struct device *dev) { return IS_ENABLED(CONFIG_OF) && dev->of_node ? of_fwnode_handle(dev->of_node) : dev->fwnode; } -EXPORT_SYMBOL_GPL(dev_fwnode); +EXPORT_SYMBOL_GPL(__dev_fwnode); + +const struct fwnode_handle *__dev_fwnode_const(const struct device *dev) +{ + return IS_ENABLED(CONFIG_OF) && dev->of_node ? + of_fwnode_handle(dev->of_node) : dev->fwnode; +} +EXPORT_SYMBOL_GPL(__dev_fwnode_const); /** * device_property_present - check if a property of a device is present @@ -1281,7 +1288,7 @@ } EXPORT_SYMBOL(fwnode_graph_parse_endpoint); -const void *device_get_match_data(struct device *dev) +const void *device_get_match_data(const struct device *dev) { return fwnode_call_ptr_op(dev_fwnode(dev), device_get_match_data, dev); } diff -u linux-xilinx-zynqmp-5.15.0/drivers/base/regmap/regcache.c linux-xilinx-zynqmp-5.15.0/drivers/base/regmap/regcache.c --- linux-xilinx-zynqmp-5.15.0/drivers/base/regmap/regcache.c +++ linux-xilinx-zynqmp-5.15.0/drivers/base/regmap/regcache.c @@ -325,6 +325,11 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/base/regmap/regmap.c linux-xilinx-zynqmp-5.15.0/drivers/base/regmap/regmap.c --- linux-xilinx-zynqmp-5.15.0/drivers/base/regmap/regmap.c +++ linux-xilinx-zynqmp-5.15.0/drivers/base/regmap/regmap.c @@ -1551,7 +1551,7 @@ /* 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 @@ } 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 -u linux-xilinx-zynqmp-5.15.0/drivers/base/swnode.c linux-xilinx-zynqmp-5.15.0/drivers/base/swnode.c --- linux-xilinx-zynqmp-5.15.0/drivers/base/swnode.c +++ linux-xilinx-zynqmp-5.15.0/drivers/base/swnode.c @@ -547,6 +547,9 @@ if (nargs > NR_FWNODE_REFERENCE_ARGS) return -EINVAL; + if (!args) + return 0; + args->fwnode = software_node_get(refnode); args->nargs = nargs; diff -u linux-xilinx-zynqmp-5.15.0/drivers/block/loop.c linux-xilinx-zynqmp-5.15.0/drivers/block/loop.c --- linux-xilinx-zynqmp-5.15.0/drivers/block/loop.c +++ linux-xilinx-zynqmp-5.15.0/drivers/block/loop.c @@ -1364,7 +1364,7 @@ lo->lo_flags |= LO_FLAGS_PARTSCAN; partscan = lo->lo_flags & LO_FLAGS_PARTSCAN; if (partscan) - lo->lo_disk->flags &= ~GENHD_FL_NO_PART; + clear_bit(GD_SUPPRESS_PART_SCAN, &lo->lo_disk->state); /* enable and uncork uevent now that we are done */ dev_set_uevent_suppress(disk_to_dev(lo->lo_disk), 0); @@ -1517,7 +1517,7 @@ mutex_lock(&lo->lo_mutex); lo->lo_flags = 0; if (!part_shift) - lo->lo_disk->flags |= GENHD_FL_NO_PART; + set_bit(GD_SUPPRESS_PART_SCAN, &lo->lo_disk->state); lo->lo_state = Lo_unbound; mutex_unlock(&lo->lo_mutex); @@ -1636,7 +1636,7 @@ if (!err && (lo->lo_flags & LO_FLAGS_PARTSCAN) && !(prev_lo_flags & LO_FLAGS_PARTSCAN)) { - lo->lo_disk->flags &= ~GENHD_FL_NO_PART; + clear_bit(GD_SUPPRESS_PART_SCAN, &lo->lo_disk->state); partscan = true; } out_unlock: @@ -2489,7 +2489,7 @@ * userspace tools. Parameters like this in general should be avoided. */ if (!part_shift) - disk->flags |= GENHD_FL_NO_PART; + set_bit(GD_SUPPRESS_PART_SCAN, &disk->state); disk->flags |= GENHD_FL_EXT_DEVT; atomic_set(&lo->lo_refcnt, 0); mutex_init(&lo->lo_mutex); diff -u linux-xilinx-zynqmp-5.15.0/drivers/block/null_blk/main.c linux-xilinx-zynqmp-5.15.0/drivers/block/null_blk/main.c --- linux-xilinx-zynqmp-5.15.0/drivers/block/null_blk/main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/block/null_blk/main.c @@ -1900,11 +1900,8 @@ blk_queue_logical_block_size(nullb->q, dev->blocksize); blk_queue_physical_block_size(nullb->q, dev->blocksize); - if (!dev->max_sectors) - dev->max_sectors = queue_max_hw_sectors(nullb->q); - dev->max_sectors = min_t(unsigned int, dev->max_sectors, - BLK_DEF_MAX_SECTORS); - blk_queue_max_hw_sectors(nullb->q, dev->max_sectors); + if (dev->max_sectors) + blk_queue_max_hw_sectors(nullb->q, dev->max_sectors); if (dev->virt_boundary) blk_queue_virt_boundary(nullb->q, PAGE_SIZE - 1); @@ -1954,12 +1951,6 @@ g_bs = PAGE_SIZE; } - if (g_max_sectors > BLK_DEF_MAX_SECTORS) { - pr_warn("invalid max sectors\n"); - pr_warn("defaults max sectors to %u\n", BLK_DEF_MAX_SECTORS); - g_max_sectors = BLK_DEF_MAX_SECTORS; - } - if (g_home_node != NUMA_NO_NODE && g_home_node >= nr_online_nodes) { pr_err("invalid home_node value\n"); g_home_node = NUMA_NO_NODE; diff -u linux-xilinx-zynqmp-5.15.0/drivers/block/rbd.c linux-xilinx-zynqmp-5.15.0/drivers/block/rbd.c --- linux-xilinx-zynqmp-5.15.0/drivers/block/rbd.c +++ linux-xilinx-zynqmp-5.15.0/drivers/block/rbd.c @@ -3454,14 +3454,15 @@ static void rbd_lock_del_request(struct rbd_img_request *img_req) { struct rbd_device *rbd_dev = img_req->rbd_dev; - bool need_wakeup; + bool need_wakeup = false; lockdep_assert_held(&rbd_dev->lock_rwsem); spin_lock(&rbd_dev->lock_lists_lock); - rbd_assert(!list_empty(&img_req->lock_item)); - list_del_init(&img_req->lock_item); - need_wakeup = (rbd_dev->lock_state == RBD_LOCK_STATE_RELEASING && - list_empty(&rbd_dev->running_list)); + if (!list_empty(&img_req->lock_item)) { + list_del_init(&img_req->lock_item); + need_wakeup = (rbd_dev->lock_state == RBD_LOCK_STATE_RELEASING && + list_empty(&rbd_dev->running_list)); + } spin_unlock(&rbd_dev->lock_lists_lock); if (need_wakeup) complete(&rbd_dev->releasing_wait); @@ -3844,14 +3845,19 @@ return; } - list_for_each_entry(img_req, &rbd_dev->acquiring_list, lock_item) { + while (!list_empty(&rbd_dev->acquiring_list)) { + img_req = list_first_entry(&rbd_dev->acquiring_list, + struct rbd_img_request, lock_item); mutex_lock(&img_req->state_mutex); rbd_assert(img_req->state == RBD_IMG_EXCLUSIVE_LOCK); + if (!result) + list_move_tail(&img_req->lock_item, + &rbd_dev->running_list); + else + list_del_init(&img_req->lock_item); rbd_img_schedule(img_req, result); mutex_unlock(&img_req->state_mutex); } - - list_splice_tail_init(&rbd_dev->acquiring_list, &rbd_dev->running_list); } static bool locker_equal(const struct ceph_locker *lhs, diff -u linux-xilinx-zynqmp-5.15.0/drivers/block/rnbd/rnbd-srv.c linux-xilinx-zynqmp-5.15.0/drivers/block/rnbd/rnbd-srv.c --- linux-xilinx-zynqmp-5.15.0/drivers/block/rnbd/rnbd-srv.c +++ linux-xilinx-zynqmp-5.15.0/drivers/block/rnbd/rnbd-srv.c @@ -606,6 +606,7 @@ { char *full_path; char *a, *b; + int len; full_path = kmalloc(PATH_MAX, GFP_KERNEL); if (!full_path) @@ -617,19 +618,19 @@ */ a = strnstr(dev_search_path, "%SESSNAME%", sizeof(dev_search_path)); if (a) { - int len = a - dev_search_path; + len = a - dev_search_path; len = snprintf(full_path, PATH_MAX, "%.*s/%s/%s", len, dev_search_path, srv_sess->sessname, dev_name); - if (len >= PATH_MAX) { - pr_err("Too long path: %s, %s, %s\n", - dev_search_path, srv_sess->sessname, dev_name); - kfree(full_path); - return ERR_PTR(-EINVAL); - } } else { - snprintf(full_path, PATH_MAX, "%s/%s", - dev_search_path, dev_name); + len = snprintf(full_path, PATH_MAX, "%s/%s", + dev_search_path, dev_name); + } + if (len >= PATH_MAX) { + pr_err("Too long path: %s, %s, %s\n", + dev_search_path, srv_sess->sessname, dev_name); + kfree(full_path); + return ERR_PTR(-EINVAL); } /* eliminitate duplicated slashes */ diff -u linux-xilinx-zynqmp-5.15.0/drivers/block/virtio_blk.c linux-xilinx-zynqmp-5.15.0/drivers/block/virtio_blk.c --- linux-xilinx-zynqmp-5.15.0/drivers/block/virtio_blk.c +++ linux-xilinx-zynqmp-5.15.0/drivers/block/virtio_blk.c @@ -743,6 +743,7 @@ 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 @@ /* 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 -u linux-xilinx-zynqmp-5.15.0/drivers/bluetooth/btmtkuart.c linux-xilinx-zynqmp-5.15.0/drivers/bluetooth/btmtkuart.c --- linux-xilinx-zynqmp-5.15.0/drivers/bluetooth/btmtkuart.c +++ linux-xilinx-zynqmp-5.15.0/drivers/bluetooth/btmtkuart.c @@ -471,7 +471,7 @@ return data; } -static int btmtkuart_recv(struct hci_dev *hdev, const u8 *data, size_t count) +static void btmtkuart_recv(struct hci_dev *hdev, const u8 *data, size_t count) { struct btmtkuart_dev *bdev = hci_get_drvdata(hdev); const unsigned char *p_left = data, *p_h4; @@ -510,25 +510,20 @@ bt_dev_err(bdev->hdev, "Frame reassembly failed (%d)", err); bdev->rx_skb = NULL; - return err; + return; } sz_left -= sz_h4; p_left += sz_h4; } - - return 0; } static int btmtkuart_receive_buf(struct serdev_device *serdev, const u8 *data, size_t count) { struct btmtkuart_dev *bdev = serdev_device_get_drvdata(serdev); - int err; - err = btmtkuart_recv(bdev->hdev, data, count); - if (err < 0) - return err; + btmtkuart_recv(bdev->hdev, data, count); bdev->hdev->stat.byte_rx += count; diff -u linux-xilinx-zynqmp-5.15.0/drivers/bluetooth/btusb.c linux-xilinx-zynqmp-5.15.0/drivers/bluetooth/btusb.c --- linux-xilinx-zynqmp-5.15.0/drivers/bluetooth/btusb.c +++ linux-xilinx-zynqmp-5.15.0/drivers/bluetooth/btusb.c @@ -438,4 +438,16 @@ 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), @@ -2507,6 +2519,9 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/bluetooth/hci_qca.c linux-xilinx-zynqmp-5.15.0/drivers/bluetooth/hci_qca.c --- linux-xilinx-zynqmp-5.15.0/drivers/bluetooth/hci_qca.c +++ linux-xilinx-zynqmp-5.15.0/drivers/bluetooth/hci_qca.c @@ -1860,6 +1860,7 @@ static const struct qca_device_data qca_soc_data_qca6390 = { .soc_type = QCA_QCA6390, .num_vregs = 0, + .capabilities = QCA_CAP_WIDEBAND_SPEECH | QCA_CAP_VALID_LE_STATES, }; static const struct qca_device_data qca_soc_data_wcn6750 = { diff -u linux-xilinx-zynqmp-5.15.0/drivers/bluetooth/hci_vhci.c linux-xilinx-zynqmp-5.15.0/drivers/bluetooth/hci_vhci.c --- linux-xilinx-zynqmp-5.15.0/drivers/bluetooth/hci_vhci.c +++ linux-xilinx-zynqmp-5.15.0/drivers/bluetooth/hci_vhci.c @@ -67,7 +67,10 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/bus/mhi/host/init.c linux-xilinx-zynqmp-5.15.0/drivers/bus/mhi/host/init.c --- linux-xilinx-zynqmp-5.15.0/drivers/bus/mhi/host/init.c +++ linux-xilinx-zynqmp-5.15.0/drivers/bus/mhi/host/init.c @@ -338,7 +338,7 @@ er_ctxt->msivec = cpu_to_le32(mhi_event->irq); mhi_event->db_cfg.db_mode = true; - ring->el_size = sizeof(struct mhi_tre); + ring->el_size = sizeof(struct mhi_ring_element); ring->len = ring->el_size * ring->elements; ret = mhi_alloc_aligned_ring(mhi_cntrl, ring, ring->len); if (ret) @@ -370,7 +370,7 @@ for (i = 0; i < NR_OF_CMD_RINGS; i++, mhi_cmd++, cmd_ctxt++) { struct mhi_ring *ring = &mhi_cmd->ring; - ring->el_size = sizeof(struct mhi_tre); + ring->el_size = sizeof(struct mhi_ring_element); ring->elements = CMD_EL_PER_RING; ring->len = ring->el_size * ring->elements; ret = mhi_alloc_aligned_ring(mhi_cntrl, ring, ring->len); @@ -613,7 +613,7 @@ buf_ring = &mhi_chan->buf_ring; tre_ring = &mhi_chan->tre_ring; - tre_ring->el_size = sizeof(struct mhi_tre); + tre_ring->el_size = sizeof(struct mhi_ring_element); tre_ring->len = tre_ring->el_size * tre_ring->elements; chan_ctxt = &mhi_cntrl->mhi_ctxt->chan_ctxt[mhi_chan->chan]; ret = mhi_alloc_aligned_ring(mhi_cntrl, tre_ring, tre_ring->len); diff -u linux-xilinx-zynqmp-5.15.0/drivers/bus/mhi/host/internal.h linux-xilinx-zynqmp-5.15.0/drivers/bus/mhi/host/internal.h --- linux-xilinx-zynqmp-5.15.0/drivers/bus/mhi/host/internal.h +++ linux-xilinx-zynqmp-5.15.0/drivers/bus/mhi/host/internal.h @@ -257,7 +257,7 @@ dma_addr_t cmd_ctxt_addr; }; -struct mhi_tre { +struct mhi_ring_element { __le64 ptr; __le32 dword[2]; }; diff -u linux-xilinx-zynqmp-5.15.0/drivers/bus/mhi/host/main.c linux-xilinx-zynqmp-5.15.0/drivers/bus/mhi/host/main.c --- linux-xilinx-zynqmp-5.15.0/drivers/bus/mhi/host/main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/bus/mhi/host/main.c @@ -267,7 +267,8 @@ static bool is_valid_ring_ptr(struct mhi_ring *ring, dma_addr_t addr) { - return addr >= ring->iommu_base && addr < ring->iommu_base + ring->len; + return addr >= ring->iommu_base && addr < ring->iommu_base + ring->len && + !(addr & (sizeof(struct mhi_ring_element) - 1)); } int mhi_destroy_device(struct device *dev, void *data) @@ -556,7 +557,7 @@ } static int parse_xfer_event(struct mhi_controller *mhi_cntrl, - struct mhi_tre *event, + struct mhi_ring_element *event, struct mhi_chan *mhi_chan) { struct mhi_ring *buf_ring, *tre_ring; @@ -592,7 +593,7 @@ case MHI_EV_CC_EOT: { dma_addr_t ptr = MHI_TRE_GET_EV_PTR(event); - struct mhi_tre *local_rp, *ev_tre; + struct mhi_ring_element *local_rp, *ev_tre; void *dev_rp; struct mhi_buf_info *buf_info; u16 xfer_len; @@ -633,6 +634,8 @@ mhi_del_ring_element(mhi_cntrl, tre_ring); local_rp = tre_ring->rp; + read_unlock_bh(&mhi_chan->lock); + /* notify client */ mhi_chan->xfer_cb(mhi_chan->mhi_dev, &result); @@ -658,6 +661,8 @@ kfree(buf_info->cb_buf); } } + + read_lock_bh(&mhi_chan->lock); } break; } /* CC_EOT */ @@ -691,7 +696,7 @@ } static int parse_rsc_event(struct mhi_controller *mhi_cntrl, - struct mhi_tre *event, + struct mhi_ring_element *event, struct mhi_chan *mhi_chan) { struct mhi_ring *buf_ring, *tre_ring; @@ -755,12 +760,12 @@ } static void mhi_process_cmd_completion(struct mhi_controller *mhi_cntrl, - struct mhi_tre *tre) + struct mhi_ring_element *tre) { dma_addr_t ptr = MHI_TRE_GET_EV_PTR(tre); struct mhi_cmd *cmd_ring = &mhi_cntrl->mhi_cmd[PRIMARY_CMD_RING]; struct mhi_ring *mhi_ring = &cmd_ring->ring; - struct mhi_tre *cmd_pkt; + struct mhi_ring_element *cmd_pkt; struct mhi_chan *mhi_chan; u32 chan; @@ -793,7 +798,7 @@ struct mhi_event *mhi_event, u32 event_quota) { - struct mhi_tre *dev_rp, *local_rp; + struct mhi_ring_element *dev_rp, *local_rp; struct mhi_ring *ev_ring = &mhi_event->ring; struct mhi_event_ctxt *er_ctxt = &mhi_cntrl->mhi_ctxt->er_ctxt[mhi_event->er_index]; @@ -963,7 +968,7 @@ struct mhi_event *mhi_event, u32 event_quota) { - struct mhi_tre *dev_rp, *local_rp; + struct mhi_ring_element *dev_rp, *local_rp; struct mhi_ring *ev_ring = &mhi_event->ring; struct mhi_event_ctxt *er_ctxt = &mhi_cntrl->mhi_ctxt->er_ctxt[mhi_event->er_index]; @@ -1110,17 +1115,15 @@ if (unlikely(MHI_PM_IN_ERROR_STATE(mhi_cntrl->pm_state))) return -EIO; - read_lock_irqsave(&mhi_cntrl->pm_lock, flags); - ret = mhi_is_ring_full(mhi_cntrl, tre_ring); - if (unlikely(ret)) { - ret = -EAGAIN; - goto exit_unlock; - } + if (unlikely(ret)) + return -EAGAIN; ret = mhi_gen_tre(mhi_cntrl, mhi_chan, buf_info, mflags); if (unlikely(ret)) - goto exit_unlock; + return ret; + + read_lock_irqsave(&mhi_cntrl->pm_lock, flags); /* Packet is queued, take a usage ref to exit M3 if necessary * for host->device buffer, balanced put is done on buffer completion @@ -1140,7 +1143,6 @@ if (dir == DMA_FROM_DEVICE) mhi_cntrl->runtime_put(mhi_cntrl); -exit_unlock: read_unlock_irqrestore(&mhi_cntrl->pm_lock, flags); return ret; @@ -1187,11 +1189,14 @@ struct mhi_buf_info *info, enum mhi_flags flags) { struct mhi_ring *buf_ring, *tre_ring; - struct mhi_tre *mhi_tre; + struct mhi_ring_element *mhi_tre; struct mhi_buf_info *buf_info; int eot, eob, chain, bei; int ret; + /* Protect accesses for reading and incrementing WP */ + write_lock_bh(&mhi_chan->lock); + buf_ring = &mhi_chan->buf_ring; tre_ring = &mhi_chan->tre_ring; @@ -1209,8 +1214,10 @@ if (!info->pre_mapped) { ret = mhi_cntrl->map_single(mhi_cntrl, buf_info); - if (ret) + if (ret) { + write_unlock_bh(&mhi_chan->lock); return ret; + } } eob = !!(flags & MHI_EOB); @@ -1227,6 +1234,8 @@ mhi_add_ring_element(mhi_cntrl, tre_ring); mhi_add_ring_element(mhi_cntrl, buf_ring); + write_unlock_bh(&mhi_chan->lock); + return 0; } @@ -1258,7 +1267,7 @@ struct mhi_chan *mhi_chan, enum mhi_cmd_type cmd) { - struct mhi_tre *cmd_tre = NULL; + struct mhi_ring_element *cmd_tre = NULL; struct mhi_cmd *mhi_cmd = &mhi_cntrl->mhi_cmd[PRIMARY_CMD_RING]; struct mhi_ring *ring = &mhi_cmd->ring; struct device *dev = &mhi_cntrl->mhi_dev->dev; @@ -1516,7 +1525,7 @@ int chan) { - struct mhi_tre *dev_rp, *local_rp; + struct mhi_ring_element *dev_rp, *local_rp; struct mhi_ring *ev_ring; struct device *dev = &mhi_cntrl->mhi_dev->dev; unsigned long flags; diff -u linux-xilinx-zynqmp-5.15.0/drivers/bus/ti-sysc.c linux-xilinx-zynqmp-5.15.0/drivers/bus/ti-sysc.c --- linux-xilinx-zynqmp-5.15.0/drivers/bus/ti-sysc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/bus/ti-sysc.c @@ -2105,11 +2105,21 @@ sysc_val |= sysc_mask; sysc_write(ddata, sysc_offset, sysc_val); - /* Flush posted write */ + + /* + * Some devices need a delay before reading registers + * after reset. Presumably a srst_udelay is not needed + * for devices that use a rstctrl register reset. + */ + if (ddata->cfg.srst_udelay) + fsleep(ddata->cfg.srst_udelay); + + /* + * Flush posted write. For devices needing srst_udelay + * this should trigger an interconnect error if the + * srst_udelay value is needed but not configured. + */ sysc_val = sysc_read_sysconfig(ddata); } - if (ddata->cfg.srst_udelay) - fsleep(ddata->cfg.srst_udelay); - if (ddata->post_reset_quirk) ddata->post_reset_quirk(ddata); diff -u linux-xilinx-zynqmp-5.15.0/drivers/char/hw_random/core.c linux-xilinx-zynqmp-5.15.0/drivers/char/hw_random/core.c --- linux-xilinx-zynqmp-5.15.0/drivers/char/hw_random/core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/char/hw_random/core.c @@ -24,10 +24,13 @@ #include #include #include +#include #include #define RNG_MODULE_NAME "hw_random" +#define RNG_BUFFER_SIZE (SMP_CACHE_BYTES < 32 ? 32 : SMP_CACHE_BYTES) + static struct hwrng *current_rng; /* the current rng has been explicitly chosen by user via sysfs */ static int cur_rng_set_by_user; @@ -59,7 +62,7 @@ static size_t rng_buffer_size(void) { - return SMP_CACHE_BYTES < 32 ? 32 : SMP_CACHE_BYTES; + return RNG_BUFFER_SIZE; } static void add_early_randomness(struct hwrng *rng) @@ -206,6 +209,7 @@ static ssize_t rng_dev_read(struct file *filp, char __user *buf, size_t size, loff_t *offp) { + u8 buffer[RNG_BUFFER_SIZE]; ssize_t ret = 0; int err = 0; int bytes_read, len; @@ -233,34 +237,37 @@ if (bytes_read < 0) { err = bytes_read; goto out_unlock_reading; + } else if (bytes_read == 0 && + (filp->f_flags & O_NONBLOCK)) { + err = -EAGAIN; + goto out_unlock_reading; } + data_avail = bytes_read; } - if (!data_avail) { - if (filp->f_flags & O_NONBLOCK) { - err = -EAGAIN; - goto out_unlock_reading; - } - } else { - len = data_avail; + len = data_avail; + if (len) { if (len > size) len = size; data_avail -= len; - if (copy_to_user(buf + ret, rng_buffer + data_avail, - len)) { + memcpy(buffer, rng_buffer + data_avail, len); + } + mutex_unlock(&reading_mutex); + put_rng(rng); + + if (len) { + if (copy_to_user(buf + ret, buffer, len)) { err = -EFAULT; - goto out_unlock_reading; + goto out; } size -= len; ret += len; } - mutex_unlock(&reading_mutex); - put_rng(rng); if (need_resched()) schedule_timeout_interruptible(1); @@ -271,6 +278,7 @@ } } out: + memzero_explicit(buffer, sizeof(buffer)); return ret ? : err; out_unlock_reading: diff -u linux-xilinx-zynqmp-5.15.0/drivers/char/hw_random/geode-rng.c linux-xilinx-zynqmp-5.15.0/drivers/char/hw_random/geode-rng.c --- linux-xilinx-zynqmp-5.15.0/drivers/char/hw_random/geode-rng.c +++ linux-xilinx-zynqmp-5.15.0/drivers/char/hw_random/geode-rng.c @@ -58,7 +58,8 @@ 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_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 -u linux-xilinx-zynqmp-5.15.0/drivers/clk/clk-si5341.c linux-xilinx-zynqmp-5.15.0/drivers/clk/clk-si5341.c --- linux-xilinx-zynqmp-5.15.0/drivers/clk/clk-si5341.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/clk-si5341.c @@ -892,10 +892,8 @@ r[0] = r_div ? (r_div & 0xff) : 1; r[1] = (r_div >> 8) & 0xff; r[2] = (r_div >> 16) & 0xff; - err = regmap_bulk_write(output->data->regmap, + return regmap_bulk_write(output->data->regmap, SI5341_OUT_R_REG(output), r, 3); - - return 0; } static int si5341_output_reparent(struct clk_si5341_output *output, u8 index) diff -u linux-xilinx-zynqmp-5.15.0/drivers/clk/clk.c linux-xilinx-zynqmp-5.15.0/drivers/clk/clk.c --- linux-xilinx-zynqmp-5.15.0/drivers/clk/clk.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/clk.c @@ -3182,6 +3182,7 @@ 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 @@ * 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 -u linux-xilinx-zynqmp-5.15.0/drivers/clk/imx/clk-imx8qxp.c linux-xilinx-zynqmp-5.15.0/drivers/clk/imx/clk-imx8qxp.c --- linux-xilinx-zynqmp-5.15.0/drivers/clk/imx/clk-imx8qxp.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/imx/clk-imx8qxp.c @@ -67,6 +67,22 @@ "lcd_pxl_bypass_div_clk", }; +static const char *const lvds0_sels[] = { + "clk_dummy", + "clk_dummy", + "clk_dummy", + "clk_dummy", + "mipi0_lvds_bypass_clk", +}; + +static const char *const lvds1_sels[] = { + "clk_dummy", + "clk_dummy", + "clk_dummy", + "clk_dummy", + "mipi1_lvds_bypass_clk", +}; + static const char * const mipi_sels[] = { "clk_dummy", "clk_dummy", @@ -148,10 +164,10 @@ 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); @@ -201,9 +217,9 @@ /* MIPI-LVDS SS */ imx_clk_scu("mipi0_bypass_clk", IMX_SC_R_MIPI_0, IMX_SC_PM_CLK_BYPASS); imx_clk_scu("mipi0_pixel_clk", IMX_SC_R_MIPI_0, IMX_SC_PM_CLK_PER); - imx_clk_scu("mipi0_lvds_pixel_clk", IMX_SC_R_LVDS_0, IMX_SC_PM_CLK_MISC2); imx_clk_scu("mipi0_lvds_bypass_clk", IMX_SC_R_LVDS_0, IMX_SC_PM_CLK_BYPASS); - imx_clk_scu("mipi0_lvds_phy_clk", IMX_SC_R_LVDS_0, IMX_SC_PM_CLK_MISC3); + imx_clk_scu2("mipi0_lvds_pixel_clk", lvds0_sels, ARRAY_SIZE(lvds0_sels), IMX_SC_R_LVDS_0, IMX_SC_PM_CLK_MISC2); + imx_clk_scu2("mipi0_lvds_phy_clk", lvds0_sels, ARRAY_SIZE(lvds0_sels), IMX_SC_R_LVDS_0, IMX_SC_PM_CLK_MISC3); imx_clk_scu2("mipi0_dsi_tx_esc_clk", mipi_sels, ARRAY_SIZE(mipi_sels), IMX_SC_R_MIPI_0, IMX_SC_PM_CLK_MST_BUS); imx_clk_scu2("mipi0_dsi_rx_esc_clk", mipi_sels, ARRAY_SIZE(mipi_sels), IMX_SC_R_MIPI_0, IMX_SC_PM_CLK_SLV_BUS); imx_clk_scu2("mipi0_dsi_phy_clk", mipi_sels, ARRAY_SIZE(mipi_sels), IMX_SC_R_MIPI_0, IMX_SC_PM_CLK_PHY); @@ -213,9 +229,9 @@ imx_clk_scu("mipi1_bypass_clk", IMX_SC_R_MIPI_1, IMX_SC_PM_CLK_BYPASS); imx_clk_scu("mipi1_pixel_clk", IMX_SC_R_MIPI_1, IMX_SC_PM_CLK_PER); - imx_clk_scu("mipi1_lvds_pixel_clk", IMX_SC_R_LVDS_1, IMX_SC_PM_CLK_MISC2); imx_clk_scu("mipi1_lvds_bypass_clk", IMX_SC_R_LVDS_1, IMX_SC_PM_CLK_BYPASS); - imx_clk_scu("mipi1_lvds_phy_clk", IMX_SC_R_LVDS_1, IMX_SC_PM_CLK_MISC3); + imx_clk_scu2("mipi1_lvds_pixel_clk", lvds1_sels, ARRAY_SIZE(lvds1_sels), IMX_SC_R_LVDS_1, IMX_SC_PM_CLK_MISC2); + imx_clk_scu2("mipi1_lvds_phy_clk", lvds1_sels, ARRAY_SIZE(lvds1_sels), IMX_SC_R_LVDS_1, IMX_SC_PM_CLK_MISC3); imx_clk_scu2("mipi1_dsi_tx_esc_clk", mipi_sels, ARRAY_SIZE(mipi_sels), IMX_SC_R_MIPI_1, IMX_SC_PM_CLK_MST_BUS); imx_clk_scu2("mipi1_dsi_rx_esc_clk", mipi_sels, ARRAY_SIZE(mipi_sels), IMX_SC_R_MIPI_1, IMX_SC_PM_CLK_SLV_BUS); diff -u linux-xilinx-zynqmp-5.15.0/drivers/clk/imx/clk-scu.c linux-xilinx-zynqmp-5.15.0/drivers/clk/imx/clk-scu.c --- linux-xilinx-zynqmp-5.15.0/drivers/clk/imx/clk-scu.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/imx/clk-scu.c @@ -841,8 +841,10 @@ if (!clk_node) return ERR_PTR(-ENOMEM); - if (!imx_scu_clk_is_valid(rsrc_id)) + if (!imx_scu_clk_is_valid(rsrc_id)) { + kfree(clk_node); return ERR_PTR(-EINVAL); + } clk = kzalloc(sizeof(*clk), GFP_KERNEL); if (!clk) { diff -u linux-xilinx-zynqmp-5.15.0/drivers/clk/keystone/pll.c linux-xilinx-zynqmp-5.15.0/drivers/clk/keystone/pll.c --- linux-xilinx-zynqmp-5.15.0/drivers/clk/keystone/pll.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/keystone/pll.c @@ -281,12 +281,13 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/clk/qcom/Kconfig linux-xilinx-zynqmp-5.15.0/drivers/clk/qcom/Kconfig --- linux-xilinx-zynqmp-5.15.0/drivers/clk/qcom/Kconfig +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/qcom/Kconfig @@ -127,6 +127,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/clk/qcom/clk-rcg2.c linux-xilinx-zynqmp-5.15.0/drivers/clk/qcom/clk-rcg2.c --- linux-xilinx-zynqmp-5.15.0/drivers/clk/qcom/clk-rcg2.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/qcom/clk-rcg2.c @@ -148,17 +148,11 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/clk/qcom/gcc-ipq6018.c linux-xilinx-zynqmp-5.15.0/drivers/clk/qcom/gcc-ipq6018.c --- linux-xilinx-zynqmp-5.15.0/drivers/clk/qcom/gcc-ipq6018.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/qcom/gcc-ipq6018.c @@ -75,7 +75,6 @@ &gpll0_main.clkr.hw }, .num_parents = 1, .ops = &clk_fixed_factor_ops, - .flags = CLK_SET_RATE_PARENT, }, }; @@ -89,7 +88,6 @@ &gpll0_main.clkr.hw }, .num_parents = 1, .ops = &clk_alpha_pll_postdiv_ro_ops, - .flags = CLK_SET_RATE_PARENT, }, }; @@ -164,7 +162,6 @@ &gpll6_main.clkr.hw }, .num_parents = 1, .ops = &clk_alpha_pll_postdiv_ro_ops, - .flags = CLK_SET_RATE_PARENT, }, }; @@ -195,7 +192,6 @@ &gpll4_main.clkr.hw }, .num_parents = 1, .ops = &clk_alpha_pll_postdiv_ro_ops, - .flags = CLK_SET_RATE_PARENT, }, }; @@ -246,7 +242,6 @@ &gpll2_main.clkr.hw }, .num_parents = 1, .ops = &clk_alpha_pll_postdiv_ro_ops, - .flags = CLK_SET_RATE_PARENT, }, }; @@ -277,7 +272,6 @@ &nss_crypto_pll_main.clkr.hw }, .num_parents = 1, .ops = &clk_alpha_pll_postdiv_ro_ops, - .flags = CLK_SET_RATE_PARENT, }, }; diff -u linux-xilinx-zynqmp-5.15.0/drivers/clk/qcom/gcc-ipq8074.c linux-xilinx-zynqmp-5.15.0/drivers/clk/qcom/gcc-ipq8074.c --- linux-xilinx-zynqmp-5.15.0/drivers/clk/qcom/gcc-ipq8074.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/qcom/gcc-ipq8074.c @@ -418,7 +418,6 @@ }, .num_parents = 1, .ops = &clk_fixed_factor_ops, - .flags = CLK_SET_RATE_PARENT, }, }; @@ -465,7 +464,6 @@ }, .num_parents = 1, .ops = &clk_alpha_pll_postdiv_ro_ops, - .flags = CLK_SET_RATE_PARENT, }, }; @@ -498,7 +496,6 @@ }, .num_parents = 1, .ops = &clk_alpha_pll_postdiv_ro_ops, - .flags = CLK_SET_RATE_PARENT, }, }; @@ -532,7 +529,6 @@ }, .num_parents = 1, .ops = &clk_alpha_pll_postdiv_ro_ops, - .flags = CLK_SET_RATE_PARENT, }, }; @@ -546,7 +542,6 @@ }, .num_parents = 1, .ops = &clk_fixed_factor_ops, - .flags = CLK_SET_RATE_PARENT, }, }; @@ -611,7 +606,6 @@ }, .num_parents = 1, .ops = &clk_alpha_pll_postdiv_ro_ops, - .flags = CLK_SET_RATE_PARENT, }, }; diff -u linux-xilinx-zynqmp-5.15.0/drivers/clk/renesas/rzg2l-cpg.c linux-xilinx-zynqmp-5.15.0/drivers/clk/renesas/rzg2l-cpg.c --- linux-xilinx-zynqmp-5.15.0/drivers/clk/renesas/rzg2l-cpg.c +++ linux-xilinx-zynqmp-5.15.0/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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/clk/ti/clk-dra7-atl.c linux-xilinx-zynqmp-5.15.0/drivers/clk/ti/clk-dra7-atl.c --- linux-xilinx-zynqmp-5.15.0/drivers/clk/ti/clk-dra7-atl.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/ti/clk-dra7-atl.c @@ -173,6 +173,7 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/clk/ti/clk.c linux-xilinx-zynqmp-5.15.0/drivers/clk/ti/clk.c --- linux-xilinx-zynqmp-5.15.0/drivers/clk/ti/clk.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/ti/clk.c @@ -403,6 +403,24 @@ }; /** + * 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 * * Sets up any missing clock aliases. No return value. @@ -418,7 +436,7 @@ 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 @@ /** * 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 @@ * 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 @@ if (!cl) return -ENOMEM; - if (dev) - cl->dev_id = dev_name(dev); cl->con_id = con; cl->clk = clk; @@ -504,8 +519,8 @@ } /** - * 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 @@ * 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 @@ } /** - * 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 @@ * 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 -u linux-xilinx-zynqmp-5.15.0/drivers/clk/ti/clkctrl.c linux-xilinx-zynqmp-5.15.0/drivers/clk/ti/clkctrl.c --- linux-xilinx-zynqmp-5.15.0/drivers/clk/ti/clkctrl.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/ti/clkctrl.c @@ -317,7 +317,7 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/clk/zynqmp/divider.c linux-xilinx-zynqmp-5.15.0/drivers/clk/zynqmp/divider.c --- linux-xilinx-zynqmp-5.15.0/drivers/clk/zynqmp/divider.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/zynqmp/divider.c @@ -110,52 +110,6 @@ return DIV_ROUND_UP_ULL(parent_rate, value); } -static void zynqmp_get_divider2_val(struct clk_hw *hw, - unsigned long rate, - struct zynqmp_clk_divider *divider, - u32 *bestdiv) -{ - int div1; - int div2; - long error = LONG_MAX; - unsigned long div1_prate; - struct clk_hw *div1_parent_hw; - struct zynqmp_clk_divider *pdivider; - struct clk_hw *div2_parent_hw = clk_hw_get_parent(hw); - - if (!div2_parent_hw) - return; - - pdivider = to_zynqmp_clk_divider(div2_parent_hw); - if (!pdivider) - return; - - div1_parent_hw = clk_hw_get_parent(div2_parent_hw); - if (!div1_parent_hw) - return; - - div1_prate = clk_hw_get_rate(div1_parent_hw); - *bestdiv = 1; - for (div1 = 1; div1 <= pdivider->max_div;) { - for (div2 = 1; div2 <= divider->max_div;) { - long new_error = ((div1_prate / div1) / div2) - rate; - - if (abs(new_error) < abs(error)) { - *bestdiv = div2; - error = new_error; - } - if (divider->flags & CLK_DIVIDER_POWER_OF_TWO) - div2 = div2 << 1; - else - div2++; - } - if (pdivider->flags & CLK_DIVIDER_POWER_OF_TWO) - div1 = div1 << 1; - else - div1++; - } -} - /** * zynqmp_clk_divider_round_rate() - Round rate of divider clock * @hw: handle between common and hardware-specific interfaces @@ -174,6 +128,7 @@ u32 div_type = divider->div_type; u32 bestdiv; int ret; + u8 width; /* if read only, just return current value */ if (divider->flags & CLK_DIVIDER_READ_ONLY) { @@ -193,23 +148,12 @@ return DIV_ROUND_UP_ULL((u64)*prate, bestdiv); } - bestdiv = zynqmp_divider_get_val(*prate, rate, divider->flags); - - /* - * In case of two divisors, compute best divider values and return - * divider2 value based on compute value. div1 will be automatically - * set to optimum based on required total divider value. - */ - if (div_type == TYPE_DIV2 && - (clk_hw_get_flags(hw) & CLK_SET_RATE_PARENT)) { - zynqmp_get_divider2_val(hw, rate, divider, &bestdiv); - } + width = fls(divider->max_div); - if ((clk_hw_get_flags(hw) & CLK_SET_RATE_PARENT) && divider->is_frac) - bestdiv = rate % *prate ? 1 : bestdiv; + rate = divider_round_rate(hw, rate, prate, NULL, width, divider->flags); - bestdiv = min_t(u32, bestdiv, divider->max_div); - *prate = rate * bestdiv; + if (divider->is_frac && (clk_hw_get_flags(hw) & CLK_SET_RATE_PARENT) && (rate % *prate)) + *prate = rate; return rate; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/cpufreq/cpufreq-dt-platdev.c linux-xilinx-zynqmp-5.15.0/drivers/cpufreq/cpufreq-dt-platdev.c --- linux-xilinx-zynqmp-5.15.0/drivers/cpufreq/cpufreq-dt-platdev.c +++ linux-xilinx-zynqmp-5.15.0/drivers/cpufreq/cpufreq-dt-platdev.c @@ -171,7 +171,7 @@ struct device_node *np = of_cpu_device_node_get(0); bool ret = false; - if (of_get_property(np, "operating-points-v2", NULL)) + if (of_property_present(np, "operating-points-v2")) ret = true; of_node_put(np); diff -u linux-xilinx-zynqmp-5.15.0/drivers/cpufreq/intel_pstate.c linux-xilinx-zynqmp-5.15.0/drivers/cpufreq/intel_pstate.c --- linux-xilinx-zynqmp-5.15.0/drivers/cpufreq/intel_pstate.c +++ linux-xilinx-zynqmp-5.15.0/drivers/cpufreq/intel_pstate.c @@ -522,6 +522,30 @@ } #endif /* CONFIG_ACPI_CPPC_LIB */ +static int intel_pstate_freq_to_hwp_rel(struct cpudata *cpu, int freq, + unsigned int relation) +{ + if (freq == cpu->pstate.turbo_freq) + return cpu->pstate.turbo_pstate; + + if (freq == cpu->pstate.max_freq) + return cpu->pstate.max_pstate; + + switch (relation) { + case CPUFREQ_RELATION_H: + return freq / cpu->pstate.scaling; + case CPUFREQ_RELATION_C: + return DIV_ROUND_CLOSEST(freq, cpu->pstate.scaling); + } + + return DIV_ROUND_UP(freq, cpu->pstate.scaling); +} + +static int intel_pstate_freq_to_hwp(struct cpudata *cpu, int freq) +{ + return intel_pstate_freq_to_hwp_rel(cpu, freq, CPUFREQ_RELATION_L); +} + /** * intel_pstate_hybrid_hwp_adjust - Calibrate HWP performance levels. * @cpu: Target CPU. @@ -539,6 +563,7 @@ int perf_ctl_scaling = cpu->pstate.perf_ctl_scaling; int perf_ctl_turbo = pstate_funcs.get_turbo(cpu->cpu); int scaling = cpu->pstate.scaling; + int freq; pr_debug("CPU%d: perf_ctl_max_phys = %d\n", cpu->cpu, perf_ctl_max_phys); pr_debug("CPU%d: perf_ctl_turbo = %d\n", cpu->cpu, perf_ctl_turbo); @@ -552,16 +577,16 @@ cpu->pstate.max_freq = rounddown(cpu->pstate.max_pstate * scaling, perf_ctl_scaling); - cpu->pstate.max_pstate_physical = - DIV_ROUND_UP(perf_ctl_max_phys * perf_ctl_scaling, - scaling); + freq = perf_ctl_max_phys * perf_ctl_scaling; + cpu->pstate.max_pstate_physical = intel_pstate_freq_to_hwp(cpu, freq); - cpu->pstate.min_freq = cpu->pstate.min_pstate * perf_ctl_scaling; + freq = cpu->pstate.min_pstate * perf_ctl_scaling; + cpu->pstate.min_freq = freq; /* * Cast the min P-state value retrieved via pstate_funcs.get_min() to * the effective range of HWP performance levels. */ - cpu->pstate.min_pstate = DIV_ROUND_UP(cpu->pstate.min_freq, scaling); + cpu->pstate.min_pstate = intel_pstate_freq_to_hwp(cpu, freq); } static inline void update_turbo_state(void) @@ -2281,12 +2306,6 @@ {} }; -static const struct x86_cpu_id intel_pstate_hwp_boost_ids[] = { - X86_MATCH(SKYLAKE_X, core_funcs), - X86_MATCH(SKYLAKE, core_funcs), - {} -}; - static int intel_pstate_init_cpu(unsigned int cpunum) { struct cpudata *cpu; @@ -2305,12 +2324,9 @@ cpu->epp_default = -EINVAL; if (hwp_active) { - const struct x86_cpu_id *id; - intel_pstate_hwp_enable(cpu); - id = x86_match_cpu(intel_pstate_hwp_boost_ids); - if (id && intel_pstate_acpi_pm_profile_server()) + if (intel_pstate_acpi_pm_profile_server()) hwp_boost = true; } } else if (hwp_active) { @@ -2389,18 +2405,13 @@ * HWP needs some special consideration, because HWP_REQUEST uses * abstract values to represent performance rather than pure ratios. */ - if (hwp_active) { - intel_pstate_get_hwp_cap(cpu); + if (hwp_active && cpu->pstate.scaling != perf_ctl_scaling) { + int freq; - if (cpu->pstate.scaling != perf_ctl_scaling) { - int scaling = cpu->pstate.scaling; - int freq; - - freq = max_policy_perf * perf_ctl_scaling; - max_policy_perf = DIV_ROUND_UP(freq, scaling); - freq = min_policy_perf * perf_ctl_scaling; - min_policy_perf = DIV_ROUND_UP(freq, scaling); - } + freq = max_policy_perf * perf_ctl_scaling; + max_policy_perf = intel_pstate_freq_to_hwp(cpu, freq); + freq = min_policy_perf * perf_ctl_scaling; + min_policy_perf = intel_pstate_freq_to_hwp(cpu, freq); } pr_debug("cpu:%d min_policy_perf:%d max_policy_perf:%d\n", @@ -2769,18 +2780,7 @@ cpufreq_freq_transition_begin(policy, &freqs); - switch (relation) { - case CPUFREQ_RELATION_L: - target_pstate = DIV_ROUND_UP(freqs.new, cpu->pstate.scaling); - break; - case CPUFREQ_RELATION_H: - target_pstate = freqs.new / cpu->pstate.scaling; - break; - default: - target_pstate = DIV_ROUND_CLOSEST(freqs.new, cpu->pstate.scaling); - break; - } - + target_pstate = intel_pstate_freq_to_hwp_rel(cpu, freqs.new, relation); target_pstate = intel_cpufreq_update_pstate(policy, target_pstate, false); freqs.new = target_pstate * cpu->pstate.scaling; @@ -2798,7 +2798,7 @@ update_turbo_state(); - target_pstate = DIV_ROUND_UP(target_freq, cpu->pstate.scaling); + target_pstate = intel_pstate_freq_to_hwp(cpu, target_freq); target_pstate = intel_cpufreq_update_pstate(policy, target_pstate, true); diff -u linux-xilinx-zynqmp-5.15.0/drivers/crypto/caam/caamalg.c linux-xilinx-zynqmp-5.15.0/drivers/crypto/caam/caamalg.c --- linux-xilinx-zynqmp-5.15.0/drivers/crypto/caam/caamalg.c +++ linux-xilinx-zynqmp-5.15.0/drivers/crypto/caam/caamalg.c @@ -566,7 +566,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/crypto/caam/caamalg_qi2.c linux-xilinx-zynqmp-5.15.0/drivers/crypto/caam/caamalg_qi2.c --- linux-xilinx-zynqmp-5.15.0/drivers/crypto/caam/caamalg_qi2.c +++ linux-xilinx-zynqmp-5.15.0/drivers/crypto/caam/caamalg_qi2.c @@ -639,7 +639,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/crypto/ccp/sev-dev.c linux-xilinx-zynqmp-5.15.0/drivers/crypto/ccp/sev-dev.c --- linux-xilinx-zynqmp-5.15.0/drivers/crypto/ccp/sev-dev.c +++ linux-xilinx-zynqmp-5.15.0/drivers/crypto/ccp/sev-dev.c @@ -323,10 +323,16 @@ static int __sev_platform_shutdown_locked(int *error) { - struct sev_device *sev = psp_master->sev_data; + struct psp_device *psp = psp_master; + struct sev_device *sev; int ret; - if (!sev || sev->state == SEV_STATE_UNINIT) + if (!psp || !psp->sev_data) + return 0; + + sev = psp->sev_data; + + if (sev->state == SEV_STATE_UNINIT) return 0; ret = __sev_do_cmd_locked(SEV_CMD_SHUTDOWN, NULL, error); diff -u linux-xilinx-zynqmp-5.15.0/drivers/crypto/hisilicon/hpre/hpre_main.c linux-xilinx-zynqmp-5.15.0/drivers/crypto/hisilicon/hpre/hpre_main.c --- linux-xilinx-zynqmp-5.15.0/drivers/crypto/hisilicon/hpre/hpre_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/crypto/hisilicon/hpre/hpre_main.c @@ -854,7 +854,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/crypto/qat/qat_common/adf_accel_devices.h linux-xilinx-zynqmp-5.15.0/drivers/crypto/qat/qat_common/adf_accel_devices.h --- linux-xilinx-zynqmp-5.15.0/drivers/crypto/qat/qat_common/adf_accel_devices.h +++ linux-xilinx-zynqmp-5.15.0/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 -u linux-xilinx-zynqmp-5.15.0/drivers/crypto/qat/qat_common/qat_algs_send.c linux-xilinx-zynqmp-5.15.0/drivers/crypto/qat/qat_common/qat_algs_send.c --- linux-xilinx-zynqmp-5.15.0/drivers/crypto/qat/qat_common/qat_algs_send.c +++ linux-xilinx-zynqmp-5.15.0/drivers/crypto/qat/qat_common/qat_algs_send.c @@ -39,40 +39,44 @@ 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 true; +} + + +static int qat_alg_send_message_maybacklog(struct qat_alg_req *req) +{ + struct qat_instance_backlog *backlog = req->backlog; + int ret = -EINPROGRESS; - return -EINPROGRESS; + if (qat_alg_try_enqueue(req)) + return ret; -enqueue: - qat_alg_backlog_req(req, backlog); + 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 -EBUSY; + return ret; } int qat_alg_send_message(struct qat_alg_req *req) diff -u linux-xilinx-zynqmp-5.15.0/drivers/crypto/sahara.c linux-xilinx-zynqmp-5.15.0/drivers/crypto/sahara.c --- linux-xilinx-zynqmp-5.15.0/drivers/crypto/sahara.c +++ linux-xilinx-zynqmp-5.15.0/drivers/crypto/sahara.c @@ -44,7 +44,6 @@ #define FLAGS_MODE_MASK 0x000f #define FLAGS_ENCRYPT BIT(0) #define FLAGS_CBC BIT(1) -#define FLAGS_NEW_KEY BIT(3) #define SAHARA_HDR_BASE 0x00800000 #define SAHARA_HDR_SKHA_ALG_AES 0 @@ -142,8 +141,6 @@ }; struct sahara_ctx { - unsigned long flags; - /* AES-specific context */ int keylen; u8 key[AES_KEYSIZE_128]; @@ -152,6 +149,7 @@ struct sahara_aes_reqctx { unsigned long mode; + u8 iv_out[AES_BLOCK_SIZE]; struct skcipher_request fallback_req; // keep at the end }; @@ -447,27 +445,24 @@ int ret; int i, j; int idx = 0; + u32 len; - /* Copy new key if necessary */ - if (ctx->flags & FLAGS_NEW_KEY) { - memcpy(dev->key_base, ctx->key, ctx->keylen); - ctx->flags &= ~FLAGS_NEW_KEY; - - if (dev->flags & FLAGS_CBC) { - dev->hw_desc[idx]->len1 = AES_BLOCK_SIZE; - dev->hw_desc[idx]->p1 = dev->iv_phys_base; - } else { - dev->hw_desc[idx]->len1 = 0; - dev->hw_desc[idx]->p1 = 0; - } - dev->hw_desc[idx]->len2 = ctx->keylen; - dev->hw_desc[idx]->p2 = dev->key_phys_base; - dev->hw_desc[idx]->next = dev->hw_phys_desc[1]; - - dev->hw_desc[idx]->hdr = sahara_aes_key_hdr(dev); + memcpy(dev->key_base, ctx->key, ctx->keylen); - idx++; + if (dev->flags & FLAGS_CBC) { + dev->hw_desc[idx]->len1 = AES_BLOCK_SIZE; + dev->hw_desc[idx]->p1 = dev->iv_phys_base; + } else { + dev->hw_desc[idx]->len1 = 0; + dev->hw_desc[idx]->p1 = 0; } + dev->hw_desc[idx]->len2 = ctx->keylen; + dev->hw_desc[idx]->p2 = dev->key_phys_base; + dev->hw_desc[idx]->next = dev->hw_phys_desc[1]; + dev->hw_desc[idx]->hdr = sahara_aes_key_hdr(dev); + + idx++; + dev->nb_in_sg = sg_nents_for_len(dev->in_sg, dev->total); if (dev->nb_in_sg < 0) { @@ -489,24 +484,27 @@ DMA_TO_DEVICE); if (ret != dev->nb_in_sg) { dev_err(dev->device, "couldn't map in sg\n"); - goto unmap_in; + return -EINVAL; } + ret = dma_map_sg(dev->device, dev->out_sg, dev->nb_out_sg, DMA_FROM_DEVICE); if (ret != dev->nb_out_sg) { dev_err(dev->device, "couldn't map out sg\n"); - goto unmap_out; + goto unmap_in; } /* Create input links */ dev->hw_desc[idx]->p1 = dev->hw_phys_link[0]; sg = dev->in_sg; + len = dev->total; for (i = 0; i < dev->nb_in_sg; i++) { - dev->hw_link[i]->len = sg->length; + dev->hw_link[i]->len = min(len, sg->length); dev->hw_link[i]->p = sg->dma_address; if (i == (dev->nb_in_sg - 1)) { dev->hw_link[i]->next = 0; } else { + len -= min(len, sg->length); dev->hw_link[i]->next = dev->hw_phys_link[i + 1]; sg = sg_next(sg); } @@ -515,12 +513,14 @@ /* Create output links */ dev->hw_desc[idx]->p2 = dev->hw_phys_link[i]; sg = dev->out_sg; + len = dev->total; for (j = i; j < dev->nb_out_sg + i; j++) { - dev->hw_link[j]->len = sg->length; + dev->hw_link[j]->len = min(len, sg->length); dev->hw_link[j]->p = sg->dma_address; if (j == (dev->nb_out_sg + i - 1)) { dev->hw_link[j]->next = 0; } else { + len -= min(len, sg->length); dev->hw_link[j]->next = dev->hw_phys_link[j + 1]; sg = sg_next(sg); } @@ -539,9 +539,6 @@ return 0; -unmap_out: - dma_unmap_sg(dev->device, dev->out_sg, dev->nb_out_sg, - DMA_FROM_DEVICE); unmap_in: dma_unmap_sg(dev->device, dev->in_sg, dev->nb_in_sg, DMA_TO_DEVICE); @@ -549,8 +546,24 @@ return -EINVAL; } +static void sahara_aes_cbc_update_iv(struct skcipher_request *req) +{ + struct crypto_skcipher *skcipher = crypto_skcipher_reqtfm(req); + struct sahara_aes_reqctx *rctx = skcipher_request_ctx(req); + unsigned int ivsize = crypto_skcipher_ivsize(skcipher); + + /* Update IV buffer to contain the last ciphertext block */ + if (rctx->mode & FLAGS_ENCRYPT) { + sg_pcopy_to_buffer(req->dst, sg_nents(req->dst), req->iv, + ivsize, req->cryptlen - ivsize); + } else { + memcpy(req->iv, rctx->iv_out, ivsize); + } +} + static int sahara_aes_process(struct skcipher_request *req) { + struct crypto_skcipher *skcipher = crypto_skcipher_reqtfm(req); struct sahara_dev *dev = dev_ptr; struct sahara_ctx *ctx; struct sahara_aes_reqctx *rctx; @@ -572,8 +585,17 @@ rctx->mode &= FLAGS_MODE_MASK; dev->flags = (dev->flags & ~FLAGS_MODE_MASK) | rctx->mode; - if ((dev->flags & FLAGS_CBC) && req->iv) - memcpy(dev->iv_base, req->iv, AES_KEYSIZE_128); + if ((dev->flags & FLAGS_CBC) && req->iv) { + unsigned int ivsize = crypto_skcipher_ivsize(skcipher); + + memcpy(dev->iv_base, req->iv, ivsize); + + if (!(dev->flags & FLAGS_ENCRYPT)) { + sg_pcopy_to_buffer(req->src, sg_nents(req->src), + rctx->iv_out, ivsize, + req->cryptlen - ivsize); + } + } /* assign new context to device */ dev->ctx = ctx; @@ -586,16 +608,20 @@ timeout = wait_for_completion_timeout(&dev->dma_completion, msecs_to_jiffies(SAHARA_TIMEOUT_MS)); - if (!timeout) { - dev_err(dev->device, "AES timeout\n"); - return -ETIMEDOUT; - } dma_unmap_sg(dev->device, dev->out_sg, dev->nb_out_sg, DMA_FROM_DEVICE); dma_unmap_sg(dev->device, dev->in_sg, dev->nb_in_sg, DMA_TO_DEVICE); + if (!timeout) { + dev_err(dev->device, "AES timeout\n"); + return -ETIMEDOUT; + } + + if ((dev->flags & FLAGS_CBC) && req->iv) + sahara_aes_cbc_update_iv(req); + return 0; } @@ -609,7 +635,6 @@ /* SAHARA only supports 128bit keys */ if (keylen == AES_KEYSIZE_128) { memcpy(ctx->key, key, keylen); - ctx->flags |= FLAGS_NEW_KEY; return 0; } @@ -625,12 +650,40 @@ return crypto_skcipher_setkey(ctx->fallback, key, keylen); } +static int sahara_aes_fallback(struct skcipher_request *req, unsigned long mode) +{ + struct sahara_aes_reqctx *rctx = skcipher_request_ctx(req); + struct sahara_ctx *ctx = crypto_skcipher_ctx( + crypto_skcipher_reqtfm(req)); + + skcipher_request_set_tfm(&rctx->fallback_req, ctx->fallback); + skcipher_request_set_callback(&rctx->fallback_req, + req->base.flags, + req->base.complete, + req->base.data); + skcipher_request_set_crypt(&rctx->fallback_req, req->src, + req->dst, req->cryptlen, req->iv); + + if (mode & FLAGS_ENCRYPT) + return crypto_skcipher_encrypt(&rctx->fallback_req); + + return crypto_skcipher_decrypt(&rctx->fallback_req); +} + static int sahara_aes_crypt(struct skcipher_request *req, unsigned long mode) { struct sahara_aes_reqctx *rctx = skcipher_request_ctx(req); + struct sahara_ctx *ctx = crypto_skcipher_ctx( + crypto_skcipher_reqtfm(req)); struct sahara_dev *dev = dev_ptr; int err = 0; + if (!req->cryptlen) + return 0; + + if (unlikely(ctx->keylen != AES_KEYSIZE_128)) + return sahara_aes_fallback(req, mode); + dev_dbg(dev->device, "nbytes: %d, enc: %d, cbc: %d\n", req->cryptlen, !!(mode & FLAGS_ENCRYPT), !!(mode & FLAGS_CBC)); @@ -653,81 +706,21 @@ static int sahara_aes_ecb_encrypt(struct skcipher_request *req) { - struct sahara_aes_reqctx *rctx = skcipher_request_ctx(req); - struct sahara_ctx *ctx = crypto_skcipher_ctx( - crypto_skcipher_reqtfm(req)); - - if (unlikely(ctx->keylen != AES_KEYSIZE_128)) { - skcipher_request_set_tfm(&rctx->fallback_req, ctx->fallback); - skcipher_request_set_callback(&rctx->fallback_req, - req->base.flags, - req->base.complete, - req->base.data); - skcipher_request_set_crypt(&rctx->fallback_req, req->src, - req->dst, req->cryptlen, req->iv); - return crypto_skcipher_encrypt(&rctx->fallback_req); - } - return sahara_aes_crypt(req, FLAGS_ENCRYPT); } static int sahara_aes_ecb_decrypt(struct skcipher_request *req) { - struct sahara_aes_reqctx *rctx = skcipher_request_ctx(req); - struct sahara_ctx *ctx = crypto_skcipher_ctx( - crypto_skcipher_reqtfm(req)); - - if (unlikely(ctx->keylen != AES_KEYSIZE_128)) { - skcipher_request_set_tfm(&rctx->fallback_req, ctx->fallback); - skcipher_request_set_callback(&rctx->fallback_req, - req->base.flags, - req->base.complete, - req->base.data); - skcipher_request_set_crypt(&rctx->fallback_req, req->src, - req->dst, req->cryptlen, req->iv); - return crypto_skcipher_decrypt(&rctx->fallback_req); - } - return sahara_aes_crypt(req, 0); } static int sahara_aes_cbc_encrypt(struct skcipher_request *req) { - struct sahara_aes_reqctx *rctx = skcipher_request_ctx(req); - struct sahara_ctx *ctx = crypto_skcipher_ctx( - crypto_skcipher_reqtfm(req)); - - if (unlikely(ctx->keylen != AES_KEYSIZE_128)) { - skcipher_request_set_tfm(&rctx->fallback_req, ctx->fallback); - skcipher_request_set_callback(&rctx->fallback_req, - req->base.flags, - req->base.complete, - req->base.data); - skcipher_request_set_crypt(&rctx->fallback_req, req->src, - req->dst, req->cryptlen, req->iv); - return crypto_skcipher_encrypt(&rctx->fallback_req); - } - return sahara_aes_crypt(req, FLAGS_ENCRYPT | FLAGS_CBC); } static int sahara_aes_cbc_decrypt(struct skcipher_request *req) { - struct sahara_aes_reqctx *rctx = skcipher_request_ctx(req); - struct sahara_ctx *ctx = crypto_skcipher_ctx( - crypto_skcipher_reqtfm(req)); - - if (unlikely(ctx->keylen != AES_KEYSIZE_128)) { - skcipher_request_set_tfm(&rctx->fallback_req, ctx->fallback); - skcipher_request_set_callback(&rctx->fallback_req, - req->base.flags, - req->base.complete, - req->base.data); - skcipher_request_set_crypt(&rctx->fallback_req, req->src, - req->dst, req->cryptlen, req->iv); - return crypto_skcipher_decrypt(&rctx->fallback_req); - } - return sahara_aes_crypt(req, FLAGS_CBC); } @@ -784,6 +777,7 @@ int start) { struct scatterlist *sg; + unsigned int len; unsigned int i; int ret; @@ -805,12 +799,14 @@ if (!ret) return -EFAULT; + len = rctx->total; for (i = start; i < dev->nb_in_sg + start; i++) { - dev->hw_link[i]->len = sg->length; + dev->hw_link[i]->len = min(len, sg->length); dev->hw_link[i]->p = sg->dma_address; if (i == (dev->nb_in_sg + start - 1)) { dev->hw_link[i]->next = 0; } else { + len -= min(len, sg->length); dev->hw_link[i]->next = dev->hw_phys_link[i + 1]; sg = sg_next(sg); } @@ -891,24 +887,6 @@ return 0; } -static int sahara_walk_and_recalc(struct scatterlist *sg, unsigned int nbytes) -{ - if (!sg || !sg->length) - return nbytes; - - while (nbytes && sg) { - if (nbytes <= sg->length) { - sg->length = nbytes; - sg_mark_end(sg); - break; - } - nbytes -= sg->length; - sg = sg_next(sg); - } - - return nbytes; -} - static int sahara_sha_prepare_request(struct ahash_request *req) { struct crypto_ahash *tfm = crypto_ahash_reqtfm(req); @@ -945,36 +923,20 @@ hash_later, 0); } - /* nbytes should now be multiple of blocksize */ - req->nbytes = req->nbytes - hash_later; - - sahara_walk_and_recalc(req->src, req->nbytes); - + rctx->total = len - hash_later; /* have data from previous operation and current */ if (rctx->buf_cnt && req->nbytes) { sg_init_table(rctx->in_sg_chain, 2); sg_set_buf(rctx->in_sg_chain, rctx->rembuf, rctx->buf_cnt); - sg_chain(rctx->in_sg_chain, 2, req->src); - - rctx->total = req->nbytes + rctx->buf_cnt; rctx->in_sg = rctx->in_sg_chain; - - req->src = rctx->in_sg_chain; /* only data from previous operation */ } else if (rctx->buf_cnt) { - if (req->src) - rctx->in_sg = req->src; - else - rctx->in_sg = rctx->in_sg_chain; - /* buf was copied into rembuf above */ + rctx->in_sg = rctx->in_sg_chain; sg_init_one(rctx->in_sg, rctx->rembuf, rctx->buf_cnt); - rctx->total = rctx->buf_cnt; /* no data from previous operation */ } else { rctx->in_sg = req->src; - rctx->total = req->nbytes; - req->src = rctx->in_sg; } /* on next call, we only have the remaining data in the buffer */ @@ -995,7 +957,10 @@ return ret; if (rctx->first) { - sahara_sha_hw_data_descriptor_create(dev, rctx, req, 0); + ret = sahara_sha_hw_data_descriptor_create(dev, rctx, req, 0); + if (ret) + return ret; + dev->hw_desc[0]->next = 0; rctx->first = 0; } else { @@ -1003,7 +968,10 @@ sahara_sha_hw_context_descriptor_create(dev, rctx, req, 0); dev->hw_desc[0]->next = dev->hw_phys_desc[1]; - sahara_sha_hw_data_descriptor_create(dev, rctx, req, 1); + ret = sahara_sha_hw_data_descriptor_create(dev, rctx, req, 1); + if (ret) + return ret; + dev->hw_desc[1]->next = 0; } @@ -1016,18 +984,19 @@ timeout = wait_for_completion_timeout(&dev->dma_completion, msecs_to_jiffies(SAHARA_TIMEOUT_MS)); - if (!timeout) { - dev_err(dev->device, "SHA timeout\n"); - return -ETIMEDOUT; - } if (rctx->sg_in_idx) dma_unmap_sg(dev->device, dev->in_sg, dev->nb_in_sg, DMA_TO_DEVICE); + if (!timeout) { + dev_err(dev->device, "SHA timeout\n"); + return -ETIMEDOUT; + } + memcpy(rctx->context, dev->context_base, rctx->context_size); - if (req->result) + if (req->result && rctx->last) memcpy(req->result, rctx->context, rctx->digest_size); return 0; @@ -1171,8 +1140,7 @@ static int sahara_sha_cra_init(struct crypto_tfm *tfm) { crypto_ahash_set_reqsize(__crypto_ahash_cast(tfm), - sizeof(struct sahara_sha_reqctx) + - SHA_BUFFER_LEN + SHA256_BLOCK_SIZE); + sizeof(struct sahara_sha_reqctx)); return 0; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/crypto/stm32/stm32-crc32.c linux-xilinx-zynqmp-5.15.0/drivers/crypto/stm32/stm32-crc32.c --- linux-xilinx-zynqmp-5.15.0/drivers/crypto/stm32/stm32-crc32.c +++ linux-xilinx-zynqmp-5.15.0/drivers/crypto/stm32/stm32-crc32.c @@ -104,7 +104,7 @@ struct stm32_crc *crc; spin_lock_bh(&crc_list.lock); - crc = list_first_entry(&crc_list.dev_list, struct stm32_crc, list); + crc = list_first_entry_or_null(&crc_list.dev_list, struct stm32_crc, list); if (crc) list_move_tail(&crc->list, &crc_list.dev_list); spin_unlock_bh(&crc_list.lock); diff -u linux-xilinx-zynqmp-5.15.0/drivers/devfreq/devfreq.c linux-xilinx-zynqmp-5.15.0/drivers/devfreq/devfreq.c --- linux-xilinx-zynqmp-5.15.0/drivers/devfreq/devfreq.c +++ linux-xilinx-zynqmp-5.15.0/drivers/devfreq/devfreq.c @@ -464,10 +464,14 @@ if (err) dev_err(&devfreq->dev, "dvfs failed with (%d) error\n", err); + if (devfreq->stop_polling) + goto out; + queue_delayed_work(devfreq_wq, &devfreq->work, msecs_to_jiffies(devfreq->profile->polling_ms)); - mutex_unlock(&devfreq->lock); +out: + mutex_unlock(&devfreq->lock); trace_devfreq_monitor(devfreq); } @@ -485,6 +489,10 @@ if (IS_SUPPORTED_FLAG(devfreq->governor->flags, IRQ_DRIVEN)) return; + mutex_lock(&devfreq->lock); + if (delayed_work_pending(&devfreq->work)) + goto out; + switch (devfreq->profile->timer) { case DEVFREQ_TIMER_DEFERRABLE: INIT_DEFERRABLE_WORK(&devfreq->work, devfreq_monitor); @@ -493,12 +501,16 @@ INIT_DELAYED_WORK(&devfreq->work, devfreq_monitor); break; default: - return; + goto out; } if (devfreq->profile->polling_ms) queue_delayed_work(devfreq_wq, &devfreq->work, msecs_to_jiffies(devfreq->profile->polling_ms)); + +out: + devfreq->stop_polling = false; + mutex_unlock(&devfreq->lock); } EXPORT_SYMBOL(devfreq_monitor_start); @@ -515,6 +527,14 @@ if (IS_SUPPORTED_FLAG(devfreq->governor->flags, IRQ_DRIVEN)) return; + mutex_lock(&devfreq->lock); + if (devfreq->stop_polling) { + mutex_unlock(&devfreq->lock); + return; + } + + devfreq->stop_polling = true; + mutex_unlock(&devfreq->lock); cancel_delayed_work_sync(&devfreq->work); } EXPORT_SYMBOL(devfreq_monitor_stop); @@ -1653,7 +1673,7 @@ struct device_attribute *attr, char *buf) { struct devfreq *df = to_devfreq(dev); - ssize_t len; + ssize_t len = 0; int i, j; unsigned int max_state; @@ -1662,7 +1682,7 @@ max_state = df->profile->max_state; if (max_state == 0) - return sprintf(buf, "Not Supported.\n"); + return scnprintf(buf, PAGE_SIZE, "Not Supported.\n"); mutex_lock(&df->lock); if (!df->stop_polling && @@ -1672,33 +1692,54 @@ } mutex_unlock(&df->lock); - len = sprintf(buf, " From : To\n"); - len += sprintf(buf + len, " :"); - for (i = 0; i < max_state; i++) - len += sprintf(buf + len, "%10lu", - df->profile->freq_table[i]); + len += scnprintf(buf + len, PAGE_SIZE - len, " From : To\n"); + len += scnprintf(buf + len, PAGE_SIZE - len, " :"); + for (i = 0; i < max_state; i++) { + if (len >= PAGE_SIZE - 1) + break; + len += scnprintf(buf + len, PAGE_SIZE - len, "%10lu", + df->profile->freq_table[i]); + } + if (len >= PAGE_SIZE - 1) + return PAGE_SIZE - 1; - len += sprintf(buf + len, " time(ms)\n"); + len += scnprintf(buf + len, PAGE_SIZE - len, " time(ms)\n"); for (i = 0; i < max_state; i++) { + if (len >= PAGE_SIZE - 1) + break; if (df->profile->freq_table[i] == df->previous_freq) { - len += sprintf(buf + len, "*"); + len += scnprintf(buf + len, PAGE_SIZE - len, "*"); } else { - len += sprintf(buf + len, " "); + len += scnprintf(buf + len, PAGE_SIZE - len, " "); } - len += sprintf(buf + len, "%10lu:", - df->profile->freq_table[i]); - for (j = 0; j < max_state; j++) - len += sprintf(buf + len, "%10u", - df->stats.trans_table[(i * max_state) + j]); + if (len >= PAGE_SIZE - 1) + break; + + len += scnprintf(buf + len, PAGE_SIZE - len, "%10lu:", + df->profile->freq_table[i]); + for (j = 0; j < max_state; j++) { + if (len >= PAGE_SIZE - 1) + break; + len += scnprintf(buf + len, PAGE_SIZE - len, "%10u", + df->stats.trans_table[(i * max_state) + j]); + } + if (len >= PAGE_SIZE - 1) + break; + len += scnprintf(buf + len, PAGE_SIZE - len, "%10llu\n", (u64) + jiffies64_to_msecs(df->stats.time_in_state[i])); + } + + if (len < PAGE_SIZE - 1) + len += scnprintf(buf + len, PAGE_SIZE - len, "Total transition : %u\n", + df->stats.total_trans); - len += sprintf(buf + len, "%10llu\n", (u64) - jiffies64_to_msecs(df->stats.time_in_state[i])); + if (len >= PAGE_SIZE - 1) { + pr_warn_once("devfreq transition table exceeds PAGE_SIZE. Disabling\n"); + return -EFBIG; } - len += sprintf(buf + len, "Total transition : %u\n", - df->stats.total_trans); return len; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/dma/dmaengine.c linux-xilinx-zynqmp-5.15.0/drivers/dma/dmaengine.c --- linux-xilinx-zynqmp-5.15.0/drivers/dma/dmaengine.c +++ linux-xilinx-zynqmp-5.15.0/drivers/dma/dmaengine.c @@ -1108,6 +1108,9 @@ static void __dma_async_device_channel_unregister(struct dma_device *device, struct dma_chan *chan) { + if (chan->local == NULL) + return; + WARN_ONCE(!device->device_release && chan->client_count, "%s called while %d clients hold a reference\n", __func__, chan->client_count); diff -u linux-xilinx-zynqmp-5.15.0/drivers/dma/pxa_dma.c linux-xilinx-zynqmp-5.15.0/drivers/dma/pxa_dma.c --- linux-xilinx-zynqmp-5.15.0/drivers/dma/pxa_dma.c +++ linux-xilinx-zynqmp-5.15.0/drivers/dma/pxa_dma.c @@ -722,7 +722,6 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/dma/ste_dma40.c linux-xilinx-zynqmp-5.15.0/drivers/dma/ste_dma40.c --- linux-xilinx-zynqmp-5.15.0/drivers/dma/ste_dma40.c +++ linux-xilinx-zynqmp-5.15.0/drivers/dma/ste_dma40.c @@ -3697,6 +3697,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/dma/stm32-mdma.c linux-xilinx-zynqmp-5.15.0/drivers/dma/stm32-mdma.c --- linux-xilinx-zynqmp-5.15.0/drivers/dma/stm32-mdma.c +++ linux-xilinx-zynqmp-5.15.0/drivers/dma/stm32-mdma.c @@ -509,7 +509,7 @@ 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 @@ 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)); diff -u linux-xilinx-zynqmp-5.15.0/drivers/dma/ti/k3-udma.c linux-xilinx-zynqmp-5.15.0/drivers/dma/ti/k3-udma.c --- linux-xilinx-zynqmp-5.15.0/drivers/dma/ti/k3-udma.c +++ linux-xilinx-zynqmp-5.15.0/drivers/dma/ti/k3-udma.c @@ -3957,6 +3957,7 @@ { struct udma_chan *uc = to_udma_chan(&vc->chan); struct udma_desc *d; + u8 status; if (!vd) return; @@ -3966,12 +3967,12 @@ if (d->metadata_size) udma_fetch_epib(uc, d); - /* Provide residue information for the client */ if (result) { void *desc_vaddr = udma_curr_cppi5_desc_vaddr(d, d->desc_idx); if (cppi5_desc_get_type(desc_vaddr) == CPPI5_INFO0_DESC_TYPE_VAL_HOST) { + /* Provide residue information for the client */ result->residue = d->residue - cppi5_hdesc_get_pktlen(desc_vaddr); if (result->residue) @@ -3980,7 +3981,12 @@ result->result = DMA_TRANS_NOERROR; } else { result->residue = 0; - result->result = DMA_TRANS_NOERROR; + /* Propagate TR Response errors to the client */ + status = d->hwdesc[0].tr_resp_base->status; + if (status) + result->result = DMA_TRANS_ABORTED; + else + result->result = DMA_TRANS_NOERROR; } } } diff -u linux-xilinx-zynqmp-5.15.0/drivers/firmware/arm_ffa/bus.c linux-xilinx-zynqmp-5.15.0/drivers/firmware/arm_ffa/bus.c --- linux-xilinx-zynqmp-5.15.0/drivers/firmware/arm_ffa/bus.c +++ linux-xilinx-zynqmp-5.15.0/drivers/firmware/arm_ffa/bus.c @@ -192,6 +192,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/firmware/arm_scmi/common.h linux-xilinx-zynqmp-5.15.0/drivers/firmware/arm_scmi/common.h --- linux-xilinx-zynqmp-5.15.0/drivers/firmware/arm_scmi/common.h +++ linux-xilinx-zynqmp-5.15.0/drivers/firmware/arm_scmi/common.h @@ -439,6 +439,7 @@ void shmem_clear_channel(struct scmi_shared_mem __iomem *shmem); bool shmem_poll_done(struct scmi_shared_mem __iomem *shmem, struct scmi_xfer *xfer); +bool shmem_channel_free(struct scmi_shared_mem __iomem *shmem); /* declarations for message passing transports */ struct scmi_msg_payld; diff -u linux-xilinx-zynqmp-5.15.0/drivers/firmware/arm_scmi/mailbox.c linux-xilinx-zynqmp-5.15.0/drivers/firmware/arm_scmi/mailbox.c --- linux-xilinx-zynqmp-5.15.0/drivers/firmware/arm_scmi/mailbox.c +++ linux-xilinx-zynqmp-5.15.0/drivers/firmware/arm_scmi/mailbox.c @@ -43,6 +43,20 @@ { struct scmi_mailbox *smbox = client_to_scmi_mailbox(cl); + /* + * An A2P IRQ is NOT valid when received while the platform still has + * the ownership of the channel, because the platform at first releases + * the SMT channel and then sends the completion interrupt. + * + * This addresses a possible race condition in which a spurious IRQ from + * a previous timed-out reply which arrived late could be wrongly + * associated with the next pending transaction. + */ + if (cl->knows_txdone && !shmem_channel_free(smbox->shmem)) { + dev_warn(smbox->cinfo->dev, "Ignoring spurious A2P IRQ !\n"); + return; + } + scmi_rx_callback(smbox->cinfo, shmem_read_header(smbox->shmem), NULL); } diff -u linux-xilinx-zynqmp-5.15.0/drivers/firmware/arm_scmi/shmem.c linux-xilinx-zynqmp-5.15.0/drivers/firmware/arm_scmi/shmem.c --- linux-xilinx-zynqmp-5.15.0/drivers/firmware/arm_scmi/shmem.c +++ linux-xilinx-zynqmp-5.15.0/drivers/firmware/arm_scmi/shmem.c @@ -101,0 +102,6 @@ + +bool shmem_channel_free(struct scmi_shared_mem __iomem *shmem) +{ + return (ioread32(&shmem->channel_status) & + SCMI_SHMEM_CHAN_STAT_CHANNEL_FREE); +} diff -u linux-xilinx-zynqmp-5.15.0/drivers/firmware/imx/imx-dsp.c linux-xilinx-zynqmp-5.15.0/drivers/firmware/imx/imx-dsp.c --- linux-xilinx-zynqmp-5.15.0/drivers/firmware/imx/imx-dsp.c +++ linux-xilinx-zynqmp-5.15.0/drivers/firmware/imx/imx-dsp.c @@ -115,11 +115,11 @@ dsp_chan->idx = i % 2; dsp_chan->ch = mbox_request_channel_byname(cl, chan_name); if (IS_ERR(dsp_chan->ch)) { - kfree(dsp_chan->name); ret = PTR_ERR(dsp_chan->ch); if (ret != -EPROBE_DEFER) dev_err(dev, "Failed to request mbox chan %s ret %d\n", chan_name, ret); + kfree(dsp_chan->name); goto out; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/firmware/meson/meson_sm.c linux-xilinx-zynqmp-5.15.0/drivers/firmware/meson/meson_sm.c --- linux-xilinx-zynqmp-5.15.0/drivers/firmware/meson/meson_sm.c +++ linux-xilinx-zynqmp-5.15.0/drivers/firmware/meson/meson_sm.c @@ -313,11 +313,14 @@ platform_set_drvdata(pdev, fw); - pr_info("secure-monitor enabled\n"); + if (devm_of_platform_populate(dev)) + goto out_in_base; if (sysfs_create_group(&pdev->dev.kobj, &meson_sm_sysfs_attr_group)) goto out_in_base; + pr_info("secure-monitor enabled\n"); + return 0; out_in_base: diff -u linux-xilinx-zynqmp-5.15.0/drivers/firmware/qcom_scm.c linux-xilinx-zynqmp-5.15.0/drivers/firmware/qcom_scm.c --- linux-xilinx-zynqmp-5.15.0/drivers/firmware/qcom_scm.c +++ linux-xilinx-zynqmp-5.15.0/drivers/firmware/qcom_scm.c @@ -137,6 +137,12 @@ 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 @@ forced = true; goto found; } +#endif probed_convention = SMC_CONVENTION_ARM_32; ret = __scm_smc_call(NULL, &desc, probed_convention, &res, true); diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpio/gpio-dwapb.c linux-xilinx-zynqmp-5.15.0/drivers/gpio/gpio-dwapb.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpio/gpio-dwapb.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpio/gpio-dwapb.c @@ -277,13 +277,15 @@ { struct gpio_chip *gc = irq_data_get_irq_chip_data(d); struct dwapb_gpio *gpio = to_dwapb_gpio(gc); + irq_hw_number_t hwirq = irqd_to_hwirq(d); unsigned long flags; u32 val; raw_spin_lock_irqsave(&gc->bgpio_lock, flags); - val = dwapb_read(gpio, GPIO_INTEN); - val |= BIT(irqd_to_hwirq(d)); + val = dwapb_read(gpio, GPIO_INTEN) | BIT(hwirq); dwapb_write(gpio, GPIO_INTEN, val); + val = dwapb_read(gpio, GPIO_INTMASK) & ~BIT(hwirq); + dwapb_write(gpio, GPIO_INTMASK, val); raw_spin_unlock_irqrestore(&gc->bgpio_lock, flags); } @@ -291,12 +293,14 @@ { struct gpio_chip *gc = irq_data_get_irq_chip_data(d); struct dwapb_gpio *gpio = to_dwapb_gpio(gc); + irq_hw_number_t hwirq = irqd_to_hwirq(d); unsigned long flags; u32 val; raw_spin_lock_irqsave(&gc->bgpio_lock, flags); - val = dwapb_read(gpio, GPIO_INTEN); - val &= ~BIT(irqd_to_hwirq(d)); + val = dwapb_read(gpio, GPIO_INTMASK) | BIT(hwirq); + dwapb_write(gpio, GPIO_INTMASK, val); + val = dwapb_read(gpio, GPIO_INTEN) & ~BIT(hwirq); dwapb_write(gpio, GPIO_INTEN, val); raw_spin_unlock_irqrestore(&gc->bgpio_lock, flags); } diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpio/gpio-vf610.c linux-xilinx-zynqmp-5.15.0/drivers/gpio/gpio-vf610.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpio/gpio-vf610.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpio/gpio-vf610.c @@ -127,14 +127,14 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpio/gpiolib-acpi.c linux-xilinx-zynqmp-5.15.0/drivers/gpio/gpiolib-acpi.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpio/gpiolib-acpi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpio/gpiolib-acpi.c @@ -1572,6 +1572,20 @@ .ignore_wake = "INT33FF:01@0", }, }, + { + /* + * Spurious wakeups from TP_ATTN# pin + * Found in BIOS 0.35 + * https://gitlab.freedesktop.org/drm/amd/-/issues/3073 + */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "GPD"), + DMI_MATCH(DMI_PRODUCT_NAME, "G1619-04"), + }, + .driver_data = &(struct acpi_gpiolib_dmi_quirk) { + .ignore_wake = "PNP0C50:00@8", + }, + }, {} /* Terminating entry */ }; diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpio/gpiolib-cdev.c linux-xilinx-zynqmp-5.15.0/drivers/gpio/gpiolib-cdev.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpio/gpiolib-cdev.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpio/gpiolib-cdev.c @@ -2224,10 +2224,7 @@ return 0; } -/* - * gpio_ioctl() - ioctl handler for the GPIO chardev - */ -static long gpio_ioctl(struct file *file, unsigned int cmd, unsigned long arg) +static long gpio_ioctl_unlocked(struct file *file, unsigned int cmd, unsigned long arg) { struct gpio_chardev_data *cdev = file->private_data; struct gpio_device *gdev = cdev->gdev; @@ -2266,2 +2263,13 @@ +/* + * gpio_ioctl() - ioctl handler for the GPIO chardev + */ +static long gpio_ioctl(struct file *file, unsigned int cmd, unsigned long arg) +{ + struct gpio_chardev_data *cdev = file->private_data; + + return call_ioctl_locked(file, cmd, arg, cdev->gdev, + gpio_ioctl_unlocked); +} + #ifdef CONFIG_COMPAT diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpio/gpiolib-sysfs.c linux-xilinx-zynqmp-5.15.0/drivers/gpio/gpiolib-sysfs.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpio/gpiolib-sysfs.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpio/gpiolib-sysfs.c @@ -480,14 +480,17 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu.h linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu.h --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu.h +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu.h @@ -1285,6 +1285,7 @@ void amdgpu_device_pci_config_reset(struct amdgpu_device *adev); int amdgpu_device_pci_reset(struct amdgpu_device *adev); bool amdgpu_device_need_post(struct amdgpu_device *adev); +bool amdgpu_device_pcie_dynamic_switching_supported(void); bool amdgpu_device_should_use_aspm(struct amdgpu_device *adev); bool amdgpu_device_aspm_support_quirk(void); diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_bios.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_bios.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_bios.c +++ linux-xilinx-zynqmp-5.15.0/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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_bo_list.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_bo_list.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_bo_list.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_bo_list.c @@ -178,6 +178,7 @@ } rcu_read_unlock(); + *result = NULL; return -ENOENT; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c @@ -142,7 +142,7 @@ } 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c @@ -342,6 +342,9 @@ if (size & 0x3 || *pos & 0x3) return -EINVAL; + if (!adev->didt_rreg) + return -EOPNOTSUPP; + r = pm_runtime_get_sync(adev_to_drm(adev)->dev); if (r < 0) { pm_runtime_put_autosuspend(adev_to_drm(adev)->dev); @@ -401,6 +404,9 @@ if (size & 0x3 || *pos & 0x3) return -EINVAL; + if (!adev->didt_wreg) + return -EOPNOTSUPP; + r = pm_runtime_get_sync(adev_to_drm(adev)->dev); if (r < 0) { pm_runtime_put_autosuspend(adev_to_drm(adev)->dev); @@ -458,6 +464,9 @@ ssize_t result = 0; int r; + if (!adev->smc_rreg) + return -EOPNOTSUPP; + if (size & 0x3 || *pos & 0x3) return -EINVAL; @@ -517,6 +526,9 @@ ssize_t result = 0; int r; + if (!adev->smc_wreg) + return -EOPNOTSUPP; + if (size & 0x3 || *pos & 0x3) return -EINVAL; diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c @@ -1292,6 +1292,7 @@ return true; fw_ver = *((uint32_t *)adev->pm.fw->data + 69); + release_firmware(adev->pm.fw); if (fw_ver < 0x00160e00) return true; } @@ -1319,6 +1320,25 @@ return true; } +/* + * Intel hosts such as Raptor Lake and Sapphire Rapids don't support dynamic + * speed switching. Until we have confirmation from Intel that a specific host + * supports it, it's safer that we keep it disabled for all. + * + * https://edc.intel.com/content/www/us/en/design/products/platforms/details/raptor-lake-s/13th-generation-core-processors-datasheet-volume-1-of-2/005/pci-express-support/ + * https://gitlab.freedesktop.org/drm/amd/-/issues/2663 + */ +bool amdgpu_device_pcie_dynamic_switching_supported(void) +{ +#if IS_ENABLED(CONFIG_X86) + struct cpuinfo_x86 *c = &cpu_data(0); + + if (c->x86_vendor == X86_VENDOR_INTEL) + return false; +#endif + return true; +} + /** * amdgpu_device_should_use_aspm - check if the device should program ASPM * @@ -4069,7 +4089,6 @@ amdgpu_fbdev_set_suspend(adev, 1); cancel_delayed_work_sync(&adev->delayed_init_work); - flush_delayed_work(&adev->gfx.gfx_off_delay_work); amdgpu_ras_suspend(adev); @@ -5097,7 +5116,8 @@ * 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c @@ -80,7 +80,7 @@ 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 @@ 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 @@ 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 @@ 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 @@ * 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 @@ 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 @@ } 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 @@ * * \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 @@ /* 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 @@ /* 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 @@ 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 @@ } } - 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c @@ -579,8 +579,15 @@ if (adev->gfx.gfx_off_req_count == 0 && !adev->gfx.gfx_off_state) { - schedule_delayed_work(&adev->gfx.gfx_off_delay_work, + /* If going to s2idle, no need to wait */ + if (adev->in_s0ix) { + if (!amdgpu_dpm_set_powergating_by_smu(adev, + AMD_IP_BLOCK_TYPE_GFX, true)) + adev->gfx.gfx_off_state = true; + } else { + schedule_delayed_work(&adev->gfx.gfx_off_delay_work, delay); + } } } else { if (adev->gfx.gfx_off_req_count == 0) { diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c @@ -1236,19 +1236,15 @@ * amdgpu_bo_move_notify - notification about a memory move * @bo: pointer to a buffer object * @evict: if this move is evicting the buffer from the graphics address space - * @new_mem: new information of the bufer object * * Marks the corresponding &amdgpu_bo buffer object as invalid, also performs * bookkeeping. * TTM driver callback which is called when ttm moves a buffer. */ -void amdgpu_bo_move_notify(struct ttm_buffer_object *bo, - bool evict, - struct ttm_resource *new_mem) +void amdgpu_bo_move_notify(struct ttm_buffer_object *bo, bool evict) { struct amdgpu_device *adev = amdgpu_ttm_adev(bo->bdev); struct amdgpu_bo *abo; - struct ttm_resource *old_mem = bo->resource; if (!amdgpu_bo_is_amdgpu_bo(bo)) return; @@ -1265,13 +1261,6 @@ /* remember the eviction */ if (evict) atomic64_inc(&adev->num_evictions); - - /* update statistics */ - if (!new_mem) - return; - - /* move_notify is called before move happens */ - trace_amdgpu_bo_move(abo, new_mem->mem_type, old_mem->mem_type); } void amdgpu_bo_get_memory(struct amdgpu_bo *bo, uint64_t *vram_mem, diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_object.h linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_object.h --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_object.h +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_object.h @@ -313,9 +313,7 @@ int amdgpu_bo_get_metadata(struct amdgpu_bo *bo, void *buffer, size_t buffer_size, uint32_t *metadata_size, uint64_t *flags); -void amdgpu_bo_move_notify(struct ttm_buffer_object *bo, - bool evict, - struct ttm_resource *new_mem); +void amdgpu_bo_move_notify(struct ttm_buffer_object *bo, bool evict); void amdgpu_bo_release_notify(struct ttm_buffer_object *bo); vm_fault_t amdgpu_bo_fault_reserve_notify(struct ttm_buffer_object *bo); void amdgpu_bo_fence(struct amdgpu_bo *bo, struct dma_fence *fence, diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c @@ -554,10 +554,11 @@ return r; } + trace_amdgpu_bo_move(abo, new_mem->mem_type, old_mem->mem_type); out: /* update statistics */ atomic64_add(bo->base.size, &adev->num_bytes_moved); - amdgpu_bo_move_notify(bo, evict, new_mem); + amdgpu_bo_move_notify(bo, evict); return 0; } @@ -1480,7 +1481,7 @@ static void amdgpu_bo_delete_mem_notify(struct ttm_buffer_object *bo) { - amdgpu_bo_move_notify(bo, false, NULL); + amdgpu_bo_move_notify(bo, false); } static struct ttm_device_funcs amdgpu_bo_driver = { diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_vkms.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_vkms.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_vkms.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_vkms.c @@ -238,6 +238,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c @@ -1660,6 +1660,32 @@ *flags |= AMD_CG_SUPPORT_SDMA_LS; } +static void sdma_v5_2_ring_begin_use(struct amdgpu_ring *ring) +{ + struct amdgpu_device *adev = ring->adev; + + /* SDMA 5.2.3 (RMB) FW doesn't seem to properly + * disallow GFXOFF in some cases leading to + * hangs in SDMA. Disallow GFXOFF while SDMA is active. + * We can probably just limit this to 5.2.3, + * but it shouldn't hurt for other parts since + * this GFXOFF will be disallowed anyway when SDMA is + * active, this just makes it explicit. + */ + amdgpu_gfx_off_ctrl(adev, false); +} + +static void sdma_v5_2_ring_end_use(struct amdgpu_ring *ring) +{ + struct amdgpu_device *adev = ring->adev; + + /* SDMA 5.2.3 (RMB) FW doesn't seem to properly + * disallow GFXOFF in some cases leading to + * hangs in SDMA. Allow GFXOFF when SDMA is complete. + */ + amdgpu_gfx_off_ctrl(adev, true); +} + const struct amd_ip_funcs sdma_v5_2_ip_funcs = { .name = "sdma_v5_2", .early_init = sdma_v5_2_early_init, @@ -1707,6 +1733,8 @@ .test_ib = sdma_v5_2_ring_test_ib, .insert_nop = sdma_v5_2_ring_insert_nop, .pad_ib = sdma_v5_2_ring_pad_ib, + .begin_use = sdma_v5_2_ring_begin_use, + .end_use = sdma_v5_2_ring_end_use, .emit_wreg = sdma_v5_2_ring_emit_wreg, .emit_reg_wait = sdma_v5_2_ring_emit_reg_wait, .emit_reg_write_reg_wait = sdma_v5_2_ring_emit_reg_write_reg_wait, diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/soc15.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/soc15.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/soc15.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/soc15.c @@ -1615,9 +1615,11 @@ if (amdgpu_sriov_vf(adev)) *flags = 0; - adev->nbio.funcs->get_clockgating_state(adev, flags); + if (adev->nbio.funcs && adev->nbio.funcs->get_clockgating_state) + adev->nbio.funcs->get_clockgating_state(adev, flags); - adev->hdp.funcs->get_clock_gating_state(adev, flags); + if (adev->hdp.funcs && adev->hdp.funcs->get_clock_gating_state) + adev->hdp.funcs->get_clock_gating_state(adev, flags); if (adev->asic_type != CHIP_ALDEBARAN) { @@ -1633,9 +1635,11 @@ } /* AMD_CG_SUPPORT_ROM_MGCG */ - adev->smuio.funcs->get_clock_gating_state(adev, flags); + if (adev->smuio.funcs && adev->smuio.funcs->get_clock_gating_state) + adev->smuio.funcs->get_clock_gating_state(adev, flags); - adev->df.funcs->get_clockgating_state(adev, flags); + if (adev->df.funcs && adev->df.funcs->get_clockgating_state) + adev->df.funcs->get_clockgating_state(adev, flags); } static int soc15_common_set_powergating_state(void *handle, diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/vi.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/vi.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/vi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/vi.c @@ -1147,7 +1147,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdkfd/kfd_svm.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdkfd/kfd_svm.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdkfd/kfd_svm.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdkfd/kfd_svm.c @@ -347,14 +347,9 @@ spin_lock(&svm_bo->list_lock); } spin_unlock(&svm_bo->list_lock); - if (!dma_fence_is_signaled(&svm_bo->eviction_fence->base)) { - /* We're not in the eviction worker. - * Signal the fence and synchronize with any - * pending eviction work. - */ + if (!dma_fence_is_signaled(&svm_bo->eviction_fence->base)) + /* We're not in the eviction worker. Signal the fence. */ dma_fence_signal(&svm_bo->eviction_fence->base); - cancel_work_sync(&svm_bo->eviction_work); - } dma_fence_put(&svm_bo->eviction_fence->base); amdgpu_bo_unref(&svm_bo->bo); kfree(svm_bo); @@ -433,11 +428,11 @@ /* 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 +545,15 @@ 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 +693,7 @@ 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?"); @@ -2323,6 +2325,7 @@ { struct vm_area_struct *vma; struct interval_tree_node *node; + struct rb_node *rb_node; unsigned long start_limit, end_limit; vma = find_vma(p->mm, addr << PAGE_SHIFT); @@ -2339,16 +2342,15 @@ if (node) { end_limit = min(end_limit, node->start); /* Last range that ends before the fault address */ - node = container_of(rb_prev(&node->rb), - struct interval_tree_node, rb); + rb_node = rb_prev(&node->rb); } else { /* Last range must end before addr because * there was no range after addr */ - node = container_of(rb_last(&p->svms.objects.rb_root), - struct interval_tree_node, rb); + rb_node = rb_last(&p->svms.objects.rb_root); } - if (node) { + if (rb_node) { + node = container_of(rb_node, struct interval_tree_node, rb); if (node->last >= addr) { WARN(1, "Overlap with prev node and page fault addr\n"); return -EFAULT; @@ -2865,13 +2867,14 @@ int svm_range_schedule_evict_svm_bo(struct amdgpu_amdkfd_fence *fence) { - if (!fence) - return -EINVAL; - - if (dma_fence_is_signaled(&fence->base)) - return 0; - - if (fence->svm_bo) { + /* Dereferencing fence->svm_bo is safe here because the fence hasn't + * signaled yet and we're under the protection of the fence->lock. + * After the fence is signaled in svm_range_bo_release, we cannot get + * here any more. + * + * Reference is dropped in svm_range_evict_svm_bo_worker. + */ + if (svm_bo_ref_unless_zero(fence->svm_bo)) { WRITE_ONCE(fence->svm_bo->evicting, 1); schedule_work(&fence->svm_bo->eviction_work); } @@ -2886,8 +2889,6 @@ struct mm_struct *mm; svm_bo = container_of(work, struct svm_range_bo, eviction_work); - if (!svm_bo_ref_unless_zero(svm_bo)) - return; /* svm_bo was freed while eviction was pending */ /* svm_range_bo_release destroys this worker thread. So during * the lifetime of this thread, kfd_process and mm will be valid. diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c @@ -1962,7 +1962,7 @@ 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; @@ -2072,6 +2072,7 @@ 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); @@ -2093,10 +2094,10 @@ 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); @@ -2108,7 +2109,7 @@ 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; diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dc/core/dc.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dc/core/dc.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dc/core/dc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dc/core/dc.c @@ -978,7 +978,8 @@ /* 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; @@ -1774,6 +1775,10 @@ wait_for_no_pipes_pending(dc, context); /* pplib is notified if disp_num changed */ dc->hwss.optimize_bandwidth(dc, context); + /* Need to do otg sync again as otg could be out of sync due to otg + * workaround applied during clock update + */ + dc_trigger_sync(dc, context); } if (dc->ctx->dce_version >= DCE_VERSION_MAX) @@ -2148,6 +2153,7 @@ } 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; @@ -2182,6 +2188,12 @@ 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 @@ -2219,7 +2231,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dc/dc.h linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dc/dc.h --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dc/dc.h +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dc/dc.h @@ -166,6 +166,11 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dc/dcn30/dcn30_resource.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dc/dcn30/dcn30_resource.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dc/dcn30/dcn30_resource.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dc/dcn30/dcn30_resource.c @@ -1164,8 +1164,12 @@ vpg = dcn30_vpg_create(ctx, vpg_inst); afmt = dcn30_afmt_create(ctx, afmt_inst); - if (!enc1 || !vpg || !afmt) + if (!enc1 || !vpg || !afmt) { + kfree(enc1); + kfree(vpg); + kfree(afmt); return NULL; + } dcn30_dio_stream_encoder_construct(enc1, ctx, ctx->dc_bios, eng_id, vpg, afmt, diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dc/dcn301/dcn301_resource.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dc/dcn301/dcn301_resource.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dc/dcn301/dcn301_resource.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dc/dcn301/dcn301_resource.c @@ -1195,8 +1195,12 @@ vpg = dcn301_vpg_create(ctx, vpg_inst); afmt = dcn301_afmt_create(ctx, afmt_inst); - if (!enc1 || !vpg || !afmt) + if (!enc1 || !vpg || !afmt || eng_id >= ARRAY_SIZE(stream_enc_regs)) { + kfree(enc1); + kfree(vpg); + kfree(afmt); return NULL; + } dcn30_dio_stream_encoder_construct(enc1, ctx, ctx->dc_bios, eng_id, vpg, afmt, diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dc/dcn302/dcn302_resource.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dc/dcn302/dcn302_resource.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dc/dcn302/dcn302_resource.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dc/dcn302/dcn302_resource.c @@ -542,8 +542,12 @@ vpg = dcn302_vpg_create(ctx, vpg_inst); afmt = dcn302_afmt_create(ctx, afmt_inst); - if (!enc1 || !vpg || !afmt) + if (!enc1 || !vpg || !afmt) { + kfree(enc1); + kfree(vpg); + kfree(afmt); return NULL; + } dcn30_dio_stream_encoder_construct(enc1, ctx, ctx->dc_bios, eng_id, vpg, afmt, &stream_enc_regs[eng_id], &se_shift, &se_mask); diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_resource.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_resource.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_resource.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_resource.c @@ -1291,8 +1291,12 @@ vpg = dcn31_vpg_create(ctx, vpg_inst); afmt = dcn31_afmt_create(ctx, afmt_inst); - if (!enc1 || !vpg || !afmt) + if (!enc1 || !vpg || !afmt) { + kfree(enc1); + kfree(vpg); + kfree(afmt); return NULL; + } dcn30_dio_stream_encoder_construct(enc1, ctx, ctx->dc_bios, eng_id, vpg, afmt, diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dmub/dmub_srv.h linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dmub/dmub_srv.h --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dmub/dmub_srv.h +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dmub/dmub_srv.h @@ -168,6 +168,7 @@ 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_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_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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dmub/src/dmub_srv.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dmub/src/dmub_srv.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dmub/src/dmub_srv.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dmub/src/dmub_srv.c @@ -319,7 +319,7 @@ 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 @@ 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->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 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/pm/amdgpu_pm.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/pm/amdgpu_pm.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/pm/amdgpu_pm.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/pm/amdgpu_pm.c @@ -807,7 +807,7 @@ 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 @@ 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 @@ return -EINVAL; parameter_size++; + if (!tmp_str) + break; + while (isspace(*tmp_str)) tmp_str++; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu7_hwmgr.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu7_hwmgr.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu7_hwmgr.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu7_hwmgr.c @@ -2924,6 +2924,8 @@ result = smu7_get_evv_voltages(hwmgr); if (result) { pr_info("Get EVV Voltage Failed. Abort Driver loading!\n"); + kfree(hwmgr->backend); + hwmgr->backend = NULL; return -EINVAL; } } else { @@ -2969,8 +2971,10 @@ } result = smu7_update_edc_leakage_table(hwmgr); - if (result) + if (result) { + smu7_hwmgr_backend_fini(hwmgr); return result; + } return 0; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/pm/powerplay/kv_dpm.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/pm/powerplay/kv_dpm.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/pm/powerplay/kv_dpm.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/pm/powerplay/kv_dpm.c @@ -2731,10 +2731,8 @@ non_clock_info = (struct _ATOM_PPLIB_NONCLOCK_INFO *) &non_clock_info_array->nonClockInfo[non_clock_array_index]; ps = kzalloc(sizeof(struct kv_ps), GFP_KERNEL); - if (ps == NULL) { - kfree(adev->pm.dpm.ps); + if (ps == NULL) return -ENOMEM; - } adev->pm.dpm.ps[i].ps_priv = ps; k = 0; idx = (u8 *)&power_state->v2.clockInfoIndex[0]; diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/pm/powerplay/si_dpm.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/pm/powerplay/si_dpm.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/pm/powerplay/si_dpm.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/pm/powerplay/si_dpm.c @@ -7346,10 +7346,9 @@ kcalloc(4, sizeof(struct amdgpu_clock_voltage_dependency_entry), GFP_KERNEL); - if (!adev->pm.dpm.dyn_state.vddc_dependency_on_dispclk.entries) { - amdgpu_free_extended_power_table(adev); + if (!adev->pm.dpm.dyn_state.vddc_dependency_on_dispclk.entries) return -ENOMEM; - } + adev->pm.dpm.dyn_state.vddc_dependency_on_dispclk.count = 4; adev->pm.dpm.dyn_state.vddc_dependency_on_dispclk.entries[0].clk = 0; adev->pm.dpm.dyn_state.vddc_dependency_on_dispclk.entries[0].v = 0; diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/bridge/lontium-lt8912b.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/bridge/lontium-lt8912b.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/bridge/lontium-lt8912b.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/bridge/lontium-lt8912b.c @@ -43,7 +43,6 @@ u8 data_lanes; bool is_power_on; - bool is_attached; }; static int lt8912_write_init_config(struct lt8912 *lt) @@ -481,11 +480,11 @@ 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 @@ 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 @@ 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 @@ 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 @@ if (ret) goto error; - ret = lt8912_attach_dsi(lt); - if (ret) - goto error; - - lt->is_attached = true; - return 0; error: @@ -580,12 +582,10 @@ { 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 @@ 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 @@ { struct lt8912 *lt = i2c_get_clientdata(client); - lt8912_bridge_detach(<->bridge); drm_bridge_remove(<->bridge); lt8912_free_i2c(lt); lt8912_put_dt(lt); diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/bridge/tc358767.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/bridge/tc358767.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/bridge/tc358767.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/bridge/tc358767.c @@ -1633,7 +1633,7 @@ } else { if (tc->hpd_pin < 0 || tc->hpd_pin > 1) { dev_err(dev, "failed to parse HPD number\n"); - return ret; + return -EINVAL; } } diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/bridge/tc358768.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/bridge/tc358768.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/bridge/tc358768.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/bridge/tc358768.c @@ -217,6 +217,10 @@ 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 @@ { 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 @@ 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 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/bridge/ti-sn65dsi86.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/bridge/ti-sn65dsi86.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/bridge/ti-sn65dsi86.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/bridge/ti-sn65dsi86.c @@ -471,6 +471,7 @@ u32 request_val = AUX_CMD_REQ(msg->request); u8 *buf = msg->buffer; unsigned int len = msg->size; + unsigned int short_len; unsigned int val; int ret; u8 addr_len[SN_AUX_LENGTH_REG + 1 - SN_AUX_ADDR_19_16_REG]; @@ -544,7 +545,8 @@ } if (val & AUX_IRQ_STATUS_AUX_SHORT) { - ret = regmap_read(pdata->regmap, SN_AUX_LENGTH_REG, &len); + ret = regmap_read(pdata->regmap, SN_AUX_LENGTH_REG, &short_len); + len = min(len, short_len); if (ret) goto exit; } else if (val & AUX_IRQ_STATUS_NAT_I2C_FAIL) { diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_atomic_helper.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_atomic_helper.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_atomic_helper.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_atomic_helper.c @@ -285,7 +285,8 @@ update_connector_routing(struct drm_atomic_state *state, struct drm_connector *connector, struct drm_connector_state *old_connector_state, - struct drm_connector_state *new_connector_state) + struct drm_connector_state *new_connector_state, + bool added_by_user) { const struct drm_connector_helper_funcs *funcs; struct drm_encoder *new_encoder; @@ -336,9 +337,13 @@ * there's a chance the connector may have been destroyed during the * process, but it's better to ignore that then cause * drm_atomic_helper_resume() to fail. + * + * Last, we want to ignore connector registration when the connector + * was not pulled in the atomic state by user-space (ie, was pulled + * in by the driver, e.g. when updating a DP-MST stream). */ if (!state->duplicated && drm_connector_is_unregistered(connector) && - crtc_state->active) { + added_by_user && crtc_state->active) { DRM_DEBUG_ATOMIC("[CONNECTOR:%d:%s] is not registered\n", connector->base.id, connector->name); return -EINVAL; @@ -610,7 +615,10 @@ struct drm_connector *connector; struct drm_connector_state *old_connector_state, *new_connector_state; int i, ret; - unsigned int connectors_mask = 0; + unsigned int connectors_mask = 0, user_connectors_mask = 0; + + for_each_oldnew_connector_in_state(state, connector, old_connector_state, new_connector_state, i) + user_connectors_mask |= BIT(i); for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) { bool has_connectors = @@ -675,7 +683,8 @@ */ ret = update_connector_routing(state, connector, old_connector_state, - new_connector_state); + new_connector_state, + BIT(i) & user_connectors_mask); if (ret) return ret; if (old_connector_state->crtc) { diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_dp_mst_topology.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_dp_mst_topology.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_dp_mst_topology.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_dp_mst_topology.c @@ -2615,14 +2615,14 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_drv.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_drv.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_drv.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_drv.c @@ -894,8 +894,11 @@ goto err_minors; } - if (drm_core_check_feature(dev, DRIVER_MODESET)) - drm_modeset_register_all(dev); + if (drm_core_check_feature(dev, DRIVER_MODESET)) { + ret = drm_modeset_register_all(dev); + if (ret) + goto err_unload; + } DRM_INFO("Initialized %s %d.%d.%d %s for %s on minor %d\n", driver->name, driver->major, driver->minor, @@ -905,6 +908,9 @@ goto out_unlock; +err_unload: + if (dev->driver->unload) + dev->driver->unload(dev); err_minors: remove_compat_control_link(dev); drm_minor_unregister(dev, DRM_MINOR_PRIMARY); diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_fb_helper.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_fb_helper.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_fb_helper.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_fb_helper.c @@ -683,22 +683,21 @@ /** * drm_fb_helper_deferred_io() - fbdev deferred_io callback function * @info: fb_info struct pointer - * @pagelist: list of mmap framebuffer pages that have to be flushed + * @pagereflist: list of mmap framebuffer pages that have to be flushed * * This function is used as the &fb_deferred_io.deferred_io * callback function for flushing the fbdev mmap writes. */ -void drm_fb_helper_deferred_io(struct fb_info *info, - struct list_head *pagelist) +void drm_fb_helper_deferred_io(struct fb_info *info, struct list_head *pagereflist) { unsigned long start, end, min, max; - struct page *page; + struct fb_deferred_io_pageref *pageref; u32 y1, y2; min = ULONG_MAX; max = 0; - list_for_each_entry(page, pagelist, lru) { - start = page->index << PAGE_SHIFT; + list_for_each_entry(pageref, pagereflist, list) { + start = pageref->offset; end = start + PAGE_SIZE - 1; min = min(min, start); max = max(max, end); diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_framebuffer.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_framebuffer.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_framebuffer.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_framebuffer.c @@ -572,7 +572,7 @@ struct drm_mode_fb_cmd2 *r = data; struct drm_framebuffer *fb; unsigned int i; - int ret; + int ret = 0; if (!drm_core_check_feature(dev, DRIVER_MODESET)) return -EINVAL; diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_mipi_dsi.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_mipi_dsi.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_mipi_dsi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_mipi_dsi.c @@ -246,6 +246,52 @@ } 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); @@ -300,7 +346,8 @@ { struct mipi_dsi_device *dsi = to_mipi_dsi_device(dev); - mipi_dsi_detach(dsi); + if (dsi->attached) + mipi_dsi_detach(dsi); mipi_dsi_device_unregister(dsi); return 0; @@ -323,11 +370,18 @@ int mipi_dsi_attach(struct mipi_dsi_device *dsi) { const struct mipi_dsi_host_ops *ops = dsi->host->ops; + int ret; if (!ops || !ops->attach) return -ENOSYS; - return ops->attach(dsi->host, dsi); + ret = ops->attach(dsi->host, dsi); + if (ret) + return ret; + + dsi->attached = true; + + return 0; } EXPORT_SYMBOL(mipi_dsi_attach); @@ -339,13 +393,53 @@ { const struct mipi_dsi_host_ops *ops = dsi->host->ops; + if (WARN_ON(!dsi->attached)) + return -EINVAL; + if (!ops || !ops->detach) return -ENOSYS; + dsi->attached = false; + return ops->detach(dsi->host, 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_panel_orientation_quirks.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_panel_orientation_quirks.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_panel_orientation_quirks.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_panel_orientation_quirks.c @@ -44,6 +44,14 @@ .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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_plane.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_plane.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_plane.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_plane.c @@ -1378,6 +1378,7 @@ out: if (fb) drm_framebuffer_put(fb); + fb = NULL; if (plane->old_fb) drm_framebuffer_put(plane->old_fb); plane->old_fb = NULL; diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_prime.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_prime.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_prime.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_prime.c @@ -825,7 +825,7 @@ if (max_segment == 0) max_segment = UINT_MAX; err = sg_alloc_table_from_pages_segment(sg, pages, nr_pages, 0, - nr_pages << PAGE_SHIFT, + (unsigned long)nr_pages << PAGE_SHIFT, max_segment, GFP_KERNEL); if (err) { kfree(sg); diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_syncobj.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_syncobj.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_syncobj.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_syncobj.c @@ -1056,7 +1056,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/icl_dsi.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/icl_dsi.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/icl_dsi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/icl_dsi.c @@ -1485,6 +1485,13 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_display.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_display.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_display.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_display.c @@ -11778,6 +11778,16 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_display.h linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_display.h --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_display.h +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_display.h @@ -528,6 +528,9 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_dp.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_dp.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_dp.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_dp.c @@ -731,6 +731,10 @@ 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; @@ -3275,7 +3279,7 @@ intel_dp->train_set, crtc_state->lane_count); drm_dp_set_phy_test_pattern(&intel_dp->aux, data, - link_status[DP_DPCD_REV]); + intel_dp->dpcd[DP_DPCD_REV]); } static u8 intel_dp_autotest_phy_pattern(struct intel_dp *intel_dp) diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_dp_mst.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_dp_mst.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_dp_mst.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_dp_mst.c @@ -697,6 +697,10 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_hdmi.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_hdmi.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_hdmi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_hdmi.c @@ -1962,6 +1962,10 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_lvds.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_lvds.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_lvds.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_lvds.c @@ -387,8 +387,14 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_sdvo.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_sdvo.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_sdvo.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_sdvo.c @@ -1863,13 +1863,19 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/vlv_dsi.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/vlv_dsi.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/vlv_dsi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/vlv_dsi.c @@ -1613,9 +1613,25 @@ .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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/gem/i915_gem_context.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/gem/i915_gem_context.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/gem/i915_gem_context.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/gem/i915_gem_context.c @@ -642,6 +642,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/gem/i915_gem_mman.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/gem/i915_gem_mman.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/gem/i915_gem_mman.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/gem/i915_gem_mman.c @@ -231,6 +231,7 @@ case 0: case -EAGAIN: case -ENOSPC: /* transient failure to evict? */ + case -ENOBUFS: /* temporarily out of fences? */ case -ERESTARTSYS: case -EINTR: case -EBUSY: diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/i915_perf.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/i915_perf.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/i915_perf.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/i915_perf.c @@ -3795,11 +3795,8 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/mediatek/mtk_drm_crtc.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/mediatek/mtk_drm_crtc.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/mediatek/mtk_drm_crtc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/mediatek/mtk_drm_crtc.c @@ -362,6 +362,9 @@ 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, @@ -677,6 +680,7 @@ crtc); struct mtk_crtc_state *mtk_crtc_state = to_mtk_crtc_state(crtc_state); struct mtk_drm_crtc *mtk_crtc = to_mtk_crtc(crtc); + unsigned long flags; if (mtk_crtc->event && mtk_crtc_state->base.event) DRM_ERROR("new event while there is still a pending event\n"); @@ -684,7 +688,11 @@ if (mtk_crtc_state->base.event) { mtk_crtc_state->base.event->pipe = drm_crtc_index(crtc); WARN_ON(drm_crtc_vblank_get(crtc) != 0); + + spin_lock_irqsave(&crtc->dev->event_lock, flags); mtk_crtc->event = mtk_crtc_state->base.event; + spin_unlock_irqrestore(&crtc->dev->event_lock, flags); + mtk_crtc_state->base.event = NULL; } } diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/mediatek/mtk_dsi.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/mediatek/mtk_dsi.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/mediatek/mtk_dsi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/mediatek/mtk_dsi.c @@ -406,7 +406,7 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c @@ -46,6 +46,9 @@ (p) ? ((p)->hw_pp ? (p)->hw_pp->idx - PINGPONG_0 : -1) : -1, \ ##__VA_ARGS__) +#define DPU_ERROR_ENC_RATELIMITED(e, fmt, ...) DPU_ERROR_RATELIMITED("enc%d " fmt,\ + (e) ? (e)->base.base.id : -1, ##__VA_ARGS__) + /* * Two to anticipate panels that can do cmd/vid dynamic switching * plan is to create all possible physical encoder types, and switch between @@ -2126,7 +2129,7 @@ return; } - DPU_ERROR_ENC(dpu_enc, "frame done timeout\n"); + DPU_ERROR_ENC_RATELIMITED(dpu_enc, "frame done timeout\n"); event = DPU_ENCODER_FRAME_EVENT_ERROR; trace_dpu_enc_frame_done_timeout(DRMID(drm_enc), event); diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/msm/dp/dp_link.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/msm/dp/dp_link.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/msm/dp/dp_link.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/msm/dp/dp_link.c @@ -7,6 +7,7 @@ #include +#include "dp_reg.h" #include "dp_link.h" #include "dp_panel.h" @@ -1064,7 +1065,7 @@ int dp_link_get_colorimetry_config(struct dp_link *dp_link) { - u32 cc; + u32 cc = DP_MISC0_COLORIMERY_CFG_LEGACY_RGB; struct dp_link_private *link; if (!dp_link) { @@ -1078,10 +1079,11 @@ * Unless a video pattern CTS test is ongoing, use RGB_VESA * Only RGB_VESA and RGB_CEA supported for now */ - if (dp_link_is_video_pattern_requested(link)) - cc = link->dp_link.test_video.test_dyn_range; - else - cc = DP_TEST_DYNAMIC_RANGE_VESA; + if (dp_link_is_video_pattern_requested(link)) { + if (link->dp_link.test_video.test_dyn_range & + DP_TEST_DYNAMIC_RANGE_CEA) + cc = DP_MISC0_COLORIMERY_CFG_CEA_RGB; + } return cc; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/msm/dp/dp_panel.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/msm/dp/dp_panel.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/msm/dp/dp_panel.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/msm/dp/dp_panel.c @@ -263,26 +263,9 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/msm/dsi/dsi_host.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/msm/dsi/dsi_host.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/msm/dsi/dsi_host.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/msm/dsi/dsi_host.c @@ -1154,8 +1154,7 @@ 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; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c @@ -588,7 +588,9 @@ struct device *dev = &phy->pdev->dev; int ret; - pm_runtime_get_sync(dev); + ret = pm_runtime_resume_and_get(dev); + if (ret) + return ret; ret = clk_prepare_enable(phy->ahb_clk); if (ret) { @@ -750,6 +752,10 @@ goto fail; } + ret = devm_pm_runtime_enable(&pdev->dev); + if (ret) + return ret; + /* PLL init will call into clk_register which requires * register access, so we need to enable power and ahb clock. */ diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/panel/panel-simple.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/panel/panel-simple.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/panel/panel-simple.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/panel/panel-simple.c @@ -2532,13 +2532,13 @@ 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, }; @@ -2555,6 +2555,7 @@ .disable = 200, }, .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, + .bus_flags = DRM_BUS_FLAG_DE_HIGH, .connector_type = DRM_MODE_CONNECTOR_LVDS, }; @@ -4172,6 +4173,7 @@ }, .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, .connector_type = DRM_MODE_CONNECTOR_LVDS, + .bus_flags = DRM_BUS_FLAG_DE_HIGH, }; static const struct panel_desc tianma_tm070jvhg33 = { @@ -4184,6 +4186,7 @@ }, .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, .connector_type = DRM_MODE_CONNECTOR_LVDS, + .bus_flags = DRM_BUS_FLAG_DE_HIGH, }; static const struct display_timing tianma_tm070rvhg71_timing = { diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/radeon/si.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/radeon/si.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/radeon/si.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/radeon/si.c @@ -3611,6 +3611,10 @@ for (i = RADEON_RING_TYPE_GFX_INDEX; i <= CAYMAN_RING_TYPE_CP2_INDEX; ++i) { ring = &rdev->ring[i]; r = radeon_ring_lock(rdev, ring, 2); + if (r) { + DRM_ERROR("radeon: cp failed to lock ring (%d).\n", r); + return r; + } /* clear the compute context state */ radeon_ring_write(ring, PACKET3_COMPUTE(PACKET3_CLEAR_STATE, 0)); diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/rockchip/cdn-dp-core.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/rockchip/cdn-dp-core.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/rockchip/cdn-dp-core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/rockchip/cdn-dp-core.c @@ -1146,6 +1146,7 @@ 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 @@ 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; - return component_add(dev, &cdn_dp_component_ops); + ret = component_add(dev, &cdn_dp_component_ops); + if (ret) + goto err_audio_deinit; + + return 0; + +err_audio_deinit: + platform_device_unregister(dp->audio_pdev); + return ret; } static int cdn_dp_remove(struct platform_device *pdev) diff -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/rockchip/rockchip_drm_gem.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/rockchip/rockchip_drm_gem.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/rockchip/rockchip_drm_gem.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/rockchip/rockchip_drm_gem.c @@ -39,7 +39,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/rockchip/rockchip_drm_vop.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/rockchip/rockchip_drm_vop.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/rockchip/rockchip_drm_vop.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/rockchip/rockchip_drm_vop.c @@ -249,14 +249,22 @@ 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 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/vmwgfx/vmwgfx_fb.c linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/vmwgfx/vmwgfx_fb.c --- linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/vmwgfx/vmwgfx_fb.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/vmwgfx/vmwgfx_fb.c @@ -316,18 +316,18 @@ return 0; } -static void vmw_deferred_io(struct fb_info *info, - struct list_head *pagelist) +static void vmw_deferred_io(struct fb_info *info, struct list_head *pagereflist) { struct vmw_fb_par *par = info->par; unsigned long start, end, min, max; unsigned long flags; - struct page *page; + struct fb_deferred_io_pageref *pageref; int y1, y2; min = ULONG_MAX; max = 0; - list_for_each_entry(page, pagelist, lru) { + list_for_each_entry(pageref, pagereflist, list) { + struct page *page = pageref->page; start = page->index << PAGE_SHIFT; end = start + PAGE_SIZE - 1; min = min(min, start); diff -u linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-apple.c linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-apple.c --- linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-apple.c +++ linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-apple.c @@ -70,6 +70,28 @@ u8 flags; }; +static const struct apple_key_translation apple2021_fn_keys[] = { + { KEY_BACKSPACE, KEY_DELETE }, + { KEY_ENTER, KEY_INSERT }, + { KEY_F1, KEY_BRIGHTNESSDOWN, APPLE_FLAG_FKEY }, + { KEY_F2, KEY_BRIGHTNESSUP, APPLE_FLAG_FKEY }, + { KEY_F3, KEY_SCALE, APPLE_FLAG_FKEY }, + { KEY_F4, KEY_SEARCH, APPLE_FLAG_FKEY }, + { KEY_F5, KEY_MICMUTE, APPLE_FLAG_FKEY }, + { KEY_F6, KEY_SLEEP, APPLE_FLAG_FKEY }, + { KEY_F7, KEY_PREVIOUSSONG, APPLE_FLAG_FKEY }, + { KEY_F8, KEY_PLAYPAUSE, APPLE_FLAG_FKEY }, + { KEY_F9, KEY_NEXTSONG, APPLE_FLAG_FKEY }, + { KEY_F10, KEY_MUTE, APPLE_FLAG_FKEY }, + { KEY_F11, KEY_VOLUMEDOWN, APPLE_FLAG_FKEY }, + { KEY_F12, KEY_VOLUMEUP, APPLE_FLAG_FKEY }, + { KEY_UP, KEY_PAGEUP }, + { KEY_DOWN, KEY_PAGEDOWN }, + { KEY_LEFT, KEY_HOME }, + { KEY_RIGHT, KEY_END }, + { } +}; + static const struct apple_key_translation macbookair_fn_keys[] = { { KEY_BACKSPACE, KEY_DELETE }, { KEY_ENTER, KEY_INSERT }, @@ -214,7 +236,9 @@ } if (fnmode) { - if (hid->product >= USB_DEVICE_ID_APPLE_WELLSPRING4_ANSI && + if (hid->product == USB_DEVICE_ID_APPLE_MAGIC_KEYBOARD_2021) + table = apple2021_fn_keys; + else if (hid->product >= USB_DEVICE_ID_APPLE_WELLSPRING4_ANSI && hid->product <= USB_DEVICE_ID_APPLE_WELLSPRING4A_JIS) table = macbookair_fn_keys; else if (hid->product < 0x21d || hid->product >= 0x300) @@ -377,6 +401,9 @@ for (trans = apple_iso_keyboard; trans->from; trans++) set_bit(trans->to, input->keybit); + for (trans = apple2021_fn_keys; trans->from; trans++) + set_bit(trans->to, input->keybit); + if (swap_fn_leftctrl) { for (trans = swapped_fn_leftctrl_keys; trans->from; trans++) set_bit(trans->to, input->keybit); @@ -640,6 +667,10 @@ .driver_data = APPLE_NUMLOCK_EMULATION | APPLE_HAS_FN }, { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY), .driver_data = APPLE_NUMLOCK_EMULATION | APPLE_HAS_FN }, + { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MAGIC_KEYBOARD_2021), + .driver_data = APPLE_HAS_FN }, + { HID_BLUETOOTH_DEVICE(BT_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MAGIC_KEYBOARD_2021), + .driver_data = APPLE_HAS_FN }, { } }; diff -u linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-asus.c linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-asus.c --- linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-asus.c +++ linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-asus.c @@ -382,7 +382,7 @@ return 0; } -static int asus_kbd_set_report(struct hid_device *hdev, u8 *buf, size_t buf_size) +static int asus_kbd_set_report(struct hid_device *hdev, const u8 *buf, size_t buf_size) { unsigned char *dmabuf; int ret; @@ -405,7 +405,7 @@ static int asus_kbd_init(struct hid_device *hdev) { - u8 buf[] = { FEATURE_KBD_REPORT_ID, 0x41, 0x53, 0x55, 0x53, 0x20, 0x54, + const u8 buf[] = { FEATURE_KBD_REPORT_ID, 0x41, 0x53, 0x55, 0x53, 0x20, 0x54, 0x65, 0x63, 0x68, 0x2e, 0x49, 0x6e, 0x63, 0x2e, 0x00 }; int ret; @@ -419,7 +419,7 @@ static int asus_kbd_get_functions(struct hid_device *hdev, unsigned char *kbd_func) { - u8 buf[] = { FEATURE_KBD_REPORT_ID, 0x05, 0x20, 0x31, 0x00, 0x08 }; + const u8 buf[] = { FEATURE_KBD_REPORT_ID, 0x05, 0x20, 0x31, 0x00, 0x08 }; u8 *readbuf; int ret; @@ -450,7 +450,7 @@ static int rog_nkey_led_init(struct hid_device *hdev) { - u8 buf_init_start[] = { FEATURE_KBD_LED_REPORT_ID1, 0xB9 }; + const u8 buf_init_start[] = { FEATURE_KBD_LED_REPORT_ID1, 0xB9 }; u8 buf_init2[] = { FEATURE_KBD_LED_REPORT_ID1, 0x41, 0x53, 0x55, 0x53, 0x20, 0x54, 0x65, 0x63, 0x68, 0x2e, 0x49, 0x6e, 0x63, 0x2e, 0x00 }; u8 buf_init3[] = { FEATURE_KBD_LED_REPORT_ID1, @@ -1014,6 +1014,24 @@ return 0; } +static int __maybe_unused asus_resume(struct hid_device *hdev) { + struct asus_drvdata *drvdata = hid_get_drvdata(hdev); + int ret = 0; + + if (drvdata->kbd_backlight) { + const u8 buf[] = { FEATURE_KBD_REPORT_ID, 0xba, 0xc5, 0xc4, + drvdata->kbd_backlight->cdev.brightness }; + ret = asus_kbd_set_report(hdev, buf, sizeof(buf)); + if (ret < 0) { + hid_err(hdev, "Asus failed to set keyboard backlight: %d\n", ret); + goto asus_resume_err; + } + } + +asus_resume_err: + return ret; +} + static int __maybe_unused asus_reset_resume(struct hid_device *hdev) { struct asus_drvdata *drvdata = hid_get_drvdata(hdev); @@ -1305,6 +1323,7 @@ .input_configured = asus_input_configured, #ifdef CONFIG_PM .reset_resume = asus_reset_resume, + .resume = asus_resume, #endif .event = asus_event, .raw_event = asus_raw_event diff -u linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-core.c linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-core.c --- linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-core.c @@ -702,15 +702,22 @@ * 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-cp2112.c linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-cp2112.c --- linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-cp2112.c +++ linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-cp2112.c @@ -1157,8 +1157,6 @@ 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 @@ 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) @@ -1355,4 +1356,6 @@ girq->threaded = true; + INIT_DELAYED_WORK(&dev->gpio_poll_worker, cp2112_gpio_poll_callback); + ret = gpiochip_add_data(&dev->gc, dev); if (ret < 0) { diff -u linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-debug.c linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-debug.c --- linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-debug.c +++ linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-debug.c @@ -1096,6 +1096,7 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-holtek-kbd.c linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-holtek-kbd.c --- linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-holtek-kbd.c +++ linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-holtek-kbd.c @@ -130,6 +130,10 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-ids.h linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-ids.h --- linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-ids.h +++ linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-ids.h @@ -174,6 +174,7 @@ #define USB_DEVICE_ID_APPLE_IRCONTROL3 0x8241 #define USB_DEVICE_ID_APPLE_IRCONTROL4 0x8242 #define USB_DEVICE_ID_APPLE_IRCONTROL5 0x8243 +#define USB_DEVICE_ID_APPLE_MAGIC_KEYBOARD_2021 0x029c #define USB_VENDOR_ID_ASUS 0x0486 #define USB_DEVICE_ID_ASUS_T91MT 0x0185 @@ -349,6 +350,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 @@ -481,10 +483,6 @@ #define USB_DEVICE_ID_GENERAL_TOUCH_WIN8_PIT_010A 0x010a #define USB_DEVICE_ID_GENERAL_TOUCH_WIN8_PIT_E100 0xe100 -#define USB_VENDOR_ID_GLORIOUS 0x258a -#define USB_DEVICE_ID_GLORIOUS_MODEL_D 0x0033 -#define USB_DEVICE_ID_GLORIOUS_MODEL_O 0x0036 - #define I2C_VENDOR_ID_GOODIX 0x27c6 #define I2C_DEVICE_ID_GOODIX_01F0 0x01f0 @@ -707,6 +705,9 @@ #define USB_VENDOR_ID_LABTEC 0x1020 #define USB_DEVICE_ID_LABTEC_WIRELESS_KEYBOARD 0x0006 +#define USB_VENDOR_ID_LAVIEW 0x22D4 +#define USB_DEVICE_ID_GLORIOUS_MODEL_I 0x1503 + #define USB_VENDOR_ID_LCPOWER 0x1241 #define USB_DEVICE_ID_LCPOWER_LC1000 0xf767 @@ -1093,6 +1094,10 @@ #define USB_VENDOR_ID_SIGMATEL 0x066F #define USB_DEVICE_ID_SIGMATEL_STMP3780 0x3780 +#define USB_VENDOR_ID_SINOWEALTH 0x258a +#define USB_DEVICE_ID_GLORIOUS_MODEL_D 0x0033 +#define USB_DEVICE_ID_GLORIOUS_MODEL_O 0x0036 + #define USB_VENDOR_ID_SIS_TOUCH 0x0457 #define USB_DEVICE_ID_SIS9200_TOUCH 0x9200 #define USB_DEVICE_ID_SIS817_TOUCH 0x0817 diff -u linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-logitech-hidpp.c linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-logitech-hidpp.c --- linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-logitech-hidpp.c +++ linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-logitech-hidpp.c @@ -31,11 +31,6 @@ 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 @@ /* 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 @@ 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 @@ /* -------------------------------------------------------------------------- */ #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 @@ } } + 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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) @@ -4225,21 +4207,14 @@ 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_NO_HIDINPUT) - connect_mask &= ~HID_CONNECT_HIDINPUT; + if (hidpp->quirks & HIDPP_QUIRK_DELAYED_INIT) + 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) { @@ -4250,6 +4225,11 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-multitouch.c linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-multitouch.c --- linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-multitouch.c +++ linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-multitouch.c @@ -2046,6 +2046,11 @@ MT_USB_DEVICE(USB_VENDOR_ID_HANVON_ALT, USB_DEVICE_ID_HANVON_ALT_MULTITOUCH) }, + /* HONOR GLO-GXXX panel */ + { .driver_data = MT_CLS_VTL, + HID_DEVICE(BUS_I2C, HID_GROUP_MULTITOUCH_WIN_8, + 0x347d, 0x7853) }, + /* Ilitek dual touch panel */ { .driver_data = MT_CLS_NSMU, MT_USB_DEVICE(USB_VENDOR_ID_ILITEK, @@ -2144,6 +2149,10 @@ /* 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) }, { .driver_data = MT_CLS_WIN_8_FORCE_MULTI_INPUT, diff -u linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-quirks.c linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-quirks.c --- linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-quirks.c +++ linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-quirks.c @@ -33,6 +33,7 @@ { HID_USB_DEVICE(USB_VENDOR_ID_AKAI, USB_DEVICE_ID_AKAI_MPKMINI2), HID_QUIRK_NO_INIT_REPORTS }, { HID_USB_DEVICE(USB_VENDOR_ID_ALPS, USB_DEVICE_ID_IBM_GAMEPAD), HID_QUIRK_BADPAD }, { HID_USB_DEVICE(USB_VENDOR_ID_AMI, USB_DEVICE_ID_AMI_VIRT_KEYBOARD_AND_MOUSE), HID_QUIRK_ALWAYS_POLL }, + { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_REVB_ANSI), HID_QUIRK_ALWAYS_POLL }, { HID_USB_DEVICE(USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_2PORTKVM), HID_QUIRK_NOGET }, { HID_USB_DEVICE(USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_4PORTKVMC), HID_QUIRK_NOGET }, { HID_USB_DEVICE(USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_4PORTKVM), HID_QUIRK_NOGET }, @@ -66,6 +67,7 @@ { 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 }, @@ -307,6 +309,7 @@ { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MAGIC_KEYBOARD_ANSI) }, { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY) }, { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY) }, + { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MAGIC_KEYBOARD_2021) }, #endif #if IS_ENABLED(CONFIG_HID_APPLEIR) { HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IRCONTROL) }, diff -u linux-xilinx-zynqmp-5.15.0/drivers/hid/i2c-hid/i2c-hid-of.c linux-xilinx-zynqmp-5.15.0/drivers/hid/i2c-hid/i2c-hid-of.c --- linux-xilinx-zynqmp-5.15.0/drivers/hid/i2c-hid/i2c-hid-of.c +++ linux-xilinx-zynqmp-5.15.0/drivers/hid/i2c-hid/i2c-hid-of.c @@ -80,6 +80,7 @@ if (!ihid_of) return -ENOMEM; + ihid_of->client = client; ihid_of->ops.power_up = i2c_hid_of_power_up; ihid_of->ops.power_down = i2c_hid_of_power_down; diff -u linux-xilinx-zynqmp-5.15.0/drivers/hid/wacom_sys.c linux-xilinx-zynqmp-5.15.0/drivers/hid/wacom_sys.c --- linux-xilinx-zynqmp-5.15.0/drivers/hid/wacom_sys.c +++ linux-xilinx-zynqmp-5.15.0/drivers/hid/wacom_sys.c @@ -2088,7 +2088,7 @@ return 0; } -static int wacom_register_inputs(struct wacom *wacom) +static int wacom_setup_inputs(struct wacom *wacom) { struct input_dev *pen_input_dev, *touch_input_dev, *pad_input_dev; struct wacom_wac *wacom_wac = &(wacom->wacom_wac); @@ -2107,10 +2107,6 @@ input_free_device(pen_input_dev); wacom_wac->pen_input = NULL; pen_input_dev = NULL; - } else { - error = input_register_device(pen_input_dev); - if (error) - goto fail; } error = wacom_setup_touch_input_capabilities(touch_input_dev, wacom_wac); @@ -2119,10 +2115,6 @@ input_free_device(touch_input_dev); wacom_wac->touch_input = NULL; touch_input_dev = NULL; - } else { - error = input_register_device(touch_input_dev); - if (error) - goto fail; } error = wacom_setup_pad_input_capabilities(pad_input_dev, wacom_wac); @@ -2131,7 +2123,34 @@ input_free_device(pad_input_dev); wacom_wac->pad_input = NULL; pad_input_dev = NULL; - } else { + } + + return 0; +} + +static int wacom_register_inputs(struct wacom *wacom) +{ + struct input_dev *pen_input_dev, *touch_input_dev, *pad_input_dev; + struct wacom_wac *wacom_wac = &(wacom->wacom_wac); + int error = 0; + + pen_input_dev = wacom_wac->pen_input; + touch_input_dev = wacom_wac->touch_input; + pad_input_dev = wacom_wac->pad_input; + + if (pen_input_dev) { + error = input_register_device(pen_input_dev); + if (error) + goto fail; + } + + if (touch_input_dev) { + error = input_register_device(touch_input_dev); + if (error) + goto fail; + } + + if (pad_input_dev) { error = input_register_device(pad_input_dev); if (error) goto fail; @@ -2387,6 +2406,20 @@ goto fail; } + error = wacom_setup_inputs(wacom); + if (error) + goto fail; + + if (features->type == HID_GENERIC) + connect_mask |= HID_CONNECT_DRIVER; + + /* Regular HID work starts now */ + error = hid_hw_start(hdev, connect_mask); + if (error) { + hid_err(hdev, "hw start failed\n"); + goto fail; + } + error = wacom_register_inputs(wacom); if (error) goto fail; @@ -2401,16 +2434,6 @@ goto fail; } - if (features->type == HID_GENERIC) - connect_mask |= HID_CONNECT_DRIVER; - - /* Regular HID work starts now */ - error = hid_hw_start(hdev, connect_mask); - if (error) { - hid_err(hdev, "hw start failed\n"); - goto fail; - } - if (!wireless) { /* Note that if query fails it is not a hard failure */ wacom_query_tablet_data(wacom); diff -u linux-xilinx-zynqmp-5.15.0/drivers/hid/wacom_wac.c linux-xilinx-zynqmp-5.15.0/drivers/hid/wacom_wac.c --- linux-xilinx-zynqmp-5.15.0/drivers/hid/wacom_wac.c +++ linux-xilinx-zynqmp-5.15.0/drivers/hid/wacom_wac.c @@ -2551,7 +2551,14 @@ wacom_wac->hid_data.tipswitch); input_report_key(input, wacom_wac->tool[0], sense); if (wacom_wac->serial[0]) { - input_event(input, EV_MSC, MSC_SERIAL, wacom_wac->serial[0]); + /* + * xf86-input-wacom does not accept a serial number + * of '0'. Report the low 32 bits if possible, but + * if they are zero, report the upper ones instead. + */ + __u32 serial_lo = wacom_wac->serial[0] & 0xFFFFFFFFu; + __u32 serial_hi = wacom_wac->serial[0] >> 32; + input_event(input, EV_MSC, MSC_SERIAL, (int)(serial_lo ? serial_lo : serial_hi)); input_report_abs(input, ABS_MISC, sense ? id : 0); } @@ -2623,8 +2630,8 @@ { struct hid_data *hid_data = &wacom_wac->hid_data; bool mt = wacom_wac->features.touch_max > 1; - bool prox = hid_data->tipswitch && - report_touch_events(wacom_wac); + bool touch_down = hid_data->tipswitch && hid_data->confidence; + bool prox = touch_down && report_touch_events(wacom_wac); if (touch_is_muted(wacom_wac)) { if (!wacom_wac->shared->touch_down) @@ -2674,24 +2681,6 @@ } } -static bool wacom_wac_slot_is_active(struct input_dev *dev, int key) -{ - struct input_mt *mt = dev->mt; - struct input_mt_slot *s; - - if (!mt) - return false; - - for (s = mt->slots; s != mt->slots + mt->num_slots; s++) { - if (s->key == key && - input_mt_get_value(s, ABS_MT_TRACKING_ID) >= 0) { - return true; - } - } - - return false; -} - static void wacom_wac_finger_event(struct hid_device *hdev, struct hid_field *field, struct hid_usage *usage, __s32 value) { @@ -2742,14 +2731,8 @@ } if (usage->usage_index + 1 == field->report_count) { - if (equivalent_usage == wacom_wac->hid_data.last_slot_field) { - bool touch_removed = wacom_wac_slot_is_active(wacom_wac->touch_input, - wacom_wac->hid_data.id) && !wacom_wac->hid_data.tipswitch; - - if (wacom_wac->hid_data.confidence || touch_removed) { - wacom_wac_finger_slot(wacom_wac, wacom_wac->touch_input); - } - } + if (equivalent_usage == wacom_wac->hid_data.last_slot_field) + wacom_wac_finger_slot(wacom_wac, wacom_wac->touch_input); } } diff -u linux-xilinx-zynqmp-5.15.0/drivers/hwmon/coretemp.c linux-xilinx-zynqmp-5.15.0/drivers/hwmon/coretemp.c --- linux-xilinx-zynqmp-5.15.0/drivers/hwmon/coretemp.c +++ linux-xilinx-zynqmp-5.15.0/drivers/hwmon/coretemp.c @@ -41,7 +41,7 @@ #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) @@ -380,7 +380,7 @@ } static int create_core_attrs(struct temp_data *tdata, struct device *dev, - int attr_no) + int index) { int i; static ssize_t (*const rd_ptr[TOTAL_ATTRS]) (struct device *dev, @@ -392,13 +392,20 @@ }; for (i = 0; i < tdata->attr_size; i++) { + /* + * We map the attr number to core id of the CPU + * The attr number is always core id + 2 + * The Pkgtemp will always show up as temp1_*, if available + */ + int attr_no = tdata->is_pkg_data ? 1 : tdata->cpu_core_id + 2; + snprintf(tdata->attr_name[i], CORETEMP_NAME_LENGTH, "temp%d_%s", attr_no, suffixes[i]); sysfs_attr_init(&tdata->sd_attrs[i].dev_attr.attr); tdata->sd_attrs[i].dev_attr.attr.name = tdata->attr_name[i]; tdata->sd_attrs[i].dev_attr.attr.mode = 0444; tdata->sd_attrs[i].dev_attr.show = rd_ptr[i]; - tdata->sd_attrs[i].index = attr_no; + tdata->sd_attrs[i].index = index; tdata->attrs[i] = &tdata->sd_attrs[i].dev_attr.attr; } tdata->attr_group.attrs = tdata->attrs; @@ -456,27 +463,22 @@ struct platform_data *pdata = platform_get_drvdata(pdev); struct cpuinfo_x86 *c = &cpu_data(cpu); u32 eax, edx; - int err, index, attr_no; + int err, index; /* - * Find attr number for sysfs: - * We map the attr number to core id of the CPU - * The attr number is always core id + 2 - * The Pkgtemp will always show up as temp1_*, if available + * Get the index of tdata in pdata->core_data[] + * tdata for package: pdata->core_data[1] + * tdata for core: pdata->core_data[2] .. pdata->core_data[NUM_REAL_CORES + 1] */ if (pkg_flag) { - attr_no = PKG_SYSFS_ATTR_NO; + index = PKG_SYSFS_ATTR_NO; } else { - index = ida_alloc(&pdata->ida, GFP_KERNEL); + index = ida_alloc_max(&pdata->ida, NUM_REAL_CORES - 1, GFP_KERNEL); if (index < 0) return index; - pdata->cpu_map[index] = topology_core_id(cpu); - attr_no = index + BASE_SYSFS_ATTR_NO; - } - if (attr_no > MAX_CORE_DATA - 1) { - err = -ERANGE; - goto ida_free; + pdata->cpu_map[index] = topology_core_id(cpu); + index += BASE_SYSFS_ATTR_NO; } tdata = init_temp_data(cpu, pkg_flag); @@ -508,20 +510,20 @@ } } - pdata->core_data[attr_no] = tdata; + pdata->core_data[index] = tdata; /* Create sysfs interfaces */ - err = create_core_attrs(tdata, pdata->hwmon_dev, attr_no); + err = create_core_attrs(tdata, pdata->hwmon_dev, index); if (err) goto exit_free; return 0; exit_free: - pdata->core_data[attr_no] = NULL; + pdata->core_data[index] = NULL; kfree(tdata); ida_free: if (!pkg_flag) - ida_free(&pdata->ida, index); + ida_free(&pdata->ida, index - BASE_SYSFS_ATTR_NO); return err; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/hwmon/corsair-psu.c linux-xilinx-zynqmp-5.15.0/drivers/hwmon/corsair-psu.c --- linux-xilinx-zynqmp-5.15.0/drivers/hwmon/corsair-psu.c +++ linux-xilinx-zynqmp-5.15.0/drivers/hwmon/corsair-psu.c @@ -808,7 +808,23 @@ .reset_resume = corsairpsu_resume, #endif }; -module_hid_driver(corsairpsu_driver); + +static int __init corsair_init(void) +{ + return hid_register_driver(&corsairpsu_driver); +} + +static void __exit corsair_exit(void) +{ + hid_unregister_driver(&corsairpsu_driver); +} + +/* + * With module_init() the driver would load before the HID bus when + * built-in, so use late_initcall() instead. + */ +late_initcall(corsair_init); +module_exit(corsair_exit); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Wilken Gottwalt "); diff -u linux-xilinx-zynqmp-5.15.0/drivers/hwtracing/coresight/coresight-etm4x-core.c linux-xilinx-zynqmp-5.15.0/drivers/hwtracing/coresight/coresight-etm4x-core.c --- linux-xilinx-zynqmp-5.15.0/drivers/hwtracing/coresight/coresight-etm4x-core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/hwtracing/coresight/coresight-etm4x-core.c @@ -2041,7 +2041,7 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/hwtracing/coresight/coresight-etm4x.h linux-xilinx-zynqmp-5.15.0/drivers/hwtracing/coresight/coresight-etm4x.h --- linux-xilinx-zynqmp-5.15.0/drivers/hwtracing/coresight/coresight-etm4x.h +++ linux-xilinx-zynqmp-5.15.0/drivers/hwtracing/coresight/coresight-etm4x.h @@ -944,7 +944,7 @@ u8 ctxid_size; u8 vmid_size; u8 ccsize; - u8 ccitmin; + u16 ccitmin; u8 s_ex_level; u8 ns_ex_level; u8 q_support; diff -u linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-aspeed.c linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-aspeed.c --- linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-aspeed.c +++ linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-aspeed.c @@ -250,18 +250,46 @@ if (!slave) return 0; - command = readl(bus->base + ASPEED_I2C_CMD_REG); + /* + * Handle stop conditions early, prior to SLAVE_MATCH. Some masters may drive + * transfers with low enough latency between the nak/stop phase of the current + * command and the start/address phase of the following command that the + * interrupts are coalesced by the time we process them. + */ + if (irq_status & ASPEED_I2CD_INTR_NORMAL_STOP) { + irq_handled |= ASPEED_I2CD_INTR_NORMAL_STOP; + bus->slave_state = ASPEED_I2C_SLAVE_STOP; + } + + if (irq_status & ASPEED_I2CD_INTR_TX_NAK && + bus->slave_state == ASPEED_I2C_SLAVE_READ_PROCESSED) { + irq_handled |= ASPEED_I2CD_INTR_TX_NAK; + bus->slave_state = ASPEED_I2C_SLAVE_STOP; + } + + /* Propagate any stop conditions to the slave implementation. */ + if (bus->slave_state == ASPEED_I2C_SLAVE_STOP) { + i2c_slave_event(slave, I2C_SLAVE_STOP, &value); + bus->slave_state = ASPEED_I2C_SLAVE_INACTIVE; + } - /* Slave was requested, restart state machine. */ + /* + * Now that we've dealt with any potentially coalesced stop conditions, + * address any start conditions. + */ if (irq_status & ASPEED_I2CD_INTR_SLAVE_MATCH) { irq_handled |= ASPEED_I2CD_INTR_SLAVE_MATCH; bus->slave_state = ASPEED_I2C_SLAVE_START; } - /* Slave is not currently active, irq was for someone else. */ + /* + * If the slave has been stopped and not started then slave interrupt + * handling is complete. + */ if (bus->slave_state == ASPEED_I2C_SLAVE_INACTIVE) return irq_handled; + command = readl(bus->base + ASPEED_I2C_CMD_REG); dev_dbg(bus->dev, "slave irq status 0x%08x, cmd 0x%08x\n", irq_status, command); @@ -280,17 +308,6 @@ irq_handled |= ASPEED_I2CD_INTR_RX_DONE; } - /* Slave was asked to stop. */ - if (irq_status & ASPEED_I2CD_INTR_NORMAL_STOP) { - irq_handled |= ASPEED_I2CD_INTR_NORMAL_STOP; - bus->slave_state = ASPEED_I2C_SLAVE_STOP; - } - if (irq_status & ASPEED_I2CD_INTR_TX_NAK && - bus->slave_state == ASPEED_I2C_SLAVE_READ_PROCESSED) { - irq_handled |= ASPEED_I2CD_INTR_TX_NAK; - bus->slave_state = ASPEED_I2C_SLAVE_STOP; - } - switch (bus->slave_state) { case ASPEED_I2C_SLAVE_READ_REQUESTED: if (unlikely(irq_status & ASPEED_I2CD_INTR_TX_ACK)) @@ -319,8 +336,7 @@ i2c_slave_event(slave, I2C_SLAVE_WRITE_RECEIVED, &value); break; case ASPEED_I2C_SLAVE_STOP: - i2c_slave_event(slave, I2C_SLAVE_STOP, &value); - bus->slave_state = ASPEED_I2C_SLAVE_INACTIVE; + /* Stop event handling is done early. Unreachable. */ break; case ASPEED_I2C_SLAVE_START: /* Slave was just started. Waiting for the next event. */; @@ -744,6 +760,8 @@ 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) @@ -760,7 +778,6 @@ __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 -u linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-bcm-iproc.c linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-bcm-iproc.c --- linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-bcm-iproc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-bcm-iproc.c @@ -326,26 +326,44 @@ 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; - - 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"); + /* 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; + } + + 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 @@ 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 @@ * 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-designware-common.c linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-designware-common.c --- linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-designware-common.c +++ linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-designware-common.c @@ -63,7 +63,7 @@ { struct dw_i2c_dev *dev = context; - *val = readl_relaxed(dev->base + reg); + *val = readl(dev->base + reg); return 0; } @@ -72,7 +72,7 @@ { struct dw_i2c_dev *dev = context; - writel_relaxed(val, dev->base + reg); + writel(val, dev->base + reg); return 0; } @@ -81,7 +81,7 @@ { 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 @@ { 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 @@ { 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 @@ { 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 -u linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-designware-master.c linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-designware-master.c --- linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-designware-master.c +++ linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-designware-master.c @@ -456,10 +456,16 @@ /* * 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-i801.c linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-i801.c --- linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-i801.c +++ linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-i801.c @@ -519,12 +519,13 @@ return -EOPNOTSUPP; } - inb_p(SMBHSTCNT(priv)); /* reset the data buffer index */ + /* Set block buffer mode */ + outb_p(inb_p(SMBAUXCTL(priv)) | SMBAUXCTL_E32B, SMBAUXCTL(priv)); - /* Use 32-byte buffer to process this transaction */ if (read_write == I2C_SMBUS_WRITE) { len = data->block[0]; outb_p(len, SMBHSTDAT0(priv)); + inb_p(SMBHSTCNT(priv)); /* reset the data buffer index */ for (i = 0; i < len; i++) outb_p(data->block[i+1], SMBBLKDAT(priv)); } @@ -540,6 +541,7 @@ return -EPROTO; data->block[0] = len; + inb_p(SMBHSTCNT(priv)); /* reset the data buffer index */ for (i = 0; i < len; i++) data->block[i + 1] = inb_p(SMBBLKDAT(priv)); } @@ -702,15 +704,11 @@ 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 +731,12 @@ 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)); @@ -748,14 +749,6 @@ return i801_check_post(priv, status); } -static int i801_set_block_buffer_mode(struct i801_priv *priv) -{ - outb_p(inb_p(SMBAUXCTL(priv)) | SMBAUXCTL_E32B, SMBAUXCTL(priv)); - if ((inb_p(SMBAUXCTL(priv)) & SMBAUXCTL_E32B) == 0) - return -EIO; - return 0; -} - /* Block transaction function */ static int i801_block_transaction(struct i801_priv *priv, union i2c_smbus_data *data, char read_write, int command) @@ -784,9 +777,8 @@ /* Experience has shown that the block buffer can only be used for SMBus (not I2C) block transactions, even though the datasheet doesn't mention this limitation. */ - if ((priv->features & FEATURE_BLOCK_BUFFER) - && command != I2C_SMBUS_I2C_BLOCK_DATA - && i801_set_block_buffer_mode(priv) == 0) + if ((priv->features & FEATURE_BLOCK_BUFFER) && + command != I2C_SMBUS_I2C_BLOCK_DATA) result = i801_block_transaction_by_block(priv, data, read_write, command); diff -u linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-rk3x.c linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-rk3x.c --- linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-rk3x.c +++ linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-rk3x.c @@ -178,6 +178,7 @@ * @clk: function clk for rk3399 or function & Bus clks for others * @pclk: Bus clk for rk3399 * @clk_rate_nb: i2c clk rate change notify + * @irq: irq number * @t: I2C known timing information * @lock: spinlock for the i2c bus * @wait: the waitqueue to wait for i2c transfer @@ -200,6 +201,7 @@ struct clk *clk; struct clk *pclk; struct notifier_block clk_rate_nb; + int irq; /* Settings */ struct i2c_timings t; @@ -1087,13 +1089,18 @@ spin_unlock_irqrestore(&i2c->lock, flags); - rk3x_i2c_start(i2c); - if (!polling) { + rk3x_i2c_start(i2c); + timeout = wait_event_timeout(i2c->wait, !i2c->busy, msecs_to_jiffies(WAIT_TIMEOUT)); } else { + disable_irq(i2c->irq); + rk3x_i2c_start(i2c); + timeout = rk3x_i2c_wait_xfer_poll(i2c); + + enable_irq(i2c->irq); } spin_lock_irqsave(&i2c->lock, flags); @@ -1301,6 +1308,8 @@ return ret; } + i2c->irq = irq; + platform_set_drvdata(pdev, i2c); if (i2c->soc_data->calc_timings == rk3x_i2c_v0_calc_timings) { diff -u linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-stm32f7.c linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-stm32f7.c --- linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-stm32f7.c +++ linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-stm32f7.c @@ -1063,9 +1063,10 @@ /* 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/i2c/i2c-dev.c linux-xilinx-zynqmp-5.15.0/drivers/i2c/i2c-dev.c --- linux-xilinx-zynqmp-5.15.0/drivers/i2c/i2c-dev.c +++ linux-xilinx-zynqmp-5.15.0/drivers/i2c/i2c-dev.c @@ -450,8 +450,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/i2c/muxes/i2c-demux-pinctrl.c linux-xilinx-zynqmp-5.15.0/drivers/i2c/muxes/i2c-demux-pinctrl.c --- linux-xilinx-zynqmp-5.15.0/drivers/i2c/muxes/i2c-demux-pinctrl.c +++ linux-xilinx-zynqmp-5.15.0/drivers/i2c/muxes/i2c-demux-pinctrl.c @@ -61,7 +61,7 @@ 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; diff -u linux-xilinx-zynqmp-5.15.0/drivers/i2c/muxes/i2c-mux-gpmux.c linux-xilinx-zynqmp-5.15.0/drivers/i2c/muxes/i2c-mux-gpmux.c --- linux-xilinx-zynqmp-5.15.0/drivers/i2c/muxes/i2c-mux-gpmux.c +++ linux-xilinx-zynqmp-5.15.0/drivers/i2c/muxes/i2c-mux-gpmux.c @@ -52,7 +52,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/i3c/master.c linux-xilinx-zynqmp-5.15.0/drivers/i3c/master.c --- linux-xilinx-zynqmp-5.15.0/drivers/i3c/master.c +++ linux-xilinx-zynqmp-5.15.0/drivers/i3c/master.c @@ -1506,9 +1506,11 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/i3c/master/mipi-i3c-hci/dat_v1.c linux-xilinx-zynqmp-5.15.0/drivers/i3c/master/mipi-i3c-hci/dat_v1.c --- linux-xilinx-zynqmp-5.15.0/drivers/i3c/master/mipi-i3c-hci/dat_v1.c +++ linux-xilinx-zynqmp-5.15.0/drivers/i3c/master/mipi-i3c-hci/dat_v1.c @@ -64,15 +64,17 @@ 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; + 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); + /* 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 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 @@ { 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 -u linux-xilinx-zynqmp-5.15.0/drivers/i3c/master/svc-i3c-master.c linux-xilinx-zynqmp-5.15.0/drivers/i3c/master/svc-i3c-master.c --- linux-xilinx-zynqmp-5.15.0/drivers/i3c/master/svc-i3c-master.c +++ linux-xilinx-zynqmp-5.15.0/drivers/i3c/master/svc-i3c-master.c @@ -165,6 +165,7 @@ * @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 @@ /* Prevent races within IBI handlers */ spinlock_t lock; } ibi; + struct mutex lock; }; /** @@ -292,6 +294,7 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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; @@ -926,6 +939,9 @@ 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 | @@ -939,6 +955,23 @@ 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 @@ -1095,9 +1128,11 @@ 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); @@ -1141,9 +1176,11 @@ 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); @@ -1197,9 +1234,11 @@ 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); @@ -1235,9 +1274,11 @@ 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); @@ -1407,6 +1448,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/iio/accel/bmc150-accel-core.c linux-xilinx-zynqmp-5.15.0/drivers/iio/accel/bmc150-accel-core.c --- linux-xilinx-zynqmp-5.15.0/drivers/iio/accel/bmc150-accel-core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/iio/accel/bmc150-accel-core.c @@ -1525,7 +1525,7 @@ 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 @@ { 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 -u linux-xilinx-zynqmp-5.15.0/drivers/iio/adc/ad7192.c linux-xilinx-zynqmp-5.15.0/drivers/iio/adc/ad7192.c --- linux-xilinx-zynqmp-5.15.0/drivers/iio/adc/ad7192.c +++ linux-xilinx-zynqmp-5.15.0/drivers/iio/adc/ad7192.c @@ -177,6 +177,7 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/iio/adc/adi-axi-adc.c linux-xilinx-zynqmp-5.15.0/drivers/iio/adc/adi-axi-adc.c --- linux-xilinx-zynqmp-5.15.0/drivers/iio/adc/adi-axi-adc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/iio/adc/adi-axi-adc.c @@ -142,6 +142,20 @@ return conv->write_raw(conv, chan, val, val2, mask); } +static int adi_axi_adc_read_avail(struct iio_dev *indio_dev, + struct iio_chan_spec const *chan, + const int **vals, int *type, int *length, + long mask) +{ + struct adi_axi_adc_state *st = iio_priv(indio_dev); + struct adi_axi_adc_conv *conv = &st->client->conv; + + if (!conv->read_avail) + return -EOPNOTSUPP; + + return conv->read_avail(conv, chan, vals, type, length, mask); +} + static int adi_axi_adc_update_scan_mode(struct iio_dev *indio_dev, const unsigned long *scan_mask) { @@ -226,69 +240,11 @@ } EXPORT_SYMBOL_GPL(devm_adi_axi_adc_conv_register); -static ssize_t in_voltage_scale_available_show(struct device *dev, - struct device_attribute *attr, - char *buf) -{ - struct iio_dev *indio_dev = dev_to_iio_dev(dev); - struct adi_axi_adc_state *st = iio_priv(indio_dev); - struct adi_axi_adc_conv *conv = &st->client->conv; - size_t len = 0; - int i; - - for (i = 0; i < conv->chip_info->num_scales; i++) { - const unsigned int *s = conv->chip_info->scale_table[i]; - - len += scnprintf(buf + len, PAGE_SIZE - len, - "%u.%06u ", s[0], s[1]); - } - buf[len - 1] = '\n'; - - return len; -} - -static IIO_DEVICE_ATTR_RO(in_voltage_scale_available, 0); - -enum { - ADI_AXI_ATTR_SCALE_AVAIL, -}; - -#define ADI_AXI_ATTR(_en_, _file_) \ - [ADI_AXI_ATTR_##_en_] = &iio_dev_attr_##_file_.dev_attr.attr - -static struct attribute *adi_axi_adc_attributes[] = { - ADI_AXI_ATTR(SCALE_AVAIL, in_voltage_scale_available), - NULL -}; - -static umode_t axi_adc_attr_is_visible(struct kobject *kobj, - struct attribute *attr, int n) -{ - struct device *dev = kobj_to_dev(kobj); - struct iio_dev *indio_dev = dev_to_iio_dev(dev); - struct adi_axi_adc_state *st = iio_priv(indio_dev); - struct adi_axi_adc_conv *conv = &st->client->conv; - - switch (n) { - case ADI_AXI_ATTR_SCALE_AVAIL: - if (!conv->chip_info->num_scales) - return 0; - return attr->mode; - default: - return attr->mode; - } -} - -static const struct attribute_group adi_axi_adc_attribute_group = { - .attrs = adi_axi_adc_attributes, - .is_visible = axi_adc_attr_is_visible, -}; - static const struct iio_info adi_axi_adc_info = { .read_raw = &adi_axi_adc_read_raw, .write_raw = &adi_axi_adc_write_raw, - .attrs = &adi_axi_adc_attribute_group, .update_scan_mode = &adi_axi_adc_update_scan_mode, + .read_avail = &adi_axi_adc_read_avail, }; static const struct adi_axi_adc_core_info adi_axi_adc_10_0_a_info = { diff -u linux-xilinx-zynqmp-5.15.0/drivers/iio/adc/at91-sama5d2_adc.c linux-xilinx-zynqmp-5.15.0/drivers/iio/adc/at91-sama5d2_adc.c --- linux-xilinx-zynqmp-5.15.0/drivers/iio/adc/at91-sama5d2_adc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/iio/adc/at91-sama5d2_adc.c @@ -894,7 +894,7 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/iio/afe/iio-rescale.c linux-xilinx-zynqmp-5.15.0/drivers/iio/afe/iio-rescale.c --- linux-xilinx-zynqmp-5.15.0/drivers/iio/afe/iio-rescale.c +++ linux-xilinx-zynqmp-5.15.0/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); -}; - -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; -}; +int rescale_process_scale(struct rescale *rescale, int scale_type, + int *val, int *val2) +{ + s64 tmp; + + 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 @@ } 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 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core.c linux-xilinx-zynqmp-5.15.0/drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core.c --- linux-xilinx-zynqmp-5.15.0/drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core.c @@ -196,8 +196,11 @@ /* * Ignore samples if the buffer is not set: it is needed if the ODR is * set but the buffer is not enabled yet. + * + * Note: iio_device_claim_buffer_mode() returns -EBUSY if the buffer + * is not enabled. */ - if (!iio_buffer_enabled(indio_dev)) + if (iio_device_claim_buffer_mode(indio_dev) < 0) return 0; out = (s16 *)st->samples; @@ -216,6 +219,7 @@ iio_push_to_buffers_with_timestamp(indio_dev, st->samples, timestamp + delta); + iio_device_release_buffer_mode(indio_dev); return 0; } EXPORT_SYMBOL_GPL(cros_ec_sensors_push_data); diff -u linux-xilinx-zynqmp-5.15.0/drivers/iio/imu/adis16475.c linux-xilinx-zynqmp-5.15.0/drivers/iio/imu/adis16475.c --- linux-xilinx-zynqmp-5.15.0/drivers/iio/imu/adis16475.c +++ linux-xilinx-zynqmp-5.15.0/drivers/iio/imu/adis16475.c @@ -1273,50 +1273,6 @@ return 0; } -static const struct of_device_id adis16475_of_match[] = { - { .compatible = "adi,adis16470", - .data = &adis16475_chip_info[ADIS16470] }, - { .compatible = "adi,adis16475-1", - .data = &adis16475_chip_info[ADIS16475_1] }, - { .compatible = "adi,adis16475-2", - .data = &adis16475_chip_info[ADIS16475_2] }, - { .compatible = "adi,adis16475-3", - .data = &adis16475_chip_info[ADIS16475_3] }, - { .compatible = "adi,adis16477-1", - .data = &adis16475_chip_info[ADIS16477_1] }, - { .compatible = "adi,adis16477-2", - .data = &adis16475_chip_info[ADIS16477_2] }, - { .compatible = "adi,adis16477-3", - .data = &adis16475_chip_info[ADIS16477_3] }, - { .compatible = "adi,adis16465-1", - .data = &adis16475_chip_info[ADIS16465_1] }, - { .compatible = "adi,adis16465-2", - .data = &adis16475_chip_info[ADIS16465_2] }, - { .compatible = "adi,adis16465-3", - .data = &adis16475_chip_info[ADIS16465_3] }, - { .compatible = "adi,adis16467-1", - .data = &adis16475_chip_info[ADIS16467_1] }, - { .compatible = "adi,adis16467-2", - .data = &adis16475_chip_info[ADIS16467_2] }, - { .compatible = "adi,adis16467-3", - .data = &adis16475_chip_info[ADIS16467_3] }, - { .compatible = "adi,adis16500", - .data = &adis16475_chip_info[ADIS16500] }, - { .compatible = "adi,adis16505-1", - .data = &adis16475_chip_info[ADIS16505_1] }, - { .compatible = "adi,adis16505-2", - .data = &adis16475_chip_info[ADIS16505_2] }, - { .compatible = "adi,adis16505-3", - .data = &adis16475_chip_info[ADIS16505_3] }, - { .compatible = "adi,adis16507-1", - .data = &adis16475_chip_info[ADIS16507_1] }, - { .compatible = "adi,adis16507-2", - .data = &adis16475_chip_info[ADIS16507_2] }, - { .compatible = "adi,adis16507-3", - .data = &adis16475_chip_info[ADIS16507_3] }, - { }, -}; -MODULE_DEVICE_TABLE(of, adis16475_of_match); static int adis16475_probe(struct spi_device *spi) { @@ -1330,7 +1286,7 @@ st = iio_priv(indio_dev); - st->info = device_get_match_data(&spi->dev); + st->info = spi_get_device_match_data(spi); if (!st->info) return -EINVAL; @@ -1370,12 +1326,83 @@ return 0; } +static const struct of_device_id adis16475_of_match[] = { + { .compatible = "adi,adis16470", + .data = &adis16475_chip_info[ADIS16470] }, + { .compatible = "adi,adis16475-1", + .data = &adis16475_chip_info[ADIS16475_1] }, + { .compatible = "adi,adis16475-2", + .data = &adis16475_chip_info[ADIS16475_2] }, + { .compatible = "adi,adis16475-3", + .data = &adis16475_chip_info[ADIS16475_3] }, + { .compatible = "adi,adis16477-1", + .data = &adis16475_chip_info[ADIS16477_1] }, + { .compatible = "adi,adis16477-2", + .data = &adis16475_chip_info[ADIS16477_2] }, + { .compatible = "adi,adis16477-3", + .data = &adis16475_chip_info[ADIS16477_3] }, + { .compatible = "adi,adis16465-1", + .data = &adis16475_chip_info[ADIS16465_1] }, + { .compatible = "adi,adis16465-2", + .data = &adis16475_chip_info[ADIS16465_2] }, + { .compatible = "adi,adis16465-3", + .data = &adis16475_chip_info[ADIS16465_3] }, + { .compatible = "adi,adis16467-1", + .data = &adis16475_chip_info[ADIS16467_1] }, + { .compatible = "adi,adis16467-2", + .data = &adis16475_chip_info[ADIS16467_2] }, + { .compatible = "adi,adis16467-3", + .data = &adis16475_chip_info[ADIS16467_3] }, + { .compatible = "adi,adis16500", + .data = &adis16475_chip_info[ADIS16500] }, + { .compatible = "adi,adis16505-1", + .data = &adis16475_chip_info[ADIS16505_1] }, + { .compatible = "adi,adis16505-2", + .data = &adis16475_chip_info[ADIS16505_2] }, + { .compatible = "adi,adis16505-3", + .data = &adis16475_chip_info[ADIS16505_3] }, + { .compatible = "adi,adis16507-1", + .data = &adis16475_chip_info[ADIS16507_1] }, + { .compatible = "adi,adis16507-2", + .data = &adis16475_chip_info[ADIS16507_2] }, + { .compatible = "adi,adis16507-3", + .data = &adis16475_chip_info[ADIS16507_3] }, + { }, +}; +MODULE_DEVICE_TABLE(of, adis16475_of_match); + +static const struct spi_device_id adis16475_ids[] = { + { "adis16470", (kernel_ulong_t)&adis16475_chip_info[ADIS16470] }, + { "adis16475-1", (kernel_ulong_t)&adis16475_chip_info[ADIS16475_1] }, + { "adis16475-2", (kernel_ulong_t)&adis16475_chip_info[ADIS16475_2] }, + { "adis16475-3", (kernel_ulong_t)&adis16475_chip_info[ADIS16475_3] }, + { "adis16477-1", (kernel_ulong_t)&adis16475_chip_info[ADIS16477_1] }, + { "adis16477-2", (kernel_ulong_t)&adis16475_chip_info[ADIS16477_2] }, + { "adis16477-3", (kernel_ulong_t)&adis16475_chip_info[ADIS16477_3] }, + { "adis16465-1", (kernel_ulong_t)&adis16475_chip_info[ADIS16465_1] }, + { "adis16465-2", (kernel_ulong_t)&adis16475_chip_info[ADIS16465_2] }, + { "adis16465-3", (kernel_ulong_t)&adis16475_chip_info[ADIS16465_3] }, + { "adis16467-1", (kernel_ulong_t)&adis16475_chip_info[ADIS16467_1] }, + { "adis16467-2", (kernel_ulong_t)&adis16475_chip_info[ADIS16467_2] }, + { "adis16467-3", (kernel_ulong_t)&adis16475_chip_info[ADIS16467_3] }, + { "adis16500", (kernel_ulong_t)&adis16475_chip_info[ADIS16500] }, + { "adis16505-1", (kernel_ulong_t)&adis16475_chip_info[ADIS16505_1] }, + { "adis16505-2", (kernel_ulong_t)&adis16475_chip_info[ADIS16505_2] }, + { "adis16505-3", (kernel_ulong_t)&adis16475_chip_info[ADIS16505_3] }, + { "adis16507-1", (kernel_ulong_t)&adis16475_chip_info[ADIS16507_1] }, + { "adis16507-2", (kernel_ulong_t)&adis16475_chip_info[ADIS16507_2] }, + { "adis16507-3", (kernel_ulong_t)&adis16475_chip_info[ADIS16507_3] }, + { } +}; +MODULE_DEVICE_TABLE(spi, adis16475_ids); + static struct spi_driver adis16475_driver = { .driver = { .name = "adis16475", .of_match_table = adis16475_of_match, }, .probe = adis16475_probe, + .id_table = adis16475_ids, }; module_spi_driver(adis16475_driver); diff -u linux-xilinx-zynqmp-5.15.0/drivers/iio/industrialio-core.c linux-xilinx-zynqmp-5.15.0/drivers/iio/industrialio-core.c --- linux-xilinx-zynqmp-5.15.0/drivers/iio/industrialio-core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/iio/industrialio-core.c @@ -185,6 +185,18 @@ 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 * @n: number of strings in the array @@ -1598,10 +1610,13 @@ ret = iio_device_register_sysfs_group(indio_dev, &iio_dev_opaque->chan_attr_group); if (ret) - goto error_clear_attrs; + goto error_free_chan_attrs; return 0; +error_free_chan_attrs: + kfree(iio_dev_opaque->chan_attr_group.attrs); + iio_dev_opaque->chan_attr_group.attrs = NULL; error_clear_attrs: iio_free_chan_devattr_list(&iio_dev_opaque->channel_attr_list); @@ -2072,6 +2087,55 @@ } 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 -u linux-xilinx-zynqmp-5.15.0/drivers/infiniband/core/device.c linux-xilinx-zynqmp-5.15.0/drivers/infiniband/core/device.c --- linux-xilinx-zynqmp-5.15.0/drivers/infiniband/core/device.c +++ linux-xilinx-zynqmp-5.15.0/drivers/infiniband/core/device.c @@ -803,7 +803,7 @@ * 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 -u linux-xilinx-zynqmp-5.15.0/drivers/infiniband/core/sysfs.c linux-xilinx-zynqmp-5.15.0/drivers/infiniband/core/sysfs.c --- linux-xilinx-zynqmp-5.15.0/drivers/infiniband/core/sysfs.c +++ linux-xilinx-zynqmp-5.15.0/drivers/infiniband/core/sysfs.c @@ -902,7 +902,7 @@ * 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 @@ * 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/infiniband/core/umem.c linux-xilinx-zynqmp-5.15.0/drivers/infiniband/core/umem.c --- linux-xilinx-zynqmp-5.15.0/drivers/infiniband/core/umem.c +++ linux-xilinx-zynqmp-5.15.0/drivers/infiniband/core/umem.c @@ -98,12 +98,6 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/infiniband/core/user_mad.c linux-xilinx-zynqmp-5.15.0/drivers/infiniband/core/user_mad.c --- linux-xilinx-zynqmp-5.15.0/drivers/infiniband/core/user_mad.c +++ linux-xilinx-zynqmp-5.15.0/drivers/infiniband/core/user_mad.c @@ -1378,7 +1378,9 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/bnxt_re/main.c linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/bnxt_re/main.c --- linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/bnxt_re/main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/bnxt_re/main.c @@ -70,7 +70,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/hns/hns_roce_hw_v2.c linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/hns/hns_roce_hw_v2.c --- linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/hns/hns_roce_hw_v2.c +++ linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/hns/hns_roce_hw_v2.c @@ -244,7 +244,7 @@ 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); @@ -4556,6 +4556,9 @@ { 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: @@ -4583,10 +4586,15 @@ 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; @@ -5434,7 +5442,7 @@ /* Resizing SRQs is not supported yet */ if (srq_attr_mask & IB_SRQ_MAX_WR) - return -EINVAL; + return -EOPNOTSUPP; if (srq_attr_mask & IB_SRQ_LIMIT) { if (srq_attr->srq_limit > srq->wqe_cnt) diff -u linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/hns/hns_roce_qp.c linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/hns/hns_roce_qp.c --- linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/hns/hns_roce_qp.c +++ linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/hns/hns_roce_qp.c @@ -1049,7 +1049,7 @@ { 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); diff -u linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/irdma/hw.c linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/irdma/hw.c --- linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/irdma/hw.c +++ linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/irdma/hw.c @@ -322,7 +322,11 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/irdma/main.c linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/irdma/main.c --- linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/irdma/main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/irdma/main.c @@ -48,7 +48,7 @@ /* 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 -u linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/irdma/main.h linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/irdma/main.h --- linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/irdma/main.h +++ linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/irdma/main.h @@ -78,7 +78,7 @@ #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 diff -u linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/irdma/verbs.c linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/irdma/verbs.c --- linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/irdma/verbs.c +++ linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/irdma/verbs.c @@ -1080,6 +1080,21 @@ 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 @@ 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 @@ 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; diff -u linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/irdma/verbs.h linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/irdma/verbs.h --- linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/irdma/verbs.h +++ linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/irdma/verbs.h @@ -188,6 +188,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/mlx5/qp.c linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/mlx5/qp.c --- linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/mlx5/qp.c +++ linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/mlx5/qp.c @@ -3956,6 +3956,30 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/infiniband/ulp/rtrs/rtrs-clt.c linux-xilinx-zynqmp-5.15.0/drivers/infiniband/ulp/rtrs/rtrs-clt.c --- linux-xilinx-zynqmp-5.15.0/drivers/infiniband/ulp/rtrs/rtrs-clt.c +++ linux-xilinx-zynqmp-5.15.0/drivers/infiniband/ulp/rtrs/rtrs-clt.c @@ -383,7 +383,7 @@ 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 @@ 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 @@ if (err) goto destroy; - rtrs_start_hb(&clt_path->s); - return 0; destroy: @@ -2616,6 +2614,7 @@ goto out; } rtrs_clt_path_up(clt_path); + rtrs_start_hb(&clt_path->s); out: mutex_unlock(&clt_path->init_mutex); diff -u linux-xilinx-zynqmp-5.15.0/drivers/infiniband/ulp/rtrs/rtrs-srv.c linux-xilinx-zynqmp-5.15.0/drivers/infiniband/ulp/rtrs/rtrs-srv.c --- linux-xilinx-zynqmp-5.15.0/drivers/infiniband/ulp/rtrs/rtrs-srv.c +++ linux-xilinx-zynqmp-5.15.0/drivers/infiniband/ulp/rtrs/rtrs-srv.c @@ -72,8 +72,9 @@ { 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 @@ } 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 @@ 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 @@ 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 @@ 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 @@ * 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 @@ 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 @@ /* 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 -u linux-xilinx-zynqmp-5.15.0/drivers/input/joystick/xpad.c linux-xilinx-zynqmp-5.15.0/drivers/input/joystick/xpad.c --- linux-xilinx-zynqmp-5.15.0/drivers/input/joystick/xpad.c +++ linux-xilinx-zynqmp-5.15.0/drivers/input/joystick/xpad.c @@ -120,6 +120,7 @@ { 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 }, @@ -267,6 +268,7 @@ { 0x146b, 0x0604, "Bigben Interactive DAIJA Arcade Stick", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOX360 }, { 0x1532, 0x0a00, "Razer Atrox Arcade Stick", MAP_TRIGGERS_TO_BUTTONS, XTYPE_XBOXONE }, { 0x1532, 0x0a03, "Razer Wildcat", 0, XTYPE_XBOXONE }, + { 0x1532, 0x0a29, "Razer Wolverine V2", 0, XTYPE_XBOXONE }, { 0x15e4, 0x3f00, "Power A Mini Pro Elite", 0, XTYPE_XBOX360 }, { 0x15e4, 0x3f0a, "Xbox Airflo wired controller", 0, XTYPE_XBOX360 }, { 0x15e4, 0x3f10, "Batarang Xbox 360 controller", 0, XTYPE_XBOX360 }, @@ -434,6 +436,7 @@ 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 */ @@ -449,6 +452,7 @@ 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 */ diff -u linux-xilinx-zynqmp-5.15.0/drivers/input/misc/soc_button_array.c linux-xilinx-zynqmp-5.15.0/drivers/input/misc/soc_button_array.c --- linux-xilinx-zynqmp-5.15.0/drivers/input/misc/soc_button_array.c +++ linux-xilinx-zynqmp-5.15.0/drivers/input/misc/soc_button_array.c @@ -299,6 +299,11 @@ info->name = "power"; info->event_code = KEY_POWER; info->wakeup = true; + } else if (upage == 0x01 && usage == 0xc6) { + info->name = "airplane mode switch"; + info->event_type = EV_SW; + info->event_code = SW_RFKILL_ALL; + info->active_low = false; } else if (upage == 0x01 && usage == 0xca) { info->name = "rotation lock switch"; info->event_type = EV_SW; diff -u linux-xilinx-zynqmp-5.15.0/drivers/input/mouse/synaptics.c linux-xilinx-zynqmp-5.15.0/drivers/input/mouse/synaptics.c --- linux-xilinx-zynqmp-5.15.0/drivers/input/mouse/synaptics.c +++ linux-xilinx-zynqmp-5.15.0/drivers/input/mouse/synaptics.c @@ -1752,6 +1752,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/input/serio/i8042-acpipnpio.h linux-xilinx-zynqmp-5.15.0/drivers/input/serio/i8042-acpipnpio.h --- linux-xilinx-zynqmp-5.15.0/drivers/input/serio/i8042-acpipnpio.h +++ linux-xilinx-zynqmp-5.15.0/drivers/input/serio/i8042-acpipnpio.h @@ -352,6 +352,14 @@ .driver_data = (void *)(SERIO_QUIRK_DRITEK) }, { + /* Acer TravelMate P459-G2-M */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Acer"), + DMI_MATCH(DMI_PRODUCT_NAME, "TravelMate P459-G2-M"), + }, + .driver_data = (void *)(SERIO_QUIRK_NOMUX) + }, + { /* Amoi M636/A737 */ .matches = { DMI_MATCH(DMI_SYS_VENDOR, "Amoi Electronics CO.,LTD."), @@ -1165,6 +1173,12 @@ }, { .matches = { + DMI_MATCH(DMI_BOARD_NAME, "NS5x_7xPU"), + }, + .driver_data = (void *)(SERIO_QUIRK_NOAUX) + }, + { + .matches = { DMI_MATCH(DMI_BOARD_NAME, "NJ50_70CU"), }, .driver_data = (void *)(SERIO_QUIRK_NOMUX | SERIO_QUIRK_RESET_ALWAYS | diff -u linux-xilinx-zynqmp-5.15.0/drivers/interconnect/core.c linux-xilinx-zynqmp-5.15.0/drivers/interconnect/core.c --- linux-xilinx-zynqmp-5.15.0/drivers/interconnect/core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/interconnect/core.c @@ -382,6 +382,9 @@ } mutex_unlock(&icc_lock); + if (!node) + return ERR_PTR(-EINVAL); + if (IS_ERR(node)) return ERR_CAST(node); diff -u linux-xilinx-zynqmp-5.15.0/drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c linux-xilinx-zynqmp-5.15.0/drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c --- linux-xilinx-zynqmp-5.15.0/drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c +++ linux-xilinx-zynqmp-5.15.0/drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c @@ -226,6 +226,7 @@ static const struct of_device_id qcom_smmu_client_of_match[] __maybe_unused = { { .compatible = "qcom,adreno" }, + { .compatible = "qcom,adreno-gmu" }, { .compatible = "qcom,mdp4" }, { .compatible = "qcom,mdss" }, { .compatible = "qcom,sc7180-mdss" }, diff -u linux-xilinx-zynqmp-5.15.0/drivers/iommu/dma-iommu.c linux-xilinx-zynqmp-5.15.0/drivers/iommu/dma-iommu.c --- linux-xilinx-zynqmp-5.15.0/drivers/iommu/dma-iommu.c +++ linux-xilinx-zynqmp-5.15.0/drivers/iommu/dma-iommu.c @@ -25,6 +25,7 @@ #include #include #include +#include struct iommu_dma_msi_page { struct list_head list; @@ -817,6 +818,8 @@ void *padding_start; size_t padding_size, aligned_size; + trace_swiotlb_bounced(dev, phys, size, swiotlb_force); + aligned_size = iova_align(iovad, size); phys = swiotlb_tbl_map_single(dev, phys, size, aligned_size, iova_mask(iovad), dir, attrs); diff -u linux-xilinx-zynqmp-5.15.0/drivers/iommu/intel/dmar.c linux-xilinx-zynqmp-5.15.0/drivers/iommu/intel/dmar.c --- linux-xilinx-zynqmp-5.15.0/drivers/iommu/intel/dmar.c +++ linux-xilinx-zynqmp-5.15.0/drivers/iommu/intel/dmar.c @@ -1518,6 +1518,15 @@ { 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/iommu/intel/iommu.c linux-xilinx-zynqmp-5.15.0/drivers/iommu/intel/iommu.c --- linux-xilinx-zynqmp-5.15.0/drivers/iommu/intel/iommu.c +++ linux-xilinx-zynqmp-5.15.0/drivers/iommu/intel/iommu.c @@ -4455,8 +4455,8 @@ */ 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); @@ -5754,7 +5754,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/irqchip/irq-brcmstb-l2.c linux-xilinx-zynqmp-5.15.0/drivers/irqchip/irq-brcmstb-l2.c --- linux-xilinx-zynqmp-5.15.0/drivers/irqchip/irq-brcmstb-l2.c +++ linux-xilinx-zynqmp-5.15.0/drivers/irqchip/irq-brcmstb-l2.c @@ -2,7 +2,7 @@ /* * Generic Broadcom Set Top Box Level 2 Interrupt controller driver * - * Copyright (C) 2014-2017 Broadcom + * Copyright (C) 2014-2024 Broadcom */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt @@ -113,6 +113,9 @@ generic_handle_domain_irq(b->domain, irq); } while (status); out: + /* Don't ack parent before all device writes are done */ + wmb(); + chained_irq_exit(chip, desc); } diff -u linux-xilinx-zynqmp-5.15.0/drivers/irqchip/irq-gic-v3-its.c linux-xilinx-zynqmp-5.15.0/drivers/irqchip/irq-gic-v3-its.c --- linux-xilinx-zynqmp-5.15.0/drivers/irqchip/irq-gic-v3-its.c +++ linux-xilinx-zynqmp-5.15.0/drivers/irqchip/irq-gic-v3-its.c @@ -3800,8 +3800,9 @@ bool force) { struct its_vpe *vpe = irq_data_get_irq_chip_data(d); - int from, cpu = cpumask_first(mask_val); + struct cpumask common, *table_mask; unsigned long flags; + int from, cpu; /* * Changing affinity is mega expensive, so let's be as lazy as @@ -3817,19 +3818,22 @@ * taken on any vLPI handling path that evaluates vpe->col_idx. */ from = vpe_to_cpuid_lock(vpe, &flags); - if (from == cpu) - goto out; - - vpe->col_idx = cpu; + table_mask = gic_data_rdist_cpu(from)->vpe_table_mask; /* - * GICv4.1 allows us to skip VMOVP if moving to a cpu whose RD - * is sharing its VPE table with the current one. + * If we are offered another CPU in the same GICv4.1 ITS + * affinity, pick this one. Otherwise, any CPU will do. */ - if (gic_data_rdist_cpu(cpu)->vpe_table_mask && - cpumask_test_cpu(from, gic_data_rdist_cpu(cpu)->vpe_table_mask)) + if (table_mask && cpumask_and(&common, mask_val, table_mask)) + cpu = cpumask_test_cpu(from, &common) ? from : cpumask_first(&common); + else + cpu = cpumask_first(mask_val); + + if (from == cpu) goto out; + vpe->col_idx = cpu; + its_send_vmovp(vpe); its_vpe_db_proxy_move(vpe, from, cpu); diff -u linux-xilinx-zynqmp-5.15.0/drivers/leds/Kconfig linux-xilinx-zynqmp-5.15.0/drivers/leds/Kconfig --- linux-xilinx-zynqmp-5.15.0/drivers/leds/Kconfig +++ linux-xilinx-zynqmp-5.15.0/drivers/leds/Kconfig @@ -109,6 +109,7 @@ config LEDS_AW2013 tristate "LED support for Awinic AW2013" depends on LEDS_CLASS && I2C && OF + select REGMAP_I2C help This option enables support for the AW2013 3-channel LED driver. diff -u linux-xilinx-zynqmp-5.15.0/drivers/leds/leds-pwm.c linux-xilinx-zynqmp-5.15.0/drivers/leds/leds-pwm.c --- linux-xilinx-zynqmp-5.15.0/drivers/leds/leds-pwm.c +++ linux-xilinx-zynqmp-5.15.0/drivers/leds/leds-pwm.c @@ -53,7 +53,7 @@ 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); } diff -u linux-xilinx-zynqmp-5.15.0/drivers/leds/trigger/ledtrig-tty.c linux-xilinx-zynqmp-5.15.0/drivers/leds/trigger/ledtrig-tty.c --- linux-xilinx-zynqmp-5.15.0/drivers/leds/trigger/ledtrig-tty.c +++ linux-xilinx-zynqmp-5.15.0/drivers/leds/trigger/ledtrig-tty.c @@ -168,6 +168,10 @@ cancel_delayed_work_sync(&trigger_data->dwork); + kfree(trigger_data->ttyname); + tty_kref_put(trigger_data->tty); + trigger_data->tty = NULL; + kfree(trigger_data); } diff -u linux-xilinx-zynqmp-5.15.0/drivers/mailbox/arm_mhuv2.c linux-xilinx-zynqmp-5.15.0/drivers/mailbox/arm_mhuv2.c --- linux-xilinx-zynqmp-5.15.0/drivers/mailbox/arm_mhuv2.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mailbox/arm_mhuv2.c @@ -552,7 +552,8 @@ priv = chan->con_priv; if (!IS_PROTOCOL_DOORBELL(priv)) { - writel_relaxed(1, &mhu->send->ch_wn[priv->ch_wn_idx + priv->windows - 1].int_clr); + for (i = 0; i < priv->windows; i++) + writel_relaxed(1, &mhu->send->ch_wn[priv->ch_wn_idx + i].int_clr); if (chan->cl) { mbox_chan_txdone(chan, 0); diff -u linux-xilinx-zynqmp-5.15.0/drivers/mcb/mcb-core.c linux-xilinx-zynqmp-5.15.0/drivers/mcb/mcb-core.c --- linux-xilinx-zynqmp-5.15.0/drivers/mcb/mcb-core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mcb/mcb-core.c @@ -246,6 +246,7 @@ return 0; out: + put_device(&dev->dev); return ret; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/mcb/mcb-parse.c linux-xilinx-zynqmp-5.15.0/drivers/mcb/mcb-parse.c --- linux-xilinx-zynqmp-5.15.0/drivers/mcb/mcb-parse.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mcb/mcb-parse.c @@ -106,7 +106,7 @@ return 0; err: - put_device(&mdev->dev); + mcb_free_dev(mdev); return ret; } @@ -128,7 +128,7 @@ } } -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; @@ -177,12 +177,13 @@ { 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); @@ -237,12 +238,16 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/md/bcache/btree.c linux-xilinx-zynqmp-5.15.0/drivers/md/bcache/btree.c --- linux-xilinx-zynqmp-5.15.0/drivers/md/bcache/btree.c +++ linux-xilinx-zynqmp-5.15.0/drivers/md/bcache/btree.c @@ -974,6 +974,9 @@ * * The btree node will have either a read or a write lock held, depending on * level and op->lock. + * + * Note: Only error code or btree pointer will be returned, it is unncessary + * for callers to check NULL pointer. */ struct btree *bch_btree_node_get(struct cache_set *c, struct btree_op *op, struct bkey *k, int level, bool write, @@ -1085,6 +1088,10 @@ mutex_unlock(&b->c->bucket_lock); } +/* + * Only error code or btree pointer will be returned, it is unncessary for + * callers to check NULL pointer. + */ struct btree *__bch_btree_node_alloc(struct cache_set *c, struct btree_op *op, int level, bool wait, struct btree *parent) @@ -1342,7 +1349,7 @@ 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 +1496,7 @@ 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 +1513,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/md/bcache/super.c linux-xilinx-zynqmp-5.15.0/drivers/md/bcache/super.c --- linux-xilinx-zynqmp-5.15.0/drivers/md/bcache/super.c +++ linux-xilinx-zynqmp-5.15.0/drivers/md/bcache/super.c @@ -909,6 +909,8 @@ if (!d->stripe_size) d->stripe_size = 1 << 31; + else if (d->stripe_size < BCH_MIN_STRIPE_SZ) + d->stripe_size = roundup(BCH_MIN_STRIPE_SZ, d->stripe_size); n = DIV_ROUND_UP_ULL(sectors, d->stripe_size); if (!n || n > max_stripes) { @@ -2022,7 +2024,7 @@ c->root = bch_btree_node_get(c, NULL, k, j->btree_level, true, NULL); - if (IS_ERR_OR_NULL(c->root)) + if (IS_ERR(c->root)) goto err; list_del_init(&c->root->list); diff -u linux-xilinx-zynqmp-5.15.0/drivers/md/bcache/writeback.c linux-xilinx-zynqmp-5.15.0/drivers/md/bcache/writeback.c --- linux-xilinx-zynqmp-5.15.0/drivers/md/bcache/writeback.c +++ linux-xilinx-zynqmp-5.15.0/drivers/md/bcache/writeback.c @@ -903,7 +903,7 @@ int cur_idx, prev_idx, skip_nr; k = p = NULL; - cur_idx = prev_idx = 0; + prev_idx = 0; bch_btree_iter_init(&c->root->keys, &iter, NULL); k = bch_btree_iter_next_filter(&iter, &c->root->keys, bch_ptr_bad); @@ -967,24 +967,35 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/md/dm-core.h linux-xilinx-zynqmp-5.15.0/drivers/md/dm-core.h --- linux-xilinx-zynqmp-5.15.0/drivers/md/dm-core.h +++ linux-xilinx-zynqmp-5.15.0/drivers/md/dm-core.h @@ -21,6 +21,8 @@ #include "dm-ima.h" #define DM_RESERVED_MAX_IOS 1024 +#define DM_MAX_TARGETS 1048576 +#define DM_MAX_TARGET_PARAMS 1024 struct dm_kobject_holder { struct kobject kobj; diff -u linux-xilinx-zynqmp-5.15.0/drivers/md/dm-integrity.c linux-xilinx-zynqmp-5.15.0/drivers/md/dm-integrity.c --- linux-xilinx-zynqmp-5.15.0/drivers/md/dm-integrity.c +++ linux-xilinx-zynqmp-5.15.0/drivers/md/dm-integrity.c @@ -1762,11 +1762,12 @@ sectors_to_process = dio->range.n_sectors; __bio_for_each_segment(bv, bio, iter, dio->bio_details.bi_iter) { + struct bio_vec bv_copy = bv; unsigned pos; char *mem, *checksums_ptr; again: - mem = (char *)kmap_atomic(bv.bv_page) + bv.bv_offset; + mem = (char *)kmap_atomic(bv_copy.bv_page) + bv_copy.bv_offset; pos = 0; checksums_ptr = checksums; do { @@ -1775,7 +1776,7 @@ sectors_to_process -= ic->sectors_per_block; pos += ic->sectors_per_block << SECTOR_SHIFT; sector += ic->sectors_per_block; - } while (pos < bv.bv_len && sectors_to_process && checksums != checksums_onstack); + } while (pos < bv_copy.bv_len && sectors_to_process && checksums != checksums_onstack); kunmap_atomic(mem); r = dm_integrity_rw_tag(ic, checksums, &dio->metadata_block, &dio->metadata_offset, @@ -1796,9 +1797,9 @@ if (!sectors_to_process) break; - if (unlikely(pos < bv.bv_len)) { - bv.bv_offset += pos; - bv.bv_len -= pos; + if (unlikely(pos < bv_copy.bv_len)) { + bv_copy.bv_offset += pos; + bv_copy.bv_len -= pos; goto again; } } diff -u linux-xilinx-zynqmp-5.15.0/drivers/md/dm-ioctl.c linux-xilinx-zynqmp-5.15.0/drivers/md/dm-ioctl.c --- linux-xilinx-zynqmp-5.15.0/drivers/md/dm-ioctl.c +++ linux-xilinx-zynqmp-5.15.0/drivers/md/dm-ioctl.c @@ -891,15 +891,21 @@ struct hash_cell *hc = NULL; if (*param->uuid) { - if (*param->name || param->dev) + if (*param->name || param->dev) { + DMERR("Invalid ioctl structure: uuid %s, name %s, dev %llx", + param->uuid, param->name, (unsigned long long)param->dev); return NULL; + } hc = __get_uuid_cell(param->uuid); if (!hc) return NULL; } else if (*param->name) { - if (param->dev) + if (param->dev) { + DMERR("Invalid ioctl structure: name %s, dev %llx", + param->name, (unsigned long long)param->dev); return NULL; + } hc = __get_name_cell(param->name); if (!hc) @@ -1859,8 +1865,12 @@ if (copy_from_user(param_kernel, user, minimum_data_size)) return -EFAULT; - if (param_kernel->data_size < minimum_data_size) + if (unlikely(param_kernel->data_size < minimum_data_size) || + unlikely(param_kernel->data_size > DM_MAX_TARGETS * DM_MAX_TARGET_PARAMS)) { + DMERR("Invalid data size in the ioctl structure: %u", + param_kernel->data_size); return -EINVAL; + } secure_data = param_kernel->flags & DM_SECURE_DATA_FLAG; diff -u linux-xilinx-zynqmp-5.15.0/drivers/md/dm-table.c linux-xilinx-zynqmp-5.15.0/drivers/md/dm-table.c --- linux-xilinx-zynqmp-5.15.0/drivers/md/dm-table.c +++ linux-xilinx-zynqmp-5.15.0/drivers/md/dm-table.c @@ -126,7 +126,12 @@ int dm_table_create(struct dm_table **result, fmode_t mode, unsigned num_targets, struct mapped_device *md) { - struct dm_table *t = kzalloc(sizeof(*t), GFP_KERNEL); + struct dm_table *t; + + if (num_targets > DM_MAX_TARGETS) + return -EOVERFLOW; + + t = kzalloc(sizeof(*t), GFP_KERNEL); if (!t) return -ENOMEM; @@ -140,7 +145,7 @@ if (!num_targets) { kfree(t); - return -ENOMEM; + return -EOVERFLOW; } if (alloc_targets(t, num_targets)) { diff -u linux-xilinx-zynqmp-5.15.0/drivers/md/dm-verity-target.c linux-xilinx-zynqmp-5.15.0/drivers/md/dm-verity-target.c --- linux-xilinx-zynqmp-5.15.0/drivers/md/dm-verity-target.c +++ linux-xilinx-zynqmp-5.15.0/drivers/md/dm-verity-target.c @@ -583,7 +583,9 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/md/md.c linux-xilinx-zynqmp-5.15.0/drivers/md/md.c --- linux-xilinx-zynqmp-5.15.0/drivers/md/md.c +++ linux-xilinx-zynqmp-5.15.0/drivers/md/md.c @@ -92,6 +92,18 @@ 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 @@ 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); @@ -1150,6 +1162,7 @@ struct md_rdev *refdev, int minor_version); int (*validate_super)(struct mddev *mddev, + struct md_rdev *freshest, struct md_rdev *rdev); void (*sync_super)(struct mddev *mddev, struct md_rdev *rdev); @@ -1288,8 +1301,9 @@ /* * validate_super for 0.90.0 + * note: we are not using "freshest" for 0.9 superblock */ -static int super_90_validate(struct mddev *mddev, struct md_rdev *rdev) +static int super_90_validate(struct mddev *mddev, struct md_rdev *freshest, struct md_rdev *rdev) { mdp_disk_t *desc; mdp_super_t *sb = page_address(rdev->sb_page); @@ -1804,7 +1818,7 @@ return ret; } -static int super_1_validate(struct mddev *mddev, struct md_rdev *rdev) +static int super_1_validate(struct mddev *mddev, struct md_rdev *freshest, struct md_rdev *rdev) { struct mdp_superblock_1 *sb = page_address(rdev->sb_page); __u64 ev1 = le64_to_cpu(sb->events); @@ -1900,13 +1914,15 @@ } } else if (mddev->pers == NULL) { /* Insist of good event counter while assembling, except for - * spares (which don't need an event count) */ - ++ev1; + * spares (which don't need an event count). + * Similar to mdadm, we allow event counter difference of 1 + * from the freshest device. + */ if (rdev->desc_nr >= 0 && rdev->desc_nr < le32_to_cpu(sb->max_dev) && (le16_to_cpu(sb->dev_roles[rdev->desc_nr]) < MD_DISK_ROLE_MAX || le16_to_cpu(sb->dev_roles[rdev->desc_nr]) == MD_DISK_ROLE_JOURNAL)) - if (ev1 < mddev->events) + if (ev1 + 1 < mddev->events) return -EINVAL; } else if (mddev->bitmap) { /* If adding to array with a bitmap, then we can accept an @@ -1927,8 +1943,38 @@ rdev->desc_nr >= le32_to_cpu(sb->max_dev)) { role = MD_DISK_ROLE_SPARE; rdev->desc_nr = -1; - } else + } else if (mddev->pers == NULL && freshest && ev1 < mddev->events) { + /* + * If we are assembling, and our event counter is smaller than the + * highest event counter, we cannot trust our superblock about the role. + * It could happen that our rdev was marked as Faulty, and all other + * superblocks were updated with +1 event counter. + * Then, before the next superblock update, which typically happens when + * remove_and_add_spares() removes the device from the array, there was + * a crash or reboot. + * If we allow current rdev without consulting the freshest superblock, + * we could cause data corruption. + * Note that in this case our event counter is smaller by 1 than the + * highest, otherwise, this rdev would not be allowed into array; + * both kernel and mdadm allow event counter difference of 1. + */ + struct mdp_superblock_1 *freshest_sb = page_address(freshest->sb_page); + u32 freshest_max_dev = le32_to_cpu(freshest_sb->max_dev); + + if (rdev->desc_nr >= freshest_max_dev) { + /* this is unexpected, better not proceed */ + pr_warn("md: %s: rdev[%pg]: desc_nr(%d) >= freshest(%pg)->sb->max_dev(%u)\n", + mdname(mddev), rdev->bdev, rdev->desc_nr, + freshest->bdev, freshest_max_dev); + return -EUCLEAN; + } + + role = le16_to_cpu(freshest_sb->dev_roles[rdev->desc_nr]); + pr_debug("md: %s: rdev[%pg]: role=%d(0x%x) according to freshest %pg\n", + mdname(mddev), rdev->bdev, role, role, freshest->bdev); + } else { role = le16_to_cpu(sb->dev_roles[rdev->desc_nr]); + } switch(role) { case MD_DISK_ROLE_SPARE: /* spare */ break; @@ -2680,7 +2726,7 @@ 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; @@ -2878,7 +2924,7 @@ * and should be added immediately. */ super_types[mddev->major_version]. - validate_super(mddev, rdev); + validate_super(mddev, NULL/*freshest*/, rdev); if (add_journal) mddev_suspend(mddev); err = mddev->pers->hot_add_disk(mddev, rdev); @@ -3797,7 +3843,7 @@ } super_types[mddev->major_version]. - validate_super(mddev, freshest); + validate_super(mddev, NULL/*freshest*/, freshest); i = 0; rdev_for_each_safe(rdev, tmp, mddev) { @@ -3812,7 +3858,7 @@ } if (rdev != freshest) { if (super_types[mddev->major_version]. - validate_super(mddev, rdev)) { + validate_super(mddev, freshest, rdev)) { pr_warn("md: kicking non-fresh %s from array!\n", bdevname(rdev->bdev,b)); md_kick_rdev_from_array(rdev); @@ -3953,7 +3999,7 @@ goto out_unlock; } rv = -EROFS; - if (mddev->ro) + if (!md_is_rdwr(mddev)) goto out_unlock; /* request to change the personality. Need to ensure: @@ -4159,7 +4205,7 @@ 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; @@ -4268,7 +4314,7 @@ 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; @@ -4391,13 +4437,13 @@ 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 +4479,8 @@ 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 +4524,23 @@ 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 +4565,7 @@ 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 +4866,7 @@ 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 +4939,11 @@ 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 +5171,7 @@ 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 +5887,8 @@ 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 +5991,8 @@ 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 +6067,8 @@ 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 +6086,7 @@ 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 +6176,7 @@ return -ENXIO; if (!mddev->pers) return -EINVAL; - if (!mddev->ro) + if (md_is_rdwr(mddev)) return -EBUSY; rcu_read_lock(); @@ -6149,7 +6195,7 @@ 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 +6222,7 @@ 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 +6273,7 @@ } 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 +6345,9 @@ 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 +6360,6 @@ * 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 +6372,30 @@ 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 +6444,7 @@ return -EBUSY; } if (mddev->pers) { - if (mddev->ro) + if (!md_is_rdwr(mddev)) set_disk_ro(disk, 0); __md_stop_writes(mddev); @@ -6413,8 +6461,8 @@ 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); /* @@ -6781,7 +6829,7 @@ rdev->saved_raid_disk = rdev->raid_disk; } else super_types[mddev->major_version]. - validate_super(mddev, rdev); + validate_super(mddev, NULL/*freshest*/, rdev); if ((info->state & (1<raid_disk != info->raid_disk) { /* This was a hot-add request, but events doesn't @@ -7226,7 +7274,7 @@ 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 +7304,7 @@ /* 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)) @@ -7680,26 +7728,25 @@ * 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 +7832,11 @@ * 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: @@ -8247,9 +8294,9 @@ 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); } @@ -8509,10 +8556,10 @@ 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); @@ -8563,7 +8610,7 @@ { 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); @@ -8627,7 +8674,8 @@ 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); @@ -8667,7 +8715,7 @@ { if (!mddev->pers) return; - if (mddev->ro) + if (!md_is_rdwr(mddev)) return; if (!mddev->pers->sync_request) return; @@ -8716,7 +8764,7 @@ 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; } @@ -9184,9 +9232,9 @@ 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; @@ -9284,7 +9332,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/media/dvb-core/dvbdev.c linux-xilinx-zynqmp-5.15.0/drivers/media/dvb-core/dvbdev.c --- linux-xilinx-zynqmp-5.15.0/drivers/media/dvb-core/dvbdev.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/dvb-core/dvbdev.c @@ -114,6 +114,8 @@ err = file->f_op->open(inode, file); up_read(&minor_rwsem); mutex_unlock(&dvbdev_mutex); + if (err) + dvb_device_put(dvbdev); return err; } fail: diff -u linux-xilinx-zynqmp-5.15.0/drivers/media/dvb-frontends/m88ds3103.c linux-xilinx-zynqmp-5.15.0/drivers/media/dvb-frontends/m88ds3103.c --- linux-xilinx-zynqmp-5.15.0/drivers/media/dvb-frontends/m88ds3103.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/dvb-frontends/m88ds3103.c @@ -1898,7 +1898,7 @@ /* get frontend address */ ret = regmap_read(dev->regmap, 0x29, &utmp); if (ret) - goto err_kfree; + goto err_del_adapters; dev->dt_addr = ((utmp & 0x80) == 0) ? 0x42 >> 1 : 0x40 >> 1; dev_dbg(&client->dev, "dt addr is 0x%02x\n", dev->dt_addr); @@ -1906,11 +1906,14 @@ dev->dt_addr); if (IS_ERR(dev->dt_client)) { ret = PTR_ERR(dev->dt_client); - goto err_kfree; + goto err_del_adapters; } } return 0; + +err_del_adapters: + i2c_mux_del_adapters(dev->muxc); err_kfree: kfree(dev); err: diff -u linux-xilinx-zynqmp-5.15.0/drivers/media/i2c/ccs/ccs-core.c linux-xilinx-zynqmp-5.15.0/drivers/media/i2c/ccs/ccs-core.c --- linux-xilinx-zynqmp-5.15.0/drivers/media/i2c/ccs/ccs-core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/i2c/ccs/ccs-core.c @@ -3089,7 +3089,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/media/i2c/max9286.c linux-xilinx-zynqmp-5.15.0/drivers/media/i2c/max9286.c --- linux-xilinx-zynqmp-5.15.0/drivers/media/i2c/max9286.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/i2c/max9286.c @@ -1231,7 +1231,6 @@ i2c_mux_mask |= BIT(id); } - of_node_put(node); of_node_put(i2c_mux); /* Parse the endpoints */ @@ -1295,7 +1294,6 @@ priv->source_mask |= BIT(ep.port); priv->nsources++; } - of_node_put(node); /* * Parse the initial value of the reverse channel amplitude from diff -u linux-xilinx-zynqmp-5.15.0/drivers/media/pci/bt8xx/bttv-driver.c linux-xilinx-zynqmp-5.15.0/drivers/media/pci/bt8xx/bttv-driver.c --- linux-xilinx-zynqmp-5.15.0/drivers/media/pci/bt8xx/bttv-driver.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/pci/bt8xx/bttv-driver.c @@ -4250,6 +4250,7 @@ /* 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 -u linux-xilinx-zynqmp-5.15.0/drivers/media/platform/mtk-jpeg/mtk_jpeg_core.c linux-xilinx-zynqmp-5.15.0/drivers/media/platform/mtk-jpeg/mtk_jpeg_core.c --- linux-xilinx-zynqmp-5.15.0/drivers/media/platform/mtk-jpeg/mtk_jpeg_core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/platform/mtk-jpeg/mtk_jpeg_core.c @@ -977,13 +977,13 @@ if (ret < 0) goto dec_end; - schedule_delayed_work(&jpeg->job_timeout_work, - msecs_to_jiffies(MTK_JPEG_HW_TIMEOUT_MSEC)); - mtk_jpeg_set_dec_src(ctx, &src_buf->vb2_buf, &bs); if (mtk_jpeg_set_dec_dst(ctx, &jpeg_src_buf->dec_param, &dst_buf->vb2_buf, &fb)) goto dec_end; + schedule_delayed_work(&jpeg->job_timeout_work, + msecs_to_jiffies(MTK_JPEG_HW_TIMEOUT_MSEC)); + spin_lock_irqsave(&jpeg->hw_lock, flags); mtk_jpeg_dec_reset(jpeg->reg_base); mtk_jpeg_dec_set_config(jpeg->reg_base, diff -u linux-xilinx-zynqmp-5.15.0/drivers/media/platform/qcom/camss/camss-csid-170.c linux-xilinx-zynqmp-5.15.0/drivers/media/platform/qcom/camss/camss-csid-170.c --- linux-xilinx-zynqmp-5.15.0/drivers/media/platform/qcom/camss/camss-csid-170.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/platform/qcom/camss/camss-csid-170.c @@ -327,13 +327,14 @@ }, }; -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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/media/platform/qcom/camss/camss-vfe-170.c linux-xilinx-zynqmp-5.15.0/drivers/media/platform/qcom/camss/camss-vfe-170.c --- linux-xilinx-zynqmp-5.15.0/drivers/media/platform/qcom/camss/camss-vfe-170.c +++ linux-xilinx-zynqmp-5.15.0/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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/media/platform/qcom/venus/hfi_venus.c linux-xilinx-zynqmp-5.15.0/drivers/media/platform/qcom/venus/hfi_venus.c --- linux-xilinx-zynqmp-5.15.0/drivers/media/platform/qcom/venus/hfi_venus.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/platform/qcom/venus/hfi_venus.c @@ -205,6 +205,11 @@ 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 { @@ -272,6 +277,11 @@ } 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; diff -u linux-xilinx-zynqmp-5.15.0/drivers/media/platform/rockchip/rga/rga.c linux-xilinx-zynqmp-5.15.0/drivers/media/platform/rockchip/rga/rga.c --- linux-xilinx-zynqmp-5.15.0/drivers/media/platform/rockchip/rga/rga.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/platform/rockchip/rga/rga.c @@ -187,7 +187,7 @@ static struct rga_fmt formats[] = { { .fourcc = V4L2_PIX_FMT_ARGB32, - .color_swap = RGA_COLOR_RB_SWAP, + .color_swap = RGA_COLOR_ALPHA_SWAP, .hw_format = RGA_COLOR_FMT_ABGR8888, .depth = 32, .uv_factor = 1, @@ -195,17 +195,8 @@ .x_div = 1, }, { - .fourcc = V4L2_PIX_FMT_XRGB32, - .color_swap = RGA_COLOR_RB_SWAP, - .hw_format = RGA_COLOR_FMT_XBGR8888, - .depth = 32, - .uv_factor = 1, - .y_div = 1, - .x_div = 1, - }, - { .fourcc = V4L2_PIX_FMT_ABGR32, - .color_swap = RGA_COLOR_ALPHA_SWAP, + .color_swap = RGA_COLOR_RB_SWAP, .hw_format = RGA_COLOR_FMT_ABGR8888, .depth = 32, .uv_factor = 1, @@ -214,7 +205,7 @@ }, { .fourcc = V4L2_PIX_FMT_XBGR32, - .color_swap = RGA_COLOR_ALPHA_SWAP, + .color_swap = RGA_COLOR_RB_SWAP, .hw_format = RGA_COLOR_FMT_XBGR8888, .depth = 32, .uv_factor = 1, diff -u linux-xilinx-zynqmp-5.15.0/drivers/media/platform/rockchip/rkisp1/rkisp1-dev.c linux-xilinx-zynqmp-5.15.0/drivers/media/platform/rockchip/rkisp1/rkisp1-dev.c --- linux-xilinx-zynqmp-5.15.0/drivers/media/platform/rockchip/rkisp1/rkisp1-dev.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/platform/rockchip/rkisp1/rkisp1-dev.c @@ -514,7 +514,7 @@ ret = v4l2_device_register(rkisp1->dev, &rkisp1->v4l2_dev); if (ret) - return ret; + goto err_pm_runtime_disable; ret = media_device_register(&rkisp1->media_dev); if (ret) { @@ -534,6 +534,7 @@ media_device_unregister(&rkisp1->media_dev); err_unreg_v4l2_dev: v4l2_device_unregister(&rkisp1->v4l2_dev); +err_pm_runtime_disable: pm_runtime_disable(&pdev->dev); return ret; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/media/rc/imon.c linux-xilinx-zynqmp-5.15.0/drivers/media/rc/imon.c --- linux-xilinx-zynqmp-5.15.0/drivers/media/rc/imon.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/rc/imon.c @@ -2427,6 +2427,12 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/media/rc/ir_toy.c linux-xilinx-zynqmp-5.15.0/drivers/media/rc/ir_toy.c --- linux-xilinx-zynqmp-5.15.0/drivers/media/rc/ir_toy.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/rc/ir_toy.c @@ -324,6 +324,7 @@ sizeof(COMMAND_SMODE_EXIT), STATE_RESET); if (err) { dev_err(irtoy->dev, "exit sample mode: %d\n", err); + kfree(buf); return err; } @@ -331,6 +332,7 @@ sizeof(COMMAND_SMODE_ENTER), STATE_COMMAND); if (err) { dev_err(irtoy->dev, "enter sample mode: %d\n", err); + kfree(buf); return err; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/media/usb/dvb-usb-v2/af9035.c linux-xilinx-zynqmp-5.15.0/drivers/media/usb/dvb-usb-v2/af9035.c --- linux-xilinx-zynqmp-5.15.0/drivers/media/usb/dvb-usb-v2/af9035.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/usb/dvb-usb-v2/af9035.c @@ -323,8 +323,10 @@ ret = -EOPNOTSUPP; } else if ((msg[0].addr == state->af9033_i2c_addr[0]) || (msg[0].addr == state->af9033_i2c_addr[1])) { - if (msg[0].len < 3 || msg[1].len < 1) - return -EOPNOTSUPP; + if (msg[0].len < 3 || msg[1].len < 1) { + ret = -EOPNOTSUPP; + goto unlock; + } /* demod access via firmware interface */ reg = msg[0].buf[0] << 16 | msg[0].buf[1] << 8 | msg[0].buf[2]; @@ -384,8 +386,10 @@ ret = -EOPNOTSUPP; } else if ((msg[0].addr == state->af9033_i2c_addr[0]) || (msg[0].addr == state->af9033_i2c_addr[1])) { - if (msg[0].len < 3) - return -EOPNOTSUPP; + if (msg[0].len < 3) { + ret = -EOPNOTSUPP; + goto unlock; + } /* demod access via firmware interface */ reg = msg[0].buf[0] << 16 | msg[0].buf[1] << 8 | msg[0].buf[2]; @@ -460,6 +464,7 @@ ret = -EOPNOTSUPP; } +unlock: mutex_unlock(&d->i2c_mutex); if (ret < 0) diff -u linux-xilinx-zynqmp-5.15.0/drivers/mfd/Kconfig linux-xilinx-zynqmp-5.15.0/drivers/mfd/Kconfig --- linux-xilinx-zynqmp-5.15.0/drivers/mfd/Kconfig +++ linux-xilinx-zynqmp-5.15.0/drivers/mfd/Kconfig @@ -1377,6 +1377,7 @@ config MFD_TI_AM335X_TSCADC tristate "TI ADC / Touch Screen chip support" + depends on ARCH_OMAP2PLUS || ARCH_K3 || COMPILE_TEST select MFD_CORE select REGMAP select REGMAP_MMIO diff -u linux-xilinx-zynqmp-5.15.0/drivers/mfd/dln2.c linux-xilinx-zynqmp-5.15.0/drivers/mfd/dln2.c --- linux-xilinx-zynqmp-5.15.0/drivers/mfd/dln2.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mfd/dln2.c @@ -836,7 +836,6 @@ dln2_stop_rx_urbs(dln2); out_free: - usb_put_dev(dln2->usb_dev); dln2_free(dln2); return ret; diff -u linux-xilinx-zynqmp-5.15.0/drivers/mfd/mfd-core.c linux-xilinx-zynqmp-5.15.0/drivers/mfd/mfd-core.c --- linux-xilinx-zynqmp-5.15.0/drivers/mfd/mfd-core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mfd/mfd-core.c @@ -159,6 +159,7 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/misc/fastrpc.c linux-xilinx-zynqmp-5.15.0/drivers/misc/fastrpc.c --- linux-xilinx-zynqmp-5.15.0/drivers/misc/fastrpc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/misc/fastrpc.c @@ -995,11 +995,6 @@ if (err) goto bail; - /* Check the response from remote dsp */ - err = ctx->retval; - if (err) - goto bail; - if (ctx->nscalars) { /* make sure that all memory writes by DSP are seen by CPU */ dma_rmb(); @@ -1009,6 +1004,11 @@ 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 */ @@ -1594,7 +1594,7 @@ int i; spin_lock_irqsave(&cctx->lock, flags); - for (i = 1; i < FASTRPC_MAX_SESSIONS; i++) { + for (i = 0; i < FASTRPC_MAX_SESSIONS; i++) { if (cctx->session[i].sid == sess->sid) { cctx->session[i].valid = false; cctx->sesscount--; diff -u linux-xilinx-zynqmp-5.15.0/drivers/misc/lkdtm/bugs.c linux-xilinx-zynqmp-5.15.0/drivers/misc/lkdtm/bugs.c --- linux-xilinx-zynqmp-5.15.0/drivers/misc/lkdtm/bugs.c +++ linux-xilinx-zynqmp-5.15.0/drivers/misc/lkdtm/bugs.c @@ -29,7 +29,7 @@ #if defined(CONFIG_FRAME_WARN) && (CONFIG_FRAME_WARN > 0) #define REC_STACK_SIZE (_AC(CONFIG_FRAME_WARN, UL) / 2) #else -#define REC_STACK_SIZE (THREAD_SIZE / 8) +#define REC_STACK_SIZE (THREAD_SIZE / 8UL) #endif #define REC_NUM_DEFAULT ((THREAD_SIZE / REC_STACK_SIZE) * 2) diff -u linux-xilinx-zynqmp-5.15.0/drivers/misc/pci_endpoint_test.c linux-xilinx-zynqmp-5.15.0/drivers/misc/pci_endpoint_test.c --- linux-xilinx-zynqmp-5.15.0/drivers/misc/pci_endpoint_test.c +++ linux-xilinx-zynqmp-5.15.0/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 @@ { 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 @@ { 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 -u linux-xilinx-zynqmp-5.15.0/drivers/mmc/core/block.c linux-xilinx-zynqmp-5.15.0/drivers/mmc/core/block.c --- linux-xilinx-zynqmp-5.15.0/drivers/mmc/core/block.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mmc/core/block.c @@ -399,6 +399,10 @@ struct mmc_ioc_cmd ic; unsigned char *buf; u64 buf_bytes; + unsigned int flags; +#define MMC_BLK_IOC_DROP BIT(0) /* drop this mrq */ +#define MMC_BLK_IOC_SBC BIT(1) /* use mrq.sbc */ + struct mmc_rpmb_data *rpmb; }; @@ -464,7 +468,7 @@ } static int __mmc_blk_ioctl_cmd(struct mmc_card *card, struct mmc_blk_data *md, - struct mmc_blk_ioc_data *idata) + struct mmc_blk_ioc_data **idatas, int i) { struct mmc_command cmd = {}, sbc = {}; struct mmc_data data = {}; @@ -472,10 +476,18 @@ struct scatterlist sg; int err; unsigned int target_part; + struct mmc_blk_ioc_data *idata = idatas[i]; + struct mmc_blk_ioc_data *prev_idata = NULL; if (!card || !md || !idata) return -EINVAL; + if (idata->flags & MMC_BLK_IOC_DROP) + return 0; + + if (idata->flags & MMC_BLK_IOC_SBC) + prev_idata = idatas[i - 1]; + /* * The RPMB accesses comes in from the character device, so we * need to target these explicitly. Else we just target the @@ -542,7 +554,7 @@ return err; } - if (idata->rpmb) { + if (idata->rpmb || prev_idata) { sbc.opcode = MMC_SET_BLOCK_COUNT; /* * We don't do any blockcount validation because the max size @@ -550,6 +562,8 @@ * 'Reliable Write' bit here. */ sbc.arg = data.blocks | (idata->ic.write_flag & BIT(31)); + if (prev_idata) + sbc.arg = prev_idata->ic.arg; sbc.flags = MMC_RSP_R1 | MMC_CMD_AC; mrq.sbc = &sbc; } @@ -561,6 +575,15 @@ mmc_wait_for_req(card->host, &mrq); memcpy(&idata->ic.response, cmd.resp, sizeof(cmd.resp)); + if (prev_idata) { + memcpy(&prev_idata->ic.response, sbc.resp, sizeof(sbc.resp)); + if (sbc.error) { + dev_err(mmc_dev(card->host), "%s: sbc error %d\n", + __func__, sbc.error); + return sbc.error; + } + } + if (cmd.error) { dev_err(mmc_dev(card->host), "%s: cmd error %d\n", __func__, cmd.error); @@ -839,9 +862,10 @@ static int mmc_blk_part_switch_pre(struct mmc_card *card, unsigned int part_type) { + const unsigned int mask = EXT_CSD_PART_CONFIG_ACC_RPMB; int ret = 0; - if (part_type == EXT_CSD_PART_CONFIG_ACC_RPMB) { + if ((part_type & mask) == mask) { if (card->ext_csd.cmdq_en) { ret = mmc_cmdq_disable(card); if (ret) @@ -856,9 +880,10 @@ static int mmc_blk_part_switch_post(struct mmc_card *card, unsigned int part_type) { + const unsigned int mask = EXT_CSD_PART_CONFIG_ACC_RPMB; int ret = 0; - if (part_type == EXT_CSD_PART_CONFIG_ACC_RPMB) { + if ((part_type & mask) == mask) { mmc_retune_unpause(card->host); if (card->reenable_cmdq && !card->ext_csd.cmdq_en) ret = mmc_cmdq_enable(card); @@ -1028,6 +1053,20 @@ md->reset_done &= ~type; } +static void mmc_blk_check_sbc(struct mmc_queue_req *mq_rq) +{ + struct mmc_blk_ioc_data **idata = mq_rq->drv_op_data; + int i; + + for (i = 1; i < mq_rq->ioc_count; i++) { + if (idata[i - 1]->ic.opcode == MMC_SET_BLOCK_COUNT && + mmc_op_multi(idata[i]->ic.opcode)) { + idata[i - 1]->flags |= MMC_BLK_IOC_DROP; + idata[i]->flags |= MMC_BLK_IOC_SBC; + } + } +} + /* * The non-block commands come back from the block layer after it queued it and * processed it with all other requests and then they get issued in this @@ -1055,11 +1094,14 @@ if (ret) break; } + + mmc_blk_check_sbc(mq_rq); + fallthrough; case MMC_DRV_OP_IOCTL_RPMB: idata = mq_rq->drv_op_data; for (i = 0, ret = 0; i < mq_rq->ioc_count; i++) { - ret = __mmc_blk_ioctl_cmd(card, md, idata[i]); + ret = __mmc_blk_ioctl_cmd(card, md, idata, i); if (ret) break; } @@ -1465,6 +1507,8 @@ 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); } @@ -3127 +3170,0 @@ - diff -u linux-xilinx-zynqmp-5.15.0/drivers/mmc/core/core.c linux-xilinx-zynqmp-5.15.0/drivers/mmc/core/core.c --- linux-xilinx-zynqmp-5.15.0/drivers/mmc/core/core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mmc/core/core.c @@ -552,7 +552,9 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/mmc/core/host.c linux-xilinx-zynqmp-5.15.0/drivers/mmc/core/host.c --- linux-xilinx-zynqmp-5.15.0/drivers/mmc/core/host.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mmc/core/host.c @@ -661,6 +661,7 @@ */ void mmc_free_host(struct mmc_host *host) { + cancel_delayed_work_sync(&host->detect); mmc_pwrseq_free(host); put_device(&host->class_dev); } diff -u linux-xilinx-zynqmp-5.15.0/drivers/mmc/core/sdio.c linux-xilinx-zynqmp-5.15.0/drivers/mmc/core/sdio.c --- linux-xilinx-zynqmp-5.15.0/drivers/mmc/core/sdio.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mmc/core/sdio.c @@ -1073,8 +1073,14 @@ } 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 -u linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/Kconfig linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/Kconfig --- linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/Kconfig +++ linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/Kconfig @@ -1055,14 +1055,15 @@ config MMC_SDHCI_OMAP tristate "TI SDHCI Controller Support" + depends on ARCH_OMAP2PLUS || ARCH_KEYSTONE || COMPILE_TEST depends on MMC_SDHCI_PLTFM && OF select THERMAL imply TI_SOC_THERMAL select MMC_SDHCI_EXTERNAL_DMA if DMA_ENGINE help This selects the Secure Digital Host Controller Interface (SDHCI) - support present in TI's DRA7 SOCs. The controller supports - SD/MMC/SDIO devices. + support present in TI's Keystone/OMAP2+/DRA7 SOCs. The controller + supports SD/MMC/SDIO devices. If you have a controller with this interface, say Y or M here. @@ -1070,14 +1071,15 @@ config MMC_SDHCI_AM654 tristate "Support for the SDHCI Controller in TI's AM654 SOCs" + depends on ARCH_K3 || COMPILE_TEST depends on MMC_SDHCI_PLTFM && OF select MMC_SDHCI_IO_ACCESSORS select MMC_CQHCI select REGMAP_MMIO help This selects the Secure Digital Host Controller Interface (SDHCI) - support present in TI's AM654 SOCs. The controller supports - SD/MMC/SDIO devices. + support present in TI's AM65x/AM64x/AM62x/J721E SOCs. The controller + supports SD/MMC/SDIO devices. If you have a controller with this interface, say Y or M here. diff -u linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/meson-gx-mmc.c linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/meson-gx-mmc.c --- linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/meson-gx-mmc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/meson-gx-mmc.c @@ -811,7 +811,6 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/meson-mx-sdhc-mmc.c linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/meson-mx-sdhc-mmc.c --- linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/meson-mx-sdhc-mmc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/meson-mx-sdhc-mmc.c @@ -269,7 +269,7 @@ static int meson_mx_sdhc_set_clk(struct mmc_host *mmc, struct mmc_ios *ios) { struct meson_mx_sdhc_host *host = mmc_priv(mmc); - u32 rx_clk_phase; + u32 val, rx_clk_phase; int ret; meson_mx_sdhc_disable_clks(mmc); @@ -290,27 +290,11 @@ mmc->actual_clock = clk_get_rate(host->sd_clk); /* - * according to Amlogic the following latching points are - * selected with empirical values, there is no (known) formula - * to calculate these. + * Phase 90 should work in most cases. For data transmission, + * meson_mx_sdhc_execute_tuning() will find a accurate value */ - if (mmc->actual_clock > 100000000) { - rx_clk_phase = 1; - } else if (mmc->actual_clock > 45000000) { - if (ios->signal_voltage == MMC_SIGNAL_VOLTAGE_330) - rx_clk_phase = 15; - else - rx_clk_phase = 11; - } else if (mmc->actual_clock >= 25000000) { - rx_clk_phase = 15; - } else if (mmc->actual_clock > 5000000) { - rx_clk_phase = 23; - } else if (mmc->actual_clock > 1000000) { - rx_clk_phase = 55; - } else { - rx_clk_phase = 1061; - } - + regmap_read(host->regmap, MESON_SDHC_CLKC, &val); + rx_clk_phase = FIELD_GET(MESON_SDHC_CLKC_CLK_DIV, val) / 4; regmap_update_bits(host->regmap, MESON_SDHC_CLK2, MESON_SDHC_CLK2_RX_CLK_PHASE, FIELD_PREP(MESON_SDHC_CLK2_RX_CLK_PHASE, diff -u linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/mmc_spi.c linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/mmc_spi.c --- linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/mmc_spi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/mmc_spi.c @@ -15,7 +15,7 @@ #include #include #include -#include +#include #include #include #include @@ -119,19 +119,14 @@ struct spi_transfer status; struct spi_message readback; - /* underlying DMA-aware controller, or null */ - struct device *dma_dev; - /* buffer used for commands and for message "overhead" */ struct scratch *data; - dma_addr_t data_dma; /* Specs say to write ones most of the time, even when the card * has no need to read its input data; and many cards won't care. * This is our source of those ones. */ void *ones; - dma_addr_t ones_dma; }; @@ -147,11 +142,8 @@ return spi_setup(host->spi); } -static int -mmc_spi_readbytes(struct mmc_spi_host *host, unsigned len) +static int mmc_spi_readbytes(struct mmc_spi_host *host, unsigned int len) { - int status; - if (len > sizeof(*host->data)) { WARN_ON(1); return -EIO; @@ -159,19 +151,7 @@ host->status.len = len; - if (host->dma_dev) - dma_sync_single_for_device(host->dma_dev, - host->data_dma, sizeof(*host->data), - DMA_FROM_DEVICE); - - status = spi_sync_locked(host->spi, &host->readback); - - if (host->dma_dev) - dma_sync_single_for_cpu(host->dma_dev, - host->data_dma, sizeof(*host->data), - DMA_FROM_DEVICE); - - return status; + return spi_sync_locked(host->spi, &host->readback); } static int mmc_spi_skip(struct mmc_spi_host *host, unsigned long timeout, @@ -506,23 +486,11 @@ t = &host->t; memset(t, 0, sizeof(*t)); t->tx_buf = t->rx_buf = data->status; - t->tx_dma = t->rx_dma = host->data_dma; t->len = cp - data->status; t->cs_change = 1; spi_message_add_tail(t, &host->m); - if (host->dma_dev) { - host->m.is_dma_mapped = 1; - dma_sync_single_for_device(host->dma_dev, - host->data_dma, sizeof(*host->data), - DMA_BIDIRECTIONAL); - } status = spi_sync_locked(host->spi, &host->m); - - if (host->dma_dev) - dma_sync_single_for_cpu(host->dma_dev, - host->data_dma, sizeof(*host->data), - DMA_BIDIRECTIONAL); if (status < 0) { dev_dbg(&host->spi->dev, " ... write returned %d\n", status); cmd->error = status; @@ -540,9 +508,6 @@ * We always provide TX data for data and CRC. The MMC/SD protocol * requires us to write ones; but Linux defaults to writing zeroes; * so we explicitly initialize it to all ones on RX paths. - * - * We also handle DMA mapping, so the underlying SPI controller does - * not need to (re)do it for each message. */ static void mmc_spi_setup_data_message( @@ -552,11 +517,8 @@ { struct spi_transfer *t; struct scratch *scratch = host->data; - dma_addr_t dma = host->data_dma; spi_message_init(&host->m); - if (dma) - host->m.is_dma_mapped = 1; /* for reads, readblock() skips 0xff bytes before finding * the token; for writes, this transfer issues that token. @@ -570,8 +532,6 @@ else scratch->data_token = SPI_TOKEN_SINGLE; t->tx_buf = &scratch->data_token; - if (dma) - t->tx_dma = dma + offsetof(struct scratch, data_token); spi_message_add_tail(t, &host->m); } @@ -581,7 +541,6 @@ t = &host->t; memset(t, 0, sizeof(*t)); t->tx_buf = host->ones; - t->tx_dma = host->ones_dma; /* length and actual buffer info are written later */ spi_message_add_tail(t, &host->m); @@ -591,14 +550,9 @@ if (direction == DMA_TO_DEVICE) { /* the actual CRC may get written later */ t->tx_buf = &scratch->crc_val; - if (dma) - t->tx_dma = dma + offsetof(struct scratch, crc_val); } else { t->tx_buf = host->ones; - t->tx_dma = host->ones_dma; t->rx_buf = &scratch->crc_val; - if (dma) - t->rx_dma = dma + offsetof(struct scratch, crc_val); } spi_message_add_tail(t, &host->m); @@ -621,10 +575,7 @@ memset(t, 0, sizeof(*t)); t->len = (direction == DMA_TO_DEVICE) ? sizeof(scratch->status) : 1; t->tx_buf = host->ones; - t->tx_dma = host->ones_dma; t->rx_buf = scratch->status; - if (dma) - t->rx_dma = dma + offsetof(struct scratch, status); t->cs_change = 1; spi_message_add_tail(t, &host->m); } @@ -653,23 +604,13 @@ if (host->mmc->use_spi_crc) scratch->crc_val = cpu_to_be16(crc_itu_t(0, t->tx_buf, t->len)); - if (host->dma_dev) - dma_sync_single_for_device(host->dma_dev, - host->data_dma, sizeof(*scratch), - DMA_BIDIRECTIONAL); status = spi_sync_locked(spi, &host->m); - if (status != 0) { dev_dbg(&spi->dev, "write error (%d)\n", status); return status; } - if (host->dma_dev) - dma_sync_single_for_cpu(host->dma_dev, - host->data_dma, sizeof(*scratch), - DMA_BIDIRECTIONAL); - /* * Get the transmission data-response reply. It must follow * immediately after the data block we transferred. This reply @@ -718,8 +659,6 @@ } t->tx_buf += t->len; - if (host->dma_dev) - t->tx_dma += t->len; /* Return when not busy. If we didn't collect that status yet, * we'll need some more I/O. @@ -783,30 +722,12 @@ } leftover = status << 1; - if (host->dma_dev) { - dma_sync_single_for_device(host->dma_dev, - host->data_dma, sizeof(*scratch), - DMA_BIDIRECTIONAL); - dma_sync_single_for_device(host->dma_dev, - t->rx_dma, t->len, - DMA_FROM_DEVICE); - } - status = spi_sync_locked(spi, &host->m); if (status < 0) { dev_dbg(&spi->dev, "read error %d\n", status); return status; } - if (host->dma_dev) { - dma_sync_single_for_cpu(host->dma_dev, - host->data_dma, sizeof(*scratch), - DMA_BIDIRECTIONAL); - dma_sync_single_for_cpu(host->dma_dev, - t->rx_dma, t->len, - DMA_FROM_DEVICE); - } - if (bitshift) { /* Walk through the data and the crc and do * all the magic to get byte-aligned data. @@ -841,8 +762,6 @@ } t->rx_buf += t->len; - if (host->dma_dev) - t->rx_dma += t->len; return 0; } @@ -857,7 +776,6 @@ struct mmc_data *data, u32 blk_size) { struct spi_device *spi = host->spi; - struct device *dma_dev = host->dma_dev; struct spi_transfer *t; enum dma_data_direction direction; struct scatterlist *sg; @@ -884,31 +802,8 @@ */ for_each_sg(data->sg, sg, data->sg_len, n_sg) { int status = 0; - dma_addr_t dma_addr = 0; void *kmap_addr; unsigned length = sg->length; - enum dma_data_direction dir = direction; - - /* set up dma mapping for controller drivers that might - * use DMA ... though they may fall back to PIO - */ - if (dma_dev) { - /* never invalidate whole *shared* pages ... */ - if ((sg->offset != 0 || length != PAGE_SIZE) - && dir == DMA_FROM_DEVICE) - dir = DMA_BIDIRECTIONAL; - - dma_addr = dma_map_page(dma_dev, sg_page(sg), 0, - PAGE_SIZE, dir); - if (dma_mapping_error(dma_dev, dma_addr)) { - data->error = -EFAULT; - break; - } - if (direction == DMA_TO_DEVICE) - t->tx_dma = dma_addr + sg->offset; - else - t->rx_dma = dma_addr + sg->offset; - } /* allow pio too; we don't allow highmem */ kmap_addr = kmap(sg_page(sg)); @@ -943,8 +838,6 @@ if (direction == DMA_FROM_DEVICE) flush_dcache_page(sg_page(sg)); kunmap(sg_page(sg)); - if (dma_dev) - dma_unmap_page(dma_dev, dma_addr, PAGE_SIZE, dir); if (status < 0) { data->error = status; @@ -981,21 +874,9 @@ scratch->status[0] = SPI_TOKEN_STOP_TRAN; host->early_status.tx_buf = host->early_status.rx_buf; - host->early_status.tx_dma = host->early_status.rx_dma; host->early_status.len = statlen; - if (host->dma_dev) - dma_sync_single_for_device(host->dma_dev, - host->data_dma, sizeof(*scratch), - DMA_BIDIRECTIONAL); - tmp = spi_sync_locked(spi, &host->m); - - if (host->dma_dev) - dma_sync_single_for_cpu(host->dma_dev, - host->data_dma, sizeof(*scratch), - DMA_BIDIRECTIONAL); - if (tmp < 0) { if (!data->error) data->error = tmp; @@ -1269,52 +1150,6 @@ return IRQ_HANDLED; } -#ifdef CONFIG_HAS_DMA -static int mmc_spi_dma_alloc(struct mmc_spi_host *host) -{ - struct spi_device *spi = host->spi; - struct device *dev; - - if (!spi->master->dev.parent->dma_mask) - return 0; - - dev = spi->master->dev.parent; - - host->ones_dma = dma_map_single(dev, host->ones, MMC_SPI_BLOCKSIZE, - DMA_TO_DEVICE); - if (dma_mapping_error(dev, host->ones_dma)) - return -ENOMEM; - - host->data_dma = dma_map_single(dev, host->data, sizeof(*host->data), - DMA_BIDIRECTIONAL); - if (dma_mapping_error(dev, host->data_dma)) { - dma_unmap_single(dev, host->ones_dma, MMC_SPI_BLOCKSIZE, - DMA_TO_DEVICE); - return -ENOMEM; - } - - dma_sync_single_for_cpu(dev, host->data_dma, sizeof(*host->data), - DMA_BIDIRECTIONAL); - - host->dma_dev = dev; - return 0; -} - -static void mmc_spi_dma_free(struct mmc_spi_host *host) -{ - if (!host->dma_dev) - return; - - dma_unmap_single(host->dma_dev, host->ones_dma, MMC_SPI_BLOCKSIZE, - DMA_TO_DEVICE); - dma_unmap_single(host->dma_dev, host->data_dma, sizeof(*host->data), - DMA_BIDIRECTIONAL); -} -#else -static inline int mmc_spi_dma_alloc(struct mmc_spi_host *host) { return 0; } -static inline void mmc_spi_dma_free(struct mmc_spi_host *host) {} -#endif - static int mmc_spi_probe(struct spi_device *spi) { void *ones; @@ -1406,24 +1241,17 @@ host->powerup_msecs = 250; } - /* preallocate dma buffers */ + /* Preallocate buffers */ host->data = kmalloc(sizeof(*host->data), GFP_KERNEL); if (!host->data) goto fail_nobuf1; - status = mmc_spi_dma_alloc(host); - if (status) - goto fail_dma; - /* setup message for status/busy readback */ spi_message_init(&host->readback); - host->readback.is_dma_mapped = (host->dma_dev != NULL); spi_message_add_tail(&host->status, &host->readback); host->status.tx_buf = host->ones; - host->status.tx_dma = host->ones_dma; host->status.rx_buf = &host->data->status; - host->status.rx_dma = host->data_dma + offsetof(struct scratch, status); host->status.cs_change = 1; /* register card detect irq */ @@ -1468,9 +1296,8 @@ if (!status) has_ro = true; - dev_info(&spi->dev, "SD/MMC host %s%s%s%s%s\n", + dev_info(&spi->dev, "SD/MMC host %s%s%s%s\n", dev_name(&mmc->class_dev), - host->dma_dev ? "" : ", no DMA", has_ro ? "" : ", no WP", (host->pdata && host->pdata->setpower) ? "" : ", no poweroff", @@ -1481,8 +1308,6 @@ fail_gpiod_request: mmc_remove_host(mmc); fail_glue_init: - mmc_spi_dma_free(host); -fail_dma: kfree(host->data); fail_nobuf1: mmc_spi_put_pdata(spi); @@ -1504,7 +1329,6 @@ mmc_remove_host(mmc); - mmc_spi_dma_free(host); kfree(host->data); kfree(host->ones); diff -u linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/mtk-sd.c linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/mtk-sd.c --- linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/mtk-sd.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/mtk-sd.c @@ -628,11 +628,11 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/sdhci-pci-gli.c linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/sdhci-pci-gli.c --- linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/sdhci-pci-gli.c +++ linux-xilinx-zynqmp-5.15.0/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 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/sdhci-sprd.c linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/sdhci-sprd.c --- linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/sdhci-sprd.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/sdhci-sprd.c @@ -224,15 +224,19 @@ div = ((div & 0x300) >> 2) | ((div & 0xFF) << 8); sdhci_enable_clk(host, div); + val = sdhci_readl(host, SDHCI_SPRD_REG_32_BUSY_POSI); + mask = SDHCI_SPRD_BIT_OUTR_CLK_AUTO_EN | SDHCI_SPRD_BIT_INNR_CLK_AUTO_EN; /* Enable CLK_AUTO when the clock is greater than 400K. */ if (clk > 400000) { - val = sdhci_readl(host, SDHCI_SPRD_REG_32_BUSY_POSI); - mask = SDHCI_SPRD_BIT_OUTR_CLK_AUTO_EN | - SDHCI_SPRD_BIT_INNR_CLK_AUTO_EN; if (mask != (val & mask)) { val |= mask; sdhci_writel(host, val, SDHCI_SPRD_REG_32_BUSY_POSI); } + } else { + if (val & mask) { + val &= ~mask; + sdhci_writel(host, val, SDHCI_SPRD_REG_32_BUSY_POSI); + } } } @@ -392,12 +396,33 @@ 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 +688,10 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/sdhci_am654.c linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/sdhci_am654.c --- linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/sdhci_am654.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/sdhci_am654.c @@ -600,7 +600,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/vub300.c linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/vub300.c --- linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/vub300.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/vub300.c @@ -2311,6 +2311,7 @@ vub300->read_only = (0x0010 & vub300->system_port_status.port_flags) ? 1 : 0; } else { + retval = -EINVAL; goto error5; } usb_set_intfdata(interface, vub300); diff -u linux-xilinx-zynqmp-5.15.0/drivers/mtd/nand/raw/arasan-nand-controller.c linux-xilinx-zynqmp-5.15.0/drivers/mtd/nand/raw/arasan-nand-controller.c --- linux-xilinx-zynqmp-5.15.0/drivers/mtd/nand/raw/arasan-nand-controller.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mtd/nand/raw/arasan-nand-controller.c @@ -515,6 +515,7 @@ 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 @@ } /* Spare data is not protected */ - if (oob_required) + if (oob_required) { ret = nand_write_oob_std(chip, page); + 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 ret; + return 0; } static int anfc_sel_write_page_hw_ecc(struct nand_chip *chip, const u8 *buf, diff -u linux-xilinx-zynqmp-5.15.0/drivers/mtd/nand/raw/marvell_nand.c linux-xilinx-zynqmp-5.15.0/drivers/mtd/nand/raw/marvell_nand.c --- linux-xilinx-zynqmp-5.15.0/drivers/mtd/nand/raw/marvell_nand.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mtd/nand/raw/marvell_nand.c @@ -1148,6 +1148,7 @@ .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 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/mtd/nand/raw/pl35x-nand-controller.c linux-xilinx-zynqmp-5.15.0/drivers/mtd/nand/raw/pl35x-nand-controller.c --- linux-xilinx-zynqmp-5.15.0/drivers/mtd/nand/raw/pl35x-nand-controller.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mtd/nand/raw/pl35x-nand-controller.c @@ -513,6 +513,7 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/mtd/nand/raw/qcom_nandc.c linux-xilinx-zynqmp-5.15.0/drivers/mtd/nand/raw/qcom_nandc.c --- linux-xilinx-zynqmp-5.15.0/drivers/mtd/nand/raw/qcom_nandc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mtd/nand/raw/qcom_nandc.c @@ -3093,7 +3093,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/arcnet/com20020-pci.c linux-xilinx-zynqmp-5.15.0/drivers/net/arcnet/com20020-pci.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/arcnet/com20020-pci.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/arcnet/com20020-pci.c @@ -213,12 +213,13 @@ 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 @@ 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 @@ 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; + 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; - 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); + 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_sohard = { - .name = "PLX-PCI", + .name = "SOHARD SH ARC-PCI", .devcount = 1, /* SOHARD needs PCI base addr 4 */ .chan_map_tbl = { @@ -364,7 +367,7 @@ }, }, .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 @@ }, }, .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 @@ }, }, .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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/bonding/bond_alb.c linux-xilinx-zynqmp-5.15.0/drivers/net/bonding/bond_alb.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/bonding/bond_alb.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/bonding/bond_alb.c @@ -973,7 +973,8 @@ if (netif_is_macvlan(upper) && !strict_match) { tags = bond_verify_device_path(bond->dev, upper, 0); if (IS_ERR_OR_NULL(tags)) - BUG(); + return -ENOMEM; + alb_send_lp_vid(slave, upper->dev_addr, tags[0].vlan_proto, tags[0].vlan_id); kfree(tags); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/bonding/bond_main.c linux-xilinx-zynqmp-5.15.0/drivers/net/bonding/bond_main.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/bonding/bond_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/bonding/bond_main.c @@ -1473,6 +1473,10 @@ 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 @@ 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 @@ if (likely(n <= hlen)) return data; else if (skb && likely(pskb_may_pull(skb, n))) - return skb->head; + return skb->data; return NULL; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/dsa/bcm_sf2.c linux-xilinx-zynqmp-5.15.0/drivers/net/dsa/bcm_sf2.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/dsa/bcm_sf2.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/dsa/bcm_sf2.c @@ -577,17 +577,16 @@ 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 @@ } 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 @@ { 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/dsa/mv88e6xxx/serdes.c linux-xilinx-zynqmp-5.15.0/drivers/net/dsa/mv88e6xxx/serdes.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/dsa/mv88e6xxx/serdes.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/dsa/mv88e6xxx/serdes.c @@ -338,8 +338,8 @@ return val; } -int mv88e6352_serdes_get_stats(struct mv88e6xxx_chip *chip, int port, - uint64_t *data) +size_t mv88e6352_serdes_get_stats(struct mv88e6xxx_chip *chip, int port, + uint64_t *data) { struct mv88e6xxx_port *mv88e6xxx_port = &chip->ports[port]; struct mv88e6352_serdes_hw_stat *stat; @@ -787,8 +787,8 @@ return reg[0] | ((u64)reg[1] << 16) | ((u64)reg[2] << 32); } -int mv88e6390_serdes_get_stats(struct mv88e6xxx_chip *chip, int port, - uint64_t *data) +size_t mv88e6390_serdes_get_stats(struct mv88e6xxx_chip *chip, int port, + uint64_t *data) { struct mv88e6390_serdes_hw_stat *stat; int lane; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/dsa/mv88e6xxx/serdes.h linux-xilinx-zynqmp-5.15.0/drivers/net/dsa/mv88e6xxx/serdes.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/dsa/mv88e6xxx/serdes.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/dsa/mv88e6xxx/serdes.h @@ -163,13 +163,13 @@ int mv88e6352_serdes_get_sset_count(struct mv88e6xxx_chip *chip, int port); int mv88e6352_serdes_get_strings(struct mv88e6xxx_chip *chip, int port, uint8_t *data); -int mv88e6352_serdes_get_stats(struct mv88e6xxx_chip *chip, int port, - uint64_t *data); +size_t mv88e6352_serdes_get_stats(struct mv88e6xxx_chip *chip, int port, + uint64_t *data); int mv88e6390_serdes_get_sset_count(struct mv88e6xxx_chip *chip, int port); int mv88e6390_serdes_get_strings(struct mv88e6xxx_chip *chip, int port, uint8_t *data); -int mv88e6390_serdes_get_stats(struct mv88e6xxx_chip *chip, int port, - uint64_t *data); +size_t mv88e6390_serdes_get_stats(struct mv88e6xxx_chip *chip, int port, + uint64_t *data); int mv88e6352_serdes_get_regs_len(struct mv88e6xxx_chip *chip, int port); void mv88e6352_serdes_get_regs(struct mv88e6xxx_chip *chip, int port, void *_p); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/dsa/vitesse-vsc73xx-core.c linux-xilinx-zynqmp-5.15.0/drivers/net/dsa/vitesse-vsc73xx-core.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/dsa/vitesse-vsc73xx-core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/dsa/vitesse-vsc73xx-core.c @@ -1119,6 +1119,8 @@ vsc->gc.label = devm_kasprintf(vsc->dev, GFP_KERNEL, "VSC%04x", vsc->chipid); + if (!vsc->gc.label) + return -ENOMEM; vsc->gc.ngpio = 4; vsc->gc.owner = THIS_MODULE; vsc->gc.parent = vsc->dev; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/alacritech/slicoss.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/alacritech/slicoss.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/alacritech/slicoss.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/alacritech/slicoss.c @@ -1008,7 +1008,7 @@ static void slic_set_mac_address(struct slic_device *sdev) { - u8 *addr = sdev->netdev->dev_addr; + const u8 *addr = sdev->netdev->dev_addr; u32 val; val = addr[5] | addr[4] << 8 | addr[3] << 16 | addr[2] << 24; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/altera/altera_tse_main.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/altera/altera_tse_main.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/altera/altera_tse_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/altera/altera_tse_main.c @@ -853,7 +853,7 @@ return 0; } -static void tse_update_mac_addr(struct altera_tse_private *priv, u8 *addr) +static void tse_update_mac_addr(struct altera_tse_private *priv, const u8 *addr) { u32 msb; u32 lsb; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/amazon/ena/ena_netdev.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/amazon/ena/ena_netdev.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/amazon/ena/ena_netdev.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/amazon/ena/ena_netdev.c @@ -74,6 +74,8 @@ struct ena_tx_buffer *tx_info); static int ena_create_io_tx_queues_in_range(struct ena_adapter *adapter, int first_index, int count); +static void ena_free_all_io_tx_resources_in_range(struct ena_adapter *adapter, + int first_index, int count); /* Increase a stat by cnt while holding syncp seqlock on 32bit machines */ static void ena_increase_stat(u64 *statp, u64 cnt, @@ -459,23 +461,22 @@ static int ena_setup_and_create_all_xdp_queues(struct ena_adapter *adapter) { + u32 xdp_first_ring = adapter->xdp_first_ring; + u32 xdp_num_queues = adapter->xdp_num_queues; int rc = 0; - rc = ena_setup_tx_resources_in_range(adapter, adapter->xdp_first_ring, - adapter->xdp_num_queues); + rc = ena_setup_tx_resources_in_range(adapter, xdp_first_ring, xdp_num_queues); if (rc) goto setup_err; - rc = ena_create_io_tx_queues_in_range(adapter, - adapter->xdp_first_ring, - adapter->xdp_num_queues); + rc = ena_create_io_tx_queues_in_range(adapter, xdp_first_ring, xdp_num_queues); if (rc) goto create_err; return 0; create_err: - ena_free_all_io_tx_resources(adapter); + ena_free_all_io_tx_resources_in_range(adapter, xdp_first_ring, xdp_num_queues); setup_err: return rc; } @@ -1625,20 +1626,23 @@ } } -static int ena_xdp_handle_buff(struct ena_ring *rx_ring, struct xdp_buff *xdp) +static int ena_xdp_handle_buff(struct ena_ring *rx_ring, struct xdp_buff *xdp, u16 num_descs) { struct ena_rx_buffer *rx_info; int ret; + /* XDP multi-buffer packets not supported */ + if (unlikely(num_descs > 1)) { + netdev_err_once(rx_ring->adapter->netdev, + "xdp: dropped unsupported multi-buffer packets\n"); + ena_increase_stat(&rx_ring->rx_stats.xdp_drop, 1, &rx_ring->syncp); + return ENA_XDP_DROP; + } + rx_info = &rx_ring->rx_buffer_info[rx_ring->ena_bufs[0].req_id]; xdp_prepare_buff(xdp, page_address(rx_info->page), rx_info->page_offset, rx_ring->ena_bufs[0].len, false); - /* If for some reason we received a bigger packet than - * we expect, then we simply drop it - */ - if (unlikely(rx_ring->ena_bufs[0].len > ENA_XDP_MAX_MTU)) - return ENA_XDP_DROP; ret = ena_xdp_execute(rx_ring, xdp); @@ -1707,7 +1711,7 @@ ena_rx_ctx.l4_proto, ena_rx_ctx.hash); if (ena_xdp_present_ring(rx_ring)) - xdp_verdict = ena_xdp_handle_buff(rx_ring, &xdp); + xdp_verdict = ena_xdp_handle_buff(rx_ring, &xdp, ena_rx_ctx.descs); /* allocate skb and fill it */ if (xdp_verdict == ENA_XDP_PASS) diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/amd/nmclan_cs.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/amd/nmclan_cs.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/amd/nmclan_cs.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/amd/nmclan_cs.c @@ -529,7 +529,8 @@ mace_init Resets the MACE chip. ---------------------------------------------------------------------------- */ -static int mace_init(mace_private *lp, unsigned int ioaddr, char *enet_addr) +static int mace_init(mace_private *lp, unsigned int ioaddr, + const char *enet_addr) { int i; int ct = 0; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe-dev.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe-dev.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe-dev.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe-dev.c @@ -1087,7 +1087,7 @@ return 0; } -static int xgbe_set_mac_address(struct xgbe_prv_data *pdata, u8 *addr) +static int xgbe_set_mac_address(struct xgbe_prv_data *pdata, const u8 *addr) { unsigned int mac_addr_hi, mac_addr_lo; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe-drv.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe-drv.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe-drv.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe-drv.c @@ -682,10 +682,24 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe-mdio.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe-mdio.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe-mdio.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe-mdio.c @@ -1178,7 +1178,19 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe.h linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe.h @@ -730,7 +730,7 @@ struct xgbe_hw_if { int (*tx_complete)(struct xgbe_ring_desc *); - int (*set_mac_address)(struct xgbe_prv_data *, u8 *addr); + int (*set_mac_address)(struct xgbe_prv_data *, const u8 *addr); int (*config_rx_mode)(struct xgbe_prv_data *); int (*enable_rx_csum)(struct xgbe_prv_data *); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/apple/bmac.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/apple/bmac.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/apple/bmac.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/apple/bmac.c @@ -308,7 +308,7 @@ { struct bmac_data *bp = netdev_priv(dev); volatile unsigned short regValue; - unsigned short *pWord16; + const unsigned short *pWord16; int i; /* XXDEBUG(("bmac: enter init_registers\n")); */ @@ -371,7 +371,7 @@ bmwrite(dev, BHASH1, bp->hash_table_mask[2]); /* bits 47 - 32 */ bmwrite(dev, BHASH0, bp->hash_table_mask[3]); /* bits 63 - 48 */ - pWord16 = (unsigned short *)dev->dev_addr; + pWord16 = (const unsigned short *)dev->dev_addr; bmwrite(dev, MADD0, *pWord16++); bmwrite(dev, MADD1, *pWord16++); bmwrite(dev, MADD2, *pWord16); @@ -522,7 +522,7 @@ { struct bmac_data *bp = netdev_priv(dev); unsigned char *p = addr; - unsigned short *pWord16; + const unsigned short *pWord16; unsigned long flags; int i; @@ -533,7 +533,7 @@ dev->dev_addr[i] = p[i]; } /* load up the hardware address */ - pWord16 = (unsigned short *)dev->dev_addr; + pWord16 = (const unsigned short *)dev->dev_addr; bmwrite(dev, MADD0, *pWord16++); bmwrite(dev, MADD1, *pWord16++); bmwrite(dev, MADD2, *pWord16); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_hw.h linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_hw.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_hw.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_hw.h @@ -219,7 +219,7 @@ int (*hw_ring_tx_head_update)(struct aq_hw_s *self, struct aq_ring_s *aq_ring); - int (*hw_set_mac_address)(struct aq_hw_s *self, u8 *mac_addr); + int (*hw_set_mac_address)(struct aq_hw_s *self, const u8 *mac_addr); int (*hw_soft_reset)(struct aq_hw_s *self); @@ -228,7 +228,7 @@ int (*hw_reset)(struct aq_hw_s *self); - int (*hw_init)(struct aq_hw_s *self, u8 *mac_addr); + int (*hw_init)(struct aq_hw_s *self, const u8 *mac_addr); int (*hw_start)(struct aq_hw_s *self); @@ -375,7 +375,7 @@ int (*set_phyloopback)(struct aq_hw_s *self, u32 mode, bool enable); int (*set_power)(struct aq_hw_s *self, unsigned int power_state, - u8 *mac); + const u8 *mac); int (*send_fw_request)(struct aq_hw_s *self, const struct hw_fw_request_iface *fw_req, diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_macsec.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_macsec.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_macsec.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_macsec.c @@ -35,7 +35,7 @@ static int aq_apply_secy_cfg(struct aq_nic_s *nic, const struct macsec_secy *secy); -static void aq_ether_addr_to_mac(u32 mac[2], unsigned char *emac) +static void aq_ether_addr_to_mac(u32 mac[2], const unsigned char *emac) { u32 tmp[2] = { 0 }; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_ring.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_ring.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_ring.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_ring.c @@ -577,11 +577,14 @@ return; kfree(self->buff_ring); + self->buff_ring = NULL; - if (self->dx_ring) + if (self->dx_ring) { dma_free_coherent(aq_nic_get_dev(self->aq_nic), self->size * self->dx_size, self->dx_ring, self->dx_ring_pa); + self->dx_ring = NULL; + } } unsigned int aq_ring_fill_stats_data(struct aq_ring_s *self, u64 *data) diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.c @@ -533,7 +533,7 @@ return aq_hw_err_from_flags(self); } -int hw_atl_b0_hw_mac_addr_set(struct aq_hw_s *self, u8 *mac_addr) +int hw_atl_b0_hw_mac_addr_set(struct aq_hw_s *self, const u8 *mac_addr) { unsigned int h = 0U; unsigned int l = 0U; @@ -558,7 +558,7 @@ return err; } -static int hw_atl_b0_hw_init(struct aq_hw_s *self, u8 *mac_addr) +static int hw_atl_b0_hw_init(struct aq_hw_s *self, const u8 *mac_addr) { static u32 aq_hw_atl_igcr_table_[4][2] = { [AQ_HW_IRQ_INVALID] = { 0x20000000U, 0x20000000U }, diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils.c @@ -965,7 +965,7 @@ } static int aq_fw1x_set_wake_magic(struct aq_hw_s *self, bool wol_enabled, - u8 *mac) + const u8 *mac) { struct hw_atl_utils_fw_rpc *prpc = NULL; unsigned int rpc_size = 0U; @@ -1008,7 +1008,7 @@ } static int aq_fw1x_set_power(struct aq_hw_s *self, unsigned int power_state, - u8 *mac) + const u8 *mac) { struct hw_atl_utils_fw_rpc *prpc = NULL; unsigned int rpc_size = 0U; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils_fw2x.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils_fw2x.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils_fw2x.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils_fw2x.c @@ -355,7 +355,7 @@ return 0; } -static int aq_fw2x_set_wol(struct aq_hw_s *self, u8 *mac) +static int aq_fw2x_set_wol(struct aq_hw_s *self, const u8 *mac) { struct hw_atl_utils_fw_rpc *rpc = NULL; struct offload_info *info = NULL; @@ -401,7 +401,7 @@ } static int aq_fw2x_set_power(struct aq_hw_s *self, unsigned int power_state, - u8 *mac) + const u8 *mac) { int err = 0; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2.c @@ -530,7 +530,7 @@ return aq_hw_err_from_flags(self); } -static int hw_atl2_hw_init(struct aq_hw_s *self, u8 *mac_addr) +static int hw_atl2_hw_init(struct aq_hw_s *self, const u8 *mac_addr) { static u32 aq_hw_atl2_igcr_table_[4][2] = { [AQ_HW_IRQ_INVALID] = { 0x20000000U, 0x20000000U }, diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/atheros/atl1c/atl1c_main.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/atheros/atl1c/atl1c_main.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/atheros/atl1c/atl1c_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/atheros/atl1c/atl1c_main.c @@ -493,15 +493,10 @@ 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_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 @@ 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 @@ 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 @@ 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 diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/atheros/atl1e/atl1e_main.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/atheros/atl1e/atl1e_main.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/atheros/atl1e/atl1e_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/atheros/atl1e/atl1e_main.c @@ -866,10 +866,13 @@ netdev_err(adapter->netdev, "offset(%d) > ring size(%d) !!\n", offset, adapter->ring_size); err = -1; - goto failed; + goto free_buffer; } return 0; +free_buffer: + kfree(tx_ring->tx_buffer); + tx_ring->tx_buffer = NULL; failed: if (adapter->ring_vir_addr != NULL) { dma_free_coherent(&pdev->dev, adapter->ring_size, diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bcmsysport.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bcmsysport.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bcmsysport.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bcmsysport.c @@ -1820,7 +1820,7 @@ } static void umac_set_hw_addr(struct bcm_sysport_priv *priv, - unsigned char *addr) + const unsigned char *addr) { u32 mac0 = (addr[0] << 24) | (addr[1] << 16) | (addr[2] << 8) | addr[3]; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bgmac.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bgmac.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bgmac.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bgmac.c @@ -768,7 +768,7 @@ udelay(2); } -static void bgmac_write_mac_address(struct bgmac *bgmac, u8 *addr) +static void bgmac_write_mac_address(struct bgmac *bgmac, const u8 *addr) { u32 tmp; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnx2.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnx2.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnx2.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnx2.c @@ -2704,7 +2704,7 @@ } static void -bnx2_set_mac_addr(struct bnx2 *bp, u8 *mac_addr, u32 pos) +bnx2_set_mac_addr(struct bnx2 *bp, const u8 *mac_addr, u32 pos) { u32 val; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x.h linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x.h @@ -2002,7 +2002,7 @@ * operation has been successfully scheduled and a negative - if a requested * operations has failed. */ -int bnx2x_set_mac_one(struct bnx2x *bp, u8 *mac, +int bnx2x_set_mac_one(struct bnx2x *bp, const u8 *mac, struct bnx2x_vlan_mac_obj *obj, bool set, int mac_type, unsigned long *ramrod_flags); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c @@ -1924,8 +1924,7 @@ /* Skip VLAN tag if present */ if (ether_type == ETH_P_8021Q) { - struct vlan_ethhdr *vhdr = - (struct vlan_ethhdr *)skb->data; + struct vlan_ethhdr *vhdr = skb_vlan_eth_hdr(skb); ether_type = ntohs(vhdr->h_vlan_encapsulated_proto); } diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c @@ -8428,7 +8428,7 @@ * Init service functions */ -int bnx2x_set_mac_one(struct bnx2x *bp, u8 *mac, +int bnx2x_set_mac_one(struct bnx2x *bp, const u8 *mac, struct bnx2x_vlan_mac_obj *obj, bool set, int mac_type, unsigned long *ramrod_flags) { @@ -9157,7 +9157,7 @@ else if (bp->wol) { u32 emac_base = port ? GRCBASE_EMAC1 : GRCBASE_EMAC0; - u8 *mac_addr = bp->dev->dev_addr; + const u8 *mac_addr = bp->dev->dev_addr; struct pci_dev *pdev = bp->pdev; u32 val; u16 pmc; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnxt/bnxt.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnxt/bnxt.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnxt/bnxt.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnxt/bnxt.c @@ -4882,7 +4882,7 @@ #endif static int bnxt_hwrm_set_vnic_filter(struct bnxt *bp, u16 vnic_id, u16 idx, - u8 *mac_addr) + const u8 *mac_addr) { struct hwrm_cfa_l2_filter_alloc_output *resp; struct hwrm_cfa_l2_filter_alloc_input *req; @@ -11749,6 +11749,8 @@ bnxt_cfg_ntp_filters(bp); if (test_and_clear_bit(BNXT_HWRM_EXEC_FWD_REQ_SP_EVENT, &bp->sp_event)) bnxt_hwrm_exec_fwd_req(bp); + if (test_and_clear_bit(BNXT_HWRM_PF_UNLOAD_SP_EVENT, &bp->sp_event)) + netdev_info(bp->dev, "Receive PF driver unload event!\n"); if (test_and_clear_bit(BNXT_PERIODIC_STATS_SP_EVENT, &bp->sp_event)) { bnxt_hwrm_port_qstats(bp, 0); bnxt_hwrm_port_qstats_ext(bp, 0); @@ -11923,6 +11925,11 @@ bp->fw_cap = 0; rc = bnxt_hwrm_ver_get(bp); + /* FW may be unresponsive after FLR. FLR must complete within 100 msec + * so wait before continuing with recovery. + */ + if (rc) + msleep(100); bnxt_try_map_fw_health_reg(bp); if (rc) { rc = bnxt_try_recover_fw(bp); @@ -12694,8 +12701,6 @@ } } } - if (test_and_clear_bit(BNXT_HWRM_PF_UNLOAD_SP_EVENT, &bp->sp_event)) - netdev_info(bp->dev, "Receive PF driver unload event!\n"); } #else diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c @@ -1151,7 +1151,7 @@ } } -int bnxt_approve_mac(struct bnxt *bp, u8 *mac, bool strict) +int bnxt_approve_mac(struct bnxt *bp, const u8 *mac, bool strict) { struct hwrm_func_vf_cfg_input *req; int rc = 0; @@ -1246,7 +1246,7 @@ { } -int bnxt_approve_mac(struct bnxt *bp, u8 *mac, bool strict) +int bnxt_approve_mac(struct bnxt *bp, const u8 *mac, bool strict) { return 0; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnxt/bnxt_tc.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnxt/bnxt_tc.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnxt/bnxt_tc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnxt/bnxt_tc.c @@ -2075,6 +2075,7 @@ rhashtable_destroy(&tc_info->flow_table); free_tc_info: kfree(tc_info); + bp->tc_info = NULL; return rc; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/genet/bcmgenet.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/genet/bcmgenet.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/genet/bcmgenet.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/genet/bcmgenet.c @@ -1248,7 +1248,8 @@ } } -static void bcmgenet_eee_enable_set(struct net_device *dev, bool enable) +void bcmgenet_eee_enable_set(struct net_device *dev, bool enable, + bool tx_lpi_enabled) { struct bcmgenet_priv *priv = netdev_priv(dev); u32 off = priv->hw_params->tbuf_offset + TBUF_ENERGY_CTRL; @@ -1268,7 +1269,7 @@ /* Enable EEE and switch to a 27Mhz clock automatically */ reg = bcmgenet_readl(priv->base + off); - if (enable) + if (tx_lpi_enabled) reg |= TBUF_EEE_EN | TBUF_PM_EN; else reg &= ~(TBUF_EEE_EN | TBUF_PM_EN); @@ -1289,6 +1290,7 @@ priv->eee.eee_enabled = enable; priv->eee.eee_active = enable; + priv->eee.tx_lpi_enabled = tx_lpi_enabled; } static int bcmgenet_get_eee(struct net_device *dev, struct ethtool_eee *e) @@ -1304,6 +1306,7 @@ e->eee_enabled = p->eee_enabled; e->eee_active = p->eee_active; + e->tx_lpi_enabled = p->tx_lpi_enabled; e->tx_lpi_timer = bcmgenet_umac_readl(priv, UMAC_EEE_LPI_TIMER); return phy_ethtool_get_eee(dev->phydev, e); @@ -1313,7 +1316,6 @@ { struct bcmgenet_priv *priv = netdev_priv(dev); struct ethtool_eee *p = &priv->eee; - int ret = 0; if (GENET_IS_V1(priv)) return -EOPNOTSUPP; @@ -1324,16 +1326,11 @@ p->eee_enabled = e->eee_enabled; if (!p->eee_enabled) { - bcmgenet_eee_enable_set(dev, false); + bcmgenet_eee_enable_set(dev, false, false); } else { - ret = phy_init_eee(dev->phydev, 0); - if (ret) { - netif_err(priv, hw, dev, "EEE initialization failed\n"); - return ret; - } - + p->eee_active = phy_init_eee(dev->phydev, false) >= 0; bcmgenet_umac_writel(priv, e->tx_lpi_timer, UMAC_EEE_LPI_TIMER); - bcmgenet_eee_enable_set(dev, true); + bcmgenet_eee_enable_set(dev, p->eee_active, e->tx_lpi_enabled); } return phy_ethtool_set_eee(dev->phydev, e); @@ -2090,8 +2087,10 @@ /* Note: if we ever change from DMA_TX_APPEND_CRC below we * will need to restore software padding of "runt" packets */ + len_stat |= DMA_TX_APPEND_CRC; + if (!i) { - len_stat |= DMA_TX_APPEND_CRC | DMA_SOP; + len_stat |= DMA_SOP; if (skb->ip_summed == CHECKSUM_PARTIAL) len_stat |= DMA_TX_DO_CSUM; } @@ -3239,7 +3238,7 @@ } static void bcmgenet_set_hw_addr(struct bcmgenet_priv *priv, - unsigned char *addr) + const unsigned char *addr) { bcmgenet_umac_writel(priv, get_unaligned_be32(&addr[0]), UMAC_MAC0); bcmgenet_umac_writel(priv, get_unaligned_be16(&addr[4]), UMAC_MAC1); @@ -3537,7 +3536,7 @@ #define MAX_MDF_FILTER 17 static inline void bcmgenet_set_mdf_addr(struct bcmgenet_priv *priv, - unsigned char *addr, + const unsigned char *addr, int *i) { bcmgenet_umac_writel(priv, addr[0] << 8 | addr[1], @@ -4217,9 +4216,6 @@ if (!device_may_wakeup(d)) phy_resume(dev->phydev); - if (priv->eee.eee_enabled) - bcmgenet_eee_enable_set(dev, true); - bcmgenet_netif_start(dev); netif_device_attach(dev); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/genet/bcmmii.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/genet/bcmmii.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/genet/bcmmii.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/genet/bcmmii.c @@ -25,6 +25,7 @@ #include "bcmgenet.h" + /* setup netdev link state when PHY link status change and * update UMAC and RGMII block when link up */ @@ -102,6 +103,11 @@ reg |= CMD_TX_EN | CMD_RX_EN; } bcmgenet_umac_writel(priv, reg, UMAC_CMD); + + priv->eee.eee_active = phy_init_eee(phydev, 0) >= 0; + bcmgenet_eee_enable_set(dev, + priv->eee.eee_enabled && priv->eee.eee_active, + priv->eee.tx_lpi_enabled); } else { /* done if nothing has changed */ if (!status_changed) diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/tg3.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/tg3.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/tg3.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/tg3.c @@ -6448,6 +6448,14 @@ int i; u32 *regs; + /* If it is a PCI error, all registers will be 0xffff, + * we don't dump them out, just report the error and return + */ + if (tp->pdev->error_state != pci_channel_io_normal) { + netdev_err(tp->dev, "PCI channel ERROR!\n"); + return; + } + regs = kzalloc(TG3_REG_BLK_SIZE, GFP_ATOMIC); if (!regs) return; @@ -6854,7 +6862,7 @@ 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 +7888,10 @@ 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 +8162,7 @@ drop: dev_kfree_skb_any(skb); drop_nofree: - tp->tx_dropped++; + tnapi->tx_dropped++; return NETDEV_TX_OK; } @@ -9331,7 +9341,7 @@ /* 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 +9362,13 @@ /* 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; @@ -11177,7 +11194,8 @@ rtnl_lock(); tg3_full_lock(tp, 0); - if (tp->pcierr_recovery || !netif_running(tp->dev)) { + if (tp->pcierr_recovery || !netif_running(tp->dev) || + tp->pdev->error_state != pci_channel_io_normal) { tg3_flag_clear(tp, RESET_TASK_PENDING); tg3_full_unlock(tp); rtnl_unlock(); @@ -11906,6 +11924,9 @@ { 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 +11973,26 @@ 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 +18127,8 @@ if (netif_running(dev)) dev_close(dev); - tg3_power_down(tp); + if (system_state == SYSTEM_POWER_OFF) + tg3_power_down(tp); rtnl_unlock(); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/chelsio/cxgb4/t4_hw.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/chelsio/cxgb4/t4_hw.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/chelsio/cxgb4/t4_hw.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/chelsio/cxgb4/t4_hw.c @@ -3816,6 +3816,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls_cm.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls_cm.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls_cm.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls_cm.c @@ -2260,7 +2260,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/cortina/gemini.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/cortina/gemini.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/cortina/gemini.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/cortina/gemini.c @@ -432,8 +432,8 @@ .val = CONFIG0_MAXLEN_1536, }, { - .max_l3_len = 1542, - .val = CONFIG0_MAXLEN_1542, + .max_l3_len = 1548, + .val = CONFIG0_MAXLEN_1548, }, { .max_l3_len = 9212, @@ -1145,6 +1145,7 @@ dma_addr_t mapping; unsigned short mtu; void *buffer; + int ret; mtu = ETH_HLEN; mtu += netdev->mtu; @@ -1159,9 +1160,30 @@ 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; @@ -1978,15 +2000,6 @@ 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) { @@ -2208,7 +2221,6 @@ .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, }; @@ -2458,11 +2470,12 @@ 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, NAPI_POLL_WEIGHT); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/dnet.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/dnet.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/dnet.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/dnet.c @@ -60,11 +60,11 @@ { u16 tmp; - tmp = be16_to_cpup((__be16 *)bp->dev->dev_addr); + tmp = be16_to_cpup((const __be16 *)bp->dev->dev_addr); dnet_writew_mac(bp, DNET_INTERNAL_MAC_ADDR_0_REG, tmp); - tmp = be16_to_cpup((__be16 *)(bp->dev->dev_addr + 2)); + tmp = be16_to_cpup((const __be16 *)(bp->dev->dev_addr + 2)); dnet_writew_mac(bp, DNET_INTERNAL_MAC_ADDR_1_REG, tmp); - tmp = be16_to_cpup((__be16 *)(bp->dev->dev_addr + 4)); + tmp = be16_to_cpup((const __be16 *)(bp->dev->dev_addr + 4)); dnet_writew_mac(bp, DNET_INTERNAL_MAC_ADDR_2_REG, tmp); } diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/emulex/benet/be_cmds.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/emulex/benet/be_cmds.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/emulex/benet/be_cmds.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/emulex/benet/be_cmds.c @@ -1080,7 +1080,7 @@ } /* Uses synchronous MCCQ */ -int be_cmd_pmac_add(struct be_adapter *adapter, u8 *mac_addr, +int be_cmd_pmac_add(struct be_adapter *adapter, const u8 *mac_addr, u32 if_id, u32 *pmac_id, u32 domain) { struct be_mcc_wrb *wrb; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/emulex/benet/be_cmds.h linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/emulex/benet/be_cmds.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/emulex/benet/be_cmds.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/emulex/benet/be_cmds.h @@ -2385,7 +2385,7 @@ int be_fw_wait_ready(struct be_adapter *adapter); int be_cmd_mac_addr_query(struct be_adapter *adapter, u8 *mac_addr, bool permanent, u32 if_handle, u32 pmac_id); -int be_cmd_pmac_add(struct be_adapter *adapter, u8 *mac_addr, u32 if_id, +int be_cmd_pmac_add(struct be_adapter *adapter, const u8 *mac_addr, u32 if_id, u32 *pmac_id, u32 domain); int be_cmd_pmac_del(struct be_adapter *adapter, u32 if_id, int pmac_id, u32 domain); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/emulex/benet/be_main.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/emulex/benet/be_main.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/emulex/benet/be_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/emulex/benet/be_main.c @@ -272,7 +272,7 @@ iowrite32(val, adapter->db + DB_CQ_OFFSET); } -static int be_dev_mac_add(struct be_adapter *adapter, u8 *mac) +static int be_dev_mac_add(struct be_adapter *adapter, const u8 *mac) { int i; @@ -1125,7 +1125,7 @@ struct be_wrb_params *wrb_params) { - struct vlan_ethhdr *veh = (struct vlan_ethhdr *)skb->data; + struct vlan_ethhdr *veh = skb_vlan_eth_hdr(skb); unsigned int eth_hdr_len; struct iphdr *ip; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/ethoc.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/ethoc.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/ethoc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/ethoc.c @@ -806,8 +806,8 @@ static void ethoc_do_set_mac_address(struct net_device *dev) { + const unsigned char *mac = dev->dev_addr; struct ethoc *priv = netdev_priv(dev); - unsigned char *mac = dev->dev_addr; ethoc_write(priv, MAC_ADDR0, (mac[2] << 24) | (mac[3] << 16) | (mac[4] << 8) | (mac[5] << 0)); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/fealnx.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/fealnx.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/fealnx.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/fealnx.c @@ -827,7 +827,7 @@ return -EAGAIN; for (i = 0; i < 3; i++) - iowrite16(((unsigned short*)dev->dev_addr)[i], + iowrite16(((const unsigned short *)dev->dev_addr)[i], ioaddr + PAR0 + i*2); init_ring(dev); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c @@ -272,7 +272,7 @@ } else { eth_hw_addr_random(net_dev); err = priv->mac_dev->change_addr(priv->mac_dev->fman_mac, - (enet_addr_t *)net_dev->dev_addr); + (const enet_addr_t *)net_dev->dev_addr); if (err) { dev_err(dev, "Failed to set random MAC address\n"); return -EINVAL; @@ -452,7 +452,7 @@ mac_dev = priv->mac_dev; err = mac_dev->change_addr(mac_dev->fman_mac, - (enet_addr_t *)net_dev->dev_addr); + (const enet_addr_t *)net_dev->dev_addr); if (err < 0) { netif_err(priv, drv, net_dev, "mac_dev->change_addr() = %d\n", err); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.c @@ -952,14 +952,12 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/freescale/dpaa2/dpaa2-switch-flower.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/freescale/dpaa2/dpaa2-switch-flower.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/freescale/dpaa2/dpaa2-switch-flower.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/freescale/dpaa2/dpaa2-switch-flower.c @@ -139,7 +139,8 @@ err = dpsw_acl_add_entry(ethsw->mc_io, 0, ethsw->dpsw_handle, filter_block->acl_id, acl_entry_cfg); - dma_unmap_single(dev, acl_entry_cfg->key_iova, sizeof(cmd_buff), + dma_unmap_single(dev, acl_entry_cfg->key_iova, + DPAA2_ETHSW_PORT_ACL_CMD_BUF_SIZE, DMA_TO_DEVICE); if (err) { dev_err(dev, "dpsw_acl_add_entry() failed %d\n", err); @@ -181,8 +182,8 @@ err = dpsw_acl_remove_entry(ethsw->mc_io, 0, ethsw->dpsw_handle, block->acl_id, acl_entry_cfg); - dma_unmap_single(dev, acl_entry_cfg->key_iova, sizeof(cmd_buff), - DMA_TO_DEVICE); + dma_unmap_single(dev, acl_entry_cfg->key_iova, + DPAA2_ETHSW_PORT_ACL_CMD_BUF_SIZE, DMA_TO_DEVICE); if (err) { dev_err(dev, "dpsw_acl_remove_entry() failed %d\n", err); kfree(cmd_buff); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/freescale/fec_main.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/freescale/fec_main.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/freescale/fec_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/freescale/fec_main.c @@ -1813,6 +1813,7 @@ /* if any of the above changed restart the FEC */ if (status_change) { + netif_stop_queue(ndev); napi_disable(&fep->napi); netif_tx_lock_bh(ndev); fec_restart(ndev); @@ -1822,6 +1823,7 @@ } } else { if (fep->link) { + netif_stop_queue(ndev); napi_disable(&fep->napi); netif_tx_lock_bh(ndev); fec_stop(ndev); @@ -3436,31 +3438,26 @@ return 0; } -static u16 fec_enet_get_raw_vlan_tci(struct sk_buff *skb) -{ - struct vlan_ethhdr *vhdr; - unsigned short vlan_TCI = 0; - - if (skb->protocol == htons(ETH_P_ALL)) { - vhdr = (struct vlan_ethhdr *)(skb->data); - vlan_TCI = ntohs(vhdr->h_vlan_TCI); - } - - return vlan_TCI; -} - static u16 fec_enet_select_queue(struct net_device *ndev, struct sk_buff *skb, struct net_device *sb_dev) { struct fec_enet_private *fep = netdev_priv(ndev); - u16 vlan_tag; + u16 vlan_tag = 0; if (!(fep->quirks & FEC_QUIRK_HAS_AVB)) return netdev_pick_tx(ndev, skb, NULL); - vlan_tag = fec_enet_get_raw_vlan_tci(skb); - if (!vlan_tag) + /* VLAN is present in the payload.*/ + if (eth_type_vlan(skb->protocol)) { + struct vlan_ethhdr *vhdr = skb_vlan_eth_hdr(skb); + + vlan_tag = ntohs(vhdr->h_vlan_TCI); + /* VLAN is present in the skb but not yet pushed in the payload.*/ + } else if (skb_vlan_tag_present(skb)) { + vlan_tag = skb->vlan_tci; + } else { return vlan_tag; + } return fec_enet_vlan_pri_to_queue[vlan_tag >> 13]; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/google/gve/gve_main.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/google/gve/gve_main.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/google/gve/gve_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/google/gve/gve_main.c @@ -139,7 +139,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/google/gve/gve_rx_dqo.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/google/gve/gve_rx_dqo.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/google/gve/gve_rx_dqo.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/google/gve/gve_rx_dqo.c @@ -157,7 +157,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/google/gve/gve_tx_dqo.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/google/gve/gve_tx_dqo.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/google/gve/gve_tx_dqo.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/google/gve/gve_tx_dqo.c @@ -350,6 +350,7 @@ /* Validates and prepares `skb` for TSO. * * Returns header length, or < 0 if invalid. + * Warning : Might change skb->head (and thus skb_shinfo). */ static int gve_prep_tso(struct sk_buff *skb) { @@ -451,8 +452,8 @@ static int gve_tx_add_skb_no_copy_dqo(struct gve_tx_ring *tx, struct sk_buff *skb) { - const struct skb_shared_info *shinfo = skb_shinfo(skb); const bool is_gso = skb_is_gso(skb); + struct skb_shared_info *shinfo; u32 desc_idx = tx->dqo_tx.tail; struct gve_tx_pending_packet_dqo *pkt; @@ -477,6 +478,8 @@ desc_idx = (desc_idx + 1) & tx->mask; } + /* Must get after gve_prep_tso(), which can change shinfo. */ + shinfo = skb_shinfo(skb); gve_tx_fill_general_ctx_desc(&tx->dqo.tx_ring[desc_idx].general_ctx, &metadata); desc_idx = (desc_idx + 1) & tx->mask; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hisi_femac.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hisi_femac.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hisi_femac.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hisi_femac.c @@ -427,7 +427,7 @@ } static int hisi_femac_set_hw_mac_addr(struct hisi_femac_priv *priv, - unsigned char *mac) + const unsigned char *mac) { u32 reg; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hix5hd2_gmac.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hix5hd2_gmac.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hix5hd2_gmac.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hix5hd2_gmac.c @@ -429,7 +429,7 @@ static void hix5hd2_hw_set_mac_addr(struct net_device *dev) { struct hix5hd2_priv *priv = netdev_priv(dev); - unsigned char *mac = dev->dev_addr; + const unsigned char *mac = dev->dev_addr; u32 val; val = mac[1] | (mac[0] << 8); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hnae3.h linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hnae3.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hnae3.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hnae3.h @@ -590,7 +590,7 @@ u32 *tx_usecs_high, u32 *rx_usecs_high); void (*get_mac_addr)(struct hnae3_handle *handle, u8 *p); - int (*set_mac_addr)(struct hnae3_handle *handle, void *p, + int (*set_mac_addr)(struct hnae3_handle *handle, const void *p, bool is_first); int (*do_ioctl)(struct hnae3_handle *handle, struct ifreq *ifr, int cmd); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c @@ -1512,7 +1512,7 @@ if (unlikely(rc < 0)) return rc; - vhdr = (struct vlan_ethhdr *)skb->data; + vhdr = skb_vlan_eth_hdr(skb); vhdr->h_vlan_TCI |= cpu_to_be16((skb->priority << VLAN_PRIO_SHIFT) & VLAN_PRIO_MASK); @@ -4915,7 +4915,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c @@ -72,6 +72,7 @@ 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 @@ 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) @@ -9440,7 +9444,7 @@ return 0; } -static int hclge_set_mac_addr(struct hnae3_handle *handle, void *p, +static int hclge_set_mac_addr(struct hnae3_handle *handle, const void *p, bool is_first) { const unsigned char *new_addr = (const unsigned char *)p; @@ -10196,8 +10200,6 @@ 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) @@ -10212,8 +10214,6 @@ break; } } - - mutex_unlock(&hdev->vport_lock); } void hclge_rm_vport_all_vlan_table(struct hclge_vport *vport, bool is_del_list) @@ -10618,11 +10618,16 @@ * 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 @@ -10637,17 +10642,22 @@ } 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); @@ -10687,6 +10697,7 @@ 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]; @@ -10697,21 +10708,26 @@ 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); } @@ -11701,6 +11717,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_mbx.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_mbx.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_mbx.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_mbx.c @@ -56,17 +56,19 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ #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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c @@ -1349,7 +1349,7 @@ ether_addr_copy(p, hdev->hw.mac.mac_addr); } -static int hclgevf_set_mac_addr(struct hnae3_handle *handle, void *p, +static int hclgevf_set_mac_addr(struct hnae3_handle *handle, const void *p, bool is_first) { struct hclgevf_dev *hdev = hclgevf_ae_get_hdev(handle); @@ -1710,6 +1710,8 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ } 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 @@ /* 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.h linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.h @@ -281,6 +281,7 @@ 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 @@ -357,3 +358,3 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_mbx.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_mbx.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_mbx.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_mbx.c @@ -60,6 +60,9 @@ 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 @@ 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 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); + "VF mbx resp flag not clear(%u)\n", + 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); + 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 @@ 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 @@ struct hclgevf_cmq_ring *crq; struct hclgevf_desc *desc; u16 flag; + u16 code; crq = &hdev->hw.cmq.crq; @@ -228,10 +238,11 @@ 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 @@ * 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 @@ 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 @@ 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 @@ } 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 @@ 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 @@ * 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/i40e/i40e.h linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/i40e/i40e.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/i40e/i40e.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/i40e/i40e.h @@ -437,7 +437,7 @@ return !!ch->fwd; } -static inline u8 *i40e_channel_mac(struct i40e_channel *ch) +static inline const u8 *i40e_channel_mac(struct i40e_channel *ch) { if (i40e_is_channel_macvlan(ch)) return ch->fwd->netdev->dev_addr; @@ -566,7 +566,6 @@ #define I40E_FLAG_DISABLE_FW_LLDP BIT(24) #define I40E_FLAG_RS_FEC BIT(25) #define I40E_FLAG_BASE_R_FEC BIT(26) -#define I40E_FLAG_VF_VLAN_PRUNING BIT(27) /* TOTAL_PORT_SHUTDOWN * Allows to physically disable the link on the NIC's port. * If enabled, (after link down request from the OS) @@ -589,6 +588,7 @@ * 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/i40e/i40e_common.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/i40e/i40e_common.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/i40e/i40e_common.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/i40e/i40e_common.c @@ -1080,7 +1080,7 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/i40e/i40e_main.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/i40e/i40e_main.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/i40e/i40e_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/i40e/i40e_main.c @@ -102,12 +102,18 @@ static void netdev_hw_addr_refcnt(struct i40e_mac_filter *f, struct net_device *netdev, int delta) { + struct netdev_hw_addr_list *ha_list; struct netdev_hw_addr *ha; if (!f || !netdev) return; - netdev_for_each_mc_addr(ha, netdev) { + if (is_unicast_ether_addr(f->macaddr) || is_link_local_ether_addr(f->macaddr)) + ha_list = &netdev->uc; + else + ha_list = &netdev->mc; + + netdev_hw_addr_list_for_each(ha, ha_list) { if (ether_addr_equal(ha->addr, f->macaddr)) { ha->refcount += delta; if (ha->refcount <= 0) @@ -5317,7 +5323,7 @@ { int v, ret = 0; - for (v = 0; v < pf->hw.func_caps.num_vsis; v++) { + for (v = 0; v < pf->num_alloc_vsi; v++) { if (pf->vsi[v]) { ret = i40e_vsi_wait_queues_disabled(pf->vsi[v]); if (ret) @@ -16132,7 +16138,7 @@ 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 @@ -16258,11 +16264,15 @@ 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); @@ -16414,6 +16424,9 @@ return; i40e_reset_and_rebuild(pf, false, false); +#ifdef CONFIG_PCI_IOV + i40e_restore_all_vfs_msi_state(pdev); +#endif /* CONFIG_PCI_IOV */ } /** diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/i40e/i40e_txrx.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/i40e/i40e_txrx.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/i40e/i40e_txrx.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/i40e/i40e_txrx.c @@ -2759,7 +2759,7 @@ 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 @@ -2975,7 +2975,7 @@ rc = skb_cow_head(skb, 0); if (rc < 0) return rc; - vhdr = (struct vlan_ethhdr *)skb->data; + vhdr = skb_vlan_eth_hdr(skb); vhdr->h_vlan_TCI = htons(tx_flags >> I40E_TX_FLAGS_VLAN_SHIFT); } else { diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c @@ -152,6 +152,32 @@ (u8 *)&pfe, sizeof(struct virtchnl_pf_event)); } +#ifdef CONFIG_PCI_IOV +void i40e_restore_all_vfs_msi_state(struct pci_dev *pdev) +{ + u16 vf_id; + u16 pos; + + /* Continue only if this is a PF */ + if (!pdev->is_physfn) + return; + + if (!pci_num_vf(pdev)) + return; + + pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_SRIOV); + if (pos) { + struct pci_dev *vf_dev = NULL; + + pci_read_config_word(pdev, pos + PCI_SRIOV_VF_DID, &vf_id); + while ((vf_dev = pci_get_device(pdev->vendor, vf_id, vf_dev))) { + if (vf_dev->is_virtfn && vf_dev->physfn == pdev) + pci_restore_msi_state(vf_dev); + } + } +} +#endif /* CONFIG_PCI_IOV */ + /** * i40e_vc_notify_vf_reset * @vf: pointer to the VF structure @@ -2577,6 +2603,14 @@ int aq_ret = 0; int i; + if (vf->is_disabled_from_host) { + aq_ret = -EPERM; + dev_info(&pf->pdev->dev, + "Admin has disabled VF %d, will not enable queues\n", + vf->vf_id); + goto error_param; + } + if (!test_bit(I40E_VF_STATE_ACTIVE, &vf->vf_states)) { aq_ret = I40E_ERR_PARAM; goto error_param; @@ -3427,16 +3461,16 @@ bool found = false; int bkt; - if (!tc_filter->action) { + if (tc_filter->action != VIRTCHNL_ACTION_TC_REDIRECT) { dev_info(&pf->pdev->dev, - "VF %d: Currently ADq doesn't support Drop Action\n", - vf->vf_id); + "VF %d: ADQ doesn't support this action (%d)\n", + vf->vf_id, tc_filter->action); goto err; } /* action_meta is TC number here to which the filter is applied */ if (!tc_filter->action_meta || - tc_filter->action_meta > I40E_MAX_VF_VSI) { + tc_filter->action_meta > vf->num_tc) { dev_info(&pf->pdev->dev, "VF %d: Invalid TC number %u\n", vf->vf_id, tc_filter->action_meta); goto err; @@ -4604,9 +4638,12 @@ struct i40e_link_status *ls = &pf->hw.phy.link_info; struct virtchnl_pf_event pfe; struct i40e_hw *hw = &pf->hw; + struct i40e_vsi *vsi; + unsigned long q_map; struct i40e_vf *vf; int abs_vf_id; int ret = 0; + int tmp; if (test_and_set_bit(__I40E_VIRTCHNL_OP_PENDING, pf->state)) { dev_warn(&pf->pdev->dev, "Unable to configure VFs, other operation is pending.\n"); @@ -4629,17 +4666,38 @@ switch (link) { case IFLA_VF_LINK_STATE_AUTO: vf->link_forced = false; + vf->is_disabled_from_host = false; + /* reset needed to reinit VF resources */ + i40e_vc_reset_vf(vf, true); i40e_set_vf_link_state(vf, &pfe, ls); break; case IFLA_VF_LINK_STATE_ENABLE: vf->link_forced = true; vf->link_up = true; + vf->is_disabled_from_host = false; + /* reset needed to reinit VF resources */ + i40e_vc_reset_vf(vf, true); i40e_set_vf_link_state(vf, &pfe, ls); break; case IFLA_VF_LINK_STATE_DISABLE: vf->link_forced = true; vf->link_up = false; i40e_set_vf_link_state(vf, &pfe, ls); + + vsi = pf->vsi[vf->lan_vsi_idx]; + q_map = BIT(vsi->num_queue_pairs) - 1; + + vf->is_disabled_from_host = true; + + /* Try to stop both Tx&Rx rings even if one of the calls fails + * to ensure we stop the rings even in case of errors. + * If any of them returns with an error then the first + * error that occurred will be returned. + */ + tmp = i40e_ctrl_vf_tx_rings(vsi, q_map, false); + ret = i40e_ctrl_vf_rx_rings(vsi, q_map, false); + + ret = tmp ? tmp : ret; break; default: ret = -EINVAL; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.h linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.h @@ -98,6 +98,7 @@ bool link_forced; bool link_up; /* only valid if VF link is forced */ bool spoofchk; + bool is_disabled_from_host; /* PF ctrl of VF enable/disable */ u16 num_vlan; /* ADq related variables */ @@ -135,6 +136,9 @@ void i40e_vc_notify_link_state(struct i40e_pf *pf); void i40e_vc_notify_reset(struct i40e_pf *pf); +#ifdef CONFIG_PCI_IOV +void i40e_restore_all_vfs_msi_state(struct pci_dev *pdev); +#endif /* CONFIG_PCI_IOV */ int i40e_get_vf_stats(struct net_device *netdev, int vf_id, struct ifla_vf_stats *vf_stats); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ice/ice.h linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ice/ice.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ice/ice.h +++ linux-xilinx-zynqmp-5.15.0/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 @@ /* 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ice/ice_common.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ice/ice_common.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ice/ice_common.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ice/ice_common.c @@ -2022,6 +2022,14 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ice/ice_lag.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ice/ice_lag.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ice/ice_lag.c +++ linux-xilinx-zynqmp-5.15.0/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" /** @@ -238,6 +239,26 @@ } /** + * 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 * @ptr: opaque pointer data @@ -277,26 +298,6 @@ } /** - * 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 * @event: event type @@ -322,9 +323,6 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ice/ice_lib.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ice/ice_lib.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ice/ice_lib.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ice/ice_lib.c @@ -954,8 +954,7 @@ 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); } /** @@ -3599,0 +3599,47 @@ + +/** + * 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ice/ice_main.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ice/ice_main.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ice/ice_main.c +++ linux-xilinx-zynqmp-5.15.0/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" @@ -4274,6 +4275,20 @@ 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 */ @@ -4346,6 +4361,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/igb/igb_ethtool.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/igb/igb_ethtool.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/igb/igb_ethtool.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/igb/igb_ethtool.c @@ -2974,11 +2974,15 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/igc/igc.h linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/igc/igc.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/igc/igc.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/igc/igc.h @@ -537,6 +537,7 @@ u16 etype; __be16 vlan_etype; u16 vlan_tci; + u16 vlan_tci_mask; u8 src_addr[ETH_ALEN]; u8 dst_addr[ETH_ALEN]; u8 user_data[8]; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/igc/igc_ethtool.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/igc/igc_ethtool.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/igc/igc_ethtool.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/igc/igc_ethtool.c @@ -950,6 +950,7 @@ } #define ETHER_TYPE_FULL_MASK ((__force __be16)~0) +#define VLAN_TCI_FULL_MASK ((__force __be16)~0) static int igc_ethtool_get_nfc_rule(struct igc_adapter *adapter, struct ethtool_rxnfc *cmd) { @@ -972,10 +973,16 @@ fsp->m_u.ether_spec.h_proto = ETHER_TYPE_FULL_MASK; } + if (rule->filter.match_flags & IGC_FILTER_FLAG_VLAN_ETYPE) { + fsp->flow_type |= FLOW_EXT; + fsp->h_ext.vlan_etype = rule->filter.vlan_etype; + fsp->m_ext.vlan_etype = ETHER_TYPE_FULL_MASK; + } + if (rule->filter.match_flags & IGC_FILTER_FLAG_VLAN_TCI) { fsp->flow_type |= FLOW_EXT; fsp->h_ext.vlan_tci = htons(rule->filter.vlan_tci); - fsp->m_ext.vlan_tci = htons(VLAN_PRIO_MASK); + fsp->m_ext.vlan_tci = htons(rule->filter.vlan_tci_mask); } if (rule->filter.match_flags & IGC_FILTER_FLAG_DST_MAC_ADDR) { @@ -1210,6 +1217,7 @@ if ((fsp->flow_type & FLOW_EXT) && fsp->m_ext.vlan_tci) { rule->filter.vlan_tci = ntohs(fsp->h_ext.vlan_tci); + rule->filter.vlan_tci_mask = ntohs(fsp->m_ext.vlan_tci); rule->filter.match_flags |= IGC_FILTER_FLAG_VLAN_TCI; } @@ -1247,11 +1255,19 @@ memcpy(rule->filter.user_mask, fsp->m_ext.data, sizeof(fsp->m_ext.data)); } - /* When multiple filter options or user data or vlan etype is set, use a - * flex filter. + /* The i225/i226 has various different filters. Flex filters provide a + * way to match up to the first 128 bytes of a packet. Use them for: + * a) For specific user data + * b) For VLAN EtherType + * c) For full TCI match + * d) Or in case multiple filter criteria are set + * + * Otherwise, use the simple MAC, VLAN PRIO or EtherType filters. */ if ((rule->filter.match_flags & IGC_FILTER_FLAG_USER_DATA) || (rule->filter.match_flags & IGC_FILTER_FLAG_VLAN_ETYPE) || + ((rule->filter.match_flags & IGC_FILTER_FLAG_VLAN_TCI) && + rule->filter.vlan_tci_mask == ntohs(VLAN_TCI_FULL_MASK)) || (rule->filter.match_flags & (rule->filter.match_flags - 1))) rule->flex = true; else @@ -1321,6 +1337,26 @@ return -EINVAL; } + /* There are two ways to match the VLAN TCI: + * 1. Match on PCP field and use vlan prio filter for it + * 2. Match on complete TCI field and use flex filter for it + */ + if ((fsp->flow_type & FLOW_EXT) && + fsp->m_ext.vlan_tci && + fsp->m_ext.vlan_tci != htons(VLAN_PRIO_MASK) && + fsp->m_ext.vlan_tci != VLAN_TCI_FULL_MASK) { + netdev_dbg(netdev, "VLAN mask not supported\n"); + return -EOPNOTSUPP; + } + + /* VLAN EtherType can only be matched by full mask. */ + if ((fsp->flow_type & FLOW_EXT) && + fsp->m_ext.vlan_etype && + fsp->m_ext.vlan_etype != ETHER_TYPE_FULL_MASK) { + netdev_dbg(netdev, "VLAN EtherType mask not supported\n"); + return -EOPNOTSUPP; + } + if (fsp->location >= IGC_MAX_RXNFC_RULES) { netdev_dbg(netdev, "Invalid location\n"); return -EINVAL; @@ -1810,7 +1846,7 @@ 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 @@ -1835,18 +1871,33 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/igc/igc_tsn.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/igc/igc_tsn.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/igc/igc_tsn.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/igc/igc_tsn.c @@ -185,7 +185,7 @@ wr32(IGC_TQAVCC(i), tqavcc); wr32(IGC_TQAVHC(i), - 0x80000000 + ring->hicredit * 0x7735); + 0x80000000 + ring->hicredit * 0x7736); } else { /* Disable any CBS for the queue */ txqctl &= ~(IGC_TXQCTL_QAV_SEL_MASK); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c @@ -3340,7 +3340,7 @@ { struct ixgbe_adapter *adapter = netdev_priv(dev); struct ixgbe_hw *hw = &adapter->hw; - s32 status = IXGBE_ERR_PHY_ADDR_INVALID; + s32 status = -EFAULT; u8 databyte = 0xFF; int i = 0; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c @@ -2758,7 +2758,6 @@ { struct ixgbe_hw *hw = &adapter->hw; u32 eicr = adapter->interrupt_event; - s32 rc; if (test_bit(__IXGBE_DOWN, &adapter->state)) return; @@ -2792,14 +2791,13 @@ } /* Check if this is not due to overtemp */ - if (hw->phy.ops.check_overtemp(hw) != IXGBE_ERR_OVERTEMP) + if (!hw->phy.ops.check_overtemp(hw)) return; break; case IXGBE_DEV_ID_X550EM_A_1G_T: case IXGBE_DEV_ID_X550EM_A_1G_T_L: - rc = hw->phy.ops.check_overtemp(hw); - if (rc != IXGBE_ERR_OVERTEMP) + if (!hw->phy.ops.check_overtemp(hw)) return; break; default: @@ -5514,7 +5512,7 @@ { u32 speed; bool autoneg, link_up = false; - int ret = IXGBE_ERR_LINK_SETUP; + int ret = -EIO; if (hw->mac.ops.check_link) ret = hw->mac.ops.check_link(hw, &speed, &link_up, false); @@ -5943,13 +5941,13 @@ err = hw->mac.ops.init_hw(hw); switch (err) { case 0: - case IXGBE_ERR_SFP_NOT_PRESENT: - case IXGBE_ERR_SFP_NOT_SUPPORTED: + case -ENOENT: + case -EOPNOTSUPP: break; - case IXGBE_ERR_MASTER_REQUESTS_PENDING: - e_dev_err("master disable timed out\n"); + case -EALREADY: + e_dev_err("primary disable timed out\n"); break; - case IXGBE_ERR_EEPROM_VERSION: + case -EACCES: /* We are running on a pre-production device, log a warning */ e_dev_warn("This device is a pre-production adapter/LOM. " "Please be aware there may be issues associated with " @@ -7759,10 +7757,10 @@ adapter->sfp_poll_time = jiffies + IXGBE_SFP_POLL_JIFFIES - 1; err = hw->phy.ops.identify_sfp(hw); - if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) + if (err == -EOPNOTSUPP) goto sfp_out; - if (err == IXGBE_ERR_SFP_NOT_PRESENT) { + if (err == -ENOENT) { /* If no cable is present, then we need to reset * the next time we find a good cable. */ adapter->flags2 |= IXGBE_FLAG2_SFP_NEEDS_RESET; @@ -7788,7 +7786,7 @@ else err = hw->mac.ops.setup_sfp(hw); - if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) + if (err == -EOPNOTSUPP) goto sfp_out; adapter->flags |= IXGBE_FLAG_NEED_LINK_CONFIG; @@ -7797,8 +7795,8 @@ sfp_out: clear_bit(__IXGBE_IN_SFP_INIT, &adapter->state); - if ((err == IXGBE_ERR_SFP_NOT_SUPPORTED) && - (adapter->netdev->reg_state == NETREG_REGISTERED)) { + if (err == -EOPNOTSUPP && + adapter->netdev->reg_state == NETREG_REGISTERED) { e_dev_err("failed to initialize because an unsupported " "SFP+ module type was detected.\n"); e_dev_err("Reload the driver after installing a " @@ -7868,7 +7866,7 @@ static void ixgbe_phy_interrupt_subtask(struct ixgbe_adapter *adapter) { struct ixgbe_hw *hw = &adapter->hw; - u32 status; + bool overtemp; if (!(adapter->flags2 & IXGBE_FLAG2_PHY_INTERRUPT)) return; @@ -7878,11 +7876,9 @@ if (!hw->phy.ops.handle_lasi) return; - status = hw->phy.ops.handle_lasi(&adapter->hw); - if (status != IXGBE_ERR_OVERTEMP) - return; - - e_crit(drv, "%s\n", ixgbe_overheat_msg); + hw->phy.ops.handle_lasi(&adapter->hw, &overtemp); + if (overtemp) + e_crit(drv, "%s\n", ixgbe_overheat_msg); } static void ixgbe_reset_subtask(struct ixgbe_adapter *adapter) @@ -8719,7 +8715,7 @@ if (skb_cow_head(skb, 0)) goto out_drop; - vhdr = (struct vlan_ethhdr *)skb->data; + vhdr = skb_vlan_eth_hdr(skb); vhdr->h_vlan_TCI = htons(tx_flags >> IXGBE_TX_FLAGS_VLAN_SHIFT); } else { @@ -10809,9 +10805,9 @@ err = hw->mac.ops.reset_hw(hw); hw->phy.reset_if_overtemp = false; ixgbe_set_eee_capable(adapter); - if (err == IXGBE_ERR_SFP_NOT_PRESENT) { + if (err == -ENOENT) { err = 0; - } else if (err == IXGBE_ERR_SFP_NOT_SUPPORTED) { + } else if (err == -EOPNOTSUPP) { e_dev_err("failed to load because an unsupported SFP+ or QSFP module type was detected.\n"); e_dev_err("Reload the driver after installing a supported module.\n"); goto err_sw_init; @@ -11028,7 +11024,7 @@ /* reset the hardware with the new settings */ err = hw->mac.ops.start_hw(hw); - if (err == IXGBE_ERR_EEPROM_VERSION) { + if (err == -EACCES) { /* We are running on a pre-production device, log a warning */ e_dev_warn("This device is a pre-production adapter/LOM. " "Please be aware there may be issues associated " diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_mbx.h linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_mbx.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_mbx.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_mbx.h @@ -7,7 +7,6 @@ #include "ixgbe_type.h" #define IXGBE_VFMAILBOX_SIZE 16 /* 16 32 bit words - 64 bytes */ -#define IXGBE_ERR_MBX -100 #define IXGBE_VFMAILBOX 0x002FC #define IXGBE_VFMBMEM 0x00200 diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_phy.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_phy.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_phy.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_phy.c @@ -102,7 +102,7 @@ csum = ~csum; do { if (lock && hw->mac.ops.acquire_swfw_sync(hw, swfw_mask)) - return IXGBE_ERR_SWFW_SYNC; + return -EBUSY; ixgbe_i2c_start(hw); /* Device Address and write indication */ if (ixgbe_out_i2c_byte_ack(hw, addr)) @@ -150,7 +150,7 @@ hw_dbg(hw, "I2C byte read combined error.\n"); } while (retry < max_retry); - return IXGBE_ERR_I2C; + return -EIO; } /** @@ -179,7 +179,7 @@ csum = ~csum; do { if (lock && hw->mac.ops.acquire_swfw_sync(hw, swfw_mask)) - return IXGBE_ERR_SWFW_SYNC; + return -EBUSY; ixgbe_i2c_start(hw); /* Device Address and write indication */ if (ixgbe_out_i2c_byte_ack(hw, addr)) @@ -215,7 +215,7 @@ hw_dbg(hw, "I2C byte write combined error.\n"); } while (retry < max_retry); - return IXGBE_ERR_I2C; + return -EIO; } /** @@ -262,8 +262,8 @@ **/ s32 ixgbe_identify_phy_generic(struct ixgbe_hw *hw) { + u32 status = -EFAULT; u32 phy_addr; - u32 status = IXGBE_ERR_PHY_ADDR_INVALID; if (!hw->phy.phy_semaphore_mask) { if (hw->bus.lan_id) @@ -282,7 +282,7 @@ if (ixgbe_probe_phy(hw, phy_addr)) return 0; else - return IXGBE_ERR_PHY_ADDR_INVALID; + return -EFAULT; } for (phy_addr = 0; phy_addr < IXGBE_MAX_PHY_ADDR; phy_addr++) { @@ -408,8 +408,7 @@ return status; /* Don't reset PHY if it's shut down due to overtemp. */ - if (!hw->phy.reset_if_overtemp && - (IXGBE_ERR_OVERTEMP == hw->phy.ops.check_overtemp(hw))) + if (!hw->phy.reset_if_overtemp && hw->phy.ops.check_overtemp(hw)) return 0; /* Blocked by MNG FW so bail */ @@ -457,7 +456,7 @@ if (ctrl & MDIO_CTRL1_RESET) { hw_dbg(hw, "PHY reset polling failed to complete.\n"); - return IXGBE_ERR_RESET_FAILED; + return -EIO; } return 0; @@ -500,7 +499,7 @@ if ((command & IXGBE_MSCA_MDI_COMMAND) != 0) { hw_dbg(hw, "PHY address command did not complete.\n"); - return IXGBE_ERR_PHY; + return -EIO; } /* Address cycle complete, setup and write the read @@ -527,7 +526,7 @@ if ((command & IXGBE_MSCA_MDI_COMMAND) != 0) { hw_dbg(hw, "PHY read command didn't complete\n"); - return IXGBE_ERR_PHY; + return -EIO; } /* Read operation is complete. Get the data @@ -559,7 +558,7 @@ phy_data); hw->mac.ops.release_swfw_sync(hw, gssr); } else { - return IXGBE_ERR_SWFW_SYNC; + return -EBUSY; } return status; @@ -604,7 +603,7 @@ if ((command & IXGBE_MSCA_MDI_COMMAND) != 0) { hw_dbg(hw, "PHY address cmd didn't complete\n"); - return IXGBE_ERR_PHY; + return -EIO; } /* @@ -632,7 +631,7 @@ if ((command & IXGBE_MSCA_MDI_COMMAND) != 0) { hw_dbg(hw, "PHY write cmd didn't complete\n"); - return IXGBE_ERR_PHY; + return -EIO; } return 0; @@ -657,7 +656,7 @@ phy_data); hw->mac.ops.release_swfw_sync(hw, gssr); } else { - return IXGBE_ERR_SWFW_SYNC; + return -EBUSY; } return status; @@ -1303,7 +1302,7 @@ if ((phy_data & MDIO_CTRL1_RESET) != 0) { hw_dbg(hw, "PHY reset did not complete.\n"); - return IXGBE_ERR_PHY; + return -EIO; } /* Get init offsets */ @@ -1360,12 +1359,12 @@ hw_dbg(hw, "SOL\n"); } else { hw_dbg(hw, "Bad control value\n"); - return IXGBE_ERR_PHY; + return -EIO; } break; default: hw_dbg(hw, "Bad control type\n"); - return IXGBE_ERR_PHY; + return -EIO; } } @@ -1373,7 +1372,7 @@ err_eeprom: hw_err(hw, "eeprom read at offset %d failed\n", data_offset); - return IXGBE_ERR_PHY; + return -EIO; } /** @@ -1391,10 +1390,10 @@ return ixgbe_identify_qsfp_module_generic(hw); default: hw->phy.sfp_type = ixgbe_sfp_type_not_present; - return IXGBE_ERR_SFP_NOT_PRESENT; + return -ENOENT; } - return IXGBE_ERR_SFP_NOT_PRESENT; + return -ENOENT; } /** @@ -1419,7 +1418,7 @@ if (hw->mac.ops.get_media_type(hw) != ixgbe_media_type_fiber) { hw->phy.sfp_type = ixgbe_sfp_type_not_present; - return IXGBE_ERR_SFP_NOT_PRESENT; + return -ENOENT; } /* LAN ID is needed for sfp_type determination */ @@ -1434,7 +1433,7 @@ if (identifier != IXGBE_SFF_IDENTIFIER_SFP) { hw->phy.type = ixgbe_phy_sfp_unsupported; - return IXGBE_ERR_SFP_NOT_SUPPORTED; + return -EOPNOTSUPP; } status = hw->phy.ops.read_i2c_eeprom(hw, IXGBE_SFF_1GBE_COMP_CODES, @@ -1625,7 +1624,7 @@ hw->phy.sfp_type == ixgbe_sfp_type_1g_sx_core0 || hw->phy.sfp_type == ixgbe_sfp_type_1g_sx_core1)) { hw->phy.type = ixgbe_phy_sfp_unsupported; - return IXGBE_ERR_SFP_NOT_SUPPORTED; + return -EOPNOTSUPP; } /* Anything else 82598-based is supported */ @@ -1649,7 +1648,7 @@ } hw_dbg(hw, "SFP+ module not supported\n"); hw->phy.type = ixgbe_phy_sfp_unsupported; - return IXGBE_ERR_SFP_NOT_SUPPORTED; + return -EOPNOTSUPP; } return 0; @@ -1659,7 +1658,7 @@ hw->phy.id = 0; hw->phy.type = ixgbe_phy_unknown; } - return IXGBE_ERR_SFP_NOT_PRESENT; + return -ENOENT; } /** @@ -1686,7 +1685,7 @@ if (hw->mac.ops.get_media_type(hw) != ixgbe_media_type_fiber_qsfp) { hw->phy.sfp_type = ixgbe_sfp_type_not_present; - return IXGBE_ERR_SFP_NOT_PRESENT; + return -ENOENT; } /* LAN ID is needed for sfp_type determination */ @@ -1700,7 +1699,7 @@ if (identifier != IXGBE_SFF_IDENTIFIER_QSFP_PLUS) { hw->phy.type = ixgbe_phy_sfp_unsupported; - return IXGBE_ERR_SFP_NOT_SUPPORTED; + return -EOPNOTSUPP; } hw->phy.id = identifier; @@ -1768,7 +1767,7 @@ } else { /* unsupported module type */ hw->phy.type = ixgbe_phy_sfp_unsupported; - return IXGBE_ERR_SFP_NOT_SUPPORTED; + return -EOPNOTSUPP; } } @@ -1828,7 +1827,7 @@ } hw_dbg(hw, "QSFP module not supported\n"); hw->phy.type = ixgbe_phy_sfp_unsupported; - return IXGBE_ERR_SFP_NOT_SUPPORTED; + return -EOPNOTSUPP; } return 0; } @@ -1839,7 +1838,7 @@ hw->phy.id = 0; hw->phy.type = ixgbe_phy_unknown; - return IXGBE_ERR_SFP_NOT_PRESENT; + return -ENOENT; } /** @@ -1859,14 +1858,14 @@ u16 sfp_type = hw->phy.sfp_type; if (hw->phy.sfp_type == ixgbe_sfp_type_unknown) - return IXGBE_ERR_SFP_NOT_SUPPORTED; + return -EOPNOTSUPP; if (hw->phy.sfp_type == ixgbe_sfp_type_not_present) - return IXGBE_ERR_SFP_NOT_PRESENT; + return -ENOENT; if ((hw->device_id == IXGBE_DEV_ID_82598_SR_DUAL_PORT_EM) && (hw->phy.sfp_type == ixgbe_sfp_type_da_cu)) - return IXGBE_ERR_SFP_NOT_SUPPORTED; + return -EOPNOTSUPP; /* * Limiting active cables and 1G Phys must be initialized as @@ -1887,11 +1886,11 @@ if (hw->eeprom.ops.read(hw, IXGBE_PHY_INIT_OFFSET_NL, list_offset)) { hw_err(hw, "eeprom read at %d failed\n", IXGBE_PHY_INIT_OFFSET_NL); - return IXGBE_ERR_SFP_NO_INIT_SEQ_PRESENT; + return -EIO; } if ((!*list_offset) || (*list_offset == 0xFFFF)) - return IXGBE_ERR_SFP_NO_INIT_SEQ_PRESENT; + return -EIO; /* Shift offset to first ID word */ (*list_offset)++; @@ -1910,7 +1909,7 @@ goto err_phy; if ((!*data_offset) || (*data_offset == 0xFFFF)) { hw_dbg(hw, "SFP+ module not supported\n"); - return IXGBE_ERR_SFP_NOT_SUPPORTED; + return -EOPNOTSUPP; } else { break; } @@ -1923,14 +1922,14 @@ if (sfp_id == IXGBE_PHY_INIT_END_NL) { hw_dbg(hw, "No matching SFP+ module found\n"); - return IXGBE_ERR_SFP_NOT_SUPPORTED; + return -EOPNOTSUPP; } return 0; err_phy: hw_err(hw, "eeprom read at offset %d failed\n", *list_offset); - return IXGBE_ERR_PHY; + return -EIO; } /** @@ -2025,7 +2024,7 @@ do { if (lock && hw->mac.ops.acquire_swfw_sync(hw, swfw_mask)) - return IXGBE_ERR_SWFW_SYNC; + return -EBUSY; ixgbe_i2c_start(hw); @@ -2141,7 +2140,7 @@ u32 swfw_mask = hw->phy.phy_semaphore_mask; if (lock && hw->mac.ops.acquire_swfw_sync(hw, swfw_mask)) - return IXGBE_ERR_SWFW_SYNC; + return -EBUSY; do { ixgbe_i2c_start(hw); @@ -2383,7 +2382,7 @@ if (ack == 1) { hw_dbg(hw, "I2C ack was not received.\n"); - status = IXGBE_ERR_I2C; + status = -EIO; } ixgbe_lower_i2c_clk(hw, &i2cctl); @@ -2455,7 +2454,7 @@ udelay(IXGBE_I2C_T_LOW); } else { hw_dbg(hw, "I2C data was not set to %X\n", data); - return IXGBE_ERR_I2C; + return -EIO; } return 0; @@ -2551,7 +2550,7 @@ *i2cctl = IXGBE_READ_REG(hw, IXGBE_I2CCTL(hw)); if (data != ixgbe_get_i2c_data(hw, i2cctl)) { hw_dbg(hw, "Error - I2C data was not set to %X.\n", data); - return IXGBE_ERR_I2C; + return -EIO; } return 0; @@ -2621,22 +2620,24 @@ * @hw: pointer to hardware structure * * Checks if the LASI temp alarm status was triggered due to overtemp + * + * Return true when an overtemp event detected, otherwise false. **/ -s32 ixgbe_tn_check_overtemp(struct ixgbe_hw *hw) +bool ixgbe_tn_check_overtemp(struct ixgbe_hw *hw) { u16 phy_data = 0; + u32 status; if (hw->device_id != IXGBE_DEV_ID_82599_T3_LOM) - return 0; + return false; /* Check that the LASI temp alarm status was triggered */ - hw->phy.ops.read_reg(hw, IXGBE_TN_LASI_STATUS_REG, - MDIO_MMD_PMAPMD, &phy_data); - - if (!(phy_data & IXGBE_TN_LASI_STATUS_TEMP_ALARM)) - return 0; + status = hw->phy.ops.read_reg(hw, IXGBE_TN_LASI_STATUS_REG, + MDIO_MMD_PMAPMD, &phy_data); + if (status) + return false; - return IXGBE_ERR_OVERTEMP; + return !!(phy_data & IXGBE_TN_LASI_STATUS_TEMP_ALARM); } /** ixgbe_set_copper_phy_power - Control power for copper phy diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c @@ -1329,7 +1329,7 @@ break; default: e_err(drv, "Unhandled Msg %8.8x\n", msgbuf[0]); - retval = IXGBE_ERR_MBX; + retval = -EIO; break; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c @@ -206,13 +206,13 @@ } if (retry == IXGBE_CS4227_RETRIES) { hw_err(hw, "CS4227 reset did not complete\n"); - return IXGBE_ERR_PHY; + return -EIO; } status = ixgbe_read_cs4227(hw, IXGBE_CS4227_EEPROM_STATUS, &value); if (status || !(value & IXGBE_CS4227_EEPROM_LOAD_OK)) { hw_err(hw, "CS4227 EEPROM did not load successfully\n"); - return IXGBE_ERR_PHY; + return -EIO; } return 0; @@ -350,13 +350,13 @@ static s32 ixgbe_read_phy_reg_x550em(struct ixgbe_hw *hw, u32 reg_addr, u32 device_type, u16 *phy_data) { - return IXGBE_NOT_IMPLEMENTED; + return -EOPNOTSUPP; } static s32 ixgbe_write_phy_reg_x550em(struct ixgbe_hw *hw, u32 reg_addr, u32 device_type, u16 phy_data) { - return IXGBE_NOT_IMPLEMENTED; + return -EOPNOTSUPP; } /** @@ -463,7 +463,7 @@ --retries; } while (retries > 0); - return IXGBE_ERR_HOST_INTERFACE_COMMAND; + return -EIO; } static const struct { @@ -511,7 +511,7 @@ hw->phy.id |= phy_id_lo & IXGBE_PHY_REVISION_MASK; hw->phy.revision = phy_id_lo & ~IXGBE_PHY_REVISION_MASK; if (!hw->phy.id || hw->phy.id == IXGBE_PHY_REVISION_MASK) - return IXGBE_ERR_PHY_ADDR_INVALID; + return -EFAULT; hw->phy.autoneg_advertised = hw->phy.speeds_supported; hw->phy.eee_speeds_supported = IXGBE_LINK_SPEED_100_FULL | @@ -568,7 +568,7 @@ if (hw->fc.strict_ieee && hw->fc.requested_mode == ixgbe_fc_rx_pause) { hw_err(hw, "rx_pause not valid in strict IEEE mode\n"); - return IXGBE_ERR_INVALID_LINK_SETTINGS; + return -EINVAL; } switch (hw->fc.requested_mode) { @@ -600,8 +600,10 @@ rc = ixgbe_fw_phy_activity(hw, FW_PHY_ACT_SETUP_LINK, &setup); if (rc) return rc; + if (setup[0] == FW_PHY_ACT_SETUP_LINK_RSP_DOWN) - return IXGBE_ERR_OVERTEMP; + return -EIO; + return 0; } @@ -675,7 +677,7 @@ *ctrl = command; if (i == IXGBE_MDIO_COMMAND_TIMEOUT) { hw_dbg(hw, "IOSF wait timed out\n"); - return IXGBE_ERR_PHY; + return -EIO; } return 0; @@ -715,7 +717,8 @@ error = (command & IXGBE_SB_IOSF_CTRL_CMPL_ERR_MASK) >> IXGBE_SB_IOSF_CTRL_CMPL_ERR_SHIFT; hw_dbg(hw, "Failed to read, error %x\n", error); - return IXGBE_ERR_PHY; + ret = -EIO; + goto out; } if (!ret) @@ -750,9 +753,9 @@ if (token_cmd.hdr.cmd_or_resp.ret_status == FW_PHY_TOKEN_OK) return 0; if (token_cmd.hdr.cmd_or_resp.ret_status != FW_PHY_TOKEN_RETRY) - return IXGBE_ERR_FW_RESP_INVALID; + return -EIO; - return IXGBE_ERR_TOKEN_RETRY; + return -EAGAIN; } /** @@ -778,7 +781,7 @@ return status; if (token_cmd.hdr.cmd_or_resp.ret_status == FW_PHY_TOKEN_OK) return 0; - return IXGBE_ERR_FW_RESP_INVALID; + return -EIO; } /** @@ -942,7 +945,7 @@ local_buffer = buf; } else { if (buffer_size < ptr) - return IXGBE_ERR_PARAM; + return -EINVAL; local_buffer = &buffer[ptr]; } @@ -960,7 +963,7 @@ } if (buffer && ((u32)start + (u32)length > buffer_size)) - return IXGBE_ERR_PARAM; + return -EINVAL; for (i = start; length; i++, length--) { if (i == bufsz && !buffer) { @@ -1012,7 +1015,7 @@ local_buffer = eeprom_ptrs; } else { if (buffer_size < IXGBE_EEPROM_LAST_WORD) - return IXGBE_ERR_PARAM; + return -EINVAL; local_buffer = buffer; } @@ -1148,7 +1151,7 @@ * calculated checksum */ if (read_checksum != checksum) { - status = IXGBE_ERR_EEPROM_CHECKSUM; + status = -EIO; hw_dbg(hw, "Invalid EEPROM checksum"); } @@ -1203,7 +1206,7 @@ hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_EEP_SM); } else { hw_dbg(hw, "write ee hostif failed to get semaphore"); - status = IXGBE_ERR_SWFW_SYNC; + status = -EBUSY; } return status; @@ -1415,7 +1418,7 @@ error = (command & IXGBE_SB_IOSF_CTRL_CMPL_ERR_MASK) >> IXGBE_SB_IOSF_CTRL_CMPL_ERR_SHIFT; hw_dbg(hw, "Failed to write, error %x\n", error); - return IXGBE_ERR_PHY; + return -EIO; } out: @@ -1558,7 +1561,7 @@ /* iXFI is only supported with X552 */ if (mac->type != ixgbe_mac_X550EM_x) - return IXGBE_ERR_LINK_SETUP; + return -EIO; /* Disable AN and force speed to 10G Serial. */ status = ixgbe_read_iosf_sb_reg_x550(hw, @@ -1580,7 +1583,7 @@ break; default: /* Other link speeds are not supported by internal KR PHY. */ - return IXGBE_ERR_LINK_SETUP; + return -EINVAL; } status = ixgbe_write_iosf_sb_reg_x550(hw, @@ -1611,7 +1614,7 @@ { switch (hw->phy.sfp_type) { case ixgbe_sfp_type_not_present: - return IXGBE_ERR_SFP_NOT_PRESENT; + return -ENOENT; case ixgbe_sfp_type_da_cu_core0: case ixgbe_sfp_type_da_cu_core1: *linear = true; @@ -1630,7 +1633,7 @@ case ixgbe_sfp_type_1g_cu_core0: case ixgbe_sfp_type_1g_cu_core1: default: - return IXGBE_ERR_SFP_NOT_SUPPORTED; + return -EOPNOTSUPP; } return 0; @@ -1660,7 +1663,7 @@ * there is no reason to configure CS4227 and SFP not present error is * not accepted in the setup MAC link flow. */ - if (status == IXGBE_ERR_SFP_NOT_PRESENT) + if (status == -ENOENT) return 0; if (status) @@ -1718,7 +1721,7 @@ break; default: /* Other link speeds are not supported by internal PHY. */ - return IXGBE_ERR_LINK_SETUP; + return -EINVAL; } status = mac->ops.write_iosf_sb_reg(hw, @@ -1753,7 +1756,7 @@ /* If no SFP module present, then return success. Return success since * SFP not present error is not excepted in the setup MAC link flow. */ - if (ret_val == IXGBE_ERR_SFP_NOT_PRESENT) + if (ret_val == -ENOENT) return 0; if (ret_val) @@ -1803,7 +1806,7 @@ /* If no SFP module present, then return success. Return success since * SFP not present error is not excepted in the setup MAC link flow. */ - if (ret_val == IXGBE_ERR_SFP_NOT_PRESENT) + if (ret_val == -ENOENT) return 0; if (ret_val) @@ -1813,7 +1816,7 @@ ixgbe_setup_kr_speed_x550em(hw, speed); if (hw->phy.mdio.prtad == MDIO_PRTAD_NONE) - return IXGBE_ERR_PHY_ADDR_INVALID; + return -EFAULT; /* Get external PHY SKU id */ ret_val = hw->phy.ops.read_reg(hw, IXGBE_CS4227_EFUSE_PDF_SKU, @@ -1912,7 +1915,7 @@ u16 i, autoneg_status; if (hw->mac.ops.get_media_type(hw) != ixgbe_media_type_copper) - return IXGBE_ERR_CONFIG; + return -EIO; status = ixgbe_check_mac_link_generic(hw, speed, link_up, link_up_wait_to_complete); @@ -2095,9 +2098,9 @@ */ static void ixgbe_fc_autoneg_sgmii_x550em_a(struct ixgbe_hw *hw) { - s32 status = IXGBE_ERR_FC_NOT_NEGOTIATED; u32 info[FW_PHY_ACT_DATA_COUNT] = { 0 }; ixgbe_link_speed speed; + s32 status = -EIO; bool link_up; /* AN should have completed when the cable was plugged in. @@ -2115,7 +2118,7 @@ /* Check if auto-negotiation has completed */ status = ixgbe_fw_phy_activity(hw, FW_PHY_ACT_GET_LINK_INFO, &info); if (status || !(info[0] & FW_PHY_ACT_GET_LINK_INFO_AN_COMPLETE)) { - status = IXGBE_ERR_FC_NOT_NEGOTIATED; + status = -EIO; goto out; } @@ -2319,18 +2322,18 @@ * @hw: pointer to hardware structure * @lsc: pointer to boolean flag which indicates whether external Base T * PHY interrupt is lsc + * @is_overtemp: indicate whether an overtemp event encountered * * Determime if external Base T PHY interrupt cause is high temperature * failure alarm or link status change. - * - * Return IXGBE_ERR_OVERTEMP if interrupt is high temperature - * failure alarm, else return PHY access status. **/ -static s32 ixgbe_get_lasi_ext_t_x550em(struct ixgbe_hw *hw, bool *lsc) +static s32 ixgbe_get_lasi_ext_t_x550em(struct ixgbe_hw *hw, bool *lsc, + bool *is_overtemp) { u32 status; u16 reg; + *is_overtemp = false; *lsc = false; /* Vendor alarm triggered */ @@ -2362,7 +2365,8 @@ if (reg & IXGBE_MDIO_GLOBAL_ALM_1_HI_TMP_FAIL) { /* power down the PHY in case the PHY FW didn't already */ ixgbe_set_copper_phy_power(hw, false); - return IXGBE_ERR_OVERTEMP; + *is_overtemp = true; + return -EIO; } if (reg & IXGBE_MDIO_GLOBAL_ALM_1_DEV_FAULT) { /* device fault alarm triggered */ @@ -2376,7 +2380,8 @@ if (reg == IXGBE_MDIO_GLOBAL_FAULT_MSG_HI_TMP) { /* power down the PHY in case the PHY FW didn't */ ixgbe_set_copper_phy_power(hw, false); - return IXGBE_ERR_OVERTEMP; + *is_overtemp = true; + return -EIO; } } @@ -2412,12 +2417,12 @@ **/ static s32 ixgbe_enable_lasi_ext_t_x550em(struct ixgbe_hw *hw) { + bool lsc, overtemp; u32 status; u16 reg; - bool lsc; /* Clear interrupt flags */ - status = ixgbe_get_lasi_ext_t_x550em(hw, &lsc); + status = ixgbe_get_lasi_ext_t_x550em(hw, &lsc, &overtemp); /* Enable link status change alarm */ @@ -2496,21 +2501,20 @@ /** * ixgbe_handle_lasi_ext_t_x550em - Handle external Base T PHY interrupt * @hw: pointer to hardware structure + * @is_overtemp: indicate whether an overtemp event encountered * * Handle external Base T PHY interrupt. If high temperature * failure alarm then return error, else if link status change * then setup internal/external PHY link - * - * Return IXGBE_ERR_OVERTEMP if interrupt is high temperature - * failure alarm, else return PHY access status. **/ -static s32 ixgbe_handle_lasi_ext_t_x550em(struct ixgbe_hw *hw) +static s32 ixgbe_handle_lasi_ext_t_x550em(struct ixgbe_hw *hw, + bool *is_overtemp) { struct ixgbe_phy_info *phy = &hw->phy; bool lsc; u32 status; - status = ixgbe_get_lasi_ext_t_x550em(hw, &lsc); + status = ixgbe_get_lasi_ext_t_x550em(hw, &lsc, is_overtemp); if (status) return status; @@ -2642,7 +2646,7 @@ u16 speed; if (hw->mac.ops.get_media_type(hw) != ixgbe_media_type_copper) - return IXGBE_ERR_CONFIG; + return -EIO; if (!(hw->mac.type == ixgbe_mac_X550EM_x && !(hw->phy.nw_mng_if_sel & IXGBE_NW_MNG_IF_SEL_INT_PHY_MODE))) { @@ -2685,7 +2689,7 @@ break; default: /* Internal PHY does not support anything else */ - return IXGBE_ERR_INVALID_LINK_SETTINGS; + return -EINVAL; } return ixgbe_setup_ixfi_x550em(hw, &force_speed); @@ -2717,7 +2721,7 @@ u16 phy_data; if (led_idx >= IXGBE_X557_MAX_LED_INDEX) - return IXGBE_ERR_PARAM; + return -EINVAL; /* To turn on the LED, set mode to ON. */ hw->phy.ops.read_reg(hw, IXGBE_X557_LED_PROVISIONING + led_idx, @@ -2739,7 +2743,7 @@ u16 phy_data; if (led_idx >= IXGBE_X557_MAX_LED_INDEX) - return IXGBE_ERR_PARAM; + return -EINVAL; /* To turn on the LED, set mode to ON. */ hw->phy.ops.read_reg(hw, IXGBE_X557_LED_PROVISIONING + led_idx, @@ -2763,8 +2767,9 @@ * * Sends driver version number to firmware through the manageability * block. On success return 0 - * else returns IXGBE_ERR_SWFW_SYNC when encountering an error acquiring - * semaphore or IXGBE_ERR_HOST_INTERFACE_COMMAND when command fails. + * else returns -EBUSY when encountering an error acquiring + * semaphore, -EIO when command fails or -ENIVAL when incorrect + * params passed. **/ static s32 ixgbe_set_fw_drv_ver_x550(struct ixgbe_hw *hw, u8 maj, u8 min, u8 build, u8 sub, u16 len, @@ -2775,7 +2780,7 @@ int i; if (!len || !driver_ver || (len > sizeof(fw_cmd.driver_string))) - return IXGBE_ERR_INVALID_ARGUMENT; + return -EINVAL; fw_cmd.hdr.cmd = FW_CEM_CMD_DRIVER_INFO; fw_cmd.hdr.buf_len = FW_CEM_CMD_DRIVER_INFO_LEN + len; @@ -2800,7 +2805,7 @@ if (fw_cmd.hdr.cmd_or_resp.ret_status != FW_CEM_RESP_STATUS_SUCCESS) - return IXGBE_ERR_HOST_INTERFACE_COMMAND; + return -EIO; return 0; } @@ -2857,7 +2862,7 @@ /* Validate the requested mode */ if (hw->fc.strict_ieee && hw->fc.requested_mode == ixgbe_fc_rx_pause) { hw_err(hw, "ixgbe_fc_rx_pause not valid in strict IEEE mode\n"); - return IXGBE_ERR_INVALID_LINK_SETTINGS; + return -EINVAL; } /* 10gig parts do not have a word in the EEPROM to determine the @@ -2892,7 +2897,7 @@ break; default: hw_err(hw, "Flow control param set incorrectly\n"); - return IXGBE_ERR_CONFIG; + return -EIO; } switch (hw->device_id) { @@ -2936,8 +2941,8 @@ static void ixgbe_fc_autoneg_backplane_x550em_a(struct ixgbe_hw *hw) { u32 link_s1, lp_an_page_low, an_cntl_1; - s32 status = IXGBE_ERR_FC_NOT_NEGOTIATED; ixgbe_link_speed speed; + s32 status = -EIO; bool link_up; /* AN should have completed when the cable was plugged in. @@ -2963,7 +2968,7 @@ if (status || (link_s1 & IXGBE_KRM_LINK_S1_MAC_AN_COMPLETE) == 0) { hw_dbg(hw, "Auto-Negotiation did not complete\n"); - status = IXGBE_ERR_FC_NOT_NEGOTIATED; + status = -EIO; goto out; } @@ -3137,21 +3142,23 @@ /** * ixgbe_check_overtemp_fw - Check firmware-controlled PHYs for overtemp * @hw: pointer to hardware structure + * + * Return true when an overtemp event detected, otherwise false. */ -static s32 ixgbe_check_overtemp_fw(struct ixgbe_hw *hw) +static bool ixgbe_check_overtemp_fw(struct ixgbe_hw *hw) { u32 store[FW_PHY_ACT_DATA_COUNT] = { 0 }; s32 rc; rc = ixgbe_fw_phy_activity(hw, FW_PHY_ACT_GET_LINK_INFO, &store); if (rc) - return rc; + return false; if (store[0] & FW_PHY_ACT_GET_LINK_INFO_TEMP) { ixgbe_shutdown_fw_phy(hw); - return IXGBE_ERR_OVERTEMP; + return true; } - return 0; + return false; } /** @@ -3201,8 +3208,7 @@ /* Identify the PHY or SFP module */ ret_val = phy->ops.identify(hw); - if (ret_val == IXGBE_ERR_SFP_NOT_SUPPORTED || - ret_val == IXGBE_ERR_PHY_ADDR_INVALID) + if (ret_val == -EOPNOTSUPP || ret_val == -EFAULT) return ret_val; /* Setup function pointers based on detected hardware */ @@ -3410,8 +3416,7 @@ /* PHY ops must be identified and initialized prior to reset */ status = hw->phy.ops.init(hw); - if (status == IXGBE_ERR_SFP_NOT_SUPPORTED || - status == IXGBE_ERR_PHY_ADDR_INVALID) + if (status == -EOPNOTSUPP || status == -EFAULT) return status; /* start the external PHY */ @@ -3427,7 +3432,7 @@ hw->phy.sfp_setup_needed = false; } - if (status == IXGBE_ERR_SFP_NOT_SUPPORTED) + if (status == -EOPNOTSUPP) return status; /* Reset PHY */ @@ -3451,7 +3456,7 @@ status = hw->mac.ops.acquire_swfw_sync(hw, swfw_mask); if (status) { hw_dbg(hw, "semaphore failed with %d", status); - return IXGBE_ERR_SWFW_SYNC; + return -EBUSY; } ctrl |= IXGBE_READ_REG(hw, IXGBE_CTRL); @@ -3469,7 +3474,7 @@ } if (ctrl & IXGBE_CTRL_RST_MASK) { - status = IXGBE_ERR_RESET_FAILED; + status = -EIO; hw_dbg(hw, "Reset polling failed to complete.\n"); } @@ -3565,7 +3570,7 @@ /* Validate the requested mode */ if (hw->fc.strict_ieee && hw->fc.requested_mode == ixgbe_fc_rx_pause) { hw_err(hw, "ixgbe_fc_rx_pause not valid in strict IEEE mode\n"); - return IXGBE_ERR_INVALID_LINK_SETTINGS; + return -EINVAL; } if (hw->fc.requested_mode == ixgbe_fc_default) @@ -3622,7 +3627,7 @@ break; default: hw_err(hw, "Flow control param set incorrectly\n"); - return IXGBE_ERR_CONFIG; + return -EIO; } status = hw->mac.ops.write_iosf_sb_reg(hw, @@ -3718,7 +3723,7 @@ return 0; if (hmask) ixgbe_release_swfw_sync_X540(hw, hmask); - if (status != IXGBE_ERR_TOKEN_RETRY) + if (status != -EAGAIN) return status; msleep(FW_PHY_TOKEN_DELAY); } @@ -3762,7 +3767,7 @@ s32 status; if (hw->mac.ops.acquire_swfw_sync(hw, mask)) - return IXGBE_ERR_SWFW_SYNC; + return -EBUSY; status = hw->phy.ops.read_reg_mdi(hw, reg_addr, device_type, phy_data); @@ -3788,7 +3793,7 @@ s32 status; if (hw->mac.ops.acquire_swfw_sync(hw, mask)) - return IXGBE_ERR_SWFW_SYNC; + return -EBUSY; status = ixgbe_write_phy_reg_mdi(hw, reg_addr, device_type, phy_data); hw->mac.ops.release_swfw_sync(hw, mask); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/mv643xx_eth.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/mv643xx_eth.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/mv643xx_eth.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/mv643xx_eth.c @@ -1770,7 +1770,7 @@ addr[5] = mac_l & 0xff; } -static void uc_addr_set(struct mv643xx_eth_private *mp, unsigned char *addr) +static void uc_addr_set(struct mv643xx_eth_private *mp, const u8 *addr) { wrlp(mp, MAC_ADDR_HIGH, (addr[0] << 24) | (addr[1] << 16) | (addr[2] << 8) | addr[3]); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/mvneta.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/mvneta.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/mvneta.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/mvneta.c @@ -1623,8 +1623,8 @@ } /* Set mac address */ -static void mvneta_mac_addr_set(struct mvneta_port *pp, unsigned char *addr, - int queue) +static void mvneta_mac_addr_set(struct mvneta_port *pp, + const unsigned char *addr, int queue) { unsigned int mac_h; unsigned int mac_l; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c @@ -614,12 +614,38 @@ mvpp2_write(priv, MVPP22_BM_POOL_BASE_ADDR_HIGH_REG, val); } +/* Cleanup pool before actual initialization in the OS */ +static void mvpp2_bm_pool_cleanup(struct mvpp2 *priv, int pool_id) +{ + unsigned int thread = mvpp2_cpu_to_thread(priv, get_cpu()); + u32 val; + int i; + + /* Drain the BM from all possible residues left by firmware */ + for (i = 0; i < MVPP2_BM_POOL_SIZE_MAX; i++) + mvpp2_thread_read(priv, thread, MVPP2_BM_PHY_ALLOC_REG(pool_id)); + + put_cpu(); + + /* Stop the BM pool */ + val = mvpp2_read(priv, MVPP2_BM_POOL_CTRL_REG(pool_id)); + val |= MVPP2_BM_STOP_MASK; + mvpp2_write(priv, MVPP2_BM_POOL_CTRL_REG(pool_id), val); +} + static int mvpp2_bm_init(struct device *dev, struct mvpp2 *priv) { enum dma_data_direction dma_dir = DMA_FROM_DEVICE; int i, err, poolnum = MVPP2_BM_POOLS_NUM; struct mvpp2_port *port; + if (priv->percpu_pools) + poolnum = mvpp2_get_nrxqs(priv) * 2; + + /* Clean up the pool state in case it contains stale state */ + for (i = 0; i < poolnum; i++) + mvpp2_bm_pool_cleanup(priv, i); + if (priv->percpu_pools) { for (i = 0; i < priv->port_count; i++) { port = priv->port_list[i]; @@ -629,7 +655,6 @@ } } - poolnum = mvpp2_get_nrxqs(priv) * 2; for (i = 0; i < poolnum; i++) { /* the pool in use */ int pn = i / (poolnum / 2); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/cgx.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/cgx.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/cgx.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/cgx.c @@ -505,6 +505,32 @@ return (cfg >> CGX_LMAC_TYPE_SHIFT) & CGX_LMAC_TYPE_MASK; } +static u32 cgx_get_lmac_fifo_len(void *cgxd, int lmac_id) +{ + struct cgx *cgx = cgxd; + u8 num_lmacs; + u32 fifo_len; + + fifo_len = cgx->mac_ops->fifo_len; + num_lmacs = cgx->mac_ops->get_nr_lmacs(cgx); + + switch (num_lmacs) { + case 1: + return fifo_len; + case 2: + return fifo_len / 2; + case 3: + /* LMAC0 gets half of the FIFO, reset 1/4th */ + if (lmac_id == 0) + return fifo_len / 2; + return fifo_len / 4; + case 4: + default: + return fifo_len / 4; + } + return 0; +} + /* Configure CGX LMAC in internal loopback mode */ int cgx_lmac_internal_loopback(void *cgxd, int lmac_id, bool enable) { @@ -789,21 +815,8 @@ if (!is_lmac_valid(cgx, lmac_id)) return; - if (enable) { - /* Enable receive pause frames */ - cfg = cgx_read(cgx, lmac_id, CGXX_SMUX_RX_FRM_CTL); - cfg |= CGX_SMUX_RX_FRM_CTL_CTL_BCK; - cgx_write(cgx, lmac_id, CGXX_SMUX_RX_FRM_CTL, cfg); - - cfg = cgx_read(cgx, lmac_id, CGXX_GMP_GMI_RXX_FRM_CTL); - cfg |= CGX_GMP_GMI_RXX_FRM_CTL_CTL_BCK; - cgx_write(cgx, lmac_id, CGXX_GMP_GMI_RXX_FRM_CTL, cfg); - - /* Enable pause frames transmission */ - cfg = cgx_read(cgx, lmac_id, CGXX_SMUX_TX_CTL); - cfg |= CGX_SMUX_TX_CTL_L2P_BP_CONV; - cgx_write(cgx, lmac_id, CGXX_SMUX_TX_CTL, cfg); + if (enable) { /* Set pause time and interval */ cgx_write(cgx, lmac_id, CGXX_SMUX_TX_PAUSE_PKT_TIME, DEFAULT_PAUSE_TIME); @@ -820,21 +833,21 @@ cfg &= ~0xFFFFULL; cgx_write(cgx, lmac_id, CGXX_GMP_GMI_TX_PAUSE_PKT_INTERVAL, cfg | (DEFAULT_PAUSE_TIME / 2)); - } else { - /* ALL pause frames received are completely ignored */ - cfg = cgx_read(cgx, lmac_id, CGXX_SMUX_RX_FRM_CTL); - cfg &= ~CGX_SMUX_RX_FRM_CTL_CTL_BCK; - cgx_write(cgx, lmac_id, CGXX_SMUX_RX_FRM_CTL, cfg); + } - cfg = cgx_read(cgx, lmac_id, CGXX_GMP_GMI_RXX_FRM_CTL); - cfg &= ~CGX_GMP_GMI_RXX_FRM_CTL_CTL_BCK; - cgx_write(cgx, lmac_id, CGXX_GMP_GMI_RXX_FRM_CTL, cfg); + /* ALL pause frames received are completely ignored */ + cfg = cgx_read(cgx, lmac_id, CGXX_SMUX_RX_FRM_CTL); + cfg &= ~CGX_SMUX_RX_FRM_CTL_CTL_BCK; + cgx_write(cgx, lmac_id, CGXX_SMUX_RX_FRM_CTL, cfg); - /* Disable pause frames transmission */ - cfg = cgx_read(cgx, lmac_id, CGXX_SMUX_TX_CTL); - cfg &= ~CGX_SMUX_TX_CTL_L2P_BP_CONV; - cgx_write(cgx, lmac_id, CGXX_SMUX_TX_CTL, cfg); - } + cfg = cgx_read(cgx, lmac_id, CGXX_GMP_GMI_RXX_FRM_CTL); + cfg &= ~CGX_GMP_GMI_RXX_FRM_CTL_CTL_BCK; + cgx_write(cgx, lmac_id, CGXX_GMP_GMI_RXX_FRM_CTL, cfg); + + /* Disable pause frames transmission */ + cfg = cgx_read(cgx, lmac_id, CGXX_SMUX_TX_CTL); + cfg &= ~CGX_SMUX_TX_CTL_L2P_BP_CONV; + cgx_write(cgx, lmac_id, CGXX_SMUX_TX_CTL, cfg); } void cgx_lmac_ptp_config(void *cgxd, int lmac_id, bool enable) @@ -1570,6 +1583,7 @@ .tx_stats_cnt = 18, .get_nr_lmacs = cgx_get_nr_lmacs, .get_lmac_type = cgx_get_lmac_type, + .lmac_fifo_len = cgx_get_lmac_fifo_len, .mac_lmac_intl_lbk = cgx_lmac_internal_loopback, .mac_get_rx_stats = cgx_get_rx_stats, .mac_get_tx_stats = cgx_get_tx_stats, diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/lmac_common.h linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/lmac_common.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/lmac_common.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/lmac_common.h @@ -76,6 +76,7 @@ */ int (*get_nr_lmacs)(void *cgx); u8 (*get_lmac_type)(void *cgx, int lmac_id); + u32 (*lmac_fifo_len)(void *cgx, int lmac_id); int (*mac_lmac_intl_lbk)(void *cgx, int lmac_id, bool enable); /* Register Stats related functions */ diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/npc.h linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/npc.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/npc.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/npc.h @@ -490,7 +490,7 @@ u8 ltype_mask; u8 ltype_match; u8 lid; -}; +} __packed; struct npc_lt_def_ipsec { u8 ltype_mask; @@ -498,7 +498,7 @@ u8 lid; u8 spi_offset; u8 spi_nz; -}; +} __packed; struct npc_lt_def_apad { u8 ltype_mask; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rpm.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rpm.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rpm.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rpm.c @@ -22,6 +22,7 @@ .tx_stats_cnt = 34, .get_nr_lmacs = rpm_get_nr_lmacs, .get_lmac_type = rpm_get_lmac_type, + .lmac_fifo_len = rpm_get_lmac_fifo_len, .mac_lmac_intl_lbk = rpm_lmac_internal_loopback, .mac_get_rx_stats = rpm_get_rx_stats, .mac_get_tx_stats = rpm_get_tx_stats, @@ -167,26 +168,6 @@ u64 cfg; if (enable) { - /* Enable 802.3 pause frame mode */ - cfg = rpm_read(rpm, lmac_id, RPMX_MTI_MAC100X_COMMAND_CONFIG); - cfg &= ~RPMX_MTI_MAC100X_COMMAND_CONFIG_PFC_MODE; - rpm_write(rpm, lmac_id, RPMX_MTI_MAC100X_COMMAND_CONFIG, cfg); - - /* Enable receive pause frames */ - cfg = rpm_read(rpm, lmac_id, RPMX_MTI_MAC100X_COMMAND_CONFIG); - cfg &= ~RPMX_MTI_MAC100X_COMMAND_CONFIG_RX_P_DISABLE; - rpm_write(rpm, lmac_id, RPMX_MTI_MAC100X_COMMAND_CONFIG, cfg); - - /* Enable forward pause to TX block */ - cfg = rpm_read(rpm, lmac_id, RPMX_MTI_MAC100X_COMMAND_CONFIG); - cfg &= ~RPMX_MTI_MAC100X_COMMAND_CONFIG_PAUSE_IGNORE; - rpm_write(rpm, lmac_id, RPMX_MTI_MAC100X_COMMAND_CONFIG, cfg); - - /* Enable pause frames transmission */ - cfg = rpm_read(rpm, lmac_id, RPMX_MTI_MAC100X_COMMAND_CONFIG); - cfg &= ~RPMX_MTI_MAC100X_COMMAND_CONFIG_TX_P_DISABLE; - rpm_write(rpm, lmac_id, RPMX_MTI_MAC100X_COMMAND_CONFIG, cfg); - /* Set pause time and interval */ cfg = rpm_read(rpm, lmac_id, RPMX_MTI_MAC100X_CL01_PAUSE_QUANTA); @@ -199,23 +180,22 @@ cfg &= ~0xFFFFULL; rpm_write(rpm, lmac_id, RPMX_MTI_MAC100X_CL01_QUANTA_THRESH, cfg | (RPM_DEFAULT_PAUSE_TIME / 2)); + } - } else { - /* ALL pause frames received are completely ignored */ - cfg = rpm_read(rpm, lmac_id, RPMX_MTI_MAC100X_COMMAND_CONFIG); - cfg |= RPMX_MTI_MAC100X_COMMAND_CONFIG_RX_P_DISABLE; - rpm_write(rpm, lmac_id, RPMX_MTI_MAC100X_COMMAND_CONFIG, cfg); + /* ALL pause frames received are completely ignored */ + cfg = rpm_read(rpm, lmac_id, RPMX_MTI_MAC100X_COMMAND_CONFIG); + cfg |= RPMX_MTI_MAC100X_COMMAND_CONFIG_RX_P_DISABLE; + rpm_write(rpm, lmac_id, RPMX_MTI_MAC100X_COMMAND_CONFIG, cfg); - /* Disable forward pause to TX block */ - cfg = rpm_read(rpm, lmac_id, RPMX_MTI_MAC100X_COMMAND_CONFIG); - cfg |= RPMX_MTI_MAC100X_COMMAND_CONFIG_PAUSE_IGNORE; - rpm_write(rpm, lmac_id, RPMX_MTI_MAC100X_COMMAND_CONFIG, cfg); + /* Disable forward pause to TX block */ + cfg = rpm_read(rpm, lmac_id, RPMX_MTI_MAC100X_COMMAND_CONFIG); + cfg |= RPMX_MTI_MAC100X_COMMAND_CONFIG_PAUSE_IGNORE; + rpm_write(rpm, lmac_id, RPMX_MTI_MAC100X_COMMAND_CONFIG, cfg); - /* Disable pause frames transmission */ - cfg = rpm_read(rpm, lmac_id, RPMX_MTI_MAC100X_COMMAND_CONFIG); - cfg |= RPMX_MTI_MAC100X_COMMAND_CONFIG_TX_P_DISABLE; - rpm_write(rpm, lmac_id, RPMX_MTI_MAC100X_COMMAND_CONFIG, cfg); - } + /* Disable pause frames transmission */ + cfg = rpm_read(rpm, lmac_id, RPMX_MTI_MAC100X_COMMAND_CONFIG); + cfg |= RPMX_MTI_MAC100X_COMMAND_CONFIG_TX_P_DISABLE; + rpm_write(rpm, lmac_id, RPMX_MTI_MAC100X_COMMAND_CONFIG, cfg); } int rpm_get_rx_stats(void *rpmd, int lmac_id, int idx, u64 *rx_stat) @@ -282,6 +262,35 @@ return err; } +u32 rpm_get_lmac_fifo_len(void *rpmd, int lmac_id) +{ + rpm_t *rpm = rpmd; + u64 hi_perf_lmac; + u8 num_lmacs; + u32 fifo_len; + + fifo_len = rpm->mac_ops->fifo_len; + num_lmacs = rpm->mac_ops->get_nr_lmacs(rpm); + + switch (num_lmacs) { + case 1: + return fifo_len; + case 2: + return fifo_len / 2; + case 3: + /* LMAC marked as hi_perf gets half of the FIFO and rest 1/4th */ + hi_perf_lmac = rpm_read(rpm, 0, CGXX_CMRX_RX_LMACS); + hi_perf_lmac = (hi_perf_lmac >> 4) & 0x3ULL; + if (lmac_id == hi_perf_lmac) + return fifo_len / 2; + return fifo_len / 4; + case 4: + default: + return fifo_len / 4; + } + return 0; +} + int rpm_lmac_internal_loopback(void *rpmd, int lmac_id, bool enable) { rpm_t *rpm = rpmd; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rpm.h linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rpm.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rpm.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rpm.h @@ -49,6 +49,7 @@ /* Function Declarations */ int rpm_get_nr_lmacs(void *rpmd); u8 rpm_get_lmac_type(void *rpmd, int lmac_id); +u32 rpm_get_lmac_fifo_len(void *rpmd, int lmac_id); int rpm_lmac_internal_loopback(void *rpmd, int lmac_id, bool enable); void rpm_lmac_enadis_rx_pause_fwding(void *rpmd, int lmac_id, bool enable); int rpm_lmac_get_pause_frm_status(void *cgxd, int lmac_id, u8 *tx_pause, diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu.h linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu.h @@ -813,7 +813,8 @@ void *rvu_first_cgx_pdata(struct rvu *rvu); int cgxlmac_to_pf(struct rvu *rvu, int cgx_id, int lmac_id); int rvu_cgx_config_tx(void *cgxd, int lmac_id, bool enable); - +int rvu_cgx_tx_enable(struct rvu *rvu, u16 pcifunc, bool enable); +u32 rvu_cgx_get_lmac_fifolen(struct rvu *rvu, int cgx, int lmac); int npc_get_nixlf_mcam_index(struct npc_mcam *mcam, u16 pcifunc, int nixlf, int type); bool is_mcam_entry_enabled(struct rvu *rvu, struct npc_mcam *mcam, int blkaddr, diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_cgx.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_cgx.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_cgx.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_cgx.c @@ -456,6 +456,23 @@ return mac_ops->mac_rx_tx_enable(cgxd, lmac_id, start); } +int rvu_cgx_tx_enable(struct rvu *rvu, u16 pcifunc, bool enable) +{ + int pf = rvu_get_pf(pcifunc); + struct mac_ops *mac_ops; + u8 cgx_id, lmac_id; + void *cgxd; + + if (!is_cgx_config_permitted(rvu, pcifunc)) + return LMAC_AF_ERR_PERM_DENIED; + + rvu_get_cgx_lmac_id(rvu->pf2cgxlmac_map[pf], &cgx_id, &lmac_id); + cgxd = rvu_cgx_pdata(cgx_id, rvu); + mac_ops = get_mac_ops(cgxd); + + return mac_ops->mac_tx_enable(cgxd, lmac_id, enable); +} + int rvu_cgx_config_tx(void *cgxd, int lmac_id, bool enable) { struct mac_ops *mac_ops; @@ -831,6 +848,22 @@ return fifo_len; } +u32 rvu_cgx_get_lmac_fifolen(struct rvu *rvu, int cgx, int lmac) +{ + struct mac_ops *mac_ops; + void *cgxd; + + cgxd = rvu_cgx_pdata(cgx, rvu); + if (!cgxd) + return 0; + + mac_ops = get_mac_ops(cgxd); + if (!mac_ops->lmac_fifo_len) + return 0; + + return mac_ops->lmac_fifo_len(cgxd, lmac); +} + static int rvu_cgx_config_intlbk(struct rvu *rvu, u16 pcifunc, bool en) { int pf = rvu_get_pf(pcifunc); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_nix.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_nix.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_nix.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_nix.c @@ -296,7 +296,6 @@ struct rvu_hwinfo *hw = rvu->hw; struct sdp_node_info *sdp_info; int pkind, pf, vf, lbkid, vfid; - struct mac_ops *mac_ops; u8 cgx_id, lmac_id; bool from_vf; int err; @@ -326,13 +325,6 @@ cgx_set_pkind(rvu_cgx_pdata(cgx_id, rvu), lmac_id, pkind); rvu_npc_set_pkind(rvu, pkind, pfvf); - mac_ops = get_mac_ops(rvu_cgx_pdata(cgx_id, rvu)); - - /* By default we enable pause frames */ - if ((pcifunc & RVU_PFVF_FUNC_MASK) == 0) - mac_ops->mac_enadis_pause_frm(rvu_cgx_pdata(cgx_id, - rvu), - lmac_id, true, true); break; case NIX_INTF_TYPE_LBK: vf = (pcifunc & RVU_PFVF_FUNC_MASK) - 1; @@ -3885,90 +3877,18 @@ req->minlen = minlen; } -static int -nix_config_link_credits(struct rvu *rvu, int blkaddr, int link, - u16 pcifunc, u64 tx_credits) -{ - struct rvu_hwinfo *hw = rvu->hw; - int pf = rvu_get_pf(pcifunc); - u8 cgx_id = 0, lmac_id = 0; - unsigned long poll_tmo; - bool restore_tx_en = 0; - struct nix_hw *nix_hw; - u64 cfg, sw_xoff = 0; - u32 schq = 0; - u32 credits; - int rc; - - nix_hw = get_nix_hw(rvu->hw, blkaddr); - if (!nix_hw) - return NIX_AF_ERR_INVALID_NIXBLK; - - if (tx_credits == nix_hw->tx_credits[link]) - return 0; - - /* Enable cgx tx if disabled for credits to be back */ - if (is_pf_cgxmapped(rvu, pf)) { - rvu_get_cgx_lmac_id(rvu->pf2cgxlmac_map[pf], &cgx_id, &lmac_id); - restore_tx_en = !rvu_cgx_config_tx(rvu_cgx_pdata(cgx_id, rvu), - lmac_id, true); - } - - mutex_lock(&rvu->rsrc_lock); - /* Disable new traffic to link */ - if (hw->cap.nix_shaping) { - schq = nix_get_tx_link(rvu, pcifunc); - sw_xoff = rvu_read64(rvu, blkaddr, NIX_AF_TL1X_SW_XOFF(schq)); - rvu_write64(rvu, blkaddr, - NIX_AF_TL1X_SW_XOFF(schq), BIT_ULL(0)); - } - - rc = NIX_AF_ERR_LINK_CREDITS; - poll_tmo = jiffies + usecs_to_jiffies(200000); - /* Wait for credits to return */ - do { - if (time_after(jiffies, poll_tmo)) - goto exit; - usleep_range(100, 200); - - cfg = rvu_read64(rvu, blkaddr, - NIX_AF_TX_LINKX_NORM_CREDIT(link)); - credits = (cfg >> 12) & 0xFFFFFULL; - } while (credits != nix_hw->tx_credits[link]); - - cfg &= ~(0xFFFFFULL << 12); - cfg |= (tx_credits << 12); - rvu_write64(rvu, blkaddr, NIX_AF_TX_LINKX_NORM_CREDIT(link), cfg); - rc = 0; - - nix_hw->tx_credits[link] = tx_credits; - -exit: - /* Enable traffic back */ - if (hw->cap.nix_shaping && !sw_xoff) - rvu_write64(rvu, blkaddr, NIX_AF_TL1X_SW_XOFF(schq), 0); - - /* Restore state of cgx tx */ - if (restore_tx_en) - rvu_cgx_config_tx(rvu_cgx_pdata(cgx_id, rvu), lmac_id, false); - - mutex_unlock(&rvu->rsrc_lock); - return rc; -} - int rvu_mbox_handler_nix_set_hw_frs(struct rvu *rvu, struct nix_frs_cfg *req, struct msg_rsp *rsp) { struct rvu_hwinfo *hw = rvu->hw; u16 pcifunc = req->hdr.pcifunc; int pf = rvu_get_pf(pcifunc); - int blkaddr, schq, link = -1; - struct nix_txsch *txsch; - u64 cfg, lmac_fifo_len; + int blkaddr, link = -1; struct nix_hw *nix_hw; struct rvu_pfvf *pfvf; u8 cgx = 0, lmac = 0; u16 max_mtu; + u64 cfg; blkaddr = rvu_get_blkaddr(rvu, BLKTYPE_NIX, pcifunc); if (blkaddr < 0) @@ -3989,25 +3909,6 @@ if (req->update_minlen && req->minlen < NIC_HW_MIN_FRS) return NIX_AF_ERR_FRS_INVALID; - /* Check if requester wants to update SMQ's */ - if (!req->update_smq) - goto rx_frscfg; - - /* Update min/maxlen in each of the SMQ attached to this PF/VF */ - txsch = &nix_hw->txsch[NIX_TXSCH_LVL_SMQ]; - mutex_lock(&rvu->rsrc_lock); - for (schq = 0; schq < txsch->schq.max; schq++) { - if (TXSCH_MAP_FUNC(txsch->pfvf_map[schq]) != pcifunc) - continue; - cfg = rvu_read64(rvu, blkaddr, NIX_AF_SMQX_CFG(schq)); - cfg = (cfg & ~(0xFFFFULL << 8)) | ((u64)req->maxlen << 8); - if (req->update_minlen) - cfg = (cfg & ~0x7FULL) | ((u64)req->minlen & 0x7F); - rvu_write64(rvu, blkaddr, NIX_AF_SMQX_CFG(schq), cfg); - } - mutex_unlock(&rvu->rsrc_lock); - -rx_frscfg: /* Check if config is for SDP link */ if (req->sdp_link) { if (!hw->sdp_links) @@ -4030,7 +3931,6 @@ if (link < 0) return NIX_AF_ERR_RX_LINK_INVALID; - linkcfg: nix_find_link_frs(rvu, req, pcifunc); @@ -4040,15 +3940,7 @@ cfg = (cfg & ~0xFFFFULL) | req->minlen; rvu_write64(rvu, blkaddr, NIX_AF_RX_LINKX_CFG(link), cfg); - if (req->sdp_link || pf == 0) - return 0; - - /* Update transmit credits for CGX links */ - lmac_fifo_len = - rvu_cgx_get_fifolen(rvu) / - cgx_get_lmac_cnt(rvu_cgx_pdata(cgx, rvu)); - return nix_config_link_credits(rvu, blkaddr, link, pcifunc, - (lmac_fifo_len - req->maxlen) / 16); + return 0; } int rvu_mbox_handler_nix_set_rx_cfg(struct rvu *rvu, struct nix_rx_cfg *req, @@ -4094,7 +3986,10 @@ struct rvu_hwinfo *hw = rvu->hw; int cgx, lmac_cnt, slink, link; u16 lbk_max_frs, lmac_max_frs; + unsigned long lmac_bmap; u64 tx_credits, cfg; + u64 lmac_fifo_len; + int iter; rvu_get_lbk_link_max_frs(rvu, &lbk_max_frs); rvu_get_lmac_link_max_frs(rvu, &lmac_max_frs); @@ -4128,12 +4023,23 @@ /* Skip when cgx is not available or lmac cnt is zero */ if (lmac_cnt <= 0) continue; - tx_credits = ((rvu_cgx_get_fifolen(rvu) / lmac_cnt) - - lmac_max_frs) / 16; - /* Enable credits and set credit pkt count to max allowed */ - cfg = (tx_credits << 12) | (0x1FF << 2) | BIT_ULL(1); slink = cgx * hw->lmac_per_cgx; - for (link = slink; link < (slink + lmac_cnt); link++) { + + /* Get LMAC id's from bitmap */ + lmac_bmap = cgx_get_lmac_bmap(rvu_cgx_pdata(cgx, rvu)); + for_each_set_bit(iter, &lmac_bmap, MAX_LMAC_PER_CGX) { + lmac_fifo_len = rvu_cgx_get_lmac_fifolen(rvu, cgx, iter); + if (!lmac_fifo_len) { + dev_err(rvu->dev, + "%s: Failed to get CGX/RPM%d:LMAC%d FIFO size\n", + __func__, cgx, iter); + continue; + } + tx_credits = (lmac_fifo_len - lmac_max_frs) / 16; + /* Enable credits and set credit pkt count to max allowed */ + cfg = (tx_credits << 12) | (0x1FF << 2) | BIT_ULL(1); + + link = iter + slink; nix_hw->tx_credits[link] = tx_credits; rvu_write64(rvu, blkaddr, NIX_AF_TX_LINKX_NORM_CREDIT(link), cfg); @@ -4541,7 +4447,13 @@ pfvf = rvu_get_pfvf(rvu, pcifunc); clear_bit(NIXLF_INITIALIZED, &pfvf->flags); - return rvu_cgx_start_stop_io(rvu, pcifunc, false); + err = rvu_cgx_start_stop_io(rvu, pcifunc, false); + if (err) + return err; + + rvu_cgx_tx_enable(rvu, pcifunc, true); + + return 0; } void rvu_nix_lf_teardown(struct rvu *rvu, u16 pcifunc, int blkaddr, int nixlf) @@ -5045,6 +4957,8 @@ 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) @@ -5058,8 +4972,6 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_npc.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_npc.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_npc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_npc.c @@ -388,7 +388,13 @@ 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); @@ -658,6 +664,7 @@ int blkaddr, ucast_idx, index; struct nix_rx_action action = { 0 }; u64 relaxed_mask; + u8 flow_key_alg; if (!hw->cap.nix_rx_multicast && is_cgx_vf(rvu, pcifunc)) return; @@ -688,6 +695,8 @@ action.op = NIX_RX_ACTIONOP_UCAST; } + flow_key_alg = action.flow_key_alg; + /* RX_ACTION set to MCAST for CGX PF's */ if (hw->cap.nix_rx_multicast && pfvf->use_mce_list && is_pf_cgxmapped(rvu, rvu_get_pf(pcifunc))) { @@ -727,7 +736,7 @@ req.vf = pcifunc; req.index = action.index; req.match_id = action.match_id; - req.flow_key_alg = action.flow_key_alg; + req.flow_key_alg = flow_key_alg; rvu_mbox_handler_npc_install_flow(rvu, &req, &rsp); } @@ -833,6 +842,7 @@ u8 mac_addr[ETH_ALEN] = { 0 }; struct nix_rx_action action = { 0 }; struct rvu_pfvf *pfvf; + u8 flow_key_alg; u16 vf_func; /* Only CGX PF/VF can add allmulticast entry */ @@ -859,6 +869,7 @@ *(u64 *)&action = npc_get_mcam_action(rvu, mcam, blkaddr, ucast_idx); + flow_key_alg = action.flow_key_alg; if (action.op != NIX_RX_ACTIONOP_RSS) { *(u64 *)&action = 0; action.op = NIX_RX_ACTIONOP_UCAST; @@ -895,7 +906,7 @@ req.vf = pcifunc | vf_func; req.index = action.index; req.match_id = action.match_id; - req.flow_key_alg = action.flow_key_alg; + req.flow_key_alg = flow_key_alg; rvu_mbox_handler_npc_install_flow(rvu, &req, &rsp); } @@ -961,11 +972,38 @@ mutex_unlock(&mcam->lock); } +static void npc_update_rx_action_with_alg_idx(struct rvu *rvu, struct nix_rx_action action, + struct rvu_pfvf *pfvf, int mcam_index, int blkaddr, + int alg_idx) + +{ + struct npc_mcam *mcam = &rvu->hw->mcam; + struct rvu_hwinfo *hw = rvu->hw; + int bank, op_rss; + + if (!is_mcam_entry_enabled(rvu, mcam, blkaddr, mcam_index)) + return; + + op_rss = (!hw->cap.nix_rx_multicast || !pfvf->use_mce_list); + + bank = npc_get_bank(mcam, mcam_index); + mcam_index &= (mcam->banksize - 1); + + /* If Rx action is MCAST update only RSS algorithm index */ + if (!op_rss) { + *(u64 *)&action = rvu_read64(rvu, blkaddr, + NPC_AF_MCAMEX_BANKX_ACTION(mcam_index, bank)); + + action.flow_key_alg = alg_idx; + } + rvu_write64(rvu, blkaddr, + NPC_AF_MCAMEX_BANKX_ACTION(mcam_index, bank), *(u64 *)&action); +} + void rvu_npc_update_flowkey_alg_idx(struct rvu *rvu, u16 pcifunc, int nixlf, int group, int alg_idx, int mcam_index) { struct npc_mcam *mcam = &rvu->hw->mcam; - struct rvu_hwinfo *hw = rvu->hw; struct nix_rx_action action; int blkaddr, index, bank; struct rvu_pfvf *pfvf; @@ -1021,15 +1059,16 @@ /* If PF's promiscuous entry is enabled, * Set RSS action for that entry as well */ - if ((!hw->cap.nix_rx_multicast || !pfvf->use_mce_list) && - is_mcam_entry_enabled(rvu, mcam, blkaddr, index)) { - bank = npc_get_bank(mcam, index); - index &= (mcam->banksize - 1); - - rvu_write64(rvu, blkaddr, - NPC_AF_MCAMEX_BANKX_ACTION(index, bank), - *(u64 *)&action); - } + npc_update_rx_action_with_alg_idx(rvu, action, pfvf, index, blkaddr, + alg_idx); + + index = npc_get_nixlf_mcam_index(mcam, pcifunc, + nixlf, NIXLF_ALLMULTI_ENTRY); + /* If PF's allmulti entry is enabled, + * Set RSS action for that entry as well + */ + npc_update_rx_action_with_alg_idx(rvu, action, pfvf, index, blkaddr, + alg_idx); } void npc_enadis_default_mce_entry(struct rvu *rvu, u16 pcifunc, @@ -2586,18 +2625,17 @@ rsp->entry = NPC_MCAM_ENTRY_INVALID; rsp->free_count = 0; - /* Check if ref_entry is within range */ - if (req->priority && req->ref_entry >= mcam->bmap_entries) { - dev_err(rvu->dev, "%s: reference entry %d is out of range\n", - __func__, req->ref_entry); - return NPC_MCAM_INVALID_REQ; - } + /* Check if ref_entry is greater that the range + * then set it to max value. + */ + if (req->ref_entry > mcam->bmap_entries) + req->ref_entry = mcam->bmap_entries; /* ref_entry can't be '0' if requested priority is high. * Can't be last entry if requested priority is low. */ if ((!req->ref_entry && req->priority == NPC_MCAM_HIGHER_PRIO) || - ((req->ref_entry == (mcam->bmap_entries - 1)) && + ((req->ref_entry == mcam->bmap_entries) && req->priority == NPC_MCAM_LOWER_PRIO)) return NPC_MCAM_INVALID_REQ; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.c @@ -262,6 +262,7 @@ mutex_unlock(&pfvf->mbox.lock); return err; } +EXPORT_SYMBOL(otx2_config_pause_frm); int otx2_set_flowkey_cfg(struct otx2_nic *pfvf) { @@ -855,8 +856,11 @@ if (pfvf->ptp) { err = qmem_alloc(pfvf->dev, &sq->timestamps, qset->sqe_cnt, sizeof(*sq->timestamps)); - if (err) + if (err) { + kfree(sq->sg); + sq->sg = NULL; return err; + } } sq->head = 0; @@ -871,7 +875,14 @@ sq->stats.bytes = 0; sq->stats.pkts = 0; - return pfvf->hw_ops->sq_aq_init(pfvf, qidx, sqb_aura); + err = pfvf->hw_ops->sq_aq_init(pfvf, qidx, sqb_aura); + if (err) { + kfree(sq->sg); + sq->sg = NULL; + return err; + } + + return 0; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_flows.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_flows.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_flows.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_flows.c @@ -1002,6 +1002,7 @@ struct ethhdr *eth_hdr; bool new = false; int err = 0; + u64 vf_num; u32 ring; if (!flow_cfg->max_flows) { @@ -1014,7 +1015,21 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c @@ -557,7 +557,9 @@ 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 @@ 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_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 @@ 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 @@ (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 @@ 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 @@ 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)); } @@ -1574,6 +1589,21 @@ mutex_unlock(&mbox->lock); } +static bool otx2_promisc_use_mce_list(struct otx2_nic *pfvf) +{ + int vf; + + /* The AF driver will determine whether to allow the VF netdev or not */ + if (is_otx2_vf(pfvf->pcifunc)) + return true; + + /* check if there are any trusted VFs associated with the PF netdev */ + for (vf = 0; vf < pci_num_vf(pfvf->pdev); vf++) + if (pfvf->vf_configs[vf].trusted) + return true; + return false; +} + static void otx2_do_set_rx_mode(struct otx2_nic *pf) { struct net_device *netdev = pf->netdev; @@ -1606,7 +1636,8 @@ if (netdev->flags & (IFF_ALLMULTI | IFF_MULTICAST)) req->mode |= NIX_RX_MODE_ALLMULTI; - req->mode |= NIX_RX_MODE_USE_MCE; + if (otx2_promisc_use_mce_list(pf)) + req->mode |= NIX_RX_MODE_USE_MCE; otx2_sync_mbox_msg(&pf->mbox); mutex_unlock(&pf->mbox.lock); @@ -1754,9 +1785,6 @@ if (pf->linfo.link_up && !(pf->pcifunc & RVU_PFVF_FUNC_MASK)) otx2_handle_link_event(pf); - /* Restore pause frame settings */ - otx2_config_pause_frm(pf); - /* Install DMAC Filters */ if (pf->flags & OTX2_FLAG_DMACFLTR_SUPPORT) otx2_dmacflt_reinstall_flows(pf); @@ -1826,6 +1854,8 @@ /* 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, @@ -2423,11 +2453,14 @@ pf->vf_configs[vf].trusted = enable; rc = otx2_set_vf_permissions(pf, vf, OTX2_TRUSTED_VF); - if (rc) + if (rc) { pf->vf_configs[vf].trusted = !enable; - else + } else { netdev_info(pf->netdev, "VF %d is %strusted\n", vf, enable ? "" : "not "); + otx2_set_rx_mode(netdev); + } + return rc; } @@ -2741,10 +2774,6 @@ /* Enable link notifications */ otx2_cgx_config_linkevents(pf, true); - /* Enable pause frames by default */ - pf->flags |= OTX2_FLAG_RX_PAUSE_ENABLED; - pf->flags |= OTX2_FLAG_TX_PAUSE_ENABLED; - return 0; err_pf_sriov_init: @@ -2888,6 +2917,14 @@ if (pf->flags & OTX2_FLAG_RX_TSTAMP_ENABLED) otx2_config_hw_rx_tstamp(pf, false); + /* Disable 802.3x pause frames */ + if (pf->flags & OTX2_FLAG_RX_PAUSE_ENABLED || + (pf->flags & OTX2_FLAG_TX_PAUSE_ENABLED)) { + pf->flags &= ~OTX2_FLAG_RX_PAUSE_ENABLED; + pf->flags &= ~OTX2_FLAG_TX_PAUSE_ENABLED; + otx2_config_pause_frm(pf); + } + cancel_work_sync(&pf->reset_task); /* Disable link notifications */ otx2_cgx_config_linkevents(pf, false); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_struct.h linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_struct.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_struct.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_struct.h @@ -311,23 +311,23 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_vf.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_vf.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_vf.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_vf.c @@ -695,10 +695,6 @@ if (err) goto err_unreg_netdev; - /* Enable pause frames by default */ - vf->flags |= OTX2_FLAG_RX_PAUSE_ENABLED; - vf->flags |= OTX2_FLAG_TX_PAUSE_ENABLED; - return 0; err_unreg_netdev: @@ -732,6 +728,14 @@ vf = netdev_priv(netdev); + /* Disable 802.3x pause frames */ + if (vf->flags & OTX2_FLAG_RX_PAUSE_ENABLED || + (vf->flags & OTX2_FLAG_TX_PAUSE_ENABLED)) { + vf->flags &= ~OTX2_FLAG_RX_PAUSE_ENABLED; + vf->flags &= ~OTX2_FLAG_TX_PAUSE_ENABLED; + otx2_config_pause_frm(vf); + } + cancel_work_sync(&vf->reset_task); otx2_unregister_dl(vf); unregister_netdev(netdev); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/pxa168_eth.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/pxa168_eth.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/pxa168_eth.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/pxa168_eth.c @@ -389,7 +389,7 @@ * Outputs * return the calculated entry. */ -static u32 hash_function(unsigned char *mac_addr_orig) +static u32 hash_function(const unsigned char *mac_addr_orig) { u32 hash_result; u32 addr0; @@ -434,7 +434,7 @@ * -ENOSPC if table full */ static int add_del_hash_entry(struct pxa168_eth_private *pep, - unsigned char *mac_addr, + const unsigned char *mac_addr, u32 rd, u32 skip, int del) { struct addr_table_entry *entry, *start; @@ -521,7 +521,7 @@ */ static void update_hash_table_mac_address(struct pxa168_eth_private *pep, unsigned char *oaddr, - unsigned char *addr) + const unsigned char *addr) { /* Delete old entry */ if (oaddr) diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mediatek/mtk_star_emac.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mediatek/mtk_star_emac.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mediatek/mtk_star_emac.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mediatek/mtk_star_emac.c @@ -522,7 +522,7 @@ static void mtk_star_set_mac_addr(struct net_device *ndev) { struct mtk_star_priv *priv = netdev_priv(ndev); - u8 *mac_addr = ndev->dev_addr; + const u8 *mac_addr = ndev->dev_addr; unsigned int high, low; high = mac_addr[0] << 8 | mac_addr[1] << 0; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c @@ -691,7 +691,7 @@ while (block_timestamp > tracer->last_timestamp) { /* Check block override if it's not the first block */ - if (!tracer->last_timestamp) { + if (tracer->last_timestamp) { u64 *ts_event; /* To avoid block override be the HW in case of buffer * wraparound, the time stamp of the previous block @@ -821,7 +821,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en/reporter_rx.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en/reporter_rx.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en/reporter_rx.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en/reporter_rx.c @@ -655,11 +655,11 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c @@ -609,22 +609,15 @@ 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 @@ 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 @@ } 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 @@ 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 @@ } 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c @@ -67,13 +67,17 @@ { 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c +++ linux-xilinx-zynqmp-5.15.0/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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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,11 +3521,51 @@ 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; struct pedit_headers_action hdrs[2] = {}; @@ -3692,21 +3676,6 @@ } } - 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 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_tc.h linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_tc.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_tc.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_tc.h @@ -248,9 +248,4 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c @@ -223,7 +223,7 @@ int mlx5i_create_underlay_qp(struct mlx5e_priv *priv) { - unsigned char *dev_addr = priv->netdev->dev_addr; + const unsigned char *dev_addr = priv->netdev->dev_addr; u32 out[MLX5_ST_SZ_DW(create_qp_out)] = {}; u32 in[MLX5_ST_SZ_DW(create_qp_in)] = {}; struct mlx5i_priv *ipriv = priv->ppriv; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_action.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_action.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_action.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_action.c @@ -580,6 +580,7 @@ switch (action_type) { case DR_ACTION_TYP_DROP: attr.final_icm_addr = nic_dmn->drop_icm_addr; + attr.hit_gvmi = nic_dmn->drop_icm_addr >> 48; break; case DR_ACTION_TYP_FT: dest_action = action; @@ -667,16 +668,16 @@ action->sampler->tx_icm_addr; break; case DR_ACTION_TYP_VPORT: - attr.hit_gvmi = action->vport->caps->vhca_gvmi; - dest_action = action; - if (rx_rule) { - if (action->vport->caps->num == MLX5_VPORT_UPLINK) { - mlx5dr_dbg(dmn, "Device doesn't support Loopback on WIRE vport\n"); - return -EOPNOTSUPP; - } - attr.final_icm_addr = action->vport->caps->icm_address_rx; + if (unlikely(rx_rule && action->vport->caps->num == MLX5_VPORT_UPLINK)) { + /* can't go to uplink on RX rule - dropping instead */ + attr.final_icm_addr = nic_dmn->drop_icm_addr; + attr.hit_gvmi = nic_dmn->drop_icm_addr >> 48; } else { - attr.final_icm_addr = action->vport->caps->icm_address_tx; + attr.hit_gvmi = action->vport->caps->vhca_gvmi; + dest_action = action; + attr.final_icm_addr = rx_rule ? + action->vport->caps->icm_address_rx : + action->vport->caps->icm_address_tx; } break; case DR_ACTION_TYP_POP_VLAN: diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige.h linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige.h @@ -51,11 +51,6 @@ #define MLXBF_GIGE_ERROR_INTR_IDX 0 #define MLXBF_GIGE_RECEIVE_PKT_INTR_IDX 1 #define MLXBF_GIGE_LLU_PLU_INTR_IDX 2 -#define MLXBF_GIGE_PHY_INT_N 3 - -#define MLXBF_GIGE_MDIO_DEFAULT_PHY_ADDR 0x3 - -#define MLXBF_GIGE_DEFAULT_PHY_INT_GPIO 12 struct mlxbf_gige_stats { u64 hw_access_errors; @@ -82,11 +77,7 @@ void __iomem *mdio_io; void __iomem *clk_io; struct mii_bus *mdiobus; - void __iomem *gpio_io; - struct irq_domain *irqdomain; - u32 phy_int_gpio_mask; spinlock_t lock; /* for packet processing indices */ - spinlock_t gpio_lock; /* for GPIO bus access */ u16 rx_q_entries; u16 tx_q_entries; u64 *tx_wqe_base; @@ -188,5 +179,2 @@ -int mlxbf_gige_gpio_init(struct platform_device *pdev, struct mlxbf_gige *priv); -void mlxbf_gige_gpio_free(struct mlxbf_gige *priv); - #endif /* !defined(__MLXBF_GIGE_H__) */ diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige_main.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige_main.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige_main.c @@ -132,9 +132,15 @@ { struct mlxbf_gige *priv = netdev_priv(netdev); struct phy_device *phydev = netdev->phydev; + u64 control; u64 int_en; int err; + /* Perform general init of GigE block */ + control = readq(priv->base + MLXBF_GIGE_CONTROL); + control |= MLXBF_GIGE_CONTROL_PORT_EN; + writeq(control, priv->base + MLXBF_GIGE_CONTROL); + err = mlxbf_gige_request_irqs(priv); if (err) return err; @@ -149,14 +155,14 @@ */ priv->valid_polarity = 0; - err = mlxbf_gige_rx_init(priv); + phy_start(phydev); + + err = mlxbf_gige_tx_init(priv); if (err) goto free_irqs; - err = mlxbf_gige_tx_init(priv); + err = mlxbf_gige_rx_init(priv); if (err) - goto rx_deinit; - - phy_start(phydev); + goto tx_deinit; netif_napi_add(netdev, &priv->napi, mlxbf_gige_poll, NAPI_POLL_WEIGHT); napi_enable(&priv->napi); @@ -178,8 +184,8 @@ return 0; -rx_deinit: - mlxbf_gige_rx_deinit(priv); +tx_deinit: + mlxbf_gige_tx_deinit(priv); free_irqs: mlxbf_gige_free_irqs(priv); @@ -280,8 +286,7 @@ void __iomem *llu_base; void __iomem *plu_base; void __iomem *base; - u64 control; - int addr; + int addr, phy_irq; int err; base = devm_platform_ioremap_resource(pdev, MLXBF_GIGE_RES_MAC); @@ -296,11 +301,6 @@ if (IS_ERR(plu_base)) return PTR_ERR(plu_base); - /* Perform general init of GigE block */ - control = readq(base + MLXBF_GIGE_CONTROL); - control |= MLXBF_GIGE_CONTROL_PORT_EN; - writeq(control, base + MLXBF_GIGE_CONTROL); - netdev = devm_alloc_etherdev(&pdev->dev, sizeof(*priv)); if (!netdev) return -ENOMEM; @@ -316,20 +316,12 @@ priv->pdev = pdev; spin_lock_init(&priv->lock); - spin_lock_init(&priv->gpio_lock); /* Attach MDIO device */ err = mlxbf_gige_mdio_probe(pdev, priv); if (err) return err; - err = mlxbf_gige_gpio_init(pdev, priv); - if (err) { - dev_err(&pdev->dev, "PHY IRQ initialization failed\n"); - mlxbf_gige_mdio_remove(priv); - return -ENODEV; - } - priv->base = base; priv->llu_base = llu_base; priv->plu_base = plu_base; @@ -350,6 +342,12 @@ priv->rx_irq = platform_get_irq(pdev, MLXBF_GIGE_RECEIVE_PKT_INTR_IDX); priv->llu_plu_irq = platform_get_irq(pdev, MLXBF_GIGE_LLU_PLU_INTR_IDX); + phy_irq = acpi_dev_gpio_irq_get_by(ACPI_COMPANION(&pdev->dev), "phy-gpios", 0); + if (phy_irq < 0) { + dev_err(&pdev->dev, "Error getting PHY irq. Use polling instead"); + phy_irq = PHY_POLL; + } + phydev = phy_find_first(priv->mdiobus); if (!phydev) { err = -ENODEV; @@ -357,8 +355,8 @@ } addr = phydev->mdio.addr; - priv->mdiobus->irq[addr] = priv->phy_irq; - phydev->irq = priv->phy_irq; + priv->mdiobus->irq[addr] = phy_irq; + phydev->irq = phy_irq; err = phy_connect_direct(netdev, phydev, mlxbf_gige_adjust_link, @@ -394,7 +392,6 @@ return 0; out: - mlxbf_gige_gpio_free(priv); mlxbf_gige_mdio_remove(priv); return err; } @@ -405,7 +402,6 @@ unregister_netdev(priv->netdev); phy_disconnect(priv->netdev->phydev); - mlxbf_gige_gpio_free(priv); mlxbf_gige_mdio_remove(priv); platform_set_drvdata(pdev, NULL); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige_rx.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige_rx.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige_rx.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige_rx.c @@ -142,6 +142,9 @@ writeq(MLXBF_GIGE_RX_MAC_FILTER_COUNT_PASS_EN, priv->base + MLXBF_GIGE_RX_MAC_FILTER_COUNT_PASS); + writeq(ilog2(priv->rx_q_entries), + priv->base + MLXBF_GIGE_RX_WQE_SIZE_LOG2); + /* Clear MLXBF_GIGE_INT_MASK 'receive pkt' bit to * indicate readiness to receive interrupts */ @@ -154,9 +157,6 @@ data |= MLXBF_GIGE_RX_DMA_EN; writeq(data, priv->base + MLXBF_GIGE_RX_DMA); - writeq(ilog2(priv->rx_q_entries), - priv->base + MLXBF_GIGE_RX_WQE_SIZE_LOG2); - return 0; free_wqe_and_skb: @@ -267,6 +267,13 @@ priv->stats.rx_truncate_errors++; } + /* Read receive consumer index before replenish so that this routine + * returns accurate return value even if packet is received into + * just-replenished buffer prior to exiting this routine. + */ + rx_ci = readq(priv->base + MLXBF_GIGE_RX_CQE_PACKET_CI); + rx_ci_rem = rx_ci % priv->rx_q_entries; + /* Let hardware know we've replenished one buffer */ rx_pi++; @@ -279,8 +286,6 @@ rx_pi_rem = rx_pi % priv->rx_q_entries; if (rx_pi_rem == 0) priv->valid_polarity ^= 1; - rx_ci = readq(priv->base + MLXBF_GIGE_RX_CQE_PACKET_CI); - rx_ci_rem = rx_ci % priv->rx_q_entries; if (skb) netif_receive_skb(skb); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/micrel/ks8851_common.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/micrel/ks8851_common.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/micrel/ks8851_common.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/micrel/ks8851_common.c @@ -361,16 +361,18 @@ handled |= IRQ_RXPSI; if (status & IRQ_TXI) { - handled |= IRQ_TXI; + unsigned short tx_space = ks8851_rdreg16(ks, KS_TXMIR); - /* no lock here, tx queue should have been stopped */ + netif_dbg(ks, intr, ks->netdev, + "%s: txspace %d\n", __func__, tx_space); - /* update our idea of how much tx space is available to the - * system */ - ks->tx_space = ks8851_rdreg16(ks, KS_TXMIR); + spin_lock(&ks->statelock); + ks->tx_space = tx_space; + if (netif_queue_stopped(ks->netdev)) + netif_wake_queue(ks->netdev); + spin_unlock(&ks->statelock); - netif_dbg(ks, intr, ks->netdev, - "%s: txspace %d\n", __func__, ks->tx_space); + handled |= IRQ_TXI; } if (status & IRQ_RXI) @@ -413,9 +415,6 @@ if (status & IRQ_LCI) mii_check_link(&ks->mii); - if (status & IRQ_TXI) - netif_wake_queue(ks->netdev); - return IRQ_HANDLED; } @@ -499,6 +498,7 @@ ks8851_wrreg16(ks, KS_ISR, ks->rc_ier); ks8851_wrreg16(ks, KS_IER, ks->rc_ier); + ks->queued_len = 0; netif_start_queue(ks->netdev); netif_dbg(ks, ifup, ks->netdev, "network device up\n"); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/micrel/ksz884x.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/micrel/ksz884x.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/micrel/ksz884x.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/micrel/ksz884x.c @@ -4033,7 +4033,7 @@ } } -static int hw_add_addr(struct ksz_hw *hw, u8 *mac_addr) +static int hw_add_addr(struct ksz_hw *hw, const u8 *mac_addr) { int i; int j = ADDITIONAL_ENTRIES; @@ -4054,7 +4054,7 @@ return -1; } -static int hw_del_addr(struct ksz_hw *hw, u8 *mac_addr) +static int hw_del_addr(struct ksz_hw *hw, const u8 *mac_addr) { int i; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/myricom/myri10ge/myri10ge.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/myricom/myri10ge/myri10ge.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/myricom/myri10ge/myri10ge.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/myricom/myri10ge/myri10ge.c @@ -796,7 +796,8 @@ return status; } -static int myri10ge_update_mac_address(struct myri10ge_priv *mgp, u8 * addr) +static int myri10ge_update_mac_address(struct myri10ge_priv *mgp, + const u8 * addr) { struct myri10ge_cmd cmd; int status; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/neterion/s2io.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/neterion/s2io.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/neterion/s2io.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/neterion/s2io.c @@ -5217,7 +5217,7 @@ * as defined in errno.h file on failure. */ -static int do_s2io_prog_unicast(struct net_device *dev, u8 *addr) +static int do_s2io_prog_unicast(struct net_device *dev, const u8 *addr) { struct s2io_nic *sp = netdev_priv(dev); register u64 mac_addr = 0, perm_addr = 0; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/netronome/nfp/flower/conntrack.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/netronome/nfp/flower/conntrack.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/netronome/nfp/flower/conntrack.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/netronome/nfp/flower/conntrack.c @@ -1665,8 +1665,6 @@ struct nfp_fl_ct_flow_entry *ct_entry; struct netlink_ext_ack *extack = NULL; - ASSERT_RTNL(); - extack = flow->common.extack; switch (flow->command) { case FLOW_CLS_REPLACE: @@ -1709,9 +1707,13 @@ switch (type) { case TC_SETUP_CLSFLOWER: - rtnl_lock(); + while (!mutex_trylock(&zt->priv->nfp_fl_lock)) { + if (!zt->nft) /* avoid deadlock */ + return err; + msleep(20); + } err = nfp_fl_ct_offload_nft_flow(zt, flow); - rtnl_unlock(); + mutex_unlock(&zt->priv->nfp_fl_lock); break; default: return -EOPNOTSUPP; @@ -1739,6 +1741,7 @@ struct nfp_fl_ct_flow_entry *ct_entry; struct nfp_fl_ct_zone_entry *zt; struct rhashtable *m_table; + struct nf_flowtable *nft; if (!ct_map_ent) return -ENOENT; @@ -1755,8 +1758,12 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/netronome/nfp/flower/tunnel_conf.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/netronome/nfp/flower/tunnel_conf.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/netronome/nfp/flower/tunnel_conf.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/netronome/nfp/flower/tunnel_conf.c @@ -837,7 +837,7 @@ } static int -__nfp_tunnel_offload_mac(struct nfp_app *app, u8 *mac, u16 idx, bool del) +__nfp_tunnel_offload_mac(struct nfp_app *app, const u8 *mac, u16 idx, bool del) { struct nfp_tun_mac_addr_offload payload; @@ -886,7 +886,7 @@ } static struct nfp_tun_offloaded_mac * -nfp_tunnel_lookup_offloaded_macs(struct nfp_app *app, u8 *mac) +nfp_tunnel_lookup_offloaded_macs(struct nfp_app *app, const u8 *mac) { struct nfp_flower_priv *priv = app->priv; @@ -927,7 +927,7 @@ u16 nfp_mac_idx = 0; entry = nfp_tunnel_lookup_offloaded_macs(app, netdev->dev_addr); - if (entry && nfp_tunnel_is_mac_idx_global(entry->index)) { + if (entry && (nfp_tunnel_is_mac_idx_global(entry->index) || netif_is_lag_port(netdev))) { if (entry->bridge_count || !nfp_flower_is_supported_bridge(netdev)) { nfp_tunnel_offloaded_macs_inc_ref_and_link(entry, @@ -1005,7 +1005,7 @@ static int nfp_tunnel_del_shared_mac(struct nfp_app *app, struct net_device *netdev, - u8 *mac, bool mod) + const u8 *mac, bool mod) { struct nfp_flower_priv *priv = app->priv; struct nfp_flower_repr_priv *repr_priv; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/nxp/lpc_eth.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/nxp/lpc_eth.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/nxp/lpc_eth.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/nxp/lpc_eth.c @@ -419,7 +419,7 @@ /* * MAC support functions */ -static void __lpc_set_mac(struct netdata_local *pldat, u8 *mac) +static void __lpc_set_mac(struct netdata_local *pldat, const u8 *mac) { u32 tmp; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/pensando/ionic/ionic_dev.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/pensando/ionic/ionic_dev.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/pensando/ionic/ionic_dev.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/pensando/ionic/ionic_dev.c @@ -268,6 +268,7 @@ void ionic_dev_cmd_go(struct ionic_dev *idev, union ionic_dev_cmd *cmd) { + idev->opcode = cmd->cmd.opcode; memcpy_toio(&idev->dev_cmd_regs->cmd, cmd, sizeof(*cmd)); iowrite32(0, &idev->dev_cmd_regs->done); iowrite32(1, &idev->dev_cmd_regs->doorbell); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/pensando/ionic/ionic_dev.h linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/pensando/ionic/ionic_dev.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/pensando/ionic/ionic_dev.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/pensando/ionic/ionic_dev.h @@ -144,6 +144,7 @@ bool fw_hb_ready; bool fw_status_ready; u8 fw_generation; + u8 opcode; u64 __iomem *db_pages; dma_addr_t phy_db_pages; @@ -208,7 +209,7 @@ void *cb_arg; }; -#define IONIC_QUEUE_NAME_MAX_SZ 32 +#define IONIC_QUEUE_NAME_MAX_SZ 16 struct ionic_queue { struct device *dev; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/pensando/ionic/ionic_lif.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/pensando/ionic/ionic_lif.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/pensando/ionic/ionic_lif.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/pensando/ionic/ionic_lif.c @@ -44,24 +44,24 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/pensando/ionic/ionic_main.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/pensando/ionic/ionic_main.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/pensando/ionic/ionic_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/pensando/ionic/ionic_main.c @@ -350,7 +350,7 @@ */ max_wait = jiffies + (max_seconds * HZ); try_again: - opcode = readb(&idev->dev_cmd_regs->cmd.cmd.opcode); + opcode = idev->opcode; start_time = jiffies; do { done = ionic_dev_cmd_done(idev); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_dev.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_dev.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_dev.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_dev.c @@ -951,7 +951,7 @@ } int qed_llh_add_mac_filter(struct qed_dev *cdev, - u8 ppfid, u8 mac_addr[ETH_ALEN]) + u8 ppfid, const u8 mac_addr[ETH_ALEN]) { struct qed_hwfn *p_hwfn = QED_LEADING_HWFN(cdev); struct qed_ptt *p_ptt = qed_ptt_acquire(p_hwfn); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_dev_api.h linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_dev_api.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_dev_api.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_dev_api.h @@ -381,7 +381,7 @@ * Return: Int. */ int qed_llh_add_mac_filter(struct qed_dev *cdev, - u8 ppfid, u8 mac_addr[ETH_ALEN]); + u8 ppfid, const u8 mac_addr[ETH_ALEN]); /** * qed_llh_remove_mac_filter(): Remove a LLH MAC filter from the given diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_l2.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_l2.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_l2.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_l2.c @@ -2857,7 +2857,7 @@ cqe); } -static int qed_req_bulletin_update_mac(struct qed_dev *cdev, u8 *mac) +static int qed_req_bulletin_update_mac(struct qed_dev *cdev, const u8 *mac) { int i, ret; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_main.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_main.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_main.c @@ -2892,7 +2892,7 @@ return status; } -static int qed_update_mac(struct qed_dev *cdev, u8 *mac) +static int qed_update_mac(struct qed_dev *cdev, const u8 *mac) { struct qed_hwfn *hwfn = QED_LEADING_HWFN(cdev); struct qed_ptt *ptt; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_mcp.h linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_mcp.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_mcp.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_mcp.h @@ -536,7 +536,7 @@ * Return: Int - 0 - Operation was successul. */ int qed_mcp_ov_update_mac(struct qed_hwfn *p_hwfn, - struct qed_ptt *p_ptt, u8 *mac); + struct qed_ptt *p_ptt, const u8 *mac); /** * qed_mcp_ov_update_wol(): Send WOL mode to MFW. diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_vf.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_vf.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_vf.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_vf.c @@ -1379,7 +1379,7 @@ int qed_vf_pf_bulletin_update_mac(struct qed_hwfn *p_hwfn, - u8 *p_mac) + const u8 *p_mac) { struct qed_vf_iov *p_iov = p_hwfn->vf_iov_info; struct vfpf_bulletin_update_mac_tlv *p_req; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_vf.h linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_vf.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_vf.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_vf.h @@ -1070,7 +1070,7 @@ * * Return: Int. */ -int qed_vf_pf_bulletin_update_mac(struct qed_hwfn *p_hwfn, u8 *p_mac); +int qed_vf_pf_bulletin_update_mac(struct qed_hwfn *p_hwfn, const u8 *p_mac); #else static inline void qed_vf_get_link_params(struct qed_hwfn *p_hwfn, @@ -1259,7 +1259,7 @@ } static inline int qed_vf_pf_bulletin_update_mac(struct qed_hwfn *p_hwfn, - u8 *p_mac) + const u8 *p_mac) { return -EINVAL; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qede/qede_filter.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qede/qede_filter.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qede/qede_filter.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qede/qede_filter.c @@ -617,7 +617,7 @@ static int qede_set_ucast_rx_mac(struct qede_dev *edev, enum qed_filter_xcast_params_type opcode, - unsigned char mac[ETH_ALEN]) + const unsigned char mac[ETH_ALEN]) { struct qed_filter_ucast_params ucast; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qla3xxx.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qla3xxx.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qla3xxx.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qla3xxx.c @@ -2589,6 +2589,7 @@ if (qdev->lrg_buf_q_alloc_virt_addr == NULL) { netdev_err(qdev->ndev, "lBufQ failed\n"); + kfree(qdev->lrg_buf); return -ENOMEM; } qdev->lrg_buf_q_virt_addr = qdev->lrg_buf_q_alloc_virt_addr; @@ -2613,6 +2614,7 @@ qdev->lrg_buf_q_alloc_size, qdev->lrg_buf_q_alloc_virt_addr, qdev->lrg_buf_q_alloc_phy_addr); + kfree(qdev->lrg_buf); return -ENOMEM; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qualcomm/qca_spi.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qualcomm/qca_spi.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qualcomm/qca_spi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qualcomm/qca_spi.c @@ -581,6 +581,18 @@ netdev_info(qca->net_dev, "SPI thread created\n"); while (!kthread_should_stop()) { set_current_state(TASK_INTERRUPTIBLE); + if (kthread_should_park()) { + netif_tx_disable(qca->net_dev); + netif_carrier_off(qca->net_dev); + qcaspi_flush_tx_ring(qca); + kthread_parkme(); + if (qca->sync == QCASPI_SYNC_READY) { + netif_carrier_on(qca->net_dev); + netif_wake_queue(qca->net_dev); + } + continue; + } + if ((qca->intr_req == qca->intr_svc) && !qca->txr.skb[qca->txr.head]) schedule(); @@ -609,11 +621,17 @@ if (intr_cause & SPI_INT_CPU_ON) { qcaspi_qca7k_sync(qca, QCASPI_EVENT_CPUON); + /* Frame decoding in progress */ + if (qca->frm_handle.state != qca->frm_handle.init) + qca->net_dev->stats.rx_dropped++; + + qcafrm_fsm_init_spi(&qca->frm_handle); + qca->stats.device_reset++; + /* not synced. */ if (qca->sync != QCASPI_SYNC_READY) continue; - qca->stats.device_reset++; netif_wake_queue(qca->net_dev); netif_carrier_on(qca->net_dev); } diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/rdc/r6040.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/rdc/r6040.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/rdc/r6040.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/rdc/r6040.c @@ -453,7 +453,7 @@ { struct r6040_private *lp = netdev_priv(dev); void __iomem *ioaddr = lp->base; - u16 *adrp; + const u16 *adrp; /* Stop MAC */ iowrite16(MSK_INT, ioaddr + MIER); /* Mask Off Interrupt */ @@ -462,7 +462,7 @@ r6040_reset_mac(lp); /* Restore MAC Address to MIDx */ - adrp = (u16 *) dev->dev_addr; + adrp = (const u16 *) dev->dev_addr; iowrite16(adrp[0], ioaddr + MID_0L); iowrite16(adrp[1], ioaddr + MID_0M); iowrite16(adrp[2], ioaddr + MID_0H); @@ -731,13 +731,13 @@ { struct r6040_private *lp = netdev_priv(dev); void __iomem *ioaddr = lp->base; - u16 *adrp; + const u16 *adrp; /* Reset MAC */ r6040_reset_mac(lp); /* Restore MAC Address */ - adrp = (u16 *) dev->dev_addr; + adrp = (const u16 *) dev->dev_addr; iowrite16(adrp[0], ioaddr + MID_0L); iowrite16(adrp[1], ioaddr + MID_0M); iowrite16(adrp[2], ioaddr + MID_0H); @@ -849,13 +849,13 @@ unsigned long flags; struct netdev_hw_addr *ha; int i; - u16 *adrp; + const u16 *adrp; u16 hash_table[4] = { 0 }; spin_lock_irqsave(&lp->lock, flags); /* Keep our MAC Address */ - adrp = (u16 *)dev->dev_addr; + adrp = (const u16 *)dev->dev_addr; iowrite16(adrp[0], ioaddr + MID_0L); iowrite16(adrp[1], ioaddr + MID_0M); iowrite16(adrp[2], ioaddr + MID_0H); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/realtek/r8169_main.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/realtek/r8169_main.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/realtek/r8169_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/realtek/r8169_main.c @@ -205,6 +205,7 @@ /* 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 @@ 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 }; @@ -1194,7 +1197,7 @@ { r8168ep_ocp_write(tp, 0x01, 0x180, OOB_CMD_DRIVER_START); r8168ep_ocp_write(tp, 0x01, 0x30, r8168ep_ocp_read(tp, 0x30) | 0x01); - rtl_loop_wait_high(tp, &rtl_ep_ocp_read_cond, 10000, 10); + rtl_loop_wait_high(tp, &rtl_ep_ocp_read_cond, 10000, 30); } static void rtl8168_driver_start(struct rtl8169_private *tp) @@ -2272,9 +2275,13 @@ 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 @@ 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 @@ { 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 @@ 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 @@ * 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 @@ 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 @@ { struct rtl8169_private *tp = container_of(work, struct rtl8169_private, wk.work); + int ret; rtnl_lock(); @@ -4646,9 +4656,21 @@ !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 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 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/renesas/ravb_main.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/renesas/ravb_main.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/renesas/ravb_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/renesas/ravb_main.c @@ -1448,19 +1448,20 @@ 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 @@ 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 @@ */ 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 @@ ravb_ptp_init(ndev, priv->pdev); netif_tx_start_all_queues(ndev); + +out_unlock: + rtnl_unlock(); } /* Packet transmit function for Ethernet AVB */ @@ -1557,7 +1567,7 @@ struct ravb_tstamp_skb *ts_skb; struct ravb_tx_desc *desc; unsigned long flags; - u32 dma_addr; + dma_addr_t dma_addr; void *buffer; u32 entry; u32 len; @@ -2179,9 +2189,14 @@ 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"); @@ -2364,11 +2379,12 @@ 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; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/sfc/ef10.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/sfc/ef10.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/sfc/ef10.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/sfc/ef10.c @@ -1038,7 +1038,7 @@ } int efx_ef10_vport_add_mac(struct efx_nic *efx, - unsigned int port_id, u8 *mac) + unsigned int port_id, const u8 *mac) { MCDI_DECLARE_BUF(inbuf, MC_CMD_VPORT_ADD_MAC_ADDRESS_IN_LEN); @@ -1050,7 +1050,7 @@ } int efx_ef10_vport_del_mac(struct efx_nic *efx, - unsigned int port_id, u8 *mac) + unsigned int port_id, const u8 *mac) { MCDI_DECLARE_BUF(inbuf, MC_CMD_VPORT_DEL_MAC_ADDRESS_IN_LEN); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/sfc/ef10_sriov.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/sfc/ef10_sriov.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/sfc/ef10_sriov.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/sfc/ef10_sriov.c @@ -484,7 +484,7 @@ return rc; } -int efx_ef10_sriov_set_vf_mac(struct efx_nic *efx, int vf_i, u8 *mac) +int efx_ef10_sriov_set_vf_mac(struct efx_nic *efx, int vf_i, const u8 *mac) { struct efx_ef10_nic_data *nic_data = efx->nic_data; struct ef10_vf *vf; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/sfc/net_driver.h linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/sfc/net_driver.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/sfc/net_driver.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/sfc/net_driver.h @@ -1483,7 +1483,7 @@ bool (*sriov_wanted)(struct efx_nic *efx); void (*sriov_reset)(struct efx_nic *efx); void (*sriov_flr)(struct efx_nic *efx, unsigned vf_i); - int (*sriov_set_vf_mac)(struct efx_nic *efx, int vf_i, u8 *mac); + int (*sriov_set_vf_mac)(struct efx_nic *efx, int vf_i, const u8 *mac); int (*sriov_set_vf_vlan)(struct efx_nic *efx, int vf_i, u16 vlan, u8 qos); int (*sriov_set_vf_spoofchk)(struct efx_nic *efx, int vf_i, diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/sfc/rx_common.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/sfc/rx_common.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/sfc/rx_common.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/sfc/rx_common.c @@ -821,8 +821,10 @@ } if (!success) { - efx_for_each_channel(channel, efx) + efx_for_each_channel(channel, efx) { kfree(channel->rps_flow_id); + channel->rps_flow_id = NULL; + } efx->type->filter_table_remove(efx); rc = -ENOMEM; goto out_unlock; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/smsc/smsc911x.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/smsc/smsc911x.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/smsc/smsc911x.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/smsc/smsc911x.c @@ -1508,7 +1508,7 @@ /* Sets the device MAC address to dev_addr, called with mac_lock held */ static void -smsc911x_set_hw_mac_address(struct smsc911x_data *pdata, u8 dev_addr[6]) +smsc911x_set_hw_mac_address(struct smsc911x_data *pdata, const u8 dev_addr[6]) { u32 mac_high16 = (dev_addr[5] << 8) | dev_addr[4]; u32 mac_low32 = (dev_addr[3] << 24) | (dev_addr[2] << 16) | diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/common.h linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/common.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/common.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/common.h @@ -209,6 +209,7 @@ unsigned long mac_errors[32]; unsigned long mtl_errors[32]; unsigned long dma_errors[32]; + unsigned long dma_dpp_errors[32]; }; /* Number of fields in Safety Stats */ @@ -545,13 +546,13 @@ int dwxgmac2_setup(struct stmmac_priv *priv); int dwxlgmac2_setup(struct stmmac_priv *priv); -void stmmac_set_mac_addr(void __iomem *ioaddr, u8 addr[6], +void stmmac_set_mac_addr(void __iomem *ioaddr, const u8 addr[6], unsigned int high, unsigned int low); void stmmac_get_mac_addr(void __iomem *ioaddr, unsigned char *addr, unsigned int high, unsigned int low); void stmmac_set_mac(void __iomem *ioaddr, bool enable); -void stmmac_dwmac4_set_mac_addr(void __iomem *ioaddr, u8 addr[6], +void stmmac_dwmac4_set_mac_addr(void __iomem *ioaddr, const u8 addr[6], unsigned int high, unsigned int low); void stmmac_dwmac4_get_mac_addr(void __iomem *ioaddr, unsigned char *addr, unsigned int high, unsigned int low); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac-loongson.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac-loongson.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac-loongson.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac-loongson.c @@ -59,26 +59,19 @@ return -ENODEV; } - if (!of_device_is_compatible(np, "loongson, pci-gmac")) { - pr_info("dwmac_loongson_pci: Incompatible OF node\n"); - return -ENODEV; - } - plat = devm_kzalloc(&pdev->dev, sizeof(*plat), GFP_KERNEL); if (!plat) return -ENOMEM; + plat->mdio_bus_data = devm_kzalloc(&pdev->dev, + sizeof(*plat->mdio_bus_data), + GFP_KERNEL); + if (!plat->mdio_bus_data) + return -ENOMEM; + plat->mdio_node = of_get_child_by_name(np, "mdio"); if (plat->mdio_node) { dev_info(&pdev->dev, "Found MDIO subnode\n"); - - plat->mdio_bus_data = devm_kzalloc(&pdev->dev, - sizeof(*plat->mdio_bus_data), - GFP_KERNEL); - if (!plat->mdio_bus_data) { - ret = -ENOMEM; - goto err_put_node; - } plat->mdio_bus_data->needs_reset = true; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac-sun8i.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac-sun8i.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac-sun8i.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac-sun8i.c @@ -634,7 +634,7 @@ * If addr is NULL, clear the slot */ static void sun8i_dwmac_set_umac_addr(struct mac_device_info *hw, - unsigned char *addr, + const unsigned char *addr, unsigned int reg_n) { void __iomem *ioaddr = hw->pcsr; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c @@ -334,7 +334,7 @@ } static void dwmac4_set_umac_addr(struct mac_device_info *hw, - unsigned char *addr, unsigned int reg_n) + const unsigned char *addr, unsigned int reg_n) { void __iomem *ioaddr = hw->pcsr; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac4_lib.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac4_lib.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac4_lib.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac4_lib.c @@ -187,7 +187,7 @@ return ret; } -void stmmac_dwmac4_set_mac_addr(void __iomem *ioaddr, u8 addr[6], +void stmmac_dwmac4_set_mac_addr(void __iomem *ioaddr, const u8 addr[6], unsigned int high, unsigned int low) { unsigned long data; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac5.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac5.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac5.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac5.c @@ -710,28 +710,22 @@ } } -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 @@ 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 @@ 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; - - value = readl(ioaddr + MAC_FPE_CTRL_STS); + u32 value = cfg->fpe_csr; - 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac_lib.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac_lib.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac_lib.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac_lib.c @@ -239,7 +239,7 @@ do {} while ((readl(ioaddr + DMA_CONTROL) & DMA_CONTROL_FTF)); } -void stmmac_set_mac_addr(void __iomem *ioaddr, u8 addr[6], +void stmmac_set_mac_addr(void __iomem *ioaddr, const u8 addr[6], unsigned int high, unsigned int low) { unsigned long data; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac.h linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac.h @@ -241,6 +241,7 @@ u32 msg_enable; int wolopts; int wol_irq; + bool wol_irq_disabled; int clk_csr; struct timer_list eee_ctrl_timer; int lpi_irq; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_ethtool.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_ethtool.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_ethtool.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_ethtool.c @@ -758,10 +758,16 @@ if (wol->wolopts) { pr_info("stmmac: wakeup enable\n"); device_set_wakeup_enable(priv->device, 1); - enable_irq_wake(priv->wol_irq); + /* Avoid unbalanced enable_irq_wake calls */ + if (priv->wol_irq_disabled) + enable_irq_wake(priv->wol_irq); + priv->wol_irq_disabled = false; } else { device_set_wakeup_enable(priv->device, 0); - disable_irq_wake(priv->wol_irq); + /* Avoid unbalanced disable_irq_wake calls */ + if (!priv->wol_irq_disabled) + disable_irq_wake(priv->wol_irq); + priv->wol_irq_disabled = true; } mutex_lock(&priv->lock); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c @@ -1054,7 +1054,8 @@ 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; @@ -3505,6 +3506,7 @@ /* Request the Wake IRQ in case of another line * is used for WoL */ + priv->wol_irq_disabled = true; if (priv->wol_irq > 0 && priv->wol_irq != dev->irq) { int_name = priv->int_name_wol; sprintf(int_name, "%s:%s", dev->name, "wol"); @@ -4493,13 +4495,10 @@ static void stmmac_rx_vlan(struct net_device *dev, struct sk_buff *skb) { - struct vlan_ethhdr *veth; - __be16 vlan_proto; + struct vlan_ethhdr *veth = skb_vlan_eth_hdr(skb); + __be16 vlan_proto = veth->h_vlan_proto; u16 vlanid; - veth = (struct vlan_ethhdr *)skb->data; - vlan_proto = veth->h_vlan_proto; - if ((vlan_proto == htons(ETH_P_8021Q) && dev->features & NETIF_F_HW_VLAN_CTAG_RX) || (vlan_proto == htons(ETH_P_8021AD) && @@ -5165,10 +5164,10 @@ len = 0; } +read_again: if (count >= limit) break; -read_again: buf1_len = 0; buf2_len = 0; entry = next_entry; @@ -5621,6 +5620,7 @@ /* If user has requested FPE enable, quickly response */ if (*hs_enable) stmmac_fpe_send_mpacket(priv, priv->ioaddr, + fpe_cfg, MPACKET_RESPONSE); } @@ -6958,6 +6958,7 @@ 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 +6977,7 @@ 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 +6992,7 @@ 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; @@ -7093,6 +7096,9 @@ dev_err(priv->device, "unable to bring out of ahb reset: %pe\n", ERR_PTR(ret)); + /* Wait a bit for the reset to take effect */ + udelay(10); + /* Init MAC and get the capabilities */ ret = stmmac_hw_init(priv); if (ret) @@ -7237,9 +7243,9 @@ /* MDIO bus Registration */ ret = stmmac_mdio_register(ndev); if (ret < 0) { - dev_err(priv->device, - "%s: MDIO bus (id: %d) registration failed", - __func__, priv->plat->bus_id); + dev_err_probe(priv->device, ret, + "%s: MDIO bus (id: %d) registration failed\n", + __func__, priv->plat->bus_id); goto error_mdio_register; } } @@ -7399,6 +7405,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_selftests.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_selftests.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_selftests.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_selftests.c @@ -36,7 +36,7 @@ int vlan_id_in; int vlan_id_out; unsigned char *src; - unsigned char *dst; + const unsigned char *dst; u32 ip_src; u32 ip_dst; int tcp; @@ -249,8 +249,8 @@ struct net_device *orig_ndev) { struct stmmac_test_priv *tpriv = pt->af_packet_priv; + const unsigned char *dst = tpriv->packet->dst; unsigned char *src = tpriv->packet->src; - unsigned char *dst = tpriv->packet->dst; struct stmmachdr *shdr; struct ethhdr *ehdr; struct udphdr *uhdr; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_tc.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_tc.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_tc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_tc.c @@ -952,6 +952,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/ti/am65-cpsw-nuss.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/ti/am65-cpsw-nuss.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/ti/am65-cpsw-nuss.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/ti/am65-cpsw-nuss.c @@ -53,7 +53,7 @@ #define AM65_CPSW_MAX_PORTS 8 #define AM65_CPSW_MIN_PACKET_SIZE VLAN_ETH_ZLEN -#define AM65_CPSW_MAX_PACKET_SIZE (VLAN_ETH_FRAME_LEN + ETH_FCS_LEN) +#define AM65_CPSW_MAX_PACKET_SIZE 2024 #define AM65_CPSW_REG_CTL 0x004 #define AM65_CPSW_REG_STAT_PORT_EN 0x014 @@ -1985,7 +1985,8 @@ eth_hw_addr_set(port->ndev, port->slave.mac_addr); port->ndev->min_mtu = AM65_CPSW_MIN_PACKET_SIZE; - port->ndev->max_mtu = AM65_CPSW_MAX_PACKET_SIZE; + port->ndev->max_mtu = AM65_CPSW_MAX_PACKET_SIZE - + (VLAN_ETH_HLEN + ETH_FCS_LEN); port->ndev->hw_features = NETIF_F_SG | NETIF_F_RXCSUM | NETIF_F_HW_CSUM | diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/ti/cpsw.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/ti/cpsw.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/ti/cpsw.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/ti/cpsw.c @@ -631,6 +631,8 @@ } } + phy->mac_managed_pm = true; + slave->phy = phy; phy_attached_info(slave->phy); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/ti/cpsw_new.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/ti/cpsw_new.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/ti/cpsw_new.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/ti/cpsw_new.c @@ -772,6 +772,9 @@ slave->slave_num); return; } + + phy->mac_managed_pm = true; + slave->phy = phy; phy_attached_info(slave->phy); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/xilinx/xilinx_axienet_main.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/xilinx/xilinx_axienet_main.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/xilinx/xilinx_axienet_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/xilinx/xilinx_axienet_main.c @@ -1396,7 +1396,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/xilinx/xilinx_emaclite.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/xilinx/xilinx_emaclite.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/xilinx/xilinx_emaclite.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/xilinx/xilinx_emaclite.c @@ -197,12 +197,13 @@ * This function writes data from a 16-bit aligned buffer to a 32-bit aligned * address in the EmacLite device. */ -static void xemaclite_aligned_write(void *src_ptr, u32 *dest_ptr, - unsigned int length) +static void xemaclite_aligned_write(const void *src_ptr, u32 *dest_ptr, + unsigned length) { + const u16 *from_u16_ptr; u32 align_buffer; u32 *to_u32_ptr; - u16 *from_u16_ptr, *to_u16_ptr; + u16 *to_u16_ptr; to_u32_ptr = dest_ptr; from_u16_ptr = src_ptr; @@ -462,7 +463,7 @@ * buffers (if configured). */ static void xemaclite_update_address(struct net_local *drvdata, - u8 *address_ptr) + const u8 *address_ptr) { void __iomem *addr; u32 reg_data; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/xircom/xirc2ps_cs.c linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/xircom/xirc2ps_cs.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/xircom/xirc2ps_cs.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/xircom/xirc2ps_cs.c @@ -1276,7 +1276,7 @@ unsigned int ioaddr; }; -static void set_address(struct set_address_info *sa_info, char *addr) +static void set_address(struct set_address_info *sa_info, const char *addr) { unsigned int ioaddr = sa_info->ioaddr; int i; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/gtp.c linux-xilinx-zynqmp-5.15.0/drivers/net/gtp.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/gtp.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/gtp.c @@ -543,8 +543,9 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/hyperv/netvsc.c linux-xilinx-zynqmp-5.15.0/drivers/net/hyperv/netvsc.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/hyperv/netvsc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/hyperv/netvsc.c @@ -710,7 +710,10 @@ /* 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); } diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/hyperv/netvsc_drv.c linux-xilinx-zynqmp-5.15.0/drivers/net/hyperv/netvsc_drv.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/hyperv/netvsc_drv.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/hyperv/netvsc_drv.c @@ -44,7 +44,7 @@ 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)"); +MODULE_PARM_DESC(ring_size, "Ring buffer size (# of 4K pages)"); unsigned int netvsc_ring_bytes __ro_after_init; static const u32 default_msg = NETIF_MSG_DRV | NETIF_MSG_PROBE | @@ -2227,9 +2227,6 @@ 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); call_netdevice_notifiers(NETDEV_JOIN, vf_netdev); @@ -2336,16 +2333,18 @@ } - /* 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,6 +2352,19 @@ return NULL; } +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) { struct net_device_context *net_device_ctx; @@ -2551,15 +2563,6 @@ 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 +2570,23 @@ * -> ... -> 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); @@ -2603,9 +2620,9 @@ 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); @@ -2772,6 +2789,8 @@ return NOTIFY_DONE; switch (event) { + case NETDEV_POST_INIT: + return netvsc_prepare_bonding(event_dev); case NETDEV_REGISTER: return netvsc_register_vf(event_dev); case NETDEV_UNREGISTER: @@ -2805,14 +2824,19 @@ pr_info("Increased ring_size to %u (min allowed)\n", ring_size); } - netvsc_ring_bytes = ring_size * PAGE_SIZE; + netvsc_ring_bytes = VMBUS_RING_SIZE(ring_size * 4096); + + 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ieee802154/adf7242.c linux-xilinx-zynqmp-5.15.0/drivers/net/ieee802154/adf7242.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ieee802154/adf7242.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ieee802154/adf7242.c @@ -1162,9 +1162,10 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ipvlan/ipvlan_core.c linux-xilinx-zynqmp-5.15.0/drivers/net/ipvlan/ipvlan_core.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ipvlan/ipvlan_core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ipvlan/ipvlan_core.c @@ -412,7 +412,7 @@ 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 @@ 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 @@ .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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/ipvlan/ipvlan_main.c linux-xilinx-zynqmp-5.15.0/drivers/net/ipvlan/ipvlan_main.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/ipvlan/ipvlan_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ipvlan/ipvlan_main.c @@ -324,6 +324,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/macsec.c linux-xilinx-zynqmp-5.15.0/drivers/net/macsec.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/macsec.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/macsec.c @@ -3681,9 +3681,9 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/macvlan.c linux-xilinx-zynqmp-5.15.0/drivers/net/macvlan.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/macvlan.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/macvlan.c @@ -770,7 +770,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/phy/micrel.c linux-xilinx-zynqmp-5.15.0/drivers/net/phy/micrel.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/phy/micrel.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/phy/micrel.c @@ -1728,6 +1728,7 @@ /* PHY_GBIT_FEATURES */ .driver_data = &ksz9021_type, .probe = kszphy_probe, + .soft_reset = genphy_soft_reset, .config_init = ksz9131_config_init, .config_intr = kszphy_config_intr, .handle_interrupt = kszphy_handle_interrupt, diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/phy/mscc/mscc_main.c linux-xilinx-zynqmp-5.15.0/drivers/net/phy/mscc/mscc_main.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/phy/mscc/mscc_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/phy/mscc/mscc_main.c @@ -273,12 +273,12 @@ static int vsc85xx_wol_set(struct phy_device *phydev, struct ethtool_wolinfo *wol) { + const u8 *mac_addr = phydev->attached_dev->dev_addr; int rc; u16 reg_val; u8 i; u16 pwd[3] = {0, 0, 0}; struct ethtool_wolinfo *wol_conf = wol; - u8 *mac_addr = phydev->attached_dev->dev_addr; mutex_lock(&phydev->lock); rc = phy_select_page(phydev, MSCC_PHY_PAGE_EXTENDED_2); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/phy/phylink.c linux-xilinx-zynqmp-5.15.0/drivers/net/phy/phylink.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/phy/phylink.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/phy/phylink.c @@ -853,6 +853,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/team/team.c linux-xilinx-zynqmp-5.15.0/drivers/net/team/team.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/team/team.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/team/team.c @@ -285,8 +285,10 @@ return 0; inst_rollback: - for (i--; i >= 0; i--) + for (i--; i >= 0; i--) { __team_option_inst_del_option(team, dst_opts[i]); + list_del(&dst_opts[i]->list); + } i = option_count; alloc_rollback: diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/tun.c linux-xilinx-zynqmp-5.15.0/drivers/net/tun.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/tun.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/tun.c @@ -3010,10 +3010,11 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/usb/aqc111.c linux-xilinx-zynqmp-5.15.0/drivers/net/usb/aqc111.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/usb/aqc111.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/usb/aqc111.c @@ -119,7 +119,7 @@ } static int aqc111_write_cmd(struct usbnet *dev, u8 cmd, u16 value, - u16 index, u16 size, void *data) + u16 index, u16 size, const void *data) { int ret; @@ -1079,17 +1079,17 @@ u16 pkt_count = 0; u64 desc_hdr = 0; u16 vlan_tag = 0; - u32 skb_len = 0; + u32 skb_len; if (!skb) goto err; - if (skb->len == 0) + skb_len = skb->len; + if (skb_len < sizeof(desc_hdr)) goto err; - skb_len = skb->len; /* RX Descriptor Header */ - skb_trim(skb, skb->len - sizeof(desc_hdr)); + skb_trim(skb, skb_len - sizeof(desc_hdr)); desc_hdr = le64_to_cpup((u64 *)skb_tail_pointer(skb)); /* Check these packets */ diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/usb/ax88179_178a.c linux-xilinx-zynqmp-5.15.0/drivers/net/usb/ax88179_178a.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/usb/ax88179_178a.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/usb/ax88179_178a.c @@ -164,11 +164,16 @@ #define GMII_PHY_PGSEL_PAGE3 0x0003 #define GMII_PHY_PGSEL_PAGE5 0x0005 +static int ax88179_reset(struct usbnet *dev); + struct ax88179_data { u8 eee_enabled; u8 eee_active; u16 rxctl; - u16 reserved; + u8 in_pm; + u32 wol_supported; + u32 wolopts; + u8 disconnecting; }; struct ax88179_int_data { @@ -185,15 +190,30 @@ {7, 0xcc, 0x4c, 0x18, 8}, }; +static void ax88179_set_pm_mode(struct usbnet *dev, bool pm_mode) +{ + struct ax88179_data *ax179_data = dev->driver_priv; + + ax179_data->in_pm = pm_mode; +} + +static int ax88179_in_pm(struct usbnet *dev) +{ + struct ax88179_data *ax179_data = dev->driver_priv; + + return ax179_data->in_pm; +} + static int __ax88179_read_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index, - u16 size, void *data, int in_pm) + u16 size, void *data) { int ret; int (*fn)(struct usbnet *, u8, u8, u16, u16, void *, u16); + struct ax88179_data *ax179_data = dev->driver_priv; BUG_ON(!dev); - if (!in_pm) + if (!ax88179_in_pm(dev)) fn = usbnet_read_cmd; else fn = usbnet_read_cmd_nopm; @@ -201,7 +221,7 @@ ret = fn(dev, cmd, USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE, value, index, data, size); - if (unlikely(ret < 0)) + if (unlikely((ret < 0) && !(ret == -ENODEV && ax179_data->disconnecting))) netdev_warn(dev->net, "Failed to read reg index 0x%04x: %d\n", index, ret); @@ -209,14 +229,15 @@ } static int __ax88179_write_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index, - u16 size, void *data, int in_pm) + u16 size, const void *data) { int ret; int (*fn)(struct usbnet *, u8, u8, u16, u16, const void *, u16); + struct ax88179_data *ax179_data = dev->driver_priv; BUG_ON(!dev); - if (!in_pm) + if (!ax88179_in_pm(dev)) fn = usbnet_write_cmd; else fn = usbnet_write_cmd_nopm; @@ -224,7 +245,7 @@ ret = fn(dev, cmd, USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE, value, index, data, size); - if (unlikely(ret < 0)) + if (unlikely((ret < 0) && !(ret == -ENODEV && ax179_data->disconnecting))) netdev_warn(dev->net, "Failed to write reg index 0x%04x: %d\n", index, ret); @@ -249,47 +270,6 @@ } } -static int ax88179_read_cmd_nopm(struct usbnet *dev, u8 cmd, u16 value, - u16 index, u16 size, void *data) -{ - int ret; - - if (2 == size) { - u16 buf; - ret = __ax88179_read_cmd(dev, cmd, value, index, size, &buf, 1); - le16_to_cpus(&buf); - *((u16 *)data) = buf; - } else if (4 == size) { - u32 buf; - ret = __ax88179_read_cmd(dev, cmd, value, index, size, &buf, 1); - le32_to_cpus(&buf); - *((u32 *)data) = buf; - } else { - ret = __ax88179_read_cmd(dev, cmd, value, index, size, data, 1); - } - - return ret; -} - -static int ax88179_write_cmd_nopm(struct usbnet *dev, u8 cmd, u16 value, - u16 index, u16 size, void *data) -{ - int ret; - - if (2 == size) { - u16 buf; - buf = *((u16 *)data); - cpu_to_le16s(&buf); - ret = __ax88179_write_cmd(dev, cmd, value, index, - size, &buf, 1); - } else { - ret = __ax88179_write_cmd(dev, cmd, value, index, - size, data, 1); - } - - return ret; -} - static int ax88179_read_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index, u16 size, void *data) { @@ -297,23 +277,23 @@ if (2 == size) { u16 buf = 0; - ret = __ax88179_read_cmd(dev, cmd, value, index, size, &buf, 0); + ret = __ax88179_read_cmd(dev, cmd, value, index, size, &buf); le16_to_cpus(&buf); *((u16 *)data) = buf; } else if (4 == size) { u32 buf = 0; - ret = __ax88179_read_cmd(dev, cmd, value, index, size, &buf, 0); + ret = __ax88179_read_cmd(dev, cmd, value, index, size, &buf); le32_to_cpus(&buf); *((u32 *)data) = buf; } else { - ret = __ax88179_read_cmd(dev, cmd, value, index, size, data, 0); + ret = __ax88179_read_cmd(dev, cmd, value, index, size, data); } return ret; } static int ax88179_write_cmd(struct usbnet *dev, u8 cmd, u16 value, u16 index, - u16 size, void *data) + u16 size, const void *data) { int ret; @@ -322,10 +302,10 @@ buf = *((u16 *)data); cpu_to_le16s(&buf); ret = __ax88179_write_cmd(dev, cmd, value, index, - size, &buf, 0); + size, &buf); } else { ret = __ax88179_write_cmd(dev, cmd, value, index, - size, data, 0); + size, data); } return ret; @@ -425,55 +405,63 @@ static int ax88179_suspend(struct usb_interface *intf, pm_message_t message) { struct usbnet *dev = usb_get_intfdata(intf); + struct ax88179_data *priv = dev->driver_priv; u16 tmp16; u8 tmp8; + ax88179_set_pm_mode(dev, true); + usbnet_suspend(intf, message); + /* Enable WoL */ + if (priv->wolopts) { + ax88179_read_cmd(dev, AX_ACCESS_MAC, AX_MONITOR_MOD, + 1, 1, &tmp8); + if (priv->wolopts & WAKE_PHY) + tmp8 |= AX_MONITOR_MODE_RWLC; + if (priv->wolopts & WAKE_MAGIC) + tmp8 |= AX_MONITOR_MODE_RWMP; + + ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_MONITOR_MOD, + 1, 1, &tmp8); + } + /* Disable RX path */ - ax88179_read_cmd_nopm(dev, AX_ACCESS_MAC, AX_MEDIUM_STATUS_MODE, - 2, 2, &tmp16); + ax88179_read_cmd(dev, AX_ACCESS_MAC, AX_MEDIUM_STATUS_MODE, + 2, 2, &tmp16); tmp16 &= ~AX_MEDIUM_RECEIVE_EN; - ax88179_write_cmd_nopm(dev, AX_ACCESS_MAC, AX_MEDIUM_STATUS_MODE, - 2, 2, &tmp16); + ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_MEDIUM_STATUS_MODE, + 2, 2, &tmp16); /* Force bulk-in zero length */ - ax88179_read_cmd_nopm(dev, AX_ACCESS_MAC, AX_PHYPWR_RSTCTL, - 2, 2, &tmp16); + ax88179_read_cmd(dev, AX_ACCESS_MAC, AX_PHYPWR_RSTCTL, + 2, 2, &tmp16); tmp16 |= AX_PHYPWR_RSTCTL_BZ | AX_PHYPWR_RSTCTL_IPRL; - ax88179_write_cmd_nopm(dev, AX_ACCESS_MAC, AX_PHYPWR_RSTCTL, - 2, 2, &tmp16); + ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_PHYPWR_RSTCTL, + 2, 2, &tmp16); /* change clock */ tmp8 = 0; - ax88179_write_cmd_nopm(dev, AX_ACCESS_MAC, AX_CLK_SELECT, 1, 1, &tmp8); + ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_CLK_SELECT, 1, 1, &tmp8); /* Configure RX control register => stop operation */ tmp16 = AX_RX_CTL_STOP; - ax88179_write_cmd_nopm(dev, AX_ACCESS_MAC, AX_RX_CTL, 2, 2, &tmp16); + ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_RX_CTL, 2, 2, &tmp16); + + ax88179_set_pm_mode(dev, false); return 0; } /* This function is used to enable the autodetach function. */ /* This function is determined by offset 0x43 of EEPROM */ -static int ax88179_auto_detach(struct usbnet *dev, int in_pm) +static int ax88179_auto_detach(struct usbnet *dev) { u16 tmp16; u8 tmp8; - int (*fnr)(struct usbnet *, u8, u16, u16, u16, void *); - int (*fnw)(struct usbnet *, u8, u16, u16, u16, void *); - - if (!in_pm) { - fnr = ax88179_read_cmd; - fnw = ax88179_write_cmd; - } else { - fnr = ax88179_read_cmd_nopm; - fnw = ax88179_write_cmd_nopm; - } - if (fnr(dev, AX_ACCESS_EEPROM, 0x43, 1, 2, &tmp16) < 0) + if (ax88179_read_cmd(dev, AX_ACCESS_EEPROM, 0x43, 1, 2, &tmp16) < 0) return 0; if ((tmp16 == 0xFFFF) || (!(tmp16 & 0x0100))) @@ -481,13 +469,13 @@ /* Enable Auto Detach bit */ tmp8 = 0; - fnr(dev, AX_ACCESS_MAC, AX_CLK_SELECT, 1, 1, &tmp8); + ax88179_read_cmd(dev, AX_ACCESS_MAC, AX_CLK_SELECT, 1, 1, &tmp8); tmp8 |= AX_CLK_SELECT_ULR; - fnw(dev, AX_ACCESS_MAC, AX_CLK_SELECT, 1, 1, &tmp8); + ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_CLK_SELECT, 1, 1, &tmp8); - fnr(dev, AX_ACCESS_MAC, AX_PHYPWR_RSTCTL, 2, 2, &tmp16); + ax88179_read_cmd(dev, AX_ACCESS_MAC, AX_PHYPWR_RSTCTL, 2, 2, &tmp16); tmp16 |= AX_PHYPWR_RSTCTL_AT; - fnw(dev, AX_ACCESS_MAC, AX_PHYPWR_RSTCTL, 2, 2, &tmp16); + ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_PHYPWR_RSTCTL, 2, 2, &tmp16); return 0; } @@ -498,74 +486,74 @@ u16 tmp16; u8 tmp8; + ax88179_set_pm_mode(dev, true); + usbnet_link_change(dev, 0, 0); /* Power up ethernet PHY */ tmp16 = 0; - ax88179_write_cmd_nopm(dev, AX_ACCESS_MAC, AX_PHYPWR_RSTCTL, - 2, 2, &tmp16); + ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_PHYPWR_RSTCTL, + 2, 2, &tmp16); udelay(1000); tmp16 = AX_PHYPWR_RSTCTL_IPRL; - ax88179_write_cmd_nopm(dev, AX_ACCESS_MAC, AX_PHYPWR_RSTCTL, - 2, 2, &tmp16); + ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_PHYPWR_RSTCTL, + 2, 2, &tmp16); msleep(200); /* Ethernet PHY Auto Detach*/ - ax88179_auto_detach(dev, 1); + ax88179_auto_detach(dev); /* Enable clock */ - ax88179_read_cmd_nopm(dev, AX_ACCESS_MAC, AX_CLK_SELECT, 1, 1, &tmp8); + ax88179_read_cmd(dev, AX_ACCESS_MAC, AX_CLK_SELECT, 1, 1, &tmp8); tmp8 |= AX_CLK_SELECT_ACS | AX_CLK_SELECT_BCS; - ax88179_write_cmd_nopm(dev, AX_ACCESS_MAC, AX_CLK_SELECT, 1, 1, &tmp8); + ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_CLK_SELECT, 1, 1, &tmp8); msleep(100); /* Configure RX control register => start operation */ tmp16 = AX_RX_CTL_DROPCRCERR | AX_RX_CTL_IPE | AX_RX_CTL_START | AX_RX_CTL_AP | AX_RX_CTL_AMALL | AX_RX_CTL_AB; - ax88179_write_cmd_nopm(dev, AX_ACCESS_MAC, AX_RX_CTL, 2, 2, &tmp16); + ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_RX_CTL, 2, 2, &tmp16); + + ax88179_set_pm_mode(dev, false); return usbnet_resume(intf); } +static void ax88179_disconnect(struct usb_interface *intf) +{ + struct usbnet *dev = usb_get_intfdata(intf); + struct ax88179_data *ax179_data; + + if (!dev) + return; + + ax179_data = dev->driver_priv; + ax179_data->disconnecting = 1; + + usbnet_disconnect(intf); +} + static void ax88179_get_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo) { struct usbnet *dev = netdev_priv(net); - u8 opt; + struct ax88179_data *priv = dev->driver_priv; - if (ax88179_read_cmd(dev, AX_ACCESS_MAC, AX_MONITOR_MOD, - 1, 1, &opt) < 0) { - wolinfo->supported = 0; - wolinfo->wolopts = 0; - return; - } - - wolinfo->supported = WAKE_PHY | WAKE_MAGIC; - wolinfo->wolopts = 0; - if (opt & AX_MONITOR_MODE_RWLC) - wolinfo->wolopts |= WAKE_PHY; - if (opt & AX_MONITOR_MODE_RWMP) - wolinfo->wolopts |= WAKE_MAGIC; + wolinfo->supported = priv->wol_supported; + wolinfo->wolopts = priv->wolopts; } static int ax88179_set_wol(struct net_device *net, struct ethtool_wolinfo *wolinfo) { struct usbnet *dev = netdev_priv(net); - u8 opt = 0; + struct ax88179_data *priv = dev->driver_priv; - if (wolinfo->wolopts & ~(WAKE_PHY | WAKE_MAGIC)) + if (wolinfo->wolopts & ~(priv->wol_supported)) return -EINVAL; - if (wolinfo->wolopts & WAKE_PHY) - opt |= AX_MONITOR_MODE_RWLC; - if (wolinfo->wolopts & WAKE_MAGIC) - opt |= AX_MONITOR_MODE_RWMP; - - if (ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_MONITOR_MOD, - 1, 1, &opt) < 0) - return -EINVAL; + priv->wolopts = wolinfo->wolopts; return 0; } @@ -599,8 +587,7 @@ /* ax88179/178A returns 2 bytes from eeprom on read */ for (i = first_word; i <= last_word; i++) { ret = __ax88179_read_cmd(dev, AX_ACCESS_EEPROM, i, 1, 2, - &eeprom_buff[i - first_word], - 0); + &eeprom_buff[i - first_word]); if (ret < 0) { kfree(eeprom_buff); return -EIO; @@ -745,7 +732,7 @@ static int ax88179_chk_eee(struct usbnet *dev) { struct ethtool_cmd ecmd = { .cmd = ETHTOOL_GSET }; - struct ax88179_data *priv = (struct ax88179_data *)dev->data; + struct ax88179_data *priv = dev->driver_priv; mii_ethtool_gset(&dev->mii, &ecmd); @@ -848,7 +835,7 @@ static int ax88179_get_eee(struct net_device *net, struct ethtool_eee *edata) { struct usbnet *dev = netdev_priv(net); - struct ax88179_data *priv = (struct ax88179_data *)dev->data; + struct ax88179_data *priv = dev->driver_priv; edata->eee_enabled = priv->eee_enabled; edata->eee_active = priv->eee_active; @@ -859,7 +846,7 @@ static int ax88179_set_eee(struct net_device *net, struct ethtool_eee *edata) { struct usbnet *dev = netdev_priv(net); - struct ax88179_data *priv = (struct ax88179_data *)dev->data; + struct ax88179_data *priv = dev->driver_priv; int ret; priv->eee_enabled = edata->eee_enabled; @@ -910,8 +897,8 @@ static void ax88179_set_multicast(struct net_device *net) { struct usbnet *dev = netdev_priv(net); - struct ax88179_data *data = (struct ax88179_data *)dev->data; - u8 *m_filter = ((u8 *)dev->data) + 12; + struct ax88179_data *data = dev->driver_priv; + u8 *m_filter = ((u8 *)dev->data); data->rxctl = (AX_RX_CTL_START | AX_RX_CTL_AB | AX_RX_CTL_IPE); @@ -923,7 +910,7 @@ } else if (netdev_mc_empty(net)) { /* just broadcast and directed */ } else { - /* We use the 20 byte dev->data for our 8 byte filter buffer + /* We use dev->data for our 8 byte filter buffer * to avoid allocating memory that is tricky to free later */ u32 crc_bits; @@ -1069,7 +1056,7 @@ } while (buf & EEP_BUSY); __ax88179_read_cmd(dev, AX_ACCESS_MAC, AX_SROM_DATA_LOW, - 2, 2, &eeprom[i * 2], 0); + 2, 2, &eeprom[i * 2]); if ((i == 0) && (eeprom[0] == 0xFF)) return -EINVAL; @@ -1322,46 +1309,15 @@ static int ax88179_bind(struct usbnet *dev, struct usb_interface *intf) { - u8 buf[5]; - u16 *tmp16; - u8 *tmp; - struct ax88179_data *ax179_data = (struct ax88179_data *)dev->data; - struct ethtool_eee eee_data; + struct ax88179_data *ax179_data; usbnet_get_endpoints(dev, intf); - tmp16 = (u16 *)buf; - tmp = (u8 *)buf; - - memset(ax179_data, 0, sizeof(*ax179_data)); - - /* Power up ethernet PHY */ - *tmp16 = 0; - ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_PHYPWR_RSTCTL, 2, 2, tmp16); - *tmp16 = AX_PHYPWR_RSTCTL_IPRL; - ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_PHYPWR_RSTCTL, 2, 2, tmp16); - msleep(200); - - *tmp = AX_CLK_SELECT_ACS | AX_CLK_SELECT_BCS; - ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_CLK_SELECT, 1, 1, tmp); - msleep(100); + ax179_data = kzalloc(sizeof(*ax179_data), GFP_KERNEL); + if (!ax179_data) + return -ENOMEM; - /* Read MAC address from DTB or asix chip */ - ax88179_get_mac_addr(dev); - memcpy(dev->net->perm_addr, dev->net->dev_addr, ETH_ALEN); - - /* RX bulk configuration */ - memcpy(tmp, &AX88179_BULKIN_SIZE[0], 5); - ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_RX_BULKIN_QCTRL, 5, 5, tmp); - - dev->rx_urb_size = 1024 * 20; - - *tmp = 0x34; - ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_PAUSE_WATERLVL_LOW, 1, 1, tmp); - - *tmp = 0x52; - ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_PAUSE_WATERLVL_HIGH, - 1, 1, tmp); + dev->driver_priv = ax179_data; dev->net->netdev_ops = &ax88179_netdev_ops; dev->net->ethtool_ops = &ax88179_ethtool_ops; @@ -1383,52 +1339,14 @@ dev->net->hw_features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | NETIF_F_RXCSUM; - /* Enable checksum offload */ - *tmp = AX_RXCOE_IP | AX_RXCOE_TCP | AX_RXCOE_UDP | - AX_RXCOE_TCPV6 | AX_RXCOE_UDPV6; - ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_RXCOE_CTL, 1, 1, tmp); - - *tmp = AX_TXCOE_IP | AX_TXCOE_TCP | AX_TXCOE_UDP | - AX_TXCOE_TCPV6 | AX_TXCOE_UDPV6; - ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_TXCOE_CTL, 1, 1, tmp); - - /* Configure RX control register => start operation */ - *tmp16 = AX_RX_CTL_DROPCRCERR | AX_RX_CTL_IPE | AX_RX_CTL_START | - AX_RX_CTL_AP | AX_RX_CTL_AMALL | AX_RX_CTL_AB; - ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_RX_CTL, 2, 2, tmp16); - - *tmp = AX_MONITOR_MODE_PMETYPE | AX_MONITOR_MODE_PMEPOL | - AX_MONITOR_MODE_RWMP; - ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_MONITOR_MOD, 1, 1, tmp); - - /* Configure default medium type => giga */ - *tmp16 = AX_MEDIUM_RECEIVE_EN | AX_MEDIUM_TXFLOW_CTRLEN | - AX_MEDIUM_RXFLOW_CTRLEN | AX_MEDIUM_FULL_DUPLEX | - AX_MEDIUM_GIGAMODE; - ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_MEDIUM_STATUS_MODE, - 2, 2, tmp16); - - ax88179_led_setting(dev); - - ax179_data->eee_enabled = 0; - ax179_data->eee_active = 0; - - ax88179_disable_eee(dev); - - ax88179_ethtool_get_eee(dev, &eee_data); - eee_data.advertised = 0; - ax88179_ethtool_set_eee(dev, &eee_data); - - /* Restart autoneg */ - mii_nway_restart(&dev->mii); - - usbnet_link_change(dev, 0, 0); + ax88179_reset(dev); return 0; } static void ax88179_unbind(struct usbnet *dev, struct usb_interface *intf) { + struct ax88179_data *ax179_data = dev->driver_priv; u16 tmp16; /* Configure RX control register => stop operation */ @@ -1441,6 +1359,8 @@ /* Power down ethernet PHY */ tmp16 = 0; ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_PHYPWR_RSTCTL, 2, 2, &tmp16); + + kfree(ax179_data); } static void @@ -1613,7 +1533,7 @@ static int ax88179_link_reset(struct usbnet *dev) { - struct ax88179_data *ax179_data = (struct ax88179_data *)dev->data; + struct ax88179_data *ax179_data = dev->driver_priv; u8 tmp[5], link_sts; u16 mode, tmp16, delay = HZ / 10; u32 tmp32 = 0x40000000; @@ -1688,7 +1608,7 @@ u8 buf[5]; u16 *tmp16; u8 *tmp; - struct ax88179_data *ax179_data = (struct ax88179_data *)dev->data; + struct ax88179_data *ax179_data = dev->driver_priv; struct ethtool_eee eee_data; tmp16 = (u16 *)buf; @@ -1700,17 +1620,18 @@ *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); + ax88179_auto_detach(dev); /* Read MAC address from DTB or asix chip */ ax88179_get_mac_addr(dev); + memcpy(dev->net->perm_addr, dev->net->dev_addr, ETH_ALEN); /* RX bulk configuration */ memcpy(tmp, &AX88179_BULKIN_SIZE[0], 5); @@ -1725,12 +1646,6 @@ ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_PAUSE_WATERLVL_HIGH, 1, 1, tmp); - dev->net->features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | - NETIF_F_RXCSUM; - - dev->net->hw_features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | - NETIF_F_RXCSUM; - /* Enable checksum offload */ *tmp = AX_RXCOE_IP | AX_RXCOE_TCP | AX_RXCOE_UDP | AX_RXCOE_TCPV6 | AX_RXCOE_UDPV6; @@ -1756,6 +1671,12 @@ ax88179_write_cmd(dev, AX_ACCESS_MAC, AX_MEDIUM_STATUS_MODE, 2, 2, tmp16); + /* Check if WoL is supported */ + ax179_data->wol_supported = 0; + if (ax88179_read_cmd(dev, AX_ACCESS_MAC, AX_MONITOR_MOD, + 1, 1, &tmp) > 0) + ax179_data->wol_supported = WAKE_MAGIC | WAKE_PHY; + ax88179_led_setting(dev); ax179_data->eee_enabled = 0; @@ -1971,7 +1892,7 @@ .suspend = ax88179_suspend, .resume = ax88179_resume, .reset_resume = ax88179_resume, - .disconnect = usbnet_disconnect, + .disconnect = ax88179_disconnect, .supports_autosuspend = 1, .disable_hub_initiated_lpm = 1, }; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/usb/dm9601.c linux-xilinx-zynqmp-5.15.0/drivers/net/usb/dm9601.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/usb/dm9601.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/usb/dm9601.c @@ -93,7 +93,8 @@ value, reg, NULL, 0); } -static void dm_write_async(struct usbnet *dev, u8 reg, u16 length, void *data) +static void dm_write_async(struct usbnet *dev, u8 reg, u16 length, + const void *data) { usbnet_write_cmd_async(dev, DM_WRITE_REGS, USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE, diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/usb/mcs7830.c linux-xilinx-zynqmp-5.15.0/drivers/net/usb/mcs7830.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/usb/mcs7830.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/usb/mcs7830.c @@ -140,7 +140,8 @@ return 0; } -static int mcs7830_hif_set_mac_address(struct usbnet *dev, unsigned char *addr) +static int mcs7830_hif_set_mac_address(struct usbnet *dev, + const unsigned char *addr) { int ret = mcs7830_set_reg(dev, HIF_REG_ETHERNET_ADDR, ETH_ALEN, addr); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/usb/qmi_wwan.c linux-xilinx-zynqmp-5.15.0/drivers/net/usb/qmi_wwan.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/usb/qmi_wwan.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/usb/qmi_wwan.c @@ -1286,6 +1286,7 @@ {QMI_FIXED_INTF(0x19d2, 0x0168, 4)}, {QMI_FIXED_INTF(0x19d2, 0x0176, 3)}, {QMI_FIXED_INTF(0x19d2, 0x0178, 3)}, + {QMI_FIXED_INTF(0x19d2, 0x0189, 4)}, /* ZTE MF290 */ {QMI_FIXED_INTF(0x19d2, 0x0191, 4)}, /* ZTE EuFi890 */ {QMI_FIXED_INTF(0x19d2, 0x0199, 1)}, /* ZTE MF820S */ {QMI_FIXED_INTF(0x19d2, 0x0200, 1)}, diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/usb/r8152.c linux-xilinx-zynqmp-5.15.0/drivers/net/usb/r8152.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/usb/r8152.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/usb/r8152.c @@ -763,7 +763,7 @@ /* rtl8152 flags */ enum rtl8152_flags { - RTL8152_UNPLUG = 0, + RTL8152_INACCESSIBLE = 0, RTL8152_SET_RX_MODE, WORK_ENABLE, RTL8152_LINK_CHG, @@ -1208,7 +1208,7 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ { 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 @@ 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 @@ 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 @@ 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 @@ { 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)) @@ -2647,7 +2647,7 @@ 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; @@ -2850,6 +2850,8 @@ 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); @@ -3043,7 +3045,7 @@ 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); @@ -3130,7 +3132,7 @@ { u32 ocp_data; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return -ENODEV; set_tx_qlen(tp); @@ -3162,7 +3164,7 @@ 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; } @@ -3179,6 +3181,8 @@ 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; @@ -3186,6 +3190,8 @@ } 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); @@ -3616,7 +3622,7 @@ } msleep(20); - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) break; } @@ -3648,6 +3654,8 @@ 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; @@ -3688,6 +3696,8 @@ 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; @@ -4051,6 +4061,9 @@ 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) @@ -5367,6 +5380,8 @@ 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; @@ -5381,6 +5396,8 @@ 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); @@ -5503,6 +5520,8 @@ 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); @@ -5659,6 +5678,8 @@ 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; @@ -6012,7 +6033,7 @@ 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); @@ -6070,7 +6091,7 @@ 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); @@ -6256,7 +6277,7 @@ 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); @@ -6266,7 +6287,7 @@ 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; } @@ -6281,7 +6302,7 @@ { u32 ocp_data; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; r8153_u1u2en(tp, false); @@ -6321,7 +6342,7 @@ { u32 ocp_data; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) { + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) { rtl_drop_queued_tx(tp); return; } @@ -6342,7 +6363,7 @@ { u32 ocp_data; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; r8153b_u1u2en(tp, false); @@ -6366,7 +6387,7 @@ { u32 ocp_data; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) { + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) { rtl_drop_queued_tx(tp); return; } @@ -6403,7 +6424,7 @@ { u32 ocp_data; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; r8153b_u1u2en(tp, false); @@ -6484,7 +6505,7 @@ { u32 ocp_data; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; r8153b_u1u2en(tp, false); @@ -6557,7 +6578,7 @@ { u32 ocp_data; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) { + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) { rtl_drop_queued_tx(tp); return; } @@ -6695,7 +6716,7 @@ /* 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) @@ -6734,7 +6755,7 @@ { 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) @@ -6861,7 +6882,7 @@ 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 { @@ -6894,7 +6915,7 @@ 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); @@ -6938,7 +6959,7 @@ u16 data; int i; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; r8153_u1u2en(tp, false); @@ -6949,7 +6970,7 @@ break; msleep(20); - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) break; } @@ -7078,7 +7099,7 @@ u16 data; int i; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; r8153b_u1u2en(tp, false); @@ -7089,7 +7110,7 @@ break; msleep(20); - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) break; } @@ -7160,7 +7181,7 @@ u16 data; int i; - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; r8153b_u1u2en(tp, false); @@ -7180,7 +7201,7 @@ break; msleep(20); - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; } @@ -8009,7 +8030,7 @@ 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); @@ -8030,7 +8051,7 @@ break; msleep(20); - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; } @@ -8105,7 +8126,7 @@ 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); @@ -8139,7 +8160,7 @@ break; msleep(20); - if (test_bit(RTL8152_UNPLUG, &tp->flags)) + if (test_bit(RTL8152_INACCESSIBLE, &tp->flags)) return; } @@ -8260,43 +8281,6 @@ return true; } -static bool rtl_vendor_mode(struct usb_interface *intf) -{ - struct usb_host_interface *alt = intf->cur_altsetting; - struct usb_device *udev; - struct usb_host_config *c; - int i, num_configs; - - if (alt->desc.bInterfaceClass == USB_CLASS_VENDOR_SPEC) - return rtl_check_vendor_ok(intf); - - /* The vendor mode is not always config #1, so to find it out. */ - udev = interface_to_usbdev(intf); - c = udev->config; - num_configs = udev->descriptor.bNumConfigurations; - if (num_configs < 2) - return false; - - for (i = 0; i < num_configs; (i++, c++)) { - struct usb_interface_descriptor *desc = NULL; - - if (c->desc.bNumInterfaces > 0) - desc = &c->intf_cache[0]->altsetting->desc; - else - continue; - - if (desc->bInterfaceClass == USB_CLASS_VENDOR_SPEC) { - usb_driver_set_configuration(udev, c->desc.bConfigurationValue); - break; - } - } - - if (i == num_configs) - dev_err(&intf->dev, "Unexpected Device\n"); - - return false; -} - static int rtl8152_pre_reset(struct usb_interface *intf) { struct r8152 *tp = usb_get_intfdata(intf); @@ -9201,7 +9185,7 @@ 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); @@ -9303,7 +9287,7 @@ 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) @@ -9312,7 +9296,7 @@ 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); @@ -9320,7 +9304,7 @@ 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); @@ -9524,9 +9508,8 @@ return 0; } -u8 rtl8152_get_version(struct usb_interface *intf) +static u8 __rtl_get_hw_ver(struct usb_device *udev) { - struct usb_device *udev = interface_to_usbdev(intf); u32 ocp_data = 0; __le32 *tmp; u8 version; @@ -9538,7 +9521,8 @@ 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; @@ -9595,10 +9579,19 @@ break; default: version = RTL_VER_UNKNOWN; - dev_info(&intf->dev, "Unknown version 0x%04x\n", ocp_data); + dev_info(&udev->dev, "Unknown version 0x%04x\n", ocp_data); break; } + return version; +} + +u8 rtl8152_get_version(struct usb_interface *intf) +{ + u8 version; + + version = __rtl_get_hw_ver(interface_to_usbdev(intf)); + dev_dbg(&intf->dev, "Detected version 0x%04x\n", version); return version; @@ -9620,7 +9613,7 @@ if (intf->cur_altsetting->desc.bInterfaceClass != USB_CLASS_VENDOR_SPEC) return -ENODEV; - if (!rtl_vendor_mode(intf)) + if (!rtl_check_vendor_ok(intf)) return -ENODEV; usb_reset_device(udev); @@ -9801,6 +9794,10 @@ 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); @@ -9854,6 +9851,8 @@ { USB_DEVICE(VENDOR_ID_LINKSYS, 0x0041) }, { USB_DEVICE(VENDOR_ID_NVIDIA, 0x09ff) }, { USB_DEVICE(VENDOR_ID_TPLINK, 0x0601) }, + { USB_DEVICE(VENDOR_ID_DLINK, 0xb301) }, + { USB_DEVICE(VENDOR_ID_ASUS, 0x1976) }, {} }; @@ -9878,6 +9877,12 @@ struct usb_host_config *c; int i, num_configs; + /* Switch the device to vendor mode, if and only if the vendor mode + * driver supports it. + */ + if (__rtl_get_hw_ver(udev) == RTL_VER_UNKNOWN) + return 0; + /* The vendor mode is not always config #1, so to find it out. */ c = udev->config; num_configs = udev->descriptor.bNumConfigurations; @@ -9908,6 +9913,7 @@ .probe = rtl8152_cfgselector_probe, .id_table = rtl8152_table, .generic_subclass = 1, + .supports_autosuspend = 1, }; static int __init rtl8152_driver_init(void) diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/usb/smsc95xx.c linux-xilinx-zynqmp-5.15.0/drivers/net/usb/smsc95xx.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/usb/smsc95xx.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/usb/smsc95xx.c @@ -84,7 +84,9 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/usb/sr9700.c linux-xilinx-zynqmp-5.15.0/drivers/net/usb/sr9700.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/usb/sr9700.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/usb/sr9700.c @@ -56,7 +56,8 @@ value, reg, NULL, 0); } -static void sr_write_async(struct usbnet *dev, u8 reg, u16 length, void *data) +static void sr_write_async(struct usbnet *dev, u8 reg, u16 length, + const void *data) { usbnet_write_cmd_async(dev, SR_WR_REGS, SR_REQ_WR_REG, 0, reg, data, length); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/virtio_net.c linux-xilinx-zynqmp-5.15.0/drivers/net/virtio_net.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/virtio_net.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/virtio_net.c @@ -2913,10 +2913,11 @@ { vq_callback_t **callbacks; struct virtqueue **vqs; - int ret = -ENOMEM; - int i, total_vqs; const char **names; + int ret = -ENOMEM; + int total_vqs; bool *ctx; + u16 i; /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by @@ -2953,8 +2954,8 @@ for (i = 0; i < vi->max_queue_pairs; i++) { callbacks[rxq2vq(i)] = skb_recv_done; callbacks[txq2vq(i)] = skb_xmit_done; - sprintf(vi->rq[i].name, "input.%d", i); - sprintf(vi->sq[i].name, "output.%d", i); + sprintf(vi->rq[i].name, "input.%u", i); + sprintf(vi->sq[i].name, "output.%u", i); names[rxq2vq(i)] = vi->rq[i].name; names[txq2vq(i)] = vi->sq[i].name; if (ctx) diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireguard/device.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireguard/device.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireguard/device.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireguard/device.c @@ -193,7 +193,7 @@ */ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireguard/receive.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireguard/receive.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireguard/receive.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireguard/receive.c @@ -423,20 +423,20 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireguard/send.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireguard/send.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireguard/send.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireguard/send.c @@ -333,7 +333,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ath/ath10k/snoc.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ath/ath10k/snoc.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ath/ath10k/snoc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ath/ath10k/snoc.c @@ -828,12 +828,20 @@ 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 @@ goto err_free_rri; } + ath10k_ce_enable_interrupts(ar); + return 0; err_free_rri: @@ -1253,8 +1263,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ath/ath11k/ahb.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ath/ath11k/ahb.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ath/ath11k/ahb.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ath/ath11k/ahb.c @@ -650,8 +650,8 @@ prproc = rproc_get_by_phandle(rproc_phandle); if (!prproc) { - ath11k_err(ab, "failed to get rproc\n"); - return -EINVAL; + ath11k_dbg(ab, ATH11K_DBG_AHB, "failed to get rproc, deferring\n"); + return -EPROBE_DEFER; } ab_ahb->tgt_rproc = prproc; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ath/ath11k/dp_rx.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ath/ath11k/dp_rx.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ath/ath11k/dp_rx.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ath/ath11k/dp_rx.c @@ -1603,14 +1603,20 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ath/ath11k/wmi.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ath/ath11k/wmi.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ath/ath11k/wmi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ath/ath11k/wmi.c @@ -6809,6 +6809,8 @@ 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 @@ ieee80211_radar_detected(ar->hw); exit: + rcu_read_unlock(); + kfree(tb); } @@ -6855,15 +6859,19 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ath/ath9k/htc_drv_debug.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ath/ath9k/htc_drv_debug.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ath/ath9k/htc_drv_debug.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ath/ath9k/htc_drv_debug.c @@ -428,7 +428,7 @@ 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)); } diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ath/ath9k/htc_drv_txrx.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ath/ath9k/htc_drv_txrx.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ath/ath9k/htc_drv_txrx.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ath/ath9k/htc_drv_txrx.c @@ -652,9 +652,10 @@ struct ath9k_htc_tx_event *tx_pend; int i; - for (i = 0; i < txs->cnt; i++) { - WARN_ON(txs->cnt > HTC_MAX_TX_STATUS); + if (WARN_ON_ONCE(txs->cnt > HTC_MAX_TX_STATUS)) + return; + for (i = 0; i < txs->cnt; i++) { __txs = &txs->txstatus[i]; skb = ath9k_htc_tx_get_packet(priv, __txs); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/fw/acpi.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/fw/acpi.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/fw/acpi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/fw/acpi.c @@ -527,7 +527,7 @@ &tbl_rev); if (!IS_ERR(wifi_pkg)) { if (tbl_rev != 2) { - ret = PTR_ERR(wifi_pkg); + ret = -EINVAL; goto out_free; } @@ -543,7 +543,7 @@ &tbl_rev); if (!IS_ERR(wifi_pkg)) { if (tbl_rev != 1) { - ret = PTR_ERR(wifi_pkg); + ret = -EINVAL; goto out_free; } @@ -559,7 +559,7 @@ &tbl_rev); if (!IS_ERR(wifi_pkg)) { if (tbl_rev != 0) { - ret = PTR_ERR(wifi_pkg); + ret = -EINVAL; goto out_free; } @@ -614,7 +614,7 @@ &tbl_rev); if (!IS_ERR(wifi_pkg)) { if (tbl_rev != 2) { - ret = PTR_ERR(wifi_pkg); + ret = -EINVAL; goto out_free; } @@ -630,7 +630,7 @@ &tbl_rev); if (!IS_ERR(wifi_pkg)) { if (tbl_rev != 1) { - ret = PTR_ERR(wifi_pkg); + ret = -EINVAL; goto out_free; } @@ -646,7 +646,7 @@ &tbl_rev); if (!IS_ERR(wifi_pkg)) { if (tbl_rev != 0) { - ret = PTR_ERR(wifi_pkg); + ret = -EINVAL; goto out_free; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/iwl-dbg-tlv.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/iwl-dbg-tlv.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/iwl-dbg-tlv.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/iwl-dbg-tlv.c @@ -836,7 +836,7 @@ node_trig = (void *)node_tlv->data; } - memcpy(node_trig->data + offset, trig->data, trig_data_len); + memcpy((u8 *)node_trig->data + offset, trig->data, trig_data_len); node_tlv->length = cpu_to_le32(size); if (policy & IWL_FW_INI_APPLY_POLICY_OVERRIDE_CFG) { diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/mvm/phy-ctxt.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/mvm/phy-ctxt.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/mvm/phy-ctxt.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/mvm/phy-ctxt.c @@ -99,17 +99,6 @@ active_cnt = 2; } - /* - * If the firmware requested it, then we know that it supports - * getting zero for the values to indicate "use one, but pick - * which one yourself", which means it can dynamically pick one - * that e.g. has better RSSI. - */ - if (mvm->fw_static_smps_request && active_cnt == 1 && idle_cnt == 1) { - idle_cnt = 0; - active_cnt = 0; - } - *rxchain_info = cpu_to_le32(iwl_mvm_get_valid_rx_ant(mvm) << PHY_RX_CHAIN_VALID_POS); *rxchain_info |= cpu_to_le32(idle_cnt << PHY_RX_CHAIN_CNT_POS); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/mvm/tx.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/mvm/tx.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/mvm/tx.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/mvm/tx.c @@ -479,16 +479,20 @@ 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 @@ 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 @@ 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 @@ * 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 @@ */ if (!is_flush) info->flags |= IEEE80211_TX_STAT_ACK; + else + info->flags &= ~IEEE80211_TX_STAT_ACK; } /* @@ -2047,7 +2054,7 @@ WARN_ON(!iwl_mvm_has_new_tx_api(mvm)); if (iwl_fw_lookup_notif_ver(mvm->fw, LONG_GROUP, TXPATH_FLUSH, 0) > 0) - cmd.flags |= CMD_WANT_SKB; + cmd.flags |= CMD_WANT_SKB | CMD_SEND_IN_RFKILL; IWL_DEBUG_TX_QUEUES(mvm, "flush for sta id %d tid mask 0x%x\n", sta_id, tids); diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/pcie/internal.h linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/pcie/internal.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/pcie/internal.h +++ linux-xilinx-zynqmp-5.15.0/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 */ @@ -104,6 +104,18 @@ } __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 * @bd: driver's pointer to buffer of receive buffer descriptors (rbd). @@ -133,11 +145,7 @@ 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; @@ -472,6 +480,7 @@ 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); @@ -719,7 +728,7 @@ } } -void iwl_pcie_handle_rfkill_irq(struct iwl_trans *trans); +void iwl_pcie_handle_rfkill_irq(struct iwl_trans *trans, bool from_irq); static inline bool iwl_is_rfkill_set(struct iwl_trans *trans) { @@ -766,7 +775,7 @@ return (trans->dbg.dest_tlv || iwl_trans_dbg_ini_valid(trans)); } -void iwl_trans_pcie_rf_kill(struct iwl_trans *trans, bool state); +void iwl_trans_pcie_rf_kill(struct iwl_trans *trans, bool state, bool from_irq); void iwl_trans_pcie_dump_regs(struct iwl_trans *trans); #ifdef CONFIG_IWLWIFI_DEBUGFS diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/pcie/rx.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/pcie/rx.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/pcie/rx.c +++ linux-xilinx-zynqmp-5.15.0/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 @@ 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 @@ 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 @@ 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,7 +727,8 @@ 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) @@ -1042,6 +1050,22 @@ 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); @@ -1356,7 +1380,7 @@ * if it is true then one of the handlers took the page. */ - if (reclaim) { + if (reclaim && txq) { u16 sequence = le16_to_cpu(pkt->hdr.sequence); int index = SEQ_TO_INDEX(sequence); int cmd_index = iwl_txq_get_cmd_index(txq, index); @@ -1419,6 +1443,7 @@ 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 @@ 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)) @@ -1746,7 +1780,7 @@ return inta; } -void iwl_pcie_handle_rfkill_irq(struct iwl_trans *trans) +void iwl_pcie_handle_rfkill_irq(struct iwl_trans *trans, bool from_irq) { struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans); struct isr_statistics *isr_stats = &trans_pcie->isr_stats; @@ -1770,7 +1804,7 @@ isr_stats->rfkill++; if (prev != report) - iwl_trans_pcie_rf_kill(trans, report); + iwl_trans_pcie_rf_kill(trans, report, from_irq); mutex_unlock(&trans_pcie->mutex); if (hw_rfkill) { @@ -1910,7 +1944,7 @@ /* HW RF KILL switch toggled */ if (inta & CSR_INT_BIT_RF_KILL) { - iwl_pcie_handle_rfkill_irq(trans); + iwl_pcie_handle_rfkill_irq(trans, true); handled |= CSR_INT_BIT_RF_KILL; } @@ -2298,7 +2332,7 @@ /* HW RF KILL switch toggled */ if (inta_hw & MSIX_HW_INT_CAUSES_REG_RF_KILL) - iwl_pcie_handle_rfkill_irq(trans); + iwl_pcie_handle_rfkill_irq(trans, true); if (inta_hw & MSIX_HW_INT_CAUSES_REG_HW_ERR) { IWL_ERR(trans, diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/pcie/trans-gen2.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/pcie/trans-gen2.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/pcie/trans-gen2.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/pcie/trans-gen2.c @@ -165,6 +165,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/pcie/trans.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/pcie/trans.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/pcie/trans.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/pcie/trans.c @@ -1046,7 +1046,7 @@ report = test_bit(STATUS_RFKILL_OPMODE, &trans->status); if (prev != report) - iwl_trans_pcie_rf_kill(trans, report); + iwl_trans_pcie_rf_kill(trans, report, false); return hw_rfkill; } @@ -1170,7 +1170,7 @@ trans_pcie->hw_mask = trans_pcie->hw_init_mask; } -static void _iwl_trans_pcie_stop_device(struct iwl_trans *trans) +static void _iwl_trans_pcie_stop_device(struct iwl_trans *trans, bool from_irq) { struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans); @@ -1197,6 +1197,9 @@ if (test_and_clear_bit(STATUS_DEVICE_ENABLED, &trans->status)) { IWL_DEBUG_INFO(trans, "DEVICE_ENABLED bit was set and is now cleared\n"); + if (!from_irq) + iwl_pcie_synchronize_irqs(trans); + iwl_pcie_rx_napi_sync(trans); iwl_pcie_tx_stop(trans); iwl_pcie_rx_stop(trans); @@ -1383,7 +1386,7 @@ clear_bit(STATUS_RFKILL_OPMODE, &trans->status); } if (hw_rfkill != was_in_rfkill) - iwl_trans_pcie_rf_kill(trans, hw_rfkill); + iwl_trans_pcie_rf_kill(trans, hw_rfkill, false); } static void iwl_trans_pcie_stop_device(struct iwl_trans *trans) @@ -1398,12 +1401,12 @@ mutex_lock(&trans_pcie->mutex); trans_pcie->opmode_down = true; was_in_rfkill = test_bit(STATUS_RFKILL_OPMODE, &trans->status); - _iwl_trans_pcie_stop_device(trans); + _iwl_trans_pcie_stop_device(trans, false); iwl_trans_pcie_handle_stop_rfkill(trans, was_in_rfkill); mutex_unlock(&trans_pcie->mutex); } -void iwl_trans_pcie_rf_kill(struct iwl_trans *trans, bool state) +void iwl_trans_pcie_rf_kill(struct iwl_trans *trans, bool state, bool from_irq) { struct iwl_trans_pcie __maybe_unused *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans); @@ -1416,7 +1419,7 @@ if (trans->trans_cfg->gen2) _iwl_trans_pcie_gen2_stop_device(trans); else - _iwl_trans_pcie_stop_device(trans); + _iwl_trans_pcie_stop_device(trans, from_irq); } } @@ -2745,7 +2748,7 @@ IWL_WARN(trans, "changing debug rfkill %d->%d\n", trans_pcie->debug_rfkill, new_value); trans_pcie->debug_rfkill = new_value; - iwl_pcie_handle_rfkill_irq(trans); + iwl_pcie_handle_rfkill_irq(trans, false); return count; } @@ -2964,7 +2967,7 @@ struct iwl_rxq *rxq = &trans_pcie->rxq[0]; u32 i, r, j, rb_len = 0; - spin_lock(&rxq->lock); + spin_lock_bh(&rxq->lock); r = le16_to_cpu(iwl_get_closed_rb_stts(trans, rxq)) & 0x0FFF; @@ -2988,7 +2991,7 @@ *data = iwl_fw_error_next_data(*data); } - spin_unlock(&rxq->lock); + spin_unlock_bh(&rxq->lock); return rb_len; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/queue/tx.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/queue/tx.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/queue/tx.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/queue/tx.c @@ -1520,7 +1520,7 @@ /* 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 @@ 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 @@ */ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/queue/tx.h linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/queue/tx.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/queue/tx.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/queue/tx.h @@ -174,7 +174,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mac80211_hwsim.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mac80211_hwsim.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mac80211_hwsim.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mac80211_hwsim.c @@ -2615,7 +2615,7 @@ 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)); } diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/marvell/mwifiex/11n_rxreorder.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/marvell/mwifiex/11n_rxreorder.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/marvell/mwifiex/11n_rxreorder.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/marvell/mwifiex/11n_rxreorder.c @@ -933,6 +933,14 @@ 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 @@ 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, diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/marvell/mwifiex/cfg80211.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/marvell/mwifiex/cfg80211.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/marvell/mwifiex/cfg80211.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/marvell/mwifiex/cfg80211.c @@ -1980,6 +1980,8 @@ mwifiex_set_sys_config_invalid_data(bss_cfg); + memcpy(bss_cfg->mac_addr, priv->curr_addr, ETH_ALEN); + if (params->beacon_interval) bss_cfg->beacon_period = params->beacon_interval; if (params->dtim_period) diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/marvell/mwifiex/fw.h linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/marvell/mwifiex/fw.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/marvell/mwifiex/fw.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/marvell/mwifiex/fw.h @@ -177,6 +177,7 @@ #define TLV_TYPE_STA_MAC_ADDR (PROPRIETARY_TLV_BASE_ID + 32) #define TLV_TYPE_BSSID (PROPRIETARY_TLV_BASE_ID + 35) #define TLV_TYPE_CHANNELBANDLIST (PROPRIETARY_TLV_BASE_ID + 42) +#define TLV_TYPE_UAP_MAC_ADDRESS (PROPRIETARY_TLV_BASE_ID + 43) #define TLV_TYPE_UAP_BEACON_PERIOD (PROPRIETARY_TLV_BASE_ID + 44) #define TLV_TYPE_UAP_DTIM_PERIOD (PROPRIETARY_TLV_BASE_ID + 45) #define TLV_TYPE_UAP_BCAST_SSID (PROPRIETARY_TLV_BASE_ID + 48) diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/dma.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/dma.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/dma.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/dma.c @@ -16,11 +16,11 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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_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 @@ 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 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/eeprom.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/eeprom.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/eeprom.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/eeprom.c @@ -51,7 +51,7 @@ goto out_put_node; } - offset = be32_to_cpup(list); + offset += be32_to_cpup(list); ret = mtd_read(mtd, offset, len, &retlen, eep); put_mtd_device(mtd); if (ret) diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/mac80211.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/mac80211.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/mac80211.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/mac80211.c @@ -449,6 +449,7 @@ dev->hw = hw; dev->dev = pdev; dev->drv = drv_ops; + dev->dma_dev = pdev; phy = &dev->phy; phy->dev = dev; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/mt76.h linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/mt76.h --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/mt76.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/mt76.h @@ -195,8 +195,8 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/mt7603/mac.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/mt7603/mac.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/mt7603/mac.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/mt7603/mac.c @@ -1561,20 +1561,29 @@ { 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/sdio.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/sdio.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/sdio.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/sdio.c @@ -243,8 +243,8 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/testmode.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/testmode.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/testmode.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/testmode.c @@ -49,8 +49,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/tx.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/tx.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/tx.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/tx.c @@ -259,7 +259,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/usb.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/usb.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/usb.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/usb.c @@ -901,8 +901,8 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/microchip/wilc1000/wlan.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/microchip/wilc1000/wlan.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/microchip/wilc1000/wlan.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/microchip/wilc1000/wlan.c @@ -1458,7 +1458,7 @@ } 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 -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ralink/rt2x00/rt2x00dev.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ralink/rt2x00/rt2x00dev.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ralink/rt2x00/rt2x00dev.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ralink/rt2x00/rt2x00dev.c @@ -101,6 +101,7 @@ rt2x00link_stop_tuner(rt2x00dev); rt2x00queue_stop_queues(rt2x00dev); rt2x00queue_flush_queues(rt2x00dev, true); + rt2x00queue_stop_queue(rt2x00dev->bcn); /* * Disable radio. @@ -1268,6 +1269,7 @@ rt2x00dev->intf_ap_count = 0; rt2x00dev->intf_sta_count = 0; rt2x00dev->intf_associated = 0; + rt2x00dev->intf_beaconing = 0; /* Enable the radio */ retval = rt2x00lib_enable_radio(rt2x00dev); @@ -1294,6 +1296,7 @@ rt2x00dev->intf_ap_count = 0; rt2x00dev->intf_sta_count = 0; rt2x00dev->intf_associated = 0; + rt2x00dev->intf_beaconing = 0; } static inline void rt2x00lib_set_if_combinations(struct rt2x00_dev *rt2x00dev) diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c @@ -6973,6 +6973,18 @@ .driver_info = (unsigned long)&rtl8192eu_fops}, {USB_DEVICE_AND_INTERFACE_INFO(USB_VENDOR_ID_REALTEK, 0x818c, 0xff, 0xff, 0xff), .driver_info = (unsigned long)&rtl8192eu_fops}, +/* D-Link DWA-131 rev C1 */ +{USB_DEVICE_AND_INTERFACE_INFO(0x2001, 0x3312, 0xff, 0xff, 0xff), + .driver_info = (unsigned long)&rtl8192eu_fops}, +/* TP-Link TL-WN8200ND V2 */ +{USB_DEVICE_AND_INTERFACE_INFO(0x2357, 0x0126, 0xff, 0xff, 0xff), + .driver_info = (unsigned long)&rtl8192eu_fops}, +/* Mercusys MW300UM */ +{USB_DEVICE_AND_INTERFACE_INFO(0x2c4e, 0x0100, 0xff, 0xff, 0xff), + .driver_info = (unsigned long)&rtl8192eu_fops}, +/* Mercusys MW300UH */ +{USB_DEVICE_AND_INTERFACE_INFO(0x2c4e, 0x0104, 0xff, 0xff, 0xff), + .driver_info = (unsigned long)&rtl8192eu_fops}, #endif { } }; diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtlwifi/rtl8192de/phy.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtlwifi/rtl8192de/phy.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtlwifi/rtl8192de/phy.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtlwifi/rtl8192de/phy.c @@ -169,13 +169,6 @@ 157, 159, 161, 163, 165 }; -static u32 _rtl92d_phy_calculate_bit_shift(u32 bitmask) -{ - u32 i = ffs(bitmask); - - return i ? i - 1 : 32; -} - u32 rtl92d_phy_query_bb_reg(struct ieee80211_hw *hw, u32 regaddr, u32 bitmask) { struct rtl_priv *rtlpriv = rtl_priv(hw); @@ -198,7 +191,7 @@ } else { originalvalue = rtl_read_dword(rtlpriv, regaddr); } - bitshift = _rtl92d_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); returnvalue = (originalvalue & bitmask) >> bitshift; rtl_dbg(rtlpriv, COMP_RF, DBG_TRACE, "BBR MASK=0x%x Addr[0x%x]=0x%x\n", @@ -230,7 +223,7 @@ dbi_direct); else originalvalue = rtl_read_dword(rtlpriv, regaddr); - bitshift = _rtl92d_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); data = ((originalvalue & (~bitmask)) | (data << bitshift)); } if (rtlhal->during_mac1init_radioa || rtlhal->during_mac0init_radiob) @@ -317,7 +310,7 @@ regaddr, rfpath, bitmask); spin_lock(&rtlpriv->locks.rf_lock); original_value = _rtl92d_phy_rf_serial_read(hw, rfpath, regaddr); - bitshift = _rtl92d_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); readback_value = (original_value & bitmask) >> bitshift; spin_unlock(&rtlpriv->locks.rf_lock); rtl_dbg(rtlpriv, COMP_RF, DBG_TRACE, @@ -343,7 +336,7 @@ if (bitmask != RFREG_OFFSET_MASK) { original_value = _rtl92d_phy_rf_serial_read(hw, rfpath, regaddr); - bitshift = _rtl92d_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); data = ((original_value & (~bitmask)) | (data << bitshift)); } diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/phy.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/phy.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/phy.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/phy.c @@ -29,9 +29,10 @@ u32 data); static u32 _rtl8821ae_phy_calculate_bit_shift(u32 bitmask) { - u32 i = ffs(bitmask); + if (WARN_ON_ONCE(!bitmask)) + return 0; - return i ? i - 1 : 32; + return __ffs(bitmask); } static bool _rtl8821ae_phy_bb8821a_config_parafile(struct ieee80211_hw *hw); /*static bool _rtl8812ae_phy_config_mac_with_headerfile(struct ieee80211_hw *hw);*/ diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtw88/mac80211.c linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtw88/mac80211.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtw88/mac80211.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtw88/mac80211.c @@ -267,9 +267,9 @@ if (changed_flags & FIF_ALLMULTI) { if (*new_flags & FIF_ALLMULTI) - rtwdev->hal.rcr |= BIT_AM | BIT_AB; + rtwdev->hal.rcr |= BIT_AM; else - rtwdev->hal.rcr &= ~(BIT_AM | BIT_AB); + rtwdev->hal.rcr &= ~(BIT_AM); } if (changed_flags & FIF_FCSFAIL) { if (*new_flags & FIF_FCSFAIL) diff -u linux-xilinx-zynqmp-5.15.0/drivers/net/xen-netback/netback.c linux-xilinx-zynqmp-5.15.0/drivers/net/xen-netback/netback.c --- linux-xilinx-zynqmp-5.15.0/drivers/net/xen-netback/netback.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/xen-netback/netback.c @@ -104,13 +104,12 @@ module_param(provides_xdp_headroom, bool, 0644); static void xenvif_idx_release(struct xenvif_queue *queue, u16 pending_idx, - u8 status); + s8 status); static void make_tx_response(struct xenvif_queue *queue, - struct xen_netif_tx_request *txp, + const struct xen_netif_tx_request *txp, unsigned int extra_count, - s8 st); -static void push_tx_responses(struct xenvif_queue *queue); + s8 status); static void xenvif_idx_unmap(struct xenvif_queue *queue, u16 pending_idx); @@ -208,13 +207,9 @@ unsigned int extra_count, RING_IDX end) { RING_IDX cons = queue->tx.req_cons; - unsigned long flags; do { - spin_lock_irqsave(&queue->response_lock, flags); make_tx_response(queue, txp, extra_count, XEN_NETIF_RSP_ERROR); - push_tx_responses(queue); - spin_unlock_irqrestore(&queue->response_lock, flags); if (cons == end) break; RING_COPY_REQUEST(&queue->tx, cons++, txp); @@ -463,12 +458,20 @@ } for (shinfo->nr_frags = 0; nr_slots > 0 && shinfo->nr_frags < MAX_SKB_FRAGS; - shinfo->nr_frags++, gop++, nr_slots--) { + nr_slots--) { + if (unlikely(!txp->size)) { + make_tx_response(queue, txp, 0, XEN_NETIF_RSP_OKAY); + ++txp; + continue; + } + index = pending_index(queue->pending_cons++); pending_idx = queue->pending_ring[index]; xenvif_tx_create_map_op(queue, pending_idx, txp, txp == first ? extra_count : 0, gop); frag_set_pending_idx(&frags[shinfo->nr_frags], pending_idx); + ++shinfo->nr_frags; + ++gop; if (txp == first) txp = txfrags; @@ -481,20 +484,33 @@ shinfo = skb_shinfo(nskb); frags = shinfo->frags; - for (shinfo->nr_frags = 0; shinfo->nr_frags < nr_slots; - shinfo->nr_frags++, txp++, gop++) { + for (shinfo->nr_frags = 0; shinfo->nr_frags < nr_slots; ++txp) { + if (unlikely(!txp->size)) { + make_tx_response(queue, txp, 0, + XEN_NETIF_RSP_OKAY); + continue; + } + index = pending_index(queue->pending_cons++); pending_idx = queue->pending_ring[index]; xenvif_tx_create_map_op(queue, pending_idx, txp, 0, gop); frag_set_pending_idx(&frags[shinfo->nr_frags], pending_idx); + ++shinfo->nr_frags; + ++gop; } - skb_shinfo(skb)->frag_list = nskb; - } else if (nskb) { + if (shinfo->nr_frags) { + skb_shinfo(skb)->frag_list = nskb; + nskb = NULL; + } + } + + if (nskb) { /* A frag_list skb was allocated but it is no longer needed - * because enough slots were converted to copy ops above. + * because enough slots were converted to copy ops above or some + * were empty. */ kfree_skb(nskb); } @@ -965,7 +981,6 @@ (ret == 0) ? XEN_NETIF_RSP_OKAY : XEN_NETIF_RSP_ERROR); - push_tx_responses(queue); continue; } @@ -977,7 +992,6 @@ make_tx_response(queue, &txreq, extra_count, XEN_NETIF_RSP_OKAY); - push_tx_responses(queue); continue; } @@ -1413,8 +1427,35 @@ return work_done; } +static void _make_tx_response(struct xenvif_queue *queue, + const struct xen_netif_tx_request *txp, + unsigned int extra_count, + s8 status) +{ + RING_IDX i = queue->tx.rsp_prod_pvt; + struct xen_netif_tx_response *resp; + + resp = RING_GET_RESPONSE(&queue->tx, i); + resp->id = txp->id; + resp->status = status; + + while (extra_count-- != 0) + RING_GET_RESPONSE(&queue->tx, ++i)->status = XEN_NETIF_RSP_NULL; + + queue->tx.rsp_prod_pvt = ++i; +} + +static void push_tx_responses(struct xenvif_queue *queue) +{ + int notify; + + RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&queue->tx, notify); + if (notify) + notify_remote_via_irq(queue->tx_irq); +} + static void xenvif_idx_release(struct xenvif_queue *queue, u16 pending_idx, - u8 status) + s8 status) { struct pending_tx_info *pending_tx_info; pending_ring_idx_t index; @@ -1424,8 +1465,8 @@ spin_lock_irqsave(&queue->response_lock, flags); - make_tx_response(queue, &pending_tx_info->req, - pending_tx_info->extra_count, status); + _make_tx_response(queue, &pending_tx_info->req, + pending_tx_info->extra_count, status); /* Release the pending index before pusing the Tx response so * its available before a new Tx request is pushed by the @@ -1439,32 +1480,19 @@ spin_unlock_irqrestore(&queue->response_lock, flags); } - static void make_tx_response(struct xenvif_queue *queue, - struct xen_netif_tx_request *txp, + const struct xen_netif_tx_request *txp, unsigned int extra_count, - s8 st) + s8 status) { - RING_IDX i = queue->tx.rsp_prod_pvt; - struct xen_netif_tx_response *resp; - - resp = RING_GET_RESPONSE(&queue->tx, i); - resp->id = txp->id; - resp->status = st; - - while (extra_count-- != 0) - RING_GET_RESPONSE(&queue->tx, ++i)->status = XEN_NETIF_RSP_NULL; + unsigned long flags; - queue->tx.rsp_prod_pvt = ++i; -} + spin_lock_irqsave(&queue->response_lock, flags); -static void push_tx_responses(struct xenvif_queue *queue) -{ - int notify; + _make_tx_response(queue, txp, extra_count, status); + push_tx_responses(queue); - RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&queue->tx, notify); - if (notify) - notify_remote_via_irq(queue->tx_irq); + spin_unlock_irqrestore(&queue->response_lock, flags); } static void xenvif_idx_unmap(struct xenvif_queue *queue, u16 pending_idx) diff -u linux-xilinx-zynqmp-5.15.0/drivers/nvdimm/region_devs.c linux-xilinx-zynqmp-5.15.0/drivers/nvdimm/region_devs.c --- linux-xilinx-zynqmp-5.15.0/drivers/nvdimm/region_devs.c +++ linux-xilinx-zynqmp-5.15.0/drivers/nvdimm/region_devs.c @@ -966,7 +966,8 @@ { 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/nvme/host/core.c linux-xilinx-zynqmp-5.15.0/drivers/nvme/host/core.c --- linux-xilinx-zynqmp-5.15.0/drivers/nvme/host/core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/nvme/host/core.c @@ -1846,9 +1846,10 @@ /* * The block layer can't support LBA sizes larger than the page size - * yet, so catch this early and don't allow block I/O. + * or smaller than a sector size yet, so catch this early and don't + * allow block I/O. */ - if (ns->lba_shift > PAGE_SHIFT) { + if (ns->lba_shift > PAGE_SHIFT || ns->lba_shift < SECTOR_SHIFT) { capacity = 0; bs = (1 << 9); } diff -u linux-xilinx-zynqmp-5.15.0/drivers/nvme/host/nvme.h linux-xilinx-zynqmp-5.15.0/drivers/nvme/host/nvme.h --- linux-xilinx-zynqmp-5.15.0/drivers/nvme/host/nvme.h +++ linux-xilinx-zynqmp-5.15.0/drivers/nvme/host/nvme.h @@ -154,6 +154,11 @@ * 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), }; /* @@ -363,6 +368,11 @@ enum nvme_dctype dctype; }; +static inline enum nvme_ctrl_state nvme_ctrl_state(struct nvme_ctrl *ctrl) +{ + return READ_ONCE(ctrl->state); +} + enum nvme_iopolicy { NVME_IOPOLICY_NUMA, NVME_IOPOLICY_RR, diff -u linux-xilinx-zynqmp-5.15.0/drivers/nvme/host/pci.c linux-xilinx-zynqmp-5.15.0/drivers/nvme/host/pci.c --- linux-xilinx-zynqmp-5.15.0/drivers/nvme/host/pci.c +++ linux-xilinx-zynqmp-5.15.0/drivers/nvme/host/pci.c @@ -2953,6 +2953,18 @@ 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; @@ -2993,7 +3005,9 @@ dev->dev = get_device(&pdev->dev); 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. @@ -3307,7 +3321,8 @@ { 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 -u linux-xilinx-zynqmp-5.15.0/drivers/nvme/host/rdma.c linux-xilinx-zynqmp-5.15.0/drivers/nvme/host/rdma.c --- linux-xilinx-zynqmp-5.15.0/drivers/nvme/host/rdma.c +++ linux-xilinx-zynqmp-5.15.0/drivers/nvme/host/rdma.c @@ -645,6 +645,9 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/nvme/target/tcp.c linux-xilinx-zynqmp-5.15.0/drivers/nvme/target/tcp.c --- linux-xilinx-zynqmp-5.15.0/drivers/nvme/target/tcp.c +++ linux-xilinx-zynqmp-5.15.0/drivers/nvme/target/tcp.c @@ -18,6 +18,7 @@ #include "nvmet.h" #define NVMET_TCP_DEF_INLINE_DATA_SIZE (4 * PAGE_SIZE) +#define NVMET_TCP_MAXH2CDATA 0x400000 /* 16M arbitrary limit */ /* Define the socket priority to use for connections were it is desirable * that the NIC consider performing optimized packet processing or filtering. @@ -884,7 +885,7 @@ icresp->hdr.pdo = 0; icresp->hdr.plen = cpu_to_le32(icresp->hdr.hlen); icresp->pfv = cpu_to_le16(NVME_TCP_PFV_1_0); - icresp->maxdata = cpu_to_le32(0x400000); /* 16M arbitrary limit */ + icresp->maxdata = cpu_to_le32(NVMET_TCP_MAXH2CDATA); icresp->cpda = 0; if (queue->hdr_digest) icresp->digest |= NVME_TCP_HDR_DIGEST_ENABLE; @@ -930,6 +931,7 @@ { struct nvme_tcp_data_pdu *data = &queue->pdu.data; struct nvmet_tcp_cmd *cmd; + unsigned int exp_data_len; if (likely(queue->nr_cmds)) { if (unlikely(data->ttag >= queue->nr_cmds)) { @@ -948,12 +950,24 @@ data->ttag, le32_to_cpu(data->data_offset), cmd->rbytes_done); /* FIXME: use path and transport errors */ - nvmet_req_complete(&cmd->req, - NVME_SC_INVALID_FIELD | NVME_SC_DNR); + nvmet_tcp_fatal_error(queue); return -EPROTO; } + exp_data_len = le32_to_cpu(data->hdr.plen) - + nvmet_tcp_hdgst_len(queue) - + nvmet_tcp_ddgst_len(queue) - + sizeof(*data); + cmd->pdu_len = le32_to_cpu(data->data_length); + if (unlikely(cmd->pdu_len != exp_data_len || + cmd->pdu_len == 0 || + cmd->pdu_len > NVMET_TCP_MAXH2CDATA)) { + pr_err("H2CData PDU len %u is invalid\n", cmd->pdu_len); + /* FIXME: use proper transport errors */ + nvmet_tcp_fatal_error(queue); + return -EPROTO; + } cmd->pdu_recv = 0; nvmet_tcp_map_pdu_iovec(cmd); queue->cmd = cmd; diff -u linux-xilinx-zynqmp-5.15.0/drivers/of/base.c linux-xilinx-zynqmp-5.15.0/drivers/of/base.c --- linux-xilinx-zynqmp-5.15.0/drivers/of/base.c +++ linux-xilinx-zynqmp-5.15.0/drivers/of/base.c @@ -1669,6 +1669,7 @@ out_args->np = new; of_node_put(cur); cur = new; + new = NULL; } put: of_node_put(cur); diff -u linux-xilinx-zynqmp-5.15.0/drivers/of/dynamic.c linux-xilinx-zynqmp-5.15.0/drivers/of/dynamic.c --- linux-xilinx-zynqmp-5.15.0/drivers/of/dynamic.c +++ linux-xilinx-zynqmp-5.15.0/drivers/of/dynamic.c @@ -104,8 +104,9 @@ * * 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) { diff -u linux-xilinx-zynqmp-5.15.0/drivers/of/property.c linux-xilinx-zynqmp-5.15.0/drivers/of/property.c --- linux-xilinx-zynqmp-5.15.0/drivers/of/property.c +++ linux-xilinx-zynqmp-5.15.0/drivers/of/property.c @@ -1270,7 +1270,7 @@ DEFINE_SIMPLE_PROP(interconnects, "interconnects", "#interconnect-cells") DEFINE_SIMPLE_PROP(iommus, "iommus", "#iommu-cells") DEFINE_SIMPLE_PROP(mboxes, "mboxes", "#mbox-cells") -DEFINE_SIMPLE_PROP(io_channels, "io-channel", "#io-channel-cells") +DEFINE_SIMPLE_PROP(io_channels, "io-channels", "#io-channel-cells") DEFINE_SIMPLE_PROP(interrupt_parent, "interrupt-parent", NULL) DEFINE_SIMPLE_PROP(dmas, "dmas", "#dma-cells") DEFINE_SIMPLE_PROP(power_domains, "power-domains", "#power-domain-cells") diff -u linux-xilinx-zynqmp-5.15.0/drivers/of/unittest.c linux-xilinx-zynqmp-5.15.0/drivers/of/unittest.c --- linux-xilinx-zynqmp-5.15.0/drivers/of/unittest.c +++ linux-xilinx-zynqmp-5.15.0/drivers/of/unittest.c @@ -49,6 +49,12 @@ failed; \ }) +#ifdef CONFIG_OF_KOBJ +#define OF_KREF_READ(NODE) kref_read(&(NODE)->kobj.kref) +#else +#define OF_KREF_READ(NODE) 1 +#endif + /* * Expected message may have a message level other than KERN_INFO. * Print the expected message only if the current loglevel will allow @@ -448,6 +454,9 @@ unittest(passed, "index %i - data error on node %pOF rc=%i\n", i, args.np, rc); + + if (rc == 0) + of_node_put(args.np); } /* Check for missing list property */ @@ -537,8 +546,9 @@ static void __init of_unittest_parse_phandle_with_args_map(void) { - struct device_node *np, *p0, *p1, *p2, *p3; + struct device_node *np, *p[6] = {}; struct of_phandle_args args; + unsigned int prefs[6]; int i, rc; np = of_find_node_by_path("/testcase-data/phandle-tests/consumer-b"); @@ -547,34 +557,24 @@ return; } - p0 = of_find_node_by_path("/testcase-data/phandle-tests/provider0"); - if (!p0) { - pr_err("missing testcase data\n"); - return; - } - - p1 = of_find_node_by_path("/testcase-data/phandle-tests/provider1"); - if (!p1) { - pr_err("missing testcase data\n"); - return; - } - - p2 = of_find_node_by_path("/testcase-data/phandle-tests/provider2"); - if (!p2) { - pr_err("missing testcase data\n"); - return; - } - - p3 = of_find_node_by_path("/testcase-data/phandle-tests/provider3"); - if (!p3) { - pr_err("missing testcase data\n"); - return; + p[0] = of_find_node_by_path("/testcase-data/phandle-tests/provider0"); + p[1] = of_find_node_by_path("/testcase-data/phandle-tests/provider1"); + p[2] = of_find_node_by_path("/testcase-data/phandle-tests/provider2"); + p[3] = of_find_node_by_path("/testcase-data/phandle-tests/provider3"); + p[4] = of_find_node_by_path("/testcase-data/phandle-tests/provider4"); + p[5] = of_find_node_by_path("/testcase-data/phandle-tests/provider5"); + for (i = 0; i < ARRAY_SIZE(p); ++i) { + if (!p[i]) { + pr_err("missing testcase data\n"); + return; + } + prefs[i] = OF_KREF_READ(p[i]); } rc = of_count_phandle_with_args(np, "phandle-list", "#phandle-cells"); - unittest(rc == 7, "of_count_phandle_with_args() returned %i, expected 7\n", rc); + unittest(rc == 8, "of_count_phandle_with_args() returned %i, expected 8\n", rc); - for (i = 0; i < 8; i++) { + for (i = 0; i < 9; i++) { bool passed = true; memset(&args, 0, sizeof(args)); @@ -585,13 +585,13 @@ switch (i) { case 0: passed &= !rc; - passed &= (args.np == p1); + passed &= (args.np == p[1]); passed &= (args.args_count == 1); passed &= (args.args[0] == 1); break; case 1: passed &= !rc; - passed &= (args.np == p3); + passed &= (args.np == p[3]); passed &= (args.args_count == 3); passed &= (args.args[0] == 2); passed &= (args.args[1] == 5); @@ -602,28 +602,36 @@ break; case 3: passed &= !rc; - passed &= (args.np == p0); + passed &= (args.np == p[0]); passed &= (args.args_count == 0); break; case 4: passed &= !rc; - passed &= (args.np == p1); + passed &= (args.np == p[1]); passed &= (args.args_count == 1); passed &= (args.args[0] == 3); break; case 5: passed &= !rc; - passed &= (args.np == p0); + passed &= (args.np == p[0]); passed &= (args.args_count == 0); break; case 6: passed &= !rc; - passed &= (args.np == p2); + passed &= (args.np == p[2]); passed &= (args.args_count == 2); passed &= (args.args[0] == 15); passed &= (args.args[1] == 0x20); break; case 7: + passed &= !rc; + passed &= (args.np == p[3]); + passed &= (args.args_count == 3); + passed &= (args.args[0] == 2); + passed &= (args.args[1] == 5); + passed &= (args.args[2] == 3); + break; + case 8: passed &= (rc == -ENOENT); break; default: @@ -632,6 +640,9 @@ unittest(passed, "index %i - data error on node %s rc=%i\n", i, args.np->full_name, rc); + + if (rc == 0) + of_node_put(args.np); } /* Check for missing list property */ @@ -678,6 +689,13 @@ "OF: /testcase-data/phandle-tests/consumer-b: #phandle-cells = 2 found -1"); unittest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc); + + for (i = 0; i < ARRAY_SIZE(p); ++i) { + unittest(prefs[i] == OF_KREF_READ(p[i]), + "provider%d: expected:%d got:%d\n", + i, prefs[i], OF_KREF_READ(p[i])); + of_node_put(p[i]); + } } static void __init of_unittest_property_string(void) diff -u linux-xilinx-zynqmp-5.15.0/drivers/parport/parport_pc.c linux-xilinx-zynqmp-5.15.0/drivers/parport/parport_pc.c --- linux-xilinx-zynqmp-5.15.0/drivers/parport/parport_pc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/parport/parport_pc.c @@ -2613,6 +2613,8 @@ netmos_9865, quatech_sppxp100, wch_ch382l, + brainboxes_uc146, + brainboxes_px203, }; @@ -2676,6 +2678,8 @@ /* 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/pci/controller/dwc/pcie-designware-ep.c linux-xilinx-zynqmp-5.15.0/drivers/pci/controller/dwc/pcie-designware-ep.c --- linux-xilinx-zynqmp-5.15.0/drivers/pci/controller/dwc/pcie-designware-ep.c +++ linux-xilinx-zynqmp-5.15.0/drivers/pci/controller/dwc/pcie-designware-ep.c @@ -589,6 +589,7 @@ } aligned_offset = msg_addr & (epc->mem->window.page_size - 1); + msg_addr &= ~aligned_offset; ret = dw_pcie_ep_map_addr(epc, func_no, 0, ep->msi_mem_phys, msg_addr, epc->mem->window.page_size); if (ret) diff -u linux-xilinx-zynqmp-5.15.0/drivers/pci/controller/dwc/pcie-tegra194.c linux-xilinx-zynqmp-5.15.0/drivers/pci/controller/dwc/pcie-tegra194.c --- linux-xilinx-zynqmp-5.15.0/drivers/pci/controller/dwc/pcie-tegra194.c +++ linux-xilinx-zynqmp-5.15.0/drivers/pci/controller/dwc/pcie-tegra194.c @@ -7,6 +7,7 @@ * Author: Vidya Sagar */ +#include #include #include #include @@ -328,8 +329,7 @@ */ 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 @@ 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 @@ /* 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 -u linux-xilinx-zynqmp-5.15.0/drivers/pci/controller/pci-loongson.c linux-xilinx-zynqmp-5.15.0/drivers/pci/controller/pci-loongson.c --- linux-xilinx-zynqmp-5.15.0/drivers/pci/controller/pci-loongson.c +++ linux-xilinx-zynqmp-5.15.0/drivers/pci/controller/pci-loongson.c @@ -65,13 +65,49 @@ DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_LOONGSON, DEV_LS7A_LPC, system_bus_quirk); +/* + * Some Loongson PCIe ports have hardware limitations on their Maximum Read + * Request Size. They can't handle anything larger than this. Sane + * firmware will set proper MRRS at boot, so we only need no_inc_mrrs for + * bridges. However, some MIPS Loongson firmware doesn't set MRRS properly, + * so we have to enforce maximum safe MRRS, which is 256 bytes. + */ +#ifdef CONFIG_MIPS +static void loongson_set_min_mrrs_quirk(struct pci_dev *pdev) +{ + struct pci_bus *bus = pdev->bus; + struct pci_dev *bridge; + static const struct pci_device_id bridge_devids[] = { + { PCI_VDEVICE(LOONGSON, DEV_LS2K_PCIE_PORT0) }, + { PCI_VDEVICE(LOONGSON, DEV_LS7A_PCIE_PORT0) }, + { PCI_VDEVICE(LOONGSON, DEV_LS7A_PCIE_PORT1) }, + { PCI_VDEVICE(LOONGSON, DEV_LS7A_PCIE_PORT2) }, + { PCI_VDEVICE(LOONGSON, DEV_LS7A_PCIE_PORT3) }, + { PCI_VDEVICE(LOONGSON, DEV_LS7A_PCIE_PORT4) }, + { PCI_VDEVICE(LOONGSON, DEV_LS7A_PCIE_PORT5) }, + { PCI_VDEVICE(LOONGSON, DEV_LS7A_PCIE_PORT6) }, + { 0, }, + }; + + /* look for the matching bridge */ + while (!pci_is_root_bus(bus)) { + bridge = bus->self; + bus = bus->parent; + + if (pci_match_id(bridge_devids, bridge)) { + if (pcie_get_readrq(pdev) > 256) { + pci_info(pdev, "limiting MRRS to 256\n"); + pcie_set_readrq(pdev, 256); + } + break; + } + } +} +DECLARE_PCI_FIXUP_ENABLE(PCI_ANY_ID, PCI_ANY_ID, loongson_set_min_mrrs_quirk); +#endif + static void loongson_mrrs_quirk(struct pci_dev *pdev) { - /* - * Some Loongson PCIe ports have h/w limitations of maximum read - * request size. They can't handle anything larger than this. So - * force this limit on any devices attached under these ports. - */ struct pci_host_bridge *bridge = pci_find_host_bridge(pdev->bus); bridge->no_inc_mrrs = 1; diff -u linux-xilinx-zynqmp-5.15.0/drivers/pci/controller/pcie-mediatek.c linux-xilinx-zynqmp-5.15.0/drivers/pci/controller/pcie-mediatek.c --- linux-xilinx-zynqmp-5.15.0/drivers/pci/controller/pcie-mediatek.c +++ linux-xilinx-zynqmp-5.15.0/drivers/pci/controller/pcie-mediatek.c @@ -624,12 +624,18 @@ if (status & MSI_STATUS){ unsigned long imsi_status; + /* + * The interrupt status can be cleared even if the + * MSI status remains pending. As such, given the + * edge-triggered interrupt type, its status should + * be cleared before being dispatched to the + * handler of the underlying device. + */ + writel(MSI_STATUS, port->base + PCIE_INT_STATUS); while ((imsi_status = readl(port->base + PCIE_IMSI_STATUS))) { for_each_set_bit(bit, &imsi_status, MTK_MSI_IRQS_NUM) generic_handle_domain_irq(port->inner_domain, bit); } - /* Clear MSI interrupt status */ - writel(MSI_STATUS, port->base + PCIE_INT_STATUS); } } diff -u linux-xilinx-zynqmp-5.15.0/drivers/pci/pci-acpi.c linux-xilinx-zynqmp-5.15.0/drivers/pci/pci-acpi.c --- linux-xilinx-zynqmp-5.15.0/drivers/pci/pci-acpi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/pci/pci-acpi.c @@ -910,7 +910,7 @@ { 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 -u linux-xilinx-zynqmp-5.15.0/drivers/pci/pci-sysfs.c linux-xilinx-zynqmp-5.15.0/drivers/pci/pci-sysfs.c --- linux-xilinx-zynqmp-5.15.0/drivers/pci/pci-sysfs.c +++ linux-xilinx-zynqmp-5.15.0/drivers/pci/pci-sysfs.c @@ -12,7 +12,7 @@ * Modeled after usb's driverfs.c */ - +#include #include #include #include @@ -208,8 +208,7 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/pci/pci.c linux-xilinx-zynqmp-5.15.0/drivers/pci/pci.c --- linux-xilinx-zynqmp-5.15.0/drivers/pci/pci.c +++ linux-xilinx-zynqmp-5.15.0/drivers/pci/pci.c @@ -837,6 +837,9 @@ return 1; } + if (dev->bus->self) + pcie_aspm_pm_state_change(dev->bus->self); + return 0; } @@ -1157,6 +1160,9 @@ if (need_restore) pci_restore_bars(dev); + if (dev->bus->self) + pcie_aspm_pm_state_change(dev->bus->self); + return 0; } @@ -3679,14 +3685,14 @@ 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 +6108,7 @@ 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 +6180,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/pci/pci.h linux-xilinx-zynqmp-5.15.0/drivers/pci/pci.h --- linux-xilinx-zynqmp-5.15.0/drivers/pci/pci.h +++ linux-xilinx-zynqmp-5.15.0/drivers/pci/pci.h @@ -313,7 +313,7 @@ /* PCIe speed to Mb/s reduced by encoding overhead */ #define PCIE_SPEED2MBS_ENC(speed) \ - ((speed) == PCIE_SPEED_64_0GT ? 64000*128/130 : \ + ((speed) == PCIE_SPEED_64_0GT ? 64000*1/1 : \ (speed) == PCIE_SPEED_32_0GT ? 32000*128/130 : \ (speed) == PCIE_SPEED_16_0GT ? 16000*128/130 : \ (speed) == PCIE_SPEED_8_0GT ? 8000*128/130 : \ @@ -600,12 +600,14 @@ #ifdef CONFIG_PCIEASPM void pcie_aspm_init_link_state(struct pci_dev *pdev); void pcie_aspm_exit_link_state(struct pci_dev *pdev); +void pcie_aspm_pm_state_change(struct pci_dev *pdev); void pcie_aspm_powersave_config_link(struct pci_dev *pdev); void pci_save_aspm_l1ss_state(struct pci_dev *dev); void pci_restore_aspm_l1ss_state(struct pci_dev *dev); #else static inline void pcie_aspm_init_link_state(struct pci_dev *pdev) { } static inline void pcie_aspm_exit_link_state(struct pci_dev *pdev) { } +static inline void pcie_aspm_pm_state_change(struct pci_dev *pdev) { } static inline void pcie_aspm_powersave_config_link(struct pci_dev *pdev) { } static inline void pci_save_aspm_l1ss_state(struct pci_dev *dev) { } static inline void pci_restore_aspm_l1ss_state(struct pci_dev *dev) { } diff -u linux-xilinx-zynqmp-5.15.0/drivers/pci/pcie/aer.c linux-xilinx-zynqmp-5.15.0/drivers/pci/pcie/aer.c --- linux-xilinx-zynqmp-5.15.0/drivers/pci/pcie/aer.c +++ linux-xilinx-zynqmp-5.15.0/drivers/pci/pcie/aer.c @@ -743,7 +743,7 @@ u8 bus = info->id >> 8; u8 devfn = info->id & 0xff; - pci_info(dev, "%s%s error received: %04x:%02x:%02x.%d\n", + pci_info(dev, "%s%s error message received from %04x:%02x:%02x.%d\n", info->multi_error_valid ? "Multiple " : "", aer_error_severity_string[info->severity], pci_domain_nr(dev->bus), bus, PCI_SLOT(devfn), @@ -931,7 +931,12 @@ pci_walk_bus(parent->subordinate, find_device_iter, e_info); if (!e_info->error_dev_num) { - pci_info(parent, "can't find device of ID%04x\n", e_info->id); + u8 bus = e_info->id >> 8; + u8 devfn = e_info->id & 0xff; + + pci_info(parent, "found no error details for %04x:%02x:%02x.%d\n", + pci_domain_nr(parent->bus), bus, PCI_SLOT(devfn), + PCI_FUNC(devfn)); return false; } return true; diff -u linux-xilinx-zynqmp-5.15.0/drivers/pci/pcie/aspm.c linux-xilinx-zynqmp-5.15.0/drivers/pci/pcie/aspm.c --- linux-xilinx-zynqmp-5.15.0/drivers/pci/pcie/aspm.c +++ linux-xilinx-zynqmp-5.15.0/drivers/pci/pcie/aspm.c @@ -1084,0 +1085,19 @@ + +/* @pdev: the root port or switch downstream port */ +void pcie_aspm_pm_state_change(struct pci_dev *pdev) +{ + struct pcie_link_state *link = pdev->link_state; + + if (aspm_disabled || !link) + return; + /* + * Devices changed PM state, we should recheck if latency + * meets all functions' requirement + */ + down_read(&pci_bus_sem); + mutex_lock(&aspm_lock); + pcie_update_aspm_capable(link->root); + pcie_config_aspm_path(link); + mutex_unlock(&aspm_lock); + up_read(&pci_bus_sem); +} @@ -1287,6 +1306,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/pci/quirks.c linux-xilinx-zynqmp-5.15.0/drivers/pci/quirks.c --- linux-xilinx-zynqmp-5.15.0/drivers/pci/quirks.c +++ linux-xilinx-zynqmp-5.15.0/drivers/pci/quirks.c @@ -607,7 +607,7 @@ /* * 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,17 +615,22 @@ * 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; - /* Use "USB Device (not host controller)" class */ - pdev->class = PCI_CLASS_SERIAL_USB_DEVICE; - pci_info(pdev, "PCI class overridden (%#08x -> %#08x) so dwc3 driver can claim this instead of xhci\n", - class, pdev->class); + if (class != PCI_CLASS_SERIAL_USB_DEVICE) { + /* Use "USB Device (not host controller)" class */ + pdev->class = PCI_CLASS_SERIAL_USB_DEVICE; + pci_info(pdev, + "PCI class overridden (%#08x -> %#08x) so dwc3 driver can claim this instead of xhci\n", + 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 @@ -3680,6 +3685,19 @@ PCI_CLASS_DISPLAY_VGA, 8, quirk_no_pm_reset); /* + * Spectrum-{1,2,3,4} devices report that a D3hot->D0 transition causes a reset + * (i.e., they advertise NoSoftRst-). However, this transition does not have + * any effect on the device: It continues to be operational and network ports + * remain up. Advertising this support makes it seem as if a PM reset is viable + * for these devices. Mark it as unavailable to skip it when testing reset + * methods. + */ +DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_MELLANOX, 0xcb84, quirk_no_pm_reset); +DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_MELLANOX, 0xcf6c, quirk_no_pm_reset); +DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_MELLANOX, 0xcf70, quirk_no_pm_reset); +DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_MELLANOX, 0xcf80, quirk_no_pm_reset); + +/* * Thunderbolt controllers with broken MSI hotplug signaling: * Entire 1st generation (Light Ridge, Eagle Ridge, Light Peak) and part * of the 2nd generation (Cactus Ridge 4C up to revision 1, Port Ridge). @@ -4590,17 +4608,21 @@ * But the implementation could block peer-to-peer transactions between them * and provide ACS-like functionality. */ -static int pci_quirk_zhaoxin_pcie_ports_acs(struct pci_dev *dev, u16 acs_flags) +static int pci_quirk_zhaoxin_pcie_ports_acs(struct pci_dev *dev, u16 acs_flags) { if (!pci_is_pcie(dev) || ((pci_pcie_type(dev) != PCI_EXP_TYPE_ROOT_PORT) && (pci_pcie_type(dev) != PCI_EXP_TYPE_DOWNSTREAM))) return -ENOTTY; + /* + * Future Zhaoxin Root Ports and Switch Downstream Ports will + * implement ACS capability in accordance with the PCIe Spec. + */ switch (dev->device) { case 0x0710 ... 0x071e: case 0x0721: - case 0x0723 ... 0x0732: + case 0x0723 ... 0x0752: return pci_acs_ctrl_enabled(acs_flags, PCI_ACS_SV | PCI_ACS_RR | PCI_ACS_CR | PCI_ACS_UF); } @@ -5392,6 +5414,12 @@ 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 +5433,10 @@ (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 +5459,25 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/pci/switch/switchtec.c linux-xilinx-zynqmp-5.15.0/drivers/pci/switch/switchtec.c --- linux-xilinx-zynqmp-5.15.0/drivers/pci/switch/switchtec.c +++ linux-xilinx-zynqmp-5.15.0/drivers/pci/switch/switchtec.c @@ -1250,13 +1250,6 @@ { struct switchtec_dev *stdev = to_stdev(dev); - if (stdev->dma_mrpc) { - iowrite32(0, &stdev->mmio_mrpc->dma_en); - flush_wc_buf(stdev); - writeq(0, &stdev->mmio_mrpc->dma_addr); - dma_free_coherent(&stdev->pdev->dev, sizeof(*stdev->dma_mrpc), - stdev->dma_mrpc, stdev->dma_mrpc_dma_addr); - } kfree(stdev); } @@ -1300,7 +1293,7 @@ return ERR_PTR(-ENOMEM); stdev->alive = true; - stdev->pdev = pdev; + stdev->pdev = pci_dev_get(pdev); INIT_LIST_HEAD(&stdev->mrpc_queue); mutex_init(&stdev->mrpc_mutex); stdev->mrpc_busy = 0; @@ -1334,6 +1327,7 @@ return stdev; err_put: + pci_dev_put(stdev->pdev); put_device(&stdev->dev); return ERR_PTR(rc); } @@ -1586,6 +1580,18 @@ return 0; } +static void switchtec_exit_pci(struct switchtec_dev *stdev) +{ + if (stdev->dma_mrpc) { + iowrite32(0, &stdev->mmio_mrpc->dma_en); + flush_wc_buf(stdev); + writeq(0, &stdev->mmio_mrpc->dma_addr); + dma_free_coherent(&stdev->pdev->dev, sizeof(*stdev->dma_mrpc), + stdev->dma_mrpc, stdev->dma_mrpc_dma_addr); + stdev->dma_mrpc = NULL; + } +} + static int switchtec_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id) { @@ -1645,6 +1651,9 @@ ida_simple_remove(&switchtec_minor_ida, MINOR(stdev->dev.devt)); dev_info(&stdev->dev, "unregistered.\n"); stdev_kill(stdev); + switchtec_exit_pci(stdev); + pci_dev_put(stdev->pdev); + stdev->pdev = NULL; put_device(&stdev->dev); } diff -u linux-xilinx-zynqmp-5.15.0/drivers/pcmcia/cs.c linux-xilinx-zynqmp-5.15.0/drivers/pcmcia/cs.c --- linux-xilinx-zynqmp-5.15.0/drivers/pcmcia/cs.c +++ linux-xilinx-zynqmp-5.15.0/drivers/pcmcia/cs.c @@ -605,6 +605,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/phy/motorola/phy-mapphone-mdm6600.c linux-xilinx-zynqmp-5.15.0/drivers/phy/motorola/phy-mapphone-mdm6600.c --- linux-xilinx-zynqmp-5.15.0/drivers/phy/motorola/phy-mapphone-mdm6600.c +++ linux-xilinx-zynqmp-5.15.0/drivers/phy/motorola/phy-mapphone-mdm6600.c @@ -122,16 +122,10 @@ { 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 @@ 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 @@ { 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 @@ } 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 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/phy/tegra/xusb.c linux-xilinx-zynqmp-5.15.0/drivers/phy/tegra/xusb.c --- linux-xilinx-zynqmp-5.15.0/drivers/phy/tegra/xusb.c +++ linux-xilinx-zynqmp-5.15.0/drivers/phy/tegra/xusb.c @@ -455,7 +455,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/phy/ti/phy-omap-usb2.c linux-xilinx-zynqmp-5.15.0/drivers/phy/ti/phy-omap-usb2.c --- linux-xilinx-zynqmp-5.15.0/drivers/phy/ti/phy-omap-usb2.c +++ linux-xilinx-zynqmp-5.15.0/drivers/phy/ti/phy-omap-usb2.c @@ -116,7 +116,7 @@ { struct omap_usb *phy = phy_to_omapusb(otg->usb_phy); - if (!phy->comparator) + if (!phy->comparator || !phy->comparator->set_vbus) return -ENODEV; return phy->comparator->set_vbus(phy->comparator, enabled); @@ -126,7 +126,7 @@ { struct omap_usb *phy = phy_to_omapusb(otg->usb_phy); - if (!phy->comparator) + if (!phy->comparator || !phy->comparator->start_srp) return -ENODEV; return phy->comparator->start_srp(phy->comparator); diff -u linux-xilinx-zynqmp-5.15.0/drivers/pinctrl/core.c linux-xilinx-zynqmp-5.15.0/drivers/pinctrl/core.c --- linux-xilinx-zynqmp-5.15.0/drivers/pinctrl/core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/pinctrl/core.c @@ -1239,17 +1239,17 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/pinctrl/pinctrl-at91-pio4.c linux-xilinx-zynqmp-5.15.0/drivers/pinctrl/pinctrl-at91-pio4.c --- linux-xilinx-zynqmp-5.15.0/drivers/pinctrl/pinctrl-at91-pio4.c +++ linux-xilinx-zynqmp-5.15.0/drivers/pinctrl/pinctrl-at91-pio4.c @@ -1038,6 +1038,13 @@ } }; +/* + * This lock class allows to tell lockdep that parent IRQ and children IRQ do + * not share the same class so it does not raise false positive + */ +static struct lock_class_key atmel_lock_key; +static struct lock_class_key atmel_request_key; + static int atmel_pinctrl_probe(struct platform_device *pdev) { struct device *dev = &pdev->dev; @@ -1193,6 +1200,7 @@ irq_set_chip_and_handler(irq, &atmel_gpio_irq_chip, handle_simple_irq); irq_set_chip_data(irq, atmel_pioctrl); + irq_set_lockdep_class(irq, &atmel_lock_key, &atmel_request_key); dev_dbg(dev, "atmel gpio irq domain: hwirq: %d, linux irq: %d\n", i, irq); diff -u linux-xilinx-zynqmp-5.15.0/drivers/pinctrl/qcom/pinctrl-lpass-lpi.c linux-xilinx-zynqmp-5.15.0/drivers/pinctrl/qcom/pinctrl-lpass-lpi.c --- linux-xilinx-zynqmp-5.15.0/drivers/pinctrl/qcom/pinctrl-lpass-lpi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/pinctrl/qcom/pinctrl-lpass-lpi.c @@ -102,7 +102,8 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ { 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 -u linux-xilinx-zynqmp-5.15.0/drivers/platform/mellanox/mlxbf-pmc.c linux-xilinx-zynqmp-5.15.0/drivers/platform/mellanox/mlxbf-pmc.c --- linux-xilinx-zynqmp-5.15.0/drivers/platform/mellanox/mlxbf-pmc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/platform/mellanox/mlxbf-pmc.c @@ -1202,6 +1202,8 @@ 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; @@ -1214,6 +1216,8 @@ 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; } @@ -1240,6 +1244,8 @@ 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; @@ -1251,6 +1257,8 @@ 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; } @@ -1283,6 +1291,8 @@ 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++; @@ -1311,6 +1321,8 @@ 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; @@ -1442,6 +1454,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/platform/mellanox/mlxbf-tmfifo.c linux-xilinx-zynqmp-5.15.0/drivers/platform/mellanox/mlxbf-tmfifo.c --- linux-xilinx-zynqmp-5.15.0/drivers/platform/mellanox/mlxbf-tmfifo.c +++ linux-xilinx-zynqmp-5.15.0/drivers/platform/mellanox/mlxbf-tmfifo.c @@ -588,24 +588,25 @@ if (vring->cur_len + sizeof(u64) <= len) { /* The whole word. */ - if (!IS_VRING_DROP(vring)) { - if (is_rx) + 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)); + } else { + memcpy(&data, addr + vring->cur_len, + sizeof(u64)); } vring->cur_len += sizeof(u64); } else { /* Leftover bytes. */ - if (!IS_VRING_DROP(vring)) { - if (is_rx) + if (is_rx) { + if (!IS_VRING_DROP(vring)) memcpy(addr + vring->cur_len, &data, len - vring->cur_len); - else - memcpy(&data, addr + vring->cur_len, - len - vring->cur_len); + } else { + data = 0; + memcpy(&data, addr + vring->cur_len, + len - vring->cur_len); } vring->cur_len = len; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/platform/surface/aggregator/core.c linux-xilinx-zynqmp-5.15.0/drivers/platform/surface/aggregator/core.c --- linux-xilinx-zynqmp-5.15.0/drivers/platform/surface/aggregator/core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/platform/surface/aggregator/core.c @@ -230,9 +230,12 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/platform/x86/Kconfig linux-xilinx-zynqmp-5.15.0/drivers/platform/x86/Kconfig --- linux-xilinx-zynqmp-5.15.0/drivers/platform/x86/Kconfig +++ linux-xilinx-zynqmp-5.15.0/drivers/platform/x86/Kconfig @@ -272,6 +272,7 @@ 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_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 -u linux-xilinx-zynqmp-5.15.0/drivers/platform/x86/asus-nb-wmi.c linux-xilinx-zynqmp-5.15.0/drivers/platform/x86/asus-nb-wmi.c --- linux-xilinx-zynqmp-5.15.0/drivers/platform/x86/asus-nb-wmi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/platform/x86/asus-nb-wmi.c @@ -115,12 +115,17 @@ }; 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 @@ }, .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 @@ 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 @@ { 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 -u linux-xilinx-zynqmp-5.15.0/drivers/platform/x86/asus-wmi.c linux-xilinx-zynqmp-5.15.0/drivers/platform/x86/asus-wmi.c --- linux-xilinx-zynqmp-5.15.0/drivers/platform/x86/asus-wmi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/platform/x86/asus-wmi.c @@ -68,6 +68,7 @@ #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_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 @@ } /* 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 @@ 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 @@ /* 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 @@ { 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/platform/x86/thinkpad_acpi.c linux-xilinx-zynqmp-5.15.0/drivers/platform/x86/thinkpad_acpi.c --- linux-xilinx-zynqmp-5.15.0/drivers/platform/x86/thinkpad_acpi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/platform/x86/thinkpad_acpi.c @@ -9766,6 +9766,7 @@ * 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 -u linux-xilinx-zynqmp-5.15.0/drivers/platform/x86/touchscreen_dmi.c linux-xilinx-zynqmp-5.15.0/drivers/platform/x86/touchscreen_dmi.c --- linux-xilinx-zynqmp-5.15.0/drivers/platform/x86/touchscreen_dmi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/platform/x86/touchscreen_dmi.c @@ -743,6 +743,21 @@ .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), @@ -1443,6 +1458,14 @@ }, }, { + /* 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, .matches = { diff -u linux-xilinx-zynqmp-5.15.0/drivers/platform/x86/wmi.c linux-xilinx-zynqmp-5.15.0/drivers/platform/x86/wmi.c --- linux-xilinx-zynqmp-5.15.0/drivers/platform/x86/wmi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/platform/x86/wmi.c @@ -99,6 +99,12 @@ }; 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 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 @@ 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 @@ 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 @@ 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_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 @@ 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 @@ .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 @@ 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 @@ 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 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 @@ 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 @@ 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 @@ 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 @@ } } -out_free_pointer: - kfree(out.pointer); - return retval; + kfree(obj); + + return 0; } /* diff -u linux-xilinx-zynqmp-5.15.0/drivers/ptp/ptp_clock.c linux-xilinx-zynqmp-5.15.0/drivers/ptp/ptp_clock.c --- linux-xilinx-zynqmp-5.15.0/drivers/ptp/ptp_clock.c +++ linux-xilinx-zynqmp-5.15.0/drivers/ptp/ptp_clock.c @@ -56,10 +56,11 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/ptp/ptp_sysfs.c linux-xilinx-zynqmp-5.15.0/drivers/ptp/ptp_sysfs.c --- linux-xilinx-zynqmp-5.15.0/drivers/ptp/ptp_sysfs.c +++ linux-xilinx-zynqmp-5.15.0/drivers/ptp/ptp_sysfs.c @@ -79,7 +79,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/regulator/core.c linux-xilinx-zynqmp-5.15.0/drivers/regulator/core.c --- linux-xilinx-zynqmp-5.15.0/drivers/regulator/core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/regulator/core.c @@ -2881,7 +2881,8 @@ /* Fallthrough on positive return values - already enabled */ } - rdev->use_count++; + if (regulator->enable_count == 1) + rdev->use_count++; return 0; @@ -2956,37 +2957,40 @@ lockdep_assert_held_once(&rdev->mutex.base); - if (WARN(rdev->use_count <= 0, + if (WARN(regulator->enable_count == 0, "unbalanced disables for %s\n", rdev_get_name(rdev))) return -EIO; - /* are we the last user and permitted to disable ? */ - if (rdev->use_count == 1 && - (rdev->constraints && !rdev->constraints->always_on)) { + if (regulator->enable_count == 1) { + /* disabling last enable_count from this regulator */ + /* are we the last user and permitted to disable ? */ + if (rdev->use_count == 1 && + (rdev->constraints && !rdev->constraints->always_on)) { - /* we are last user */ - if (regulator_ops_is_valid(rdev, REGULATOR_CHANGE_STATUS)) { - ret = _notifier_call_chain(rdev, - REGULATOR_EVENT_PRE_DISABLE, - NULL); - if (ret & NOTIFY_STOP_MASK) - return -EINVAL; + /* we are last user */ + if (regulator_ops_is_valid(rdev, REGULATOR_CHANGE_STATUS)) { + ret = _notifier_call_chain(rdev, + REGULATOR_EVENT_PRE_DISABLE, + NULL); + if (ret & NOTIFY_STOP_MASK) + return -EINVAL; - ret = _regulator_do_disable(rdev); - if (ret < 0) { - rdev_err(rdev, "failed to disable: %pe\n", ERR_PTR(ret)); - _notifier_call_chain(rdev, - REGULATOR_EVENT_ABORT_DISABLE, + ret = _regulator_do_disable(rdev); + if (ret < 0) { + rdev_err(rdev, "failed to disable: %pe\n", ERR_PTR(ret)); + _notifier_call_chain(rdev, + REGULATOR_EVENT_ABORT_DISABLE, + NULL); + return ret; + } + _notifier_call_chain(rdev, REGULATOR_EVENT_DISABLE, NULL); - return ret; } - _notifier_call_chain(rdev, REGULATOR_EVENT_DISABLE, - NULL); - } - rdev->use_count = 0; - } else if (rdev->use_count > 1) { - rdev->use_count--; + rdev->use_count = 0; + } else if (rdev->use_count > 1) { + rdev->use_count--; + } } if (ret == 0) @@ -5649,15 +5653,11 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/rpmsg/qcom_glink_native.c linux-xilinx-zynqmp-5.15.0/drivers/rpmsg/qcom_glink_native.c --- linux-xilinx-zynqmp-5.15.0/drivers/rpmsg/qcom_glink_native.c +++ linux-xilinx-zynqmp-5.15.0/drivers/rpmsg/qcom_glink_native.c @@ -1395,6 +1395,7 @@ struct glink_channel *channel = to_glink_channel(rpdev->ept); channel->rpdev = NULL; + kfree(rpdev->driver_override); kfree(rpdev); } @@ -1623,6 +1624,7 @@ /* Release qcom_glink_alloc_channel() reference */ kref_put(&channel->refcount, qcom_glink_channel_release); + kfree(rpdev->driver_override); kfree(rpdev); } diff -u linux-xilinx-zynqmp-5.15.0/drivers/rpmsg/rpmsg_core.c linux-xilinx-zynqmp-5.15.0/drivers/rpmsg/rpmsg_core.c --- linux-xilinx-zynqmp-5.15.0/drivers/rpmsg/rpmsg_core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/rpmsg/rpmsg_core.c @@ -376,7 +376,8 @@ 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 @@ .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 -u linux-xilinx-zynqmp-5.15.0/drivers/rpmsg/virtio_rpmsg_bus.c linux-xilinx-zynqmp-5.15.0/drivers/rpmsg/virtio_rpmsg_bus.c --- linux-xilinx-zynqmp-5.15.0/drivers/rpmsg/virtio_rpmsg_bus.c +++ linux-xilinx-zynqmp-5.15.0/drivers/rpmsg/virtio_rpmsg_bus.c @@ -377,6 +377,7 @@ struct rpmsg_device *rpdev = to_rpmsg_device(dev); struct virtio_rpmsg_channel *vch = to_virtio_rpmsg_channel(rpdev); + kfree(rpdev->driver_override); kfree(vch); } diff -u linux-xilinx-zynqmp-5.15.0/drivers/rtc/rtc-cmos.c linux-xilinx-zynqmp-5.15.0/drivers/rtc/rtc-cmos.c --- linux-xilinx-zynqmp-5.15.0/drivers/rtc/rtc-cmos.c +++ linux-xilinx-zynqmp-5.15.0/drivers/rtc/rtc-cmos.c @@ -292,7 +292,7 @@ /* This not only a rtc_op, but also called directly */ if (!is_valid_irq(cmos->irq)) - return -EIO; + return -ETIMEDOUT; /* Basic alarms only support hour, minute, and seconds fields. * Some also support day and month, for alarms up to a year in @@ -557,7 +557,7 @@ * Use mc146818_avoid_UIP() to avoid this. */ if (!mc146818_avoid_UIP(cmos_set_alarm_callback, &p)) - return -EIO; + return -ETIMEDOUT; cmos->alarm_expires = rtc_tm_to_time64(&t->time); diff -u linux-xilinx-zynqmp-5.15.0/drivers/s390/block/dasd.c linux-xilinx-zynqmp-5.15.0/drivers/s390/block/dasd.c --- linux-xilinx-zynqmp-5.15.0/drivers/s390/block/dasd.c +++ linux-xilinx-zynqmp-5.15.0/drivers/s390/block/dasd.c @@ -697,18 +697,20 @@ * 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); } diff -u linux-xilinx-zynqmp-5.15.0/drivers/s390/cio/css.c linux-xilinx-zynqmp-5.15.0/drivers/s390/cio/css.c --- linux-xilinx-zynqmp-5.15.0/drivers/s390/cio/css.c +++ linux-xilinx-zynqmp-5.15.0/drivers/s390/cio/css.c @@ -233,17 +233,19 @@ */ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/s390/crypto/ap_bus.c linux-xilinx-zynqmp-5.15.0/drivers/s390/crypto/ap_bus.c --- linux-xilinx-zynqmp-5.15.0/drivers/s390/crypto/ap_bus.c +++ linux-xilinx-zynqmp-5.15.0/drivers/s390/crypto/ap_bus.c @@ -959,6 +959,10 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/s390/net/qeth_l3_main.c linux-xilinx-zynqmp-5.15.0/drivers/s390/net/qeth_l3_main.c --- linux-xilinx-zynqmp-5.15.0/drivers/s390/net/qeth_l3_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/s390/net/qeth_l3_main.c @@ -254,9 +254,10 @@ if (!recover) { hash_del(&addr->hnode); kfree(addr); - continue; + } else { + /* prepare for recovery */ + addr->disp_flag = QETH_DISP_ADDR_ADD; } - addr->disp_flag = QETH_DISP_ADDR_ADD; } mutex_unlock(&card->ip_lock); @@ -277,9 +278,11 @@ if (addr->disp_flag == QETH_DISP_ADDR_ADD) { rc = qeth_l3_register_addr_entry(card, addr); - if (!rc) { + if (!rc || rc == -EADDRINUSE || rc == -ENETDOWN) { + /* keep it in the records */ addr->disp_flag = QETH_DISP_ADDR_DO_NOTHING; } else { + /* bad address */ hash_del(&addr->hnode); kfree(addr); } diff -u linux-xilinx-zynqmp-5.15.0/drivers/scsi/be2iscsi/be_main.c linux-xilinx-zynqmp-5.15.0/drivers/scsi/be2iscsi/be_main.c --- linux-xilinx-zynqmp-5.15.0/drivers/scsi/be2iscsi/be_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/be2iscsi/be_main.c @@ -2691,6 +2691,7 @@ kfree(pwrb_context->pwrb_handle_base); kfree(pwrb_context->pwrb_handle_basestd); } + kfree(phwi_ctxt->be_wrbq); return -ENOMEM; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/scsi/bnx2fc/bnx2fc_fcoe.c linux-xilinx-zynqmp-5.15.0/drivers/scsi/bnx2fc/bnx2fc_fcoe.c --- linux-xilinx-zynqmp-5.15.0/drivers/scsi/bnx2fc/bnx2fc_fcoe.c +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/bnx2fc/bnx2fc_fcoe.c @@ -432,7 +432,6 @@ struct fcoe_ctlr *ctlr; struct fcoe_rcv_info *fr; struct fcoe_percpu_s *bg; - struct sk_buff *tmp_skb; interface = container_of(ptype, struct bnx2fc_interface, fcoe_packet_type); @@ -444,11 +443,9 @@ goto err; } - tmp_skb = skb_share_check(skb, GFP_ATOMIC); - if (!tmp_skb) - goto err; - - skb = tmp_skb; + skb = skb_share_check(skb, GFP_ATOMIC); + if (!skb) + return -1; if (unlikely(eth_hdr(skb)->h_proto != htons(ETH_P_FCOE))) { printk(KERN_ERR PFX "bnx2fc_rcv: Wrong FC type frame\n"); diff -u linux-xilinx-zynqmp-5.15.0/drivers/scsi/fcoe/fcoe_ctlr.c linux-xilinx-zynqmp-5.15.0/drivers/scsi/fcoe/fcoe_ctlr.c --- linux-xilinx-zynqmp-5.15.0/drivers/scsi/fcoe/fcoe_ctlr.c +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/fcoe/fcoe_ctlr.c @@ -319,17 +319,16 @@ { struct fcoe_fcf *sel; struct fcoe_fcf *fcf; - unsigned long flags; mutex_lock(&fip->ctlr_mutex); - spin_lock_irqsave(&fip->ctlr_lock, flags); + spin_lock_bh(&fip->ctlr_lock); kfree_skb(fip->flogi_req); fip->flogi_req = NULL; list_for_each_entry(fcf, &fip->fcfs, list) fcf->flogi_sent = 0; - spin_unlock_irqrestore(&fip->ctlr_lock, flags); + spin_unlock_bh(&fip->ctlr_lock); sel = fip->sel_fcf; if (sel && ether_addr_equal(sel->fcf_mac, fip->dest_addr)) @@ -700,7 +699,6 @@ { struct fc_frame *fp; struct fc_frame_header *fh; - unsigned long flags; u16 old_xid; u8 op; u8 mac[ETH_ALEN]; @@ -734,11 +732,11 @@ op = FIP_DT_FLOGI; if (fip->mode == FIP_MODE_VN2VN) break; - spin_lock_irqsave(&fip->ctlr_lock, flags); + spin_lock_bh(&fip->ctlr_lock); kfree_skb(fip->flogi_req); fip->flogi_req = skb; fip->flogi_req_send = 1; - spin_unlock_irqrestore(&fip->ctlr_lock, flags); + spin_unlock_bh(&fip->ctlr_lock); schedule_work(&fip->timer_work); return -EINPROGRESS; case ELS_FDISC: @@ -1715,11 +1713,10 @@ 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_irqsave(&fip->ctlr_lock, flags); + spin_lock_bh(&fip->ctlr_lock); LIBFCOE_FIP_DBG(fip, "re-sending FLOGI - reselect\n"); fcf = fcoe_ctlr_select(fip); if (!fcf || fcf->flogi_sent) { @@ -1730,7 +1727,7 @@ fcoe_ctlr_solicit(fip, NULL); error = fcoe_ctlr_flogi_send_locked(fip); } - spin_unlock_irqrestore(&fip->ctlr_lock, flags); + spin_unlock_bh(&fip->ctlr_lock); mutex_unlock(&fip->ctlr_mutex); return error; } @@ -1747,9 +1744,8 @@ static void fcoe_ctlr_flogi_send(struct fcoe_ctlr *fip) { struct fcoe_fcf *fcf; - unsigned long flags; - spin_lock_irqsave(&fip->ctlr_lock, flags); + spin_lock_bh(&fip->ctlr_lock); fcf = fip->sel_fcf; if (!fcf || !fip->flogi_req_send) goto unlock; @@ -1776,7 +1772,7 @@ } else /* XXX */ LIBFCOE_FIP_DBG(fip, "No FCF selected - defer send\n"); unlock: - spin_unlock_irqrestore(&fip->ctlr_lock, flags); + spin_unlock_bh(&fip->ctlr_lock); } /** diff -u linux-xilinx-zynqmp-5.15.0/drivers/scsi/hisi_sas/hisi_sas_main.c linux-xilinx-zynqmp-5.15.0/drivers/scsi/hisi_sas/hisi_sas_main.c --- linux-xilinx-zynqmp-5.15.0/drivers/scsi/hisi_sas/hisi_sas_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/hisi_sas/hisi_sas_main.c @@ -724,7 +724,7 @@ */ local_phy = sas_get_local_phy(device); if (!scsi_is_sas_phy_local(local_phy) && - !test_bit(HISI_SAS_RESET_BIT, &hisi_hba->flags)) { + !test_bit(HISI_SAS_RESETTING_BIT, &hisi_hba->flags)) { unsigned long deadline = ata_deadline(jiffies, 20000); struct sata_device *sata_dev = &device->sata_dev; struct ata_host *ata_host = sata_dev->ata_host; @@ -1072,7 +1072,7 @@ sas_dev->device_id, sas_dev->dev_type); down(&hisi_hba->sem); - if (!test_bit(HISI_SAS_RESET_BIT, &hisi_hba->flags)) { + if (!test_bit(HISI_SAS_RESETTING_BIT, &hisi_hba->flags)) { hisi_sas_internal_task_abort(hisi_hba, device, HISI_SAS_INT_ABT_DEV, 0, true); @@ -1548,7 +1548,6 @@ { struct Scsi_Host *shost = hisi_hba->shost; - down(&hisi_hba->sem); hisi_hba->phy_state = hisi_hba->hw->get_phys_state(hisi_hba); scsi_block_requests(shost); @@ -1574,9 +1573,9 @@ if (hisi_hba->reject_stp_links_msk) hisi_sas_terminate_stp_reject(hisi_hba); hisi_sas_reset_init_all_devices(hisi_hba); - up(&hisi_hba->sem); scsi_unblock_requests(shost); - clear_bit(HISI_SAS_RESET_BIT, &hisi_hba->flags); + clear_bit(HISI_SAS_RESETTING_BIT, &hisi_hba->flags); + up(&hisi_hba->sem); hisi_sas_rescan_topology(hisi_hba, hisi_hba->phy_state); } @@ -1585,10 +1584,13 @@ static int hisi_sas_controller_prereset(struct hisi_hba *hisi_hba) { if (!hisi_hba->hw->soft_reset) - return -1; + return -ENOENT; - if (test_and_set_bit(HISI_SAS_RESET_BIT, &hisi_hba->flags)) - return -1; + down(&hisi_hba->sem); + if (test_and_set_bit(HISI_SAS_RESETTING_BIT, &hisi_hba->flags)) { + up(&hisi_hba->sem); + return -EPERM; + } if (hisi_sas_debugfs_enable && hisi_hba->debugfs_itct[0].itct) hisi_hba->hw->debugfs_snapshot_regs(hisi_hba); @@ -1611,7 +1613,7 @@ clear_bit(HISI_SAS_REJECT_CMD_BIT, &hisi_hba->flags); up(&hisi_hba->sem); scsi_unblock_requests(shost); - clear_bit(HISI_SAS_RESET_BIT, &hisi_hba->flags); + clear_bit(HISI_SAS_RESETTING_BIT, &hisi_hba->flags); return rc; } @@ -2251,7 +2253,7 @@ } else { struct hisi_sas_port *port = phy->port; - if (test_bit(HISI_SAS_RESET_BIT, &hisi_hba->flags) || + if (test_bit(HISI_SAS_RESETTING_BIT, &hisi_hba->flags) || phy->in_reset) { dev_info(dev, "ignore flutter phy%d down\n", phy_no); return; diff -u linux-xilinx-zynqmp-5.15.0/drivers/scsi/hisi_sas/hisi_sas_v2_hw.c linux-xilinx-zynqmp-5.15.0/drivers/scsi/hisi_sas/hisi_sas_v2_hw.c --- linux-xilinx-zynqmp-5.15.0/drivers/scsi/hisi_sas/hisi_sas_v2_hw.c +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/hisi_sas/hisi_sas_v2_hw.c @@ -2831,7 +2831,7 @@ hisi_sas_phy_write32(hisi_hba, phy_no, SL_RX_BCAST_CHK_MSK, 1); bcast_status = hisi_sas_phy_read32(hisi_hba, phy_no, RX_PRIMS_STATUS); if ((bcast_status & RX_BCAST_CHG_MSK) && - !test_bit(HISI_SAS_RESET_BIT, &hisi_hba->flags)) + !test_bit(HISI_SAS_RESETTING_BIT, &hisi_hba->flags)) sas_notify_port_event(sas_phy, PORTE_BROADCAST_RCVD, GFP_ATOMIC); hisi_sas_phy_write32(hisi_hba, phy_no, CHL_INT0, diff -u linux-xilinx-zynqmp-5.15.0/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c linux-xilinx-zynqmp-5.15.0/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c --- linux-xilinx-zynqmp-5.15.0/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c @@ -1622,7 +1622,7 @@ hisi_sas_phy_write32(hisi_hba, phy_no, SL_RX_BCAST_CHK_MSK, 1); bcast_status = hisi_sas_phy_read32(hisi_hba, phy_no, RX_PRIMS_STATUS); if ((bcast_status & RX_BCAST_CHG_MSK) && - !test_bit(HISI_SAS_RESET_BIT, &hisi_hba->flags)) + !test_bit(HISI_SAS_RESETTING_BIT, &hisi_hba->flags)) sas_notify_port_event(sas_phy, PORTE_BROADCAST_RCVD, GFP_ATOMIC); hisi_sas_phy_write32(hisi_hba, phy_no, CHL_INT0, @@ -3331,7 +3331,7 @@ u32 *databuf = hisi_hba->debugfs_regs[dump_index][DEBUGFS_GLOBAL].data; int i; - for (i = 0; i < debugfs_axi_reg.count; i++, databuf++) + for (i = 0; i < debugfs_global_reg.count; i++, databuf++) *databuf = hisi_sas_read32(hisi_hba, 4 * i); } @@ -4718,6 +4718,12 @@ 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; @@ -4741,18 +4747,13 @@ 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) { @@ -4934,7 +4935,8 @@ int rc; dev_info(dev, "FLR prepare\n"); - set_bit(HISI_SAS_RESET_BIT, &hisi_hba->flags); + down(&hisi_hba->sem); + set_bit(HISI_SAS_RESETTING_BIT, &hisi_hba->flags); hisi_sas_controller_reset_prepare(hisi_hba); rc = disable_host_v3_hw(hisi_hba); @@ -4946,6 +4948,7 @@ { struct sas_ha_struct *sha = pci_get_drvdata(pdev); struct hisi_hba *hisi_hba = sha->lldd_ha; + struct Scsi_Host *shost = hisi_hba->shost; struct device *dev = hisi_hba->dev; int rc; @@ -4954,6 +4957,10 @@ rc = hw_init_v3_hw(hisi_hba); if (rc) { dev_err(dev, "FLR: hw init failed rc=%d\n", rc); + clear_bit(HISI_SAS_REJECT_CMD_BIT, &hisi_hba->flags); + scsi_unblock_requests(shost); + clear_bit(HISI_SAS_RESETTING_BIT, &hisi_hba->flags); + up(&hisi_hba->sem); return; } @@ -4980,8 +4987,8 @@ return -ENODEV; } - if (test_and_set_bit(HISI_SAS_RESET_BIT, &hisi_hba->flags)) - return -1; + if (test_and_set_bit(HISI_SAS_RESETTING_BIT, &hisi_hba->flags)) + return -EPERM; scsi_block_requests(shost); set_bit(HISI_SAS_REJECT_CMD_BIT, &hisi_hba->flags); @@ -4991,7 +4998,7 @@ if (rc) { dev_err(dev, "PM suspend: disable host failed rc=%d\n", rc); clear_bit(HISI_SAS_REJECT_CMD_BIT, &hisi_hba->flags); - clear_bit(HISI_SAS_RESET_BIT, &hisi_hba->flags); + clear_bit(HISI_SAS_RESETTING_BIT, &hisi_hba->flags); scsi_unblock_requests(shost); return rc; } @@ -5030,7 +5037,7 @@ } phys_init_v3_hw(hisi_hba); sas_resume_ha(sha); - clear_bit(HISI_SAS_RESET_BIT, &hisi_hba->flags); + clear_bit(HISI_SAS_RESETTING_BIT, &hisi_hba->flags); return 0; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/scsi/ibmvscsi/ibmvfc.c linux-xilinx-zynqmp-5.15.0/drivers/scsi/ibmvscsi/ibmvfc.c --- linux-xilinx-zynqmp-5.15.0/drivers/scsi/ibmvscsi/ibmvfc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/ibmvscsi/ibmvfc.c @@ -22,7 +22,6 @@ #include #include #include -#include #include #include #include @@ -1519,7 +1518,11 @@ 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 @@ 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 @@ 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 @@ 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 @@ } 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ { 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 @@ 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 @@ { 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 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/scsi/lpfc/lpfc.h linux-xilinx-zynqmp-5.15.0/drivers/scsi/lpfc/lpfc.h --- linux-xilinx-zynqmp-5.15.0/drivers/scsi/lpfc/lpfc.h +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/lpfc/lpfc.h @@ -32,6 +32,7 @@ struct lpfc_sli2_slim; #define ELX_MODEL_NAME_SIZE 80 +#define ELX_FW_NAME_SIZE 84 #define LPFC_PCI_DEV_LP 0x1 #define LPFC_PCI_DEV_OC 0x2 diff -u linux-xilinx-zynqmp-5.15.0/drivers/scsi/lpfc/lpfc_hbadisc.c linux-xilinx-zynqmp-5.15.0/drivers/scsi/lpfc/lpfc_hbadisc.c --- linux-xilinx-zynqmp-5.15.0/drivers/scsi/lpfc/lpfc_hbadisc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/lpfc/lpfc_hbadisc.c @@ -6967,7 +6967,9 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/scsi/lpfc/lpfc_init.c linux-xilinx-zynqmp-5.15.0/drivers/scsi/lpfc/lpfc_init.c --- linux-xilinx-zynqmp-5.15.0/drivers/scsi/lpfc/lpfc_init.c +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/lpfc/lpfc_init.c @@ -14573,7 +14573,7 @@ int lpfc_sli4_request_firmware_update(struct lpfc_hba *phba, uint8_t fw_upgrade) { - uint8_t file_name[ELX_MODEL_NAME_SIZE]; + char file_name[ELX_FW_NAME_SIZE] = {0}; int ret; const struct firmware *fw; @@ -14582,7 +14582,7 @@ LPFC_SLI_INTF_IF_TYPE_2) return -EPERM; - snprintf(file_name, ELX_MODEL_NAME_SIZE, "%s.grp", phba->ModelName); + scnprintf(file_name, sizeof(file_name), "%s.grp", phba->ModelName); if (fw_upgrade == INT_FW_UPGRADE) { ret = request_firmware_nowait(THIS_MODULE, FW_ACTION_UEVENT, diff -u linux-xilinx-zynqmp-5.15.0/drivers/scsi/megaraid/megaraid_sas_base.c linux-xilinx-zynqmp-5.15.0/drivers/scsi/megaraid/megaraid_sas_base.c --- linux-xilinx-zynqmp-5.15.0/drivers/scsi/megaraid/megaraid_sas_base.c +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/megaraid/megaraid_sas_base.c @@ -263,13 +263,13 @@ * 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); diff -u linux-xilinx-zynqmp-5.15.0/drivers/scsi/mpi3mr/mpi3mr_os.c linux-xilinx-zynqmp-5.15.0/drivers/scsi/mpi3mr/mpi3mr_os.c --- linux-xilinx-zynqmp-5.15.0/drivers/scsi/mpi3mr/mpi3mr_os.c +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/mpi3mr/mpi3mr_os.c @@ -924,8 +924,14 @@ tgtdev = NULL; list_for_each_entry(tgtdev, &mrioc->tgtdev_list, list) { if ((tgtdev->dev_handle != MPI3MR_INVALID_DEV_HANDLE) && - !tgtdev->is_hidden && !tgtdev->host_exposed) - mpi3mr_report_tgtdev_to_host(mrioc, tgtdev->perst_id); + !tgtdev->is_hidden) { + if (!tgtdev->host_exposed) + mpi3mr_report_tgtdev_to_host(mrioc, + tgtdev->perst_id); + else if (tgtdev->starget) + starget_for_each_device(tgtdev->starget, + (void *)tgtdev, mpi3mr_update_sdev); + } } } diff -u linux-xilinx-zynqmp-5.15.0/drivers/scsi/mpt3sas/mpt3sas_base.c linux-xilinx-zynqmp-5.15.0/drivers/scsi/mpt3sas/mpt3sas_base.c --- linux-xilinx-zynqmp-5.15.0/drivers/scsi/mpt3sas/mpt3sas_base.c +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/mpt3sas/mpt3sas_base.c @@ -224,8 +224,8 @@ for (i = 0 ; i < 30 ; i++) { ret_val = readl(addr); - if (ret_val == 0) - continue; + if (ret_val != 0) + break; } return ret_val; diff -u linux-xilinx-zynqmp-5.15.0/drivers/scsi/mpt3sas/mpt3sas_scsih.c linux-xilinx-zynqmp-5.15.0/drivers/scsi/mpt3sas/mpt3sas_scsih.c --- linux-xilinx-zynqmp-5.15.0/drivers/scsi/mpt3sas/mpt3sas_scsih.c +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/mpt3sas/mpt3sas_scsih.c @@ -12899,8 +12899,10 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/scsi/qla2xxx/qla_os.c linux-xilinx-zynqmp-5.15.0/drivers/scsi/qla2xxx/qla_os.c --- linux-xilinx-zynqmp-5.15.0/drivers/scsi/qla2xxx/qla_os.c +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/qla2xxx/qla_os.c @@ -1823,8 +1823,16 @@ } 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); } diff -u linux-xilinx-zynqmp-5.15.0/drivers/scsi/scsi_error.c linux-xilinx-zynqmp-5.15.0/drivers/scsi/scsi_error.c --- linux-xilinx-zynqmp-5.15.0/drivers/scsi/scsi_error.c +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/scsi_error.c @@ -61,11 +61,11 @@ static enum scsi_disposition scsi_try_to_abort_cmd(struct scsi_host_template *, struct scsi_cmnd *); -void scsi_eh_wakeup(struct Scsi_Host *shost) +void scsi_eh_wakeup(struct Scsi_Host *shost, unsigned int busy) { lockdep_assert_held(shost->host_lock); - if (scsi_host_busy(shost) == shost->host_failed) { + if (busy == shost->host_failed) { trace_scsi_eh_wakeup(shost); wake_up_process(shost->ehandler); SCSI_LOG_ERROR_RECOVERY(5, shost_printk(KERN_INFO, shost, @@ -88,7 +88,7 @@ if (scsi_host_set_state(shost, SHOST_RECOVERY) == 0 || scsi_host_set_state(shost, SHOST_CANCEL_RECOVERY) == 0) { shost->host_eh_scheduled++; - scsi_eh_wakeup(shost); + scsi_eh_wakeup(shost, scsi_host_busy(shost)); } spin_unlock_irqrestore(shost->host_lock, flags); @@ -276,11 +276,12 @@ { struct scsi_cmnd *scmd = container_of(head, typeof(*scmd), rcu); struct Scsi_Host *shost = scmd->device->host; + unsigned int busy = scsi_host_busy(shost); unsigned long flags; spin_lock_irqsave(shost->host_lock, flags); shost->host_failed++; - scsi_eh_wakeup(shost); + scsi_eh_wakeup(shost, busy); spin_unlock_irqrestore(shost->host_lock, flags); } @@ -1104,6 +1105,7 @@ scsi_log_send(scmd); scmd->submitter = SUBMITTED_BY_SCSI_ERROR_HANDLER; + scmd->flags |= SCMD_LAST; /* * Lock sdev->state_mutex to avoid that scsi_device_quiesce() can @@ -2397,6 +2399,7 @@ scmd->cmnd = scsi_req(rq)->cmd; scmd->submitter = SUBMITTED_BY_SCSI_RESET_IOCTL; + scmd->flags |= SCMD_LAST; memset(&scmd->sdb, 0, sizeof(scmd->sdb)); scmd->cmd_len = 0; diff -u linux-xilinx-zynqmp-5.15.0/drivers/scsi/scsi_lib.c linux-xilinx-zynqmp-5.15.0/drivers/scsi/scsi_lib.c --- linux-xilinx-zynqmp-5.15.0/drivers/scsi/scsi_lib.c +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/scsi_lib.c @@ -281,9 +281,11 @@ rcu_read_lock(); __clear_bit(SCMD_STATE_INFLIGHT, &cmd->state); if (unlikely(scsi_host_in_recovery(shost))) { + unsigned int busy = scsi_host_busy(shost); + spin_lock_irqsave(shost->host_lock, flags); if (shost->host_failed || shost->host_eh_scheduled) - scsi_eh_wakeup(shost); + scsi_eh_wakeup(shost, busy); spin_unlock_irqrestore(shost->host_lock, flags); } rcu_read_unlock(); diff -u linux-xilinx-zynqmp-5.15.0/drivers/scsi/scsi_priv.h linux-xilinx-zynqmp-5.15.0/drivers/scsi/scsi_priv.h --- linux-xilinx-zynqmp-5.15.0/drivers/scsi/scsi_priv.h +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/scsi_priv.h @@ -76,7 +76,7 @@ extern enum blk_eh_timer_return scsi_times_out(struct request *req); extern int scsi_error_handler(void *host); extern enum scsi_disposition scsi_decide_disposition(struct scsi_cmnd *cmd); -extern void scsi_eh_wakeup(struct Scsi_Host *shost); +extern void scsi_eh_wakeup(struct Scsi_Host *shost, unsigned int busy); extern void scsi_eh_scmd_add(struct scsi_cmnd *); void scsi_eh_ready_devs(struct Scsi_Host *shost, struct list_head *work_q, diff -u linux-xilinx-zynqmp-5.15.0/drivers/scsi/storvsc_drv.c linux-xilinx-zynqmp-5.15.0/drivers/scsi/storvsc_drv.c --- linux-xilinx-zynqmp-5.15.0/drivers/scsi/storvsc_drv.c +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/storvsc_drv.c @@ -367,6 +367,7 @@ */ static int storvsc_ringbuffer_size = (128 * 1024); +static int aligned_ringbuffer_size; static u32 max_outstanding_req_per_channel; static int storvsc_change_queue_depth(struct scsi_device *sdev, int queue_depth); @@ -737,8 +738,8 @@ new_sc->next_request_id_callback = storvsc_next_request_id; ret = vmbus_open(new_sc, - storvsc_ringbuffer_size, - storvsc_ringbuffer_size, + aligned_ringbuffer_size, + aligned_ringbuffer_size, (void *)&props, sizeof(struct vmstorage_channel_properties), storvsc_on_channel_callback, new_sc); @@ -2033,7 +2034,7 @@ hv_set_drvdata(device, stor_device); stor_device->port_number = host->host_no; - ret = storvsc_connect_to_vsp(device, storvsc_ringbuffer_size, is_fc); + ret = storvsc_connect_to_vsp(device, aligned_ringbuffer_size, is_fc); if (ret) goto err_out1; @@ -2226,7 +2227,7 @@ { int ret; - ret = storvsc_connect_to_vsp(hv_dev, storvsc_ringbuffer_size, + ret = storvsc_connect_to_vsp(hv_dev, aligned_ringbuffer_size, hv_dev_is_fc(hv_dev)); return ret; } @@ -2264,8 +2265,9 @@ * for Win7 and older hosts because it does not take into account * the vmscsi_size_delta correction to the max request size. */ + aligned_ringbuffer_size = VMBUS_RING_SIZE(storvsc_ringbuffer_size); max_outstanding_req_per_channel = - ((storvsc_ringbuffer_size - PAGE_SIZE) / + ((aligned_ringbuffer_size - PAGE_SIZE) / ALIGN(MAX_MULTIPAGE_BUFFER_PACKET + sizeof(struct vstor_packet) + sizeof(u64), sizeof(u64))); diff -u linux-xilinx-zynqmp-5.15.0/drivers/scsi/ufs/ufshcd.c linux-xilinx-zynqmp-5.15.0/drivers/scsi/ufs/ufshcd.c --- linux-xilinx-zynqmp-5.15.0/drivers/scsi/ufs/ufshcd.c +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/ufs/ufshcd.c @@ -3465,7 +3465,7 @@ */ 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++) @@ -7896,7 +7896,6 @@ ufs_bsg_probe(hba); ufshpb_init(hba); scsi_scan_host(hba->host); - pm_runtime_put_sync(hba->dev); out: return ret; @@ -8018,15 +8017,12 @@ /* Probe and add UFS logical units */ ret = ufshcd_add_lus(hba); + out: - /* - * If we failed to initialize the device or the device is not - * present, turn off the power/clocks etc. - */ - if (ret) { - pm_runtime_put_sync(hba->dev); - ufshcd_hba_exit(hba); - } + pm_runtime_put_sync(hba->dev); + + if (ret) + dev_err(hba->dev, "%s failed: %d\n", __func__, ret); } static const struct attribute_group *ufshcd_driver_groups[] = { diff -u linux-xilinx-zynqmp-5.15.0/drivers/soc/qcom/llcc-qcom.c linux-xilinx-zynqmp-5.15.0/drivers/soc/qcom/llcc-qcom.c --- linux-xilinx-zynqmp-5.15.0/drivers/soc/qcom/llcc-qcom.c +++ linux-xilinx-zynqmp-5.15.0/drivers/soc/qcom/llcc-qcom.c @@ -450,14 +450,14 @@ u32 disable_cap_alloc, retain_pc; disable_cap_alloc = config->dis_cap_alloc << config->slice_id; - ret = regmap_write(drv_data->bcast_regmap, - LLCC_TRP_SCID_DIS_CAP_ALLOC, disable_cap_alloc); + ret = regmap_update_bits(drv_data->bcast_regmap, LLCC_TRP_SCID_DIS_CAP_ALLOC, + BIT(config->slice_id), disable_cap_alloc); if (ret) return ret; retain_pc = config->retain_on_pc << config->slice_id; - ret = regmap_write(drv_data->bcast_regmap, - LLCC_TRP_PCB_ACT, retain_pc); + ret = regmap_update_bits(drv_data->bcast_regmap, LLCC_TRP_PCB_ACT, + BIT(config->slice_id), retain_pc); if (ret) return ret; } @@ -537,6 +537,9 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/soundwire/stream.c linux-xilinx-zynqmp-5.15.0/drivers/soundwire/stream.c --- linux-xilinx-zynqmp-5.15.0/drivers/soundwire/stream.c +++ linux-xilinx-zynqmp-5.15.0/drivers/soundwire/stream.c @@ -744,14 +744,15 @@ * sdw_ml_sync_bank_switch: Multilink register bank switch * * @bus: SDW bus instance + * @multi_link: whether this is a multi-link stream with hardware-based sync * * Caller function should free the buffers on error */ -static int sdw_ml_sync_bank_switch(struct sdw_bus *bus) +static int sdw_ml_sync_bank_switch(struct sdw_bus *bus, bool multi_link) { unsigned long time_left; - if (!bus->multi_link) + if (!multi_link) return 0; /* Wait for completion of transfer */ @@ -847,7 +848,7 @@ bus->bank_switch_timeout = DEFAULT_BANK_SWITCH_TIMEOUT; /* Check if bank switch was successful */ - ret = sdw_ml_sync_bank_switch(bus); + ret = sdw_ml_sync_bank_switch(bus, multi_link); if (ret < 0) { dev_err(bus->dev, "multi link bank switch failed: %d\n", ret); diff -u linux-xilinx-zynqmp-5.15.0/drivers/spi/spi-bcm-qspi.c linux-xilinx-zynqmp-5.15.0/drivers/spi/spi-bcm-qspi.c --- linux-xilinx-zynqmp-5.15.0/drivers/spi/spi-bcm-qspi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/spi/spi-bcm-qspi.c @@ -19,7 +19,7 @@ #include #include #include -#include +#include #include #include #include "spi-bcm-qspi.h" @@ -1049,7 +1049,7 @@ /* non-aligned and very short transfers are handled by MSPI */ if (!IS_ALIGNED((uintptr_t)addr, 4) || !IS_ALIGNED((uintptr_t)buf, 4) || - len < 4) + len < 4 || op->cmd.opcode == SPINOR_OP_RDSFDP) mspi_read = true; if (!has_bspi(qspi) || mspi_read) diff -u linux-xilinx-zynqmp-5.15.0/drivers/spi/spi-nxp-fspi.c linux-xilinx-zynqmp-5.15.0/drivers/spi/spi-nxp-fspi.c --- linux-xilinx-zynqmp-5.15.0/drivers/spi/spi-nxp-fspi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/spi/spi-nxp-fspi.c @@ -708,7 +708,7 @@ 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) { diff -u linux-xilinx-zynqmp-5.15.0/drivers/spi/spi-tegra20-slink.c linux-xilinx-zynqmp-5.15.0/drivers/spi/spi-tegra20-slink.c --- linux-xilinx-zynqmp-5.15.0/drivers/spi/spi-tegra20-slink.c +++ linux-xilinx-zynqmp-5.15.0/drivers/spi/spi-tegra20-slink.c @@ -1087,6 +1087,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/spi/spi.c linux-xilinx-zynqmp-5.15.0/drivers/spi/spi.c --- linux-xilinx-zynqmp-5.15.0/drivers/spi/spi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/spi/spi.c @@ -335,6 +335,18 @@ } EXPORT_SYMBOL_GPL(spi_get_device_id); +const void *spi_get_device_match_data(const struct spi_device *sdev) +{ + const void *match; + + match = device_get_match_data(&sdev->dev); + if (match) + return match; + + return (const void *)spi_get_device_id(sdev)->driver_data; +} +EXPORT_SYMBOL_GPL(spi_get_device_match_data); + static int spi_match_device(struct device *dev, struct device_driver *drv) { const struct spi_device *spi = to_spi_device(dev); diff -u linux-xilinx-zynqmp-5.15.0/drivers/staging/fbtft/fbtft-core.c linux-xilinx-zynqmp-5.15.0/drivers/staging/fbtft/fbtft-core.c --- linux-xilinx-zynqmp-5.15.0/drivers/staging/fbtft/fbtft-core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/staging/fbtft/fbtft-core.c @@ -322,11 +322,11 @@ schedule_delayed_work(&info->deferred_work, fbdefio->delay); } -static void fbtft_deferred_io(struct fb_info *info, struct list_head *pagelist) +static void fbtft_deferred_io(struct fb_info *info, struct list_head *pagereflist) { struct fbtft_par *par = info->par; unsigned int dirty_lines_start, dirty_lines_end; - struct page *page; + struct fb_deferred_io_pageref *pageref; unsigned long index; unsigned int y_low = 0, y_high = 0; int count = 0; @@ -340,7 +340,8 @@ spin_unlock(&par->dirty_lock); /* Mark display lines as dirty */ - list_for_each_entry(page, pagelist, lru) { + list_for_each_entry(pageref, pagereflist, list) { + struct page *page = pageref->page; count++; index = page->index << PAGE_SHIFT; y_low = index / info->fix.line_length; @@ -653,9 +654,9 @@ fbops->fb_setcolreg = fbtft_fb_setcolreg; fbops->fb_blank = fbtft_fb_blank; - fbdefio->delay = HZ / fps; - fbdefio->deferred_io = fbtft_deferred_io; - fb_deferred_io_init(info); + fbdefio->delay = HZ / fps; + fbdefio->sort_pagereflist = true; + fbdefio->deferred_io = fbtft_deferred_io; snprintf(info->fix.id, sizeof(info->fix.id), "%s", dev->driver->name); info->fix.type = FB_TYPE_PACKED_PIXELS; @@ -666,6 +667,7 @@ info->fix.line_length = width * bpp / 8; info->fix.accel = FB_ACCEL_NONE; info->fix.smem_len = vmem_size; + fb_deferred_io_init(info); info->var.rotate = pdata->rotate; info->var.xres = width; diff -u linux-xilinx-zynqmp-5.15.0/drivers/staging/gdm724x/gdm_lte.c linux-xilinx-zynqmp-5.15.0/drivers/staging/gdm724x/gdm_lte.c --- linux-xilinx-zynqmp-5.15.0/drivers/staging/gdm724x/gdm_lte.c +++ linux-xilinx-zynqmp-5.15.0/drivers/staging/gdm724x/gdm_lte.c @@ -350,7 +350,7 @@ /* Get ethernet protocol */ eth = (struct ethhdr *)skb->data; if (ntohs(eth->h_proto) == ETH_P_8021Q) { - vlan_eth = (struct vlan_ethhdr *)skb->data; + vlan_eth = skb_vlan_eth_hdr(skb); mac_proto = ntohs(vlan_eth->h_vlan_encapsulated_proto); network_data = skb->data + VLAN_ETH_HLEN; nic_type |= NIC_TYPE_F_VLAN; @@ -436,7 +436,7 @@ * driver based on the NIC mac */ if (nic_type & NIC_TYPE_F_VLAN) { - struct vlan_ethhdr *vlan_eth = (struct vlan_ethhdr *)skb->data; + struct vlan_ethhdr *vlan_eth = skb_vlan_eth_hdr(skb); nic->vlan_id = ntohs(vlan_eth->h_vlan_TCI) & VLAN_VID_MASK; data_buf = skb->data + (VLAN_ETH_HLEN - ETH_HLEN); diff -u linux-xilinx-zynqmp-5.15.0/drivers/tee/optee/device.c linux-xilinx-zynqmp-5.15.0/drivers/tee/optee/device.c --- linux-xilinx-zynqmp-5.15.0/drivers/tee/optee/device.c +++ linux-xilinx-zynqmp-5.15.0/drivers/tee/optee/device.c @@ -60,7 +60,16 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/thermal/thermal_core.c linux-xilinx-zynqmp-5.15.0/drivers/thermal/thermal_core.c --- linux-xilinx-zynqmp-5.15.0/drivers/thermal/thermal_core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/thermal/thermal_core.c @@ -671,7 +671,8 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/tty/hvc/hvc_xen.c linux-xilinx-zynqmp-5.15.0/drivers/tty/hvc/hvc_xen.c --- linux-xilinx-zynqmp-5.15.0/drivers/tty/hvc/hvc_xen.c +++ linux-xilinx-zynqmp-5.15.0/drivers/tty/hvc/hvc_xen.c @@ -377,18 +377,21 @@ #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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/tty/n_gsm.c linux-xilinx-zynqmp-5.15.0/drivers/tty/n_gsm.c --- linux-xilinx-zynqmp-5.15.0/drivers/tty/n_gsm.c +++ linux-xilinx-zynqmp-5.15.0/drivers/tty/n_gsm.c @@ -3273,6 +3273,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/8250/8250_exar.c linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/8250/8250_exar.c --- linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/8250/8250_exar.c +++ linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/8250/8250_exar.c @@ -123,6 +123,7 @@ struct exar8250_platform { int (*rs485_config)(struct uart_port *, struct serial_rs485 *); + const struct serial_rs485 *rs485_supported; int (*register_gpio)(struct pci_dev *, struct uart_8250_port *); void (*unregister_gpio)(struct uart_8250_port *); }; @@ -441,10 +442,15 @@ return 0; } +static const struct serial_rs485 generic_rs485_supported = { + .flags = SER_RS485_ENABLED | SER_RS485_RTS_ON_SEND, +}; + static const struct exar8250_platform exar8250_default_platform = { .register_gpio = xr17v35x_register_gpio, .unregister_gpio = xr17v35x_unregister_gpio, .rs485_config = generic_rs485_config, + .rs485_supported = &generic_rs485_supported, }; static int iot2040_rs485_config(struct uart_port *port, @@ -480,6 +486,11 @@ return generic_rs485_config(port, rs485); } +static const struct serial_rs485 iot2040_rs485_supported = { + .flags = SER_RS485_ENABLED | SER_RS485_RTS_ON_SEND | + SER_RS485_RX_DURING_TX | SER_RS485_TERMINATE_BUS, +}; + static const struct property_entry iot2040_gpio_properties[] = { PROPERTY_ENTRY_U32("exar,first-pin", 10), PROPERTY_ENTRY_U32("ngpios", 1), @@ -508,6 +519,7 @@ static const struct exar8250_platform iot2040_platform = { .rs485_config = iot2040_rs485_config, + .rs485_supported = &iot2040_rs485_supported, .register_gpio = iot2040_register_gpio, .unregister_gpio = xr17v35x_unregister_gpio, }; @@ -550,6 +562,7 @@ port->port.uartclk = baud * 16; port->port.rs485_config = platform->rs485_config; + port->port.rs485_supported = platform->rs485_supported; /* * Setup the UART clock for the devices on expansion slot to diff -u linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/8250/8250_omap.c linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/8250/8250_omap.c --- linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/8250/8250_omap.c +++ linux-xilinx-zynqmp-5.15.0/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 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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; @@ -1485,13 +1492,14 @@ err = pm_runtime_resume_and_get(&pdev->dev); if (err) - return err; + dev_err(&pdev->dev, "Failed to resume hardware\n"); + 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 @@ { 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 @@ 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_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 @@ 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 @@ * 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_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 @@ 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_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 -u linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/8250/8250_pci.c linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/8250/8250_pci.c --- linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/8250/8250_pci.c +++ linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/8250/8250_pci.c @@ -2720,4 +2720,151 @@ .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, @@ -5341,6 +5488,12 @@ 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 */ { PCI_VENDOR_ID_INTASHIELD, PCI_DEVICE_ID_INTASHIELD_IS200, @@ -5352,6 +5505,27 @@ { 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 @@ 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 @@ 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 @@ /* * 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 @@ /* * 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 @@ 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,13 +5655,95 @@ 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 */ { PCI_VENDOR_ID_INTASHIELD, 0x4005, @@ -5491,7 +5775,7 @@ { 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 */ @@ -5500,6 +5784,13 @@ 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 */ { PCI_VENDOR_ID_INTASHIELD, 0x400E, @@ -5546,16 +5837,38 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/amba-pl011.c linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/amba-pl011.c --- linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/amba-pl011.c +++ linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/amba-pl011.c @@ -222,17 +222,18 @@ /* 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_dmatx_data { struct dma_chan *chan; - struct scatterlist sg; + dma_addr_t dma; + size_t len; char *buf; bool queued; }; @@ -370,32 +372,24 @@ #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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ * 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 @@ /* 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 @@ { 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 @@ 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 @@ 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 @@ * 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ /* 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/imx.c linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/imx.c --- linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/imx.c +++ linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/imx.c @@ -450,13 +450,13 @@ ucr1 = imx_uart_readl(sport, UCR1); imx_uart_writel(sport, ucr1 & ~UCR1_TRDYEN, UCR1); + ucr4 = imx_uart_readl(sport, UCR4); usr2 = imx_uart_readl(sport, USR2); - if (!(usr2 & USR2_TXDC)) { + if ((!(usr2 & USR2_TXDC)) && (ucr4 & UCR4_TCEN)) { /* The shifter is still busy, so retry once TC triggers */ return; } - ucr4 = imx_uart_readl(sport, UCR4); ucr4 &= ~UCR4_TCEN; imx_uart_writel(sport, ucr4, UCR4); @@ -2318,7 +2318,7 @@ /* For register access, we only need to enable the ipg clock. */ ret = clk_prepare_enable(sport->clk_ipg); if (ret) { - dev_err(&pdev->dev, "failed to enable per clk: %d\n", ret); + dev_err(&pdev->dev, "failed to enable ipg clk: %d\n", ret); return ret; } @@ -2330,10 +2330,8 @@ sport->ufcr = readl(sport->port.membase + UFCR); ret = uart_get_rs485_mode(&sport->port); - if (ret) { - clk_disable_unprepare(sport->clk_ipg); - return ret; - } + if (ret) + goto err_clk; if (sport->port.rs485.flags & SER_RS485_ENABLED && (!sport->have_rtscts && !sport->have_rtsgpio)) @@ -2417,8 +2415,6 @@ imx_uart_writel(sport, ucr3, UCR3); } - clk_disable_unprepare(sport->clk_ipg); - hrtimer_init(&sport->trigger_start_tx, CLOCK_MONOTONIC, HRTIMER_MODE_REL); hrtimer_init(&sport->trigger_stop_tx, CLOCK_MONOTONIC, HRTIMER_MODE_REL); sport->trigger_start_tx.function = imx_trigger_start_tx; @@ -2434,7 +2430,7 @@ if (ret) { dev_err(&pdev->dev, "failed to request rx irq: %d\n", ret); - return ret; + goto err_clk; } ret = devm_request_irq(&pdev->dev, txirq, imx_uart_txint, 0, @@ -2442,7 +2438,7 @@ if (ret) { dev_err(&pdev->dev, "failed to request tx irq: %d\n", ret); - return ret; + goto err_clk; } ret = devm_request_irq(&pdev->dev, rtsirq, imx_uart_rtsint, 0, @@ -2450,14 +2446,14 @@ if (ret) { dev_err(&pdev->dev, "failed to request rts irq: %d\n", ret); - return ret; + goto err_clk; } } else { ret = devm_request_irq(&pdev->dev, rxirq, imx_uart_int, 0, dev_name(&pdev->dev), sport); if (ret) { dev_err(&pdev->dev, "failed to request irq: %d\n", ret); - return ret; + goto err_clk; } } @@ -2465,7 +2461,12 @@ platform_set_drvdata(pdev, sport); - return uart_add_one_port(&imx_uart_uart_driver, &sport->port); + ret = uart_add_one_port(&imx_uart_uart_driver, &sport->port); + +err_clk: + clk_disable_unprepare(sport->clk_ipg); + + return ret; } static int imx_uart_remove(struct platform_device *pdev) diff -u linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/meson_uart.c linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/meson_uart.c --- linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/meson_uart.c +++ linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/meson_uart.c @@ -368,10 +368,14 @@ 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(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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/sc16is7xx.c linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/sc16is7xx.c --- linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/sc16is7xx.c +++ linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/sc16is7xx.c @@ -24,6 +24,7 @@ #include #include #include +#include #include #define SC16IS7XX_NAME "sc16is7xx" @@ -694,6 +695,18 @@ 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; @@ -1437,9 +1450,12 @@ /* Setup SPI bus */ spi->bits_per_word = 8; - /* only supports mode 0 on SC16IS762 */ + /* For all variants, only mode 0 is supported */ + if ((spi->mode & SPI_MODE_X_MASK) != SPI_MODE_0) + return dev_err_probe(&spi->dev, -EINVAL, "Unsupported SPI mode\n"); + spi->mode = spi->mode ? : SPI_MODE_0; - spi->max_speed_hz = spi->max_speed_hz ? : 15000000; + spi->max_speed_hz = spi->max_speed_hz ? : 4 * HZ_PER_MHZ; ret = spi_setup(spi); if (ret) return ret; diff -u linux-xilinx-zynqmp-5.15.0/drivers/tty/sysrq.c linux-xilinx-zynqmp-5.15.0/drivers/tty/sysrq.c --- linux-xilinx-zynqmp-5.15.0/drivers/tty/sysrq.c +++ linux-xilinx-zynqmp-5.15.0/drivers/tty/sysrq.c @@ -263,13 +263,14 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/tty/tty.h linux-xilinx-zynqmp-5.15.0/drivers/tty/tty.h --- linux-xilinx-zynqmp-5.15.0/drivers/tty/tty.h +++ linux-xilinx-zynqmp-5.15.0/drivers/tty/tty.h @@ -63,7 +63,7 @@ void __stop_tty(struct tty_struct *tty); void __start_tty(struct tty_struct *tty); void tty_write_unlock(struct tty_struct *tty); -int tty_write_lock(struct tty_struct *tty, int ndelay); +int tty_write_lock(struct tty_struct *tty, bool ndelay); void tty_vhangup_session(struct tty_struct *tty); void tty_open_proc_set_tty(struct file *filp, struct tty_struct *tty); int tty_signal_session_leader(struct tty_struct *tty, int exit_session); diff -u linux-xilinx-zynqmp-5.15.0/drivers/tty/tty_io.c linux-xilinx-zynqmp-5.15.0/drivers/tty/tty_io.c --- linux-xilinx-zynqmp-5.15.0/drivers/tty/tty_io.c +++ linux-xilinx-zynqmp-5.15.0/drivers/tty/tty_io.c @@ -956,7 +956,7 @@ wake_up_interruptible_poll(&tty->write_wait, EPOLLOUT); } -int tty_write_lock(struct tty_struct *tty, int ndelay) +int tty_write_lock(struct tty_struct *tty, bool ndelay) { if (!mutex_trylock(&tty->atomic_write_lock)) { if (ndelay) @@ -1173,7 +1173,7 @@ return 0; } - if (tty_write_lock(tty, 0) < 0) + if (tty_write_lock(tty, false) < 0) return -ERESTARTSYS; down_read(&tty->termios_rwsem); @@ -2504,22 +2504,25 @@ return 0; if (tty->driver->flags & TTY_DRIVER_HARDWARE_BREAK) - retval = tty->ops->break_ctl(tty, duration); - else { - /* Do the work ourselves */ - if (tty_write_lock(tty, 0) < 0) - return -EINTR; - retval = tty->ops->break_ctl(tty, -1); - if (retval) - goto out; - if (!signal_pending(current)) - msleep_interruptible(duration); + return tty->ops->break_ctl(tty, duration); + + /* Do the work ourselves */ + if (tty_write_lock(tty, false) < 0) + return -EINTR; + + retval = tty->ops->break_ctl(tty, -1); + if (!retval) { + msleep_interruptible(duration); retval = tty->ops->break_ctl(tty, 0); -out: - tty_write_unlock(tty); - if (signal_pending(current)) - retval = -EINTR; + } else if (retval == -EOPNOTSUPP) { + /* some drivers can tell only dynamically */ + retval = 0; } + tty_write_unlock(tty); + + if (signal_pending(current)) + retval = -EINTR; + return retval; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/tty/tty_ioctl.c linux-xilinx-zynqmp-5.15.0/drivers/tty/tty_ioctl.c --- linux-xilinx-zynqmp-5.15.0/drivers/tty/tty_ioctl.c +++ linux-xilinx-zynqmp-5.15.0/drivers/tty/tty_ioctl.c @@ -427,7 +427,7 @@ if (retval < 0) return retval; - if (tty_write_lock(tty, 0) < 0) + if (tty_write_lock(tty, false) < 0) goto retry_write_wait; /* Racing writer? */ @@ -786,7 +786,7 @@ ret = -EFAULT; return ret; case TIOCSLCKTRMIOS: - if (!capable(CAP_SYS_ADMIN)) + if (!checkpoint_restore_ns_capable(&init_user_ns)) return -EPERM; copy_termios_locked(real_tty, &kterm); if (user_termios_to_kernel_termios(&kterm, @@ -803,7 +803,7 @@ ret = -EFAULT; return ret; case TIOCSLCKTRMIOS: - if (!capable(CAP_SYS_ADMIN)) + if (!checkpoint_restore_ns_capable(&init_user_ns)) return -EPERM; copy_termios_locked(real_tty, &kterm); if (user_termios_to_kernel_termios_1(&kterm, diff -u linux-xilinx-zynqmp-5.15.0/drivers/uio/uio_core.c linux-xilinx-zynqmp-5.15.0/drivers/uio/uio_core.c --- linux-xilinx-zynqmp-5.15.0/drivers/uio/uio_core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/uio/uio_core.c @@ -472,13 +472,13 @@ mutex_lock(&minor_lock); idev = idr_find(&uio_idr, iminor(inode)); - mutex_unlock(&minor_lock); if (!idev) { ret = -ENODEV; + mutex_unlock(&minor_lock); goto out; } - get_device(&idev->dev); + mutex_unlock(&minor_lock); if (!try_module_get(idev->owner)) { ret = -ENODEV; @@ -1105,9 +1105,8 @@ wake_up_interruptible(&idev->wait); kill_fasync(&idev->async_queue, SIGIO, POLL_HUP); - device_unregister(&idev->dev); - uio_free_minor(minor); + device_unregister(&idev->dev); return; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/usb/cdns3/cdns3-gadget.c linux-xilinx-zynqmp-5.15.0/drivers/usb/cdns3/cdns3-gadget.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/cdns3/cdns3-gadget.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/cdns3/cdns3-gadget.c @@ -1117,6 +1117,8 @@ dma_addr_t trb_dma; u32 togle_pcs = 1; int sg_iter = 0; + int num_trb_req; + int trb_burst; int num_trb; int address; u32 control; @@ -1125,15 +1127,13 @@ struct scatterlist *s = NULL; bool sg_supported = !!(request->num_mapped_sgs); + num_trb_req = sg_supported ? request->num_mapped_sgs : 1; + + /* ISO transfer require each SOF have a TD, each TD include some TRBs */ if (priv_ep->type == USB_ENDPOINT_XFER_ISOC) - num_trb = priv_ep->interval; + num_trb = priv_ep->interval * num_trb_req; else - num_trb = sg_supported ? request->num_mapped_sgs : 1; - - if (num_trb > priv_ep->free_trbs) { - priv_ep->flags |= EP_RING_FULL; - return -ENOBUFS; - } + num_trb = num_trb_req; priv_req = to_cdns3_request(request); address = priv_ep->endpoint.desc->bEndpointAddress; @@ -1182,14 +1182,31 @@ link_trb->control = cpu_to_le32(((priv_ep->pcs) ? TRB_CYCLE : 0) | TRB_TYPE(TRB_LINK) | TRB_TOGGLE | ch_bit); + + if (priv_ep->type == USB_ENDPOINT_XFER_ISOC) { + /* + * ISO require LINK TRB must be first one of TD. + * Fill LINK TRBs for left trb space to simply software process logic. + */ + while (priv_ep->enqueue) { + *trb = *link_trb; + trace_cdns3_prepare_trb(priv_ep, trb); + + cdns3_ep_inc_enq(priv_ep); + trb = priv_ep->trb_pool + priv_ep->enqueue; + priv_req->trb = trb; + } + } + } + + if (num_trb > priv_ep->free_trbs) { + priv_ep->flags |= EP_RING_FULL; + return -ENOBUFS; } if (priv_dev->dev_ver <= DEV_VER_V2) togle_pcs = cdns3_wa1_update_guard(priv_ep, trb); - if (sg_supported) - s = request->sg; - /* set incorrect Cycle Bit for first trb*/ control = priv_ep->pcs ? 0 : TRB_CYCLE; trb->length = 0; @@ -1207,6 +1224,9 @@ do { u32 length; + if (!(sg_iter % num_trb_req) && sg_supported) + s = request->sg; + /* fill TRB */ control |= TRB_TYPE(TRB_NORMAL); if (sg_supported) { @@ -1221,7 +1241,36 @@ total_tdl += DIV_ROUND_UP(length, priv_ep->endpoint.maxpacket); - trb->length |= cpu_to_le32(TRB_BURST_LEN(priv_ep->trb_burst_size) | + trb_burst = priv_ep->trb_burst_size; + + /* + * Supposed DMA cross 4k bounder problem should be fixed at DEV_VER_V2, but still + * met problem when do ISO transfer if sg enabled. + * + * Data pattern likes below when sg enabled, package size is 1k and mult is 2 + * [UVC Header(8B) ] [data(3k - 8)] ... + * + * The received data at offset 0xd000 will get 0xc000 data, len 0x70. Error happen + * as below pattern: + * 0xd000: wrong + * 0xe000: wrong + * 0xf000: correct + * 0x10000: wrong + * 0x11000: wrong + * 0x12000: correct + * ... + * + * But it is still unclear about why error have not happen below 0xd000, it should + * cross 4k bounder. But anyway, the below code can fix this problem. + * + * To avoid DMA cross 4k bounder at ISO transfer, reduce burst len according to 16. + */ + if (priv_ep->type == USB_ENDPOINT_XFER_ISOC && priv_dev->dev_ver <= DEV_VER_V2) + if (ALIGN_DOWN(trb->buffer, SZ_4K) != + ALIGN_DOWN(trb->buffer + length, SZ_4K)) + trb_burst = 16; + + trb->length |= cpu_to_le32(TRB_BURST_LEN(trb_burst) | TRB_LEN(length)); pcs = priv_ep->pcs ? TRB_CYCLE : 0; @@ -1248,7 +1297,7 @@ if (sg_supported) { trb->control |= cpu_to_le32(TRB_ISP); /* Don't set chain bit for last TRB */ - if (sg_iter < num_trb - 1) + if ((sg_iter % num_trb_req) < num_trb_req - 1) trb->control |= cpu_to_le32(TRB_CHAIN); s = sg_next(s); @@ -1506,6 +1555,12 @@ /* The TRB was changed as link TRB, and the request was handled at ep_dequeue */ while (TRB_FIELD_TO_TYPE(le32_to_cpu(trb->control)) == TRB_LINK) { + + /* ISO ep_traddr may stop at LINK TRB */ + if (priv_ep->dequeue == cdns3_get_dma_pos(priv_dev, priv_ep) && + priv_ep->type == USB_ENDPOINT_XFER_ISOC) + break; + trace_cdns3_complete_trb(priv_ep, trb); cdns3_ep_inc_deq(priv_ep); trb = priv_ep->trb_pool + priv_ep->dequeue; @@ -1538,6 +1593,10 @@ } if (request_handled) { + /* TRBs are duplicated by priv_ep->interval time for ISO IN */ + if (priv_ep->type == USB_ENDPOINT_XFER_ISOC && priv_ep->dir) + request->actual /= priv_ep->interval; + cdns3_gadget_giveback(priv_ep, priv_req, 0); request_handled = false; transfer_end = false; @@ -2033,11 +2092,10 @@ bool is_iso_ep = (priv_ep->type == USB_ENDPOINT_XFER_ISOC); struct cdns3_device *priv_dev = priv_ep->cdns3_dev; u32 bEndpointAddress = priv_ep->num | priv_ep->dir; - u32 max_packet_size = 0; - u8 maxburst = 0; + u32 max_packet_size = priv_ep->wMaxPacketSize; + u8 maxburst = priv_ep->bMaxBurst; u32 ep_cfg = 0; u8 buffering; - u8 mult = 0; int ret; buffering = priv_dev->ep_buf_size - 1; @@ -2059,8 +2117,7 @@ break; default: ep_cfg = EP_CFG_EPTYPE(USB_ENDPOINT_XFER_ISOC); - mult = priv_dev->ep_iso_burst - 1; - buffering = mult + 1; + buffering = (priv_ep->bMaxBurst + 1) * (priv_ep->mult + 1) - 1; } switch (priv_dev->gadget.speed) { @@ -2071,17 +2128,8 @@ max_packet_size = is_iso_ep ? 1024 : 512; break; case USB_SPEED_SUPER: - /* It's limitation that driver assumes in driver. */ - mult = 0; - max_packet_size = 1024; - if (priv_ep->type == USB_ENDPOINT_XFER_ISOC) { - maxburst = priv_dev->ep_iso_burst - 1; - buffering = (mult + 1) * - (maxburst + 1); - - if (priv_ep->interval > 1) - buffering++; - } else { + if (priv_ep->type != USB_ENDPOINT_XFER_ISOC) { + max_packet_size = 1024; maxburst = priv_dev->ep_buf_size - 1; } break; @@ -2110,7 +2158,6 @@ if (priv_dev->dev_ver < DEV_VER_V2) priv_ep->trb_burst_size = 16; - mult = min_t(u8, mult, EP_CFG_MULT_MAX); buffering = min_t(u8, buffering, EP_CFG_BUFFERING_MAX); maxburst = min_t(u8, maxburst, EP_CFG_MAXBURST_MAX); @@ -2144,7 +2191,7 @@ } ep_cfg |= EP_CFG_MAXPKTSIZE(max_packet_size) | - EP_CFG_MULT(mult) | + EP_CFG_MULT(priv_ep->mult) | /* must match EP setting */ EP_CFG_BUFFERING(buffering) | EP_CFG_MAXBURST(maxburst); @@ -2234,6 +2281,13 @@ priv_ep->type = usb_endpoint_type(desc); priv_ep->flags |= EP_CLAIMED; priv_ep->interval = desc->bInterval ? BIT(desc->bInterval - 1) : 0; + priv_ep->wMaxPacketSize = usb_endpoint_maxp(desc); + priv_ep->mult = USB_EP_MAXP_MULT(priv_ep->wMaxPacketSize); + priv_ep->wMaxPacketSize &= USB_ENDPOINT_MAXP_MASK; + if (priv_ep->type == USB_ENDPOINT_XFER_ISOC && comp_desc) { + priv_ep->mult = USB_SS_MULT(comp_desc->bmAttributes) - 1; + priv_ep->bMaxBurst = comp_desc->bMaxBurst; + } spin_unlock_irqrestore(&priv_dev->lock, flags); return &priv_ep->endpoint; @@ -3015,22 +3069,40 @@ struct cdns3_endpoint *priv_ep; struct usb_ep *ep; int n_in = 0; + int iso = 0; + int out = 1; int total; + int n; list_for_each_entry(ep, &gadget->ep_list, ep_list) { priv_ep = ep_to_cdns3_ep(ep); - if ((priv_ep->flags & EP_CLAIMED) && (ep->address & USB_DIR_IN)) - n_in++; + if (!(priv_ep->flags & EP_CLAIMED)) + continue; + + n = (priv_ep->mult + 1) * (priv_ep->bMaxBurst + 1); + if (ep->address & USB_DIR_IN) { + /* + * ISO transfer: DMA start move data when get ISO, only transfer + * data as min(TD size, iso). No benefit for allocate bigger + * internal memory than 'iso'. + */ + if (priv_ep->type == USB_ENDPOINT_XFER_ISOC) + iso += n; + else + n_in++; + } else { + if (priv_ep->type == USB_ENDPOINT_XFER_ISOC) + out = max_t(int, out, n); + } } /* 2KB are reserved for EP0, 1KB for out*/ - total = 2 + n_in + 1; + total = 2 + n_in + out + iso; if (total > priv_dev->onchip_buffers) return -ENOMEM; - priv_dev->ep_buf_size = priv_dev->ep_iso_burst = - (priv_dev->onchip_buffers - 2) / (n_in + 1); + priv_dev->ep_buf_size = (priv_dev->onchip_buffers - 2 - iso) / (n_in + out); return 0; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/usb/cdns3/cdns3-gadget.h linux-xilinx-zynqmp-5.15.0/drivers/usb/cdns3/cdns3-gadget.h --- linux-xilinx-zynqmp-5.15.0/drivers/usb/cdns3/cdns3-gadget.h +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/cdns3/cdns3-gadget.h @@ -1168,6 +1168,9 @@ u8 dir; u8 num; u8 type; + u8 mult; + u8 bMaxBurst; + u16 wMaxPacketSize; int interval; int free_trbs; diff -u linux-xilinx-zynqmp-5.15.0/drivers/usb/cdns3/cdnsp-ring.c linux-xilinx-zynqmp-5.15.0/drivers/usb/cdns3/cdnsp-ring.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/cdns3/cdnsp-ring.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/cdns3/cdnsp-ring.c @@ -1522,6 +1522,7 @@ 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 @@ cdnsp_died(pdev); spin_unlock_irqrestore(&pdev->lock, flags); + local_bh_enable(); return IRQ_HANDLED; } @@ -1550,6 +1552,7 @@ cdnsp_update_erst_dequeue(pdev, event_ring_deq, 1); spin_unlock_irqrestore(&pdev->lock, flags); + local_bh_enable(); return IRQ_HANDLED; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/usb/chipidea/core.c linux-xilinx-zynqmp-5.15.0/drivers/usb/chipidea/core.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/chipidea/core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/chipidea/core.c @@ -530,6 +530,13 @@ u32 otgsc = 0; if (ci->in_lpm) { + /* + * If we already have a wakeup irq pending there, + * let's just return to wait resume finished firstly. + */ + if (ci->wakeup_int) + return IRQ_HANDLED; + disable_irq_nosync(irq); ci->wakeup_int = true; pm_runtime_get(ci->dev); diff -u linux-xilinx-zynqmp-5.15.0/drivers/usb/chipidea/host.c linux-xilinx-zynqmp-5.15.0/drivers/usb/chipidea/host.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/chipidea/host.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/chipidea/host.c @@ -30,8 +30,7 @@ }; struct ci_hdrc_dma_aligned_buffer { - void *kmalloc_ptr; - void *old_xfer_buffer; + void *original_buffer; u8 data[]; }; @@ -381,59 +380,52 @@ 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; @@ -450,7 +442,7 @@ 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; } @@ -458,7 +450,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/usb/class/cdc-acm.c linux-xilinx-zynqmp-5.15.0/drivers/usb/class/cdc-acm.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/class/cdc-acm.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/class/cdc-acm.c @@ -896,6 +896,9 @@ struct acm *acm = tty->driver_data; int retval; + if (!(acm->ctrl_caps & USB_CDC_CAP_BRK)) + return -EOPNOTSUPP; + retval = acm_send_break(acm, state ? 0xffff : 0); if (retval < 0) dev_dbg(&acm->control->dev, diff -u linux-xilinx-zynqmp-5.15.0/drivers/usb/core/config.c linux-xilinx-zynqmp-5.15.0/drivers/usb/core/config.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/core/config.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/core/config.c @@ -61,7 +61,7 @@ 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 @@ 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 @@ /* 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 @@ 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 @@ 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 @@ } 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 @@ 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 @@ 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 @@ 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 @@ /* 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 @@ /* 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 @@ } } 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 @@ * 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 @@ */ 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 @@ 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 @@ */ 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 @@ 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 @@ 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 @@ } 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 @@ 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 @@ 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 @@ (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 @@ 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 @@ 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 @@ 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 @@ } 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 @@ 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 @@ } 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 @@ 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 @@ 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 @@ 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 @@ 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 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 @@ "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 @@ 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 @@ /* 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 @@ 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 @@ } 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 @@ break; } +skip_to_next_descriptor: total_len -= length; buffer += length; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/usb/core/hub.c linux-xilinx-zynqmp-5.15.0/drivers/usb/core/hub.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/core/hub.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/core/hub.c @@ -46,8 +46,8 @@ #define USB_VENDOR_TEXAS_INSTRUMENTS 0x0451 #define USB_PRODUCT_TUSB8041_USB3 0x8140 #define USB_PRODUCT_TUSB8041_USB2 0x8142 -#define HUB_QUIRK_CHECK_PORT_AUTOSUSPEND 0x01 -#define HUB_QUIRK_DISABLE_AUTOSUSPEND 0x02 +#define HUB_QUIRK_CHECK_PORT_AUTOSUSPEND BIT(0) +#define HUB_QUIRK_DISABLE_AUTOSUSPEND BIT(1) #define USB_TP_TRANSMISSION_DELAY 40 /* ns */ #define USB_TP_TRANSMISSION_DELAY_MAX 65535 /* ns */ @@ -2368,17 +2368,25 @@ } } else if (desc->bLength == sizeof (struct usb_otg_descriptor)) { - /* Set a_alt_hnp_support for legacy otg device */ - err = usb_control_msg(udev, - usb_sndctrlpipe(udev, 0), - USB_REQ_SET_FEATURE, 0, - USB_DEVICE_A_ALT_HNP_SUPPORT, - 0, NULL, 0, - USB_CTRL_SET_TIMEOUT); - if (err < 0) - dev_err(&udev->dev, - "set a_alt_hnp_support failed: %d\n", - err); + /* + * We are operating on a legacy OTP device + * These should be told that they are operating + * on the wrong port if we have another port that does + * support HNP + */ + if (bus->otg_port != 0) { + /* Set a_alt_hnp_support for legacy otg device */ + err = usb_control_msg(udev, + usb_sndctrlpipe(udev, 0), + USB_REQ_SET_FEATURE, 0, + USB_DEVICE_A_ALT_HNP_SUPPORT, + 0, NULL, 0, + USB_CTRL_SET_TIMEOUT); + if (err < 0) + dev_err(&udev->dev, + "set a_alt_hnp_support failed: %d\n", + err); + } } } #endif diff -u linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc2/hcd.c linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc2/hcd.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc2/hcd.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc2/hcd.c @@ -4802,8 +4802,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/core.c linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/core.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/core.c @@ -265,50 +265,13 @@ /* * We're resetting only the device side because, if we're in host mode, * 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. + * host-only mode, then we can return early. * When hibernated don't perform core soft reset. */ if (dwc->current_dr_role == DWC3_GCTL_PRTCAP_HOST || dwc->is_hibernated == true) 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; @@ -1808,6 +1771,8 @@ pm_runtime_put(dev); + dma_set_max_seg_size(dev, UINT_MAX); + return 0; err5: diff -u linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/core.h linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/core.h --- linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/core.h +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/core.h @@ -738,6 +738,7 @@ #define DWC3_EP_FIRST_STREAM_PRIMED BIT(10) #define DWC3_EP_PENDING_CLEAR_STALL BIT(11) #define DWC3_EP_TXFIFO_RESIZED BIT(12) +#define DWC3_EP_DELAY_STOP BIT(13) /* This last one is specific to EP0 */ #define DWC3_EP0_DIR_IN BIT(31) diff -u linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/drd.c linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/drd.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/drd.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/drd.c @@ -545,6 +545,7 @@ 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 @@ if (IS_ERR(dwc->role_sw)) return PTR_ERR(dwc->role_sw); - dwc3_set_mode(dwc, mode); return 0; } #else diff -u linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/dwc3-qcom.c linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/dwc3-qcom.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/dwc3-qcom.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/dwc3-qcom.c @@ -492,7 +492,7 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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; + +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; - return acpi_create_platform_device(adev, NULL); + platform_device_unregister(urs_usb); + fwnode_handle_put(fwh); } static int dwc3_qcom_probe(struct platform_device *pdev) @@ -811,13 +835,13 @@ 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 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/ep0.c linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/ep0.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/ep0.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/ep0.c @@ -218,7 +218,7 @@ return ret; } -static void dwc3_ep0_stall_and_restart(struct dwc3 *dwc) +void dwc3_ep0_stall_and_restart(struct dwc3 *dwc) { struct dwc3_ep *dep; @@ -236,7 +236,10 @@ struct dwc3_request *req; req = next_request(&dep->pending_list); - dwc3_gadget_giveback(dep, req, -ECONNRESET); + if (!dwc->connected) + dwc3_gadget_giveback(dep, req, -ESHUTDOWN); + else + dwc3_gadget_giveback(dep, req, -ECONNRESET); } dwc->ep0state = EP0_SETUP_PHASE; @@ -271,6 +274,7 @@ { struct dwc3_ep *dep; int ret; + int i; complete(&dwc->ep0_in_setup); @@ -279,6 +283,19 @@ DWC3_TRBCTL_CONTROL_SETUP, false); ret = dwc3_ep0_start_trans(dep); WARN_ON(ret < 0); + for (i = 2; i < DWC3_ENDPOINTS_NUM; i++) { + struct dwc3_ep *dwc3_ep; + + dwc3_ep = dwc->eps[i]; + if (!dwc3_ep) + continue; + + if (!(dwc3_ep->flags & DWC3_EP_DELAY_STOP)) + continue; + + dwc3_ep->flags &= ~DWC3_EP_DELAY_STOP; + dwc3_stop_active_transfer(dwc3_ep, true, true); + } } static struct dwc3_ep *dwc3_wIndex_to_dep(struct dwc3 *dwc, __le16 wIndex_le) @@ -840,7 +857,7 @@ int ret = -EINVAL; u32 len; - if (!dwc->gadget_driver) + if (!dwc->gadget_driver || !dwc->connected) goto out; trace_dwc3_ctrl_req(ctrl); @@ -1114,13 +1131,18 @@ __dwc3_ep0_do_control_status(dwc, dwc->eps[direction]); } -static void dwc3_ep0_end_control_data(struct dwc3 *dwc, struct dwc3_ep *dep) +void dwc3_ep0_end_control_data(struct dwc3 *dwc, struct dwc3_ep *dep) { struct dwc3_gadget_ep_cmd_params params; u32 cmd; int ret; - if (!dep->resource_index) + /* + * For status/DATA OUT stage, TRB will be queued on ep0 out + * endpoint for which resource index is zero. Hence allow + * queuing ENDXFER command for ep0 out endpoint. + */ + if (!dep->resource_index && dep->number) return; cmd = DWC3_DEPCMD_ENDTRANSFER; diff -u linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/gadget.c linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/gadget.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/gadget.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/gadget.c @@ -139,6 +139,24 @@ return -ETIMEDOUT; } +static void dwc3_ep0_reset_state(struct dwc3 *dwc) +{ + unsigned int dir; + + if (dwc->ep0state != EP0_SETUP_PHASE) { + dir = !!dwc->ep0_expect_in; + if (dwc->ep0state == EP0_DATA_PHASE) + dwc3_ep0_end_control_data(dwc, dwc->eps[dir]); + else + dwc3_ep0_end_control_data(dwc, dwc->eps[!dir]); + + dwc->eps[0]->trb_enqueue = 0; + dwc->eps[1]->trb_enqueue = 0; + + dwc3_ep0_stall_and_restart(dwc); + } +} + /** * dwc3_ep_inc_trb - increment a trb index. * @index: Pointer to the TRB index to increment. @@ -901,13 +919,14 @@ reg |= DWC3_DALEPENA_EP(dep->number); dwc3_writel(dwc->regs, DWC3_DALEPENA, reg); + dep->trb_dequeue = 0; + dep->trb_enqueue = 0; + if (usb_endpoint_xfer_control(desc)) goto out; if (!dwc->is_hibernated) { /* Initialize the TRB ring */ - dep->trb_dequeue = 0; - dep->trb_enqueue = 0; memset(dep->trb_pool, 0, sizeof(struct dwc3_trb) * DWC3_TRB_NUM); } @@ -1702,6 +1721,16 @@ cmd |= DWC3_DEPCMD_PARAM(dep->resource_index); memset(¶ms, 0, sizeof(params)); ret = dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms); + /* + * If the End Transfer command was timed out while the device is + * not in SETUP phase, it's possible that an incoming Setup packet + * may prevent the command's completion. Let's retry when the + * ep0state returns to EP0_SETUP_PHASE. + */ + if (ret == -ETIMEDOUT && dep->dwc->ep0state != EP0_SETUP_PHASE) { + dep->flags |= DWC3_EP_DELAY_STOP; + return 0; + } WARN_ON_ONCE(ret); /* @@ -1719,6 +1748,8 @@ dep->flags |= DWC3_EP_END_TRANSFER_PENDING; } + dep->flags &= ~DWC3_EP_DELAY_STOP; + /* * when transfer is stopped with force rm bit false, it can be * restarted by passing resource_index in params; don't loose it @@ -1948,6 +1979,7 @@ */ if ((dep->flags & DWC3_EP_END_TRANSFER_PENDING) || (dep->flags & DWC3_EP_WEDGE) || + (dep->flags & DWC3_EP_DELAY_STOP) || (dep->flags & DWC3_EP_STALL)) { dep->flags |= DWC3_EP_DELAY_START; return 0; @@ -2100,7 +2132,17 @@ list_for_each_entry(r, &dep->pending_list, list) { if (r == req) { - dwc3_gadget_giveback(dep, req, -ECONNRESET); + /* + * Explicitly check for EP0/1 as dequeue for those + * EPs need to be handled differently. Control EP + * only deals with one USB req, and giveback will + * occur during dwc3_ep0_stall_and_restart(). EP0 + * requests are never added to started_list. + */ + if (dep->number > 1) + dwc3_gadget_giveback(dep, req, -ECONNRESET); + else + dwc3_ep0_reset_state(dwc); goto out; } } @@ -2192,7 +2234,8 @@ list_for_each_entry_safe(req, tmp, &dep->started_list, list) dwc3_gadget_move_cancelled_request(req, DWC3_REQUEST_STATUS_STALLED); - if (dep->flags & DWC3_EP_END_TRANSFER_PENDING) { + if (dep->flags & DWC3_EP_END_TRANSFER_PENDING || + (dep->flags & DWC3_EP_DELAY_STOP)) { dep->flags |= DWC3_EP_PENDING_CLEAR_STALL; return 0; } @@ -2537,11 +2580,19 @@ static int dwc3_gadget_soft_disconnect(struct dwc3 *dwc) { unsigned long flags; + int ret; spin_lock_irqsave(&dwc->lock, flags); dwc->connected = false; /* + * Attempt to end pending SETUP status phase, and not wait for the + * function to do so. + */ + if (dwc->delayed_status) + dwc3_ep0_send_delayed_status(dwc); + + /* * In the Synopsys DesignWare Cores USB3 Databook Rev. 3.30a * Section 4.1.8 Table 4-7, it states that for a device-initiated * disconnect, the SW needs to ensure that it sends "a DEPENDXFER @@ -2549,17 +2600,48 @@ * bit. */ dwc3_stop_active_transfers(dwc); - __dwc3_gadget_stop(dwc); spin_unlock_irqrestore(&dwc->lock, flags); /* + * Per databook, when we want to stop the gadget, if a control transfer + * is still in process, complete it and get the core into setup phase. + * In case the host is unresponsive to a SETUP transaction, forcefully + * stall the transfer, and move back to the SETUP phase, so that any + * pending endxfers can be executed. + */ + if (dwc->ep0state != EP0_SETUP_PHASE) { + reinit_completion(&dwc->ep0_in_setup); + + ret = wait_for_completion_timeout(&dwc->ep0_in_setup, + msecs_to_jiffies(DWC3_PULL_UP_TIMEOUT)); + if (ret == 0) { + dev_warn(dwc->dev, "wait for SETUP phase timed out\n"); + spin_lock_irqsave(&dwc->lock, flags); + dwc3_ep0_reset_state(dwc); + spin_unlock_irqrestore(&dwc->lock, flags); + } + } + + /* * Note: if the GEVNTCOUNT indicates events in the event buffer, the * driver needs to acknowledge them before the controller can halt. * Simply let the interrupt handler acknowledges and handle the * remaining event generated by the controller while polling for * DSTS.DEVCTLHLT. */ - return dwc3_gadget_run_stop(dwc, false, false); + ret = dwc3_gadget_run_stop(dwc, false, false); + + /* + * Stop the gadget after controller is halted, so that if needed, the + * events to update EP0 state can still occur while the run/stop + * routine polls for the halted state. DEVTEN is cleared as part of + * gadget stop. + */ + spin_lock_irqsave(&dwc->lock, flags); + __dwc3_gadget_stop(dwc); + spin_unlock_irqrestore(&dwc->lock, flags); + + return ret; } static int dwc3_gadget_soft_connect(struct dwc3 *dwc) @@ -2585,18 +2667,6 @@ is_on = !!is_on; dwc->softconnect = is_on; - /* - * Per databook, when we want to stop the gadget, if a control transfer - * is still in process, complete it and get the core into setup phase. - */ - if (!is_on && dwc->ep0state != EP0_SETUP_PHASE) { - reinit_completion(&dwc->ep0_in_setup); - - ret = wait_for_completion_timeout(&dwc->ep0_in_setup, - msecs_to_jiffies(DWC3_PULL_UP_TIMEOUT)); - if (ret == 0) - dev_warn(dwc->dev, "timed out waiting for SETUP phase\n"); - } /* * Avoid issuing a runtime resume if the device is already in the @@ -2790,6 +2860,7 @@ /* begin to receive SETUP packets */ dwc->ep0state = EP0_SETUP_PHASE; + dwc->ep0_bounced = false; dwc->link_state = DWC3_LINK_STATE_SS_DIS; dwc->delayed_status = false; dwc3_ep0_out_start(dwc); @@ -3781,13 +3852,40 @@ } } -void dwc3_stop_active_transfer(struct dwc3_ep *dep, bool force, bool interrupt) +void dwc3_stop_active_transfer(struct dwc3_ep *dep, bool force, + bool interrupt) { + struct dwc3 *dwc = dep->dwc; + + /* + * Only issue End Transfer command to the control endpoint of a started + * Data Phase. Typically we should only do so in error cases such as + * invalid/unexpected direction as described in the control transfer + * flow of the programming guide. + */ + if (dep->number <= 1 && dwc->ep0state != EP0_DATA_PHASE) + return; + + if (interrupt && (dep->flags & DWC3_EP_DELAY_STOP)) + return; + if (!(dep->flags & DWC3_EP_TRANSFER_STARTED) || (dep->flags & DWC3_EP_END_TRANSFER_PENDING)) return; /* + * If a Setup packet is received but yet to DMA out, the controller will + * not process the End Transfer command of any endpoint. Polling of its + * DEPCMD.CmdAct may block setting up TRB for Setup packet, causing a + * timeout. Delay issuing the End Transfer command until the Setup TRB is + * prepared. + */ + if (dwc->ep0state != EP0_SETUP_PHASE && !dwc->delayed_status) { + dep->flags |= DWC3_EP_DELAY_STOP; + return; + } + + /* * NOTICE: We are violating what the Databook says about the * EndTransfer command. Ideally we would _always_ wait for the * EndTransfer Command Completion IRQ, but that's causing too @@ -3856,6 +3954,8 @@ reg &= ~DWC3_DCTL_INITU2ENA; dwc3_gadget_dctl_write_safe(dwc, reg); + dwc->connected = false; + dwc3_disconnect_gadget(dwc); /* In USB 2.0, to avoid hibernation interrupt at the time of connection @@ -3871,7 +3971,14 @@ dwc->setup_packet_pending = false; usb_gadget_set_state(dwc->gadget, USB_STATE_NOTATTACHED); - dwc->connected = false; + dwc3_ep0_reset_state(dwc); + + /* + * Request PM idle to address condition where usage count is + * already decremented to zero, but waiting for the disconnect + * interrupt to set dwc->connected to FALSE. + */ + pm_request_idle(dwc->dev); } static void dwc3_gadget_reset_interrupt(struct dwc3 *dwc) @@ -3935,6 +4042,14 @@ } dwc3_reset_gadget(dwc); + + /* + * From SNPS databook section 8.1.2, the EP0 should be in setup + * phase. So ensure that EP0 is in setup phase by issuing a stall + * and restart if EP0 is not in setup phase. + */ + dwc3_ep0_reset_state(dwc); + /* * In the Synopsis DesignWare Cores USB3 Databook Rev. 3.30a * Section 4.1.2 Table 4-2, it states that during a USB reset, the SW @@ -4698,15 +4813,13 @@ unsigned long flags; int ret; - if (!dwc->gadget_driver) - return 0; - ret = dwc3_gadget_soft_disconnect(dwc); if (ret) goto err; spin_lock_irqsave(&dwc->lock, flags); - dwc3_disconnect_gadget(dwc); + if (dwc->gadget_driver) + dwc3_disconnect_gadget(dwc); spin_unlock_irqrestore(&dwc->lock, flags); return 0; diff -u linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/gadget.h linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/gadget.h --- linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/gadget.h +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/gadget.h @@ -119,6 +119,8 @@ void dwc3_ep0_interrupt(struct dwc3 *dwc, const struct dwc3_event_depevt *event); void dwc3_ep0_out_start(struct dwc3 *dwc); +void dwc3_ep0_end_control_data(struct dwc3 *dwc, struct dwc3_ep *dep); +void dwc3_ep0_stall_and_restart(struct dwc3 *dwc); void dwc3_gadget_enable_irq(struct dwc3 *dwc); void dwc3_gadget_disable_irq(struct dwc3 *dwc); int __dwc3_gadget_ep0_set_halt(struct usb_ep *ep, int value); @@ -136,6 +138,7 @@ void dwc3_gadget_enter_hibernation(struct dwc3 *dwc); void dwc3_gadget_exit_hibernation(void *_dwc); void dwc3_ep0_send_delayed_status(struct dwc3 *dwc); +void dwc3_stop_active_transfer(struct dwc3_ep *dep, bool force, bool interrupt); /** * dwc3_gadget_ep_get_transfer_index - Gets transfer index from HW diff -u linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/host.c linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/host.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/host.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc3/host.c @@ -105,6 +105,8 @@ memset(props, 0, sizeof(struct property_entry) * ARRAY_SIZE(props)); + props[prop_idx++] = PROPERTY_ENTRY_BOOL("xhci-sg-trb-cache-size-quirk"); + if (dwc->usb3_lpm_capable) props[prop_idx++] = PROPERTY_ENTRY_BOOL("usb3-lpm-capable"); diff -u linux-xilinx-zynqmp-5.15.0/drivers/usb/gadget/function/f_hid.c linux-xilinx-zynqmp-5.15.0/drivers/usb/gadget/function/f_hid.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/gadget/function/f_hid.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/gadget/function/f_hid.c @@ -88,6 +88,7 @@ { 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/usb/gadget/function/f_mass_storage.c linux-xilinx-zynqmp-5.15.0/drivers/usb/gadget/function/f_mass_storage.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/gadget/function/f_mass_storage.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/gadget/function/f_mass_storage.c @@ -543,21 +543,37 @@ static bool start_in_transfer(struct fsg_common *common, struct fsg_buffhd *bh) { + int rc; + if (!fsg_is_set(common)) return false; bh->state = BUF_STATE_SENDING; - if (start_transfer(common->fsg, common->fsg->bulk_in, bh->inreq)) + rc = start_transfer(common->fsg, common->fsg->bulk_in, bh->inreq); + if (rc) { bh->state = BUF_STATE_EMPTY; + if (rc == -ESHUTDOWN) { + common->running = 0; + return false; + } + } return true; } static bool start_out_transfer(struct fsg_common *common, struct fsg_buffhd *bh) { + int rc; + if (!fsg_is_set(common)) return false; bh->state = BUF_STATE_RECEIVING; - if (start_transfer(common->fsg, common->fsg->bulk_out, bh->outreq)) + rc = start_transfer(common->fsg, common->fsg->bulk_out, bh->outreq); + if (rc) { bh->state = BUF_STATE_FULL; + if (rc == -ESHUTDOWN) { + common->running = 0; + return false; + } + } return true; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/usb/gadget/function/f_ncm.c linux-xilinx-zynqmp-5.15.0/drivers/usb/gadget/function/f_ncm.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/gadget/function/f_ncm.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/gadget/function/f_ncm.c @@ -1429,7 +1429,7 @@ 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; @@ -1447,22 +1447,17 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/usb/gadget/legacy/raw_gadget.c linux-xilinx-zynqmp-5.15.0/drivers/usb/gadget/legacy/raw_gadget.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/gadget/legacy/raw_gadget.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/gadget/legacy/raw_gadget.c @@ -663,12 +663,12 @@ 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 @@ "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 @@ 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 @@ "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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/usb/gadget/udc/core.c linux-xilinx-zynqmp-5.15.0/drivers/usb/gadget/udc/core.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/gadget/udc/core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/gadget/udc/core.c @@ -1451,8 +1451,6 @@ dev_dbg(&udc->dev, "unregistering UDC driver [%s]\n", udc->driver->function); - kobject_uevent(&udc->dev.kobj, KOBJ_CHANGE); - usb_gadget_disconnect(udc->gadget); usb_gadget_disable_async_callbacks(udc); if (udc->gadget->irq) @@ -1462,6 +1460,8 @@ udc->driver = NULL; udc->gadget->dev.driver = NULL; + + kobject_uevent(&udc->dev.kobj, KOBJ_CHANGE); } /** diff -u linux-xilinx-zynqmp-5.15.0/drivers/usb/host/fotg210-hcd.c linux-xilinx-zynqmp-5.15.0/drivers/usb/host/fotg210-hcd.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/host/fotg210-hcd.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/host/fotg210-hcd.c @@ -429,8 +429,6 @@ temp = size; size -= temp; next += temp; - if (temp == size) - goto done; } temp = snprintf(next, size, "\n"); @@ -440,7 +438,6 @@ size -= temp; next += temp; -done: *sizep = size; *nextp = next; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/usb/host/xhci-mtk.c linux-xilinx-zynqmp-5.15.0/drivers/usb/host/xhci-mtk.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/host/xhci-mtk.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/host/xhci-mtk.c @@ -7,6 +7,7 @@ * Chunfeng Yun */ +#include #include #include #include @@ -72,6 +73,9 @@ #define FRMCNT_LEV1_RANG (0x12b << 8) #define FRMCNT_LEV1_RANG_MASK GENMASK(19, 8) +#define HSCH_CFG1 0x960 +#define SCH3_RXFIFO_DEPTH_MASK GENMASK(21, 20) + #define SS_GEN2_EOF_CFG 0x990 #define SSG2EOF_OFFSET 0x3c @@ -100,6 +104,8 @@ #define SSC_IP_SLEEP_EN BIT(4) #define SSC_SPM_INT_EN BIT(1) +#define SCH_FIFO_TO_KB(x) ((x) >> 10) + enum ssusb_uwk_vers { SSUSB_UWK_V1 = 1, SSUSB_UWK_V2, @@ -147,6 +153,35 @@ writel(value, hcd->regs + SS_GEN2_EOF_CFG); } +/* + * workaround: usb3.2 gen1 isoc rx hw issue + * host send out unexpected ACK afer device fininsh a burst transfer with + * a short packet. + */ +static void xhci_mtk_rxfifo_depth_set(struct xhci_hcd_mtk *mtk) +{ + struct usb_hcd *hcd = mtk->hcd; + u32 value; + + if (!mtk->rxfifo_depth) + return; + + value = readl(hcd->regs + HSCH_CFG1); + value &= ~SCH3_RXFIFO_DEPTH_MASK; + value |= FIELD_PREP(SCH3_RXFIFO_DEPTH_MASK, + SCH_FIFO_TO_KB(mtk->rxfifo_depth) - 1); + writel(value, hcd->regs + HSCH_CFG1); +} + +static void xhci_mtk_init_quirk(struct xhci_hcd_mtk *mtk) +{ + /* workaround only for mt8195 */ + xhci_mtk_set_frame_interval(mtk); + + /* workaround for SoCs using SSUSB about before IPM v1.6.0 */ + xhci_mtk_rxfifo_depth_set(mtk); +} + static int xhci_mtk_host_enable(struct xhci_hcd_mtk *mtk) { struct mu3c_ippc_regs __iomem *ippc = mtk->ippc_regs; @@ -429,8 +464,7 @@ if (ret) return ret; - /* workaround only for mt8195 */ - xhci_mtk_set_frame_interval(mtk); + xhci_mtk_init_quirk(mtk); } ret = xhci_gen_setup(hcd, xhci_mtk_quirks); @@ -517,6 +551,8 @@ of_property_read_u32(node, "mediatek,u2p-dis-msk", &mtk->u2p_dis_msk); + of_property_read_u32(node, "rx-fifo-depth", &mtk->rxfifo_depth); + ret = usb_wakeup_of_property_parse(mtk, node); if (ret) { dev_err(dev, "failed to parse uwk property\n"); diff -u linux-xilinx-zynqmp-5.15.0/drivers/usb/host/xhci-pci.c linux-xilinx-zynqmp-5.15.0/drivers/usb/host/xhci-pci.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/host/xhci-pci.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/host/xhci-pci.c @@ -516,7 +516,9 @@ /* 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 -u linux-xilinx-zynqmp-5.15.0/drivers/usb/host/xhci-plat.c linux-xilinx-zynqmp-5.15.0/drivers/usb/host/xhci-plat.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/host/xhci-plat.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/host/xhci-plat.c @@ -370,6 +370,9 @@ if (device_property_read_bool(tmpdev, "quirk-broken-port-ped")) xhci->quirks |= XHCI_BROKEN_PORT_PED; + if (device_property_read_bool(tmpdev, "xhci-sg-trb-cache-size-quirk")) + xhci->quirks |= XHCI_SG_TRB_CACHE_SIZE_QUIRK; + if (device_property_read_bool(tmpdev, "xhci-reset-on-resume")) xhci->quirks |= XHCI_RESET_ON_RESUME; @@ -532,23 +535,38 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/usb/mon/mon_bin.c linux-xilinx-zynqmp-5.15.0/drivers/usb/mon/mon_bin.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/mon/mon_bin.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/mon/mon_bin.c @@ -1247,14 +1247,19 @@ struct mon_reader_bin *rp = vmf->vma->vm_private_data; unsigned long offset, chunk_idx; struct page *pageptr; + unsigned long flags; + spin_lock_irqsave(&rp->b_lock, flags); offset = vmf->pgoff << PAGE_SHIFT; - if (offset >= rp->b_size) + if (offset >= rp->b_size) { + spin_unlock_irqrestore(&rp->b_lock, flags); return VM_FAULT_SIGBUS; + } chunk_idx = offset / CHUNK_SIZE; pageptr = rp->b_vec[chunk_idx].pg; get_page(pageptr); vmf->page = pageptr; + spin_unlock_irqrestore(&rp->b_lock, flags); return 0; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/usb/phy/phy-mxs-usb.c linux-xilinx-zynqmp-5.15.0/drivers/usb/phy/phy-mxs-usb.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/phy/phy-mxs-usb.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/phy/phy-mxs-usb.c @@ -388,8 +388,7 @@ static bool mxs_phy_is_otg_host(struct mxs_phy *mxs_phy) { - return IS_ENABLED(CONFIG_USB_OTG) && - mxs_phy->phy.last_event == USB_EVENT_ID; + return mxs_phy->phy.last_event == USB_EVENT_ID; } static void mxs_phy_disconnect_line(struct mxs_phy *mxs_phy, bool on) diff -u linux-xilinx-zynqmp-5.15.0/drivers/usb/serial/cp210x.c linux-xilinx-zynqmp-5.15.0/drivers/usb/serial/cp210x.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/serial/cp210x.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/serial/cp210x.c @@ -146,6 +146,7 @@ { USB_DEVICE(0x10C4, 0x85F8) }, /* Virtenio Preon32 */ { USB_DEVICE(0x10C4, 0x8664) }, /* AC-Services CAN-IF */ { USB_DEVICE(0x10C4, 0x8665) }, /* AC-Services OBD-IF */ + { USB_DEVICE(0x10C4, 0x87ED) }, /* IMST USB-Stick for Smart Meter */ { USB_DEVICE(0x10C4, 0x8856) }, /* CEL EM357 ZigBee USB Stick - LR */ { USB_DEVICE(0x10C4, 0x8857) }, /* CEL EM357 ZigBee USB Stick */ { USB_DEVICE(0x10C4, 0x88A4) }, /* MMB Networks ZigBee USB Device */ diff -u linux-xilinx-zynqmp-5.15.0/drivers/usb/serial/ftdi_sio.c linux-xilinx-zynqmp-5.15.0/drivers/usb/serial/ftdi_sio.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/serial/ftdi_sio.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/serial/ftdi_sio.c @@ -1011,9 +1011,9 @@ { USB_DEVICE(FTDI_VID, ACTISENSE_USG_PID) }, { USB_DEVICE(FTDI_VID, ACTISENSE_NGT_PID) }, { USB_DEVICE(FTDI_VID, ACTISENSE_NGW_PID) }, - { USB_DEVICE(FTDI_VID, ACTISENSE_D9AC_PID) }, - { USB_DEVICE(FTDI_VID, ACTISENSE_D9AD_PID) }, - { USB_DEVICE(FTDI_VID, ACTISENSE_D9AE_PID) }, + { USB_DEVICE(FTDI_VID, ACTISENSE_UID_PID) }, + { USB_DEVICE(FTDI_VID, ACTISENSE_USA_PID) }, + { USB_DEVICE(FTDI_VID, ACTISENSE_NGX_PID) }, { USB_DEVICE(FTDI_VID, ACTISENSE_D9AF_PID) }, { USB_DEVICE(FTDI_VID, CHETCO_SEAGAUGE_PID) }, { USB_DEVICE(FTDI_VID, CHETCO_SEASWITCH_PID) }, diff -u linux-xilinx-zynqmp-5.15.0/drivers/usb/serial/ftdi_sio_ids.h linux-xilinx-zynqmp-5.15.0/drivers/usb/serial/ftdi_sio_ids.h --- linux-xilinx-zynqmp-5.15.0/drivers/usb/serial/ftdi_sio_ids.h +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/serial/ftdi_sio_ids.h @@ -1561,9 +1561,9 @@ #define ACTISENSE_USG_PID 0xD9A9 /* USG USB Serial Adapter */ #define ACTISENSE_NGT_PID 0xD9AA /* NGT NMEA2000 Interface */ #define ACTISENSE_NGW_PID 0xD9AB /* NGW NMEA2000 Gateway */ -#define ACTISENSE_D9AC_PID 0xD9AC /* Actisense Reserved */ -#define ACTISENSE_D9AD_PID 0xD9AD /* Actisense Reserved */ -#define ACTISENSE_D9AE_PID 0xD9AE /* Actisense Reserved */ +#define ACTISENSE_UID_PID 0xD9AC /* USB Isolating Device */ +#define ACTISENSE_USA_PID 0xD9AD /* USB to Serial Adapter */ +#define ACTISENSE_NGX_PID 0xD9AE /* NGX NMEA2000 Gateway */ #define ACTISENSE_D9AF_PID 0xD9AF /* Actisense Reserved */ #define CHETCO_SEAGAUGE_PID 0xA548 /* SeaGauge USB Adapter */ #define CHETCO_SEASWITCH_PID 0xA549 /* SeaSwitch USB Adapter */ diff -u linux-xilinx-zynqmp-5.15.0/drivers/usb/serial/option.c linux-xilinx-zynqmp-5.15.0/drivers/usb/serial/option.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/serial/option.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/serial/option.c @@ -204,4 +204,7 @@ #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 @@ -269,6 +272,7 @@ #define QUECTEL_PRODUCT_RM500Q 0x0800 #define QUECTEL_PRODUCT_RM520N 0x0801 #define QUECTEL_PRODUCT_EC200U 0x0901 +#define QUECTEL_PRODUCT_EG912Y 0x6001 #define QUECTEL_PRODUCT_EC200S_CN 0x6002 #define QUECTEL_PRODUCT_EC200A 0x6005 #define QUECTEL_PRODUCT_EM061K_LWW 0x6008 @@ -606,6 +610,8 @@ #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 +1114,8 @@ .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) }, @@ -1225,6 +1233,7 @@ { USB_DEVICE_INTERFACE_CLASS(QUECTEL_VENDOR_ID, 0x0700, 0xff), /* BG95 */ .driver_info = RSVD(3) | ZLP }, { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_RM500Q, 0xff, 0xff, 0x30) }, + { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_RM500Q, 0xff, 0, 0x40) }, { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_RM500Q, 0xff, 0, 0) }, { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_RM500Q, 0xff, 0xff, 0x10), .driver_info = ZLP }, @@ -1237,6 +1246,7 @@ { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EC200U, 0xff, 0, 0) }, { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EC200S_CN, 0xff, 0, 0) }, { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EC200T, 0xff, 0, 0) }, + { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EG912Y, 0xff, 0, 0) }, { USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_RM500K, 0xff, 0x00, 0x00) }, { USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_6001) }, @@ -1290,6 +1300,7 @@ .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 +1551,8 @@ { 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) }, @@ -2233,6 +2245,8 @@ .driver_info = RSVD(0) | RSVD(1) | RSVD(6) }, { USB_DEVICE(0x0489, 0xe0b5), /* Foxconn T77W968 ESIM */ .driver_info = RSVD(0) | RSVD(1) | RSVD(6) }, + { USB_DEVICE_INTERFACE_CLASS(0x0489, 0xe0da, 0xff), /* Foxconn T99W265 MBIM variant */ + .driver_info = RSVD(3) | RSVD(5) }, { USB_DEVICE_INTERFACE_CLASS(0x0489, 0xe0db, 0xff), /* Foxconn T99W265 MBIM */ .driver_info = RSVD(3) }, { USB_DEVICE_INTERFACE_CLASS(0x0489, 0xe0ee, 0xff), /* Foxconn T99W368 MBIM */ @@ -2243,6 +2257,7 @@ .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 */ @@ -2254,6 +2269,7 @@ { USB_DEVICE_INTERFACE_CLASS(0x2cb7, 0x0111, 0xff) }, /* Fibocom FM160 (MBIM mode) */ { USB_DEVICE_INTERFACE_CLASS(0x2cb7, 0x01a0, 0xff) }, /* Fibocom NL668-AM/NL652-EU (laptop MBIM) */ { USB_DEVICE_INTERFACE_CLASS(0x2cb7, 0x01a2, 0xff) }, /* Fibocom FM101-GL (laptop MBIM) */ + { USB_DEVICE_INTERFACE_CLASS(0x2cb7, 0x01a3, 0xff) }, /* Fibocom FM101-GL (laptop MBIM) */ { USB_DEVICE_INTERFACE_CLASS(0x2cb7, 0x01a4, 0xff), /* Fibocom FM101-GL (laptop MBIM) */ .driver_info = RSVD(4) }, { USB_DEVICE_INTERFACE_CLASS(0x2df3, 0x9d03, 0xff) }, /* LongSung M5710 */ @@ -2262,8 +2278,10 @@ { 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 -u linux-xilinx-zynqmp-5.15.0/drivers/usb/serial/qcserial.c linux-xilinx-zynqmp-5.15.0/drivers/usb/serial/qcserial.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/serial/qcserial.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/serial/qcserial.c @@ -184,6 +184,8 @@ {DEVICE_SWI(0x413c, 0x81d0)}, /* Dell Wireless 5819 */ {DEVICE_SWI(0x413c, 0x81d1)}, /* Dell Wireless 5818 */ {DEVICE_SWI(0x413c, 0x81d2)}, /* Dell Wireless 5818 */ + {DEVICE_SWI(0x413c, 0x8217)}, /* Dell Wireless DW5826e */ + {DEVICE_SWI(0x413c, 0x8218)}, /* Dell Wireless DW5826e QDL */ /* Huawei devices */ {DEVICE_HWI(0x03f0, 0x581d)}, /* HP lt4112 LTE/HSPA+ Gobi 4G Modem (Huawei me906e) */ diff -u linux-xilinx-zynqmp-5.15.0/drivers/usb/typec/class.c linux-xilinx-zynqmp-5.15.0/drivers/usb/typec/class.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/typec/class.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/typec/class.c @@ -261,11 +261,13 @@ { struct altmode *partner = altmode->partner; struct typec_altmode *adev; + struct typec_altmode *partner_adev; if (!partner) return; - adev = &partner->adev; + adev = &altmode->adev; + partner_adev = &partner->adev; if (is_typec_plug(adev->dev.parent)) { struct typec_plug *plug = to_typec_plug(adev->dev.parent); @@ -274,7 +276,7 @@ } else { partner->partner = NULL; } - put_device(&adev->dev); + put_device(&partner_adev->dev); } /** @@ -495,7 +497,8 @@ { 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 -u linux-xilinx-zynqmp-5.15.0/drivers/usb/typec/tcpm/tcpm.c linux-xilinx-zynqmp-5.15.0/drivers/usb/typec/tcpm/tcpm.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/typec/tcpm/tcpm.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/typec/tcpm/tcpm.c @@ -1608,6 +1608,9 @@ 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])); @@ -5347,6 +5350,15 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/usb/typec/ucsi/ucsi_acpi.c linux-xilinx-zynqmp-5.15.0/drivers/usb/typec/ucsi/ucsi_acpi.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/typec/ucsi/ucsi_acpi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/typec/ucsi/ucsi_acpi.c @@ -70,9 +70,13 @@ const void *val, size_t val_len) { struct ucsi_acpi *ua = ucsi_get_drvdata(ucsi); + bool ack = UCSI_COMMAND(*(u64 *)val) == UCSI_ACK_CC_CI; int ret; - set_bit(COMMAND_PENDING, &ua->flags); + if (ack) + set_bit(ACK_PENDING, &ua->flags); + else + set_bit(COMMAND_PENDING, &ua->flags); ret = ucsi_acpi_async_write(ucsi, offset, val, val_len); if (ret) @@ -82,7 +86,10 @@ ret = -ETIMEDOUT; out_clear_bit: - clear_bit(COMMAND_PENDING, &ua->flags); + if (ack) + clear_bit(ACK_PENDING, &ua->flags); + else + clear_bit(COMMAND_PENDING, &ua->flags); return ret; } @@ -106,8 +113,10 @@ if (UCSI_CCI_CONNECTOR(cci)) ucsi_connector_change(ua->ucsi, UCSI_CCI_CONNECTOR(cci)); - if (test_bit(COMMAND_PENDING, &ua->flags) && - cci & (UCSI_CCI_ACK_COMPLETE | UCSI_CCI_COMMAND_COMPLETE)) + if (cci & UCSI_CCI_ACK_COMPLETE && test_bit(ACK_PENDING, &ua->flags)) + complete(&ua->complete); + if (cci & UCSI_CCI_COMMAND_COMPLETE && + test_bit(COMMAND_PENDING, &ua->flags)) complete(&ua->complete); } diff -u linux-xilinx-zynqmp-5.15.0/drivers/usb/usbip/stub_dev.c linux-xilinx-zynqmp-5.15.0/drivers/usb/usbip/stub_dev.c --- linux-xilinx-zynqmp-5.15.0/drivers/usb/usbip/stub_dev.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/usbip/stub_dev.c @@ -462,8 +462,13 @@ /* 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 -u linux-xilinx-zynqmp-5.15.0/drivers/vdpa/mlx5/net/mlx5_vnet.c linux-xilinx-zynqmp-5.15.0/drivers/vdpa/mlx5/net/mlx5_vnet.c --- linux-xilinx-zynqmp-5.15.0/drivers/vdpa/mlx5/net/mlx5_vnet.c +++ linux-xilinx-zynqmp-5.15.0/drivers/vdpa/mlx5/net/mlx5_vnet.c @@ -2178,13 +2178,18 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/vhost/vhost.c linux-xilinx-zynqmp-5.15.0/drivers/vhost/vhost.c --- linux-xilinx-zynqmp-5.15.0/drivers/vhost/vhost.c +++ linux-xilinx-zynqmp-5.15.0/drivers/vhost/vhost.c @@ -1171,9 +1171,7 @@ 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 @@ /* 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 -u linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/core/fbmem.c linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/core/fbmem.c --- linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/core/fbmem.c +++ linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/core/fbmem.c @@ -1454,6 +1454,10 @@ struct fb_info * const info = file->private_data; lock_fb_info(info); +#if IS_ENABLED(CONFIG_FB_DEFERRED_IO) + if (info->fbdefio) + fb_deferred_io_release(info); +#endif if (info->fbops->fb_release) info->fbops->fb_release(info,1); module_put(info->fbops->owner); diff -u linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/hyperv_fb.c linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/hyperv_fb.c --- linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/hyperv_fb.c +++ linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/hyperv_fb.c @@ -420,11 +420,10 @@ } /* Deferred IO callback */ -static void synthvid_deferred_io(struct fb_info *p, - struct list_head *pagelist) +static void synthvid_deferred_io(struct fb_info *p, struct list_head *pagereflist) { struct hvfb_par *par = p->par; - struct page *page; + struct fb_deferred_io_pageref *pageref; unsigned long start, end; int y1, y2, miny, maxy; @@ -437,7 +436,8 @@ * in synthvid_update function by clamping the y2 * value to yres. */ - list_for_each_entry(page, pagelist, lru) { + list_for_each_entry(pageref, pagereflist, list) { + struct page *page = pageref->page; start = page->index << PAGE_SHIFT; end = start + PAGE_SIZE - 1; y1 = start / p->fix.line_length; diff -u linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/imsttfb.c linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/imsttfb.c --- linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/imsttfb.c +++ linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/imsttfb.c @@ -1489,8 +1489,8 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/smscufx.c linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/smscufx.c --- linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/smscufx.c +++ linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/smscufx.c @@ -953,12 +953,10 @@ * Touching ANY framebuffer memory that triggers a page fault * in fb_defio will cause a deadlock, when it also tries to * grab the same mutex. */ -static void ufx_dpy_deferred_io(struct fb_info *info, - struct list_head *pagelist) +static void ufx_dpy_deferred_io(struct fb_info *info, struct list_head *pagereflist) { - struct page *cur; - struct fb_deferred_io *fbdefio = info->fbdefio; struct ufx_data *dev = info->par; + struct fb_deferred_io_pageref *pageref; if (!fb_defio) return; @@ -967,9 +965,10 @@ return; /* walk the written page list and render each to device */ - list_for_each_entry(cur, &fbdefio->pagelist, lru) { + list_for_each_entry(pageref, pagereflist, list) { /* create a rectangle of full screen width that encloses the * entire dirty framebuffer page */ + struct page *cur = pageref->page; const int x = 0; const int width = dev->info->var.xres; const int y = (cur->index << PAGE_SHIFT) / (width * 2); diff -u linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/sticore.h linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/sticore.h --- linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/sticore.h +++ linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/sticore.h @@ -231,7 +231,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/udlfb.c linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/udlfb.c --- linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/udlfb.c +++ linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/udlfb.c @@ -780,11 +780,9 @@ * in fb_defio will cause a deadlock, when it also tries to * grab the same mutex. */ -static void dlfb_dpy_deferred_io(struct fb_info *info, - struct list_head *pagelist) +static void dlfb_dpy_deferred_io(struct fb_info *info, struct list_head *pagereflist) { - struct page *cur; - struct fb_deferred_io *fbdefio = info->fbdefio; + struct fb_deferred_io_pageref *pageref; struct dlfb_data *dlfb = info->par; struct urb *urb; char *cmd; @@ -810,7 +808,8 @@ cmd = urb->transfer_buffer; /* walk the written page list and render each to device */ - list_for_each_entry(cur, &fbdefio->pagelist, lru) { + list_for_each_entry(pageref, pagereflist, list) { + struct page *cur = pageref->page; if (dlfb_render_hline(dlfb, &urb, (char *) info->fix.smem_start, &cmd, cur->index << PAGE_SHIFT, @@ -982,6 +981,7 @@ if (fbdefio) { fbdefio->delay = DL_DEFIO_WRITE_DELAY; + fbdefio->sort_pagereflist = true; fbdefio->deferred_io = dlfb_dpy_deferred_io; } diff -u linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/uvesafb.c linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/uvesafb.c --- linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/uvesafb.c +++ linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/uvesafb.c @@ -1935,10 +1935,10 @@ } } - 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 -u linux-xilinx-zynqmp-5.15.0/drivers/virtio/virtio_mmio.c linux-xilinx-zynqmp-5.15.0/drivers/virtio/virtio_mmio.c --- linux-xilinx-zynqmp-5.15.0/drivers/virtio/virtio_mmio.c +++ linux-xilinx-zynqmp-5.15.0/drivers/virtio/virtio_mmio.c @@ -596,14 +596,17 @@ 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 @@ 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 @@ * 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/watchdog/hpwdt.c linux-xilinx-zynqmp-5.15.0/drivers/watchdog/hpwdt.c --- linux-xilinx-zynqmp-5.15.0/drivers/watchdog/hpwdt.c +++ linux-xilinx-zynqmp-5.15.0/drivers/watchdog/hpwdt.c @@ -178,7 +178,7 @@ "3. OA Forward Progress Log\n" "4. iLO Event Log"; - if (ilo5 && ulReason == NMI_UNKNOWN && !mynmi) + if (ulReason == NMI_UNKNOWN && !mynmi) return NMI_DONE; if (ilo5 && !pretimeout && !mynmi) diff -u linux-xilinx-zynqmp-5.15.0/drivers/watchdog/rti_wdt.c linux-xilinx-zynqmp-5.15.0/drivers/watchdog/rti_wdt.c --- linux-xilinx-zynqmp-5.15.0/drivers/watchdog/rti_wdt.c +++ linux-xilinx-zynqmp-5.15.0/drivers/watchdog/rti_wdt.c @@ -70,6 +70,11 @@ { u32 timer_margin; struct rti_wdt_device *wdt = watchdog_get_drvdata(wdd); + int ret; + + ret = pm_runtime_resume_and_get(wdd->parent); + if (ret) + return ret; /* set timeout period */ timer_margin = (u64)wdd->timeout * wdt->freq; @@ -296,6 +301,9 @@ if (last_ping) watchdog_set_last_hw_keepalive(wdd, last_ping); + if (!watchdog_hw_running(wdd)) + pm_runtime_put_sync(&pdev->dev); + return 0; err_iomap: @@ -310,7 +318,10 @@ struct rti_wdt_device *wdt = platform_get_drvdata(pdev); watchdog_unregister_device(&wdt->wdd); - pm_runtime_put(&pdev->dev); + + if (!pm_runtime_suspended(&pdev->dev)) + pm_runtime_put(&pdev->dev); + pm_runtime_disable(&pdev->dev); return 0; diff -u linux-xilinx-zynqmp-5.15.0/drivers/watchdog/sbsa_gwdt.c linux-xilinx-zynqmp-5.15.0/drivers/watchdog/sbsa_gwdt.c --- linux-xilinx-zynqmp-5.15.0/drivers/watchdog/sbsa_gwdt.c +++ linux-xilinx-zynqmp-5.15.0/drivers/watchdog/sbsa_gwdt.c @@ -153,14 +153,14 @@ 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 -u linux-xilinx-zynqmp-5.15.0/drivers/watchdog/watchdog_dev.c linux-xilinx-zynqmp-5.15.0/drivers/watchdog/watchdog_dev.c --- linux-xilinx-zynqmp-5.15.0/drivers/watchdog/watchdog_dev.c +++ linux-xilinx-zynqmp-5.15.0/drivers/watchdog/watchdog_dev.c @@ -1035,6 +1035,7 @@ /* Fill in the data structures */ cdev_init(&wd_data->cdev, &watchdog_fops); + wd_data->cdev.owner = wdd->ops->owner; /* Add the device */ err = cdev_device_add(&wd_data->cdev, &wd_data->dev); @@ -1049,8 +1050,6 @@ return err; } - wd_data->cdev.owner = wdd->ops->owner; - /* Record time of most recent heartbeat as 'just before now'. */ wd_data->last_hw_keepalive = ktime_sub(ktime_get(), 1); watchdog_set_open_deadline(wd_data); diff -u linux-xilinx-zynqmp-5.15.0/drivers/xen/events/events_base.c linux-xilinx-zynqmp-5.15.0/drivers/xen/events/events_base.c --- linux-xilinx-zynqmp-5.15.0/drivers/xen/events/events_base.c +++ linux-xilinx-zynqmp-5.15.0/drivers/xen/events/events_base.c @@ -599,7 +599,9 @@ 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); diff -u linux-xilinx-zynqmp-5.15.0/drivers/xen/swiotlb-xen.c linux-xilinx-zynqmp-5.15.0/drivers/xen/swiotlb-xen.c --- linux-xilinx-zynqmp-5.15.0/drivers/xen/swiotlb-xen.c +++ linux-xilinx-zynqmp-5.15.0/drivers/xen/swiotlb-xen.c @@ -566,2 +566,3 @@ .free_pages = dma_common_free_pages, + .max_mapping_size = swiotlb_max_mapping_size, }; diff -u linux-xilinx-zynqmp-5.15.0/drivers/xen/xen-pciback/conf_space_capability.c linux-xilinx-zynqmp-5.15.0/drivers/xen/xen-pciback/conf_space_capability.c --- linux-xilinx-zynqmp-5.15.0/drivers/xen/xen-pciback/conf_space_capability.c +++ linux-xilinx-zynqmp-5.15.0/drivers/xen/xen-pciback/conf_space_capability.c @@ -236,10 +236,16 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/Kconfig linux-xilinx-zynqmp-5.15.0/fs/Kconfig --- linux-xilinx-zynqmp-5.15.0/fs/Kconfig +++ linux-xilinx-zynqmp-5.15.0/fs/Kconfig @@ -388,8 +388,8 @@ config SMBFS_COMMON tristate - default y if CIFS=y - default m if CIFS=m + default y if CIFS=y || SMB_SERVER=y + default m if CIFS=m || SMB_SERVER=m source "fs/coda/Kconfig" source "fs/afs/Kconfig" diff -u linux-xilinx-zynqmp-5.15.0/fs/afs/dir.c linux-xilinx-zynqmp-5.15.0/fs/afs/dir.c --- linux-xilinx-zynqmp-5.15.0/fs/afs/dir.c +++ linux-xilinx-zynqmp-5.15.0/fs/afs/dir.c @@ -493,4 +493,12 @@ } + /* Don't expose silly rename entries to userspace. */ + if (nlen > 6 && + dire->u.name[0] == '.' && + ctx->actor != afs_lookup_filldir && + ctx->actor != afs_lookup_one_filldir && + memcmp(dire->u.name, ".__afs", 6) == 0) + continue; + /* found the next entry */ if (!dir_emit(ctx, dire->u.name, nlen, diff -u linux-xilinx-zynqmp-5.15.0/fs/afs/internal.h linux-xilinx-zynqmp-5.15.0/fs/afs/internal.h --- linux-xilinx-zynqmp-5.15.0/fs/afs/internal.h +++ linux-xilinx-zynqmp-5.15.0/fs/afs/internal.h @@ -123,7 +123,7 @@ }; struct afs_operation *op; unsigned int server_index; - atomic_t usage; + refcount_t ref; enum afs_call_state state; spinlock_t state_lock; int error; /* error code */ @@ -368,7 +368,7 @@ #endif time64_t dns_expiry; /* Time AFSDB/SRV record expires */ time64_t last_inactive; /* Time of last drop of usage count */ - atomic_t ref; /* Struct refcount */ + refcount_t ref; /* Struct refcount */ atomic_t active; /* Active usage counter */ unsigned long flags; #define AFS_CELL_FL_NO_GC 0 /* The cell was added manually, don't auto-gc */ @@ -413,7 +413,7 @@ #define AFS_VLSERVER_FL_IS_YFS 2 /* Server is YFS not AFS */ #define AFS_VLSERVER_FL_RESPONDING 3 /* VL server is responding */ rwlock_t lock; /* Lock on addresses */ - atomic_t usage; + refcount_t ref; unsigned int rtt; /* Server's current RTT in uS */ /* Probe state */ @@ -449,7 +449,7 @@ struct afs_vlserver_list { struct rcu_head rcu; - atomic_t usage; + refcount_t ref; u8 nr_servers; u8 index; /* Server currently in use */ u8 preferred; /* Preferred server */ @@ -520,7 +520,7 @@ #define AFS_SERVER_FL_NO_IBULK 17 /* Fileserver doesn't support FS.InlineBulkStatus */ #define AFS_SERVER_FL_NO_RM2 18 /* Fileserver doesn't support YFS.RemoveFile2 */ #define AFS_SERVER_FL_HAS_FS64 19 /* Fileserver supports FS.{Fetch,Store}Data64 */ - atomic_t ref; /* Object refcount */ + refcount_t ref; /* Object refcount */ atomic_t active; /* Active user count */ u32 addr_version; /* Address list version */ unsigned int rtt; /* Server's current RTT in uS */ @@ -556,6 +556,7 @@ }; struct afs_server_list { + struct rcu_head rcu; afs_volid_t vids[AFS_MAXTYPES]; /* Volume IDs */ refcount_t usage; unsigned char nr_servers; @@ -574,7 +575,7 @@ struct rcu_head rcu; afs_volid_t vid; /* volume ID */ }; - atomic_t usage; + refcount_t ref; time64_t update_at; /* Time at which to next update */ struct afs_cell *cell; /* Cell to which belongs (pins ref) */ struct rb_node cell_node; /* Link in cell->volumes */ @@ -588,6 +589,7 @@ #define AFS_VOLUME_OFFLINE 4 /* - T if volume offline notice given */ #define AFS_VOLUME_BUSY 5 /* - T if volume busy notice given */ #define AFS_VOLUME_MAYBE_NO_IBULK 6 /* - T if some servers don't have InlineBulkStatus */ +#define AFS_VOLUME_RM_TREE 7 /* - Set if volume removed from cell->volumes */ #ifdef CONFIG_AFS_FSCACHE struct fscache_cookie *cache; /* caching cookie */ #endif @@ -1482,14 +1484,14 @@ */ static inline struct afs_vlserver *afs_get_vlserver(struct afs_vlserver *vlserver) { - atomic_inc(&vlserver->usage); + refcount_inc(&vlserver->ref); return vlserver; } static inline struct afs_vlserver_list *afs_get_vlserverlist(struct afs_vlserver_list *vllist) { if (vllist) - atomic_inc(&vllist->usage); + refcount_inc(&vllist->ref); return vllist; } @@ -1506,6 +1508,7 @@ extern struct afs_volume *afs_create_volume(struct afs_fs_context *); extern void afs_activate_volume(struct afs_volume *); extern void afs_deactivate_volume(struct afs_volume *); +bool afs_try_get_volume(struct afs_volume *volume, enum afs_volume_trace reason); extern struct afs_volume *afs_get_volume(struct afs_volume *, enum afs_volume_trace); extern void afs_put_volume(struct afs_net *, struct afs_volume *, enum afs_volume_trace); extern int afs_check_volume_status(struct afs_volume *, struct afs_operation *); diff -u linux-xilinx-zynqmp-5.15.0/fs/afs/rxrpc.c linux-xilinx-zynqmp-5.15.0/fs/afs/rxrpc.c --- linux-xilinx-zynqmp-5.15.0/fs/afs/rxrpc.c +++ linux-xilinx-zynqmp-5.15.0/fs/afs/rxrpc.c @@ -145,7 +145,7 @@ call->type = type; call->net = net; call->debug_id = atomic_inc_return(&rxrpc_debug_id); - atomic_set(&call->usage, 1); + refcount_set(&call->ref, 1); INIT_WORK(&call->async_work, afs_process_async_call); init_waitqueue_head(&call->waitq); spin_lock_init(&call->state_lock); @@ -163,14 +163,15 @@ void afs_put_call(struct afs_call *call) { struct afs_net *net = call->net; - int n = atomic_dec_return(&call->usage); - int o = atomic_read(&net->nr_outstanding_calls); + bool zero; + int r, o; - trace_afs_call(call, afs_call_trace_put, n, o, + zero = __refcount_dec_and_test(&call->ref, &r); + o = atomic_read(&net->nr_outstanding_calls); + trace_afs_call(call, afs_call_trace_put, r - 1, o, __builtin_return_address(0)); - ASSERTCMP(n, >=, 0); - if (n == 0) { + if (zero) { ASSERT(!work_pending(&call->async_work)); ASSERT(call->type->name != NULL); @@ -198,9 +199,11 @@ static struct afs_call *afs_get_call(struct afs_call *call, enum afs_call_trace why) { - int u = atomic_inc_return(&call->usage); + int r; - trace_afs_call(call, why, u, + __refcount_inc(&call->ref, &r); + + trace_afs_call(call, why, r + 1, atomic_read(&call->net->nr_outstanding_calls), __builtin_return_address(0)); return call; @@ -420,7 +423,7 @@ if (call->async) { if (cancel_work_sync(&call->async_work)) afs_put_call(call); - afs_put_call(call); + afs_set_call_complete(call, ret, 0); } ac->error = ret; @@ -663,14 +666,13 @@ unsigned long call_user_ID) { struct afs_call *call = (struct afs_call *)call_user_ID; - int u; + int r; trace_afs_notify_call(rxcall, call); call->need_attention = true; - u = atomic_fetch_add_unless(&call->usage, 1, 0); - if (u != 0) { - trace_afs_call(call, afs_call_trace_wake, u + 1, + if (__refcount_inc_not_zero(&call->ref, &r)) { + trace_afs_call(call, afs_call_trace_wake, r + 1, atomic_read(&call->net->nr_outstanding_calls), __builtin_return_address(0)); diff -u linux-xilinx-zynqmp-5.15.0/fs/afs/super.c linux-xilinx-zynqmp-5.15.0/fs/afs/super.c --- linux-xilinx-zynqmp-5.15.0/fs/afs/super.c +++ linux-xilinx-zynqmp-5.15.0/fs/afs/super.c @@ -406,6 +406,8 @@ return PTR_ERR(volume); ctx->volume = volume; + if (volume->type != AFSVL_RWVOL) + ctx->flock_mode = afs_flock_mode_local; } return 0; diff -u linux-xilinx-zynqmp-5.15.0/fs/btrfs/ctree.c linux-xilinx-zynqmp-5.15.0/fs/btrfs/ctree.c --- linux-xilinx-zynqmp-5.15.0/fs/btrfs/ctree.c +++ linux-xilinx-zynqmp-5.15.0/fs/btrfs/ctree.c @@ -545,18 +545,30 @@ 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 (trans->transid != fs_info->generation) - WARN(1, KERN_CRIT "trans %llu running %llu\n", - trans->transid, fs_info->generation); + 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; + } + + /* + * 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 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 -u linux-xilinx-zynqmp-5.15.0/fs/btrfs/ctree.h linux-xilinx-zynqmp-5.15.0/fs/btrfs/ctree.h --- linux-xilinx-zynqmp-5.15.0/fs/btrfs/ctree.h +++ linux-xilinx-zynqmp-5.15.0/fs/btrfs/ctree.h @@ -282,6 +282,26 @@ #define BTRFS_FEATURE_COMPAT_RO_SAFE_SET 0ULL #define BTRFS_FEATURE_COMPAT_RO_SAFE_CLEAR 0ULL +#ifdef CONFIG_BTRFS_DEBUG +/* + * Extent tree v2 supported only with CONFIG_BTRFS_DEBUG + */ +#define BTRFS_FEATURE_INCOMPAT_SUPP \ + (BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF | \ + BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL | \ + BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS | \ + BTRFS_FEATURE_INCOMPAT_BIG_METADATA | \ + BTRFS_FEATURE_INCOMPAT_COMPRESS_LZO | \ + BTRFS_FEATURE_INCOMPAT_COMPRESS_ZSTD | \ + BTRFS_FEATURE_INCOMPAT_RAID56 | \ + BTRFS_FEATURE_INCOMPAT_EXTENDED_IREF | \ + BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA | \ + BTRFS_FEATURE_INCOMPAT_NO_HOLES | \ + BTRFS_FEATURE_INCOMPAT_METADATA_UUID | \ + BTRFS_FEATURE_INCOMPAT_RAID1C34 | \ + BTRFS_FEATURE_INCOMPAT_ZONED | \ + BTRFS_FEATURE_INCOMPAT_EXTENT_TREE_V2) +#else #define BTRFS_FEATURE_INCOMPAT_SUPP \ (BTRFS_FEATURE_INCOMPAT_MIXED_BACKREF | \ BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL | \ @@ -296,6 +316,7 @@ BTRFS_FEATURE_INCOMPAT_METADATA_UUID | \ BTRFS_FEATURE_INCOMPAT_RAID1C34 | \ BTRFS_FEATURE_INCOMPAT_ZONED) +#endif #define BTRFS_FEATURE_INCOMPAT_SAFE_SET \ (BTRFS_FEATURE_INCOMPAT_EXTENDED_IREF) @@ -1361,6 +1382,7 @@ struct btrfs_file_private { void *filldir_buf; + u64 last_index; }; diff -u linux-xilinx-zynqmp-5.15.0/fs/btrfs/delalloc-space.c linux-xilinx-zynqmp-5.15.0/fs/btrfs/delalloc-space.c --- linux-xilinx-zynqmp-5.15.0/fs/btrfs/delalloc-space.c +++ linux-xilinx-zynqmp-5.15.0/fs/btrfs/delalloc-space.c @@ -312,9 +312,6 @@ } 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 -u linux-xilinx-zynqmp-5.15.0/fs/btrfs/delayed-inode.c linux-xilinx-zynqmp-5.15.0/fs/btrfs/delayed-inode.c --- linux-xilinx-zynqmp-5.15.0/fs/btrfs/delayed-inode.c +++ linux-xilinx-zynqmp-5.15.0/fs/btrfs/delayed-inode.c @@ -1513,6 +1513,7 @@ } bool btrfs_readdir_get_delayed_items(struct inode *inode, + u64 last_index, struct list_head *ins_list, struct list_head *del_list) { @@ -1532,14 +1533,14 @@ mutex_lock(&delayed_node->mutex); item = __btrfs_first_delayed_insertion_item(delayed_node); - while (item) { + while (item && item->key.offset <= last_index) { refcount_inc(&item->refs); list_add_tail(&item->readdir_list, ins_list); item = __btrfs_next_delayed_item(item); } item = __btrfs_first_delayed_deletion_item(delayed_node); - while (item) { + while (item && item->key.offset <= last_index) { refcount_inc(&item->refs); list_add_tail(&item->readdir_list, del_list); item = __btrfs_next_delayed_item(item); diff -u linux-xilinx-zynqmp-5.15.0/fs/btrfs/disk-io.c linux-xilinx-zynqmp-5.15.0/fs/btrfs/disk-io.c --- linux-xilinx-zynqmp-5.15.0/fs/btrfs/disk-io.c +++ linux-xilinx-zynqmp-5.15.0/fs/btrfs/disk-io.c @@ -1619,8 +1619,17 @@ again: root = btrfs_lookup_fs_root(fs_info, objectid); if (root) { - /* Shouldn't get preallocated anon_dev for cached roots */ - ASSERT(!anon_dev); + /* + * Some other caller may have read out the newly inserted + * subvolume already (for things like backref walk etc). Not + * that common but still possible. In that case, we just need + * to free the anon_dev. + */ + if (unlikely(anon_dev)) { + free_anon_bdev(anon_dev); + anon_dev = 0; + } + if (check_ref && btrfs_root_refs(&root->root_item) == 0) { btrfs_put_root(root); return ERR_PTR(-ENOENT); diff -u linux-xilinx-zynqmp-5.15.0/fs/btrfs/extent-tree.c linux-xilinx-zynqmp-5.15.0/fs/btrfs/extent-tree.c --- linux-xilinx-zynqmp-5.15.0/fs/btrfs/extent-tree.c +++ linux-xilinx-zynqmp-5.15.0/fs/btrfs/extent-tree.c @@ -1206,7 +1206,8 @@ u64 bytes_left, end; u64 aligned_start = ALIGN(start, 1 << 9); - if (WARN_ON(start != aligned_start)) { + /* Adjust the range to be aligned to 512B sectors if necessary. */ + if (start != aligned_start) { len -= aligned_start - start; len = round_down(len, 1 << 9); start = aligned_start; @@ -1674,12 +1675,12 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/btrfs/inode.c linux-xilinx-zynqmp-5.15.0/fs/btrfs/inode.c --- linux-xilinx-zynqmp-5.15.0/fs/btrfs/inode.c +++ linux-xilinx-zynqmp-5.15.0/fs/btrfs/inode.c @@ -4501,6 +4501,8 @@ u64 root_flags; int ret; + down_write(&fs_info->subvol_sem); + /* * Don't allow to delete a subvolume with send in progress. This is * inside the inode lock so the error handling that has to drop the bit @@ -4512,25 +4514,25 @@ btrfs_warn(fs_info, "attempt to delete subvolume %llu during send", dest->root_key.objectid); - return -EPERM; + ret = -EPERM; + goto out_up_write; } if (atomic_read(&dest->nr_swapfiles)) { spin_unlock(&dest->root_item_lock); btrfs_warn(fs_info, "attempt to delete subvolume %llu with active swapfile", root->root_key.objectid); - return -EPERM; + ret = -EPERM; + goto out_up_write; } root_flags = btrfs_root_flags(&dest->root_item); btrfs_set_root_flags(&dest->root_item, root_flags | BTRFS_ROOT_SUBVOL_DEAD); spin_unlock(&dest->root_item_lock); - down_write(&fs_info->subvol_sem); - ret = may_destroy_subvol(dest); if (ret) - goto out_up_write; + goto out_undead; btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP); /* @@ -4540,7 +4542,7 @@ */ ret = btrfs_subvolume_reserve_metadata(root, &block_rsv, 5, true); if (ret) - goto out_up_write; + goto out_undead; trans = btrfs_start_transaction(root, 0); if (IS_ERR(trans)) { @@ -4606,15 +4608,17 @@ inode->i_flags |= S_DEAD; out_release: btrfs_subvolume_release_metadata(root, &block_rsv); -out_up_write: - up_write(&fs_info->subvol_sem); +out_undead: if (ret) { spin_lock(&dest->root_item_lock); root_flags = btrfs_root_flags(&dest->root_item); btrfs_set_root_flags(&dest->root_item, root_flags & ~BTRFS_ROOT_SUBVOL_DEAD); spin_unlock(&dest->root_item_lock); - } else { + } +out_up_write: + up_write(&fs_info->subvol_sem); + if (!ret) { d_invalidate(dentry); btrfs_prune_dentries(dest); ASSERT(dest->send_in_progress == 0); @@ -6122,6 +6126,78 @@ } /* + * Find the highest existing sequence number in a directory and then set the + * in-memory index_cnt variable to the first free sequence number. + */ +static int btrfs_set_inode_index_count(struct btrfs_inode *inode) +{ + struct btrfs_root *root = inode->root; + struct btrfs_key key, found_key; + struct btrfs_path *path; + struct extent_buffer *leaf; + int ret; + + key.objectid = btrfs_ino(inode); + key.type = BTRFS_DIR_INDEX_KEY; + key.offset = (u64)-1; + + path = btrfs_alloc_path(); + if (!path) + return -ENOMEM; + + ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); + if (ret < 0) + goto out; + /* FIXME: we should be able to handle this */ + if (ret == 0) + goto out; + ret = 0; + + if (path->slots[0] == 0) { + inode->index_cnt = BTRFS_DIR_START_INDEX; + goto out; + } + + path->slots[0]--; + + leaf = path->nodes[0]; + btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); + + if (found_key.objectid != btrfs_ino(inode) || + found_key.type != BTRFS_DIR_INDEX_KEY) { + inode->index_cnt = BTRFS_DIR_START_INDEX; + goto out; + } + + inode->index_cnt = found_key.offset + 1; +out: + btrfs_free_path(path); + return ret; +} + +static int btrfs_get_dir_last_index(struct btrfs_inode *dir, u64 *index) +{ + int ret = 0; + + btrfs_inode_lock(&dir->vfs_inode, 0); + if (dir->index_cnt == (u64)-1) { + ret = btrfs_inode_delayed_dir_index_count(dir); + if (ret) { + ret = btrfs_set_inode_index_count(dir); + if (ret) + goto out; + } + } + + /* index_cnt is the index number of next new entry, so decrement it. */ + *index = dir->index_cnt - 1; +out: + btrfs_inode_unlock(&dir->vfs_inode, 0); + + return ret; +} + +/* * All this infrastructure exists because dir_emit can fault, and we are holding * the tree lock when doing readdir. For now just allocate a buffer and copy * our information into that, and then dir_emit from the buffer. This is @@ -6133,10 +6209,17 @@ static int btrfs_opendir(struct inode *inode, struct file *file) { struct btrfs_file_private *private; + u64 last_index; + int ret; + + ret = btrfs_get_dir_last_index(BTRFS_I(inode), &last_index); + if (ret) + return ret; private = kzalloc(sizeof(struct btrfs_file_private), GFP_KERNEL); if (!private) return -ENOMEM; + private->last_index = last_index; private->filldir_buf = kzalloc(PAGE_SIZE, GFP_KERNEL); if (!private->filldir_buf) { kfree(private); @@ -6146,6 +6229,19 @@ return 0; } +static loff_t btrfs_dir_llseek(struct file *file, loff_t offset, int whence) +{ + struct btrfs_file_private *private = file->private_data; + int ret; + + ret = btrfs_get_dir_last_index(BTRFS_I(file_inode(file)), + &private->last_index); + if (ret) + return ret; + + return generic_file_llseek(file, offset, whence); +} + struct dir_entry { u64 ino; u64 offset; @@ -6205,7 +6301,8 @@ INIT_LIST_HEAD(&ins_list); INIT_LIST_HEAD(&del_list); - put = btrfs_readdir_get_delayed_items(inode, &ins_list, &del_list); + put = btrfs_readdir_get_delayed_items(inode, private->last_index, + &ins_list, &del_list); again: key.type = BTRFS_DIR_INDEX_KEY; @@ -6238,6 +6335,8 @@ break; if (found_key.offset < ctx->pos) goto next; + if (found_key.offset > private->last_index) + break; if (btrfs_should_delete_dir_index(&del_list, found_key.offset)) goto next; di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item); @@ -6372,57 +6471,6 @@ } /* - * find the highest existing sequence number in a directory - * and then set the in-memory index_cnt variable to reflect - * free sequence numbers - */ -static int btrfs_set_inode_index_count(struct btrfs_inode *inode) -{ - struct btrfs_root *root = inode->root; - struct btrfs_key key, found_key; - struct btrfs_path *path; - struct extent_buffer *leaf; - int ret; - - key.objectid = btrfs_ino(inode); - key.type = BTRFS_DIR_INDEX_KEY; - key.offset = (u64)-1; - - path = btrfs_alloc_path(); - if (!path) - return -ENOMEM; - - ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); - if (ret < 0) - goto out; - /* FIXME: we should be able to handle this */ - if (ret == 0) - goto out; - ret = 0; - - if (path->slots[0] == 0) { - inode->index_cnt = BTRFS_DIR_START_INDEX; - goto out; - } - - path->slots[0]--; - - leaf = path->nodes[0]; - btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]); - - if (found_key.objectid != btrfs_ino(inode) || - found_key.type != BTRFS_DIR_INDEX_KEY) { - inode->index_cnt = BTRFS_DIR_START_INDEX; - goto out; - } - - inode->index_cnt = found_key.offset + 1; -out: - btrfs_free_path(path); - return ret; -} - -/* * helper to find a free sequence number in a given directory. This current * code is very simple, later versions will do smarter things in the btree */ @@ -11059,7 +11107,7 @@ }; static const struct file_operations btrfs_dir_file_operations = { - .llseek = generic_file_llseek, + .llseek = btrfs_dir_llseek, .read = generic_read_dir, .iterate_shared = btrfs_real_readdir, .open = btrfs_opendir, diff -u linux-xilinx-zynqmp-5.15.0/fs/btrfs/ioctl.c linux-xilinx-zynqmp-5.15.0/fs/btrfs/ioctl.c --- linux-xilinx-zynqmp-5.15.0/fs/btrfs/ioctl.c +++ linux-xilinx-zynqmp-5.15.0/fs/btrfs/ioctl.c @@ -725,6 +725,9 @@ struct btrfs_trans_handle *trans; int ret; + if (btrfs_root_refs(&root->root_item) == 0) + return -ENOENT; + if (!test_bit(BTRFS_ROOT_SHAREABLE, &root->state)) return -EINVAL; @@ -1855,6 +1858,15 @@ * are limited to own subvolumes only */ ret = -EPERM; + } else if (btrfs_ino(BTRFS_I(src_inode)) != BTRFS_FIRST_FREE_OBJECTID) { + /* + * Snapshots must be made with the src_inode referring + * to the subvolume inode, otherwise the permission + * checking above is useless because we may have + * permission on a lower directory but not the subvol + * itself. + */ + ret = -EINVAL; } else { ret = btrfs_mksnapshot(&file->f_path, mnt_userns, name, namelen, @@ -2094,7 +2106,7 @@ 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 +2238,7 @@ 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 +2307,7 @@ 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 +2341,8 @@ 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; @@ -3174,6 +3186,10 @@ ret = -EFAULT; goto out; } + if (range.flags & ~BTRFS_DEFRAG_RANGE_FLAGS_SUPP) { + ret = -EOPNOTSUPP; + goto out; + } /* compression requires us to start the IO */ if ((range.flags & BTRFS_DEFRAG_RANGE_COMPRESS)) { range.flags |= BTRFS_DEFRAG_RANGE_START_IO; @@ -3531,7 +3547,7 @@ 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; @@ -4322,6 +4338,11 @@ goto out; } + if (sa->create && is_fstree(sa->qgroupid)) { + ret = -EINVAL; + goto out; + } + trans = btrfs_join_transaction(root); if (IS_ERR(trans)) { ret = PTR_ERR(trans); @@ -4867,7 +4888,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/btrfs/qgroup.c linux-xilinx-zynqmp-5.15.0/fs/btrfs/qgroup.c --- linux-xilinx-zynqmp-5.15.0/fs/btrfs/qgroup.c +++ linux-xilinx-zynqmp-5.15.0/fs/btrfs/qgroup.c @@ -1608,6 +1608,15 @@ return ret; } +static bool qgroup_has_usage(struct btrfs_qgroup *qgroup) +{ + return (qgroup->rfer > 0 || qgroup->rfer_cmpr > 0 || + qgroup->excl > 0 || qgroup->excl_cmpr > 0 || + qgroup->rsv.values[BTRFS_QGROUP_RSV_DATA] > 0 || + qgroup->rsv.values[BTRFS_QGROUP_RSV_META_PREALLOC] > 0 || + qgroup->rsv.values[BTRFS_QGROUP_RSV_META_PERTRANS] > 0); +} + int btrfs_remove_qgroup(struct btrfs_trans_handle *trans, u64 qgroupid) { struct btrfs_fs_info *fs_info = trans->fs_info; @@ -1627,6 +1636,11 @@ goto out; } + if (is_fstree(qgroupid) && qgroup_has_usage(qgroup)) { + ret = -EBUSY; + goto out; + } + /* Check if there are no children of this qgroup */ if (!list_empty(&qgroup->members)) { ret = -EBUSY; diff -u linux-xilinx-zynqmp-5.15.0/fs/btrfs/send.c linux-xilinx-zynqmp-5.15.0/fs/btrfs/send.c --- linux-xilinx-zynqmp-5.15.0/fs/btrfs/send.c +++ linux-xilinx-zynqmp-5.15.0/fs/btrfs/send.c @@ -7558,7 +7558,7 @@ } if (arg->flags & ~BTRFS_SEND_FLAG_MASK) { - ret = -EINVAL; + ret = -EOPNOTSUPP; goto out; } @@ -7576,7 +7576,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/btrfs/sysfs.c linux-xilinx-zynqmp-5.15.0/fs/btrfs/sysfs.c --- linux-xilinx-zynqmp-5.15.0/fs/btrfs/sysfs.c +++ linux-xilinx-zynqmp-5.15.0/fs/btrfs/sysfs.c @@ -283,9 +283,11 @@ BTRFS_FEAT_ATTR_INCOMPAT(metadata_uuid, METADATA_UUID); BTRFS_FEAT_ATTR_COMPAT_RO(free_space_tree, FREE_SPACE_TREE); BTRFS_FEAT_ATTR_INCOMPAT(raid1c34, RAID1C34); -/* Remove once support for zoned allocation is feature complete */ #ifdef CONFIG_BTRFS_DEBUG +/* Remove once support for zoned allocation is feature complete */ BTRFS_FEAT_ATTR_INCOMPAT(zoned, ZONED); +/* Remove once support for extent tree v2 is feature complete */ +BTRFS_FEAT_ATTR_INCOMPAT(extent_tree_v2, EXTENT_TREE_V2); #endif #ifdef CONFIG_FS_VERITY BTRFS_FEAT_ATTR_COMPAT_RO(verity, VERITY); @@ -314,6 +316,7 @@ BTRFS_FEAT_ATTR_PTR(raid1c34), #ifdef CONFIG_BTRFS_DEBUG BTRFS_FEAT_ATTR_PTR(zoned), + BTRFS_FEAT_ATTR_PTR(extent_tree_v2), #endif #ifdef CONFIG_FS_VERITY BTRFS_FEAT_ATTR_PTR(verity), @@ -1523,6 +1526,10 @@ unsigned long long limit; limit = memparse(buf, &endptr); + /* There could be trailing '\n', also catch any typos after the value. */ + endptr = skip_spaces(endptr); + if (*endptr != 0) + return -EINVAL; WRITE_ONCE(device->scrub_speed_max, limit); return len; } diff -u linux-xilinx-zynqmp-5.15.0/fs/btrfs/tree-checker.c linux-xilinx-zynqmp-5.15.0/fs/btrfs/tree-checker.c --- linux-xilinx-zynqmp-5.15.0/fs/btrfs/tree-checker.c +++ linux-xilinx-zynqmp-5.15.0/fs/btrfs/tree-checker.c @@ -1382,7 +1382,7 @@ if (unlikely(ptr + btrfs_extent_inline_ref_size(inline_type) > end)) { extent_err(leaf, slot, "inline ref item overflows extent item, ptr %lu iref size %u end %lu", - ptr, inline_type, end); + ptr, btrfs_extent_inline_ref_size(inline_type), end); return -EUCLEAN; } diff -u linux-xilinx-zynqmp-5.15.0/fs/btrfs/tree-log.c linux-xilinx-zynqmp-5.15.0/fs/btrfs/tree-log.c --- linux-xilinx-zynqmp-5.15.0/fs/btrfs/tree-log.c +++ linux-xilinx-zynqmp-5.15.0/fs/btrfs/tree-log.c @@ -4446,7 +4446,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/btrfs/volumes.c linux-xilinx-zynqmp-5.15.0/fs/btrfs/volumes.c --- linux-xilinx-zynqmp-5.15.0/fs/btrfs/volumes.c +++ linux-xilinx-zynqmp-5.15.0/fs/btrfs/volumes.c @@ -3064,15 +3064,16 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/ceph/caps.c linux-xilinx-zynqmp-5.15.0/fs/ceph/caps.c --- linux-xilinx-zynqmp-5.15.0/fs/ceph/caps.c +++ linux-xilinx-zynqmp-5.15.0/fs/ceph/caps.c @@ -1390,7 +1390,7 @@ if (flushing & CEPH_CAP_XATTR_EXCL) { arg->old_xattr_buf = __ceph_build_xattrs_blob(ci); arg->xattr_version = ci->i_xattrs.version; - arg->xattr_buf = ci->i_xattrs.blob; + arg->xattr_buf = ceph_buffer_get(ci->i_xattrs.blob); } else { arg->xattr_buf = NULL; arg->old_xattr_buf = NULL; @@ -1456,6 +1456,7 @@ encode_cap_msg(msg, arg); ceph_con_send(&arg->session->s_con, msg); ceph_buffer_put(arg->old_xattr_buf); + ceph_buffer_put(arg->xattr_buf); if (arg->wake) wake_up_all(&ci->i_cap_wq); } @@ -4536,12 +4537,14 @@ struct inode *dir, int mds, int drop, int unless) { - struct dentry *parent = NULL; struct ceph_mds_request_release *rel = *p; struct ceph_dentry_info *di = ceph_dentry(dentry); int force = 0; int ret; + /* This shouldn't happen */ + BUG_ON(!dir); + /* * force an record for the directory caps if we have a dentry lease. * this is racy (can't take i_ceph_lock and d_lock together), but it @@ -4551,14 +4554,9 @@ spin_lock(&dentry->d_lock); if (di->lease_session && di->lease_session->s_mds == mds) force = 1; - if (!dir) { - parent = dget(dentry->d_parent); - dir = d_inode(parent); - } spin_unlock(&dentry->d_lock); ret = ceph_encode_inode_release(p, dir, mds, drop, unless, force); - dput(parent); spin_lock(&dentry->d_lock); if (ret && di->lease_session && di->lease_session->s_mds == mds) { diff -u linux-xilinx-zynqmp-5.15.0/fs/cifs/cifsfs.c linux-xilinx-zynqmp-5.15.0/fs/cifs/cifsfs.c --- linux-xilinx-zynqmp-5.15.0/fs/cifs/cifsfs.c +++ linux-xilinx-zynqmp-5.15.0/fs/cifs/cifsfs.c @@ -1127,6 +1127,7 @@ const struct inode_operations cifs_symlink_inode_ops = { .get_link = cifs_get_link, + .setattr = cifs_setattr, .permission = cifs_permission, .listxattr = cifs_listxattr, }; @@ -1143,7 +1144,9 @@ 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"); diff -u linux-xilinx-zynqmp-5.15.0/fs/cifs/smb2ops.c linux-xilinx-zynqmp-5.15.0/fs/cifs/smb2ops.c --- linux-xilinx-zynqmp-5.15.0/fs/cifs/smb2ops.c +++ linux-xilinx-zynqmp-5.15.0/fs/cifs/smb2ops.c @@ -2926,6 +2926,8 @@ 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); @@ -3261,7 +3263,7 @@ struct kvec close_iov[1]; struct smb2_ioctl_rsp *ioctl_rsp; struct reparse_data_buffer *reparse_buf; - u32 plen; + u32 off, count, len; cifs_dbg(FYI, "%s: path: %s\n", __func__, full_path); @@ -3341,16 +3343,22 @@ */ if (rc == 0) { /* See MS-FSCC 2.3.23 */ + off = le32_to_cpu(ioctl_rsp->OutputOffset); + count = le32_to_cpu(ioctl_rsp->OutputCount); + if (check_add_overflow(off, count, &len) || + len > rsp_iov[1].iov_len) { + cifs_tcon_dbg(VFS, "%s: invalid ioctl: off=%d count=%d\n", + __func__, off, count); + rc = -EIO; + goto query_rp_exit; + } - reparse_buf = (struct reparse_data_buffer *) - ((char *)ioctl_rsp + - le32_to_cpu(ioctl_rsp->OutputOffset)); - plen = le32_to_cpu(ioctl_rsp->OutputCount); - - if (plen + le32_to_cpu(ioctl_rsp->OutputOffset) > - rsp_iov[1].iov_len) { - cifs_tcon_dbg(FYI, "srv returned invalid ioctl len: %d\n", - plen); + reparse_buf = (void *)((u8 *)ioctl_rsp + off); + len = sizeof(*reparse_buf); + if (count < len || + count < le16_to_cpu(reparse_buf->ReparseDataLength) + len) { + cifs_tcon_dbg(VFS, "%s: invalid ioctl: off=%d count=%d\n", + __func__, off, count); rc = -EIO; goto query_rp_exit; } @@ -5145,6 +5153,7 @@ struct smb2_sync_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; @@ -5173,14 +5182,15 @@ next_is_large = server->large_buf; one_more: shdr = (struct smb2_sync_hdr *)buf; - if (shdr->NextCommand) { + 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 +5214,8 @@ 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; @@ -5818,7 +5828,7 @@ .header_size = sizeof(struct smb2_sync_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, @@ -5840,7 +5850,7 @@ .header_size = sizeof(struct smb2_sync_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, @@ -5861,7 +5871,7 @@ .header_size = sizeof(struct smb2_sync_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, @@ -5882,7 +5892,7 @@ .header_size = sizeof(struct smb2_sync_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, @@ -5903,7 +5913,7 @@ .header_size = sizeof(struct smb2_sync_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, @@ -5924,7 +5934,7 @@ .header_size = sizeof(struct smb2_sync_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, @@ -5945,7 +5955,7 @@ .header_size = sizeof(struct smb2_sync_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 -u linux-xilinx-zynqmp-5.15.0/fs/cifs/smb2pdu.c linux-xilinx-zynqmp-5.15.0/fs/cifs/smb2pdu.c --- linux-xilinx-zynqmp-5.15.0/fs/cifs/smb2pdu.c +++ linux-xilinx-zynqmp-5.15.0/fs/cifs/smb2pdu.c @@ -364,10 +364,15 @@ void **request_buf, unsigned int *total_len) { /* BB eventually switch this to SMB2 specific small buf size */ - if (smb2_command == SMB2_SET_INFO) + switch (smb2_command) { + case SMB2_SET_INFO: + case SMB2_QUERY_INFO: *request_buf = cifs_buf_get(); - else + break; + default: *request_buf = cifs_small_buf_get(); + break; + } if (*request_buf == NULL) { /* BB should we add a retry in here if not a writepage? */ return -ENOMEM; @@ -1322,7 +1327,7 @@ /* 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)); @@ -1821,8 +1826,7 @@ 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->PathOffset = cpu_to_le16(sizeof(struct smb2_tree_connect_req)); req->PathLength = cpu_to_le16(unc_path_len - 2); iov[1].iov_base = unc_path; iov[1].iov_len = unc_path_len; @@ -3415,8 +3419,13 @@ struct smb2_query_info_req *req; struct kvec *iov = rqst->rq_iov; unsigned int total_len; + size_t len; int rc; + if (unlikely(check_add_overflow(input_len, sizeof(*req), &len) || + len > CIFSMaxBufSize)) + return -EINVAL; + rc = smb2_plain_req_init(SMB2_QUERY_INFO, tcon, server, (void **) &req, &total_len); if (rc) @@ -3438,7 +3447,7 @@ iov[0].iov_base = (char *)req; /* 1 for Buffer */ - iov[0].iov_len = total_len - 1 + input_len; + iov[0].iov_len = len; return 0; } @@ -3446,7 +3455,7 @@ SMB2_query_info_free(struct smb_rqst *rqst) { if (rqst && rqst->rq_iov) - cifs_small_buf_release(rqst->rq_iov[0].iov_base); /* request */ + cifs_buf_release(rqst->rq_iov[0].iov_base); /* request */ } static int @@ -4738,7 +4747,7 @@ 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 @@ -4935,7 +4944,7 @@ req->AdditionalInformation = cpu_to_le32(additional_info); req->BufferOffset = - cpu_to_le16(sizeof(struct smb2_set_info_req) - 1); + cpu_to_le16(sizeof(struct smb2_set_info_req)); req->BufferLength = cpu_to_le32(*size); memcpy(req->Buffer, *data, *size); @@ -5167,15 +5176,20 @@ 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; return 0; } +static inline void free_qfs_info_req(struct kvec *iov) +{ + cifs_buf_release(iov->iov_base); +} + int SMB311_posix_qfs_info(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid, u64 volatile_fid, struct kstatfs *fsdata) @@ -5207,7 +5221,7 @@ rc = cifs_send_recv(xid, ses, server, &rqst, &resp_buftype, flags, &rsp_iov); - cifs_small_buf_release(iov.iov_base); + free_qfs_info_req(&iov); if (rc) { cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE); goto posix_qfsinf_exit; @@ -5258,7 +5272,7 @@ rc = cifs_send_recv(xid, ses, server, &rqst, &resp_buftype, flags, &rsp_iov); - cifs_small_buf_release(iov.iov_base); + free_qfs_info_req(&iov); if (rc) { cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE); goto qfsinf_exit; @@ -5325,7 +5339,7 @@ rc = cifs_send_recv(xid, ses, server, &rqst, &resp_buftype, flags, &rsp_iov); - cifs_small_buf_release(iov.iov_base); + free_qfs_info_req(&iov); if (rc) { cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE); goto qfsattr_exit; diff -u linux-xilinx-zynqmp-5.15.0/fs/cifs/smb2transport.c linux-xilinx-zynqmp-5.15.0/fs/cifs/smb2transport.c --- linux-xilinx-zynqmp-5.15.0/fs/cifs/smb2transport.c +++ linux-xilinx-zynqmp-5.15.0/fs/cifs/smb2transport.c @@ -430,6 +430,8 @@ 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 +440,6 @@ return rc; } - if (rc) - return rc; - #ifdef CONFIG_CIFS_DEBUG_DUMP_KEYS cifs_dbg(VFS, "%s: dumping generated AES session keys\n", __func__); /* diff -u linux-xilinx-zynqmp-5.15.0/fs/cifs/xattr.c linux-xilinx-zynqmp-5.15.0/fs/cifs/xattr.c --- linux-xilinx-zynqmp-5.15.0/fs/cifs/xattr.c +++ linux-xilinx-zynqmp-5.15.0/fs/cifs/xattr.c @@ -150,10 +150,13 @@ 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: diff -u linux-xilinx-zynqmp-5.15.0/fs/dcache.c linux-xilinx-zynqmp-5.15.0/fs/dcache.c --- linux-xilinx-zynqmp-5.15.0/fs/dcache.c +++ linux-xilinx-zynqmp-5.15.0/fs/dcache.c @@ -762,12 +762,12 @@ */ if (unlikely(ret < 0)) { spin_lock(&dentry->d_lock); - if (dentry->d_lockref.count > 1) { - dentry->d_lockref.count--; + if (WARN_ON_ONCE(dentry->d_lockref.count <= 0)) { spin_unlock(&dentry->d_lock); return true; } - return false; + dentry->d_lockref.count--; + goto locked; } /* @@ -825,6 +825,7 @@ * else could have killed it and marked it dead. Either way, we * don't need to do anything else. */ +locked: if (dentry->d_lockref.count) { spin_unlock(&dentry->d_lock); return true; diff -u linux-xilinx-zynqmp-5.15.0/fs/debugfs/file.c linux-xilinx-zynqmp-5.15.0/fs/debugfs/file.c --- linux-xilinx-zynqmp-5.15.0/fs/debugfs/file.c +++ linux-xilinx-zynqmp-5.15.0/fs/debugfs/file.c @@ -84,6 +84,14 @@ struct debugfs_fsdata *fsd; void *d_fsd; + /* + * This could only happen if some debugfs user erroneously calls + * debugfs_file_get() on a dentry that isn't even a file, let + * them know about it. + */ + if (WARN_ON(!d_is_reg(dentry))) + return -EINVAL; + d_fsd = READ_ONCE(dentry->d_fsdata); if (!((unsigned long)d_fsd & DEBUGFS_FSDATA_IS_REAL_FOPS_BIT)) { fsd = d_fsd; diff -u linux-xilinx-zynqmp-5.15.0/fs/debugfs/inode.c linux-xilinx-zynqmp-5.15.0/fs/debugfs/inode.c --- linux-xilinx-zynqmp-5.15.0/fs/debugfs/inode.c +++ linux-xilinx-zynqmp-5.15.0/fs/debugfs/inode.c @@ -214,17 +214,19 @@ static void debugfs_release_dentry(struct dentry *dentry) { - void *fsd = dentry->d_fsdata; + struct debugfs_fsdata *fsd = dentry->d_fsdata; - if (!((unsigned long)fsd & DEBUGFS_FSDATA_IS_REAL_FOPS_BIT)) - kfree(dentry->d_fsdata); + if ((unsigned long)fsd & DEBUGFS_FSDATA_IS_REAL_FOPS_BIT) + return; + + kfree(fsd); } static struct vfsmount *debugfs_automount(struct path *path) { - debugfs_automount_t f; - f = (debugfs_automount_t)path->dentry->d_fsdata; - return f(path->dentry, d_inode(path->dentry)->i_private); + struct debugfs_fsdata *fsd = path->dentry->d_fsdata; + + return fsd->automount(path->dentry, d_inode(path->dentry)->i_private); } static const struct dentry_operations debugfs_dops = { @@ -602,13 +604,23 @@ void *data) { struct dentry *dentry = start_creating(name, parent); + struct debugfs_fsdata *fsd; struct inode *inode; if (IS_ERR(dentry)) return dentry; + fsd = kzalloc(sizeof(*fsd), GFP_KERNEL); + if (!fsd) { + failed_creating(dentry); + return ERR_PTR(-ENOMEM); + } + + fsd->automount = f; + if (!(debugfs_allow & DEBUGFS_ALLOW_API)) { failed_creating(dentry); + kfree(fsd); return ERR_PTR(-EPERM); } @@ -616,13 +628,14 @@ if (unlikely(!inode)) { pr_err("out of free dentries, can not create automount '%s'\n", name); + kfree(fsd); return failed_creating(dentry); } make_empty_dir_inode(inode); inode->i_flags |= S_AUTOMOUNT; inode->i_private = data; - dentry->d_fsdata = (void *)f; + dentry->d_fsdata = fsd; /* directory inodes start off with i_nlink == 2 (for "." entry) */ inc_nlink(inode); d_instantiate(dentry, inode); diff -u linux-xilinx-zynqmp-5.15.0/fs/exec.c linux-xilinx-zynqmp-5.15.0/fs/exec.c --- linux-xilinx-zynqmp-5.15.0/fs/exec.c +++ linux-xilinx-zynqmp-5.15.0/fs/exec.c @@ -1411,6 +1411,9 @@ out_unlock: up_write(&me->signal->exec_update_lock); + if (!bprm->cred) + mutex_unlock(&me->signal->cred_guard_mutex); + out: return retval; } diff -u linux-xilinx-zynqmp-5.15.0/fs/exfat/namei.c linux-xilinx-zynqmp-5.15.0/fs/exfat/namei.c --- linux-xilinx-zynqmp-5.15.0/fs/exfat/namei.c +++ linux-xilinx-zynqmp-5.15.0/fs/exfat/namei.c @@ -330,14 +330,20 @@ 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 @@ 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 @@ 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 @@ 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 @@ } /* 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 -u linux-xilinx-zynqmp-5.15.0/fs/ext4/extents.c linux-xilinx-zynqmp-5.15.0/fs/ext4/extents.c --- linux-xilinx-zynqmp-5.15.0/fs/ext4/extents.c +++ linux-xilinx-zynqmp-5.15.0/fs/ext4/extents.c @@ -1004,6 +1004,11 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/ext4/extents_status.c linux-xilinx-zynqmp-5.15.0/fs/ext4/extents_status.c --- linux-xilinx-zynqmp-5.15.0/fs/ext4/extents_status.c +++ linux-xilinx-zynqmp-5.15.0/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 @@ 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_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 @@ 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 @@ s_es_stats.es_stats_shk_cnt); } - kmem_cache_free(ext4_es_cachep, es); + __es_free_extent(es); } /* @@ -752,7 +785,8 @@ } #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 @@ } } - 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 @@ { 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 @@ 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 @@ 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 @@ 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 @@ * @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 @@ * 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 @@ 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 @@ 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 @@ } } 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 @@ 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 @@ 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 @@ (*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 @@ 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 @@ * * @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 @@ } } - 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 @@ 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 @@ 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 @@ 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 @@ * @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 @@ 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 @@ 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 { @@ -2176,16 +2296,22 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/ext4/mballoc.c linux-xilinx-zynqmp-5.15.0/fs/ext4/mballoc.c --- linux-xilinx-zynqmp-5.15.0/fs/ext4/mballoc.c +++ linux-xilinx-zynqmp-5.15.0/fs/ext4/mballoc.c @@ -4049,8 +4049,7 @@ struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb); struct ext4_super_block *es = sbi->s_es; int bsbits, max; - ext4_lblk_t end; - loff_t size, start_off; + loff_t size, start_off, end; loff_t orig_size __maybe_unused; ext4_lblk_t start; struct ext4_inode_info *ei = EXT4_I(ac->ac_inode); @@ -4079,7 +4078,7 @@ /* first, let's learn actual file size * given current request is allocated */ - size = ac->ac_o_ex.fe_logical + EXT4_C2B(sbi, ac->ac_o_ex.fe_len); + size = extent_logical_end(sbi, &ac->ac_o_ex); size = size << bsbits; if (size < i_size_read(ac->ac_inode)) size = i_size_read(ac->ac_inode); @@ -4138,6 +4137,10 @@ start = max(start, rounddown(ac->ac_o_ex.fe_logical, (ext4_lblk_t)EXT4_BLOCKS_PER_GROUP(ac->ac_sb))); + /* avoid unnecessary preallocation that may trigger assertions */ + if (start + size > EXT_MAX_BLOCKS) + size = EXT_MAX_BLOCKS - start; + /* don't cover already allocated blocks in selected range */ if (ar->pleft && start <= ar->lleft) { size -= ar->lleft + 1 - start; @@ -4158,7 +4161,7 @@ /* 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; @@ -4168,8 +4171,7 @@ 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 || @@ -4198,12 +4200,11 @@ /* 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); @@ -4419,8 +4420,7 @@ /* 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 */ @@ -4665,8 +4665,11 @@ 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 @@ -4685,29 +4688,23 @@ * still cover original start * 3. Else, keep the best ex at start of original request. */ - new_bex_end = ac->ac_g_ex.fe_logical + - EXT4_C2B(sbi, ac->ac_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 @@ -5241,7 +5238,7 @@ group_pa_eligible = sbi->s_mb_group_prealloc > 0; inode_pa_eligible = true; - size = ac->ac_o_ex.fe_logical + EXT4_C2B(sbi, ac->ac_o_ex.fe_len); + size = extent_logical_end(sbi, &ac->ac_o_ex); isize = (i_size_read(ac->ac_inode) + ac->ac_sb->s_blocksize - 1) >> bsbits; @@ -6437,11 +6434,16 @@ 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); + unsigned long nr_clusters_in_group; + + if (grp < (ext4_get_groups_count(sb) - 1)) + nr_clusters_in_group = EXT4_CLUSTERS_PER_GROUP(sb); + else + nr_clusters_in_group = (ext4_blocks_count(EXT4_SB(sb)->s_es) - + ext4_group_first_block_no(sb, grp)) + >> EXT4_CLUSTER_BITS(sb); + + return nr_clusters_in_group - 1; } static bool ext4_trim_interrupted(void) @@ -6455,13 +6457,15 @@ __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; + ext4_grpblk_t next, count, free_count, last, origin_start; bool set_trimmed = false; void *bitmap; + last = ext4_last_grp_cluster(sb, e4b->bd_group); bitmap = e4b->bd_bitmap; - if (start == 0 && max >= ext4_last_grp_cluster(sb, e4b->bd_group)) + if (start == 0 && max >= last) set_trimmed = true; + origin_start = start; start = max(e4b->bd_info->bb_first_free, start); count = 0; free_count = 0; @@ -6470,7 +6474,10 @@ start = mb_find_next_zero_bit(bitmap, max + 1, start); if (start > max) break; - next = mb_find_next_bit(bitmap, max + 1, start); + + next = mb_find_next_bit(bitmap, last + 1, start); + if (origin_start == 0 && next >= last) + set_trimmed = true; if ((next - start) >= minblocks) { int ret = ext4_trim_extent(sb, start, next - start, e4b); diff -u linux-xilinx-zynqmp-5.15.0/fs/ext4/resize.c linux-xilinx-zynqmp-5.15.0/fs/ext4/resize.c --- linux-xilinx-zynqmp-5.15.0/fs/ext4/resize.c +++ linux-xilinx-zynqmp-5.15.0/fs/ext4/resize.c @@ -227,17 +227,24 @@ in the flex group */ __u16 *bg_flags; /* block group flags of groups in @groups */ + ext4_group_t resize_bg; /* number of allocated + new_group_data */ ext4_group_t count; /* number of groups in @groups */ }; /* + * Avoiding memory allocation failures due to too many groups added each time. + */ +#define MAX_RESIZE_BG 16384 + +/* * alloc_flex_gd() allocates a ext4_new_flex_group_data with size of * @flexbg_size. * * Returns NULL on failure otherwise address of the allocated structure. */ -static struct ext4_new_flex_group_data *alloc_flex_gd(unsigned long flexbg_size) +static struct ext4_new_flex_group_data *alloc_flex_gd(unsigned int flexbg_size) { struct ext4_new_flex_group_data *flex_gd; @@ -245,17 +252,18 @@ if (flex_gd == NULL) goto out3; - if (flexbg_size >= UINT_MAX / sizeof(struct ext4_new_group_data)) - goto out2; - flex_gd->count = flexbg_size; + if (unlikely(flexbg_size > MAX_RESIZE_BG)) + flex_gd->resize_bg = MAX_RESIZE_BG; + else + flex_gd->resize_bg = flexbg_size; - flex_gd->groups = kmalloc_array(flexbg_size, + flex_gd->groups = kmalloc_array(flex_gd->resize_bg, sizeof(struct ext4_new_group_data), GFP_NOFS); if (flex_gd->groups == NULL) goto out2; - flex_gd->bg_flags = kmalloc_array(flexbg_size, sizeof(__u16), + flex_gd->bg_flags = kmalloc_array(flex_gd->resize_bg, sizeof(__u16), GFP_NOFS); if (flex_gd->bg_flags == NULL) goto out1; @@ -292,7 +300,7 @@ */ static int ext4_alloc_group_tables(struct super_block *sb, struct ext4_new_flex_group_data *flex_gd, - int flexbg_size) + unsigned int flexbg_size) { struct ext4_new_group_data *group_data = flex_gd->groups; ext4_fsblk_t start_blk; @@ -393,12 +401,12 @@ group = group_data[0].group; printk(KERN_DEBUG "EXT4-fs: adding a flex group with " - "%d groups, flexbg size is %d:\n", flex_gd->count, + "%u groups, flexbg size is %u:\n", flex_gd->count, flexbg_size); for (i = 0; i < flex_gd->count; i++) { ext4_debug( - "adding %s group %u: %u blocks (%d free, %d mdata blocks)\n", + "adding %s group %u: %u blocks (%u free, %u mdata blocks)\n", ext4_bg_has_super(sb, group + i) ? "normal" : "no-super", group + i, group_data[i].blocks_count, @@ -556,13 +564,8 @@ 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 +1179,10 @@ 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 +1573,8 @@ 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 +1586,8 @@ 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; } } @@ -1590,8 +1597,7 @@ static int ext4_setup_next_flex_gd(struct super_block *sb, struct ext4_new_flex_group_data *flex_gd, - ext4_fsblk_t n_blocks_count, - unsigned long flexbg_size) + ext4_fsblk_t n_blocks_count) { struct ext4_sb_info *sbi = EXT4_SB(sb); struct ext4_super_block *es = sbi->s_es; @@ -1615,7 +1621,7 @@ BUG_ON(last); ext4_get_group_no_and_offset(sb, n_blocks_count - 1, &n_group, &last); - last_group = group | (flexbg_size - 1); + last_group = group | (flex_gd->resize_bg - 1); if (last_group > n_group) last_group = n_group; @@ -1949,9 +1955,7 @@ 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"); @@ -1979,8 +1983,9 @@ ext4_fsblk_t o_blocks_count; ext4_fsblk_t n_blocks_count_retry = 0; unsigned long last_update_time = 0; - int err = 0, flexbg_size = 1 << sbi->s_log_groups_per_flex; + int err = 0; int meta_bg; + unsigned int flexbg_size = ext4_flex_bg_size(sbi); /* See if the device is actually as big as what was requested */ bh = ext4_sb_bread(sb, n_blocks_count - 1, 0); @@ -2121,8 +2126,7 @@ /* Add flex groups. Note that a regular group is a * flex group with 1 group. */ - while (ext4_setup_next_flex_gd(sb, flex_gd, n_blocks_count, - flexbg_size)) { + while (ext4_setup_next_flex_gd(sb, flex_gd, n_blocks_count)) { if (jiffies - last_update_time > HZ * 10) { if (last_update_time) ext4_msg(sb, KERN_INFO, diff -u linux-xilinx-zynqmp-5.15.0/fs/f2fs/compress.c linux-xilinx-zynqmp-5.15.0/fs/f2fs/compress.c --- linux-xilinx-zynqmp-5.15.0/fs/f2fs/compress.c +++ linux-xilinx-zynqmp-5.15.0/fs/f2fs/compress.c @@ -1037,8 +1037,10 @@ int i; for (i = 0; i < cc->cluster_size; i++) - if (cc->rpages[i]) + if (cc->rpages[i]) { set_page_dirty(cc->rpages[i]); + set_page_private_gcing(cc->rpages[i]); + } } static int prepare_compress_overwrite(struct compress_ctx *cc, @@ -1906,7 +1908,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/f2fs/data.c linux-xilinx-zynqmp-5.15.0/fs/f2fs/data.c --- linux-xilinx-zynqmp-5.15.0/fs/f2fs/data.c +++ linux-xilinx-zynqmp-5.15.0/fs/f2fs/data.c @@ -2253,8 +2253,10 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/f2fs/file.c linux-xilinx-zynqmp-5.15.0/fs/f2fs/file.c --- linux-xilinx-zynqmp-5.15.0/fs/f2fs/file.c +++ linux-xilinx-zynqmp-5.15.0/fs/f2fs/file.c @@ -41,7 +41,7 @@ vm_fault_t ret; ret = filemap_fault(vmf); - if (!ret) + if (ret & VM_FAULT_LOCKED) f2fs_update_iostat(F2FS_I_SB(inode), APP_MAPPED_READ_IO, F2FS_BLKSIZE); @@ -1278,6 +1278,7 @@ } f2fs_copy_page(psrc, pdst); set_page_dirty(pdst); + set_page_private_gcing(pdst); f2fs_put_page(pdst, 1); f2fs_put_page(psrc, 1); @@ -2780,6 +2781,11 @@ goto out; } + if (f2fs_compressed_file(src) || f2fs_compressed_file(dst)) { + ret = -EOPNOTSUPP; + goto out_unlock; + } + ret = -EINVAL; if (pos_in + len > src->i_size || pos_in + len < pos_in) goto out_unlock; @@ -3210,6 +3216,7 @@ 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; @@ -3975,6 +3982,7 @@ break; } set_page_dirty(page); + set_page_private_gcing(page); f2fs_put_page(page, 1); f2fs_put_page(page, 0); } @@ -4249,6 +4257,8 @@ { struct file *file = iocb->ki_filp; struct inode *inode = file_inode(file); + const loff_t orig_pos = iocb->ki_pos; + const size_t orig_count = iov_iter_count(from); ssize_t ret; if (unlikely(f2fs_cp_error(F2FS_I_SB(inode)))) { @@ -4352,8 +4362,7 @@ unlock: inode_unlock(inode); out: - trace_f2fs_file_write_iter(inode, iocb->ki_pos, - iov_iter_count(from), ret); + trace_f2fs_file_write_iter(inode, orig_pos, orig_count, ret); if (ret > 0) ret = generic_write_sync(iocb, ret); return ret; diff -u linux-xilinx-zynqmp-5.15.0/fs/f2fs/namei.c linux-xilinx-zynqmp-5.15.0/fs/f2fs/namei.c --- linux-xilinx-zynqmp-5.15.0/fs/f2fs/namei.c +++ linux-xilinx-zynqmp-5.15.0/fs/f2fs/namei.c @@ -1088,7 +1088,7 @@ } if (old_dir_entry) { - if (old_dir != new_dir && !whiteout) + if (old_dir != new_dir) f2fs_set_link(old_inode, old_dir_entry, old_dir_page, new_dir); else diff -u linux-xilinx-zynqmp-5.15.0/fs/f2fs/recovery.c linux-xilinx-zynqmp-5.15.0/fs/f2fs/recovery.c --- linux-xilinx-zynqmp-5.15.0/fs/f2fs/recovery.c +++ linux-xilinx-zynqmp-5.15.0/fs/f2fs/recovery.c @@ -657,7 +657,16 @@ */ if (dest == NEW_ADDR) { f2fs_truncate_data_blocks_range(&dn, 1); - f2fs_reserve_new_block(&dn); + do { + err = f2fs_reserve_new_block(&dn); + if (err == -ENOSPC) { + f2fs_bug_on(sbi, 1); + break; + } + } while (err && + IS_ENABLED(CONFIG_F2FS_FAULT_INJECTION)); + if (err) + goto err; continue; } @@ -665,12 +674,14 @@ if (f2fs_is_valid_blkaddr(sbi, dest, META_POR)) { if (src == NULL_ADDR) { - err = f2fs_reserve_new_block(&dn); - while (err && - IS_ENABLED(CONFIG_F2FS_FAULT_INJECTION)) + do { err = f2fs_reserve_new_block(&dn); - /* We should not get -ENOSPC */ - f2fs_bug_on(sbi, err); + if (err == -ENOSPC) { + f2fs_bug_on(sbi, 1); + break; + } + } while (err && + IS_ENABLED(CONFIG_F2FS_FAULT_INJECTION)); if (err) goto err; } @@ -860,6 +871,8 @@ if (!err && fix_curseg_write_pointer && !f2fs_readonly(sbi->sb) && f2fs_sb_has_blkzoned(sbi)) { err = f2fs_fix_curseg_write_pointer(sbi); + if (!err) + err = f2fs_check_write_pointer(sbi); ret = err; } diff -u linux-xilinx-zynqmp-5.15.0/fs/f2fs/super.c linux-xilinx-zynqmp-5.15.0/fs/f2fs/super.c --- linux-xilinx-zynqmp-5.15.0/fs/f2fs/super.c +++ linux-xilinx-zynqmp-5.15.0/fs/f2fs/super.c @@ -540,6 +540,29 @@ } #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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/f2fs/xattr.c linux-xilinx-zynqmp-5.15.0/fs/f2fs/xattr.c --- linux-xilinx-zynqmp-5.15.0/fs/f2fs/xattr.c +++ linux-xilinx-zynqmp-5.15.0/fs/f2fs/xattr.c @@ -745,6 +745,12 @@ memcpy(pval, value, size); last->e_value_size = cpu_to_le16(size); new_hsize += newsize; + /* + * Explicitly add the null terminator. The unused xattr space + * is supposed to always be zeroed, which would make this + * unnecessary, but don't depend on that. + */ + *(u32 *)((u8 *)last + newsize) = 0; } error = write_all_xattrs(inode, new_hsize, base_addr, ipage); diff -u linux-xilinx-zynqmp-5.15.0/fs/fs-writeback.c linux-xilinx-zynqmp-5.15.0/fs/fs-writeback.c --- linux-xilinx-zynqmp-5.15.0/fs/fs-writeback.c +++ linux-xilinx-zynqmp-5.15.0/fs/fs-writeback.c @@ -609,6 +609,24 @@ 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 @@ { struct cgroup_subsys_state *memcg_css; struct inode_switch_wbs_context *isw; - struct inode *inode; int nr; bool restart = false; @@ -643,17 +660,17 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/fuse/fuse_i.h linux-xilinx-zynqmp-5.15.0/fs/fuse/fuse_i.h --- linux-xilinx-zynqmp-5.15.0/fs/fuse/fuse_i.h +++ linux-xilinx-zynqmp-5.15.0/fs/fuse/fuse_i.h @@ -63,6 +63,19 @@ struct fuse_forget_link *next; }; +/* Submount lookup tracking */ +struct fuse_submount_lookup { + /** Refcount */ + refcount_t count; + + /** Unique ID, which identifies the inode between userspace + * and kernel */ + u64 nodeid; + + /** The request used for sending the FORGET message */ + struct fuse_forget_link *forget; +}; + /** FUSE inode */ struct fuse_inode { /** Inode data */ @@ -155,6 +168,8 @@ */ struct fuse_inode_dax *dax; #endif + /** Submount specific lookup tracking */ + struct fuse_submount_lookup *submount_lookup; }; /** FUSE inode state bits */ diff -u linux-xilinx-zynqmp-5.15.0/fs/fuse/inode.c linux-xilinx-zynqmp-5.15.0/fs/fuse/inode.c --- linux-xilinx-zynqmp-5.15.0/fs/fuse/inode.c +++ linux-xilinx-zynqmp-5.15.0/fs/fuse/inode.c @@ -69,6 +69,24 @@ return kzalloc(sizeof(struct fuse_forget_link), GFP_KERNEL_ACCOUNT); } +static struct fuse_submount_lookup *fuse_alloc_submount_lookup(void) +{ + struct fuse_submount_lookup *sl; + + sl = kzalloc(sizeof(struct fuse_submount_lookup), GFP_KERNEL_ACCOUNT); + if (!sl) + return NULL; + sl->forget = fuse_alloc_forget(); + if (!sl->forget) + goto out_free; + + return sl; + +out_free: + kfree(sl); + return NULL; +} + static struct inode *fuse_alloc_inode(struct super_block *sb) { struct fuse_inode *fi; @@ -84,6 +102,7 @@ fi->attr_version = 0; fi->orig_ino = 0; fi->state = 0; + fi->submount_lookup = NULL; mutex_init(&fi->mutex); spin_lock_init(&fi->lock); fi->forget = fuse_alloc_forget(); @@ -114,6 +133,17 @@ kmem_cache_free(fuse_inode_cachep, fi); } +static void fuse_cleanup_submount_lookup(struct fuse_conn *fc, + struct fuse_submount_lookup *sl) +{ + if (!refcount_dec_and_test(&sl->count)) + return; + + fuse_queue_forget(fc, sl->forget, sl->nodeid, 1); + sl->forget = NULL; + kfree(sl); +} + static void fuse_evict_inode(struct inode *inode) { struct fuse_inode *fi = get_fuse_inode(inode); @@ -133,6 +163,11 @@ fi->nlookup); fi->forget = NULL; } + + if (fi->submount_lookup) { + fuse_cleanup_submount_lookup(fc, fi->submount_lookup); + fi->submount_lookup = NULL; + } } if (S_ISREG(inode->i_mode) && !fuse_is_bad(inode)) { WARN_ON(!list_empty(&fi->write_files)); @@ -279,6 +314,13 @@ } } +static void fuse_init_submount_lookup(struct fuse_submount_lookup *sl, + u64 nodeid) +{ + sl->nodeid = nodeid; + refcount_set(&sl->count, 1); +} + static void fuse_init_inode(struct inode *inode, struct fuse_attr *attr) { inode->i_mode = attr->mode & S_IFMT; @@ -336,12 +378,22 @@ */ if (fc->auto_submounts && (attr->flags & FUSE_ATTR_SUBMOUNT) && S_ISDIR(attr->mode)) { + struct fuse_inode *fi; + inode = new_inode(sb); if (!inode) return NULL; fuse_init_inode(inode, attr); - get_fuse_inode(inode)->nodeid = nodeid; + fi = get_fuse_inode(inode); + fi->nodeid = nodeid; + fi->submount_lookup = fuse_alloc_submount_lookup(); + if (!fi->submount_lookup) { + iput(inode); + return NULL; + } + /* Sets nlookup = 1 on fi->submount_lookup->nlookup */ + fuse_init_submount_lookup(fi->submount_lookup, nodeid); inode->i_flags |= S_AUTOMOUNT; goto done; } @@ -364,11 +416,11 @@ iput(inode); goto retry; } -done: fi = get_fuse_inode(inode); spin_lock(&fi->lock); fi->nlookup++; spin_unlock(&fi->lock); +done: fuse_change_attributes(inode, attr, attr_valid, attr_version); return inode; @@ -1380,6 +1432,8 @@ struct super_block *parent_sb = parent_fi->inode.i_sb; struct fuse_attr root_attr; struct inode *root; + struct fuse_submount_lookup *sl; + struct fuse_inode *fi; fuse_sb_defaults(sb); fm->sb = sb; @@ -1402,12 +1456,27 @@ * its nlookup should not be incremented. fuse_iget() does * that, though, so undo it here. */ - get_fuse_inode(root)->nlookup--; + fi = get_fuse_inode(root); + fi->nlookup--; + sb->s_d_op = &fuse_dentry_operations; sb->s_root = d_make_root(root); if (!sb->s_root) return -ENOMEM; + /* + * Grab the parent's submount_lookup pointer and take a + * reference on the shared nlookup from the parent. This is to + * prevent the last forget for this nodeid from getting + * triggered until all users have finished with it. + */ + sl = parent_fi->submount_lookup; + WARN_ON(!sl); + if (sl) { + refcount_inc(&sl->count); + fi->submount_lookup = sl; + } + return 0; } diff -u linux-xilinx-zynqmp-5.15.0/fs/gfs2/inode.c linux-xilinx-zynqmp-5.15.0/fs/gfs2/inode.c --- linux-xilinx-zynqmp-5.15.0/fs/gfs2/inode.c +++ linux-xilinx-zynqmp-5.15.0/fs/gfs2/inode.c @@ -1848,16 +1848,24 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/gfs2/quota.c linux-xilinx-zynqmp-5.15.0/fs/gfs2/quota.c --- linux-xilinx-zynqmp-5.15.0/fs/gfs2/quota.c +++ linux-xilinx-zynqmp-5.15.0/fs/gfs2/quota.c @@ -431,6 +431,17 @@ (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 -u linux-xilinx-zynqmp-5.15.0/fs/gfs2/rgrp.c linux-xilinx-zynqmp-5.15.0/fs/gfs2/rgrp.c --- linux-xilinx-zynqmp-5.15.0/fs/gfs2/rgrp.c +++ linux-xilinx-zynqmp-5.15.0/fs/gfs2/rgrp.c @@ -2316,7 +2316,7 @@ (unsigned long long)rgd->rd_addr, rgd->rd_flags, rgd->rd_free, rgd->rd_free_clone, rgd->rd_dinodes, rgd->rd_requested, rgd->rd_reserved, rgd->rd_extfail_pt); - if (rgd->rd_sbd->sd_args.ar_rgrplvb) { + if (rgd->rd_sbd->sd_args.ar_rgrplvb && rgd->rd_rgl) { struct gfs2_rgrp_lvb *rgl = rgd->rd_rgl; gfs2_print_dbg(seq, "%s L: f:%02x b:%u i:%u\n", fs_id_buf, diff -u linux-xilinx-zynqmp-5.15.0/fs/gfs2/super.c linux-xilinx-zynqmp-5.15.0/fs/gfs2/super.c --- linux-xilinx-zynqmp-5.15.0/fs/gfs2/super.c +++ linux-xilinx-zynqmp-5.15.0/fs/gfs2/super.c @@ -1436,7 +1436,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/hugetlbfs/inode.c linux-xilinx-zynqmp-5.15.0/fs/hugetlbfs/inode.c --- linux-xilinx-zynqmp-5.15.0/fs/hugetlbfs/inode.c +++ linux-xilinx-zynqmp-5.15.0/fs/hugetlbfs/inode.c @@ -135,6 +135,7 @@ loff_t len, vma_len; int ret; struct hstate *h = hstate_file(file); + vm_flags_t vm_flags; /* * vma address alignment (but not the pgoff alignment) has @@ -176,10 +177,20 @@ file_accessed(file); ret = -ENOMEM; + + vm_flags = vma->vm_flags; + /* + * for SHM_HUGETLB, the pages are reserved in the shmget() call so skip + * reserving here. Note: only for SHM hugetlbfs file, the inode + * flag S_PRIVATE is set. + */ + if (inode->i_flags & S_PRIVATE) + vm_flags |= VM_NORESERVE; + if (!hugetlb_reserve_pages(inode, vma->vm_pgoff >> huge_page_order(h), len >> huge_page_shift(h), vma, - vma->vm_flags)) + vm_flags)) goto out; ret = 0; diff -u linux-xilinx-zynqmp-5.15.0/fs/inode.c linux-xilinx-zynqmp-5.15.0/fs/inode.c --- linux-xilinx-zynqmp-5.15.0/fs/inode.c +++ linux-xilinx-zynqmp-5.15.0/fs/inode.c @@ -2336,6 +2336,22 @@ 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 * @inode: inode to check diff -u linux-xilinx-zynqmp-5.15.0/fs/ioctl.c linux-xilinx-zynqmp-5.15.0/fs/ioctl.c --- linux-xilinx-zynqmp-5.15.0/fs/ioctl.c +++ linux-xilinx-zynqmp-5.15.0/fs/ioctl.c @@ -920,8 +920,7 @@ if (!f.file) return -EBADF; - /* RED-PEN how should LSM module know it's handling 32bit? */ - error = security_file_ioctl(f.file, cmd, arg); + error = security_file_ioctl_compat(f.file, cmd, arg); if (error) goto out; diff -u linux-xilinx-zynqmp-5.15.0/fs/iomap/direct-io.c linux-xilinx-zynqmp-5.15.0/fs/iomap/direct-io.c --- linux-xilinx-zynqmp-5.15.0/fs/iomap/direct-io.c +++ linux-xilinx-zynqmp-5.15.0/fs/iomap/direct-io.c @@ -92,7 +92,6 @@ if (offset + ret > dio->i_size && !(dio->flags & IOMAP_DIO_WRITE)) ret = dio->i_size - offset; - iocb->ki_pos += ret; } /* @@ -118,18 +117,19 @@ } 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 -u linux-xilinx-zynqmp-5.15.0/fs/jbd2/commit.c linux-xilinx-zynqmp-5.15.0/fs/jbd2/commit.c --- linux-xilinx-zynqmp-5.15.0/fs/jbd2/commit.c +++ linux-xilinx-zynqmp-5.15.0/fs/jbd2/commit.c @@ -300,6 +300,7 @@ if (!ret) ret = err; } + cond_resched(); spin_lock(&journal->j_list_lock); jinode->i_flags &= ~JI_COMMIT_RUNNING; smp_mb(); diff -u linux-xilinx-zynqmp-5.15.0/fs/jbd2/journal.c linux-xilinx-zynqmp-5.15.0/fs/jbd2/journal.c --- linux-xilinx-zynqmp-5.15.0/fs/jbd2/journal.c +++ linux-xilinx-zynqmp-5.15.0/fs/jbd2/journal.c @@ -1616,9 +1616,11 @@ return -EIO; } - trace_jbd2_write_superblock(journal, write_flags); if (!(journal->j_flags & JBD2_BARRIER)) write_flags &= ~(REQ_FUA | REQ_PREFLUSH); + + trace_jbd2_write_superblock(journal, write_flags); + if (buffer_write_io_error(bh)) { /* * Oh, dear. A previous attempt to write the journal diff -u linux-xilinx-zynqmp-5.15.0/fs/jbd2/recovery.c linux-xilinx-zynqmp-5.15.0/fs/jbd2/recovery.c --- linux-xilinx-zynqmp-5.15.0/fs/jbd2/recovery.c +++ linux-xilinx-zynqmp-5.15.0/fs/jbd2/recovery.c @@ -283,6 +283,8 @@ 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; @@ -300,6 +302,9 @@ 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); @@ -320,6 +325,9 @@ 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 */ if (journal->j_flags & JBD2_BARRIER) { err2 = blkdev_issue_flush(journal->j_fs_dev); diff -u linux-xilinx-zynqmp-5.15.0/fs/jfs/jfs_dmap.c linux-xilinx-zynqmp-5.15.0/fs/jfs/jfs_dmap.c --- linux-xilinx-zynqmp-5.15.0/fs/jfs/jfs_dmap.c +++ linux-xilinx-zynqmp-5.15.0/fs/jfs/jfs_dmap.c @@ -63,10 +63,10 @@ */ static void dbAllocBits(struct bmap * bmp, struct dmap * dp, s64 blkno, int nblocks); -static void dbSplit(dmtree_t * tp, int leafno, int splitsz, int newval); -static int dbBackSplit(dmtree_t * tp, int leafno); -static int dbJoin(dmtree_t * tp, int leafno, int newval); -static void dbAdjTree(dmtree_t * tp, int leafno, int newval); +static void dbSplit(dmtree_t *tp, int leafno, int splitsz, int newval, bool is_ctl); +static int dbBackSplit(dmtree_t *tp, int leafno, bool is_ctl); +static int dbJoin(dmtree_t *tp, int leafno, int newval, bool is_ctl); +static void dbAdjTree(dmtree_t *tp, int leafno, int newval, bool is_ctl); static int dbAdjCtl(struct bmap * bmp, s64 blkno, int newval, int alloc, int level); static int dbAllocAny(struct bmap * bmp, s64 nblocks, int l2nb, s64 * results); @@ -87,7 +87,7 @@ 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 @@ 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 @@ 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); @@ -1778,7 +1785,7 @@ * 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. */ @@ -2025,7 +2032,7 @@ * 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) @@ -2164,7 +2171,7 @@ * system. */ if (dp->tree.stree[word] == NOFREE) - dbBackSplit((dmtree_t *) & dp->tree, word); + dbBackSplit((dmtree_t *)&dp->tree, word, false); dbAllocBits(bmp, dp, blkno, nblocks); } @@ -2250,7 +2257,7 @@ * the binary system of the leaves if need be. */ dbSplit(tp, word, BUDMIN, - dbMaxBud((u8 *) & dp->wmap[word])); + dbMaxBud((u8 *)&dp->wmap[word]), false); word += 1; } else { @@ -2290,7 +2297,7 @@ * system of the leaves to reflect the current * allocation (size). */ - dbSplit(tp, word, size, NOFREE); + dbSplit(tp, word, size, NOFREE, false); /* get the number of dmap words handled */ nw = BUDSIZE(size, BUDMIN); @@ -2397,7 +2404,7 @@ /* update the leaf for this dmap word. */ rc = dbJoin(tp, word, - dbMaxBud((u8 *) & dp->wmap[word])); + dbMaxBud((u8 *)&dp->wmap[word]), false); if (rc) return rc; @@ -2430,7 +2437,7 @@ /* update the leaf. */ - rc = dbJoin(tp, word, size); + rc = dbJoin(tp, word, size, false); if (rc) return rc; @@ -2582,16 +2589,16 @@ * that it is at the front of a binary buddy system. */ if (oldval == NOFREE) { - rc = dbBackSplit((dmtree_t *) dcp, leafno); + rc = dbBackSplit((dmtree_t *)dcp, leafno, true); if (rc) { release_metapage(mp); return rc; } oldval = dcp->stree[ti]; } - dbSplit((dmtree_t *) dcp, leafno, dcp->budmin, newval); + dbSplit((dmtree_t *) dcp, leafno, dcp->budmin, newval, true); } else { - rc = dbJoin((dmtree_t *) dcp, leafno, newval); + rc = dbJoin((dmtree_t *) dcp, leafno, newval, true); if (rc) { release_metapage(mp); return rc; @@ -2622,7 +2629,7 @@ */ if (alloc) { dbJoin((dmtree_t *) dcp, leafno, - oldval); + oldval, true); } else { /* the dbJoin() above might have * caused a larger binary buddy system @@ -2632,9 +2639,9 @@ */ if (dcp->stree[ti] == NOFREE) dbBackSplit((dmtree_t *) - dcp, leafno); + dcp, leafno, true); dbSplit((dmtree_t *) dcp, leafno, - dcp->budmin, oldval); + dcp->budmin, oldval, true); } /* release the buffer and return the error. @@ -2682,7 +2689,7 @@ * * serialization: IREAD_LOCK(ipbmap) or IWRITE_LOCK(ipbmap) held on entry/exit; */ -static void dbSplit(dmtree_t * tp, int leafno, int splitsz, int newval) +static void dbSplit(dmtree_t *tp, int leafno, int splitsz, int newval, bool is_ctl) { int budsz; int cursz; @@ -2704,7 +2711,7 @@ while (cursz >= splitsz) { /* update the buddy's leaf with its new value. */ - dbAdjTree(tp, leafno ^ budsz, cursz); + dbAdjTree(tp, leafno ^ budsz, cursz, is_ctl); /* on to the next size and buddy. */ @@ -2716,7 +2723,7 @@ /* adjust the dmap tree to reflect the specified leaf's new * value. */ - dbAdjTree(tp, leafno, newval); + dbAdjTree(tp, leafno, newval, is_ctl); } @@ -2747,7 +2754,7 @@ * * serialization: IREAD_LOCK(ipbmap) or IWRITE_LOCK(ipbmap) held on entry/exit; */ -static int dbBackSplit(dmtree_t * tp, int leafno) +static int dbBackSplit(dmtree_t *tp, int leafno, bool is_ctl) { int budsz, bud, w, bsz, size; int cursz; @@ -2798,7 +2805,7 @@ * system in two. */ cursz = leaf[bud] - 1; - dbSplit(tp, bud, cursz, cursz); + dbSplit(tp, bud, cursz, cursz, is_ctl); break; } } @@ -2826,7 +2833,7 @@ * * RETURN VALUES: none */ -static int dbJoin(dmtree_t * tp, int leafno, int newval) +static int dbJoin(dmtree_t *tp, int leafno, int newval, bool is_ctl) { int budsz, buddy; s8 *leaf; @@ -2881,12 +2888,12 @@ if (leafno < buddy) { /* leafno is the left buddy. */ - dbAdjTree(tp, buddy, NOFREE); + dbAdjTree(tp, buddy, NOFREE, is_ctl); } else { /* buddy is the left buddy and becomes * leafno. */ - dbAdjTree(tp, leafno, NOFREE); + dbAdjTree(tp, leafno, NOFREE, is_ctl); leafno = buddy; } @@ -2899,7 +2906,7 @@ /* update the leaf value. */ - dbAdjTree(tp, leafno, newval); + dbAdjTree(tp, leafno, newval, is_ctl); return 0; } @@ -2920,15 +2927,20 @@ * * RETURN VALUES: none */ -static void dbAdjTree(dmtree_t * tp, int leafno, int newval) +static void dbAdjTree(dmtree_t *tp, int leafno, int newval, bool is_ctl) { int lp, pp, k; - int max; + int max, size; + + size = is_ctl ? CTLTREESIZE : TREESIZE; /* pick up the index of the leaf for this leafno. */ lp = leafno + le32_to_cpu(tp->dmt_leafidx); + if (WARN_ON_ONCE(lp >= size || lp < 0)) + return; + /* is the current value the same as the old value ? if so, * there is nothing to do. */ @@ -2989,14 +3001,18 @@ * 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. @@ -3017,6 +3033,8 @@ /* 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 -u linux-xilinx-zynqmp-5.15.0/fs/jfs/jfs_imap.c linux-xilinx-zynqmp-5.15.0/fs/jfs/jfs_imap.c --- linux-xilinx-zynqmp-5.15.0/fs/jfs/jfs_imap.c +++ linux-xilinx-zynqmp-5.15.0/fs/jfs/jfs_imap.c @@ -1320,7 +1320,7 @@ 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; @@ -1356,6 +1356,9 @@ /* 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])) { /* @@ -2176,6 +2179,9 @@ /* get the ag and iag numbers for this iag. */ agno = BLKTOAG(le64_to_cpu(iagp->agstart), sbi); + if (agno >= MAXAG || agno < 0) + return -EIO; + iagno = le32_to_cpu(iagp->iagnum); /* check if this is the last free extent within the diff -u linux-xilinx-zynqmp-5.15.0/fs/jfs/jfs_mount.c linux-xilinx-zynqmp-5.15.0/fs/jfs/jfs_mount.c --- linux-xilinx-zynqmp-5.15.0/fs/jfs/jfs_mount.c +++ linux-xilinx-zynqmp-5.15.0/fs/jfs/jfs_mount.c @@ -172,15 +172,15 @@ } jfs_info("jfs_mount: ipimap:0x%p", ipimap); - /* map further access of per fileset inodes by the fileset inode */ - sbi->ipimap = ipimap; - /* initialize fileset inode allocation map */ if ((rc = diMount(ipimap))) { jfs_err("jfs_mount: diMount failed w/rc = %d", rc); goto err_ipimap; } + /* map further access of per fileset inodes by the fileset inode */ + sbi->ipimap = ipimap; + return rc; /* diff -u linux-xilinx-zynqmp-5.15.0/fs/kernfs/dir.c linux-xilinx-zynqmp-5.15.0/fs/kernfs/dir.c --- linux-xilinx-zynqmp-5.15.0/fs/kernfs/dir.c +++ linux-xilinx-zynqmp-5.15.0/fs/kernfs/dir.c @@ -654,6 +654,18 @@ { struct kernfs_node *kn; + if (parent->mode & S_ISGID) { + /* this code block imitates inode_init_owner() for + * kernfs + */ + + if (parent->iattr) + gid = parent->iattr->ia_gid; + + if (flags & KERNFS_DIR) + mode |= S_ISGID; + } + kn = __kernfs_new_node(kernfs_root(parent), parent, name, mode, uid, gid, flags); if (kn) { diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/Kconfig linux-xilinx-zynqmp-5.15.0/fs/ksmbd/Kconfig --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/Kconfig +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/Kconfig @@ -1,12 +1,11 @@ config SMB_SERVER - tristate "SMB3 server support (EXPERIMENTAL)" + tristate "SMB3 server support" depends on INET depends on MULTIUSER depends on FILE_LOCKING select NLS select NLS_UTF8 select CRYPTO - select CRYPTO_MD4 select CRYPTO_MD5 select CRYPTO_HMAC select CRYPTO_ECB @@ -34,14 +33,16 @@ in ksmbd-tools, available from https://github.com/cifsd-team/ksmbd-tools. More detail about how to run the ksmbd kernel server is - available via README file + available via the README file (https://github.com/cifsd-team/ksmbd-tools/blob/master/README). ksmbd kernel server includes support for auto-negotiation, Secure negotiate, Pre-authentication integrity, oplock/lease, compound requests, multi-credit, packet signing, RDMA(smbdirect), smb3 encryption, copy-offload, secure per-user session - establishment via NTLM or NTLMv2. + establishment via Kerberos or NTLMv2. + +if SMB_SERVER config SMB_SERVER_SMBDIRECT bool "Support for SMB Direct protocol" @@ -55,6 +56,8 @@ SMB Direct allows transferring SMB packets over RDMA. If unsure, say N. +endif + config SMB_SERVER_CHECK_CAP_NET_ADMIN bool "Enable check network administration capability" depends on SMB_SERVER diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/auth.c linux-xilinx-zynqmp-5.15.0/fs/ksmbd/auth.c --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/auth.c +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/auth.c @@ -29,6 +29,7 @@ #include "mgmt/user_config.h" #include "crypto_ctx.h" #include "transport_ipc.h" +#include "../smbfs_common/arc4.h" /* * Fixed format data defining GSS header and fixed string @@ -342,6 +343,32 @@ nt_len - CIFS_ENCPWD_SIZE, domain_name, conn->ntlmssp.cryptkey); kfree(domain_name); + + /* The recovered secondary session key */ + if (conn->ntlmssp.client_flags & NTLMSSP_NEGOTIATE_KEY_XCH) { + struct arc4_ctx *ctx_arc4; + unsigned int sess_key_off, sess_key_len; + + sess_key_off = le32_to_cpu(authblob->SessionKey.BufferOffset); + sess_key_len = le16_to_cpu(authblob->SessionKey.Length); + + if (blob_len < (u64)sess_key_off + sess_key_len) + return -EINVAL; + + if (sess_key_len > CIFS_KEY_SIZE) + return -EINVAL; + + ctx_arc4 = kmalloc(sizeof(*ctx_arc4), GFP_KERNEL); + if (!ctx_arc4) + return -ENOMEM; + + cifs_arc4_setkey(ctx_arc4, sess->sess_key, + SMB2_NTLMV2_SESSKEY_SIZE); + cifs_arc4_crypt(ctx_arc4, sess->sess_key, + (char *)authblob + sess_key_off, sess_key_len); + kfree_sensitive(ctx_arc4); + } + return ret; } @@ -404,6 +431,9 @@ NTLMSSP_NEGOTIATE_56); } + if (cflags & NTLMSSP_NEGOTIATE_SEAL && smb3_encryption_negotiated(conn)) + flags |= NTLMSSP_NEGOTIATE_SEAL; + if (cflags & NTLMSSP_NEGOTIATE_ALWAYS_SIGN) flags |= NTLMSSP_NEGOTIATE_ALWAYS_SIGN; @@ -414,6 +444,9 @@ (cflags & NTLMSSP_NEGOTIATE_EXTENDED_SEC)) flags |= NTLMSSP_NEGOTIATE_EXTENDED_SEC; + if (cflags & NTLMSSP_NEGOTIATE_KEY_XCH) + flags |= NTLMSSP_NEGOTIATE_KEY_XCH; + chgblob->NegotiateFlags = cpu_to_le32(flags); len = strlen(ksmbd_netbios_name()); name = kmalloc(2 + UNICODE_LEN(len), GFP_KERNEL); @@ -700,8 +733,9 @@ goto smb3signkey_ret; } - if (conn->cipher_type == SMB2_ENCRYPTION_AES256_CCM || - conn->cipher_type == SMB2_ENCRYPTION_AES256_GCM) + if (key_size == SMB3_ENC_DEC_KEY_SIZE && + (conn->cipher_type == SMB2_ENCRYPTION_AES256_CCM || + conn->cipher_type == SMB2_ENCRYPTION_AES256_GCM)) rc = crypto_shash_update(CRYPTO_HMACSHA256(ctx), L256, 4); else rc = crypto_shash_update(CRYPTO_HMACSHA256(ctx), L128, 4); @@ -884,9 +918,9 @@ __u8 *pi_hash) { int rc; - struct smb2_hdr *rcv_hdr = (struct smb2_hdr *)buf; + struct smb2_hdr *rcv_hdr = smb2_get_msg(buf); char *all_bytes_msg = (char *)&rcv_hdr->ProtocolId; - int msg_size = be32_to_cpu(rcv_hdr->smb2_buf_length); + int msg_size = get_rfc1002_len(buf); struct ksmbd_crypto_ctx *ctx = NULL; if (conn->preauth_info->Preauth_HashId != @@ -961,13 +995,16 @@ return rc; } -static int ksmbd_get_encryption_key(struct ksmbd_conn *conn, __u64 ses_id, +static int ksmbd_get_encryption_key(struct ksmbd_work *work, __u64 ses_id, int enc, u8 *key) { struct ksmbd_session *sess; u8 *ses_enc_key; - sess = ksmbd_session_lookup_all(conn, ses_id); + if (enc) + sess = work->sess; + else + sess = ksmbd_session_lookup_all(work->conn, ses_id); if (!sess) return -EINVAL; @@ -994,12 +1031,16 @@ u8 *sign) { struct scatterlist *sg; - unsigned int assoc_data_len = sizeof(struct smb2_transform_hdr) - 24; - int i, nr_entries[3] = {0}, total_entries = 0, sg_idx = 0; + unsigned int assoc_data_len = sizeof(struct smb2_transform_hdr) - 20; + int i, *nr_entries, total_entries = 0, sg_idx = 0; if (!nvec) return NULL; + nr_entries = kcalloc(nvec, sizeof(int), GFP_KERNEL); + if (!nr_entries) + return NULL; + for (i = 0; i < nvec - 1; i++) { unsigned long kaddr = (unsigned long)iov[i + 1].iov_base; @@ -1017,8 +1058,10 @@ total_entries += 2; sg = kmalloc_array(total_entries, sizeof(struct scatterlist), GFP_KERNEL); - if (!sg) + if (!sg) { + kfree(nr_entries); return NULL; + } sg_init_table(sg, total_entries); smb2_sg_set_buf(&sg[sg_idx++], iov[0].iov_base + 24, assoc_data_len); @@ -1052,15 +1095,16 @@ } } smb2_sg_set_buf(&sg[sg_idx], sign, SMB2_SIGNATURE_SIZE); + kfree(nr_entries); return sg; } -int ksmbd_crypt_message(struct ksmbd_conn *conn, struct kvec *iov, +int ksmbd_crypt_message(struct ksmbd_work *work, struct kvec *iov, unsigned int nvec, int enc) { - struct smb2_transform_hdr *tr_hdr = - (struct smb2_transform_hdr *)iov[0].iov_base; - unsigned int assoc_data_len = sizeof(struct smb2_transform_hdr) - 24; + struct ksmbd_conn *conn = work->conn; + struct smb2_transform_hdr *tr_hdr = smb2_get_msg(iov[0].iov_base); + unsigned int assoc_data_len = sizeof(struct smb2_transform_hdr) - 20; int rc; struct scatterlist *sg; u8 sign[SMB2_SIGNATURE_SIZE] = {}; @@ -1072,7 +1116,7 @@ unsigned int crypt_len = le32_to_cpu(tr_hdr->OriginalMessageSize); struct ksmbd_crypto_ctx *ctx; - rc = ksmbd_get_encryption_key(conn, + rc = ksmbd_get_encryption_key(work, le64_to_cpu(tr_hdr->SessionId), enc, key); diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/auth.h linux-xilinx-zynqmp-5.15.0/fs/ksmbd/auth.h --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/auth.h +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/auth.h @@ -33,9 +33,10 @@ struct ksmbd_session; struct ksmbd_conn; +struct ksmbd_work; struct kvec; -int ksmbd_crypt_message(struct ksmbd_conn *conn, struct kvec *iov, +int ksmbd_crypt_message(struct ksmbd_work *work, struct kvec *iov, unsigned int nvec, int enc); void ksmbd_copy_gss_neg_header(void *buf); int ksmbd_auth_ntlmv2(struct ksmbd_conn *conn, struct ksmbd_session *sess, diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/connection.c linux-xilinx-zynqmp-5.15.0/fs/ksmbd/connection.c --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/connection.c +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/connection.c @@ -20,7 +20,7 @@ static struct ksmbd_conn_ops default_conn_ops; LIST_HEAD(conn_list); -DEFINE_RWLOCK(conn_list_lock); +DECLARE_RWSEM(conn_list_lock); /** * ksmbd_conn_free() - free resources of the connection instance @@ -32,9 +32,9 @@ */ void ksmbd_conn_free(struct ksmbd_conn *conn) { - write_lock(&conn_list_lock); + down_write(&conn_list_lock); list_del(&conn->conns_list); - write_unlock(&conn_list_lock); + up_write(&conn_list_lock); xa_destroy(&conn->sessions); kvfree(conn->request_buf); @@ -60,12 +60,19 @@ conn->local_nls = load_nls("utf8"); if (!conn->local_nls) conn->local_nls = load_nls_default(); + if (IS_ENABLED(CONFIG_UNICODE)) + conn->um = utf8_load("12.1.0"); + else + conn->um = ERR_PTR(-EOPNOTSUPP); + if (IS_ERR(conn->um)) + conn->um = NULL; atomic_set(&conn->req_running, 0); atomic_set(&conn->r_count, 0); conn->total_credits = 1; conn->outstanding_credits = 0; init_waitqueue_head(&conn->req_running_q); + init_waitqueue_head(&conn->r_count_q); INIT_LIST_HEAD(&conn->conns_list); INIT_LIST_HEAD(&conn->requests); INIT_LIST_HEAD(&conn->async_requests); @@ -77,9 +84,11 @@ spin_lock_init(&conn->llist_lock); INIT_LIST_HEAD(&conn->lock_list); - write_lock(&conn_list_lock); + init_rwsem(&conn->session_lock); + + down_write(&conn_list_lock); list_add(&conn->conns_list, &conn_list); - write_unlock(&conn_list_lock); + up_write(&conn_list_lock); return conn; } @@ -88,7 +97,7 @@ struct ksmbd_conn *t; bool ret = false; - read_lock(&conn_list_lock); + down_read(&conn_list_lock); list_for_each_entry(t, &conn_list, conns_list) { if (memcmp(t->ClientGUID, c->ClientGUID, SMB2_CLIENT_GUID_SIZE)) continue; @@ -96,7 +105,7 @@ ret = true; break; } - read_unlock(&conn_list_lock); + up_read(&conn_list_lock); return ret; } @@ -105,10 +114,8 @@ struct ksmbd_conn *conn = work->conn; struct list_head *requests_queue = NULL; - if (conn->ops->get_cmd_val(work) != SMB2_CANCEL_HE) { + if (conn->ops->get_cmd_val(work) != SMB2_CANCEL_HE) requests_queue = &conn->requests; - work->syncronous = true; - } if (requests_queue) { atomic_inc(&conn->req_running); @@ -118,28 +125,22 @@ } } -int ksmbd_conn_try_dequeue_request(struct ksmbd_work *work) +void ksmbd_conn_try_dequeue_request(struct ksmbd_work *work) { struct ksmbd_conn *conn = work->conn; - int ret = 1; if (list_empty(&work->request_entry) && list_empty(&work->async_request_entry)) - return 0; + return; - if (!work->multiRsp) - atomic_dec(&conn->req_running); + atomic_dec(&conn->req_running); spin_lock(&conn->request_lock); - if (!work->multiRsp) { - list_del_init(&work->request_entry); - if (work->syncronous == false) - list_del_init(&work->async_request_entry); - ret = 0; - } + list_del_init(&work->request_entry); spin_unlock(&conn->request_lock); + if (work->asynchronous) + release_async_work(work); wake_up_all(&conn->req_running_q); - return ret; } void ksmbd_conn_lock(struct ksmbd_conn *conn) @@ -152,7 +153,19 @@ mutex_unlock(&conn->srv_mutex); } -void ksmbd_conn_wait_idle(struct ksmbd_conn *conn) +void ksmbd_all_conn_set_status(u64 sess_id, u32 status) +{ + struct ksmbd_conn *conn; + + down_read(&conn_list_lock); + list_for_each_entry(conn, &conn_list, conns_list) { + if (conn->binding || xa_load(&conn->sessions, sess_id)) + WRITE_ONCE(conn->status, status); + } + up_read(&conn_list_lock); +} + +void ksmbd_conn_wait_idle(struct ksmbd_conn *conn, u64 sess_id) { wait_event(conn->req_running_q, atomic_read(&conn->req_running) < 2); } @@ -160,43 +173,25 @@ int ksmbd_conn_write(struct ksmbd_work *work) { struct ksmbd_conn *conn = work->conn; - struct smb_hdr *rsp_hdr = work->response_buf; - size_t len = 0; int sent; - struct kvec iov[3]; - int iov_idx = 0; - ksmbd_conn_try_dequeue_request(work); - if (!rsp_hdr) { + if (!work->response_buf) { pr_err("NULL response header\n"); return -EINVAL; } - if (work->tr_buf) { - iov[iov_idx] = (struct kvec) { work->tr_buf, - sizeof(struct smb2_transform_hdr) }; - len += iov[iov_idx++].iov_len; - } + if (work->send_no_response) + return 0; - if (work->aux_payload_sz) { - iov[iov_idx] = (struct kvec) { rsp_hdr, work->resp_hdr_sz }; - len += iov[iov_idx++].iov_len; - iov[iov_idx] = (struct kvec) { work->aux_payload_buf, work->aux_payload_sz }; - len += iov[iov_idx++].iov_len; - } else { - if (work->tr_buf) - iov[iov_idx].iov_len = work->resp_hdr_sz; - else - iov[iov_idx].iov_len = get_rfc1002_len(rsp_hdr) + 4; - iov[iov_idx].iov_base = rsp_hdr; - len += iov[iov_idx++].iov_len; - } + if (!work->iov_idx) + return -EINVAL; ksmbd_conn_lock(conn); - sent = conn->transport->ops->writev(conn->transport, &iov[0], - iov_idx, len, - work->need_invalidate_rkey, - work->remote_key); + sent = conn->transport->ops->writev(conn->transport, work->iov, + work->iov_cnt, + get_rfc1002_len(work->iov[0].iov_base) + 4, + work->need_invalidate_rkey, + work->remote_key); ksmbd_conn_unlock(conn); if (sent < 0) { @@ -207,31 +202,31 @@ return 0; } -int ksmbd_conn_rdma_read(struct ksmbd_conn *conn, void *buf, - unsigned int buflen, u32 remote_key, u64 remote_offset, - u32 remote_len) +int ksmbd_conn_rdma_read(struct ksmbd_conn *conn, + void *buf, unsigned int buflen, + struct smb2_buffer_desc_v1 *desc, + unsigned int desc_len) { int ret = -EINVAL; if (conn->transport->ops->rdma_read) ret = conn->transport->ops->rdma_read(conn->transport, buf, buflen, - remote_key, remote_offset, - remote_len); + desc, desc_len); return ret; } -int ksmbd_conn_rdma_write(struct ksmbd_conn *conn, void *buf, - unsigned int buflen, u32 remote_key, - u64 remote_offset, u32 remote_len) +int ksmbd_conn_rdma_write(struct ksmbd_conn *conn, + void *buf, unsigned int buflen, + struct smb2_buffer_desc_v1 *desc, + unsigned int desc_len) { int ret = -EINVAL; if (conn->transport->ops->rdma_write) ret = conn->transport->ops->rdma_write(conn->transport, buf, buflen, - remote_key, remote_offset, - remote_len); + desc, desc_len); return ret; } @@ -263,6 +258,9 @@ return true; } +#define SMB1_MIN_SUPPORTED_HEADER_SIZE (sizeof(struct smb_hdr)) +#define SMB2_MIN_SUPPORTED_HEADER_SIZE (sizeof(struct smb2_hdr) + 4) + /** * ksmbd_conn_handler_loop() - session thread to listen on new smb requests * @p: connection instance @@ -286,6 +284,7 @@ goto out; conn->last_active = jiffies; + set_freezable(); while (ksmbd_conn_alive(conn)) { if (try_to_freeze()) continue; @@ -307,7 +306,7 @@ max_allowed_pdu_size = SMB3_MAX_MSGSIZE; if (pdu_size > max_allowed_pdu_size) { - pr_err_ratelimited("PDU length(%u) excceed maximum allowed pdu size(%u) on connection(%d)\n", + pr_err_ratelimited("PDU length(%u) exceeded maximum allowed pdu size(%u) on connection(%d)\n", pdu_size, max_allowed_pdu_size, READ_ONCE(conn->status)); break; @@ -319,6 +318,9 @@ if (pdu_size > MAX_STREAM_PROT_LEN) break; + if (pdu_size < SMB1_MIN_SUPPORTED_HEADER_SIZE) + break; + /* 4 for rfc1002 length field */ /* 1 for implied bcc[0] */ size = pdu_size + 4 + 1; @@ -327,8 +329,6 @@ break; memcpy(conn->request_buf, hdr_buf, sizeof(hdr_buf)); - if (!ksmbd_smb_request(conn)) - break; /* * We already read 4 bytes to find out PDU size, now @@ -346,6 +346,15 @@ continue; } + if (!ksmbd_smb_request(conn)) + break; + + if (((struct smb2_hdr *)smb2_get_msg(conn->request_buf))->ProtocolId == + SMB2_PROTO_NUMBER) { + if (pdu_size < SMB2_MIN_SUPPORTED_HEADER_SIZE) + break; + } + if (!default_conn_ops.process_fn) { pr_err("No connection request callback\n"); break; @@ -358,10 +367,12 @@ } out: + ksmbd_conn_set_releasing(conn); /* Wait till all reference dropped to the Server object*/ - while (atomic_read(&conn->r_count) > 0) - schedule_timeout(HZ); + wait_event(conn->r_count_q, atomic_read(&conn->r_count) == 0); + if (IS_ENABLED(CONFIG_UNICODE)) + utf8_unload(conn->um); unload_nls(conn->local_nls); if (default_conn_ops.terminate_fn) default_conn_ops.terminate_fn(conn); @@ -403,23 +414,17 @@ struct ksmbd_transport *t; again: - read_lock(&conn_list_lock); + down_read(&conn_list_lock); list_for_each_entry(conn, &conn_list, conns_list) { - struct task_struct *task; - t = conn->transport; - task = t->handler; - if (task) - ksmbd_debug(CONN, "Stop session handler %s/%d\n", - task->comm, task_pid_nr(task)); ksmbd_conn_set_exiting(conn); if (t->ops->shutdown) { - read_unlock(&conn_list_lock); + up_read(&conn_list_lock); t->ops->shutdown(t); - read_lock(&conn_list_lock); + down_read(&conn_list_lock); } } - read_unlock(&conn_list_lock); + up_read(&conn_list_lock); if (!list_empty(&conn_list)) { schedule_timeout_interruptible(HZ / 10); /* 100ms */ diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/connection.h linux-xilinx-zynqmp-5.15.0/fs/ksmbd/connection.h --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/connection.h +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/connection.h @@ -14,6 +14,7 @@ #include #include #include +#include #include "smb_common.h" #include "ksmbd_work.h" @@ -25,7 +26,8 @@ KSMBD_SESS_GOOD, KSMBD_SESS_EXITING, KSMBD_SESS_NEED_RECONNECT, - KSMBD_SESS_NEED_NEGOTIATE + KSMBD_SESS_NEED_NEGOTIATE, + KSMBD_SESS_RELEASING }; struct ksmbd_stats { @@ -46,7 +48,9 @@ char *request_buf; struct ksmbd_transport *transport; struct nls_table *local_nls; + struct unicode_map *um; struct list_head conns_list; + struct rw_semaphore session_lock; /* smb session 1 per user */ struct xarray sessions; unsigned long last_active; @@ -58,6 +62,7 @@ unsigned int outstanding_credits; spinlock_t credits_lock; wait_queue_head_t req_running_q; + wait_queue_head_t r_count_q; /* Lock to protect requests list*/ spinlock_t request_lock; struct list_head requests; @@ -83,6 +88,7 @@ __u16 dialect; char *mechToken; + unsigned int mechTokenLen; struct ksmbd_conn_ops *conn_ops; @@ -116,17 +122,19 @@ int (*writev)(struct ksmbd_transport *t, struct kvec *iovs, int niov, int size, bool need_invalidate_rkey, unsigned int remote_key); - int (*rdma_read)(struct ksmbd_transport *t, void *buf, unsigned int len, - u32 remote_key, u64 remote_offset, u32 remote_len); - int (*rdma_write)(struct ksmbd_transport *t, void *buf, - unsigned int len, u32 remote_key, u64 remote_offset, - u32 remote_len); + int (*rdma_read)(struct ksmbd_transport *t, + void *buf, unsigned int len, + struct smb2_buffer_desc_v1 *desc, + unsigned int desc_len); + int (*rdma_write)(struct ksmbd_transport *t, + void *buf, unsigned int len, + struct smb2_buffer_desc_v1 *desc, + unsigned int desc_len); }; struct ksmbd_transport { struct ksmbd_conn *conn; struct ksmbd_transport_ops *ops; - struct task_struct *handler; }; #define KSMBD_TCP_RECV_TIMEOUT (7 * HZ) @@ -134,22 +142,24 @@ #define KSMBD_TCP_PEER_SOCKADDR(c) ((struct sockaddr *)&((c)->peer_addr)) extern struct list_head conn_list; -extern rwlock_t conn_list_lock; +extern struct rw_semaphore conn_list_lock; bool ksmbd_conn_alive(struct ksmbd_conn *conn); -void ksmbd_conn_wait_idle(struct ksmbd_conn *conn); +void ksmbd_conn_wait_idle(struct ksmbd_conn *conn, u64 sess_id); struct ksmbd_conn *ksmbd_conn_alloc(void); void ksmbd_conn_free(struct ksmbd_conn *conn); bool ksmbd_conn_lookup_dialect(struct ksmbd_conn *c); int ksmbd_conn_write(struct ksmbd_work *work); -int ksmbd_conn_rdma_read(struct ksmbd_conn *conn, void *buf, - unsigned int buflen, u32 remote_key, u64 remote_offset, - u32 remote_len); -int ksmbd_conn_rdma_write(struct ksmbd_conn *conn, void *buf, - unsigned int buflen, u32 remote_key, u64 remote_offset, - u32 remote_len); +int ksmbd_conn_rdma_read(struct ksmbd_conn *conn, + void *buf, unsigned int buflen, + struct smb2_buffer_desc_v1 *desc, + unsigned int desc_len); +int ksmbd_conn_rdma_write(struct ksmbd_conn *conn, + void *buf, unsigned int buflen, + struct smb2_buffer_desc_v1 *desc, + unsigned int desc_len); void ksmbd_conn_enqueue_request(struct ksmbd_work *work); -int ksmbd_conn_try_dequeue_request(struct ksmbd_work *work); +void ksmbd_conn_try_dequeue_request(struct ksmbd_work *work); void ksmbd_conn_init_server_callbacks(struct ksmbd_conn_ops *ops); int ksmbd_conn_handler_loop(void *p); int ksmbd_conn_transport_init(void); @@ -183,6 +193,11 @@ return READ_ONCE(conn->status) == KSMBD_SESS_EXITING; } +static inline bool ksmbd_conn_releasing(struct ksmbd_conn *conn) +{ + return READ_ONCE(conn->status) == KSMBD_SESS_RELEASING; +} + static inline void ksmbd_conn_set_new(struct ksmbd_conn *conn) { WRITE_ONCE(conn->status, KSMBD_SESS_NEW); @@ -209,2 +224,9 @@ } + +static inline void ksmbd_conn_set_releasing(struct ksmbd_conn *conn) +{ + WRITE_ONCE(conn->status, KSMBD_SESS_RELEASING); +} + +void ksmbd_all_conn_set_status(u64 sess_id, u32 status); #endif /* __CONNECTION_H__ */ diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/ksmbd_netlink.h linux-xilinx-zynqmp-5.15.0/fs/ksmbd/ksmbd_netlink.h --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/ksmbd_netlink.h +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/ksmbd_netlink.h @@ -74,6 +74,7 @@ #define KSMBD_GLOBAL_FLAG_SMB2_LEASES BIT(0) #define KSMBD_GLOBAL_FLAG_SMB2_ENCRYPTION BIT(1) #define KSMBD_GLOBAL_FLAG_SMB3_MULTICHANNEL BIT(2) +#define KSMBD_GLOBAL_FLAG_SMB2_ENCRYPTION_OFF BIT(3) /* * IPC request for ksmbd server startup @@ -164,7 +165,8 @@ __u16 force_directory_mode; __u16 force_uid; __u16 force_gid; - __u32 reserved[128]; /* Reserved room */ + __s8 share_name[KSMBD_REQ_MAX_SHARE_NAME]; + __u32 reserved[112]; /* Reserved room */ __u32 veto_list_sz; __s8 ____payload[]; }; @@ -302,7 +304,8 @@ KSMBD_EVENT_SPNEGO_AUTHEN_REQUEST, KSMBD_EVENT_SPNEGO_AUTHEN_RESPONSE = 15, - KSMBD_EVENT_MAX + __KSMBD_EVENT_MAX, + KSMBD_EVENT_MAX = __KSMBD_EVENT_MAX - 1 }; /* @@ -350,6 +353,8 @@ #define KSMBD_SHARE_FLAG_STREAMS BIT(11) #define KSMBD_SHARE_FLAG_FOLLOW_SYMLINKS BIT(12) #define KSMBD_SHARE_FLAG_ACL_XATTR BIT(13) +#define KSMBD_SHARE_FLAG_UPDATE BIT(14) +#define KSMBD_SHARE_FLAG_CROSSMNT BIT(15) /* * Tree connect request flags. @@ -365,6 +370,7 @@ #define KSMBD_TREE_CONN_FLAG_READ_ONLY BIT(1) #define KSMBD_TREE_CONN_FLAG_WRITABLE BIT(2) #define KSMBD_TREE_CONN_FLAG_ADMIN_ACCOUNT BIT(3) +#define KSMBD_TREE_CONN_FLAG_UPDATE BIT(4) /* * RPC over IPC. diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/mgmt/tree_connect.c linux-xilinx-zynqmp-5.15.0/fs/ksmbd/mgmt/tree_connect.c --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/mgmt/tree_connect.c +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/mgmt/tree_connect.c @@ -17,7 +17,7 @@ struct ksmbd_tree_conn_status ksmbd_tree_conn_connect(struct ksmbd_conn *conn, struct ksmbd_session *sess, - char *share_name) + const char *share_name) { struct ksmbd_tree_conn_status status = {-ENOENT, NULL}; struct ksmbd_tree_connect_response *resp = NULL; @@ -26,7 +26,7 @@ struct sockaddr *peer_addr; int ret; - sc = ksmbd_share_config_get(share_name); + sc = ksmbd_share_config_get(conn->um, share_name); if (!sc) return status; @@ -57,9 +57,26 @@ goto out_error; tree_conn->flags = resp->connection_flags; + if (test_tree_conn_flag(tree_conn, KSMBD_TREE_CONN_FLAG_UPDATE)) { + struct ksmbd_share_config *new_sc; + + ksmbd_share_config_del(sc); + new_sc = ksmbd_share_config_get(conn->um, share_name); + if (!new_sc) { + pr_err("Failed to update stale share config\n"); + status.ret = -ESTALE; + goto out_error; + } + ksmbd_share_config_put(sc); + sc = new_sc; + } + tree_conn->user = sess->user; tree_conn->share_conf = sc; + tree_conn->t_state = TREE_NEW; status.tree_conn = tree_conn; + atomic_set(&tree_conn->refcount, 1); + init_waitqueue_head(&tree_conn->refcount_q); ret = xa_err(xa_store(&sess->tree_conns, tree_conn->id, tree_conn, GFP_KERNEL)); @@ -79,14 +96,33 @@ return status; } +void ksmbd_tree_connect_put(struct ksmbd_tree_connect *tcon) +{ + /* + * Checking waitqueue to releasing tree connect on + * tree disconnect. waitqueue_active is safe because it + * uses atomic operation for condition. + */ + if (!atomic_dec_return(&tcon->refcount) && + waitqueue_active(&tcon->refcount_q)) + wake_up(&tcon->refcount_q); +} + int ksmbd_tree_conn_disconnect(struct ksmbd_session *sess, struct ksmbd_tree_connect *tree_conn) { int ret; + write_lock(&sess->tree_conns_lock); + xa_erase(&sess->tree_conns, tree_conn->id); + write_unlock(&sess->tree_conns_lock); + + if (!atomic_dec_and_test(&tree_conn->refcount)) + wait_event(tree_conn->refcount_q, + atomic_read(&tree_conn->refcount) == 0); + ret = ksmbd_ipc_tree_disconnect_request(sess->id, tree_conn->id); ksmbd_release_tree_conn_id(sess, tree_conn->id); - xa_erase(&sess->tree_conns, tree_conn->id); ksmbd_share_config_put(tree_conn->share_conf); kfree(tree_conn); return ret; @@ -95,18 +131,19 @@ struct ksmbd_tree_connect *ksmbd_tree_conn_lookup(struct ksmbd_session *sess, unsigned int id) { - return xa_load(&sess->tree_conns, id); -} + struct ksmbd_tree_connect *tcon; -struct ksmbd_share_config *ksmbd_tree_conn_share(struct ksmbd_session *sess, - unsigned int id) -{ - struct ksmbd_tree_connect *tc; + read_lock(&sess->tree_conns_lock); + tcon = xa_load(&sess->tree_conns, id); + if (tcon) { + if (tcon->t_state != TREE_CONNECTED) + tcon = NULL; + else if (!atomic_inc_not_zero(&tcon->refcount)) + tcon = NULL; + } + read_unlock(&sess->tree_conns_lock); - tc = ksmbd_tree_conn_lookup(sess, id); - if (tc) - return tc->share_conf; - return NULL; + return tcon; } int ksmbd_tree_conn_session_logoff(struct ksmbd_session *sess) @@ -115,8 +152,21 @@ struct ksmbd_tree_connect *tc; unsigned long id; - xa_for_each(&sess->tree_conns, id, tc) + if (!sess) + return -EINVAL; + + xa_for_each(&sess->tree_conns, id, tc) { + write_lock(&sess->tree_conns_lock); + if (tc->t_state == TREE_DISCONNECTED) { + write_unlock(&sess->tree_conns_lock); + ret = -ENOENT; + continue; + } + tc->t_state = TREE_DISCONNECTED; + write_unlock(&sess->tree_conns_lock); + ret |= ksmbd_tree_conn_disconnect(sess, tc); + } xa_destroy(&sess->tree_conns); return ret; } diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/mgmt/tree_connect.h linux-xilinx-zynqmp-5.15.0/fs/ksmbd/mgmt/tree_connect.h --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/mgmt/tree_connect.h +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/mgmt/tree_connect.h @@ -15,4 +15,10 @@ struct ksmbd_conn; +enum { + TREE_NEW = 0, + TREE_CONNECTED, + TREE_DISCONNECTED +}; + struct ksmbd_tree_connect { int id; @@ -25,6 +31,9 @@ int maximal_access; bool posix_extensions; + atomic_t refcount; + wait_queue_head_t refcount_q; + unsigned int t_state; }; struct ksmbd_tree_conn_status { @@ -42,7 +51,8 @@ struct ksmbd_tree_conn_status ksmbd_tree_conn_connect(struct ksmbd_conn *conn, struct ksmbd_session *sess, - char *share_name); + const char *share_name); +void ksmbd_tree_connect_put(struct ksmbd_tree_connect *tcon); int ksmbd_tree_conn_disconnect(struct ksmbd_session *sess, struct ksmbd_tree_connect *tree_conn); @@ -50,9 +60,6 @@ struct ksmbd_tree_connect *ksmbd_tree_conn_lookup(struct ksmbd_session *sess, unsigned int id); -struct ksmbd_share_config *ksmbd_tree_conn_share(struct ksmbd_session *sess, - unsigned int id); - int ksmbd_tree_conn_session_logoff(struct ksmbd_session *sess); #endif /* __TREE_CONNECT_MANAGEMENT_H__ */ diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/mgmt/user_config.h linux-xilinx-zynqmp-5.15.0/fs/ksmbd/mgmt/user_config.h --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/mgmt/user_config.h +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/mgmt/user_config.h @@ -18,7 +18,6 @@ size_t passkey_sz; char *passkey; - unsigned int failed_login_count; }; static inline bool user_guest(struct ksmbd_user *user) diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/mgmt/user_session.c linux-xilinx-zynqmp-5.15.0/fs/ksmbd/mgmt/user_session.c --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/mgmt/user_session.c +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/mgmt/user_session.c @@ -25,7 +25,6 @@ struct ksmbd_session_rpc { int id; unsigned int method; - struct list_head list; }; static void free_channel_list(struct ksmbd_session *sess) @@ -58,15 +57,14 @@ static void ksmbd_session_rpc_clear_list(struct ksmbd_session *sess) { struct ksmbd_session_rpc *entry; + long index; - while (!list_empty(&sess->rpc_handle_list)) { - entry = list_entry(sess->rpc_handle_list.next, - struct ksmbd_session_rpc, - list); - - list_del(&entry->list); + xa_for_each(&sess->rpc_handle_list, index, entry) { + xa_erase(&sess->rpc_handle_list, index); __session_rpc_close(sess, entry); } + + xa_destroy(&sess->rpc_handle_list); } static int __rpc_method(char *rpc_name) @@ -102,13 +100,13 @@ entry = kzalloc(sizeof(struct ksmbd_session_rpc), GFP_KERNEL); if (!entry) - return -EINVAL; + return -ENOMEM; - list_add(&entry->list, &sess->rpc_handle_list); entry->method = method; entry->id = ksmbd_ipc_id_alloc(); if (entry->id < 0) goto free_entry; + xa_store(&sess->rpc_handle_list, entry->id, entry, GFP_KERNEL); resp = ksmbd_rpc_open(sess, entry->id); if (!resp) @@ -117,9 +115,9 @@ kvfree(resp); return entry->id; free_id: + xa_erase(&sess->rpc_handle_list, entry->id); ksmbd_rpc_id_free(entry->id); free_entry: - list_del(&entry->list); kfree(entry); return -EINVAL; } @@ -128,24 +126,17 @@ { struct ksmbd_session_rpc *entry; - list_for_each_entry(entry, &sess->rpc_handle_list, list) { - if (entry->id == id) { - list_del(&entry->list); - __session_rpc_close(sess, entry); - break; - } - } + entry = xa_erase(&sess->rpc_handle_list, id); + if (entry) + __session_rpc_close(sess, entry); } int ksmbd_session_rpc_method(struct ksmbd_session *sess, int id) { struct ksmbd_session_rpc *entry; - list_for_each_entry(entry, &sess->rpc_handle_list, list) { - if (entry->id == id) - return entry->method; - } - return 0; + entry = xa_load(&sess->rpc_handle_list, id); + return entry ? entry->method : 0; } void ksmbd_session_destroy(struct ksmbd_session *sess) @@ -153,10 +144,6 @@ if (!sess) return; - down_write(&sessions_table_lock); - hash_del(&sess->hlist); - up_write(&sessions_table_lock); - if (sess->user) ksmbd_free_user(sess->user); @@ -174,17 +161,39 @@ 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; + + down_write(&conn->session_lock); + 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); + hash_del(&sess->hlist); + ksmbd_session_destroy(sess); + continue; + } + } + up_write(&conn->session_lock); +} + 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)); } @@ -197,47 +206,60 @@ return -ENOENT; kfree(chann); - return 0; } void ksmbd_sessions_deregister(struct ksmbd_conn *conn) { struct ksmbd_session *sess; + unsigned long id; + down_write(&sessions_table_lock); if (conn->binding) { int bkt; + struct hlist_node *tmp; - 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; + hash_for_each_safe(sessions_table, bkt, tmp, sess, hlist) { + if (!ksmbd_chann_del(conn, sess) && + xa_empty(&sess->ksmbd_chann_list)) { + hash_del(&sess->hlist); + 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; - } } + up_write(&sessions_table_lock); - return; + down_write(&conn->session_lock); + xa_for_each(&conn->sessions, id, sess) { + unsigned long chann_id; + struct channel *chann; + + xa_for_each(&sess->ksmbd_chann_list, chann_id, chann) { + if (chann->conn != conn) + ksmbd_conn_set_exiting(chann->conn); + } -sess_destroy: - if (xa_empty(&sess->ksmbd_chann_list)) { - xa_erase(&conn->sessions, sess->id); - ksmbd_session_destroy(sess); + ksmbd_chann_del(conn, sess); + if (xa_empty(&sess->ksmbd_chann_list)) { + xa_erase(&conn->sessions, sess->id); + hash_del(&sess->hlist); + ksmbd_session_destroy(sess); + } } + up_write(&conn->session_lock); } struct ksmbd_session *ksmbd_session_lookup(struct ksmbd_conn *conn, unsigned long long id) { - return xa_load(&conn->sessions, id); + struct ksmbd_session *sess; + + down_read(&conn->session_lock); + sess = xa_load(&conn->sessions, id); + if (sess) + sess->last_active = jiffies; + up_read(&conn->session_lock); + return sess; } struct ksmbd_session *ksmbd_session_lookup_slowpath(unsigned long long id) @@ -246,6 +268,8 @@ down_read(&sessions_table_lock); sess = __session_lookup(id); + if (sess) + sess->last_active = jiffies; up_read(&sessions_table_lock); return sess; @@ -324,12 +348,14 @@ 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); xa_init(&sess->ksmbd_chann_list); - INIT_LIST_HEAD(&sess->rpc_handle_list); + xa_init(&sess->rpc_handle_list); sess->sequence_number = 1; + rwlock_init(&sess->tree_conns_lock); ret = __init_smb2_session(sess); if (ret) diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/mgmt/user_session.h linux-xilinx-zynqmp-5.15.0/fs/ksmbd/mgmt/user_session.h --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/mgmt/user_session.h +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/mgmt/user_session.h @@ -52,13 +52,15 @@ struct xarray ksmbd_chann_list; struct xarray tree_conns; struct ida tree_conn_ida; - struct list_head rpc_handle_list; + struct xarray rpc_handle_list; __u8 smb3encryptionkey[SMB3_ENC_DEC_KEY_SIZE]; __u8 smb3decryptionkey[SMB3_ENC_DEC_KEY_SIZE]; __u8 smb3signingkey[SMB3_SIGN_KEY_SIZE]; struct ksmbd_file_table file_table; + unsigned long last_active; + rwlock_t tree_conns_lock; }; static inline int test_session_flag(struct ksmbd_session *sess, int bit) diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/oplock.c linux-xilinx-zynqmp-5.15.0/fs/ksmbd/oplock.c --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/oplock.c +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/oplock.c @@ -102,9 +102,10 @@ lease->new_state = 0; lease->flags = lctx->flags; lease->duration = lctx->duration; + lease->is_dir = lctx->is_dir; memcpy(lease->parent_lease_key, lctx->parent_lease_key, SMB2_LEASE_KEY_SIZE); lease->version = lctx->version; - lease->epoch = 0; + lease->epoch = le16_to_cpu(lctx->epoch) + 1; INIT_LIST_HEAD(&opinfo->lease_entry); opinfo->o_lease = lease; @@ -157,13 +158,42 @@ rcu_read_lock(); opinfo = list_first_or_null_rcu(&ci->m_op_list, struct oplock_info, op_entry); - if (opinfo && !atomic_inc_not_zero(&opinfo->refcount)) - opinfo = NULL; + if (opinfo) { + if (!atomic_inc_not_zero(&opinfo->refcount)) + opinfo = NULL; + else { + atomic_inc(&opinfo->conn->r_count); + if (ksmbd_conn_releasing(opinfo->conn)) { + atomic_dec(&opinfo->conn->r_count); + atomic_dec(&opinfo->refcount); + opinfo = NULL; + } + } + } + rcu_read_unlock(); return opinfo; } +static void opinfo_conn_put(struct oplock_info *opinfo) +{ + struct ksmbd_conn *conn; + + if (!opinfo) + return; + + conn = opinfo->conn; + /* + * Checking waitqueue to dropping pending requests on + * disconnection. waitqueue_active is safe because it + * uses atomic operation for condition. + */ + if (!atomic_dec_return(&conn->r_count) && waitqueue_active(&conn->r_count_q)) + wake_up(&conn->r_count_q); + opinfo_put(opinfo); +} + void opinfo_put(struct oplock_info *opinfo) { if (!atomic_dec_and_test(&opinfo->refcount)) @@ -366,8 +396,8 @@ { struct oplock_info *opinfo; - if (S_ISDIR(file_inode(fp->filp)->i_mode)) - return; + if (fp->reserve_lease_break) + smb_lazy_parent_lease_break_close(fp); opinfo = opinfo_get(fp); if (!opinfo) @@ -514,24 +544,30 @@ /* upgrading lease */ if ((atomic_read(&ci->op_count) + atomic_read(&ci->sop_count)) == 1) { - if (lease->state == - (lctx->req_state & lease->state)) { + if (lease->state != SMB2_LEASE_NONE_LE && + lease->state == (lctx->req_state & lease->state)) { + lease->epoch++; lease->state |= lctx->req_state; if (lctx->req_state & SMB2_LEASE_WRITE_CACHING_LE) lease_read_to_write(opinfo); + } } else if ((atomic_read(&ci->op_count) + atomic_read(&ci->sop_count)) > 1) { if (lctx->req_state == (SMB2_LEASE_READ_CACHING_LE | - SMB2_LEASE_HANDLE_CACHING_LE)) + SMB2_LEASE_HANDLE_CACHING_LE)) { + lease->epoch++; lease->state = lctx->req_state; + } } if (lctx->req_state && lease->state == - SMB2_LEASE_NONE_LE) + SMB2_LEASE_NONE_LE) { + lease->epoch++; lease_none_upgrade(opinfo, lctx->req_state); + } } read_lock(&ci->m_lock); } @@ -587,15 +623,6 @@ return 0; } -static inline int allocate_oplock_break_buf(struct ksmbd_work *work) -{ - work->response_buf = kzalloc(MAX_CIFS_SMALL_BUFFER_SIZE, GFP_KERNEL); - if (!work->response_buf) - return -ENOMEM; - work->response_sz = MAX_CIFS_SMALL_BUFFER_SIZE; - return 0; -} - /** * __smb2_oplock_break_noti() - send smb2 oplock break cmd from conn * to client @@ -610,30 +637,22 @@ { struct smb2_oplock_break *rsp = NULL; struct ksmbd_work *work = container_of(wk, struct ksmbd_work, work); - struct ksmbd_conn *conn = work->conn; struct oplock_break_info *br_info = work->request_buf; struct smb2_hdr *rsp_hdr; struct ksmbd_file *fp; fp = ksmbd_lookup_durable_fd(br_info->fid); - if (!fp) { - atomic_dec(&conn->r_count); - ksmbd_free_work_struct(work); - return; - } + if (!fp) + goto out; - if (allocate_oplock_break_buf(work)) { + if (allocate_interim_rsp_buf(work)) { pr_err("smb2_allocate_rsp_buf failed! "); - atomic_dec(&conn->r_count); ksmbd_fd_put(work, fp); - ksmbd_free_work_struct(work); - return; + goto out; } - rsp_hdr = work->response_buf; + rsp_hdr = smb2_get_msg(work->response_buf); memset(rsp_hdr, 0, sizeof(struct smb2_hdr) + 2); - rsp_hdr->smb2_buf_length = - cpu_to_be32(smb2_hdr_size_no_buflen(conn->vals)); rsp_hdr->ProtocolId = SMB2_PROTO_NUMBER; rsp_hdr->StructureSize = SMB2_HEADER_STRUCTURE_SIZE; rsp_hdr->CreditRequest = cpu_to_le16(0); @@ -646,7 +665,7 @@ rsp_hdr->SessionId = 0; memset(rsp_hdr->Signature, 0, 16); - rsp = work->response_buf; + rsp = smb2_get_msg(work->response_buf); rsp->StructureSize = cpu_to_le16(24); if (!br_info->open_trunc && @@ -657,19 +676,22 @@ rsp->OplockLevel = SMB2_OPLOCK_LEVEL_NONE; rsp->Reserved = 0; rsp->Reserved2 = 0; - rsp->PersistentFid = cpu_to_le64(fp->persistent_id); - rsp->VolatileFid = cpu_to_le64(fp->volatile_id); + rsp->PersistentFid = fp->persistent_id; + rsp->VolatileFid = fp->volatile_id; - inc_rfc1001_len(rsp, 24); + ksmbd_fd_put(work, fp); + if (ksmbd_iov_pin_rsp(work, (void *)rsp, + sizeof(struct smb2_oplock_break))) + goto out; ksmbd_debug(OPLOCK, "sending oplock break v_id %llu p_id = %llu lock level = %d\n", rsp->VolatileFid, rsp->PersistentFid, rsp->OplockLevel); - ksmbd_fd_put(work, fp); ksmbd_conn_write(work); + +out: ksmbd_free_work_struct(work); - atomic_dec(&conn->r_count); } /** @@ -703,7 +725,6 @@ work->conn = conn; work->sess = opinfo->sess; - atomic_inc(&conn->r_count); if (opinfo->op_state == OPLOCK_ACK_WAIT) { INIT_WORK(&work->work, __smb2_oplock_break_noti); ksmbd_queue_work(work); @@ -727,20 +748,15 @@ struct smb2_lease_break *rsp = NULL; struct ksmbd_work *work = container_of(wk, struct ksmbd_work, work); struct lease_break_info *br_info = work->request_buf; - struct ksmbd_conn *conn = work->conn; struct smb2_hdr *rsp_hdr; - if (allocate_oplock_break_buf(work)) { + if (allocate_interim_rsp_buf(work)) { ksmbd_debug(OPLOCK, "smb2_allocate_rsp_buf failed! "); - ksmbd_free_work_struct(work); - atomic_dec(&conn->r_count); - return; + goto out; } - rsp_hdr = work->response_buf; + rsp_hdr = smb2_get_msg(work->response_buf); memset(rsp_hdr, 0, sizeof(struct smb2_hdr) + 2); - rsp_hdr->smb2_buf_length = - cpu_to_be32(smb2_hdr_size_no_buflen(conn->vals)); rsp_hdr->ProtocolId = SMB2_PROTO_NUMBER; rsp_hdr->StructureSize = SMB2_HEADER_STRUCTURE_SIZE; rsp_hdr->CreditRequest = cpu_to_le16(0); @@ -753,7 +769,7 @@ rsp_hdr->SessionId = 0; memset(rsp_hdr->Signature, 0, 16); - rsp = work->response_buf; + rsp = smb2_get_msg(work->response_buf); rsp->StructureSize = cpu_to_le16(44); rsp->Epoch = br_info->epoch; rsp->Flags = 0; @@ -769,11 +785,14 @@ rsp->AccessMaskHint = 0; rsp->ShareMaskHint = 0; - inc_rfc1001_len(rsp, 44); + if (ksmbd_iov_pin_rsp(work, (void *)rsp, + sizeof(struct smb2_lease_break))) + goto out; ksmbd_conn_write(work); + +out: ksmbd_free_work_struct(work); - atomic_dec(&conn->r_count); } /** @@ -813,7 +832,6 @@ work->conn = conn; work->sess = opinfo->sess; - atomic_inc(&conn->r_count); if (opinfo->op_state == OPLOCK_ACK_WAIT) { list_for_each_safe(tmp, t, &opinfo->interim_list) { struct ksmbd_work *in_work; @@ -822,7 +840,8 @@ interim_entry); setup_async_work(in_work, NULL, NULL); smb2_send_interim_resp(in_work, STATUS_PENDING); - list_del(&in_work->interim_entry); + list_del_init(&in_work->interim_entry); + release_async_work(in_work); } INIT_WORK(&work->work, __smb2_lease_break_noti); ksmbd_queue_work(work); @@ -888,7 +907,8 @@ lease->new_state = SMB2_LEASE_READ_CACHING_LE; } else { - if (lease->state & SMB2_LEASE_HANDLE_CACHING_LE) + if (lease->state & SMB2_LEASE_HANDLE_CACHING_LE && + !lease->is_dir) lease->new_state = SMB2_LEASE_READ_CACHING_LE; else @@ -1020,6 +1040,8 @@ SMB2_LEASE_KEY_SIZE); lease2->duration = lease1->duration; lease2->flags = lease1->flags; + lease2->epoch = lease1->epoch; + lease2->version = lease1->version; } static int add_lease_global_list(struct oplock_info *opinfo) @@ -1069,6 +1091,89 @@ } } +void smb_send_parent_lease_break_noti(struct ksmbd_file *fp, + struct lease_ctx_info *lctx) +{ + struct oplock_info *opinfo; + struct ksmbd_inode *p_ci = NULL; + + if (lctx->version != 2) + return; + + p_ci = ksmbd_inode_lookup_lock(fp->filp->f_path.dentry->d_parent); + if (!p_ci) + return; + + read_lock(&p_ci->m_lock); + list_for_each_entry(opinfo, &p_ci->m_op_list, op_entry) { + if (!opinfo->is_lease) + continue; + + if (opinfo->o_lease->state != SMB2_OPLOCK_LEVEL_NONE && + (!(lctx->flags & SMB2_LEASE_FLAG_PARENT_LEASE_KEY_SET_LE) || + !compare_guid_key(opinfo, fp->conn->ClientGUID, + lctx->parent_lease_key))) { + if (!atomic_inc_not_zero(&opinfo->refcount)) + continue; + + atomic_inc(&opinfo->conn->r_count); + if (ksmbd_conn_releasing(opinfo->conn)) { + atomic_dec(&opinfo->conn->r_count); + continue; + } + + read_unlock(&p_ci->m_lock); + oplock_break(opinfo, SMB2_OPLOCK_LEVEL_NONE); + opinfo_conn_put(opinfo); + read_lock(&p_ci->m_lock); + } + } + read_unlock(&p_ci->m_lock); + + ksmbd_inode_put(p_ci); +} + +void smb_lazy_parent_lease_break_close(struct ksmbd_file *fp) +{ + struct oplock_info *opinfo; + struct ksmbd_inode *p_ci = NULL; + + rcu_read_lock(); + opinfo = rcu_dereference(fp->f_opinfo); + rcu_read_unlock(); + + if (!opinfo->is_lease || opinfo->o_lease->version != 2) + return; + + p_ci = ksmbd_inode_lookup_lock(fp->filp->f_path.dentry->d_parent); + if (!p_ci) + return; + + read_lock(&p_ci->m_lock); + list_for_each_entry(opinfo, &p_ci->m_op_list, op_entry) { + if (!opinfo->is_lease) + continue; + + if (opinfo->o_lease->state != SMB2_OPLOCK_LEVEL_NONE) { + if (!atomic_inc_not_zero(&opinfo->refcount)) + continue; + + atomic_inc(&opinfo->conn->r_count); + if (ksmbd_conn_releasing(opinfo->conn)) { + atomic_dec(&opinfo->conn->r_count); + continue; + } + read_unlock(&p_ci->m_lock); + oplock_break(opinfo, SMB2_OPLOCK_LEVEL_NONE); + opinfo_conn_put(opinfo); + read_lock(&p_ci->m_lock); + } + } + read_unlock(&p_ci->m_lock); + + ksmbd_inode_put(p_ci); +} + /** * smb_grant_oplock() - handle oplock/lease request on file open * @work: smb work @@ -1092,9 +1197,11 @@ bool prev_op_has_lease; __le32 prev_op_state = 0; - /* not support directory lease */ - if (S_ISDIR(file_inode(fp->filp)->i_mode)) - return 0; + /* Only v2 leases handle the directory */ + if (S_ISDIR(file_inode(fp->filp)->i_mode)) { + if (!lctx || lctx->version != 2) + return 0; + } opinfo = alloc_opinfo(work, pid, tid); if (!opinfo) @@ -1135,8 +1242,10 @@ } prev_opinfo = opinfo_get_list(ci); if (!prev_opinfo || - (prev_opinfo->level == SMB2_OPLOCK_LEVEL_NONE && lctx)) + (prev_opinfo->level == SMB2_OPLOCK_LEVEL_NONE && lctx)) { + opinfo_conn_put(prev_opinfo); goto set_lev; + } prev_op_has_lease = prev_opinfo->is_lease; if (prev_op_has_lease) prev_op_state = prev_opinfo->o_lease->state; @@ -1144,19 +1253,19 @@ if (share_ret < 0 && prev_opinfo->level == SMB2_OPLOCK_LEVEL_EXCLUSIVE) { err = share_ret; - opinfo_put(prev_opinfo); + opinfo_conn_put(prev_opinfo); goto err_out; } if (prev_opinfo->level != SMB2_OPLOCK_LEVEL_BATCH && prev_opinfo->level != SMB2_OPLOCK_LEVEL_EXCLUSIVE) { - opinfo_put(prev_opinfo); + opinfo_conn_put(prev_opinfo); goto op_break_not_needed; } list_add(&work->interim_entry, &prev_opinfo->interim_list); err = oplock_break(prev_opinfo, SMB2_OPLOCK_LEVEL_II); - opinfo_put(prev_opinfo); + opinfo_conn_put(prev_opinfo); if (err == -ENOENT) goto set_lev; /* Check all oplock was freed by close */ @@ -1219,14 +1328,14 @@ return; if (brk_opinfo->level != SMB2_OPLOCK_LEVEL_BATCH && brk_opinfo->level != SMB2_OPLOCK_LEVEL_EXCLUSIVE) { - opinfo_put(brk_opinfo); + opinfo_conn_put(brk_opinfo); return; } brk_opinfo->open_trunc = is_trunc; list_add(&work->interim_entry, &brk_opinfo->interim_list); oplock_break(brk_opinfo, SMB2_OPLOCK_LEVEL_II); - opinfo_put(brk_opinfo); + opinfo_conn_put(brk_opinfo); } /** @@ -1254,6 +1363,13 @@ list_for_each_entry_rcu(brk_op, &ci->m_op_list, op_entry) { if (!atomic_inc_not_zero(&brk_op->refcount)) continue; + + atomic_inc(&brk_op->conn->r_count); + if (ksmbd_conn_releasing(brk_op->conn)) { + atomic_dec(&brk_op->conn->r_count); + continue; + } + rcu_read_unlock(); if (brk_op->is_lease && (brk_op->o_lease->state & (~(SMB2_LEASE_READ_CACHING_LE | @@ -1283,7 +1399,7 @@ brk_op->open_trunc = is_trunc; oplock_break(brk_op, SMB2_OPLOCK_LEVEL_NONE); next: - opinfo_put(brk_op); + opinfo_conn_put(brk_op); rcu_read_lock(); } rcu_read_unlock(); @@ -1336,19 +1452,17 @@ */ void create_lease_buf(u8 *rbuf, struct lease *lease) { - char *LeaseKey = (char *)&lease->lease_key; - if (lease->version == 2) { struct create_lease_v2 *buf = (struct create_lease_v2 *)rbuf; - char *ParentLeaseKey = (char *)&lease->parent_lease_key; memset(buf, 0, sizeof(struct create_lease_v2)); - buf->lcontext.LeaseKeyLow = *((__le64 *)LeaseKey); - buf->lcontext.LeaseKeyHigh = *((__le64 *)(LeaseKey + 8)); + memcpy(buf->lcontext.LeaseKey, lease->lease_key, + SMB2_LEASE_KEY_SIZE); buf->lcontext.LeaseFlags = lease->flags; + buf->lcontext.Epoch = cpu_to_le16(lease->epoch); buf->lcontext.LeaseState = lease->state; - buf->lcontext.ParentLeaseKeyLow = *((__le64 *)ParentLeaseKey); - buf->lcontext.ParentLeaseKeyHigh = *((__le64 *)(ParentLeaseKey + 8)); + memcpy(buf->lcontext.ParentLeaseKey, lease->parent_lease_key, + SMB2_LEASE_KEY_SIZE); buf->ccontext.DataOffset = cpu_to_le16(offsetof (struct create_lease_v2, lcontext)); buf->ccontext.DataLength = cpu_to_le32(sizeof(struct lease_context_v2)); @@ -1363,8 +1477,7 @@ struct create_lease *buf = (struct create_lease *)rbuf; memset(buf, 0, sizeof(struct create_lease)); - buf->lcontext.LeaseKeyLow = *((__le64 *)LeaseKey); - buf->lcontext.LeaseKeyHigh = *((__le64 *)(LeaseKey + 8)); + memcpy(buf->lcontext.LeaseKey, lease->lease_key, SMB2_LEASE_KEY_SIZE); buf->lcontext.LeaseFlags = lease->flags; buf->lcontext.LeaseState = lease->state; buf->ccontext.DataOffset = cpu_to_le16(offsetof @@ -1383,63 +1496,50 @@ /** * parse_lease_state() - parse lease context containted in file open request * @open_req: buffer containing smb2 file open(create) request + * @is_dir: whether leasing file is directory * * Return: oplock state, -ENOENT if create lease context not found */ -struct lease_ctx_info *parse_lease_state(void *open_req) +struct lease_ctx_info *parse_lease_state(void *open_req, bool is_dir) { - char *data_offset; struct create_context *cc; - unsigned int next = 0; - char *name; - bool found = false; struct smb2_create_req *req = (struct smb2_create_req *)open_req; - struct lease_ctx_info *lreq = kzalloc(sizeof(struct lease_ctx_info), - GFP_KERNEL); - if (!lreq) + struct lease_ctx_info *lreq; + + cc = smb2_find_context_vals(req, SMB2_CREATE_REQUEST_LEASE, 4); + if (IS_ERR_OR_NULL(cc)) return NULL; - data_offset = (char *)req + 4 + le32_to_cpu(req->CreateContextsOffset); - cc = (struct create_context *)data_offset; - do { - cc = (struct create_context *)((char *)cc + next); - name = le16_to_cpu(cc->NameOffset) + (char *)cc; - if (le16_to_cpu(cc->NameLength) != 4 || - strncmp(name, SMB2_CREATE_REQUEST_LEASE, 4)) { - next = le32_to_cpu(cc->Next); - continue; - } - found = true; - break; - } while (next != 0); - - if (found) { - if (sizeof(struct lease_context_v2) == le32_to_cpu(cc->DataLength)) { - struct create_lease_v2 *lc = (struct create_lease_v2 *)cc; + lreq = kzalloc(sizeof(struct lease_ctx_info), GFP_KERNEL); + if (!lreq) + return NULL; - *((__le64 *)lreq->lease_key) = lc->lcontext.LeaseKeyLow; - *((__le64 *)(lreq->lease_key + 8)) = lc->lcontext.LeaseKeyHigh; - lreq->req_state = lc->lcontext.LeaseState; - lreq->flags = lc->lcontext.LeaseFlags; - lreq->duration = lc->lcontext.LeaseDuration; - *((__le64 *)lreq->parent_lease_key) = lc->lcontext.ParentLeaseKeyLow; - *((__le64 *)(lreq->parent_lease_key + 8)) = lc->lcontext.ParentLeaseKeyHigh; - lreq->version = 2; - } else { - struct create_lease *lc = (struct create_lease *)cc; + if (sizeof(struct lease_context_v2) == le32_to_cpu(cc->DataLength)) { + struct create_lease_v2 *lc = (struct create_lease_v2 *)cc; - *((__le64 *)lreq->lease_key) = lc->lcontext.LeaseKeyLow; - *((__le64 *)(lreq->lease_key + 8)) = lc->lcontext.LeaseKeyHigh; + memcpy(lreq->lease_key, lc->lcontext.LeaseKey, SMB2_LEASE_KEY_SIZE); + if (is_dir) { + lreq->req_state = lc->lcontext.LeaseState & + ~SMB2_LEASE_WRITE_CACHING_LE; + lreq->is_dir = true; + } else lreq->req_state = lc->lcontext.LeaseState; - lreq->flags = lc->lcontext.LeaseFlags; - lreq->duration = lc->lcontext.LeaseDuration; - lreq->version = 1; - } - return lreq; + lreq->flags = lc->lcontext.LeaseFlags; + lreq->epoch = lc->lcontext.Epoch; + lreq->duration = lc->lcontext.LeaseDuration; + memcpy(lreq->parent_lease_key, lc->lcontext.ParentLeaseKey, + SMB2_LEASE_KEY_SIZE); + lreq->version = 2; + } else { + struct create_lease *lc = (struct create_lease *)cc; + + memcpy(lreq->lease_key, lc->lcontext.LeaseKey, SMB2_LEASE_KEY_SIZE); + lreq->req_state = lc->lcontext.LeaseState; + lreq->flags = lc->lcontext.LeaseFlags; + lreq->duration = lc->lcontext.LeaseDuration; + lreq->version = 1; } - - kfree(lreq); - return NULL; + return lreq; } /** @@ -1464,7 +1564,7 @@ * CreateContextsOffset and CreateContextsLength are guaranteed to * be valid because of ksmbd_smb2_check_message(). */ - cc = (struct create_context *)((char *)req + 4 + + cc = (struct create_context *)((char *)req + le32_to_cpu(req->CreateContextsOffset)); remain_len = le32_to_cpu(req->CreateContextsLength); do { @@ -1612,7 +1712,11 @@ memset(buf, 0, sizeof(struct create_posix_rsp)); buf->ccontext.DataOffset = cpu_to_le16(offsetof (struct create_posix_rsp, nlink)); - buf->ccontext.DataLength = cpu_to_le32(52); + /* + * DataLength = nlink(4) + reparse_tag(4) + mode(4) + + * domain sid(28) + unix group sid(16). + */ + buf->ccontext.DataLength = cpu_to_le32(56); buf->ccontext.NameOffset = cpu_to_le16(offsetof (struct create_posix_rsp, Name)); buf->ccontext.NameLength = cpu_to_le16(POSIX_CTXT_DATA_LEN); @@ -1636,13 +1740,20 @@ buf->nlink = cpu_to_le32(inode->i_nlink); buf->reparse_tag = cpu_to_le32(fp->volatile_id); - buf->mode = cpu_to_le32(inode->i_mode); + buf->mode = cpu_to_le32(inode->i_mode & 0777); + /* + * SidBuffer(44) contain two sids(Domain sid(28), UNIX group sid(16)). + * Domain sid(28) = revision(1) + num_subauth(1) + authority(6) + + * sub_auth(4 * 4(num_subauth)) + RID(4). + * UNIX group id(16) = revision(1) + num_subauth(1) + authority(6) + + * sub_auth(4 * 1(num_subauth)) + RID(4). + */ id_to_sid(from_kuid_munged(&init_user_ns, i_uid_into_mnt(user_ns, inode)), - SIDNFS_USER, (struct smb_sid *)&buf->SidBuffer[0]); + SIDOWNER, (struct smb_sid *)&buf->SidBuffer[0]); id_to_sid(from_kgid_munged(&init_user_ns, i_gid_into_mnt(user_ns, inode)), - SIDNFS_GROUP, (struct smb_sid *)&buf->SidBuffer[20]); + SIDUNIX_GROUP, (struct smb_sid *)&buf->SidBuffer[28]); } /* @@ -1705,30 +1815,0 @@ - -int smb2_check_durable_oplock(struct ksmbd_file *fp, - struct lease_ctx_info *lctx, char *name) -{ - struct oplock_info *opinfo = opinfo_get(fp); - int ret = 0; - - if (opinfo && opinfo->is_lease) { - if (!lctx) { - pr_err("open does not include lease\n"); - ret = -EBADF; - goto out; - } - if (memcmp(opinfo->o_lease->lease_key, lctx->lease_key, - SMB2_LEASE_KEY_SIZE)) { - pr_err("invalid lease key\n"); - ret = -EBADF; - goto out; - } - if (name && strcmp(fp->filename, name)) { - pr_err("invalid name reconnect %s\n", name); - ret = -EINVAL; - goto out; - } - } -out: - if (opinfo) - opinfo_put(opinfo); - return ret; -} diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/oplock.h linux-xilinx-zynqmp-5.15.0/fs/ksmbd/oplock.h --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/oplock.h +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/oplock.h @@ -28,15 +28,15 @@ #define OPLOCK_WRITE_TO_NONE 0x04 #define OPLOCK_READ_TO_NONE 0x08 -#define SMB2_LEASE_KEY_SIZE 16 - struct lease_ctx_info { __u8 lease_key[SMB2_LEASE_KEY_SIZE]; __le32 req_state; __le32 flags; __le64 duration; __u8 parent_lease_key[SMB2_LEASE_KEY_SIZE]; + __le16 epoch; int version; + bool is_dir; }; struct lease_table { @@ -55,6 +55,7 @@ __u8 parent_lease_key[SMB2_LEASE_KEY_SIZE]; int version; unsigned short epoch; + bool is_dir; struct lease_table *l_lb; }; @@ -110,7 +111,7 @@ /* Lease related functions */ void create_lease_buf(u8 *rbuf, struct lease *lease); -struct lease_ctx_info *parse_lease_state(void *open_req); +struct lease_ctx_info *parse_lease_state(void *open_req, bool is_dir); __u8 smb2_map_lease_to_oplock(__le32 lease_state); int lease_read_to_write(struct oplock_info *opinfo); @@ -128,4 +129,5 @@ void destroy_lease_table(struct ksmbd_conn *conn); -int smb2_check_durable_oplock(struct ksmbd_file *fp, - struct lease_ctx_info *lctx, char *name); +void smb_send_parent_lease_break_noti(struct ksmbd_file *fp, + struct lease_ctx_info *lctx); +void smb_lazy_parent_lease_break_close(struct ksmbd_file *fp); #endif /* __KSMBD_OPLOCK_H */ diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/server.c linux-xilinx-zynqmp-5.15.0/fs/ksmbd/server.c --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/server.c +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/server.c @@ -115,8 +115,10 @@ if (check_conn_state(work)) return SERVER_HANDLER_CONTINUE; - if (ksmbd_verify_smb_message(work)) + if (ksmbd_verify_smb_message(work)) { + conn->ops->set_rsp_status(work, STATUS_INVALID_PARAMETER); return SERVER_HANDLER_ABORT; + } command = conn->ops->get_cmd_val(work); *cmd = command; @@ -163,6 +165,7 @@ { u16 command = 0; int rc; + bool is_chained = false; if (conn->ops->allocate_rsp_buf(work)) return; @@ -229,16 +232,17 @@ } } + is_chained = is_chained_smb2_message(work); + if (work->sess && (work->sess->sign || smb3_11_final_sess_setup_resp(work) || conn->ops->is_sign_req(work, command))) conn->ops->set_sign_rsp(work); - } while (is_chained_smb2_message(work)); - - if (work->send_no_response) - return; + } while (is_chained == true); send: + if (work->tcon) + ksmbd_tree_connect_put(work->tcon); smb3_preauth_hash_rsp(work); if (work->sess && work->sess->enc && work->encrypted && conn->ops->encrypt_resp) { @@ -267,7 +271,13 @@ ksmbd_conn_try_dequeue_request(work); ksmbd_free_work_struct(work); - atomic_dec(&conn->r_count); + /* + * Checking waitqueue to dropping pending requests on + * disconnection. waitqueue_active is safe because it + * uses atomic operation for condition. + */ + if (!atomic_dec_return(&conn->r_count) && waitqueue_active(&conn->r_count_q)) + wake_up(&conn->r_count_q); } /** @@ -280,6 +290,7 @@ static int queue_ksmbd_work(struct ksmbd_conn *conn) { struct ksmbd_work *work; + int err; work = ksmbd_alloc_work_struct(); if (!work) { @@ -291,9 +302,10 @@ work->request_buf = conn->request_buf; conn->request_buf = NULL; - if (ksmbd_init_smb_server(work)) { + err = ksmbd_init_smb_server(work); + if (err) { ksmbd_free_work_struct(work); - return -EINVAL; + return 0; } ksmbd_conn_enqueue_request(work); @@ -434,11 +446,9 @@ "reset", "shutdown" }; - - ssize_t sz = scnprintf(buf, PAGE_SIZE, "%d %s %d %lu\n", stats_version, - state[server_conf.state], server_conf.tcp_port, - server_conf.ipc_last_active / HZ); - return sz; + return sysfs_emit(buf, "%d %s %d %lu\n", stats_version, + state[server_conf.state], server_conf.tcp_port, + server_conf.ipc_last_active / HZ); } static ssize_t kill_server_store(struct class *class, @@ -470,19 +480,13 @@ for (i = 0; i < ARRAY_SIZE(debug_type_strings); i++) { if ((ksmbd_debug_types >> i) & 1) { - pos = scnprintf(buf + sz, - PAGE_SIZE - sz, - "[%s] ", - debug_type_strings[i]); + pos = sysfs_emit_at(buf, sz, "[%s] ", debug_type_strings[i]); } else { - pos = scnprintf(buf + sz, - PAGE_SIZE - sz, - "%s ", - debug_type_strings[i]); + pos = sysfs_emit_at(buf, sz, "%s ", debug_type_strings[i]); } sz += pos; } - sz += scnprintf(buf + sz, PAGE_SIZE - sz, "\n"); + sz += sysfs_emit_at(buf, sz, "\n"); return sz; } @@ -591,8 +595,6 @@ if (ret) goto err_crypto_destroy; - pr_warn_once("The ksmbd server is experimental, use at your own risk.\n"); - return 0; err_crypto_destroy: @@ -629,7 +631,6 @@ MODULE_LICENSE("GPL"); MODULE_SOFTDEP("pre: ecb"); MODULE_SOFTDEP("pre: hmac"); -MODULE_SOFTDEP("pre: md4"); MODULE_SOFTDEP("pre: md5"); MODULE_SOFTDEP("pre: nls"); MODULE_SOFTDEP("pre: aes"); diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smb2misc.c linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smb2misc.c --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smb2misc.c +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smb2misc.c @@ -107,16 +107,25 @@ break; case SMB2_CREATE: { + unsigned short int name_off = + le16_to_cpu(((struct smb2_create_req *)hdr)->NameOffset); + unsigned short int name_len = + le16_to_cpu(((struct smb2_create_req *)hdr)->NameLength); + if (((struct smb2_create_req *)hdr)->CreateContextsLength) { *off = le32_to_cpu(((struct smb2_create_req *) hdr)->CreateContextsOffset); *len = le32_to_cpu(((struct smb2_create_req *) hdr)->CreateContextsLength); - break; + if (!name_len) + break; + + if (name_off + name_len < (u64)*off + *len) + break; } - *off = le16_to_cpu(((struct smb2_create_req *)hdr)->NameOffset); - *len = le16_to_cpu(((struct smb2_create_req *)hdr)->NameLength); + *off = name_off; + *len = name_len; break; } case SMB2_QUERY_INFO: @@ -441,10 +450,8 @@ validate_credit: if ((work->conn->vals->capabilities & SMB2_GLOBAL_CAP_LARGE_MTU) && - smb2_validate_credit_charge(work->conn, hdr)) { - work->conn->ops->set_rsp_status(work, STATUS_INVALID_PARAMETER); + smb2_validate_credit_charge(work->conn, hdr)) return 1; - } return 0; } diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smb2ops.c linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smb2ops.c --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smb2ops.c +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smb2ops.c @@ -222,7 +222,8 @@ conn->signing_algorithm = SIGNING_ALG_AES_CMAC; if (server_conf.flags & KSMBD_GLOBAL_FLAG_SMB2_LEASES) - conn->vals->capabilities |= SMB2_GLOBAL_CAP_LEASING; + conn->vals->capabilities |= SMB2_GLOBAL_CAP_LEASING | + SMB2_GLOBAL_CAP_DIRECTORY_LEASING; if (server_conf.flags & KSMBD_GLOBAL_FLAG_SMB2_ENCRYPTION && conn->cli_cap & SMB2_GLOBAL_CAP_ENCRYPTION) @@ -246,10 +247,12 @@ conn->signing_algorithm = SIGNING_ALG_AES_CMAC; if (server_conf.flags & KSMBD_GLOBAL_FLAG_SMB2_LEASES) - conn->vals->capabilities |= SMB2_GLOBAL_CAP_LEASING; + conn->vals->capabilities |= SMB2_GLOBAL_CAP_LEASING | + SMB2_GLOBAL_CAP_DIRECTORY_LEASING; - if (server_conf.flags & KSMBD_GLOBAL_FLAG_SMB2_ENCRYPTION && - conn->cli_cap & SMB2_GLOBAL_CAP_ENCRYPTION) + if (server_conf.flags & KSMBD_GLOBAL_FLAG_SMB2_ENCRYPTION || + (!(server_conf.flags & KSMBD_GLOBAL_FLAG_SMB2_ENCRYPTION_OFF) && + conn->cli_cap & SMB2_GLOBAL_CAP_ENCRYPTION)) conn->vals->capabilities |= SMB2_GLOBAL_CAP_ENCRYPTION; if (server_conf.flags & KSMBD_GLOBAL_FLAG_SMB3_MULTICHANNEL) @@ -270,7 +273,13 @@ conn->signing_algorithm = SIGNING_ALG_AES_CMAC; if (server_conf.flags & KSMBD_GLOBAL_FLAG_SMB2_LEASES) - conn->vals->capabilities |= SMB2_GLOBAL_CAP_LEASING; + conn->vals->capabilities |= SMB2_GLOBAL_CAP_LEASING | + SMB2_GLOBAL_CAP_DIRECTORY_LEASING; + + if (server_conf.flags & KSMBD_GLOBAL_FLAG_SMB2_ENCRYPTION || + (!(server_conf.flags & KSMBD_GLOBAL_FLAG_SMB2_ENCRYPTION_OFF) && + conn->cli_cap & SMB2_GLOBAL_CAP_ENCRYPTION)) + conn->vals->capabilities |= SMB2_GLOBAL_CAP_ENCRYPTION; if (server_conf.flags & KSMBD_GLOBAL_FLAG_SMB3_MULTICHANNEL) conn->vals->capabilities |= SMB2_GLOBAL_CAP_MULTI_CHANNEL; diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smb2pdu.c linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smb2pdu.c --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smb2pdu.c +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smb2pdu.c @@ -45,8 +45,8 @@ *req = ksmbd_req_buf_next(work); *rsp = ksmbd_resp_buf_next(work); } else { - *req = work->request_buf; - *rsp = work->response_buf; + *req = smb2_get_msg(work->request_buf); + *rsp = smb2_get_msg(work->response_buf); } } @@ -87,12 +87,13 @@ */ int smb2_get_ksmbd_tcon(struct ksmbd_work *work) { - struct smb2_hdr *req_hdr = work->request_buf; - int tree_id; + struct smb2_hdr *req_hdr = ksmbd_req_buf_next(work); + unsigned int cmd = le16_to_cpu(req_hdr->Command); + unsigned int tree_id; - if (work->conn->ops->get_cmd_val(work) == SMB2_TREE_CONNECT_HE || - work->conn->ops->get_cmd_val(work) == SMB2_CANCEL_HE || - work->conn->ops->get_cmd_val(work) == SMB2_LOGOFF_HE) { + if (cmd == SMB2_TREE_CONNECT_HE || + cmd == SMB2_CANCEL_HE || + cmd == SMB2_LOGOFF_HE) { ksmbd_debug(SMB, "skip to check tree connect request\n"); return 0; } @@ -113,7 +114,7 @@ pr_err("The first operation in the compound does not have tcon\n"); return -EINVAL; } - if (work->tcon->id != tree_id) { + if (tree_id != UINT_MAX && work->tcon->id != tree_id) { pr_err("tree id(%u) is different with id(%u) in first operation\n", tree_id, work->tcon->id); return -EINVAL; @@ -141,15 +142,21 @@ if (work->next_smb2_rcv_hdr_off) err_rsp = ksmbd_resp_buf_next(work); else - err_rsp = work->response_buf; + err_rsp = smb2_get_msg(work->response_buf); if (err_rsp->hdr.Status != STATUS_STOPPED_ON_SYMLINK) { + int err; + err_rsp->StructureSize = SMB2_ERROR_STRUCTURE_SIZE2_LE; err_rsp->ErrorContextCount = 0; err_rsp->Reserved = 0; err_rsp->ByteCount = 0; err_rsp->ErrorData[0] = 0; - inc_rfc1001_len(work->response_buf, SMB2_ERROR_STRUCTURE_SIZE2); + err = ksmbd_iov_pin_rsp(work, (void *)err_rsp, + __SMB2_HEADER_STRUCTURE_SIZE + + SMB2_ERROR_STRUCTURE_SIZE2); + if (err) + work->send_no_response = 1; } } @@ -161,7 +168,7 @@ */ bool is_smb2_neg_cmd(struct ksmbd_work *work) { - struct smb2_hdr *hdr = work->request_buf; + struct smb2_hdr *hdr = smb2_get_msg(work->request_buf); /* is it SMB2 header ? */ if (hdr->ProtocolId != SMB2_PROTO_NUMBER) @@ -185,7 +192,7 @@ */ bool is_smb2_rsp(struct ksmbd_work *work) { - struct smb2_hdr *hdr = work->response_buf; + struct smb2_hdr *hdr = smb2_get_msg(work->response_buf); /* is it SMB2 header ? */ if (hdr->ProtocolId != SMB2_PROTO_NUMBER) @@ -211,7 +218,7 @@ if (work->next_smb2_rcv_hdr_off) rcv_hdr = ksmbd_req_buf_next(work); else - rcv_hdr = work->request_buf; + rcv_hdr = smb2_get_msg(work->request_buf); return le16_to_cpu(rcv_hdr->Command); } @@ -224,11 +231,12 @@ { struct smb2_hdr *rsp_hdr; - if (work->next_smb2_rcv_hdr_off) - rsp_hdr = ksmbd_resp_buf_next(work); - else - rsp_hdr = work->response_buf; + rsp_hdr = smb2_get_msg(work->response_buf); rsp_hdr->Status = err; + + work->iov_idx = 0; + work->iov_cnt = 0; + work->next_smb2_rcv_hdr_off = 0; smb2_set_err_rsp(work); } @@ -244,17 +252,10 @@ struct smb2_hdr *rsp_hdr; struct smb2_negotiate_rsp *rsp; struct ksmbd_conn *conn = work->conn; + int err; - if (conn->need_neg == false) - return -EINVAL; - - rsp_hdr = work->response_buf; - + rsp_hdr = smb2_get_msg(work->response_buf); memset(rsp_hdr, 0, sizeof(struct smb2_hdr) + 2); - - rsp_hdr->smb2_buf_length = - cpu_to_be32(smb2_hdr_size_no_buflen(conn->vals)); - rsp_hdr->ProtocolId = SMB2_PROTO_NUMBER; rsp_hdr->StructureSize = SMB2_HEADER_STRUCTURE_SIZE; rsp_hdr->CreditRequest = cpu_to_le16(2); @@ -267,7 +268,7 @@ rsp_hdr->SessionId = 0; memset(rsp_hdr->Signature, 0, 16); - rsp = work->response_buf; + rsp = smb2_get_msg(work->response_buf); WARN_ON(ksmbd_conn_good(conn)); @@ -288,15 +289,16 @@ rsp->SecurityBufferOffset = cpu_to_le16(128); rsp->SecurityBufferLength = cpu_to_le16(AUTH_GSS_LENGTH); - ksmbd_copy_gss_neg_header(((char *)(&rsp->hdr) + - sizeof(rsp->hdr.smb2_buf_length)) + + ksmbd_copy_gss_neg_header((char *)(&rsp->hdr) + le16_to_cpu(rsp->SecurityBufferOffset)); - inc_rfc1001_len(rsp, sizeof(struct smb2_negotiate_rsp) - - sizeof(struct smb2_hdr) - sizeof(rsp->Buffer) + - AUTH_GSS_LENGTH); rsp->SecurityMode = SMB2_NEGOTIATE_SIGNING_ENABLED_LE; if (server_conf.signing == KSMBD_CONFIG_OPT_MANDATORY) rsp->SecurityMode |= SMB2_NEGOTIATE_SIGNING_REQUIRED_LE; + err = ksmbd_iov_pin_rsp(work, rsp, + sizeof(struct smb2_negotiate_rsp) - + sizeof(rsp->Buffer) + AUTH_GSS_LENGTH); + if (err) + return err; conn->use_spnego = true; ksmbd_conn_set_need_negotiate(conn); @@ -386,12 +388,8 @@ * command in the compound request */ if (req->Command == SMB2_CREATE && rsp->Status == STATUS_SUCCESS) { - work->compound_fid = - le64_to_cpu(((struct smb2_create_rsp *)rsp)-> - VolatileFileId); - work->compound_pfid = - le64_to_cpu(((struct smb2_create_rsp *)rsp)-> - PersistentFileId); + work->compound_fid = ((struct smb2_create_rsp *)rsp)->VolatileFileId; + work->compound_pfid = ((struct smb2_create_rsp *)rsp)->PersistentFileId; work->compound_sid = le64_to_cpu(rsp->SessionId); } @@ -399,11 +397,12 @@ next_hdr_offset = le32_to_cpu(req->NextCommand); new_len = ALIGN(len, 8); - inc_rfc1001_len(work->response_buf, ((sizeof(struct smb2_hdr) - 4) - + new_len - len)); + work->iov[work->iov_idx].iov_len += (new_len - len); + inc_rfc1001_len(work->response_buf, new_len - len); rsp->NextCommand = cpu_to_le32(new_len); work->next_smb2_rcv_hdr_off += next_hdr_offset; + work->curr_smb2_rsp_hdr_off = work->next_smb2_rsp_hdr_off; work->next_smb2_rsp_hdr_off += new_len; ksmbd_debug(SMB, "Compound req new_len = %d rcv off = %d rsp off = %d\n", @@ -418,7 +417,7 @@ work->compound_fid = KSMBD_NO_FID; work->compound_pfid = KSMBD_NO_FID; } - memset((char *)rsp_hdr + 4, 0, sizeof(struct smb2_hdr) + 2); + memset((char *)rsp_hdr, 0, sizeof(struct smb2_hdr) + 2); rsp_hdr->ProtocolId = SMB2_PROTO_NUMBER; rsp_hdr->StructureSize = SMB2_HEADER_STRUCTURE_SIZE; rsp_hdr->Command = rcv_hdr->Command; @@ -444,7 +443,7 @@ */ bool is_chained_smb2_message(struct ksmbd_work *work) { - struct smb2_hdr *hdr = work->request_buf; + struct smb2_hdr *hdr = smb2_get_msg(work->request_buf); unsigned int len, next_cmd; if (hdr->ProtocolId != SMB2_PROTO_NUMBER) @@ -479,10 +478,10 @@ len = len - get_rfc1002_len(work->response_buf); if (len) { ksmbd_debug(SMB, "padding len %u\n", len); + work->iov[work->iov_idx].iov_len += len; inc_rfc1001_len(work->response_buf, len); - if (work->aux_payload_sz) - work->aux_payload_sz += len; } + work->curr_smb2_rsp_hdr_off = work->next_smb2_rsp_hdr_off; } return false; } @@ -495,13 +494,10 @@ */ int init_smb2_rsp_hdr(struct ksmbd_work *work) { - struct smb2_hdr *rsp_hdr = work->response_buf; - struct smb2_hdr *rcv_hdr = work->request_buf; - struct ksmbd_conn *conn = work->conn; + struct smb2_hdr *rsp_hdr = smb2_get_msg(work->response_buf); + struct smb2_hdr *rcv_hdr = smb2_get_msg(work->request_buf); memset(rsp_hdr, 0, sizeof(struct smb2_hdr) + 2); - rsp_hdr->smb2_buf_length = - cpu_to_be32(smb2_hdr_size_no_buflen(conn->vals)); rsp_hdr->ProtocolId = rcv_hdr->ProtocolId; rsp_hdr->StructureSize = SMB2_HEADER_STRUCTURE_SIZE; rsp_hdr->Command = rcv_hdr->Command; @@ -517,12 +513,6 @@ rsp_hdr->SessionId = rcv_hdr->SessionId; memcpy(rsp_hdr->Signature, rcv_hdr->Signature, 16); - work->syncronous = true; - if (work->async_id) { - ksmbd_release_id(&conn->async_ida, work->async_id); - work->async_id = 0; - } - return 0; } @@ -534,7 +524,7 @@ */ int smb2_allocate_rsp_buf(struct ksmbd_work *work) { - struct smb2_hdr *hdr = work->request_buf; + struct smb2_hdr *hdr = smb2_get_msg(work->request_buf); size_t small_sz = MAX_CIFS_SMALL_BUFFER_SIZE; size_t large_sz = small_sz + work->conn->vals->max_trans_size; size_t sz = small_sz; @@ -546,7 +536,7 @@ if (cmd == SMB2_QUERY_INFO_HE) { struct smb2_query_info_req *req; - req = work->request_buf; + req = smb2_get_msg(work->request_buf); if ((req->InfoType == SMB2_O_INFO_FILE && (req->FileInfoClass == FILE_FULL_EA_INFORMATION || req->FileInfoClass == FILE_ALL_INFORMATION)) || @@ -558,7 +548,7 @@ if (le32_to_cpu(hdr->NextCommand) > 0) sz = large_sz; - work->response_buf = kvmalloc(sz, GFP_KERNEL | __GFP_ZERO); + work->response_buf = kvzalloc(sz, GFP_KERNEL); if (!work->response_buf) return -ENOMEM; @@ -574,9 +564,9 @@ */ int smb2_check_user_session(struct ksmbd_work *work) { - struct smb2_hdr *req_hdr = work->request_buf; + struct smb2_hdr *req_hdr = ksmbd_req_buf_next(work); struct ksmbd_conn *conn = work->conn; - unsigned int cmd = conn->ops->get_cmd_val(work); + unsigned int cmd = le16_to_cpu(req_hdr->Command); unsigned long long sess_id; /* @@ -602,7 +592,7 @@ pr_err("The first operation in the compound does not have sess\n"); return -EINVAL; } - if (work->sess->id != sess_id) { + if (sess_id != ULLONG_MAX && work->sess->id != sess_id) { pr_err("session id(%llu) is different with the first operation(%lld)\n", sess_id, work->sess->id); return -EINVAL; @@ -644,16 +634,14 @@ /** * smb2_get_name() - get filename string from on the wire smb format - * @share: ksmbd_share_config pointer * @src: source buffer * @maxlen: maxlen of source string - * @nls_table: nls_table pointer + * @local_nls: nls_table pointer * * Return: matching converted filename on success, otherwise error ptr */ static char * -smb2_get_name(struct ksmbd_share_config *share, const char *src, - const int maxlen, struct nls_table *local_nls) +smb2_get_name(const char *src, const int maxlen, struct nls_table *local_nls) { char *name; @@ -670,21 +658,16 @@ int setup_async_work(struct ksmbd_work *work, void (*fn)(void **), void **arg) { - struct smb2_hdr *rsp_hdr; struct ksmbd_conn *conn = work->conn; int id; - rsp_hdr = work->response_buf; - rsp_hdr->Flags |= SMB2_FLAGS_ASYNC_COMMAND; - id = ksmbd_acquire_async_msg_id(&conn->async_ida); if (id < 0) { pr_err("Failed to alloc async message id\n"); return id; } - work->syncronous = false; + work->asynchronous = true; work->async_id = id; - rsp_hdr->Id.AsyncId = cpu_to_le64(id); ksmbd_debug(SMB, "Send interim Response to inform async request id : %d\n", @@ -702,18 +685,47 @@ return 0; } +void release_async_work(struct ksmbd_work *work) +{ + struct ksmbd_conn *conn = work->conn; + + spin_lock(&conn->request_lock); + list_del_init(&work->async_request_entry); + spin_unlock(&conn->request_lock); + + work->asynchronous = 0; + work->cancel_fn = NULL; + kfree(work->cancel_argv); + work->cancel_argv = NULL; + if (work->async_id) { + ksmbd_release_id(&conn->async_ida, work->async_id); + work->async_id = 0; + } +} + void smb2_send_interim_resp(struct ksmbd_work *work, __le32 status) { struct smb2_hdr *rsp_hdr; + struct ksmbd_work *in_work = ksmbd_alloc_work_struct(); - rsp_hdr = work->response_buf; - smb2_set_err_rsp(work); + if (allocate_interim_rsp_buf(in_work)) { + pr_err("smb_allocate_rsp_buf failed!\n"); + ksmbd_free_work_struct(in_work); + return; + } + + in_work->conn = work->conn; + memcpy(smb2_get_msg(in_work->response_buf), ksmbd_resp_buf_next(work), + __SMB2_HEADER_STRUCTURE_SIZE); + + rsp_hdr = smb2_get_msg(in_work->response_buf); + rsp_hdr->Flags |= SMB2_FLAGS_ASYNC_COMMAND; + rsp_hdr->Id.AsyncId = cpu_to_le64(work->async_id); + smb2_set_err_rsp(in_work); rsp_hdr->Status = status; - work->multiRsp = 1; - ksmbd_conn_write(work); - rsp_hdr->Status = 0; - work->multiRsp = 0; + ksmbd_conn_write(in_work); + ksmbd_free_work_struct(in_work); } static __le32 smb2_get_reparse_tag_special_file(umode_t mode) @@ -785,19 +797,6 @@ pneg_ctxt->Ciphers[0] = cipher_type; } -static void build_compression_ctxt(struct smb2_compression_ctx *pneg_ctxt, - __le16 comp_algo) -{ - pneg_ctxt->ContextType = SMB2_COMPRESSION_CAPABILITIES; - pneg_ctxt->DataLength = - cpu_to_le16(sizeof(struct smb2_compression_ctx) - - sizeof(struct smb2_neg_context)); - pneg_ctxt->Reserved = cpu_to_le32(0); - pneg_ctxt->CompressionAlgorithmCount = cpu_to_le16(1); - pneg_ctxt->Reserved1 = cpu_to_le32(0); - pneg_ctxt->CompressionAlgorithms[0] = comp_algo; -} - static void build_sign_cap_ctxt(struct smb2_signing_capabilities *pneg_ctxt, __le16 sign_algo) { @@ -833,12 +832,11 @@ pneg_ctxt->Name[15] = 0x7C; } -static void assemble_neg_contexts(struct ksmbd_conn *conn, +static unsigned int assemble_neg_contexts(struct ksmbd_conn *conn, struct smb2_negotiate_rsp *rsp) { - /* +4 is to account for the RFC1001 len field */ - char *pneg_ctxt = (char *)rsp + - le32_to_cpu(rsp->NegotiateContextOffset) + 4; + char * const pneg_ctxt = (char *)rsp + + le32_to_cpu(rsp->NegotiateContextOffset); int neg_ctxt_cnt = 1; int ctxt_size; @@ -846,94 +844,90 @@ "assemble SMB2_PREAUTH_INTEGRITY_CAPABILITIES context\n"); build_preauth_ctxt((struct smb2_preauth_neg_context *)pneg_ctxt, conn->preauth_info->Preauth_HashId); - rsp->NegotiateContextCount = cpu_to_le16(neg_ctxt_cnt); - inc_rfc1001_len(rsp, AUTH_GSS_PADDING); ctxt_size = sizeof(struct smb2_preauth_neg_context); - /* Round to 8 byte boundary */ - pneg_ctxt += round_up(sizeof(struct smb2_preauth_neg_context), 8); if (conn->cipher_type) { + /* Round to 8 byte boundary */ ctxt_size = round_up(ctxt_size, 8); ksmbd_debug(SMB, "assemble SMB2_ENCRYPTION_CAPABILITIES context\n"); - build_encrypt_ctxt((struct smb2_encryption_neg_context *)pneg_ctxt, + build_encrypt_ctxt((struct smb2_encryption_neg_context *) + (pneg_ctxt + ctxt_size), conn->cipher_type); - rsp->NegotiateContextCount = cpu_to_le16(++neg_ctxt_cnt); + neg_ctxt_cnt++; ctxt_size += sizeof(struct smb2_encryption_neg_context) + 2; - /* Round to 8 byte boundary */ - pneg_ctxt += - round_up(sizeof(struct smb2_encryption_neg_context) + 2, - 8); - } - - if (conn->compress_algorithm) { - ctxt_size = round_up(ctxt_size, 8); - ksmbd_debug(SMB, - "assemble SMB2_COMPRESSION_CAPABILITIES context\n"); - /* Temporarily set to SMB3_COMPRESS_NONE */ - build_compression_ctxt((struct smb2_compression_ctx *)pneg_ctxt, - conn->compress_algorithm); - rsp->NegotiateContextCount = cpu_to_le16(++neg_ctxt_cnt); - ctxt_size += sizeof(struct smb2_compression_ctx) + 2; - /* Round to 8 byte boundary */ - pneg_ctxt += round_up(sizeof(struct smb2_compression_ctx) + 2, - 8); } + /* compression context not yet supported */ + WARN_ON(conn->compress_algorithm != SMB3_COMPRESS_NONE); if (conn->posix_ext_supported) { ctxt_size = round_up(ctxt_size, 8); ksmbd_debug(SMB, "assemble SMB2_POSIX_EXTENSIONS_AVAILABLE context\n"); - build_posix_ctxt((struct smb2_posix_neg_context *)pneg_ctxt); - rsp->NegotiateContextCount = cpu_to_le16(++neg_ctxt_cnt); + build_posix_ctxt((struct smb2_posix_neg_context *) + (pneg_ctxt + ctxt_size)); + neg_ctxt_cnt++; ctxt_size += sizeof(struct smb2_posix_neg_context); - /* Round to 8 byte boundary */ - pneg_ctxt += round_up(sizeof(struct smb2_posix_neg_context), 8); } if (conn->signing_negotiated) { ctxt_size = round_up(ctxt_size, 8); ksmbd_debug(SMB, "assemble SMB2_SIGNING_CAPABILITIES context\n"); - build_sign_cap_ctxt((struct smb2_signing_capabilities *)pneg_ctxt, + build_sign_cap_ctxt((struct smb2_signing_capabilities *) + (pneg_ctxt + ctxt_size), conn->signing_algorithm); - rsp->NegotiateContextCount = cpu_to_le16(++neg_ctxt_cnt); + neg_ctxt_cnt++; ctxt_size += sizeof(struct smb2_signing_capabilities) + 2; } - inc_rfc1001_len(rsp, ctxt_size); + rsp->NegotiateContextCount = cpu_to_le16(neg_ctxt_cnt); + return ctxt_size + AUTH_GSS_PADDING; } static __le32 decode_preauth_ctxt(struct ksmbd_conn *conn, - struct smb2_preauth_neg_context *pneg_ctxt) + struct smb2_preauth_neg_context *pneg_ctxt, + int ctxt_len) { - __le32 err = STATUS_NO_PREAUTH_INTEGRITY_HASH_OVERLAP; + /* + * sizeof(smb2_preauth_neg_context) assumes SMB311_SALT_SIZE Salt, + * which may not be present. Only check for used HashAlgorithms[1]. + */ + if (ctxt_len < + sizeof(struct smb2_neg_context) + 6) + return STATUS_INVALID_PARAMETER; - if (pneg_ctxt->HashAlgorithms == SMB2_PREAUTH_INTEGRITY_SHA512) { - conn->preauth_info->Preauth_HashId = - SMB2_PREAUTH_INTEGRITY_SHA512; - err = STATUS_SUCCESS; - } + if (pneg_ctxt->HashAlgorithms != SMB2_PREAUTH_INTEGRITY_SHA512) + return STATUS_NO_PREAUTH_INTEGRITY_HASH_OVERLAP; - return err; + conn->preauth_info->Preauth_HashId = SMB2_PREAUTH_INTEGRITY_SHA512; + return STATUS_SUCCESS; } static void decode_encrypt_ctxt(struct ksmbd_conn *conn, struct smb2_encryption_neg_context *pneg_ctxt, - int len_of_ctxts) + int ctxt_len) { - int cph_cnt = le16_to_cpu(pneg_ctxt->CipherCount); - int i, cphs_size = cph_cnt * sizeof(__le16); + int cph_cnt; + int i, cphs_size; + + if (sizeof(struct smb2_encryption_neg_context) > ctxt_len) { + pr_err("Invalid SMB2_ENCRYPTION_CAPABILITIES context size\n"); + return; + } conn->cipher_type = 0; + cph_cnt = le16_to_cpu(pneg_ctxt->CipherCount); + cphs_size = cph_cnt * sizeof(__le16); + if (sizeof(struct smb2_encryption_neg_context) + cphs_size > - len_of_ctxts) { + ctxt_len) { pr_err("Invalid cipher count(%d)\n", cph_cnt); return; } - if (!(server_conf.flags & KSMBD_GLOBAL_FLAG_SMB2_ENCRYPTION)) + if (server_conf.flags & KSMBD_GLOBAL_FLAG_SMB2_ENCRYPTION_OFF) return; for (i = 0; i < cph_cnt; i++) { @@ -955,7 +949,7 @@ * * Return: true if connection should be encrypted, else false */ -static bool smb3_encryption_negotiated(struct ksmbd_conn *conn) +bool smb3_encryption_negotiated(struct ksmbd_conn *conn) { if (!conn->ops->generate_encryptionkey) return false; @@ -976,15 +970,22 @@ static void decode_sign_cap_ctxt(struct ksmbd_conn *conn, struct smb2_signing_capabilities *pneg_ctxt, - int len_of_ctxts) + int ctxt_len) { - int sign_algo_cnt = le16_to_cpu(pneg_ctxt->SigningAlgorithmCount); - int i, sign_alos_size = sign_algo_cnt * sizeof(__le16); + int sign_algo_cnt; + int i, sign_alos_size; + + if (sizeof(struct smb2_signing_capabilities) > ctxt_len) { + pr_err("Invalid SMB2_SIGNING_CAPABILITIES context length\n"); + return; + } conn->signing_negotiated = false; + sign_algo_cnt = le16_to_cpu(pneg_ctxt->SigningAlgorithmCount); + sign_alos_size = sign_algo_cnt * sizeof(__le16); if (sizeof(struct smb2_signing_capabilities) + sign_alos_size > - len_of_ctxts) { + ctxt_len) { pr_err("Invalid signing algorithm count(%d)\n", sign_algo_cnt); return; } @@ -1003,14 +1004,14 @@ } static __le32 deassemble_neg_contexts(struct ksmbd_conn *conn, - struct smb2_negotiate_req *req) + struct smb2_negotiate_req *req, + unsigned int len_of_smb) { /* +4 is to account for the RFC1001 len field */ - struct smb2_neg_context *pctx = (struct smb2_neg_context *)((char *)req + 4); + struct smb2_neg_context *pctx = (struct smb2_neg_context *)req; int i = 0, len_of_ctxts; - int offset = le32_to_cpu(req->NegotiateContextOffset); - int neg_ctxt_cnt = le16_to_cpu(req->NegotiateContextCount); - int len_of_smb = be32_to_cpu(req->hdr.smb2_buf_length); + unsigned int offset = le32_to_cpu(req->NegotiateContextOffset); + unsigned int neg_ctxt_cnt = le16_to_cpu(req->NegotiateContextCount); __le32 status = STATUS_INVALID_PARAMETER; ksmbd_debug(SMB, "decoding %d negotiate contexts\n", neg_ctxt_cnt); @@ -1022,18 +1023,16 @@ len_of_ctxts = len_of_smb - offset; while (i++ < neg_ctxt_cnt) { - int clen; - - /* check that offset is not beyond end of SMB */ - if (len_of_ctxts == 0) - break; + int clen, ctxt_len; - if (len_of_ctxts < sizeof(struct smb2_neg_context)) + if (len_of_ctxts < (int)sizeof(struct smb2_neg_context)) break; pctx = (struct smb2_neg_context *)((char *)pctx + offset); clen = le16_to_cpu(pctx->DataLength); - if (clen + sizeof(struct smb2_neg_context) > len_of_ctxts) + ctxt_len = clen + sizeof(struct smb2_neg_context); + + if (ctxt_len > len_of_ctxts) break; if (pctx->ContextType == SMB2_PREAUTH_INTEGRITY_CAPABILITIES) { @@ -1043,7 +1042,8 @@ break; status = decode_preauth_ctxt(conn, - (struct smb2_preauth_neg_context *)pctx); + (struct smb2_preauth_neg_context *)pctx, + ctxt_len); if (status != STATUS_SUCCESS) break; } else if (pctx->ContextType == SMB2_ENCRYPTION_CAPABILITIES) { @@ -1054,7 +1054,7 @@ decode_encrypt_ctxt(conn, (struct smb2_encryption_neg_context *)pctx, - len_of_ctxts); + ctxt_len); } else if (pctx->ContextType == SMB2_COMPRESSION_CAPABILITIES) { ksmbd_debug(SMB, "deassemble SMB2_COMPRESSION_CAPABILITIES context\n"); @@ -1073,15 +1073,15 @@ } else if (pctx->ContextType == SMB2_SIGNING_CAPABILITIES) { ksmbd_debug(SMB, "deassemble SMB2_SIGNING_CAPABILITIES context\n"); + decode_sign_cap_ctxt(conn, (struct smb2_signing_capabilities *)pctx, - len_of_ctxts); + ctxt_len); } /* offsets must be 8 byte aligned */ - clen = (clen + 7) & ~0x7; - offset = clen + sizeof(struct smb2_neg_context); - len_of_ctxts -= clen + sizeof(struct smb2_neg_context); + offset = (ctxt_len + 7) & ~0x7; + len_of_ctxts -= offset; } return status; } @@ -1095,10 +1095,10 @@ int smb2_handle_negotiate(struct ksmbd_work *work) { struct ksmbd_conn *conn = work->conn; - struct smb2_negotiate_req *req = work->request_buf; - struct smb2_negotiate_rsp *rsp = work->response_buf; + struct smb2_negotiate_req *req = smb2_get_msg(work->request_buf); + struct smb2_negotiate_rsp *rsp = smb2_get_msg(work->response_buf); int rc = 0; - unsigned int smb2_buf_len, smb2_neg_size; + unsigned int smb2_buf_len, smb2_neg_size, neg_ctxt_len = 0; __le32 status; ksmbd_debug(SMB, "Received negotiate request\n"); @@ -1110,7 +1110,7 @@ } smb2_buf_len = get_rfc1002_len(work->request_buf); - smb2_neg_size = offsetof(struct smb2_negotiate_req, Dialects) - 4; + smb2_neg_size = offsetof(struct smb2_negotiate_req, Dialects); if (smb2_neg_size > smb2_buf_len) { rsp->hdr.Status = STATUS_INVALID_PARAMETER; rc = -EINVAL; @@ -1166,7 +1166,8 @@ goto err_out; } - status = deassemble_neg_contexts(conn, req); + status = deassemble_neg_contexts(conn, req, + get_rfc1002_len(work->request_buf)); if (status != STATUS_SUCCESS) { pr_err("deassemble_neg_contexts error(0x%x)\n", status); @@ -1190,7 +1191,7 @@ conn->preauth_info->Preauth_HashValue); rsp->NegotiateContextOffset = cpu_to_le32(OFFSET_OF_NEG_CONTEXT); - assemble_neg_contexts(conn, rsp); + neg_ctxt_len = assemble_neg_contexts(conn, rsp); break; case SMB302_PROT_ID: init_smb3_02_server(conn); @@ -1238,12 +1239,8 @@ rsp->SecurityBufferOffset = cpu_to_le16(128); rsp->SecurityBufferLength = cpu_to_le16(AUTH_GSS_LENGTH); - ksmbd_copy_gss_neg_header(((char *)(&rsp->hdr) + - sizeof(rsp->hdr.smb2_buf_length)) + - le16_to_cpu(rsp->SecurityBufferOffset)); - inc_rfc1001_len(rsp, sizeof(struct smb2_negotiate_rsp) - - sizeof(struct smb2_hdr) - sizeof(rsp->Buffer) + - AUTH_GSS_LENGTH); + ksmbd_copy_gss_neg_header((char *)(&rsp->hdr) + + le16_to_cpu(rsp->SecurityBufferOffset)); rsp->SecurityMode = SMB2_NEGOTIATE_SIGNING_ENABLED_LE; conn->use_spnego = true; @@ -1261,9 +1258,16 @@ ksmbd_conn_set_need_negotiate(conn); err_out: + if (rc) + rsp->hdr.Status = STATUS_INSUFFICIENT_RESOURCES; + + if (!rc) + rc = ksmbd_iov_pin_rsp(work, rsp, + sizeof(struct smb2_negotiate_rsp) - + sizeof(rsp->Buffer) + + AUTH_GSS_LENGTH + neg_ctxt_len); if (rc < 0) smb2_set_err_rsp(work); - return rc; } @@ -1331,9 +1335,8 @@ static int ntlm_negotiate(struct ksmbd_work *work, struct negotiate_message *negblob, - size_t negblob_len) + size_t negblob_len, struct smb2_sess_setup_rsp *rsp) { - struct smb2_sess_setup_rsp *rsp = work->response_buf; struct challenge_message *chgblob; unsigned char *spnego_blob = NULL; u16 spnego_blob_len; @@ -1411,7 +1414,10 @@ char *name; unsigned int name_off, name_len, secbuf_len; - secbuf_len = le16_to_cpu(req->SecurityBufferLength); + if (conn->use_spnego && conn->mechToken) + secbuf_len = conn->mechTokenLen; + else + secbuf_len = le16_to_cpu(req->SecurityBufferLength); if (secbuf_len < sizeof(struct authenticate_message)) { ksmbd_debug(SMB, "blob len %d too small\n", secbuf_len); return NULL; @@ -1438,10 +1444,10 @@ return user; } -static int ntlm_authenticate(struct ksmbd_work *work) +static int ntlm_authenticate(struct ksmbd_work *work, + struct smb2_sess_setup_req *req, + struct smb2_sess_setup_rsp *rsp) { - struct smb2_sess_setup_req *req = work->request_buf; - struct smb2_sess_setup_rsp *rsp = work->response_buf; struct ksmbd_conn *conn = work->conn; struct ksmbd_session *sess = work->sess; struct channel *chann = NULL; @@ -1464,7 +1470,6 @@ memcpy((char *)&rsp->hdr.ProtocolId + sz, spnego_blob, spnego_blob_len); rsp->SecurityBufferLength = cpu_to_le16(spnego_blob_len); kfree(spnego_blob); - inc_rfc1001_len(rsp, spnego_blob_len - 1); } user = session_user(conn, req); @@ -1503,7 +1508,10 @@ struct authenticate_message *authblob; authblob = user_authblob(conn, req); - sz = le16_to_cpu(req->SecurityBufferLength); + if (conn->use_spnego && conn->mechToken) + sz = conn->mechTokenLen; + else + sz = le16_to_cpu(req->SecurityBufferLength); rc = ksmbd_decode_ntlmssp_auth_blob(authblob, sz, conn, sess); if (rc) { set_user_flag(sess->user, KSMBD_USER_FLAG_BAD_PASSWORD); @@ -1537,7 +1545,8 @@ return -EINVAL; } sess->enc = true; - rsp->SessionFlags = SMB2_SESSION_FLAG_ENCRYPT_DATA_LE; + if (server_conf.flags & KSMBD_GLOBAL_FLAG_SMB2_ENCRYPTION) + rsp->SessionFlags = SMB2_SESSION_FLAG_ENCRYPT_DATA_LE; /* * signing is disable if encryption is enable * on this session @@ -1574,10 +1583,10 @@ } #ifdef CONFIG_SMB_SERVER_KERBEROS5 -static int krb5_authenticate(struct ksmbd_work *work) +static int krb5_authenticate(struct ksmbd_work *work, + struct smb2_sess_setup_req *req, + struct smb2_sess_setup_rsp *rsp) { - struct smb2_sess_setup_req *req = work->request_buf; - struct smb2_sess_setup_rsp *rsp = work->response_buf; struct ksmbd_conn *conn = work->conn; struct ksmbd_session *sess = work->sess; char *in_blob, *out_blob; @@ -1592,8 +1601,7 @@ out_blob = (char *)&rsp->hdr.ProtocolId + le16_to_cpu(rsp->SecurityBufferOffset); out_len = work->response_sz - - offsetof(struct smb2_hdr, smb2_buf_length) - - le16_to_cpu(rsp->SecurityBufferOffset); + (le16_to_cpu(rsp->SecurityBufferOffset) + 4); /* Check previous session */ prev_sess_id = le64_to_cpu(req->PreviousSessionId); @@ -1610,7 +1618,6 @@ return -EINVAL; } rsp->SecurityBufferLength = cpu_to_le16(out_len); - inc_rfc1001_len(rsp, out_len - 1); if ((conn->sign || server_conf.enforced_signing) || (req->SecurityMode & SMB2_NEGOTIATE_SIGNING_REQUIRED)) @@ -1624,7 +1631,8 @@ return -EINVAL; } sess->enc = true; - rsp->SessionFlags = SMB2_SESSION_FLAG_ENCRYPT_DATA_LE; + if (server_conf.flags & KSMBD_GLOBAL_FLAG_SMB2_ENCRYPTION) + rsp->SessionFlags = SMB2_SESSION_FLAG_ENCRYPT_DATA_LE; sess->sign = false; } @@ -1655,7 +1663,9 @@ return 0; } #else -static int krb5_authenticate(struct ksmbd_work *work) +static int krb5_authenticate(struct ksmbd_work *work, + struct smb2_sess_setup_req *req, + struct smb2_sess_setup_rsp *rsp) { return -EOPNOTSUPP; } @@ -1664,8 +1674,8 @@ int smb2_sess_setup(struct ksmbd_work *work) { struct ksmbd_conn *conn = work->conn; - struct smb2_sess_setup_req *req = work->request_buf; - struct smb2_sess_setup_rsp *rsp = work->response_buf; + struct smb2_sess_setup_req *req; + struct smb2_sess_setup_rsp *rsp; struct ksmbd_session *sess; struct negotiate_message *negblob; unsigned int negblob_len, negblob_off; @@ -1673,11 +1683,12 @@ ksmbd_debug(SMB, "Received request for session setup\n"); + WORK_BUFFERS(work, req, rsp); + rsp->StructureSize = cpu_to_le16(9); rsp->SessionFlags = 0; rsp->SecurityBufferOffset = cpu_to_le16(72); rsp->SecurityBufferLength = 0; - inc_rfc1001_len(rsp, 9); ksmbd_conn_lock(conn); if (!req->hdr.SessionId) { @@ -1773,8 +1784,7 @@ 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) || - negblob_len < offsetof(struct negotiate_message, NegotiateFlags)) { + if (negblob_off < offsetof(struct smb2_sess_setup_req, Buffer)) { rc = -EINVAL; goto out_err; } @@ -1783,8 +1793,15 @@ negblob_off); if (decode_negotiation_token(conn, negblob, negblob_len) == 0) { - if (conn->mechToken) + if (conn->mechToken) { negblob = (struct negotiate_message *)conn->mechToken; + negblob_len = conn->mechTokenLen; + } + } + + if (negblob_len < offsetof(struct negotiate_message, NegotiateFlags)) { + rc = -EINVAL; + goto out_err; } if (server_conf.auth_mechs & conn->auth_mechs) { @@ -1794,7 +1811,7 @@ if (conn->preferred_auth_mech & (KSMBD_AUTH_KRB5 | KSMBD_AUTH_MSKRB5)) { - rc = krb5_authenticate(work); + rc = krb5_authenticate(work, req, rsp); if (rc) { rc = -EINVAL; goto out_err; @@ -1808,19 +1825,13 @@ sess->Preauth_HashValue = NULL; } else if (conn->preferred_auth_mech == KSMBD_AUTH_NTLMSSP) { if (negblob->MessageType == NtLmNegotiate) { - rc = ntlm_negotiate(work, negblob, negblob_len); + rc = ntlm_negotiate(work, negblob, negblob_len, rsp); if (rc) goto out_err; rsp->hdr.Status = STATUS_MORE_PROCESSING_REQUIRED; - /* - * Note: here total size -1 is done as an - * adjustment for 0 size blob - */ - inc_rfc1001_len(rsp, le16_to_cpu(rsp->SecurityBufferLength) - 1); - } else if (negblob->MessageType == NtLmAuthenticate) { - rc = ntlm_authenticate(work); + rc = ntlm_authenticate(work, req, rsp); if (rc) goto out_err; @@ -1895,10 +1906,26 @@ if (sess->user && sess->user->flags & KSMBD_USER_FLAG_DELAY_SESSION) try_delay = true; + sess->last_active = jiffies; sess->state = SMB2_SESSION_EXPIRED; - if (try_delay) + if (try_delay) { + ksmbd_conn_set_need_reconnect(conn); ssleep(5); + ksmbd_conn_set_need_negotiate(conn); + } } + smb2_set_err_rsp(work); + } else { + unsigned int iov_len; + + if (rsp->SecurityBufferLength) + iov_len = offsetof(struct smb2_sess_setup_rsp, Buffer) + + le16_to_cpu(rsp->SecurityBufferLength); + else + iov_len = sizeof(struct smb2_sess_setup_rsp); + rc = ksmbd_iov_pin_rsp(work, rsp, iov_len); + if (rc) + rsp->hdr.Status = STATUS_INSUFFICIENT_RESOURCES; } ksmbd_conn_unlock(conn); @@ -1914,14 +1941,16 @@ int smb2_tree_connect(struct ksmbd_work *work) { struct ksmbd_conn *conn = work->conn; - struct smb2_tree_connect_req *req = work->request_buf; - struct smb2_tree_connect_rsp *rsp = work->response_buf; + struct smb2_tree_connect_req *req; + struct smb2_tree_connect_rsp *rsp; struct ksmbd_session *sess = work->sess; char *treename = NULL, *name = NULL; struct ksmbd_tree_conn_status status; struct ksmbd_share_config *share; int rc = -EINVAL; + WORK_BUFFERS(work, req, rsp); + treename = smb_strndup_from_utf16(req->Buffer, le16_to_cpu(req->PathLength), true, conn->local_nls); @@ -1931,7 +1960,7 @@ goto out_err1; } - name = ksmbd_extract_sharename(treename); + name = ksmbd_extract_sharename(conn->um, treename); if (IS_ERR(name)) { status.ret = KSMBD_TREE_CONN_STATUS_ERROR; goto out_err1; @@ -1974,13 +2003,19 @@ if (conn->posix_ext_supported) status.tree_conn->posix_extensions = true; -out_err1: + write_lock(&sess->tree_conns_lock); + status.tree_conn->t_state = TREE_CONNECTED; + write_unlock(&sess->tree_conns_lock); rsp->StructureSize = cpu_to_le16(16); +out_err1: rsp->Capabilities = 0; rsp->Reserved = 0; /* default manual caching */ rsp->ShareFlags = SMB2_SHAREFLAG_MANUAL_CACHING; - inc_rfc1001_len(rsp, 16); + + rc = ksmbd_iov_pin_rsp(work, rsp, sizeof(struct smb2_tree_connect_rsp)); + if (rc) + status.ret = KSMBD_TREE_CONN_STATUS_NOMEM; if (!IS_ERR(treename)) kfree(treename); @@ -1992,6 +2027,7 @@ rsp->hdr.Status = STATUS_SUCCESS; rc = 0; break; + case -ESTALE: case -ENOENT: case KSMBD_TREE_CONN_STATUS_NO_SHARE: rsp->hdr.Status = STATUS_BAD_NETWORK_NAME; @@ -2012,6 +2048,9 @@ rsp->hdr.Status = STATUS_ACCESS_DENIED; } + if (status.ret != KSMBD_TREE_CONN_STATUS_OK) + smb2_set_err_rsp(work); + return rc; } @@ -2086,28 +2125,60 @@ */ int smb2_tree_disconnect(struct ksmbd_work *work) { - struct smb2_tree_disconnect_rsp *rsp = work->response_buf; + struct smb2_tree_disconnect_rsp *rsp; + struct smb2_tree_disconnect_req *req; struct ksmbd_session *sess = work->sess; struct ksmbd_tree_connect *tcon = work->tcon; + int err; - rsp->StructureSize = cpu_to_le16(4); - inc_rfc1001_len(rsp, 4); + WORK_BUFFERS(work, req, rsp); ksmbd_debug(SMB, "request\n"); if (!tcon) { - struct smb2_tree_disconnect_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); - return 0; + err = -ENOENT; + goto err_out; } ksmbd_close_tree_conn_fds(work); - ksmbd_tree_conn_disconnect(sess, tcon); + + write_lock(&sess->tree_conns_lock); + if (tcon->t_state == TREE_DISCONNECTED) { + write_unlock(&sess->tree_conns_lock); + rsp->hdr.Status = STATUS_NETWORK_NAME_DELETED; + err = -ENOENT; + goto err_out; + } + + WARN_ON_ONCE(atomic_dec_and_test(&tcon->refcount)); + tcon->t_state = TREE_DISCONNECTED; + write_unlock(&sess->tree_conns_lock); + + err = ksmbd_tree_conn_disconnect(sess, tcon); + if (err) { + rsp->hdr.Status = STATUS_NETWORK_NAME_DELETED; + goto err_out; + } + work->tcon = NULL; + + rsp->StructureSize = cpu_to_le16(4); + err = ksmbd_iov_pin_rsp(work, rsp, + sizeof(struct smb2_tree_disconnect_rsp)); + if (err) { + rsp->hdr.Status = STATUS_INSUFFICIENT_RESOURCES; + goto err_out; + } + return 0; + +err_out: + smb2_set_err_rsp(work); + return err; + } /** @@ -2119,29 +2190,40 @@ int smb2_session_logoff(struct ksmbd_work *work) { struct ksmbd_conn *conn = work->conn; - struct smb2_logoff_rsp *rsp = work->response_buf; + struct smb2_logoff_req *req; + struct smb2_logoff_rsp *rsp; struct ksmbd_session *sess; - struct smb2_logoff_req *req = work->request_buf; + u64 sess_id; + int err; - rsp->StructureSize = cpu_to_le16(4); - inc_rfc1001_len(rsp, 4); + WORK_BUFFERS(work, req, rsp); ksmbd_debug(SMB, "request\n"); - ksmbd_conn_set_need_reconnect(conn); + ksmbd_conn_lock(conn); + if (!ksmbd_conn_good(conn)) { + ksmbd_conn_unlock(conn); + rsp->hdr.Status = STATUS_NETWORK_NAME_DELETED; + smb2_set_err_rsp(work); + return -ENOENT; + } + sess_id = le64_to_cpu(req->hdr.SessionId); + ksmbd_all_conn_set_status(sess_id, KSMBD_SESS_NEED_RECONNECT); + ksmbd_conn_unlock(conn); + ksmbd_close_session_fds(work); - ksmbd_conn_wait_idle(conn); + ksmbd_conn_wait_idle(conn, sess_id); /* * Re-lookup session to validate if session is deleted * while waiting request complete */ - sess = ksmbd_session_lookup(conn, le64_to_cpu(req->hdr.SessionId)); + sess = ksmbd_session_lookup_all(conn, sess_id); if (ksmbd_tree_conn_session_logoff(sess)) { ksmbd_debug(SMB, "Invalid tid %d\n", req->hdr.Id.SyncId.TreeId); rsp->hdr.Status = STATUS_NETWORK_NAME_DELETED; smb2_set_err_rsp(work); - return 0; + return -ENOENT; } ksmbd_destroy_file_table(&sess->file_table); @@ -2149,7 +2231,15 @@ ksmbd_free_user(sess->user); sess->user = NULL; - ksmbd_conn_set_need_negotiate(conn); + ksmbd_all_conn_set_status(sess_id, KSMBD_SESS_NEED_NEGOTIATE); + + rsp->StructureSize = cpu_to_le16(4); + err = ksmbd_iov_pin_rsp(work, rsp, sizeof(struct smb2_logoff_rsp)); + if (err) { + rsp->hdr.Status = STATUS_INSUFFICIENT_RESOURCES; + smb2_set_err_rsp(work); + return err; + } return 0; } @@ -2161,12 +2251,14 @@ */ static noinline int create_smb2_pipe(struct ksmbd_work *work) { - struct smb2_create_rsp *rsp = work->response_buf; - struct smb2_create_req *req = work->request_buf; + struct smb2_create_rsp *rsp; + struct smb2_create_req *req; int id; int err; char *name; + WORK_BUFFERS(work, req, rsp); + name = smb_strndup_from_utf16(req->Buffer, le16_to_cpu(req->NameLength), 1, work->conn->local_nls); if (IS_ERR(name)) { @@ -2195,12 +2287,15 @@ rsp->EndofFile = cpu_to_le64(0); rsp->FileAttributes = ATTR_NORMAL_LE; rsp->Reserved2 = 0; - rsp->VolatileFileId = cpu_to_le64(id); + rsp->VolatileFileId = id; rsp->PersistentFileId = 0; rsp->CreateContextsOffset = 0; rsp->CreateContextsLength = 0; - inc_rfc1001_len(rsp, 88); /* StructureSize - 1*/ + err = ksmbd_iov_pin_rsp(work, rsp, offsetof(struct smb2_create_rsp, Buffer)); + if (err) + goto out; + kfree(name); return 0; @@ -2228,11 +2323,12 @@ * @eabuf: set info command buffer * @buf_len: set info command buffer length * @path: dentry path for get ea + * @get_write: get write access to a mount * * Return: 0 on success, otherwise error */ static int smb2_set_ea(struct smb2_ea_info *eabuf, unsigned int buf_len, - struct path *path) + const struct path *path, bool get_write) { struct user_namespace *user_ns = mnt_user_ns(path->mnt); char *attr_name = NULL, *value; @@ -2279,7 +2375,7 @@ /* delete the EA only when it exits */ if (rc > 0) { rc = ksmbd_vfs_remove_xattr(user_ns, - path->dentry, + path, attr_name); if (rc < 0) { @@ -2293,9 +2389,9 @@ /* if the EA doesn't exist, just do nothing. */ rc = 0; } else { - rc = ksmbd_vfs_setxattr(user_ns, - path->dentry, attr_name, value, - le16_to_cpu(eabuf->EaValueLength), 0); + rc = ksmbd_vfs_setxattr(user_ns, path, attr_name, value, + le16_to_cpu(eabuf->EaValueLength), + 0, true); if (rc < 0) { ksmbd_debug(SMB, "ksmbd_vfs_setxattr is failed(%d)\n", @@ -2326,7 +2422,7 @@ return rc; } -static noinline int smb2_set_stream_name_xattr(struct path *path, +static noinline int smb2_set_stream_name_xattr(const struct path *path, struct ksmbd_file *fp, char *stream_name, int s_type) { @@ -2358,14 +2454,13 @@ return -EBADF; } - rc = ksmbd_vfs_setxattr(user_ns, path->dentry, - xattr_stream_name, NULL, 0, 0); + rc = ksmbd_vfs_setxattr(user_ns, path, xattr_stream_name, NULL, 0, 0, false); if (rc < 0) pr_err("Failed to store XATTR stream name :%d\n", rc); return 0; } -static int smb2_remove_smb_xattrs(struct path *path) +static int smb2_remove_smb_xattrs(const struct path *path) { struct user_namespace *user_ns = mnt_user_ns(path->mnt); char *name, *xattr_list = NULL; @@ -2387,7 +2482,7 @@ if (!strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN) && !strncmp(&name[XATTR_USER_PREFIX_LEN], STREAM_PREFIX, STREAM_PREFIX_LEN)) { - err = ksmbd_vfs_remove_xattr(user_ns, path->dentry, + err = ksmbd_vfs_remove_xattr(user_ns, path, name); if (err) ksmbd_debug(SMB, "remove xattr failed : %s\n", @@ -2399,7 +2494,7 @@ return err; } -static int smb2_create_truncate(struct path *path) +static int smb2_create_truncate(const struct path *path) { int rc = vfs_truncate(path, 0); @@ -2418,7 +2513,7 @@ return rc; } -static void smb2_new_xattrs(struct ksmbd_tree_connect *tcon, struct path *path, +static void smb2_new_xattrs(struct ksmbd_tree_connect *tcon, const struct path *path, struct ksmbd_file *fp) { struct xattr_dos_attrib da = {0}; @@ -2434,14 +2529,13 @@ da.flags = XATTR_DOSINFO_ATTRIB | XATTR_DOSINFO_CREATE_TIME | XATTR_DOSINFO_ITIME; - rc = ksmbd_vfs_set_dos_attrib_xattr(mnt_user_ns(path->mnt), - path->dentry, &da); + rc = ksmbd_vfs_set_dos_attrib_xattr(mnt_user_ns(path->mnt), path, &da, true); if (rc) ksmbd_debug(SMB, "failed to store file attribute into xattr\n"); } static void smb2_update_xattrs(struct ksmbd_tree_connect *tcon, - struct path *path, struct ksmbd_file *fp) + const struct path *path, struct ksmbd_file *fp) { struct xattr_dos_attrib da; int rc; @@ -2462,8 +2556,9 @@ } } -static int smb2_creat(struct ksmbd_work *work, struct path *path, char *name, - int open_flags, umode_t posix_mode, bool is_dir) +static int smb2_creat(struct ksmbd_work *work, struct path *parent_path, + struct path *path, char *name, int open_flags, + umode_t posix_mode, bool is_dir) { struct ksmbd_tree_connect *tcon = work->tcon; struct ksmbd_share_config *share = tcon->share_conf; @@ -2490,7 +2585,7 @@ return rc; } - rc = ksmbd_vfs_kern_path(work, name, 0, path, 0); + rc = ksmbd_vfs_kern_path_locked(work, name, 0, parent_path, path, 0); if (rc) { pr_err("cannot get linux path (%s), err = %d\n", name, rc); @@ -2501,7 +2596,7 @@ static int smb2_create_sd_buffer(struct ksmbd_work *work, struct smb2_create_req *req, - struct path *path) + const struct path *path) { struct create_context *context; struct create_sd_buf_req *sd_buf; @@ -2524,7 +2619,7 @@ sizeof(struct create_sd_buf_req)) return -EINVAL; return set_info_sec(work->conn, work->tcon, path, &sd_buf->ntsd, - le32_to_cpu(sd_buf->ccontext.DataLength), true); + le32_to_cpu(sd_buf->ccontext.DataLength), true, false); } static void ksmbd_acls_fattr(struct smb_fattr *fattr, @@ -2556,8 +2651,8 @@ struct ksmbd_session *sess = work->sess; struct ksmbd_tree_connect *tcon = work->tcon; struct smb2_create_req *req; - struct smb2_create_rsp *rsp, *rsp_org; - struct path path; + struct smb2_create_rsp *rsp; + struct path path, parent_path; struct ksmbd_share_config *share = tcon->share_conf; struct ksmbd_file *fp = NULL; struct file *filp = NULL; @@ -2581,8 +2676,8 @@ u64 time; umode_t posix_mode = 0; __le32 daccess, maximal_access = 0; + int iov_len = 0; - rsp_org = work->response_buf; WORK_BUFFERS(work, req, rsp); if (req->hdr.NextCommand && !work->next_smb2_rcv_hdr_off && @@ -2603,11 +2698,10 @@ *(char *)req->Buffer == '\\') { pr_err("not allow directory name included leading slash\n"); rc = -EINVAL; - goto err_out1; + goto err_out2; } - name = smb2_get_name(share, - req->Buffer, + name = smb2_get_name(req->Buffer, le16_to_cpu(req->NameLength), work->conn->local_nls); if (IS_ERR(name)) { @@ -2615,7 +2709,7 @@ if (rc != -ENOMEM) rc = -ENOENT; name = NULL; - goto err_out1; + goto err_out2; } ksmbd_debug(SMB, "converted name = %s\n", name); @@ -2623,48 +2717,44 @@ if (!test_share_config_flag(work->tcon->share_conf, KSMBD_SHARE_FLAG_STREAMS)) { rc = -EBADF; - goto err_out1; + goto err_out2; } rc = parse_stream_name(name, &stream_name, &s_type); if (rc < 0) - goto err_out1; + goto err_out2; } rc = ksmbd_validate_filename(name); if (rc < 0) - goto err_out1; + goto err_out2; if (ksmbd_share_veto_filename(share, name)) { rc = -ENOENT; ksmbd_debug(SMB, "Reject open(), vetoed file: %s\n", name); - goto err_out1; + goto err_out2; } } else { name = kstrdup("", GFP_KERNEL); if (!name) { rc = -ENOMEM; - goto err_out1; + goto err_out2; } } - req_op_level = req->RequestedOplockLevel; - if (req_op_level == SMB2_OPLOCK_LEVEL_LEASE) - lc = parse_lease_state(req); - if (le32_to_cpu(req->ImpersonationLevel) > le32_to_cpu(IL_DELEGATE_LE)) { pr_err("Invalid impersonationlevel : 0x%x\n", le32_to_cpu(req->ImpersonationLevel)); rc = -EIO; rsp->hdr.Status = STATUS_BAD_IMPERSONATION_LEVEL; - goto err_out1; + goto err_out2; } if (req->CreateOptions && !(req->CreateOptions & CREATE_OPTIONS_MASK)) { pr_err("Invalid create options : 0x%x\n", le32_to_cpu(req->CreateOptions)); rc = -EINVAL; - goto err_out1; + goto err_out2; } else { if (req->CreateOptions & FILE_SEQUENTIAL_ONLY_LE && req->CreateOptions & FILE_RANDOM_ACCESS_LE) @@ -2674,13 +2764,13 @@ (FILE_OPEN_BY_FILE_ID_LE | CREATE_TREE_CONNECTION | FILE_RESERVE_OPFILTER_LE)) { rc = -EOPNOTSUPP; - goto err_out1; + goto err_out2; } if (req->CreateOptions & FILE_DIRECTORY_FILE_LE) { if (req->CreateOptions & FILE_NON_DIRECTORY_FILE_LE) { rc = -EINVAL; - goto err_out1; + goto err_out2; } else if (req->CreateOptions & FILE_NO_COMPRESSION_LE) { req->CreateOptions = ~(FILE_NO_COMPRESSION_LE); } @@ -2692,21 +2782,21 @@ pr_err("Invalid create disposition : 0x%x\n", le32_to_cpu(req->CreateDisposition)); rc = -EINVAL; - goto err_out1; + goto err_out2; } if (!(req->DesiredAccess & DESIRED_ACCESS_MASK)) { pr_err("Invalid desired access : 0x%x\n", le32_to_cpu(req->DesiredAccess)); rc = -EACCES; - goto err_out1; + goto err_out2; } if (req->FileAttributes && !(req->FileAttributes & ATTR_MASK_LE)) { pr_err("Invalid file attribute : 0x%x\n", le32_to_cpu(req->FileAttributes)); rc = -EINVAL; - goto err_out1; + goto err_out2; } if (req->CreateContextsOffset) { @@ -2714,19 +2804,19 @@ context = smb2_find_context_vals(req, SMB2_CREATE_EA_BUFFER, 4); if (IS_ERR(context)) { rc = PTR_ERR(context); - goto err_out1; + goto err_out2; } else if (context) { ea_buf = (struct create_ea_buf_req *)context; if (le16_to_cpu(context->DataOffset) + le32_to_cpu(context->DataLength) < sizeof(struct create_ea_buf_req)) { rc = -EINVAL; - goto err_out1; + goto err_out2; } if (req->CreateOptions & FILE_NO_EA_KNOWLEDGE_LE) { rsp->hdr.Status = STATUS_ACCESS_DENIED; rc = -EACCES; - goto err_out1; + goto err_out2; } } @@ -2734,7 +2824,7 @@ SMB2_CREATE_QUERY_MAXIMAL_ACCESS_REQUEST, 4); if (IS_ERR(context)) { rc = PTR_ERR(context); - goto err_out1; + goto err_out2; } else if (context) { ksmbd_debug(SMB, "get query maximal access context\n"); @@ -2745,11 +2835,11 @@ SMB2_CREATE_TIMEWARP_REQUEST, 4); if (IS_ERR(context)) { rc = PTR_ERR(context); - goto err_out1; + goto err_out2; } else if (context) { ksmbd_debug(SMB, "get timewarp context\n"); rc = -EBADF; - goto err_out1; + goto err_out2; } if (tcon->posix_extensions) { @@ -2757,7 +2847,7 @@ SMB2_CREATE_TAG_POSIX, 16); if (IS_ERR(context)) { rc = PTR_ERR(context); - goto err_out1; + goto err_out2; } else if (context) { struct create_posix *posix = (struct create_posix *)context; @@ -2765,7 +2855,7 @@ le32_to_cpu(context->DataLength) < sizeof(struct create_posix) - 4) { rc = -EINVAL; - goto err_out1; + goto err_out2; } ksmbd_debug(SMB, "get posix context\n"); @@ -2777,11 +2867,14 @@ if (ksmbd_override_fsids(work)) { rc = -ENOMEM; - goto err_out1; + goto err_out2; } - rc = ksmbd_vfs_kern_path(work, name, LOOKUP_NO_SYMLINKS, &path, 1); + rc = ksmbd_vfs_kern_path_locked(work, name, LOOKUP_NO_SYMLINKS, + &parent_path, &path, 1); if (!rc) { + file_present = true; + if (req->CreateOptions & FILE_DELETE_ON_CLOSE_LE) { /* * If file exists with under flags, return access @@ -2790,7 +2883,6 @@ if (req->CreateDisposition == FILE_OVERWRITE_IF_LE || req->CreateDisposition == FILE_OPEN_IF_LE) { rc = -EACCES; - path_put(&path); goto err_out; } @@ -2798,27 +2890,23 @@ ksmbd_debug(SMB, "User does not have write permission\n"); rc = -EACCES; - path_put(&path); goto err_out; } } else if (d_is_symlink(path.dentry)) { rc = -EACCES; - path_put(&path); goto err_out; } - } - if (rc) { + file_present = true; + user_ns = mnt_user_ns(path.mnt); + } else { if (rc != -ENOENT) goto err_out; ksmbd_debug(SMB, "can not get linux path for %s, rc = %d\n", name, rc); rc = 0; - } else { - file_present = true; - user_ns = mnt_user_ns(path.mnt); - generic_fillattr(user_ns, d_inode(path.dentry), &stat); } + if (stream_name) { if (req->CreateOptions & FILE_DIRECTORY_FILE_LE) { if (s_type == DATA_STREAM) { @@ -2826,7 +2914,8 @@ rsp->hdr.Status = STATUS_NOT_A_DIRECTORY; } } else { - if (S_ISDIR(stat.mode) && s_type == DATA_STREAM) { + if (file_present && S_ISDIR(d_inode(path.dentry)->i_mode) && + s_type == DATA_STREAM) { rc = -EIO; rsp->hdr.Status = STATUS_FILE_IS_A_DIRECTORY; } @@ -2843,7 +2932,8 @@ } if (file_present && req->CreateOptions & FILE_NON_DIRECTORY_FILE_LE && - S_ISDIR(stat.mode) && !(req->CreateOptions & FILE_DELETE_ON_CLOSE_LE)) { + S_ISDIR(d_inode(path.dentry)->i_mode) && + !(req->CreateOptions & FILE_DELETE_ON_CLOSE_LE)) { ksmbd_debug(SMB, "open() argument is a directory: %s, %x\n", name, req->CreateOptions); rsp->hdr.Status = STATUS_FILE_IS_A_DIRECTORY; @@ -2853,7 +2943,7 @@ if (file_present && (req->CreateOptions & FILE_DIRECTORY_FILE_LE) && !(req->CreateDisposition == FILE_CREATE_LE) && - !S_ISDIR(stat.mode)) { + !S_ISDIR(d_inode(path.dentry)->i_mode)) { rsp->hdr.Status = STATUS_NOT_A_DIRECTORY; rc = -EIO; goto err_out; @@ -2878,11 +2968,9 @@ if (!file_present) { daccess = cpu_to_le32(GENERIC_ALL_FLAGS); } else { - rc = ksmbd_vfs_query_maximal_access(user_ns, + ksmbd_vfs_query_maximal_access(user_ns, path.dentry, &daccess); - if (rc) - goto err_out; already_permitted = true; } maximal_access = daccess; @@ -2893,7 +2981,7 @@ &may_flags); if (!test_tree_conn_flag(tcon, KSMBD_TREE_CONN_FLAG_WRITABLE)) { - if (open_flags & O_CREAT) { + if (open_flags & (O_CREAT | O_TRUNC)) { ksmbd_debug(SMB, "User does not have write permission\n"); rc = -EACCES; @@ -2903,7 +2991,8 @@ /*create file if not present */ if (!file_present) { - rc = smb2_creat(work, &path, name, open_flags, posix_mode, + rc = smb2_creat(work, &parent_path, &path, name, open_flags, + posix_mode, req->CreateOptions & FILE_DIRECTORY_FILE_LE); if (rc) { if (rc == -ENOENT) { @@ -2924,7 +3013,7 @@ rc = smb2_set_ea(&ea_buf->ea, le32_to_cpu(ea_buf->ccontext.DataLength), - &path); + &path, false); if (rc == -EOPNOTSUPP) rc = 0; else if (rc) @@ -2944,15 +3033,16 @@ if ((daccess & FILE_DELETE_LE) || (req->CreateOptions & FILE_DELETE_ON_CLOSE_LE)) { - rc = ksmbd_vfs_may_delete(user_ns, - path.dentry); + rc = inode_permission(user_ns, + d_inode(path.dentry->d_parent), + MAY_EXEC | MAY_WRITE); if (rc) goto err_out; } } } - rc = ksmbd_query_inode_status(d_inode(path.dentry->d_parent)); + rc = ksmbd_query_inode_status(path.dentry->d_parent); if (rc == KSMBD_INODE_STATUS_PENDING_DELETE) { rc = -EBUSY; goto err_out; @@ -2997,7 +3087,6 @@ goto err_out; } - fp->filename = name; fp->cdoption = req->CreateDisposition; fp->daccess = daccess; fp->saccess = req->ShareAccess; @@ -3009,7 +3098,7 @@ struct inode *inode = d_inode(path.dentry); posix_acl_rc = ksmbd_vfs_inherit_posix_acl(user_ns, - inode, + &path, d_inode(path.dentry->d_parent)); if (posix_acl_rc) ksmbd_debug(SMB, "inherit posix acl failed : %d\n", posix_acl_rc); @@ -3025,7 +3114,7 @@ if (rc) { if (posix_acl_rc) ksmbd_vfs_set_init_posix_acl(user_ns, - inode); + &path); if (test_share_config_flag(work->tcon->share_conf, KSMBD_SHARE_FLAG_ACL_XATTR)) { @@ -3065,9 +3154,10 @@ rc = ksmbd_vfs_set_sd_xattr(conn, user_ns, - path.dentry, + &path, pntsd, - pntsd_size); + pntsd_size, + false); kfree(pntsd); if (rc) pr_err("failed to store ntacl in xattr : %d\n", @@ -3090,11 +3180,6 @@ fp->attrib_only = !(req->DesiredAccess & ~(FILE_READ_ATTRIBUTES_LE | FILE_WRITE_ATTRIBUTES_LE | FILE_SYNCHRONIZE_LE)); - if (!S_ISDIR(file_inode(filp)->i_mode) && open_flags & O_TRUNC && - !fp->attrib_only && !stream_name) { - smb_break_all_oplock(work, fp); - need_truncate = 1; - } /* fp should be searchable through ksmbd_inode.m_fp_list * after daccess, saccess, attrib_only, and stream are @@ -3104,35 +3189,49 @@ list_add(&fp->node, &fp->f_ci->m_fp_list); write_unlock(&fp->f_ci->m_lock); - rc = ksmbd_vfs_getattr(&path, &stat); - if (rc) { - generic_fillattr(user_ns, d_inode(path.dentry), &stat); - rc = 0; - } - /* Check delete pending among previous fp before oplock break */ if (ksmbd_inode_pending_delete(fp)) { rc = -EBUSY; goto err_out; } + if (file_present || created) + ksmbd_vfs_kern_path_unlock(&parent_path, &path); + + if (!S_ISDIR(file_inode(filp)->i_mode) && open_flags & O_TRUNC && + !fp->attrib_only && !stream_name) { + smb_break_all_oplock(work, fp); + need_truncate = 1; + } + + req_op_level = req->RequestedOplockLevel; + if (req_op_level == SMB2_OPLOCK_LEVEL_LEASE) + lc = parse_lease_state(req, S_ISDIR(file_inode(filp)->i_mode)); + share_ret = ksmbd_smb_check_shared_mode(fp->filp, fp); if (!test_share_config_flag(work->tcon->share_conf, KSMBD_SHARE_FLAG_OPLOCKS) || (req_op_level == SMB2_OPLOCK_LEVEL_LEASE && !(conn->vals->capabilities & SMB2_GLOBAL_CAP_LEASING))) { if (share_ret < 0 && !S_ISDIR(file_inode(fp->filp)->i_mode)) { rc = share_ret; - goto err_out; + goto err_out1; } } else { if (req_op_level == SMB2_OPLOCK_LEVEL_LEASE) { + /* + * Compare parent lease using parent key. If there is no + * a lease that has same parent key, Send lease break + * notification. + */ + smb_send_parent_lease_break_noti(fp, lc); + req_op_level = smb2_map_lease_to_oplock(lc->req_state); ksmbd_debug(SMB, "lease req for(%s) req oplock state 0x%x, lease state 0x%x\n", name, req_op_level, lc->req_state); rc = find_same_lease_key(sess, fp->f_ci, lc); if (rc) - goto err_out; + goto err_out1; } else if (open_flags == O_RDONLY && (req_op_level == SMB2_OPLOCK_LEVEL_BATCH || req_op_level == SMB2_OPLOCK_LEVEL_EXCLUSIVE)) @@ -3143,16 +3242,16 @@ le32_to_cpu(req->hdr.Id.SyncId.TreeId), lc, share_ret); if (rc < 0) - goto err_out; + goto err_out1; } if (req->CreateOptions & FILE_DELETE_ON_CLOSE_LE) ksmbd_fd_set_delete_on_close(fp, file_info); if (need_truncate) { - rc = smb2_create_truncate(&path); + rc = smb2_create_truncate(&fp->filp->f_path); if (rc) - goto err_out; + goto err_out1; } if (req->CreateContextsOffset) { @@ -3162,7 +3261,7 @@ SMB2_CREATE_ALLOCATION_SIZE, 4); if (IS_ERR(az_req)) { rc = PTR_ERR(az_req); - goto err_out; + goto err_out1; } else if (az_req) { loff_t alloc_size; int err; @@ -3171,7 +3270,7 @@ le32_to_cpu(az_req->ccontext.DataLength) < sizeof(struct create_alloc_size_req)) { rc = -EINVAL; - goto err_out; + goto err_out1; } alloc_size = le64_to_cpu(az_req->AllocationSize); ksmbd_debug(SMB, @@ -3189,13 +3288,17 @@ context = smb2_find_context_vals(req, SMB2_CREATE_QUERY_ON_DISK_ID, 4); if (IS_ERR(context)) { rc = PTR_ERR(context); - goto err_out; + goto err_out1; } else if (context) { ksmbd_debug(SMB, "get query on disk id context\n"); query_disk_id = 1; } } + rc = ksmbd_vfs_getattr(&path, &stat); + if (rc) + goto err_out1; + if (stat.result_mask & STATX_BTIME) fp->create_time = ksmbd_UnixTimeToNT(stat.btime); else @@ -3211,9 +3314,6 @@ memcpy(fp->client_guid, conn->ClientGUID, SMB2_CLIENT_GUID_SIZE); - generic_fillattr(user_ns, file_inode(fp->filp), - &stat); - rsp->StructureSize = cpu_to_le16(89); rcu_read_lock(); opinfo = rcu_dereference(fp->f_opinfo); @@ -3235,12 +3335,12 @@ rsp->Reserved2 = 0; - rsp->PersistentFileId = cpu_to_le64(fp->persistent_id); - rsp->VolatileFileId = cpu_to_le64(fp->volatile_id); + rsp->PersistentFileId = fp->persistent_id; + rsp->VolatileFileId = fp->volatile_id; rsp->CreateContextsOffset = 0; rsp->CreateContextsLength = 0; - inc_rfc1001_len(rsp_org, 88); /* StructureSize - 1*/ + iov_len = offsetof(struct smb2_create_rsp, Buffer); /* If lease is request send lease context response */ if (opinfo && opinfo->is_lease) { @@ -3255,7 +3355,7 @@ create_lease_buf(rsp->Buffer, opinfo->o_lease); le32_add_cpu(&rsp->CreateContextsLength, conn->vals->create_lease_size); - inc_rfc1001_len(rsp_org, conn->vals->create_lease_size); + iov_len += conn->vals->create_lease_size; next_ptr = &lease_ccontext->Next; next_off = conn->vals->create_lease_size; } @@ -3275,7 +3375,7 @@ le32_to_cpu(maximal_access)); le32_add_cpu(&rsp->CreateContextsLength, conn->vals->create_mxac_size); - inc_rfc1001_len(rsp_org, conn->vals->create_mxac_size); + iov_len += conn->vals->create_mxac_size; if (next_ptr) *next_ptr = cpu_to_le32(next_off); next_ptr = &mxac_ccontext->Next; @@ -3293,7 +3393,7 @@ stat.ino, tcon->id); le32_add_cpu(&rsp->CreateContextsLength, conn->vals->create_disk_id_size); - inc_rfc1001_len(rsp_org, conn->vals->create_disk_id_size); + iov_len += conn->vals->create_disk_id_size; if (next_ptr) *next_ptr = cpu_to_le32(next_off); next_ptr = &disk_id_ccontext->Next; @@ -3307,22 +3407,28 @@ fp); le32_add_cpu(&rsp->CreateContextsLength, conn->vals->create_posix_size); - inc_rfc1001_len(rsp_org, conn->vals->create_posix_size); + iov_len += conn->vals->create_posix_size; if (next_ptr) *next_ptr = cpu_to_le32(next_off); } if (contxt_cnt > 0) { rsp->CreateContextsOffset = - cpu_to_le32(offsetof(struct smb2_create_rsp, Buffer) - - 4); + cpu_to_le32(offsetof(struct smb2_create_rsp, Buffer)); } err_out: - if (file_present || created) - path_put(&path); - ksmbd_revert_fsids(work); + if (rc && (file_present || created)) + ksmbd_vfs_kern_path_unlock(&parent_path, &path); + err_out1: + ksmbd_revert_fsids(work); + +err_out2: + if (!rc) { + ksmbd_update_fstate(&work->sess->file_table, fp, FP_INITED); + rc = ksmbd_iov_pin_rsp(work, (void *)rsp, iov_len); + } if (rc) { if (rc == -EINVAL) rsp->hdr.Status = STATUS_INVALID_PARAMETER; @@ -3349,14 +3455,13 @@ if (!rsp->hdr.Status) rsp->hdr.Status = STATUS_UNEXPECTED_IO_ERROR; - if (!fp || !fp->filename) - kfree(name); if (fp) ksmbd_fd_put(work, fp); smb2_set_err_rsp(work); ksmbd_debug(SMB, "Error response: %x\n", rsp->hdr.Status); } + kfree(name); kfree(lc); return 0; @@ -3468,7 +3573,6 @@ * @conn: connection instance * @info_level: smb information level * @d_info: structure included variables for query dir - * @user_ns: user namespace * @ksmbd_kstat: ksmbd wrapper of dirent stat information * * if directory has many entries, find first can't read it fully. @@ -3498,7 +3602,7 @@ goto free_conv_name; } - struct_sz = readdir_info_level_struct_sz(info_level) - 1 + conv_len; + struct_sz = readdir_info_level_struct_sz(info_level) + conv_len; next_entry_offset = ALIGN(struct_sz, KSMBD_DIR_INFO_ALIGNMENT); d_info->last_entry_off_align = next_entry_offset - struct_sz; @@ -3625,16 +3729,21 @@ posix_info->AllocationSize = cpu_to_le64(ksmbd_kstat->kstat->blocks << 9); posix_info->DeviceId = cpu_to_le32(ksmbd_kstat->kstat->rdev); posix_info->HardLinks = cpu_to_le32(ksmbd_kstat->kstat->nlink); - posix_info->Mode = cpu_to_le32(ksmbd_kstat->kstat->mode); + posix_info->Mode = cpu_to_le32(ksmbd_kstat->kstat->mode & 0777); posix_info->Inode = cpu_to_le64(ksmbd_kstat->kstat->ino); posix_info->DosAttributes = S_ISDIR(ksmbd_kstat->kstat->mode) ? ATTR_DIRECTORY_LE : ATTR_ARCHIVE_LE; if (d_info->hide_dot_file && d_info->name[0] == '.') posix_info->DosAttributes |= ATTR_HIDDEN_LE; + /* + * SidBuffer(32) contain two sids(Domain sid(16), UNIX group sid(16)). + * UNIX sid(16) = revision(1) + num_subauth(1) + authority(6) + + * sub_auth(4 * 1(num_subauth)) + RID(4). + */ id_to_sid(from_kuid_munged(&init_user_ns, ksmbd_kstat->kstat->uid), - SIDNFS_USER, (struct smb_sid *)&posix_info->SidBuffer[0]); + SIDUNIX_USER, (struct smb_sid *)&posix_info->SidBuffer[0]); id_to_sid(from_kgid_munged(&init_user_ns, ksmbd_kstat->kstat->gid), - SIDNFS_GROUP, (struct smb_sid *)&posix_info->SidBuffer[20]); + SIDUNIX_GROUP, (struct smb_sid *)&posix_info->SidBuffer[16]); memcpy(posix_info->name, conv_name, conv_len); posix_info->name_len = cpu_to_le32(conv_len); posix_info->NextEntryOffset = cpu_to_le32(next_entry_offset); @@ -3744,7 +3853,7 @@ return -EOPNOTSUPP; conv_len = (d_info->name_len + 1) * 2; - next_entry_offset = ALIGN(struct_sz - 1 + conv_len, + next_entry_offset = ALIGN(struct_sz + conv_len, KSMBD_DIR_INFO_ALIGNMENT); if (next_entry_offset > d_info->out_buf_len) { @@ -3918,7 +4027,7 @@ { struct ksmbd_conn *conn = work->conn; struct smb2_query_directory_req *req; - struct smb2_query_directory_rsp *rsp, *rsp_org; + struct smb2_query_directory_rsp *rsp; struct ksmbd_share_config *share = work->tcon->share_conf; struct ksmbd_file *dir_fp = NULL; struct ksmbd_dir_info d_info; @@ -3928,7 +4037,6 @@ int buffer_sz; struct smb2_query_dir_private query_dir_private = {NULL, }; - rsp_org = work->response_buf; WORK_BUFFERS(work, req, rsp); if (ksmbd_override_fsids(work)) { @@ -3943,9 +4051,7 @@ goto err_out2; } - dir_fp = ksmbd_lookup_fd_slow(work, - le64_to_cpu(req->VolatileFileId), - le64_to_cpu(req->PersistentFileId)); + dir_fp = ksmbd_lookup_fd_slow(work, req->VolatileFileId, req->PersistentFileId); if (!dir_fp) { rc = -EBADF; goto err_out2; @@ -3955,8 +4061,7 @@ inode_permission(file_mnt_user_ns(dir_fp->filp), file_inode(dir_fp->filp), MAY_READ | MAY_EXEC)) { - pr_err("no right to enumerate directory (%pd)\n", - dir_fp->filp->f_path.dentry); + pr_err("no right to enumerate directory (%pD)\n", dir_fp->filp); rc = -EACCES; goto err_out2; } @@ -3979,8 +4084,6 @@ ksmbd_debug(SMB, "Search pattern is %s\n", srch_ptr); } - ksmbd_debug(SMB, "Directory name is %s\n", dir_fp->filename); - if (srch_flag & SMB2_REOPEN || srch_flag & SMB2_RESTART_SCANS) { ksmbd_debug(SMB, "Restart directory scan\n"); generic_file_llseek(dir_fp->filp, 0, SEEK_SET); @@ -4052,7 +4155,10 @@ rsp->OutputBufferOffset = cpu_to_le16(0); rsp->OutputBufferLength = cpu_to_le32(0); rsp->Buffer[0] = 0; - inc_rfc1001_len(rsp_org, 9); + rc = ksmbd_iov_pin_rsp(work, (void *)rsp, + sizeof(struct smb2_query_directory_rsp)); + if (rc) + goto err_out; } else { no_buf_len: ((struct file_directory_info *) @@ -4064,7 +4170,11 @@ rsp->StructureSize = cpu_to_le16(9); rsp->OutputBufferOffset = cpu_to_le16(72); rsp->OutputBufferLength = cpu_to_le32(d_info.data_count); - inc_rfc1001_len(rsp_org, 8 + d_info.data_count); + rc = ksmbd_iov_pin_rsp(work, (void *)rsp, + offsetof(struct smb2_query_directory_rsp, Buffer) + + d_info.data_count); + if (rc) + goto err_out; } kfree(srch_ptr); @@ -4104,31 +4214,25 @@ * buffer_check_err() - helper function to check buffer errors * @reqOutputBufferLength: max buffer length expected in command response * @rsp: query info response buffer contains output buffer length - * @infoclass_size: query info class response buffer size + * @rsp_org: base response buffer pointer in case of chained response * * Return: 0 on success, otherwise error */ static int buffer_check_err(int reqOutputBufferLength, - struct smb2_query_info_rsp *rsp, int infoclass_size) + struct smb2_query_info_rsp *rsp, + void *rsp_org) { if (reqOutputBufferLength < le32_to_cpu(rsp->OutputBufferLength)) { - if (reqOutputBufferLength < infoclass_size) { - pr_err("Invalid Buffer Size Requested\n"); - rsp->hdr.Status = STATUS_INFO_LENGTH_MISMATCH; - rsp->hdr.smb2_buf_length = cpu_to_be32(sizeof(struct smb2_hdr) - 4); - return -EINVAL; - } - - ksmbd_debug(SMB, "Buffer Overflow\n"); - rsp->hdr.Status = STATUS_BUFFER_OVERFLOW; - rsp->hdr.smb2_buf_length = cpu_to_be32(sizeof(struct smb2_hdr) - 4 + - reqOutputBufferLength); - rsp->OutputBufferLength = cpu_to_le32(reqOutputBufferLength); + pr_err("Invalid Buffer Size Requested\n"); + rsp->hdr.Status = STATUS_INFO_LENGTH_MISMATCH; + *(__be32 *)rsp_org = cpu_to_be32(sizeof(struct smb2_hdr)); + return -EINVAL; } return 0; } -static void get_standard_info_pipe(struct smb2_query_info_rsp *rsp) +static void get_standard_info_pipe(struct smb2_query_info_rsp *rsp, + void *rsp_org) { struct smb2_file_standard_info *sinfo; @@ -4141,10 +4245,10 @@ sinfo->Directory = 0; rsp->OutputBufferLength = cpu_to_le32(sizeof(struct smb2_file_standard_info)); - inc_rfc1001_len(rsp, sizeof(struct smb2_file_standard_info)); } -static void get_internal_info_pipe(struct smb2_query_info_rsp *rsp, u64 num) +static void get_internal_info_pipe(struct smb2_query_info_rsp *rsp, u64 num, + void *rsp_org) { struct smb2_file_internal_info *file_info; @@ -4154,12 +4258,12 @@ file_info->IndexNumber = cpu_to_le64(num | (1ULL << 63)); rsp->OutputBufferLength = cpu_to_le32(sizeof(struct smb2_file_internal_info)); - inc_rfc1001_len(rsp, sizeof(struct smb2_file_internal_info)); } static int smb2_get_info_file_pipe(struct ksmbd_session *sess, struct smb2_query_info_req *req, - struct smb2_query_info_rsp *rsp) + struct smb2_query_info_rsp *rsp, + void *rsp_org) { u64 id; int rc; @@ -4168,23 +4272,23 @@ * Windows can sometime send query file info request on * pipe without opening it, checking error condition here */ - id = le64_to_cpu(req->VolatileFileId); + id = req->VolatileFileId; if (!ksmbd_session_rpc_method(sess, id)) return -ENOENT; ksmbd_debug(SMB, "FileInfoClass %u, FileId 0x%llx\n", - req->FileInfoClass, le64_to_cpu(req->VolatileFileId)); + req->FileInfoClass, req->VolatileFileId); switch (req->FileInfoClass) { case FILE_STANDARD_INFORMATION: - get_standard_info_pipe(rsp); + get_standard_info_pipe(rsp, rsp_org); rc = buffer_check_err(le32_to_cpu(req->OutputBufferLength), - rsp, FILE_STANDARD_INFORMATION_SIZE); + rsp, rsp_org); break; case FILE_INTERNAL_INFORMATION: - get_internal_info_pipe(rsp, id); + get_internal_info_pipe(rsp, id, rsp_org); rc = buffer_check_err(le32_to_cpu(req->OutputBufferLength), - rsp, FILE_INTERNAL_INFORMATION_SIZE); + rsp, rsp_org); break; default: ksmbd_debug(SMB, "smb2_info_file_pipe for %u not supported\n", @@ -4213,7 +4317,7 @@ int rc, name_len, value_len, xattr_list_len, idx; ssize_t buf_free_len, alignment_bytes, next_offset, rsp_data_cnt = 0; struct smb2_ea_info_req *ea_req = NULL; - struct path *path; + const struct path *path; struct user_namespace *user_ns = file_mnt_user_ns(fp->filp); if (!(fp->daccess & FILE_READ_EA_LE)) { @@ -4352,7 +4456,6 @@ if (rsp_data_cnt == 0) rsp->hdr.Status = STATUS_NO_EAS_ON_FILE; rsp->OutputBufferLength = cpu_to_le32(rsp_data_cnt); - inc_rfc1001_len(rsp_org, rsp_data_cnt); out: kvfree(xattr_list); return rc; @@ -4367,7 +4470,6 @@ file_info->AccessFlags = fp->daccess; rsp->OutputBufferLength = cpu_to_le32(sizeof(struct smb2_file_access_info)); - inc_rfc1001_len(rsp_org, sizeof(struct smb2_file_access_info)); } static int get_file_basic_info(struct smb2_query_info_rsp *rsp, @@ -4397,7 +4499,6 @@ basic_info->Pad1 = 0; rsp->OutputBufferLength = cpu_to_le32(sizeof(struct smb2_file_basic_info)); - inc_rfc1001_len(rsp_org, sizeof(struct smb2_file_basic_info)); return 0; } @@ -4422,8 +4523,6 @@ sinfo->Directory = S_ISDIR(stat.mode) ? 1 : 0; rsp->OutputBufferLength = cpu_to_le32(sizeof(struct smb2_file_standard_info)); - inc_rfc1001_len(rsp_org, - sizeof(struct smb2_file_standard_info)); } static void get_file_alignment_info(struct smb2_query_info_rsp *rsp, @@ -4435,8 +4534,6 @@ file_info->AlignmentRequirement = 0; rsp->OutputBufferLength = cpu_to_le32(sizeof(struct smb2_file_alignment_info)); - inc_rfc1001_len(rsp_org, - sizeof(struct smb2_file_alignment_info)); } static int get_file_all_info(struct ksmbd_work *work, @@ -4459,9 +4556,9 @@ return -EACCES; } - filename = convert_to_nt_pathname(fp->filename); - if (!filename) - return -ENOMEM; + filename = convert_to_nt_pathname(work->tcon->share_conf, &fp->filp->f_path); + if (IS_ERR(filename)) + return PTR_ERR(filename); inode = file_inode(fp->filp); generic_fillattr(file_mnt_user_ns(fp->filp), inode, &stat); @@ -4500,7 +4597,6 @@ rsp->OutputBufferLength = cpu_to_le32(sizeof(struct smb2_file_all_info) + conv_len - 1); kfree(filename); - inc_rfc1001_len(rsp_org, le32_to_cpu(rsp->OutputBufferLength)); return 0; } @@ -4523,7 +4619,6 @@ file_info->FileNameLength = cpu_to_le32(conv_len); rsp->OutputBufferLength = cpu_to_le32(sizeof(struct smb2_file_alt_name_info) + conv_len); - inc_rfc1001_len(rsp_org, le32_to_cpu(rsp->OutputBufferLength)); } static void get_file_stream_info(struct ksmbd_work *work, @@ -4535,7 +4630,7 @@ struct smb2_file_stream_info *file_info; char *stream_name, *xattr_list = NULL, *stream_buf; struct kstat stat; - struct path *path = &fp->filp->f_path; + const struct path *path = &fp->filp->f_path; ssize_t xattr_list_len; int nbytes = 0, streamlen, stream_name_len, next, idx = 0; int buf_free_len; @@ -4623,7 +4718,6 @@ kvfree(xattr_list); rsp->OutputBufferLength = cpu_to_le32(nbytes); - inc_rfc1001_len(rsp_org, nbytes); } static void get_file_internal_info(struct smb2_query_info_rsp *rsp, @@ -4638,7 +4732,6 @@ file_info->IndexNumber = cpu_to_le64(stat.ino); rsp->OutputBufferLength = cpu_to_le32(sizeof(struct smb2_file_internal_info)); - inc_rfc1001_len(rsp_org, sizeof(struct smb2_file_internal_info)); } static int get_file_network_open_info(struct smb2_query_info_rsp *rsp, @@ -4674,7 +4767,6 @@ file_info->Reserved = cpu_to_le32(0); rsp->OutputBufferLength = cpu_to_le32(sizeof(struct smb2_file_ntwrk_info)); - inc_rfc1001_len(rsp_org, sizeof(struct smb2_file_ntwrk_info)); return 0; } @@ -4686,7 +4778,6 @@ file_info->EASize = 0; rsp->OutputBufferLength = cpu_to_le32(sizeof(struct smb2_file_ea_info)); - inc_rfc1001_len(rsp_org, sizeof(struct smb2_file_ea_info)); } static void get_file_position_info(struct smb2_query_info_rsp *rsp, @@ -4698,7 +4789,6 @@ file_info->CurrentByteOffset = cpu_to_le64(fp->filp->f_pos); rsp->OutputBufferLength = cpu_to_le32(sizeof(struct smb2_file_pos_info)); - inc_rfc1001_len(rsp_org, sizeof(struct smb2_file_pos_info)); } static void get_file_mode_info(struct smb2_query_info_rsp *rsp, @@ -4710,7 +4800,6 @@ file_info->Mode = fp->coption & FILE_MODE_INFO_MASK; rsp->OutputBufferLength = cpu_to_le32(sizeof(struct smb2_file_mode_info)); - inc_rfc1001_len(rsp_org, sizeof(struct smb2_file_mode_info)); } static void get_file_compression_info(struct smb2_query_info_rsp *rsp, @@ -4732,7 +4821,6 @@ rsp->OutputBufferLength = cpu_to_le32(sizeof(struct smb2_file_comp_info)); - inc_rfc1001_len(rsp_org, sizeof(struct smb2_file_comp_info)); } static int get_file_attribute_tag_info(struct smb2_query_info_rsp *rsp, @@ -4751,16 +4839,17 @@ file_info->ReparseTag = 0; rsp->OutputBufferLength = cpu_to_le32(sizeof(struct smb2_file_attr_tag_info)); - inc_rfc1001_len(rsp_org, sizeof(struct smb2_file_attr_tag_info)); return 0; } -static int find_file_posix_info(struct smb2_query_info_rsp *rsp, +static void find_file_posix_info(struct smb2_query_info_rsp *rsp, struct ksmbd_file *fp, void *rsp_org) { struct smb311_posix_qinfo *file_info; struct inode *inode = file_inode(fp->filp); + struct user_namespace *user_ns = file_mnt_user_ns(fp->filp); u64 time; + int out_buf_len = sizeof(struct smb311_posix_qinfo) + 32; file_info = (struct smb311_posix_qinfo *)rsp->Buffer; file_info->CreationTime = cpu_to_le64(fp->create_time); @@ -4775,32 +4864,44 @@ file_info->EndOfFile = cpu_to_le64(inode->i_size); file_info->AllocationSize = cpu_to_le64(inode->i_blocks << 9); file_info->HardLinks = cpu_to_le32(inode->i_nlink); - file_info->Mode = cpu_to_le32(inode->i_mode); + file_info->Mode = cpu_to_le32(inode->i_mode & 0777); file_info->DeviceId = cpu_to_le32(inode->i_rdev); - rsp->OutputBufferLength = - cpu_to_le32(sizeof(struct smb311_posix_qinfo)); - inc_rfc1001_len(rsp_org, sizeof(struct smb311_posix_qinfo)); - return 0; + + /* + * Sids(32) contain two sids(Domain sid(16), UNIX group sid(16)). + * UNIX sid(16) = revision(1) + num_subauth(1) + authority(6) + + * sub_auth(4 * 1(num_subauth)) + RID(4). + */ + id_to_sid(from_kuid_munged(&init_user_ns, + i_uid_into_mnt(user_ns, inode)), + SIDUNIX_USER, + (struct smb_sid *)&file_info->Sids[0]); + id_to_sid(from_kgid_munged(&init_user_ns, + i_gid_into_mnt(user_ns, inode)), + SIDUNIX_GROUP, + (struct smb_sid *)&file_info->Sids[16]); + + rsp->OutputBufferLength = cpu_to_le32(out_buf_len); } static int smb2_get_info_file(struct ksmbd_work *work, struct smb2_query_info_req *req, - struct smb2_query_info_rsp *rsp, void *rsp_org) + struct smb2_query_info_rsp *rsp) { struct ksmbd_file *fp; int fileinfoclass = 0; int rc = 0; - int file_infoclass_size; unsigned int id = KSMBD_NO_FID, pid = KSMBD_NO_FID; if (test_share_config_flag(work->tcon->share_conf, KSMBD_SHARE_FLAG_PIPE)) { /* smb2 info file called for pipe */ - return smb2_get_info_file_pipe(work->sess, req, rsp); + return smb2_get_info_file_pipe(work->sess, req, rsp, + work->response_buf); } if (work->next_smb2_rcv_hdr_off) { - if (!has_file_id(le64_to_cpu(req->VolatileFileId))) { + if (!has_file_id(req->VolatileFileId)) { ksmbd_debug(SMB, "Compound request set FID = %llu\n", work->compound_fid); id = work->compound_fid; @@ -4809,8 +4910,8 @@ } if (!has_file_id(id)) { - id = le64_to_cpu(req->VolatileFileId); - pid = le64_to_cpu(req->PersistentFileId); + id = req->VolatileFileId; + pid = req->PersistentFileId; } fp = ksmbd_lookup_fd_slow(work, id, pid); @@ -4821,86 +4922,70 @@ switch (fileinfoclass) { case FILE_ACCESS_INFORMATION: - get_file_access_info(rsp, fp, rsp_org); - file_infoclass_size = FILE_ACCESS_INFORMATION_SIZE; + get_file_access_info(rsp, fp, work->response_buf); break; case FILE_BASIC_INFORMATION: - rc = get_file_basic_info(rsp, fp, rsp_org); - file_infoclass_size = FILE_BASIC_INFORMATION_SIZE; + rc = get_file_basic_info(rsp, fp, work->response_buf); break; case FILE_STANDARD_INFORMATION: - get_file_standard_info(rsp, fp, rsp_org); - file_infoclass_size = FILE_STANDARD_INFORMATION_SIZE; + get_file_standard_info(rsp, fp, work->response_buf); break; case FILE_ALIGNMENT_INFORMATION: - get_file_alignment_info(rsp, rsp_org); - file_infoclass_size = FILE_ALIGNMENT_INFORMATION_SIZE; + get_file_alignment_info(rsp, work->response_buf); break; case FILE_ALL_INFORMATION: - rc = get_file_all_info(work, rsp, fp, rsp_org); - file_infoclass_size = FILE_ALL_INFORMATION_SIZE; + rc = get_file_all_info(work, rsp, fp, work->response_buf); break; case FILE_ALTERNATE_NAME_INFORMATION: - get_file_alternate_info(work, rsp, fp, rsp_org); - file_infoclass_size = FILE_ALTERNATE_NAME_INFORMATION_SIZE; + get_file_alternate_info(work, rsp, fp, work->response_buf); break; case FILE_STREAM_INFORMATION: - get_file_stream_info(work, rsp, fp, rsp_org); - file_infoclass_size = FILE_STREAM_INFORMATION_SIZE; + get_file_stream_info(work, rsp, fp, work->response_buf); break; case FILE_INTERNAL_INFORMATION: - get_file_internal_info(rsp, fp, rsp_org); - file_infoclass_size = FILE_INTERNAL_INFORMATION_SIZE; + get_file_internal_info(rsp, fp, work->response_buf); break; case FILE_NETWORK_OPEN_INFORMATION: - rc = get_file_network_open_info(rsp, fp, rsp_org); - file_infoclass_size = FILE_NETWORK_OPEN_INFORMATION_SIZE; + rc = get_file_network_open_info(rsp, fp, work->response_buf); break; case FILE_EA_INFORMATION: - get_file_ea_info(rsp, rsp_org); - file_infoclass_size = FILE_EA_INFORMATION_SIZE; + get_file_ea_info(rsp, work->response_buf); break; case FILE_FULL_EA_INFORMATION: - rc = smb2_get_ea(work, fp, req, rsp, rsp_org); - file_infoclass_size = FILE_FULL_EA_INFORMATION_SIZE; + rc = smb2_get_ea(work, fp, req, rsp, work->response_buf); break; case FILE_POSITION_INFORMATION: - get_file_position_info(rsp, fp, rsp_org); - file_infoclass_size = FILE_POSITION_INFORMATION_SIZE; + get_file_position_info(rsp, fp, work->response_buf); break; case FILE_MODE_INFORMATION: - get_file_mode_info(rsp, fp, rsp_org); - file_infoclass_size = FILE_MODE_INFORMATION_SIZE; + get_file_mode_info(rsp, fp, work->response_buf); break; case FILE_COMPRESSION_INFORMATION: - get_file_compression_info(rsp, fp, rsp_org); - file_infoclass_size = FILE_COMPRESSION_INFORMATION_SIZE; + get_file_compression_info(rsp, fp, work->response_buf); break; case FILE_ATTRIBUTE_TAG_INFORMATION: - rc = get_file_attribute_tag_info(rsp, fp, rsp_org); - file_infoclass_size = FILE_ATTRIBUTE_TAG_INFORMATION_SIZE; + rc = get_file_attribute_tag_info(rsp, fp, work->response_buf); break; case SMB_FIND_FILE_POSIX_INFO: if (!work->tcon->posix_extensions) { pr_err("client doesn't negotiate with SMB3.1.1 POSIX Extensions\n"); rc = -EOPNOTSUPP; } else { - rc = find_file_posix_info(rsp, fp, rsp_org); - file_infoclass_size = sizeof(struct smb311_posix_qinfo); + find_file_posix_info(rsp, fp, work->response_buf); } break; default: @@ -4910,15 +4995,14 @@ } if (!rc) rc = buffer_check_err(le32_to_cpu(req->OutputBufferLength), - rsp, - file_infoclass_size); + rsp, work->response_buf); ksmbd_fd_put(work, fp); return rc; } static int smb2_get_info_filesystem(struct ksmbd_work *work, struct smb2_query_info_req *req, - struct smb2_query_info_rsp *rsp, void *rsp_org) + struct smb2_query_info_rsp *rsp) { struct ksmbd_session *sess = work->sess; struct ksmbd_conn *conn = work->conn; @@ -4927,7 +5011,6 @@ struct kstatfs stfs; struct path path; int rc = 0, len; - int fs_infoclass_size = 0; if (!share->path) return -EIO; @@ -4957,8 +5040,6 @@ info->DeviceType = cpu_to_le32(stfs.f_type); info->DeviceCharacteristics = cpu_to_le32(0x00000020); rsp->OutputBufferLength = cpu_to_le32(8); - inc_rfc1001_len(rsp_org, 8); - fs_infoclass_size = FS_DEVICE_INFORMATION_SIZE; break; } case FS_ATTRIBUTE_INFORMATION: @@ -4987,8 +5068,6 @@ info->FileSystemNameLen = cpu_to_le32(len); sz = sizeof(struct filesystem_attribute_info) - 2 + len; rsp->OutputBufferLength = cpu_to_le32(sz); - inc_rfc1001_len(rsp_org, sz); - fs_infoclass_size = FS_ATTRIBUTE_INFORMATION_SIZE; break; } case FS_VOLUME_INFORMATION: @@ -5015,8 +5094,6 @@ info->Reserved = 0; sz = sizeof(struct filesystem_vol_info) - 2 + len; rsp->OutputBufferLength = cpu_to_le32(sz); - inc_rfc1001_len(rsp_org, sz); - fs_infoclass_size = FS_VOLUME_INFORMATION_SIZE; break; } case FS_SIZE_INFORMATION: @@ -5029,8 +5106,6 @@ info->SectorsPerAllocationUnit = cpu_to_le32(1); info->BytesPerSector = cpu_to_le32(stfs.f_bsize); rsp->OutputBufferLength = cpu_to_le32(24); - inc_rfc1001_len(rsp_org, 24); - fs_infoclass_size = FS_SIZE_INFORMATION_SIZE; break; } case FS_FULL_SIZE_INFORMATION: @@ -5046,8 +5121,6 @@ info->SectorsPerAllocationUnit = cpu_to_le32(1); info->BytesPerSector = cpu_to_le32(stfs.f_bsize); rsp->OutputBufferLength = cpu_to_le32(32); - inc_rfc1001_len(rsp_org, 32); - fs_infoclass_size = FS_FULL_SIZE_INFORMATION_SIZE; break; } case FS_OBJECT_ID_INFORMATION: @@ -5067,8 +5140,6 @@ info->extended_info.rel_date = 0; memcpy(info->extended_info.version_string, "1.1.0", strlen("1.1.0")); rsp->OutputBufferLength = cpu_to_le32(64); - inc_rfc1001_len(rsp_org, 64); - fs_infoclass_size = FS_OBJECT_ID_INFORMATION_SIZE; break; } case FS_SECTOR_SIZE_INFORMATION: @@ -5090,8 +5161,6 @@ info->ByteOffsetForSectorAlignment = 0; info->ByteOffsetForPartitionAlignment = 0; rsp->OutputBufferLength = cpu_to_le32(28); - inc_rfc1001_len(rsp_org, 28); - fs_infoclass_size = FS_SECTOR_SIZE_INFORMATION_SIZE; break; } case FS_CONTROL_INFORMATION: @@ -5112,8 +5181,6 @@ info->DefaultQuotaLimit = cpu_to_le64(SMB2_NO_FID); info->Padding = 0; rsp->OutputBufferLength = cpu_to_le32(48); - inc_rfc1001_len(rsp_org, 48); - fs_infoclass_size = FS_CONTROL_INFORMATION_SIZE; break; } case FS_POSIX_INFORMATION: @@ -5133,8 +5200,6 @@ info->TotalFileNodes = cpu_to_le64(stfs.f_files); info->FreeFileNodes = cpu_to_le64(stfs.f_ffree); rsp->OutputBufferLength = cpu_to_le32(56); - inc_rfc1001_len(rsp_org, 56); - fs_infoclass_size = FS_POSIX_INFORMATION_SIZE; } break; } @@ -5143,15 +5208,14 @@ return -EOPNOTSUPP; } rc = buffer_check_err(le32_to_cpu(req->OutputBufferLength), - rsp, - fs_infoclass_size); + rsp, work->response_buf); path_put(&path); return rc; } static int smb2_get_info_sec(struct ksmbd_work *work, struct smb2_query_info_req *req, - struct smb2_query_info_rsp *rsp, void *rsp_org) + struct smb2_query_info_rsp *rsp) { struct ksmbd_file *fp; struct user_namespace *user_ns; @@ -5178,13 +5242,12 @@ secdesclen = sizeof(struct smb_ntsd); rsp->OutputBufferLength = cpu_to_le32(secdesclen); - inc_rfc1001_len(rsp_org, secdesclen); return 0; } if (work->next_smb2_rcv_hdr_off) { - if (!has_file_id(le64_to_cpu(req->VolatileFileId))) { + if (!has_file_id(req->VolatileFileId)) { ksmbd_debug(SMB, "Compound request set FID = %llu\n", work->compound_fid); id = work->compound_fid; @@ -5193,8 +5256,8 @@ } if (!has_file_id(id)) { - id = le64_to_cpu(req->VolatileFileId); - pid = le64_to_cpu(req->PersistentFileId); + id = req->VolatileFileId; + pid = req->PersistentFileId; } fp = ksmbd_lookup_fd_slow(work, id, pid); @@ -5223,7 +5286,6 @@ return rc; rsp->OutputBufferLength = cpu_to_le32(secdesclen); - inc_rfc1001_len(rsp_org, secdesclen); return 0; } @@ -5236,10 +5298,9 @@ int smb2_query_info(struct ksmbd_work *work) { struct smb2_query_info_req *req; - struct smb2_query_info_rsp *rsp, *rsp_org; + struct smb2_query_info_rsp *rsp; int rc = 0; - rsp_org = work->response_buf; WORK_BUFFERS(work, req, rsp); ksmbd_debug(SMB, "GOT query info request\n"); @@ -5247,15 +5308,15 @@ switch (req->InfoType) { case SMB2_O_INFO_FILE: ksmbd_debug(SMB, "GOT SMB2_O_INFO_FILE\n"); - rc = smb2_get_info_file(work, req, rsp, (void *)rsp_org); + rc = smb2_get_info_file(work, req, rsp); break; case SMB2_O_INFO_FILESYSTEM: ksmbd_debug(SMB, "GOT SMB2_O_INFO_FILESYSTEM\n"); - rc = smb2_get_info_filesystem(work, req, rsp, (void *)rsp_org); + rc = smb2_get_info_filesystem(work, req, rsp); break; case SMB2_O_INFO_SECURITY: ksmbd_debug(SMB, "GOT SMB2_O_INFO_SECURITY\n"); - rc = smb2_get_info_sec(work, req, rsp, (void *)rsp_org); + rc = smb2_get_info_sec(work, req, rsp); break; default: ksmbd_debug(SMB, "InfoType %d not supported yet\n", @@ -5263,6 +5324,14 @@ rc = -EOPNOTSUPP; } + if (!rc) { + rsp->StructureSize = cpu_to_le16(9); + rsp->OutputBufferOffset = cpu_to_le16(72); + rc = ksmbd_iov_pin_rsp(work, (void *)rsp, + offsetof(struct smb2_query_info_rsp, Buffer) + + le32_to_cpu(rsp->OutputBufferLength)); + } + if (rc < 0) { if (rc == -EACCES) rsp->hdr.Status = STATUS_ACCESS_DENIED; @@ -5270,6 +5339,8 @@ rsp->hdr.Status = STATUS_FILE_CLOSED; else if (rc == -EIO) rsp->hdr.Status = STATUS_UNEXPECTED_IO_ERROR; + else if (rc == -ENOMEM) + rsp->hdr.Status = STATUS_INSUFFICIENT_RESOURCES; else if (rc == -EOPNOTSUPP || rsp->hdr.Status == 0) rsp->hdr.Status = STATUS_INVALID_INFO_CLASS; smb2_set_err_rsp(work); @@ -5278,9 +5349,6 @@ rc); return rc; } - rsp->StructureSize = cpu_to_le16(9); - rsp->OutputBufferOffset = cpu_to_le16(72); - inc_rfc1001_len(rsp_org, 8); return 0; } @@ -5293,10 +5361,12 @@ static noinline int smb2_close_pipe(struct ksmbd_work *work) { u64 id; - struct smb2_close_req *req = work->request_buf; - struct smb2_close_rsp *rsp = work->response_buf; + struct smb2_close_req *req; + struct smb2_close_rsp *rsp; + + WORK_BUFFERS(work, req, rsp); - id = le64_to_cpu(req->VolatileFileId); + id = req->VolatileFileId; ksmbd_session_rpc_close(work->sess, id); rsp->StructureSize = cpu_to_le16(60); @@ -5309,8 +5379,9 @@ rsp->AllocationSize = 0; rsp->EndOfFile = 0; rsp->Attributes = 0; - inc_rfc1001_len(rsp, 60); - return 0; + + return ksmbd_iov_pin_rsp(work, (void *)rsp, + sizeof(struct smb2_close_rsp)); } /** @@ -5325,14 +5396,12 @@ u64 sess_id; struct smb2_close_req *req; struct smb2_close_rsp *rsp; - struct smb2_close_rsp *rsp_org; struct ksmbd_conn *conn = work->conn; struct ksmbd_file *fp; struct inode *inode; u64 time; int err = 0; - rsp_org = work->response_buf; WORK_BUFFERS(work, req, rsp); if (test_share_config_flag(work->tcon->share_conf, @@ -5357,7 +5426,7 @@ } if (work->next_smb2_rcv_hdr_off && - !has_file_id(le64_to_cpu(req->VolatileFileId))) { + !has_file_id(req->VolatileFileId)) { if (!has_file_id(work->compound_fid)) { /* file already closed, return FILE_CLOSED */ ksmbd_debug(SMB, "file already closed\n"); @@ -5376,7 +5445,7 @@ work->compound_pfid = KSMBD_NO_FID; } } else { - volatile_id = le64_to_cpu(req->VolatileFileId); + volatile_id = req->VolatileFileId; } ksmbd_debug(SMB, "volatile_id = %llu\n", volatile_id); @@ -5417,15 +5486,17 @@ err = ksmbd_close_fd(work, volatile_id); out: + if (!err) + err = ksmbd_iov_pin_rsp(work, (void *)rsp, + sizeof(struct smb2_close_rsp)); + if (err) { if (rsp->hdr.Status == 0) rsp->hdr.Status = STATUS_FILE_CLOSED; smb2_set_err_rsp(work); - } else { - inc_rfc1001_len(rsp_org, 60); } - return 0; + return err; } /** @@ -5436,55 +5507,31 @@ */ int smb2_echo(struct ksmbd_work *work) { - struct smb2_echo_rsp *rsp = work->response_buf; + struct smb2_echo_rsp *rsp = smb2_get_msg(work->response_buf); + + if (work->next_smb2_rcv_hdr_off) + rsp = ksmbd_resp_buf_next(work); rsp->StructureSize = cpu_to_le16(4); rsp->Reserved = 0; - inc_rfc1001_len(rsp, 4); - return 0; + return ksmbd_iov_pin_rsp(work, rsp, sizeof(struct smb2_echo_rsp)); } static int smb2_rename(struct ksmbd_work *work, struct ksmbd_file *fp, - struct user_namespace *user_ns, struct smb2_file_rename_info *file_info, struct nls_table *local_nls) { struct ksmbd_share_config *share = fp->tcon->share_conf; - char *new_name = NULL, *abs_oldname = NULL, *old_name = NULL; - char *pathname = NULL; - struct path path; - bool file_present = true; - int rc; + char *new_name = NULL; + int rc, flags = 0; ksmbd_debug(SMB, "setting FILE_RENAME_INFO\n"); - pathname = kmalloc(PATH_MAX, GFP_KERNEL); - if (!pathname) - return -ENOMEM; - - abs_oldname = d_path(&fp->filp->f_path, pathname, PATH_MAX); - if (IS_ERR(abs_oldname)) { - rc = -EINVAL; - goto out; - } - old_name = strrchr(abs_oldname, '/'); - if (old_name && old_name[1] != '\0') { - old_name++; - } else { - ksmbd_debug(SMB, "can't get last component in path %s\n", - abs_oldname); - rc = -ENOENT; - goto out; - } - - new_name = smb2_get_name(share, - file_info->FileName, + new_name = smb2_get_name(file_info->FileName, le32_to_cpu(file_info->FileNameLength), local_nls); - if (IS_ERR(new_name)) { - rc = PTR_ERR(new_name); - goto out; - } + if (IS_ERR(new_name)) + return PTR_ERR(new_name); if (strchr(new_name, ':')) { int s_type; @@ -5510,10 +5557,10 @@ if (rc) goto out; - rc = ksmbd_vfs_setxattr(user_ns, - fp->filp->f_path.dentry, + rc = ksmbd_vfs_setxattr(file_mnt_user_ns(fp->filp), + &fp->filp->f_path, xattr_stream_name, - NULL, 0, 0); + NULL, 0, 0, true); if (rc < 0) { pr_err("failed to store stream name in xattr: %d\n", rc); @@ -5525,47 +5572,19 @@ } ksmbd_debug(SMB, "new name %s\n", new_name); - rc = ksmbd_vfs_kern_path(work, new_name, LOOKUP_NO_SYMLINKS, &path, 1); - if (rc) { - if (rc != -ENOENT) - goto out; - file_present = false; - } else { - path_put(&path); - } - if (ksmbd_share_veto_filename(share, new_name)) { rc = -ENOENT; ksmbd_debug(SMB, "Can't rename vetoed file: %s\n", new_name); goto out; } - if (file_info->ReplaceIfExists) { - if (file_present) { - rc = ksmbd_vfs_remove_file(work, new_name); - if (rc) { - if (rc != -ENOTEMPTY) - rc = -EINVAL; - ksmbd_debug(SMB, "cannot delete %s, rc %d\n", - new_name, rc); - goto out; - } - } - } else { - if (file_present && - strncmp(old_name, path.dentry->d_name.name, strlen(old_name))) { - rc = -EEXIST; - ksmbd_debug(SMB, - "cannot rename already existing file\n"); - goto out; - } - } + if (!file_info->ReplaceIfExists) + flags = RENAME_NOREPLACE; - rc = ksmbd_vfs_fp_rename(work, fp, new_name); + smb_break_all_levII_oplock(work, fp, 0); + rc = ksmbd_vfs_rename(work, &fp->filp->f_path, new_name, flags); out: - kfree(pathname); - if (!IS_ERR(new_name)) - kfree(new_name); + kfree(new_name); return rc; } @@ -5576,8 +5595,8 @@ struct nls_table *local_nls) { char *link_name = NULL, *target_name = NULL, *pathname = NULL; - struct path path; - bool file_present = true; + struct path path, parent_path; + bool file_present = false; int rc; if (buf_len < (u64)sizeof(struct smb2_file_link_info) + @@ -5589,8 +5608,7 @@ if (!pathname) return -ENOMEM; - link_name = smb2_get_name(share, - file_info->FileName, + link_name = smb2_get_name(file_info->FileName, le32_to_cpu(file_info->FileNameLength), local_nls); if (IS_ERR(link_name) || S_ISDIR(file_inode(filp)->i_mode)) { @@ -5599,25 +5617,24 @@ } ksmbd_debug(SMB, "link name is %s\n", link_name); - target_name = d_path(&filp->f_path, pathname, PATH_MAX); + target_name = file_path(filp, pathname, PATH_MAX); if (IS_ERR(target_name)) { rc = -EINVAL; goto out; } ksmbd_debug(SMB, "target name is %s\n", target_name); - rc = ksmbd_vfs_kern_path(work, link_name, LOOKUP_NO_SYMLINKS, &path, 0); + rc = ksmbd_vfs_kern_path_locked(work, link_name, LOOKUP_NO_SYMLINKS, + &parent_path, &path, 0); if (rc) { if (rc != -ENOENT) goto out; - file_present = false; - } else { - path_put(&path); - } + } else + file_present = true; if (file_info->ReplaceIfExists) { if (file_present) { - rc = ksmbd_vfs_remove_file(work, link_name); + rc = ksmbd_vfs_remove_file(work, &path); if (rc) { rc = -EINVAL; ksmbd_debug(SMB, "cannot delete %s\n", @@ -5637,6 +5654,9 @@ if (rc) rc = -EINVAL; out: + if (file_present) + ksmbd_vfs_kern_path_unlock(&parent_path, &path); + if (!IS_ERR(link_name)) kfree(link_name); kfree(pathname); @@ -5703,8 +5723,8 @@ da.flags = XATTR_DOSINFO_ATTRIB | XATTR_DOSINFO_CREATE_TIME | XATTR_DOSINFO_ITIME; - rc = ksmbd_vfs_set_dos_attrib_xattr(user_ns, - filp->f_path.dentry, &da); + rc = ksmbd_vfs_set_dos_attrib_xattr(user_ns, &filp->f_path, &da, + true); if (rc) ksmbd_debug(SMB, "failed to restore file attribute in EA\n"); @@ -5768,8 +5788,7 @@ size = i_size_read(inode); rc = ksmbd_vfs_truncate(work, fp, alloc_blks * 512); if (rc) { - pr_err("truncate failed! filename : %s, err %d\n", - fp->filename, rc); + pr_err("truncate failed!, err %d\n", rc); return rc; } if (size < alloc_blks * 512) @@ -5799,12 +5818,10 @@ * truncated range. */ if (inode->i_sb->s_magic != MSDOS_SUPER_MAGIC) { - ksmbd_debug(SMB, "filename : %s truncated to newsize %lld\n", - fp->filename, newsize); + ksmbd_debug(SMB, "truncated to newsize %lld\n", newsize); rc = ksmbd_vfs_truncate(work, fp, newsize); if (rc) { - ksmbd_debug(SMB, "truncate failed! filename : %s err %d\n", - fp->filename, rc); + ksmbd_debug(SMB, "truncate failed!, err %d\n", rc); if (rc != -EAGAIN) rc = -EBADF; return rc; @@ -5817,12 +5834,6 @@ struct smb2_file_rename_info *rename_info, unsigned int buf_len) { - struct user_namespace *user_ns; - struct ksmbd_file *parent_fp; - struct dentry *parent; - struct dentry *dentry = fp->filp->f_path.dentry; - int ret; - if (!(fp->daccess & FILE_DELETE_LE)) { pr_err("no right to delete : 0x%x\n", fp->daccess); return -EACCES; @@ -5832,32 +5843,10 @@ le32_to_cpu(rename_info->FileNameLength)) return -EINVAL; - user_ns = file_mnt_user_ns(fp->filp); - if (ksmbd_stream_fd(fp)) - goto next; - - parent = dget_parent(dentry); - ret = ksmbd_vfs_lock_parent(user_ns, parent, dentry); - if (ret) { - dput(parent); - return ret; - } + if (!le32_to_cpu(rename_info->FileNameLength)) + return -EINVAL; - parent_fp = ksmbd_lookup_fd_inode(d_inode(parent)); - inode_unlock(d_inode(parent)); - dput(parent); - - if (parent_fp) { - if (parent_fp->daccess & FILE_DELETE_LE) { - pr_err("parent dir is opened with delete access\n"); - ksmbd_fd_put(work, parent_fp); - return -ESHARE; - } - ksmbd_fd_put(work, parent_fp); - } -next: - return smb2_rename(work, fp, user_ns, rename_info, - work->conn->local_nls); + return smb2_rename(work, fp, rename_info, work->conn->local_nls); } static int set_file_disposition_info(struct ksmbd_file *fp, @@ -5932,7 +5921,7 @@ * smb2_set_info_file() - handler for smb2 set info command * @work: smb work containing set info command buffer * @fp: ksmbd_file pointer - * @info_class: smb2 set info class + * @req: request buffer pointer * @share: ksmbd_share_config pointer * * Return: 0 on success, otherwise error @@ -5970,12 +5959,6 @@ } case FILE_RENAME_INFORMATION: { - if (!test_tree_conn_flag(work->tcon, KSMBD_TREE_CONN_FLAG_WRITABLE)) { - ksmbd_debug(SMB, - "User does not have write permission\n"); - return -EACCES; - } - if (buf_len < sizeof(struct smb2_file_rename_info)) return -EINVAL; @@ -5995,12 +5978,6 @@ } case FILE_DISPOSITION_INFORMATION: { - if (!test_tree_conn_flag(work->tcon, KSMBD_TREE_CONN_FLAG_WRITABLE)) { - ksmbd_debug(SMB, - "User does not have write permission\n"); - return -EACCES; - } - if (buf_len < sizeof(struct smb2_file_disposition_info)) return -EINVAL; @@ -6019,7 +5996,7 @@ return -EINVAL; return smb2_set_ea((struct smb2_ea_info *)req->Buffer, - buf_len, &fp->filp->f_path); + buf_len, &fp->filp->f_path, true); } case FILE_POSITION_INFORMATION: { @@ -6049,7 +6026,7 @@ fp->saccess |= FILE_SHARE_DELETE_LE; return set_info_sec(fp->conn, fp->tcon, &fp->filp->f_path, pntsd, - buf_len, false); + buf_len, false, true); } /** @@ -6061,31 +6038,37 @@ int smb2_set_info(struct ksmbd_work *work) { struct smb2_set_info_req *req; - struct smb2_set_info_rsp *rsp, *rsp_org; - struct ksmbd_file *fp; + struct smb2_set_info_rsp *rsp; + struct ksmbd_file *fp = NULL; int rc = 0; unsigned int id = KSMBD_NO_FID, pid = KSMBD_NO_FID; ksmbd_debug(SMB, "Received set info request\n"); - rsp_org = work->response_buf; if (work->next_smb2_rcv_hdr_off) { req = ksmbd_req_buf_next(work); rsp = ksmbd_resp_buf_next(work); - if (!has_file_id(le64_to_cpu(req->VolatileFileId))) { + if (!has_file_id(req->VolatileFileId)) { ksmbd_debug(SMB, "Compound request set FID = %llu\n", work->compound_fid); id = work->compound_fid; pid = work->compound_pfid; } } else { - req = work->request_buf; - rsp = work->response_buf; + req = smb2_get_msg(work->request_buf); + rsp = smb2_get_msg(work->response_buf); + } + + if (!test_tree_conn_flag(work->tcon, KSMBD_TREE_CONN_FLAG_WRITABLE)) { + ksmbd_debug(SMB, "User does not have write permission\n"); + pr_err("User does not have write permission\n"); + rc = -EACCES; + goto err_out; } if (!has_file_id(id)) { - id = le64_to_cpu(req->VolatileFileId); - pid = le64_to_cpu(req->PersistentFileId); + id = req->VolatileFileId; + pid = req->PersistentFileId; } fp = ksmbd_lookup_fd_slow(work, id, pid); @@ -6120,7 +6103,10 @@ goto err_out; rsp->StructureSize = cpu_to_le16(2); - inc_rfc1001_len(rsp_org, 2); + rc = ksmbd_iov_pin_rsp(work, (void *)rsp, + sizeof(struct smb2_set_info_rsp)); + if (rc) + goto err_out; ksmbd_fd_put(work, fp); return 0; @@ -6160,33 +6146,43 @@ int nbytes = 0, err; u64 id; struct ksmbd_rpc_command *rpc_resp; - struct smb2_read_req *req = work->request_buf; - struct smb2_read_rsp *rsp = work->response_buf; + struct smb2_read_req *req; + struct smb2_read_rsp *rsp; + + WORK_BUFFERS(work, req, rsp); - id = le64_to_cpu(req->VolatileFileId); + id = req->VolatileFileId; - inc_rfc1001_len(rsp, 16); rpc_resp = ksmbd_rpc_read(work->sess, id); if (rpc_resp) { + void *aux_payload_buf; + if (rpc_resp->flags != KSMBD_RPC_OK) { err = -EINVAL; goto out; } - work->aux_payload_buf = - kvmalloc(rpc_resp->payload_sz, GFP_KERNEL | __GFP_ZERO); - if (!work->aux_payload_buf) { + aux_payload_buf = + kvmalloc(rpc_resp->payload_sz, GFP_KERNEL); + if (!aux_payload_buf) { err = -ENOMEM; goto out; } - memcpy(work->aux_payload_buf, rpc_resp->payload, - rpc_resp->payload_sz); + memcpy(aux_payload_buf, rpc_resp->payload, rpc_resp->payload_sz); nbytes = rpc_resp->payload_sz; - work->resp_hdr_sz = get_rfc1002_len(rsp) + 4; - work->aux_payload_sz = nbytes; + err = ksmbd_iov_pin_rsp_read(work, (void *)rsp, + offsetof(struct smb2_read_rsp, Buffer), + aux_payload_buf, nbytes); + if (err) + goto out; kvfree(rpc_resp); + } else { + err = ksmbd_iov_pin_rsp(work, (void *)rsp, + offsetof(struct smb2_read_rsp, Buffer)); + if (err) + goto out; } rsp->StructureSize = cpu_to_le16(17); @@ -6195,7 +6191,6 @@ rsp->DataLength = cpu_to_le32(nbytes); rsp->DataRemaining = 0; rsp->Reserved2 = 0; - inc_rfc1001_len(rsp, nbytes); return 0; out: @@ -6205,30 +6200,46 @@ return err; } -static ssize_t smb2_read_rdma_channel(struct ksmbd_work *work, - struct smb2_read_req *req, void *data_buf, - size_t length) +static int smb2_set_remote_key_for_rdma(struct ksmbd_work *work, + struct smb2_buffer_desc_v1 *desc, + __le32 Channel, + __le16 ChannelInfoLength) { - struct smb2_buffer_desc_v1 *desc = - (struct smb2_buffer_desc_v1 *)&req->Buffer[0]; - int err; + unsigned int i, ch_count; if (work->conn->dialect == SMB30_PROT_ID && - req->Channel != SMB2_CHANNEL_RDMA_V1) + Channel != SMB2_CHANNEL_RDMA_V1) return -EINVAL; - if (req->ReadChannelInfoOffset == 0 || - le16_to_cpu(req->ReadChannelInfoLength) < sizeof(*desc)) + ch_count = le16_to_cpu(ChannelInfoLength) / sizeof(*desc); + if (ksmbd_debug_types & KSMBD_DEBUG_RDMA) { + for (i = 0; i < ch_count; i++) { + pr_info("RDMA r/w request %#x: token %#x, length %#x\n", + i, + le32_to_cpu(desc[i].token), + le32_to_cpu(desc[i].length)); + } + } + if (!ch_count) return -EINVAL; work->need_invalidate_rkey = - (req->Channel == SMB2_CHANNEL_RDMA_V1_INVALIDATE); - work->remote_key = le32_to_cpu(desc->token); + (Channel == SMB2_CHANNEL_RDMA_V1_INVALIDATE); + if (Channel == SMB2_CHANNEL_RDMA_V1_INVALIDATE) + work->remote_key = le32_to_cpu(desc->token); + return 0; +} + +static ssize_t smb2_read_rdma_channel(struct ksmbd_work *work, + struct smb2_read_req *req, void *data_buf, + size_t length) +{ + int err; err = ksmbd_conn_rdma_write(work->conn, data_buf, length, - le32_to_cpu(desc->token), - le64_to_cpu(desc->offset), - le32_to_cpu(desc->length)); + (struct smb2_buffer_desc_v1 *) + ((char *)req + le16_to_cpu(req->ReadChannelInfoOffset)), + le16_to_cpu(req->ReadChannelInfoLength)); if (err) return err; @@ -6245,20 +6256,16 @@ { struct ksmbd_conn *conn = work->conn; struct smb2_read_req *req; - struct smb2_read_rsp *rsp, *rsp_org; + struct smb2_read_rsp *rsp; struct ksmbd_file *fp = NULL; loff_t offset; size_t length, mincount; ssize_t nbytes = 0, remain_bytes = 0; int err = 0; - - 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; - } + bool is_rdma_channel = false; + unsigned int max_read_size = conn->vals->max_read_size; + unsigned int id = KSMBD_NO_FID, pid = KSMBD_NO_FID; + void *aux_payload_buf; if (test_share_config_flag(work->tcon->share_conf, KSMBD_SHARE_FLAG_PIPE)) { @@ -6266,8 +6273,48 @@ return smb2_read_pipe(work); } - fp = ksmbd_lookup_fd_slow(work, le64_to_cpu(req->VolatileFileId), - le64_to_cpu(req->PersistentFileId)); + if (work->next_smb2_rcv_hdr_off) { + req = ksmbd_req_buf_next(work); + rsp = ksmbd_resp_buf_next(work); + if (!has_file_id(req->VolatileFileId)) { + ksmbd_debug(SMB, "Compound request set FID = %llu\n", + work->compound_fid); + id = work->compound_fid; + pid = work->compound_pfid; + } + } else { + req = smb2_get_msg(work->request_buf); + rsp = smb2_get_msg(work->response_buf); + } + + if (!has_file_id(id)) { + id = req->VolatileFileId; + pid = req->PersistentFileId; + } + + if (req->Channel == SMB2_CHANNEL_RDMA_V1_INVALIDATE || + req->Channel == SMB2_CHANNEL_RDMA_V1) { + is_rdma_channel = true; + max_read_size = get_smbd_max_read_write_size(); + } + + if (is_rdma_channel == true) { + unsigned int ch_offset = le16_to_cpu(req->ReadChannelInfoOffset); + + if (ch_offset < offsetof(struct smb2_read_req, Buffer)) { + err = -EINVAL; + goto out; + } + err = smb2_set_remote_key_for_rdma(work, + (struct smb2_buffer_desc_v1 *) + ((char *)req + ch_offset), + req->Channel, + req->ReadChannelInfoLength); + if (err) + goto out; + } + + fp = ksmbd_lookup_fd_slow(work, id, pid); if (!fp) { err = -ENOENT; goto out; @@ -6283,31 +6330,30 @@ length = le32_to_cpu(req->Length); mincount = le32_to_cpu(req->MinimumCount); - if (length > conn->vals->max_read_size) { + if (length > max_read_size) { ksmbd_debug(SMB, "limiting read size to max size(%u)\n", - conn->vals->max_read_size); + max_read_size); err = -EINVAL; goto out; } - ksmbd_debug(SMB, "filename %pd, offset %lld, len %zu\n", - fp->filp->f_path.dentry, offset, length); + ksmbd_debug(SMB, "filename %pD, offset %lld, len %zu\n", + fp->filp, offset, length); - work->aux_payload_buf = kvmalloc(length, GFP_KERNEL | __GFP_ZERO); - if (!work->aux_payload_buf) { + aux_payload_buf = kvzalloc(length, GFP_KERNEL); + if (!aux_payload_buf) { err = -ENOMEM; goto out; } - nbytes = ksmbd_vfs_read(work, fp, length, &offset); + nbytes = ksmbd_vfs_read(work, fp, length, &offset, aux_payload_buf); if (nbytes < 0) { err = nbytes; goto out; } if ((nbytes == 0 && length != 0) || nbytes < mincount) { - kvfree(work->aux_payload_buf); - work->aux_payload_buf = NULL; + kvfree(aux_payload_buf); rsp->hdr.Status = STATUS_END_OF_FILE; smb2_set_err_rsp(work); ksmbd_fd_put(work, fp); @@ -6317,15 +6363,13 @@ ksmbd_debug(SMB, "nbytes %zu, offset %lld mincount %zu\n", nbytes, offset, mincount); - if (req->Channel == SMB2_CHANNEL_RDMA_V1_INVALIDATE || - req->Channel == SMB2_CHANNEL_RDMA_V1) { + if (is_rdma_channel == true) { /* write data to the client using rdma channel */ remain_bytes = smb2_read_rdma_channel(work, req, - work->aux_payload_buf, + aux_payload_buf, nbytes); - kvfree(work->aux_payload_buf); - work->aux_payload_buf = NULL; - + kvfree(aux_payload_buf); + aux_payload_buf = NULL; nbytes = 0; if (remain_bytes < 0) { err = (int)remain_bytes; @@ -6339,10 +6383,11 @@ rsp->DataLength = cpu_to_le32(nbytes); rsp->DataRemaining = cpu_to_le32(remain_bytes); rsp->Reserved2 = 0; - inc_rfc1001_len(rsp_org, 16); - work->resp_hdr_sz = get_rfc1002_len(rsp_org) + 4; - work->aux_payload_sz = nbytes; - inc_rfc1001_len(rsp_org, nbytes); + err = ksmbd_iov_pin_rsp_read(work, (void *)rsp, + offsetof(struct smb2_read_rsp, Buffer), + aux_payload_buf, nbytes); + if (err) + goto out; ksmbd_fd_put(work, fp); return 0; @@ -6377,21 +6422,24 @@ */ static noinline int smb2_write_pipe(struct ksmbd_work *work) { - struct smb2_write_req *req = work->request_buf; - struct smb2_write_rsp *rsp = work->response_buf; + struct smb2_write_req *req; + struct smb2_write_rsp *rsp; struct ksmbd_rpc_command *rpc_resp; u64 id = 0; int err = 0, ret = 0; char *data_buf; size_t length; + WORK_BUFFERS(work, req, rsp); + length = le32_to_cpu(req->Length); - id = le64_to_cpu(req->VolatileFileId); + id = req->VolatileFileId; - if ((u64)le16_to_cpu(req->DataOffset) + length > get_rfc1002_len(req)) { + if ((u64)le16_to_cpu(req->DataOffset) + length > + get_rfc1002_len(work->request_buf)) { pr_err("invalid write data offset %u, smb_len %u\n", le16_to_cpu(req->DataOffset), - get_rfc1002_len(req)); + get_rfc1002_len(work->request_buf)); err = -EINVAL; goto out; } @@ -6422,8 +6470,8 @@ rsp->DataLength = cpu_to_le32(length); rsp->DataRemaining = 0; rsp->Reserved2 = 0; - inc_rfc1001_len(rsp, 16); - return 0; + err = ksmbd_iov_pin_rsp(work, (void *)rsp, + offsetof(struct smb2_write_rsp, Buffer)); out: if (err) { rsp->hdr.Status = STATUS_INVALID_HANDLE; @@ -6438,36 +6486,18 @@ struct ksmbd_file *fp, loff_t offset, size_t length, bool sync) { - struct smb2_buffer_desc_v1 *desc; char *data_buf; int ret; ssize_t nbytes; - desc = (struct smb2_buffer_desc_v1 *)&req->Buffer[0]; - - if (work->conn->dialect == SMB30_PROT_ID && - req->Channel != SMB2_CHANNEL_RDMA_V1) - return -EINVAL; - - if (req->Length != 0 || req->DataOffset != 0) - return -EINVAL; - - if (req->WriteChannelInfoOffset == 0 || - le16_to_cpu(req->WriteChannelInfoLength) < sizeof(*desc)) - return -EINVAL; - - work->need_invalidate_rkey = - (req->Channel == SMB2_CHANNEL_RDMA_V1_INVALIDATE); - work->remote_key = le32_to_cpu(desc->token); - - data_buf = kvmalloc(length, GFP_KERNEL | __GFP_ZERO); + data_buf = kvzalloc(length, GFP_KERNEL); if (!data_buf) return -ENOMEM; ret = ksmbd_conn_rdma_read(work->conn, data_buf, length, - le32_to_cpu(desc->token), - le64_to_cpu(desc->offset), - le32_to_cpu(desc->length)); + (struct smb2_buffer_desc_v1 *) + ((char *)req + le16_to_cpu(req->WriteChannelInfoOffset)), + le16_to_cpu(req->WriteChannelInfoLength)); if (ret < 0) { kvfree(data_buf); return ret; @@ -6490,16 +6520,16 @@ int smb2_write(struct ksmbd_work *work) { struct smb2_write_req *req; - struct smb2_write_rsp *rsp, *rsp_org; + struct smb2_write_rsp *rsp; struct ksmbd_file *fp = NULL; loff_t offset; size_t length; ssize_t nbytes; char *data_buf; - bool writethrough = false; + bool writethrough = false, is_rdma_channel = false; int err = 0; + unsigned int max_write_size = work->conn->vals->max_write_size; - rsp_org = work->response_buf; WORK_BUFFERS(work, req, rsp); if (test_share_config_flag(work->tcon->share_conf, KSMBD_SHARE_FLAG_PIPE)) { @@ -6507,14 +6537,40 @@ return smb2_write_pipe(work); } + offset = le64_to_cpu(req->Offset); + length = le32_to_cpu(req->Length); + + if (req->Channel == SMB2_CHANNEL_RDMA_V1 || + req->Channel == SMB2_CHANNEL_RDMA_V1_INVALIDATE) { + is_rdma_channel = true; + max_write_size = get_smbd_max_read_write_size(); + length = le32_to_cpu(req->RemainingBytes); + } + + if (is_rdma_channel == true) { + unsigned int ch_offset = le16_to_cpu(req->WriteChannelInfoOffset); + + if (req->Length != 0 || req->DataOffset != 0 || + ch_offset < offsetof(struct smb2_write_req, Buffer)) { + err = -EINVAL; + goto out; + } + err = smb2_set_remote_key_for_rdma(work, + (struct smb2_buffer_desc_v1 *) + ((char *)req + ch_offset), + req->Channel, + req->WriteChannelInfoLength); + if (err) + goto out; + } + if (!test_tree_conn_flag(work->tcon, KSMBD_TREE_CONN_FLAG_WRITABLE)) { ksmbd_debug(SMB, "User does not have write permission\n"); err = -EACCES; goto out; } - fp = ksmbd_lookup_fd_slow(work, le64_to_cpu(req->VolatileFileId), - le64_to_cpu(req->PersistentFileId)); + fp = ksmbd_lookup_fd_slow(work, req->VolatileFileId, req->PersistentFileId); if (!fp) { err = -ENOENT; goto out; @@ -6526,21 +6582,18 @@ goto out; } - offset = le64_to_cpu(req->Offset); - length = le32_to_cpu(req->Length); - - if (length > work->conn->vals->max_write_size) { + if (length > max_write_size) { ksmbd_debug(SMB, "limiting write size to max size(%u)\n", - work->conn->vals->max_write_size); + max_write_size); err = -EINVAL; goto out; } + ksmbd_debug(SMB, "flags %u\n", le32_to_cpu(req->Flags)); if (le32_to_cpu(req->Flags) & SMB2_WRITEFLAG_WRITE_THROUGH) writethrough = true; - if (req->Channel != SMB2_CHANNEL_RDMA_V1 && - req->Channel != SMB2_CHANNEL_RDMA_V1_INVALIDATE) { + if (is_rdma_channel == false) { if (le16_to_cpu(req->DataOffset) < offsetof(struct smb2_write_req, Buffer)) { err = -EINVAL; @@ -6550,12 +6603,8 @@ data_buf = (char *)(((char *)&req->hdr.ProtocolId) + le16_to_cpu(req->DataOffset)); - ksmbd_debug(SMB, "flags %u\n", le32_to_cpu(req->Flags)); - if (le32_to_cpu(req->Flags) & SMB2_WRITEFLAG_WRITE_THROUGH) - writethrough = true; - - ksmbd_debug(SMB, "filename %pd, offset %lld, len %zu\n", - fp->filp->f_path.dentry, offset, length); + ksmbd_debug(SMB, "filename %pD, offset %lld, len %zu\n", + fp->filp, offset, length); err = ksmbd_vfs_write(work, fp, data_buf, length, &offset, writethrough, &nbytes); if (err < 0) @@ -6564,8 +6613,7 @@ /* read data from the client using rdma channel, and * write the data. */ - nbytes = smb2_write_rdma_channel(work, req, fp, offset, - le32_to_cpu(req->RemainingBytes), + nbytes = smb2_write_rdma_channel(work, req, fp, offset, length, writethrough); if (nbytes < 0) { err = (int)nbytes; @@ -6579,7 +6627,9 @@ rsp->DataLength = cpu_to_le32(nbytes); rsp->DataRemaining = 0; rsp->Reserved2 = 0; - inc_rfc1001_len(rsp_org, 16); + err = ksmbd_iov_pin_rsp(work, rsp, offsetof(struct smb2_write_rsp, Buffer)); + if (err) + goto out; ksmbd_fd_put(work, fp); return 0; @@ -6613,32 +6663,24 @@ int smb2_flush(struct ksmbd_work *work) { struct smb2_flush_req *req; - struct smb2_flush_rsp *rsp, *rsp_org; + struct smb2_flush_rsp *rsp; int err; - rsp_org = work->response_buf; WORK_BUFFERS(work, req, rsp); - ksmbd_debug(SMB, "SMB2_FLUSH called for fid %llu\n", - le64_to_cpu(req->VolatileFileId)); + ksmbd_debug(SMB, "SMB2_FLUSH called for fid %llu\n", req->VolatileFileId); - err = ksmbd_vfs_fsync(work, - le64_to_cpu(req->VolatileFileId), - le64_to_cpu(req->PersistentFileId)); + err = ksmbd_vfs_fsync(work, req->VolatileFileId, req->PersistentFileId); if (err) goto out; rsp->StructureSize = cpu_to_le16(4); rsp->Reserved = 0; - inc_rfc1001_len(rsp_org, 4); - return 0; + return ksmbd_iov_pin_rsp(work, rsp, sizeof(struct smb2_flush_rsp)); out: - if (err) { - rsp->hdr.Status = STATUS_INVALID_HANDLE; - smb2_set_err_rsp(work); - } - + rsp->hdr.Status = STATUS_INVALID_HANDLE; + smb2_set_err_rsp(work); return err; } @@ -6651,12 +6693,14 @@ int smb2_cancel(struct ksmbd_work *work) { struct ksmbd_conn *conn = work->conn; - struct smb2_hdr *hdr = work->request_buf; + struct smb2_hdr *hdr = smb2_get_msg(work->request_buf); struct smb2_hdr *chdr; - struct ksmbd_work *cancel_work = NULL; - int canceled = 0; + struct ksmbd_work *iter; struct list_head *command_list; + if (work->next_smb2_rcv_hdr_off) + hdr = ksmbd_resp_buf_next(work); + ksmbd_debug(SMB, "smb2 cancel called on mid %llu, async flags 0x%x\n", hdr->MessageId, hdr->Flags); @@ -6664,11 +6708,11 @@ command_list = &conn->async_requests; spin_lock(&conn->request_lock); - list_for_each_entry(cancel_work, command_list, + list_for_each_entry(iter, command_list, async_request_entry) { - chdr = cancel_work->request_buf; + chdr = smb2_get_msg(iter->request_buf); - if (cancel_work->async_id != + if (iter->async_id != le64_to_cpu(hdr->Id.AsyncId)) continue; @@ -6676,7 +6720,9 @@ "smb2 with AsyncId %llu cancelled command = 0x%x\n", le64_to_cpu(hdr->Id.AsyncId), le16_to_cpu(chdr->Command)); - canceled = 1; + iter->state = KSMBD_WORK_CANCELLED; + if (iter->cancel_fn) + iter->cancel_fn(iter->cancel_argv); break; } spin_unlock(&conn->request_lock); @@ -6684,29 +6730,23 @@ command_list = &conn->requests; spin_lock(&conn->request_lock); - list_for_each_entry(cancel_work, command_list, request_entry) { - chdr = cancel_work->request_buf; + list_for_each_entry(iter, command_list, request_entry) { + chdr = smb2_get_msg(iter->request_buf); if (chdr->MessageId != hdr->MessageId || - cancel_work == work) + iter == work) continue; ksmbd_debug(SMB, "smb2 with mid %llu cancelled command = 0x%x\n", le64_to_cpu(hdr->MessageId), le16_to_cpu(chdr->Command)); - canceled = 1; + iter->state = KSMBD_WORK_CANCELLED; break; } spin_unlock(&conn->request_lock); } - if (canceled) { - cancel_work->state = KSMBD_WORK_CANCELLED; - if (cancel_work->cancel_fn) - cancel_work->cancel_fn(cancel_work->cancel_argv); - } - /* For SMB2_CANCEL command itself send no response*/ work->send_no_response = 1; return 0; @@ -6766,7 +6806,7 @@ case SMB2_LOCKFLAG_UNLOCK: ksmbd_debug(SMB, "received unlock request\n"); flock->fl_type = F_UNLCK; - cmd = 0; + cmd = F_SETLK; break; } @@ -6820,8 +6860,8 @@ */ int smb2_lock(struct ksmbd_work *work) { - struct smb2_lock_req *req = work->request_buf; - struct smb2_lock_rsp *rsp = work->response_buf; + struct smb2_lock_req *req; + struct smb2_lock_rsp *rsp; struct smb2_lock_element *lock_ele; struct ksmbd_file *fp = NULL; struct file_lock *flock = NULL; @@ -6838,13 +6878,12 @@ LIST_HEAD(rollback_list); int prior_lock = 0; + WORK_BUFFERS(work, req, rsp); + ksmbd_debug(SMB, "Received lock request\n"); - fp = ksmbd_lookup_fd_slow(work, - le64_to_cpu(req->VolatileFileId), - le64_to_cpu(req->PersistentFileId)); + fp = ksmbd_lookup_fd_slow(work, req->VolatileFileId, req->PersistentFileId); if (!fp) { - ksmbd_debug(SMB, "Invalid file id for lock : %llu\n", - le64_to_cpu(req->VolatileFileId)); + ksmbd_debug(SMB, "Invalid file id for lock : %llu\n", req->VolatileFileId); err = -ENOENT; goto out2; } @@ -6873,6 +6912,7 @@ if (lock_start > U64_MAX - lock_length) { pr_err("Invalid lock range requested\n"); rsp->hdr.Status = STATUS_INVALID_LOCK_RANGE; + locks_free_lock(flock); goto out; } @@ -6892,6 +6932,7 @@ "the end offset(%llx) is smaller than the start offset(%llx)\n", flock->fl_end, flock->fl_start); rsp->hdr.Status = STATUS_INVALID_LOCK_RANGE; + locks_free_lock(flock); goto out; } @@ -6903,6 +6944,7 @@ flock->fl_type != F_UNLCK) { pr_err("conflict two locks in one request\n"); err = -EINVAL; + locks_free_lock(flock); goto out; } } @@ -6911,6 +6953,7 @@ smb_lock = smb2_lock_init(flock, cmd, flags, &lock_list); if (!smb_lock) { err = -EINVAL; + locks_free_lock(flock); goto out; } } @@ -6942,7 +6985,7 @@ nolock = 1; /* check locks in connection list */ - read_lock(&conn_list_lock); + down_read(&conn_list_lock); list_for_each_entry(conn, &conn_list, conns_list) { spin_lock(&conn->llist_lock); list_for_each_entry_safe(cmp_lock, tmp2, &conn->lock_list, clist) { @@ -6959,7 +7002,7 @@ list_del(&cmp_lock->flist); list_del(&cmp_lock->clist); spin_unlock(&conn->llist_lock); - read_unlock(&conn_list_lock); + up_read(&conn_list_lock); locks_free_lock(cmp_lock->fl); kfree(cmp_lock); @@ -6981,7 +7024,7 @@ cmp_lock->start > smb_lock->start && cmp_lock->start < smb_lock->end) { spin_unlock(&conn->llist_lock); - read_unlock(&conn_list_lock); + up_read(&conn_list_lock); pr_err("previous lock conflict with zero byte lock range\n"); goto out; } @@ -6990,7 +7033,7 @@ smb_lock->start > cmp_lock->start && smb_lock->start < cmp_lock->end) { spin_unlock(&conn->llist_lock); - read_unlock(&conn_list_lock); + up_read(&conn_list_lock); pr_err("current lock conflict with zero byte lock range\n"); goto out; } @@ -7001,14 +7044,14 @@ cmp_lock->end >= smb_lock->end)) && !cmp_lock->zero_len && !smb_lock->zero_len) { spin_unlock(&conn->llist_lock); - read_unlock(&conn_list_lock); + up_read(&conn_list_lock); pr_err("Not allow lock operation on exclusive lock range\n"); goto out; } } spin_unlock(&conn->llist_lock); } - read_unlock(&conn_list_lock); + up_read(&conn_list_lock); out_check_cl: if (smb_lock->fl->fl_type == F_UNLCK && nolock) { pr_err("Try to unlock nolocked range\n"); @@ -7042,10 +7085,6 @@ ksmbd_debug(SMB, "would have to wait for getting lock\n"); - spin_lock(&work->conn->llist_lock); - list_add_tail(&smb_lock->clist, - &work->conn->lock_list); - spin_unlock(&work->conn->llist_lock); list_add(&smb_lock->llist, &rollback_list); argv = kmalloc(sizeof(void *), GFP_KERNEL); @@ -7059,6 +7098,7 @@ smb2_remove_blocked_lock, argv); if (rc) { + kfree(argv); err = -ENOMEM; goto out; } @@ -7070,17 +7110,15 @@ ksmbd_vfs_posix_lock_wait(flock); + spin_lock(&fp->f_lock); + list_del(&work->fp_entry); + spin_unlock(&fp->f_lock); + if (work->state != KSMBD_WORK_ACTIVE) { list_del(&smb_lock->llist); - spin_lock(&work->conn->llist_lock); - list_del(&smb_lock->clist); - spin_unlock(&work->conn->llist_lock); locks_free_lock(flock); if (work->state == KSMBD_WORK_CANCELLED) { - spin_lock(&fp->f_lock); - list_del(&work->fp_entry); - spin_unlock(&fp->f_lock); rsp->hdr.Status = STATUS_CANCELLED; kfree(smb_lock); @@ -7089,8 +7127,7 @@ work->send_no_response = 1; goto out; } - init_smb2_rsp_hdr(work); - smb2_set_err_rsp(work); + rsp->hdr.Status = STATUS_RANGE_NOT_LOCKED; kfree(smb_lock); @@ -7098,22 +7135,16 @@ } list_del(&smb_lock->llist); - spin_lock(&work->conn->llist_lock); - list_del(&smb_lock->clist); - spin_unlock(&work->conn->llist_lock); - - spin_lock(&fp->f_lock); - list_del(&work->fp_entry); - spin_unlock(&fp->f_lock); + release_async_work(work); goto retry; } else if (!rc) { + list_add(&smb_lock->llist, &rollback_list); spin_lock(&work->conn->llist_lock); list_add_tail(&smb_lock->clist, &work->conn->lock_list); list_add_tail(&smb_lock->flist, &fp->lock_list); spin_unlock(&work->conn->llist_lock); - list_add(&smb_lock->llist, &rollback_list); ksmbd_debug(SMB, "successful in taking lock\n"); } else { goto out; @@ -7128,7 +7159,10 @@ ksmbd_debug(SMB, "successful in taking lock\n"); rsp->hdr.Status = STATUS_SUCCESS; rsp->Reserved = 0; - inc_rfc1001_len(rsp, 4); + err = ksmbd_iov_pin_rsp(work, rsp, sizeof(struct smb2_lock_rsp)); + if (err) + goto out; + ksmbd_fd_put(work, fp); return 0; @@ -7147,7 +7181,7 @@ rlock->fl_start = smb_lock->start; rlock->fl_end = smb_lock->end; - rc = vfs_lock_file(filp, 0, rlock, NULL); + rc = vfs_lock_file(filp, F_SETLK, rlock, NULL); if (rc) pr_err("rollback unlock fail : %d\n", rc); @@ -7199,8 +7233,8 @@ ci_rsp = (struct copychunk_ioctl_rsp *)&rsp->Buffer[0]; - rsp->VolatileFileId = cpu_to_le64(volatile_id); - rsp->PersistentFileId = cpu_to_le64(persistent_id); + rsp->VolatileFileId = volatile_id; + rsp->PersistentFileId = persistent_id; ci_rsp->ChunksWritten = cpu_to_le32(ksmbd_server_side_copy_max_chunk_count()); ci_rsp->ChunkBytesWritten = @@ -7321,15 +7355,10 @@ struct sockaddr_storage_rsp *sockaddr_storage; unsigned int flags; unsigned long long speed; - struct sockaddr_in6 *csin6 = (struct sockaddr_in6 *)&conn->peer_addr; rtnl_lock(); for_each_netdev(&init_net, netdev) { - if (out_buf_len < - nbytes + sizeof(struct network_interface_info_ioctl_rsp)) { - rtnl_unlock(); - return -ENOSPC; - } + bool ipv4_set = false; if (netdev->type == ARPHRD_LOOPBACK) continue; @@ -7337,6 +7366,12 @@ flags = dev_get_flags(netdev); if (!(flags & IFF_RUNNING)) continue; +ipv6_retry: + if (out_buf_len < + nbytes + sizeof(struct network_interface_info_ioctl_rsp)) { + rtnl_unlock(); + return -ENOSPC; + } nii_rsp = (struct network_interface_info_ioctl_rsp *) &rsp->Buffer[nbytes]; @@ -7369,8 +7404,7 @@ nii_rsp->SockAddr_Storage; memset(sockaddr_storage, 0, 128); - if (conn->peer_addr.ss_family == PF_INET || - ipv6_addr_v4mapped(&csin6->sin6_addr)) { + if (!ipv4_set) { struct in_device *idev; sockaddr_storage->Family = cpu_to_le16(INTERNETWORK); @@ -7381,6 +7415,9 @@ continue; sockaddr_storage->addr4.IPv4address = idev_ipv4_address(idev); + nbytes += sizeof(struct network_interface_info_ioctl_rsp); + ipv4_set = true; + goto ipv6_retry; } else { struct inet6_dev *idev6; struct inet6_ifaddr *ifa; @@ -7402,9 +7439,8 @@ break; } sockaddr_storage->addr6.ScopeId = 0; + nbytes += sizeof(struct network_interface_info_ioctl_rsp); } - - nbytes += sizeof(struct network_interface_info_ioctl_rsp); } rtnl_unlock(); @@ -7412,8 +7448,8 @@ if (nii_rsp) nii_rsp->Next = 0; - rsp->PersistentFileId = cpu_to_le64(SMB2_NO_FID); - rsp->VolatileFileId = cpu_to_le64(SMB2_NO_FID); + rsp->PersistentFileId = SMB2_NO_FID; + rsp->VolatileFileId = SMB2_NO_FID; return nbytes; } @@ -7567,7 +7603,8 @@ da.attr = le32_to_cpu(fp->f_ci->m_fattr); ret = ksmbd_vfs_set_dos_attrib_xattr(user_ns, - fp->filp->f_path.dentry, &da); + &fp->filp->f_path, + &da, true); if (ret) fp->f_ci->m_fattr = old_fattr; } @@ -7583,9 +7620,7 @@ { struct ksmbd_file *fp; - fp = ksmbd_lookup_fd_slow(work, - le64_to_cpu(req->VolatileFileId), - le64_to_cpu(req->PersistentFileId)); + fp = ksmbd_lookup_fd_slow(work, req->VolatileFileId, req->PersistentFileId); if (!fp) return -ENOENT; @@ -7606,28 +7641,27 @@ int smb2_ioctl(struct ksmbd_work *work) { struct smb2_ioctl_req *req; - struct smb2_ioctl_rsp *rsp, *rsp_org; + struct smb2_ioctl_rsp *rsp; unsigned int cnt_code, nbytes = 0, out_buf_len, in_buf_len; u64 id = KSMBD_NO_FID; struct ksmbd_conn *conn = work->conn; int ret = 0; - rsp_org = work->response_buf; if (work->next_smb2_rcv_hdr_off) { req = ksmbd_req_buf_next(work); rsp = ksmbd_resp_buf_next(work); - if (!has_file_id(le64_to_cpu(req->VolatileFileId))) { + if (!has_file_id(req->VolatileFileId)) { ksmbd_debug(SMB, "Compound request set FID = %llu\n", work->compound_fid); id = work->compound_fid; } } else { - req = work->request_buf; - rsp = work->response_buf; + req = smb2_get_msg(work->request_buf); + rsp = smb2_get_msg(work->response_buf); } if (!has_file_id(id)) - id = le64_to_cpu(req->VolatileFileId); + id = req->VolatileFileId; if (req->Flags != cpu_to_le32(SMB2_0_IOCTL_IS_FSCTL)) { rsp->hdr.Status = STATUS_NOT_SUPPORTED; @@ -7698,8 +7732,8 @@ goto out; nbytes = sizeof(struct validate_negotiate_info_rsp); - rsp->PersistentFileId = cpu_to_le64(SMB2_NO_FID); - rsp->VolatileFileId = cpu_to_le64(SMB2_NO_FID); + rsp->PersistentFileId = SMB2_NO_FID; + rsp->VolatileFileId = SMB2_NO_FID; break; case FSCTL_QUERY_NETWORK_INTERFACE_INFO: ret = fsctl_query_iface_info_ioctl(conn, rsp, out_buf_len); @@ -7747,8 +7781,8 @@ (struct copychunk_ioctl_req *)&req->Buffer[0], le32_to_cpu(req->CntCode), le32_to_cpu(req->InputCount), - le64_to_cpu(req->VolatileFileId), - le64_to_cpu(req->PersistentFileId), + req->VolatileFileId, + req->PersistentFileId, rsp); break; case FSCTL_SET_SPARSE: @@ -7925,9 +7959,9 @@ rsp->Reserved = cpu_to_le16(0); rsp->Flags = cpu_to_le32(0); rsp->Reserved2 = cpu_to_le32(0); - inc_rfc1001_len(rsp_org, 48 + nbytes); - - return 0; + ret = ksmbd_iov_pin_rsp(work, rsp, sizeof(struct smb2_ioctl_rsp) + nbytes); + if (!ret) + return ret; out: if (ret == -EACCES) @@ -7952,8 +7986,8 @@ */ static void smb20_oplock_break_ack(struct ksmbd_work *work) { - struct smb2_oplock_break *req = work->request_buf; - struct smb2_oplock_break *rsp = work->response_buf; + struct smb2_oplock_break *req; + struct smb2_oplock_break *rsp; struct ksmbd_file *fp; struct oplock_info *opinfo = NULL; __le32 err = 0; @@ -7962,8 +7996,10 @@ char req_oplevel = 0, rsp_oplevel = 0; unsigned int oplock_change_type; - volatile_id = le64_to_cpu(req->VolatileFid); - persistent_id = le64_to_cpu(req->PersistentFid); + WORK_BUFFERS(work, req, rsp); + + volatile_id = req->VolatileFid; + persistent_id = req->PersistentFid; req_oplevel = req->OplockLevel; ksmbd_debug(OPLOCK, "v_id %llu, p_id %llu request oplock level %d\n", volatile_id, persistent_id, req_oplevel); @@ -8058,10 +8094,11 @@ rsp->OplockLevel = rsp_oplevel; rsp->Reserved = 0; rsp->Reserved2 = 0; - rsp->VolatileFid = cpu_to_le64(volatile_id); - rsp->PersistentFid = cpu_to_le64(persistent_id); - inc_rfc1001_len(rsp, 24); - return; + rsp->VolatileFid = volatile_id; + rsp->PersistentFid = persistent_id; + ret = ksmbd_iov_pin_rsp(work, rsp, sizeof(struct smb2_oplock_break)); + if (!ret) + return; err_out: opinfo->op_state = OPLOCK_STATE_NONE; @@ -8096,8 +8133,8 @@ static void smb21_lease_break_ack(struct ksmbd_work *work) { struct ksmbd_conn *conn = work->conn; - struct smb2_lease_ack *req = work->request_buf; - struct smb2_lease_ack *rsp = work->response_buf; + struct smb2_lease_ack *req; + struct smb2_lease_ack *rsp; struct oplock_info *opinfo; __le32 err = 0; int ret = 0; @@ -8105,6 +8142,8 @@ __le32 lease_state; struct lease *lease; + WORK_BUFFERS(work, req, rsp); + ksmbd_debug(OPLOCK, "smb21 lease break, lease state(0x%x)\n", le32_to_cpu(req->LeaseState)); opinfo = lookup_lease_in_table(conn, req->LeaseKey); @@ -8191,6 +8230,11 @@ le32_to_cpu(req->LeaseState)); } + if (ret < 0) { + rsp->hdr.Status = err; + goto err_out; + } + lease_state = lease->state; opinfo->op_state = OPLOCK_STATE_NONE; wake_up_interruptible_all(&opinfo->oplock_q); @@ -8198,22 +8242,17 @@ wake_up_interruptible_all(&opinfo->oplock_brk); opinfo_put(opinfo); - if (ret < 0) { - rsp->hdr.Status = err; - goto err_out; - } - rsp->StructureSize = cpu_to_le16(36); rsp->Reserved = 0; rsp->Flags = 0; memcpy(rsp->LeaseKey, req->LeaseKey, 16); rsp->LeaseState = lease_state; rsp->LeaseDuration = 0; - inc_rfc1001_len(rsp, 36); - return; + ret = ksmbd_iov_pin_rsp(work, rsp, sizeof(struct smb2_lease_ack)); + if (!ret) + return; err_out: - opinfo->op_state = OPLOCK_STATE_NONE; wake_up_interruptible_all(&opinfo->oplock_q); atomic_dec(&opinfo->breaking_cnt); wake_up_interruptible_all(&opinfo->oplock_brk); @@ -8230,8 +8269,10 @@ */ int smb2_oplock_break(struct ksmbd_work *work) { - struct smb2_oplock_break *req = work->request_buf; - struct smb2_oplock_break *rsp = work->response_buf; + struct smb2_oplock_break *req; + struct smb2_oplock_break *rsp; + + WORK_BUFFERS(work, req, rsp); switch (le16_to_cpu(req->StructureSize)) { case OP_BREAK_STRUCT_SIZE_20: @@ -8283,7 +8324,7 @@ */ bool smb2_is_sign_req(struct ksmbd_work *work, unsigned int command) { - struct smb2_hdr *rcv_hdr2 = work->request_buf; + struct smb2_hdr *rcv_hdr2 = smb2_get_msg(work->request_buf); if ((rcv_hdr2->Flags & SMB2_FLAGS_SIGNED) && command != SMB2_NEGOTIATE_HE && @@ -8302,22 +8343,22 @@ */ int smb2_check_sign_req(struct ksmbd_work *work) { - struct smb2_hdr *hdr, *hdr_org; + struct smb2_hdr *hdr; char signature_req[SMB2_SIGNATURE_SIZE]; char signature[SMB2_HMACSHA256_SIZE]; struct kvec iov[1]; size_t len; - hdr_org = hdr = work->request_buf; + hdr = smb2_get_msg(work->request_buf); if (work->next_smb2_rcv_hdr_off) hdr = ksmbd_req_buf_next(work); if (!hdr->NextCommand && !work->next_smb2_rcv_hdr_off) - len = be32_to_cpu(hdr_org->smb2_buf_length); + len = get_rfc1002_len(work->request_buf); else if (hdr->NextCommand) len = le32_to_cpu(hdr->NextCommand); else - len = be32_to_cpu(hdr_org->smb2_buf_length) - + len = get_rfc1002_len(work->request_buf) - work->next_smb2_rcv_hdr_off; memcpy(signature_req, hdr->Signature, SMB2_SIGNATURE_SIZE); @@ -8345,43 +8386,20 @@ */ void smb2_set_sign_rsp(struct ksmbd_work *work) { - struct smb2_hdr *hdr, *hdr_org; - struct smb2_hdr *req_hdr; + struct smb2_hdr *hdr; char signature[SMB2_HMACSHA256_SIZE]; - struct kvec iov[2]; - size_t len; + struct kvec *iov; int n_vec = 1; - hdr_org = hdr = work->response_buf; - if (work->next_smb2_rsp_hdr_off) - hdr = ksmbd_resp_buf_next(work); - - req_hdr = ksmbd_req_buf_next(work); - - if (!work->next_smb2_rsp_hdr_off) { - len = get_rfc1002_len(hdr_org); - if (req_hdr->NextCommand) - len = ALIGN(len, 8); - } else { - len = get_rfc1002_len(hdr_org) - work->next_smb2_rsp_hdr_off; - len = ALIGN(len, 8); - } - - if (req_hdr->NextCommand) - hdr->NextCommand = cpu_to_le32(len); - + hdr = ksmbd_resp_buf_curr(work); hdr->Flags |= SMB2_FLAGS_SIGNED; memset(hdr->Signature, 0, SMB2_SIGNATURE_SIZE); - iov[0].iov_base = (char *)&hdr->ProtocolId; - iov[0].iov_len = len; - - if (work->aux_payload_sz) { - iov[0].iov_len -= work->aux_payload_sz; - - iov[1].iov_base = work->aux_payload_buf; - iov[1].iov_len = work->aux_payload_sz; + if (hdr->Command == SMB2_READ) { + iov = &work->iov[work->iov_idx - 1]; n_vec++; + } else { + iov = &work->iov[work->iov_idx]; } if (!ksmbd_sign_smb2_pdu(work->conn, work->sess->sess_key, iov, n_vec, @@ -8399,23 +8417,23 @@ { struct ksmbd_conn *conn = work->conn; char *signing_key; - struct smb2_hdr *hdr, *hdr_org; + struct smb2_hdr *hdr; struct channel *chann; char signature_req[SMB2_SIGNATURE_SIZE]; char signature[SMB2_CMACAES_SIZE]; struct kvec iov[1]; size_t len; - hdr_org = hdr = work->request_buf; + hdr = smb2_get_msg(work->request_buf); if (work->next_smb2_rcv_hdr_off) hdr = ksmbd_req_buf_next(work); if (!hdr->NextCommand && !work->next_smb2_rcv_hdr_off) - len = be32_to_cpu(hdr_org->smb2_buf_length); + len = get_rfc1002_len(work->request_buf); else if (hdr->NextCommand) len = le32_to_cpu(hdr->NextCommand); else - len = be32_to_cpu(hdr_org->smb2_buf_length) - + len = get_rfc1002_len(work->request_buf) - work->next_smb2_rcv_hdr_off; if (le16_to_cpu(hdr->Command) == SMB2_SESSION_SETUP_HE) { @@ -8457,29 +8475,14 @@ void smb3_set_sign_rsp(struct ksmbd_work *work) { struct ksmbd_conn *conn = work->conn; - struct smb2_hdr *req_hdr; - struct smb2_hdr *hdr, *hdr_org; + struct smb2_hdr *hdr; struct channel *chann; char signature[SMB2_CMACAES_SIZE]; - struct kvec iov[2]; + struct kvec *iov; int n_vec = 1; - size_t len; char *signing_key; - hdr_org = hdr = work->response_buf; - if (work->next_smb2_rsp_hdr_off) - hdr = ksmbd_resp_buf_next(work); - - req_hdr = ksmbd_req_buf_next(work); - - if (!work->next_smb2_rsp_hdr_off) { - len = get_rfc1002_len(hdr_org); - if (req_hdr->NextCommand) - len = ALIGN(len, 8); - } else { - len = get_rfc1002_len(hdr_org) - work->next_smb2_rsp_hdr_off; - len = ALIGN(len, 8); - } + hdr = ksmbd_resp_buf_curr(work); if (conn->binding == false && le16_to_cpu(hdr->Command) == SMB2_SESSION_SETUP_HE) { @@ -8495,21 +8498,18 @@ if (!signing_key) return; - if (req_hdr->NextCommand) - hdr->NextCommand = cpu_to_le32(len); - hdr->Flags |= SMB2_FLAGS_SIGNED; memset(hdr->Signature, 0, SMB2_SIGNATURE_SIZE); - iov[0].iov_base = (char *)&hdr->ProtocolId; - iov[0].iov_len = len; - if (work->aux_payload_sz) { - iov[0].iov_len -= work->aux_payload_sz; - iov[1].iov_base = work->aux_payload_buf; - iov[1].iov_len = work->aux_payload_sz; + + if (hdr->Command == SMB2_READ) { + iov = &work->iov[work->iov_idx - 1]; n_vec++; + } else { + iov = &work->iov[work->iov_idx]; } - if (!ksmbd_sign_smb3_pdu(conn, signing_key, iov, n_vec, signature)) + if (!ksmbd_sign_smb3_pdu(conn, signing_key, iov, n_vec, + signature)) memcpy(hdr->Signature, signature, SMB2_SIGNATURE_SIZE); } @@ -8531,7 +8531,7 @@ if (le16_to_cpu(req->Command) == SMB2_NEGOTIATE_HE && conn->preauth_info) - ksmbd_gen_preauth_integrity_hash(conn, (char *)rsp, + ksmbd_gen_preauth_integrity_hash(conn, work->response_buf, conn->preauth_info->Preauth_HashValue); if (le16_to_cpu(rsp->Command) == SMB2_SESSION_SETUP_HE && sess) { @@ -8549,18 +8549,18 @@ if (!hash_value) return; } - ksmbd_gen_preauth_integrity_hash(conn, (char *)rsp, + ksmbd_gen_preauth_integrity_hash(conn, work->response_buf, hash_value); } } -static void fill_transform_hdr(struct smb2_transform_hdr *tr_hdr, char *old_buf, - __le16 cipher_type) +static void fill_transform_hdr(void *tr_buf, char *old_buf, __le16 cipher_type) { - struct smb2_hdr *hdr = (struct smb2_hdr *)old_buf; + struct smb2_transform_hdr *tr_hdr = tr_buf + 4; + struct smb2_hdr *hdr = smb2_get_msg(old_buf); unsigned int orig_len = get_rfc1002_len(old_buf); - memset(tr_hdr, 0, sizeof(struct smb2_transform_hdr)); + /* tr_buf must be cleared by the caller */ tr_hdr->ProtocolId = SMB2_TRANSFORM_PROTO_NUM; tr_hdr->OriginalMessageSize = cpu_to_le32(orig_len); tr_hdr->Flags = cpu_to_le16(0x01); @@ -8570,73 +8570,45 @@ else get_random_bytes(&tr_hdr->Nonce, SMB3_AES_CCM_NONCE); memcpy(&tr_hdr->SessionId, &hdr->SessionId, 8); - inc_rfc1001_len(tr_hdr, sizeof(struct smb2_transform_hdr) - 4); - inc_rfc1001_len(tr_hdr, orig_len); + inc_rfc1001_len(tr_buf, sizeof(struct smb2_transform_hdr)); + inc_rfc1001_len(tr_buf, orig_len); } int smb3_encrypt_resp(struct ksmbd_work *work) { - char *buf = work->response_buf; - struct smb2_transform_hdr *tr_hdr; - struct kvec iov[3]; + struct kvec *iov = work->iov; int rc = -ENOMEM; - int buf_size = 0, rq_nvec = 2 + (work->aux_payload_sz ? 1 : 0); + void *tr_buf; - if (ARRAY_SIZE(iov) < rq_nvec) - return -ENOMEM; - - tr_hdr = kzalloc(sizeof(struct smb2_transform_hdr), GFP_KERNEL); - if (!tr_hdr) + tr_buf = kzalloc(sizeof(struct smb2_transform_hdr) + 4, GFP_KERNEL); + if (!tr_buf) return rc; /* fill transform header */ - fill_transform_hdr(tr_hdr, buf, work->conn->cipher_type); + fill_transform_hdr(tr_buf, work->response_buf, work->conn->cipher_type); - iov[0].iov_base = tr_hdr; - iov[0].iov_len = sizeof(struct smb2_transform_hdr); - buf_size += iov[0].iov_len - 4; + iov[0].iov_base = tr_buf; + iov[0].iov_len = sizeof(struct smb2_transform_hdr) + 4; + work->tr_buf = tr_buf; - iov[1].iov_base = buf + 4; - iov[1].iov_len = get_rfc1002_len(buf); - if (work->aux_payload_sz) { - iov[1].iov_len = work->resp_hdr_sz - 4; - - iov[2].iov_base = work->aux_payload_buf; - iov[2].iov_len = work->aux_payload_sz; - buf_size += iov[2].iov_len; - } - buf_size += iov[1].iov_len; - work->resp_hdr_sz = iov[1].iov_len; - - rc = ksmbd_crypt_message(work->conn, iov, rq_nvec, 1); - if (rc) - return rc; - - memmove(buf, iov[1].iov_base, iov[1].iov_len); - tr_hdr->smb2_buf_length = cpu_to_be32(buf_size); - work->tr_buf = tr_hdr; - - return rc; + return ksmbd_crypt_message(work, iov, work->iov_idx + 1, 1); } bool smb3_is_transform_hdr(void *buf) { - struct smb2_transform_hdr *trhdr = buf; + struct smb2_transform_hdr *trhdr = smb2_get_msg(buf); return trhdr->ProtocolId == SMB2_TRANSFORM_PROTO_NUM; } int smb3_decrypt_req(struct ksmbd_work *work) { - struct ksmbd_conn *conn = work->conn; struct ksmbd_session *sess; char *buf = work->request_buf; - struct smb2_hdr *hdr; unsigned int pdu_length = get_rfc1002_len(buf); struct kvec iov[2]; - int buf_data_size = pdu_length + 4 - - sizeof(struct smb2_transform_hdr); - struct smb2_transform_hdr *tr_hdr = (struct smb2_transform_hdr *)buf; + int buf_data_size = pdu_length - sizeof(struct smb2_transform_hdr); + struct smb2_transform_hdr *tr_hdr = smb2_get_msg(buf); int rc = 0; if (pdu_length < sizeof(struct smb2_transform_hdr) || @@ -8651,7 +8623,7 @@ return -ECONNABORTED; } - sess = ksmbd_session_lookup_all(conn, le64_to_cpu(tr_hdr->SessionId)); + sess = ksmbd_session_lookup_all(work->conn, le64_to_cpu(tr_hdr->SessionId)); if (!sess) { pr_err("invalid session id(%llx) in transform header\n", le64_to_cpu(tr_hdr->SessionId)); @@ -8659,16 +8631,15 @@ } iov[0].iov_base = buf; - iov[0].iov_len = sizeof(struct smb2_transform_hdr); - iov[1].iov_base = buf + sizeof(struct smb2_transform_hdr); + iov[0].iov_len = sizeof(struct smb2_transform_hdr) + 4; + iov[1].iov_base = buf + sizeof(struct smb2_transform_hdr) + 4; iov[1].iov_len = buf_data_size; - rc = ksmbd_crypt_message(conn, iov, 2, 0); + rc = ksmbd_crypt_message(work, iov, 2, 0); if (rc) return rc; memmove(buf + 4, iov[1].iov_base, buf_data_size); - hdr = (struct smb2_hdr *)buf; - hdr->smb2_buf_length = cpu_to_be32(buf_data_size); + *(__be32 *)buf = cpu_to_be32(buf_data_size); return rc; } @@ -8677,7 +8648,7 @@ { struct ksmbd_conn *conn = work->conn; struct ksmbd_session *sess = work->sess; - struct smb2_hdr *rsp = work->response_buf; + struct smb2_hdr *rsp = smb2_get_msg(work->response_buf); if (conn->dialect < SMB30_PROT_ID) return false; diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smb2pdu.h linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smb2pdu.h --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smb2pdu.h +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smb2pdu.h @@ -109,6 +109,7 @@ #define SMB2_PROTO_NUMBER cpu_to_le32(0x424d53fe) /* 'B''M''S' */ #define SMB2_TRANSFORM_PROTO_NUM cpu_to_le32(0x424d53fd) +#define SMB2_COMPRESSION_TRANSFORM_ID cpu_to_le32(0x424d53fc) #define SMB21_DEFAULT_IOSIZE (1024 * 1024) #define SMB3_DEFAULT_IOSIZE (4 * 1024 * 1024) @@ -131,11 +132,6 @@ cpu_to_le16(__SMB2_HEADER_STRUCTURE_SIZE) struct smb2_hdr { - __be32 smb2_buf_length; /* big endian on wire */ - /* - * length is only two or three bytes - with - * one or two byte type preceding it that MBZ - */ __le32 ProtocolId; /* 0xFE 'S' 'M' 'B' */ __le16 StructureSize; /* 64 */ __le16 CreditCharge; /* MBZ */ @@ -165,11 +161,6 @@ #define SMB3_AES_GCM_NONCE 12 struct smb2_transform_hdr { - __be32 smb2_buf_length; /* big endian on wire */ - /* - * length is only two or three bytes - with - * one or two byte type preceding it that MBZ - */ __le32 ProtocolId; /* 0xFD 'S' 'M' 'B' */ __u8 Signature[16]; __u8 Nonce[16]; @@ -254,14 +245,14 @@ __u8 Preauth_HashValue[PREAUTH_HASHVALUE_SIZE]; }; -/* offset is sizeof smb2_negotiate_rsp - 4 but rounded up to 8 bytes. */ +/* offset is sizeof smb2_negotiate_rsp but rounded up to 8 bytes. */ #ifdef CONFIG_SMB_SERVER_KERBEROS5 -/* sizeof(struct smb2_negotiate_rsp) - 4 = +/* sizeof(struct smb2_negotiate_rsp) = * header(64) + response(64) + GSS_LENGTH(96) + GSS_PADDING(0) */ #define OFFSET_OF_NEG_CONTEXT 0xe0 #else -/* sizeof(struct smb2_negotiate_rsp) - 4 = +/* sizeof(struct smb2_negotiate_rsp) = * header(64) + response(64) + GSS_LENGTH(74) + GSS_PADDING(6) */ #define OFFSET_OF_NEG_CONTEXT 0xd0 @@ -376,6 +367,8 @@ #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 @@ -629,6 +622,8 @@ __u8 Buffer[0]; } __packed; +#define SMB2_SESSION_TIMEOUT (10 * HZ) + struct create_durable_req_v2 { struct create_context ccontext; __u8 Name[8]; @@ -644,8 +639,8 @@ union { __u8 Reserved[16]; struct { - __le64 PersistentFileId; - __le64 VolatileFileId; + __u64 PersistentFileId; + __u64 VolatileFileId; } Fid; } Data; } __packed; @@ -654,8 +649,8 @@ struct create_context ccontext; __u8 Name[8]; struct { - __le64 PersistentFileId; - __le64 VolatileFileId; + __u64 PersistentFileId; + __u64 VolatileFileId; } Fid; __u8 CreateGuid[16]; __le32 Flags; @@ -734,7 +729,8 @@ __le32 nlink; __le32 reparse_tag; __le32 mode; - u8 SidBuffer[40]; + /* SidBuffer contain two sids(Domain sid(28), UNIX group sid(16)) */ + u8 SidBuffer[44]; } __packed; #define SMB2_LEASE_NONE_LE cpu_to_le32(0x00) @@ -743,23 +739,23 @@ #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_FLAG_PARENT_LEASE_KEY_SET_LE cpu_to_le32(0x04) + +#define SMB2_LEASE_KEY_SIZE 16 struct lease_context { - __le64 LeaseKeyLow; - __le64 LeaseKeyHigh; + __u8 LeaseKey[SMB2_LEASE_KEY_SIZE]; __le32 LeaseState; __le32 LeaseFlags; __le64 LeaseDuration; } __packed; struct lease_context_v2 { - __le64 LeaseKeyLow; - __le64 LeaseKeyHigh; + __u8 LeaseKey[SMB2_LEASE_KEY_SIZE]; __le32 LeaseState; __le32 LeaseFlags; __le64 LeaseDuration; - __le64 ParentLeaseKeyLow; - __le64 ParentLeaseKeyHigh; + __u8 ParentLeaseKey[SMB2_LEASE_KEY_SIZE]; __le16 Epoch; __le16 Reserved; } __packed; @@ -900,8 +896,8 @@ __le16 StructureSize; /* Must be 57 */ __le16 Reserved; /* offset from start of SMB2 header to write data */ __le32 CntCode; - __le64 PersistentFileId; - __le64 VolatileFileId; + __u64 PersistentFileId; + __u64 VolatileFileId; __le32 InputOffset; /* Reserved MBZ */ __le32 InputCount; __le32 MaxInputResponse; @@ -918,8 +914,8 @@ __le16 StructureSize; /* Must be 49 */ __le16 Reserved; /* offset from start of SMB2 header to write data */ __le32 CntCode; - __le64 PersistentFileId; - __le64 VolatileFileId; + __u64 PersistentFileId; + __u64 VolatileFileId; __le32 InputOffset; /* Reserved MBZ */ __le32 InputCount; __le32 OutputOffset; @@ -988,7 +984,7 @@ } __packed; struct resume_key_ioctl_rsp { - __le64 ResumeKey[3]; + __u64 ResumeKey[3]; __le32 ContextLength; __u8 Context[4]; /* ignored, Windows sets to 4 bytes of zero */ } __packed; @@ -1100,8 +1096,8 @@ __le16 StructureSize; /* Must be 48 */ __le16 LockCount; __le32 Reserved; - __le64 PersistentFileId; - __le64 VolatileFileId; + __u64 PersistentFileId; + __u64 VolatileFileId; /* Followed by at least one */ struct smb2_lock_element locks[1]; } __packed; @@ -1136,8 +1132,8 @@ __u8 FileInformationClass; __u8 Flags; __le32 FileIndex; - __le64 PersistentFileId; - __le64 VolatileFileId; + __u64 PersistentFileId; + __u64 VolatileFileId; __le16 FileNameOffset; __le16 FileNameLength; __le32 OutputBufferLength; @@ -1183,8 +1179,8 @@ __le32 InputBufferLength; __le32 AdditionalInformation; __le32 Flags; - __le64 PersistentFileId; - __le64 VolatileFileId; + __u64 PersistentFileId; + __u64 VolatileFileId; __u8 Buffer[1]; } __packed; @@ -1205,8 +1201,8 @@ __le16 BufferOffset; __u16 Reserved; __le32 AdditionalInformation; - __le64 PersistentFileId; - __le64 VolatileFileId; + __u64 PersistentFileId; + __u64 VolatileFileId; __u8 Buffer[1]; } __packed; @@ -1628,9 +1624,10 @@ __le32 HardLinks; __le32 ReparseTag; __le32 Mode; - u8 SidBuffer[40]; + /* SidBuffer contain two sids (UNIX user sid(16), UNIX group sid(16)) */ + u8 SidBuffer[32]; __le32 name_len; - u8 name[1]; + u8 name[]; /* * var sized owner SID * var sized group SID @@ -1672,6 +1669,7 @@ struct file_lock *smb_flock_init(struct file *f); int setup_async_work(struct ksmbd_work *work, void (*fn)(void **), void **arg); +void release_async_work(struct ksmbd_work *work); void smb2_send_interim_resp(struct ksmbd_work *work, __le32 status); struct channel *lookup_chann_list(struct ksmbd_session *sess, struct ksmbd_conn *conn); @@ -1681,6 +1679,7 @@ int smb3_encrypt_resp(struct ksmbd_work *work); bool smb3_11_final_sess_setup_resp(struct ksmbd_work *work); int smb2_set_rsp_credits(struct ksmbd_work *work); +bool smb3_encryption_negotiated(struct ksmbd_conn *conn); /* smb2 misc functions */ int ksmbd_smb2_check_message(struct ksmbd_work *work); @@ -1709,2 +1708,11 @@ +/* + * Get the body of the smb2 message excluding the 4 byte rfc1002 headers + * from request/response buffer. + */ +static inline void *smb2_get_msg(void *buf) +{ + return buf + 4; +} + #endif /* _SMB2PDU_H */ diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smb_common.c linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smb_common.c --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smb_common.c +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smb_common.c @@ -134,7 +134,7 @@ */ int ksmbd_verify_smb_message(struct ksmbd_work *work) { - struct smb2_hdr *smb2_hdr = work->request_buf + work->next_smb2_rcv_hdr_off; + struct smb2_hdr *smb2_hdr = ksmbd_req_buf_next(work); struct smb_hdr *hdr; if (smb2_hdr->ProtocolId == SMB2_PROTO_NUMBER) @@ -158,7 +158,23 @@ */ bool ksmbd_smb_request(struct ksmbd_conn *conn) { - return conn->request_buf[0] == 0; + __le32 *proto; + + if (conn->request_buf[0] != 0) + return false; + + proto = (__le32 *)smb2_get_msg(conn->request_buf); + if (*proto == SMB2_COMPRESSION_TRANSFORM_ID) { + pr_err_ratelimited("smb2 compression not support yet"); + return false; + } + + if (*proto != SMB1_PROTO_NUMBER && + *proto != SMB2_PROTO_NUMBER && + *proto != SMB2_TRANSFORM_PROTO_NUM) + return false; + + return true; } static bool supported_protocol(int idx) @@ -243,18 +259,18 @@ static int ksmbd_negotiate_smb_dialect(void *buf) { int smb_buf_length = get_rfc1002_len(buf); - __le32 proto = ((struct smb2_hdr *)buf)->ProtocolId; + __le32 proto = ((struct smb2_hdr *)smb2_get_msg(buf))->ProtocolId; if (proto == SMB2_PROTO_NUMBER) { struct smb2_negotiate_req *req; int smb2_neg_size = - offsetof(struct smb2_negotiate_req, Dialects) - 4; + offsetof(struct smb2_negotiate_req, Dialects); - req = (struct smb2_negotiate_req *)buf; + req = (struct smb2_negotiate_req *)smb2_get_msg(buf); if (smb2_neg_size > smb_buf_length) goto err_out; - if (smb2_neg_size + le16_to_cpu(req->DialectCount) * sizeof(__le16) > + if (struct_size(req, Dialects, le16_to_cpu(req->DialectCount)) > smb_buf_length) goto err_out; @@ -283,20 +299,129 @@ return BAD_PROT_ID; } -int ksmbd_init_smb_server(struct ksmbd_work *work) +#define SMB_COM_NEGOTIATE_EX 0x0 + +/** + * get_smb1_cmd_val() - get smb command value from smb header + * @work: smb work containing smb header + * + * Return: smb command value + */ +static u16 get_smb1_cmd_val(struct ksmbd_work *work) { - struct ksmbd_conn *conn = work->conn; + return SMB_COM_NEGOTIATE_EX; +} + +/** + * init_smb1_rsp_hdr() - initialize smb negotiate response header + * @work: smb work containing smb request + * + * Return: 0 on success, otherwise -EINVAL + */ +static int init_smb1_rsp_hdr(struct ksmbd_work *work) +{ + struct smb_hdr *rsp_hdr = (struct smb_hdr *)work->response_buf; + struct smb_hdr *rcv_hdr = (struct smb_hdr *)work->request_buf; + + rsp_hdr->Command = SMB_COM_NEGOTIATE; + *(__le32 *)rsp_hdr->Protocol = SMB1_PROTO_NUMBER; + rsp_hdr->Flags = SMBFLG_RESPONSE; + rsp_hdr->Flags2 = SMBFLG2_UNICODE | SMBFLG2_ERR_STATUS | + SMBFLG2_EXT_SEC | SMBFLG2_IS_LONG_NAME; + rsp_hdr->Pid = rcv_hdr->Pid; + rsp_hdr->Mid = rcv_hdr->Mid; + return 0; +} - if (conn->need_neg == false) +/** + * smb1_check_user_session() - check for valid session for a user + * @work: smb work containing smb request buffer + * + * Return: 0 on success, otherwise error + */ +static int smb1_check_user_session(struct ksmbd_work *work) +{ + unsigned int cmd = work->conn->ops->get_cmd_val(work); + + if (cmd == SMB_COM_NEGOTIATE_EX) return 0; - init_smb3_11_server(conn); + return -EINVAL; +} + +/** + * smb1_allocate_rsp_buf() - allocate response buffer for a command + * @work: smb work containing smb request + * + * Return: 0 on success, otherwise -ENOMEM + */ +static int smb1_allocate_rsp_buf(struct ksmbd_work *work) +{ + work->response_buf = kzalloc(MAX_CIFS_SMALL_BUFFER_SIZE, + GFP_KERNEL); + work->response_sz = MAX_CIFS_SMALL_BUFFER_SIZE; + + if (!work->response_buf) { + pr_err("Failed to allocate %u bytes buffer\n", + MAX_CIFS_SMALL_BUFFER_SIZE); + return -ENOMEM; + } + + return 0; +} + +/** + * set_smb1_rsp_status() - set error type in smb response header + * @work: smb work containing smb response header + * @err: error code to set in response + */ +static void set_smb1_rsp_status(struct ksmbd_work *work, __le32 err) +{ + work->send_no_response = 1; +} + +static struct smb_version_ops smb1_server_ops = { + .get_cmd_val = get_smb1_cmd_val, + .init_rsp_hdr = init_smb1_rsp_hdr, + .allocate_rsp_buf = smb1_allocate_rsp_buf, + .check_user_session = smb1_check_user_session, + .set_rsp_status = set_smb1_rsp_status, +}; + +static int smb1_negotiate(struct ksmbd_work *work) +{ + return ksmbd_smb_negotiate_common(work, SMB_COM_NEGOTIATE); +} - if (conn->ops->get_cmd_val(work) != SMB_COM_NEGOTIATE) - conn->need_neg = false; +static struct smb_version_cmds smb1_server_cmds[1] = { + [SMB_COM_NEGOTIATE_EX] = { .proc = smb1_negotiate, }, +}; + +static int init_smb1_server(struct ksmbd_conn *conn) +{ + conn->ops = &smb1_server_ops; + conn->cmds = smb1_server_cmds; + conn->max_cmds = ARRAY_SIZE(smb1_server_cmds); return 0; } +int ksmbd_init_smb_server(struct ksmbd_work *work) +{ + struct ksmbd_conn *conn = work->conn; + __le32 proto; + + proto = *(__le32 *)((struct smb_hdr *)work->request_buf)->Protocol; + if (conn->need_neg == false) { + if (proto == SMB1_PROTO_NUMBER) + return -EINVAL; + return 0; + } + + if (proto == SMB1_PROTO_NUMBER) + return init_smb1_server(conn); + return init_smb3_11_server(conn); +} + int ksmbd_populate_dot_dotdot_entries(struct ksmbd_work *work, int info_level, struct ksmbd_file *dir, struct ksmbd_dir_info *d_info, @@ -444,20 +569,11 @@ ksmbd_debug(SMB, "Unsupported SMB1 protocol\n"); - /* - * Remove 4 byte direct TCP header, add 2 byte bcc and - * 2 byte DialectIndex. - */ - *(__be32 *)work->response_buf = - cpu_to_be32(sizeof(struct smb_hdr) - 4 + 2 + 2); - neg_rsp->hdr.Status.CifsError = STATUS_SUCCESS; - - neg_rsp->hdr.Command = SMB_COM_NEGOTIATE; - *(__le32 *)neg_rsp->hdr.Protocol = SMB1_PROTO_NUMBER; - neg_rsp->hdr.Flags = SMBFLG_RESPONSE; - neg_rsp->hdr.Flags2 = SMBFLG2_UNICODE | SMBFLG2_ERR_STATUS | - SMBFLG2_EXT_SEC | SMBFLG2_IS_LONG_NAME; + if (ksmbd_iov_pin_rsp(work, (void *)neg_rsp, + sizeof(struct smb_negotiate_rsp) - 4)) + return -ENOMEM; + neg_rsp->hdr.Status.CifsError = STATUS_SUCCESS; neg_rsp->hdr.WordCount = 1; neg_rsp->DialectIndex = cpu_to_le16(work->conn->dialect); neg_rsp->ByteCount = 0; @@ -469,27 +585,17 @@ struct ksmbd_conn *conn = work->conn; int ret; - conn->dialect = ksmbd_negotiate_smb_dialect(work->request_buf); + conn->dialect = + ksmbd_negotiate_smb_dialect(work->request_buf); ksmbd_debug(SMB, "conn->dialect 0x%x\n", conn->dialect); if (command == SMB2_NEGOTIATE_HE) { - struct smb2_hdr *smb2_hdr = work->request_buf; - - if (smb2_hdr->ProtocolId != SMB2_PROTO_NUMBER) { - ksmbd_debug(SMB, "Downgrade to SMB1 negotiation\n"); - command = SMB_COM_NEGOTIATE; - } - } - - if (command == SMB2_NEGOTIATE_HE) { ret = smb2_handle_negotiate(work); - init_smb2_neg_rsp(work); return ret; } if (command == SMB_COM_NEGOTIATE) { if (__smb2_negotiate(conn)) { - conn->need_neg = true; init_smb3_11_server(conn); init_smb2_neg_rsp(work); ksmbd_debug(SMB, "Upgrade to SMB2 negotiation\n"); diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smb_common.h linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smb_common.h --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smb_common.h +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smb_common.h @@ -247,7 +247,7 @@ struct smb_negotiate_req { struct smb_hdr hdr; /* wct = 0 */ __le16 ByteCount; - unsigned char DialectsArray[1]; + unsigned char DialectsArray[]; } __packed; struct smb_negotiate_rsp { @@ -310,14 +310,14 @@ __le64 AllocationSize; __le32 ExtFileAttributes; __le32 FileNameLength; - char FileName[1]; + char FileName[]; } __packed; /* level 0x101 FF resp data */ struct file_names_info { __le32 NextEntryOffset; __u32 FileIndex; __le32 FileNameLength; - char FileName[1]; + char FileName[]; } __packed; /* level 0xc FF resp data */ struct file_full_directory_info { @@ -332,7 +332,7 @@ __le32 ExtFileAttributes; __le32 FileNameLength; __le32 EaSize; - char FileName[1]; + char FileName[]; } __packed; /* level 0x102 FF resp */ struct file_both_directory_info { @@ -350,7 +350,7 @@ __u8 ShortNameLength; __u8 Reserved; __u8 ShortName[24]; - char FileName[1]; + char FileName[]; } __packed; /* level 0x104 FFrsp data */ struct file_id_both_directory_info { @@ -370,7 +370,7 @@ __u8 ShortName[24]; __le16 Reserved2; __le64 UniqueId; - char FileName[1]; + char FileName[]; } __packed; struct file_id_full_dir_info { @@ -387,7 +387,7 @@ __le32 EaSize; /* EA size */ __le32 Reserved; __le64 UniqueId; /* inode num - le since Samba puts ino in low 32 bit*/ - char FileName[1]; + char FileName[]; } __packed; /* level 0x105 FF rsp data */ struct smb_version_values { @@ -464,12 +464,6 @@ int (*proc)(struct ksmbd_work *swork); }; -static inline size_t -smb2_hdr_size_no_buflen(struct smb_version_values *vals) -{ - return vals->header_size - 4; -} - int ksmbd_min_protocol(void); int ksmbd_max_protocol(void); diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smbacl.c linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smbacl.c --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smbacl.c +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smbacl.c @@ -97,7 +97,7 @@ /* compare all of the subauth values if any */ num_sat = ctsid->num_subauth; num_saw = cwsid->num_subauth; - num_subauth = num_sat < num_saw ? num_sat : num_saw; + num_subauth = min(num_sat, num_saw); if (num_subauth) { for (i = 0; i < num_subauth; ++i) { if (ctsid->sub_auth[i] != cwsid->sub_auth[i]) { @@ -399,10 +399,6 @@ if (num_aces > ULONG_MAX / sizeof(struct smb_ace *)) return; - ppace = kmalloc_array(num_aces, sizeof(struct smb_ace *), GFP_KERNEL); - if (!ppace) - return; - ret = init_acl_state(&acl_state, num_aces); if (ret) return; @@ -412,6 +408,13 @@ return; } + ppace = kmalloc_array(num_aces, sizeof(struct smb_ace *), GFP_KERNEL); + if (!ppace) { + free_acl_state(&default_acl_state); + free_acl_state(&acl_state); + return; + } + /* * reset rwx permissions for user/group/other. * Also, if num_aces is 0 i.e. DACL has no ACEs, @@ -991,7 +994,7 @@ } int smb_inherit_dacl(struct ksmbd_conn *conn, - struct path *path, + const struct path *path, unsigned int uid, unsigned int gid) { const struct smb_sid *psid, *creator = NULL; @@ -1105,6 +1108,7 @@ 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 +1121,10 @@ 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 +1139,27 @@ 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)); @@ -1160,8 +1186,7 @@ pntsd_size += sizeof(struct smb_acl) + nt_size; } - ksmbd_vfs_set_sd_xattr(conn, user_ns, - path->dentry, pntsd, pntsd_size); + ksmbd_vfs_set_sd_xattr(conn, user_ns, path, pntsd, pntsd_size, false); kfree(pntsd); } @@ -1185,7 +1210,7 @@ return false; } -int smb_check_perm_dacl(struct ksmbd_conn *conn, struct path *path, +int smb_check_perm_dacl(struct ksmbd_conn *conn, const struct path *path, __le32 *pdaccess, int uid) { struct user_namespace *user_ns = mnt_user_ns(path->mnt); @@ -1288,7 +1313,7 @@ if (IS_ENABLED(CONFIG_FS_POSIX_ACL)) { posix_acls = get_acl(d_inode(path->dentry), ACL_TYPE_ACCESS); - if (posix_acls && !found) { + if (!IS_ERR_OR_NULL(posix_acls) && !found) { unsigned int id = -1; pa_entry = posix_acls->a_entries; @@ -1312,7 +1337,7 @@ } } } - if (posix_acls) + if (!IS_ERR_OR_NULL(posix_acls)) posix_acl_release(posix_acls); } @@ -1352,8 +1377,8 @@ } int set_info_sec(struct ksmbd_conn *conn, struct ksmbd_tree_connect *tcon, - struct path *path, struct smb_ntsd *pntsd, int ntsd_len, - bool type_check) + const struct path *path, struct smb_ntsd *pntsd, int ntsd_len, + bool type_check, bool get_write) { int rc; struct smb_fattr fattr = {{0}}; @@ -1381,7 +1406,7 @@ newattrs.ia_valid |= ATTR_MODE; newattrs.ia_mode = (inode->i_mode & ~0777) | (fattr.cf_mode & 0777); - ksmbd_vfs_remove_acl_xattrs(user_ns, path->dentry); + ksmbd_vfs_remove_acl_xattrs(user_ns, path); /* Update posix acls */ if (IS_ENABLED(CONFIG_FS_POSIX_ACL) && fattr.cf_dacls) { rc = set_posix_acl(user_ns, inode, @@ -1412,15 +1437,14 @@ if (test_share_config_flag(tcon->share_conf, KSMBD_SHARE_FLAG_ACL_XATTR)) { /* Update WinACL in xattr */ - ksmbd_vfs_remove_sd_xattrs(user_ns, path->dentry); - ksmbd_vfs_set_sd_xattr(conn, user_ns, - path->dentry, pntsd, ntsd_len); + ksmbd_vfs_remove_sd_xattrs(user_ns, path); + ksmbd_vfs_set_sd_xattr(conn, user_ns, path, pntsd, ntsd_len, + get_write); } out: posix_acl_release(fattr.cf_acls); posix_acl_release(fattr.cf_dacls); - mark_inode_dirty(inode); return rc; } diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smbacl.h linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smbacl.h --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smbacl.h +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/smbacl.h @@ -201,13 +201,13 @@ struct posix_acl_entry *pace); int compare_sids(const struct smb_sid *ctsid, const struct smb_sid *cwsid); bool smb_inherit_flags(int flags, bool is_dir); -int smb_inherit_dacl(struct ksmbd_conn *conn, struct path *path, +int smb_inherit_dacl(struct ksmbd_conn *conn, const struct path *path, unsigned int uid, unsigned int gid); -int smb_check_perm_dacl(struct ksmbd_conn *conn, struct path *path, +int smb_check_perm_dacl(struct ksmbd_conn *conn, const struct path *path, __le32 *pdaccess, int uid); int set_info_sec(struct ksmbd_conn *conn, struct ksmbd_tree_connect *tcon, - struct path *path, struct smb_ntsd *pntsd, int ntsd_len, - bool type_check); + const struct path *path, struct smb_ntsd *pntsd, int ntsd_len, + bool type_check, bool get_write); void id_to_sid(unsigned int cid, uint sidtype, struct smb_sid *ssid); void ksmbd_init_domain(u32 *sub_auth); diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/transport_ipc.c linux-xilinx-zynqmp-5.15.0/fs/ksmbd/transport_ipc.c --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/transport_ipc.c +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/transport_ipc.c @@ -74,7 +74,7 @@ static int handle_generic_event(struct sk_buff *skb, struct genl_info *info); static int ksmbd_ipc_heartbeat_request(void); -static const struct nla_policy ksmbd_nl_policy[KSMBD_EVENT_MAX] = { +static const struct nla_policy ksmbd_nl_policy[KSMBD_EVENT_MAX + 1] = { [KSMBD_EVENT_UNSPEC] = { .len = 0, }, @@ -228,7 +228,7 @@ struct ksmbd_ipc_msg *msg; size_t msg_sz = sz + sizeof(struct ksmbd_ipc_msg); - msg = kvmalloc(msg_sz, GFP_KERNEL | __GFP_ZERO); + msg = kvzalloc(msg_sz, GFP_KERNEL); if (msg) msg->sz = sz; return msg; @@ -267,7 +267,7 @@ entry->type + 1, type); } - entry->response = kvmalloc(sz, GFP_KERNEL | __GFP_ZERO); + entry->response = kvzalloc(sz, GFP_KERNEL); if (!entry->response) { ret = -ENOMEM; break; @@ -402,7 +402,7 @@ return -EPERM; #endif - if (type >= KSMBD_EVENT_MAX) { + if (type > KSMBD_EVENT_MAX) { WARN_ON(1); return -EINVAL; } diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/transport_rdma.c linux-xilinx-zynqmp-5.15.0/fs/ksmbd/transport_rdma.c --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/transport_rdma.c +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/transport_rdma.c @@ -5,16 +5,6 @@ * * Author(s): Long Li , * Hyunchul Lee - * - * 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. */ #define SUBMOD_NAME "smb_direct" @@ -34,14 +24,15 @@ #include "smbstatus.h" #include "transport_rdma.h" -#define SMB_DIRECT_PORT 5445 +#define SMB_DIRECT_PORT_IWARP 5445 +#define SMB_DIRECT_PORT_INFINIBAND 445 #define SMB_DIRECT_VERSION_LE cpu_to_le16(0x0100) /* SMB_DIRECT negotiation timeout in seconds */ #define SMB_DIRECT_NEGOTIATE_TIMEOUT 120 -#define SMB_DIRECT_MAX_SEND_SGES 8 +#define SMB_DIRECT_MAX_SEND_SGES 6 #define SMB_DIRECT_MAX_RECV_SGES 1 /* @@ -60,6 +51,10 @@ * as defined in [MS-SMBD] 3.1.1.1 * Those may change after a SMB_DIRECT negotiation */ + +/* Set 445 port to SMB Direct port by default */ +static int smb_direct_port = SMB_DIRECT_PORT_INFINIBAND; + /* The local peer's maximum number of credits to grant to the peer */ static int smb_direct_receive_credit_max = 255; @@ -67,17 +62,23 @@ static int smb_direct_send_credit_target = 255; /* The maximum single message size can be sent to remote peer */ -static int smb_direct_max_send_size = 8192; +static int smb_direct_max_send_size = 1364; /* The maximum fragmented upper-layer payload receive size supported */ static int smb_direct_max_fragmented_recv_size = 1024 * 1024; /* The maximum single-message size which can be received */ -static int smb_direct_max_receive_size = 8192; +static int smb_direct_max_receive_size = 1364; static int smb_direct_max_read_write_size = SMBD_DEFAULT_IOSIZE; -static int smb_direct_max_outstanding_rw_ops = 8; +static LIST_HEAD(smb_direct_device_list); +static DEFINE_RWLOCK(smb_direct_device_lock); + +struct smb_direct_device { + struct ib_device *ib_dev; + struct list_head list; +}; static struct smb_direct_listener { struct rdma_cm_id *cm_id; @@ -134,18 +135,18 @@ atomic_t send_credits; spinlock_t lock_new_recv_credits; int new_recv_credits; - atomic_t rw_avail_ops; + int max_rw_credits; + int pages_per_rw_credit; + atomic_t rw_credits; wait_queue_head_t wait_send_credits; - wait_queue_head_t wait_rw_avail_ops; + wait_queue_head_t wait_rw_credits; mempool_t *sendmsg_mempool; struct kmem_cache *sendmsg_cache; mempool_t *recvmsg_mempool; struct kmem_cache *recvmsg_cache; - wait_queue_head_t wait_send_payload_pending; - atomic_t send_payload_pending; wait_queue_head_t wait_send_pending; atomic_t send_pending; @@ -195,7 +196,9 @@ struct smb_direct_rdma_rw_msg { struct smb_direct_transport *t; struct ib_cqe cqe; + int status; struct completion *completion; + struct list_head list; struct rdma_rw_ctx rw_ctx; struct sg_table sgt; struct scatterlist sg_list[0]; @@ -207,6 +210,11 @@ smb_direct_max_read_write_size = sz; } +unsigned int get_smbd_max_read_write_size(void) +{ + return smb_direct_max_read_write_size; +} + static inline int get_buf_page_count(void *buf, int size) { return DIV_ROUND_UP((uintptr_t)buf + size, PAGE_SIZE) - @@ -370,7 +378,7 @@ t->reassembly_queue_length = 0; init_waitqueue_head(&t->wait_reassembly_queue); init_waitqueue_head(&t->wait_send_credits); - init_waitqueue_head(&t->wait_rw_avail_ops); + init_waitqueue_head(&t->wait_rw_credits); spin_lock_init(&t->receive_credit_lock); spin_lock_init(&t->recvmsg_queue_lock); @@ -379,8 +387,6 @@ spin_lock_init(&t->empty_recvmsg_queue_lock); INIT_LIST_HEAD(&t->empty_recvmsg_queue); - init_waitqueue_head(&t->wait_send_payload_pending); - atomic_set(&t->send_payload_pending, 0); init_waitqueue_head(&t->wait_send_pending); atomic_set(&t->send_pending, 0); @@ -410,8 +416,6 @@ wake_up_interruptible(&t->wait_send_credits); ksmbd_debug(RDMA, "wait for all send posted to IB to finish\n"); - wait_event(t->wait_send_payload_pending, - atomic_read(&t->send_payload_pending) == 0); wait_event(t->wait_send_pending, atomic_read(&t->send_pending) == 0); @@ -421,6 +425,7 @@ if (t->qp) { ib_drain_qp(t->qp); + ib_mr_pool_destroy(t->qp, &t->qp->rdma_mrs); ib_destroy_qp(t->qp); } @@ -490,7 +495,7 @@ struct smb_direct_data_transfer *req = (struct smb_direct_data_transfer *)recvmsg->packet; struct smb2_hdr *hdr = (struct smb2_hdr *)(recvmsg->packet - + le32_to_cpu(req->data_offset) - 4); + + le32_to_cpu(req->data_offset)); ksmbd_debug(RDMA, "CreditGranted: %u, CreditRequested: %u, DataLength: %u, RemainingDataLength: %u, SMB: %x, Command: %u\n", le16_to_cpu(req->credits_granted), @@ -561,6 +566,8 @@ } t->negotiation_requested = true; t->full_packet_received = true; + t->status = SMB_DIRECT_CS_CONNECTED; + enqueue_reassembly(t, recvmsg, 0); wake_up_interruptible(&t->wait_status); break; case SMB_DIRECT_MSG_DATA_TRANSFER: { @@ -864,13 +871,8 @@ smb_direct_disconnect_rdma_connection(t); } - if (sendmsg->num_sge > 1) { - if (atomic_dec_and_test(&t->send_payload_pending)) - wake_up(&t->wait_send_payload_pending); - } else { - if (atomic_dec_and_test(&t->send_pending)) - wake_up(&t->wait_send_pending); - } + if (atomic_dec_and_test(&t->send_pending)) + wake_up(&t->wait_send_pending); /* iterate and free the list of messages in reverse. the list's head * is invalid. @@ -902,21 +904,12 @@ { int ret; - if (wr->num_sge > 1) - atomic_inc(&t->send_payload_pending); - else - atomic_inc(&t->send_pending); - + atomic_inc(&t->send_pending); ret = ib_post_send(t->qp, wr, NULL); if (ret) { pr_err("failed to post send: %d\n", ret); - if (wr->num_sge > 1) { - if (atomic_dec_and_test(&t->send_payload_pending)) - wake_up(&t->wait_send_payload_pending); - } else { - if (atomic_dec_and_test(&t->send_pending)) - wake_up(&t->wait_send_pending); - } + if (atomic_dec_and_test(&t->send_pending)) + wake_up(&t->wait_send_pending); smb_direct_disconnect_rdma_connection(t); } return ret; @@ -974,18 +967,19 @@ } static int wait_for_credits(struct smb_direct_transport *t, - wait_queue_head_t *waitq, atomic_t *credits) + wait_queue_head_t *waitq, atomic_t *total_credits, + int needed) { int ret; do { - if (atomic_dec_return(credits) >= 0) + if (atomic_sub_return(needed, total_credits) >= 0) return 0; - atomic_inc(credits); + atomic_add(needed, total_credits); ret = wait_event_interruptible(*waitq, - atomic_read(credits) > 0 || - t->status != SMB_DIRECT_CS_CONNECTED); + atomic_read(total_credits) >= needed || + t->status != SMB_DIRECT_CS_CONNECTED); if (t->status != SMB_DIRECT_CS_CONNECTED) return -ENOTCONN; @@ -1006,7 +1000,19 @@ return ret; } - return wait_for_credits(t, &t->wait_send_credits, &t->send_credits); + return wait_for_credits(t, &t->wait_send_credits, &t->send_credits, 1); +} + +static int wait_for_rw_credits(struct smb_direct_transport *t, int credits) +{ + return wait_for_credits(t, &t->wait_rw_credits, &t->rw_credits, credits); +} + +static int calc_rw_credits(struct smb_direct_transport *t, + char *buf, unsigned int len) +{ + return DIV_ROUND_UP(get_buf_page_count(buf, len), + t->pages_per_rw_credit); } static int smb_direct_create_header(struct smb_direct_transport *t, @@ -1077,7 +1083,7 @@ int offset, len; int i = 0; - if (nentries < get_buf_page_count(buf, size)) + if (size <= 0 || nentries < get_buf_page_count(buf, size)) return -EINVAL; offset = offset_in_page(buf); @@ -1109,7 +1115,7 @@ int npages; npages = get_sg_list(buf, size, sg_list, nentries); - if (npages <= 0) + if (npages < 0) return -EINVAL; return ib_dma_map_sg(device, sg_list, npages, dir); } @@ -1235,14 +1241,12 @@ //FIXME: skip RFC1002 header.. buflen -= 4; - iov[0].iov_base += 4; - iov[0].iov_len -= 4; remaining_data_length = buflen; ksmbd_debug(RDMA, "Sending smb (RDMA): smb_len=%u\n", buflen); smb_direct_send_ctx_init(st, &send_ctx, need_invalidate, remote_key); - start = i = 0; + start = i = 1; buflen = 0; while (true) { buflen += iov[i].iov_len; @@ -1304,11 +1308,21 @@ * that means all the I/Os have been out and we are good to return */ - wait_event(st->wait_send_payload_pending, - atomic_read(&st->send_payload_pending) == 0); + wait_event(st->wait_send_pending, + atomic_read(&st->send_pending) == 0); return ret; } +static void smb_direct_free_rdma_rw_msg(struct smb_direct_transport *t, + struct smb_direct_rdma_rw_msg *msg, + enum dma_data_direction dir) +{ + rdma_rw_ctx_destroy(&msg->rw_ctx, t->qp, t->qp->port, + msg->sgt.sgl, msg->sgt.nents, dir); + sg_free_table_chained(&msg->sgt, SG_CHUNK_SIZE); + kfree(msg); +} + static void read_write_done(struct ib_cq *cq, struct ib_wc *wc, enum dma_data_direction dir) { @@ -1317,19 +1331,14 @@ struct smb_direct_transport *t = msg->t; if (wc->status != IB_WC_SUCCESS) { + msg->status = -EIO; pr_err("read/write error. opcode = %d, status = %s(%d)\n", wc->opcode, ib_wc_status_msg(wc->status), wc->status); - smb_direct_disconnect_rdma_connection(t); + if (wc->status != IB_WC_WR_FLUSH_ERR) + smb_direct_disconnect_rdma_connection(t); } - if (atomic_inc_return(&t->rw_avail_ops) > 0) - wake_up(&t->wait_rw_avail_ops); - - rdma_rw_ctx_destroy(&msg->rw_ctx, t->qp, t->qp->port, - msg->sg_list, msg->sgt.nents, dir); - sg_free_table_chained(&msg->sgt, SG_CHUNK_SIZE); complete(msg->completion); - kfree(msg); } static void read_done(struct ib_cq *cq, struct ib_wc *wc) @@ -1342,94 +1351,152 @@ read_write_done(cq, wc, DMA_TO_DEVICE); } -static int smb_direct_rdma_xmit(struct smb_direct_transport *t, void *buf, - int buf_len, u32 remote_key, u64 remote_offset, - u32 remote_len, bool is_read) +static int smb_direct_rdma_xmit(struct smb_direct_transport *t, + void *buf, int buf_len, + struct smb2_buffer_desc_v1 *desc, + unsigned int desc_len, + bool is_read) { - struct smb_direct_rdma_rw_msg *msg; - int ret; + struct smb_direct_rdma_rw_msg *msg, *next_msg; + int i, ret; DECLARE_COMPLETION_ONSTACK(completion); - struct ib_send_wr *first_wr = NULL; + struct ib_send_wr *first_wr; + LIST_HEAD(msg_list); + char *desc_buf; + int credits_needed; + unsigned int desc_buf_len, desc_num = 0; + + if (t->status != SMB_DIRECT_CS_CONNECTED) + return -ENOTCONN; + + if (buf_len > t->max_rdma_rw_size) + return -EINVAL; - ret = wait_for_credits(t, &t->wait_rw_avail_ops, &t->rw_avail_ops); + /* calculate needed credits */ + credits_needed = 0; + desc_buf = buf; + for (i = 0; i < desc_len / sizeof(*desc); i++) { + if (!buf_len) + break; + + desc_buf_len = le32_to_cpu(desc[i].length); + if (!desc_buf_len) + return -EINVAL; + + if (desc_buf_len > buf_len) { + desc_buf_len = buf_len; + desc[i].length = cpu_to_le32(desc_buf_len); + buf_len = 0; + } + + credits_needed += calc_rw_credits(t, desc_buf, desc_buf_len); + desc_buf += desc_buf_len; + buf_len -= desc_buf_len; + desc_num++; + } + + ksmbd_debug(RDMA, "RDMA %s, len %#x, needed credits %#x\n", + is_read ? "read" : "write", buf_len, credits_needed); + + ret = wait_for_rw_credits(t, credits_needed); if (ret < 0) return ret; - /* TODO: mempool */ - msg = kmalloc(offsetof(struct smb_direct_rdma_rw_msg, sg_list) + - sizeof(struct scatterlist) * SG_CHUNK_SIZE, GFP_KERNEL); - if (!msg) { - atomic_inc(&t->rw_avail_ops); - return -ENOMEM; - } + /* build rdma_rw_ctx for each descriptor */ + desc_buf = buf; + for (i = 0; i < desc_num; i++) { + msg = kzalloc(offsetof(struct smb_direct_rdma_rw_msg, sg_list) + + sizeof(struct scatterlist) * SG_CHUNK_SIZE, GFP_KERNEL); + if (!msg) { + ret = -ENOMEM; + goto out; + } - msg->sgt.sgl = &msg->sg_list[0]; - ret = sg_alloc_table_chained(&msg->sgt, - get_buf_page_count(buf, buf_len), - msg->sg_list, SG_CHUNK_SIZE); - if (ret) { - atomic_inc(&t->rw_avail_ops); - kfree(msg); - return -ENOMEM; + desc_buf_len = le32_to_cpu(desc[i].length); + + msg->t = t; + msg->cqe.done = is_read ? read_done : write_done; + msg->completion = &completion; + + msg->sgt.sgl = &msg->sg_list[0]; + ret = sg_alloc_table_chained(&msg->sgt, + get_buf_page_count(desc_buf, desc_buf_len), + msg->sg_list, SG_CHUNK_SIZE); + if (ret) { + kfree(msg); + ret = -ENOMEM; + goto out; + } + + ret = get_sg_list(desc_buf, desc_buf_len, + msg->sgt.sgl, msg->sgt.orig_nents); + if (ret < 0) { + sg_free_table_chained(&msg->sgt, SG_CHUNK_SIZE); + kfree(msg); + goto out; + } + + ret = rdma_rw_ctx_init(&msg->rw_ctx, t->qp, t->qp->port, + msg->sgt.sgl, + get_buf_page_count(desc_buf, desc_buf_len), + 0, + le64_to_cpu(desc[i].offset), + le32_to_cpu(desc[i].token), + is_read ? DMA_FROM_DEVICE : DMA_TO_DEVICE); + if (ret < 0) { + pr_err("failed to init rdma_rw_ctx: %d\n", ret); + sg_free_table_chained(&msg->sgt, SG_CHUNK_SIZE); + kfree(msg); + goto out; + } + + list_add_tail(&msg->list, &msg_list); + desc_buf += desc_buf_len; } - ret = get_sg_list(buf, buf_len, msg->sgt.sgl, msg->sgt.orig_nents); - if (ret <= 0) { - pr_err("failed to get pages\n"); - goto err; - } - - ret = rdma_rw_ctx_init(&msg->rw_ctx, t->qp, t->qp->port, - msg->sg_list, get_buf_page_count(buf, buf_len), - 0, remote_offset, remote_key, - is_read ? DMA_FROM_DEVICE : DMA_TO_DEVICE); - if (ret < 0) { - pr_err("failed to init rdma_rw_ctx: %d\n", ret); - goto err; - } - - msg->t = t; - msg->cqe.done = is_read ? read_done : write_done; - msg->completion = &completion; - first_wr = rdma_rw_ctx_wrs(&msg->rw_ctx, t->qp, t->qp->port, - &msg->cqe, NULL); + /* concatenate work requests of rdma_rw_ctxs */ + first_wr = NULL; + list_for_each_entry_reverse(msg, &msg_list, list) { + first_wr = rdma_rw_ctx_wrs(&msg->rw_ctx, t->qp, t->qp->port, + &msg->cqe, first_wr); + } ret = ib_post_send(t->qp, first_wr, NULL); if (ret) { - pr_err("failed to post send wr: %d\n", ret); - goto err; + pr_err("failed to post send wr for RDMA R/W: %d\n", ret); + goto out; } + msg = list_last_entry(&msg_list, struct smb_direct_rdma_rw_msg, list); wait_for_completion(&completion); - return 0; - -err: - atomic_inc(&t->rw_avail_ops); - if (first_wr) - rdma_rw_ctx_destroy(&msg->rw_ctx, t->qp, t->qp->port, - msg->sg_list, msg->sgt.nents, - is_read ? DMA_FROM_DEVICE : DMA_TO_DEVICE); - sg_free_table_chained(&msg->sgt, SG_CHUNK_SIZE); - kfree(msg); + ret = msg->status; +out: + list_for_each_entry_safe(msg, next_msg, &msg_list, list) { + list_del(&msg->list); + smb_direct_free_rdma_rw_msg(t, msg, + is_read ? DMA_FROM_DEVICE : DMA_TO_DEVICE); + } + atomic_add(credits_needed, &t->rw_credits); + wake_up(&t->wait_rw_credits); return ret; } -static int smb_direct_rdma_write(struct ksmbd_transport *t, void *buf, - unsigned int buflen, u32 remote_key, - u64 remote_offset, u32 remote_len) +static int smb_direct_rdma_write(struct ksmbd_transport *t, + void *buf, unsigned int buflen, + struct smb2_buffer_desc_v1 *desc, + unsigned int desc_len) { return smb_direct_rdma_xmit(smb_trans_direct_transfort(t), buf, buflen, - remote_key, remote_offset, - remote_len, false); + desc, desc_len, false); } -static int smb_direct_rdma_read(struct ksmbd_transport *t, void *buf, - unsigned int buflen, u32 remote_key, - u64 remote_offset, u32 remote_len) +static int smb_direct_rdma_read(struct ksmbd_transport *t, + void *buf, unsigned int buflen, + struct smb2_buffer_desc_v1 *desc, + unsigned int desc_len) { return smb_direct_rdma_xmit(smb_trans_direct_transfort(t), buf, buflen, - remote_key, remote_offset, - remote_len, true); + desc, desc_len, true); } static void smb_direct_disconnect(struct ksmbd_transport *t) @@ -1469,6 +1536,8 @@ } case RDMA_CM_EVENT_DEVICE_REMOVAL: case RDMA_CM_EVENT_DISCONNECTED: { + ib_drain_qp(t->qp); + t->status = SMB_DIRECT_CS_DISCONNECTED; wake_up_interruptible(&t->wait_status); wake_up_interruptible(&t->wait_reassembly_queue); @@ -1596,19 +1665,13 @@ pr_err("error at rdma_accept: %d\n", ret); return ret; } - - wait_event_interruptible(t->wait_status, - t->status != SMB_DIRECT_CS_NEW); - if (t->status != SMB_DIRECT_CS_CONNECTED) - return -ENOTCONN; return 0; } -static int smb_direct_negotiate(struct smb_direct_transport *t) +static int smb_direct_prepare_negotiation(struct smb_direct_transport *t) { int ret; struct smb_direct_recvmsg *recvmsg; - struct smb_direct_negotiate_req *req; recvmsg = get_free_recvmsg(t); if (!recvmsg) @@ -1618,82 +1681,74 @@ ret = smb_direct_post_recv(t, recvmsg); if (ret) { pr_err("Can't post recv: %d\n", ret); - goto out; + goto out_err; } t->negotiation_requested = false; ret = smb_direct_accept_client(t); if (ret) { pr_err("Can't accept client\n"); - goto out; + goto out_err; } smb_direct_post_recv_credits(&t->post_recv_credits_work.work); - - ksmbd_debug(RDMA, "Waiting for SMB_DIRECT negotiate request\n"); - ret = wait_event_interruptible_timeout(t->wait_status, - t->negotiation_requested || - t->status == SMB_DIRECT_CS_DISCONNECTED, - SMB_DIRECT_NEGOTIATE_TIMEOUT * HZ); - if (ret <= 0 || t->status == SMB_DIRECT_CS_DISCONNECTED) { - ret = ret < 0 ? ret : -ETIMEDOUT; - goto out; - } - - ret = smb_direct_check_recvmsg(recvmsg); - if (ret == -ECONNABORTED) - goto out; - - req = (struct smb_direct_negotiate_req *)recvmsg->packet; - t->max_recv_size = min_t(int, t->max_recv_size, - le32_to_cpu(req->preferred_send_size)); - t->max_send_size = min_t(int, t->max_send_size, - le32_to_cpu(req->max_receive_size)); - t->max_fragmented_send_size = - le32_to_cpu(req->max_fragmented_size); - - ret = smb_direct_send_negotiate_response(t, ret); -out: - if (recvmsg) - put_recvmsg(t, recvmsg); + return 0; +out_err: + put_recvmsg(t, recvmsg); return ret; } +static unsigned int smb_direct_get_max_fr_pages(struct smb_direct_transport *t) +{ + return min_t(unsigned int, + t->cm_id->device->attrs.max_fast_reg_page_list_len, + 256); +} + static int smb_direct_init_params(struct smb_direct_transport *t, struct ib_qp_cap *cap) { struct ib_device *device = t->cm_id->device; - int max_send_sges, max_pages, max_rw_wrs, max_send_wrs; + int max_send_sges, max_rw_wrs, max_send_wrs; + unsigned int max_sge_per_wr, wrs_per_credit; - /* need 2 more sge. because a SMB_DIRECT header will be mapped, - * and maybe a send buffer could be not page aligned. + /* need 3 more sge. because a SMB_DIRECT header, SMB2 header, + * SMB2 response could be mapped. */ t->max_send_size = smb_direct_max_send_size; - max_send_sges = DIV_ROUND_UP(t->max_send_size, PAGE_SIZE) + 2; + max_send_sges = DIV_ROUND_UP(t->max_send_size, PAGE_SIZE) + 3; if (max_send_sges > SMB_DIRECT_MAX_SEND_SGES) { pr_err("max_send_size %d is too large\n", t->max_send_size); return -EINVAL; } - /* - * allow smb_direct_max_outstanding_rw_ops of in-flight RDMA - * read/writes. HCA guarantees at least max_send_sge of sges for - * a RDMA read/write work request, and if memory registration is used, - * we need reg_mr, local_inv wrs for each read/write. + /* Calculate the number of work requests for RDMA R/W. + * The maximum number of pages which can be registered + * with one Memory region can be transferred with one + * R/W credit. And at least 4 work requests for each credit + * are needed for MR registration, RDMA R/W, local & remote + * MR invalidation. */ t->max_rdma_rw_size = smb_direct_max_read_write_size; - max_pages = DIV_ROUND_UP(t->max_rdma_rw_size, PAGE_SIZE) + 1; - max_rw_wrs = DIV_ROUND_UP(max_pages, SMB_DIRECT_MAX_SEND_SGES); - max_rw_wrs += rdma_rw_mr_factor(device, t->cm_id->port_num, - max_pages) * 2; - max_rw_wrs *= smb_direct_max_outstanding_rw_ops; + t->pages_per_rw_credit = smb_direct_get_max_fr_pages(t); + t->max_rw_credits = DIV_ROUND_UP(t->max_rdma_rw_size, + (t->pages_per_rw_credit - 1) * + PAGE_SIZE); + + max_sge_per_wr = min_t(unsigned int, device->attrs.max_send_sge, + device->attrs.max_sge_rd); + max_sge_per_wr = max_t(unsigned int, max_sge_per_wr, + max_send_sges); + wrs_per_credit = max_t(unsigned int, 4, + DIV_ROUND_UP(t->pages_per_rw_credit, + max_sge_per_wr) + 1); + max_rw_wrs = t->max_rw_credits * wrs_per_credit; max_send_wrs = smb_direct_send_credit_target + max_rw_wrs; if (max_send_wrs > device->attrs.max_cqe || max_send_wrs > device->attrs.max_qp_wr) { - pr_err("consider lowering send_credit_target = %d, or max_outstanding_rw_ops = %d\n", - smb_direct_send_credit_target, - smb_direct_max_outstanding_rw_ops); + pr_err("consider lowering send_credit_target = %d\n", + smb_direct_send_credit_target); pr_err("Possible CQE overrun, device reporting max_cqe %d max_qp_wr %d\n", device->attrs.max_cqe, device->attrs.max_qp_wr); return -EINVAL; @@ -1708,11 +1763,6 @@ return -EINVAL; } - if (device->attrs.max_send_sge < SMB_DIRECT_MAX_SEND_SGES) { - pr_err("warning: device max_send_sge = %d too small\n", - device->attrs.max_send_sge); - return -EINVAL; - } if (device->attrs.max_recv_sge < SMB_DIRECT_MAX_RECV_SGES) { pr_err("warning: device max_recv_sge = %d too small\n", device->attrs.max_recv_sge); @@ -1728,7 +1778,7 @@ t->send_credit_target = smb_direct_send_credit_target; atomic_set(&t->send_credits, 0); - atomic_set(&t->rw_avail_ops, smb_direct_max_outstanding_rw_ops); + atomic_set(&t->rw_credits, t->max_rw_credits); t->max_send_size = smb_direct_max_send_size; t->max_recv_size = smb_direct_max_receive_size; @@ -1736,10 +1786,10 @@ cap->max_send_wr = max_send_wrs; cap->max_recv_wr = t->recv_credit_max; - cap->max_send_sge = SMB_DIRECT_MAX_SEND_SGES; + cap->max_send_sge = max_sge_per_wr; cap->max_recv_sge = SMB_DIRECT_MAX_RECV_SGES; cap->max_inline_data = 0; - cap->max_rdma_ctxs = 0; + cap->max_rdma_ctxs = t->max_rw_credits; return 0; } @@ -1821,6 +1871,7 @@ { int ret; struct ib_qp_init_attr qp_attr; + int pages_per_rw; t->pd = ib_alloc_pd(t->cm_id->device, 0); if (IS_ERR(t->pd)) { @@ -1831,7 +1882,8 @@ } t->send_cq = ib_alloc_cq(t->cm_id->device, t, - t->send_credit_target, 0, IB_POLL_WORKQUEUE); + smb_direct_send_credit_target + cap->max_rdma_ctxs, + 0, IB_POLL_WORKQUEUE); if (IS_ERR(t->send_cq)) { pr_err("Can't create RDMA send CQ\n"); ret = PTR_ERR(t->send_cq); @@ -1840,8 +1892,7 @@ } t->recv_cq = ib_alloc_cq(t->cm_id->device, t, - cap->max_send_wr + cap->max_rdma_ctxs, - 0, IB_POLL_WORKQUEUE); + t->recv_credit_max, 0, IB_POLL_WORKQUEUE); if (IS_ERR(t->recv_cq)) { pr_err("Can't create RDMA recv CQ\n"); ret = PTR_ERR(t->recv_cq); @@ -1868,6 +1919,18 @@ t->qp = t->cm_id->qp; t->cm_id->event_handler = smb_direct_cm_handler; + pages_per_rw = DIV_ROUND_UP(t->max_rdma_rw_size, PAGE_SIZE) + 1; + if (pages_per_rw > t->cm_id->device->attrs.max_sgl_rd) { + ret = ib_mr_pool_init(t->qp, &t->qp->rdma_mrs, + t->max_rw_credits, IB_MR_TYPE_MEM_REG, + t->pages_per_rw_credit, 0); + if (ret) { + pr_err("failed to init mr pool count %d pages %d\n", + t->max_rw_credits, t->pages_per_rw_credit); + goto err; + } + } + return 0; err: if (t->qp) { @@ -1892,6 +1955,49 @@ static int smb_direct_prepare(struct ksmbd_transport *t) { struct smb_direct_transport *st = smb_trans_direct_transfort(t); + struct smb_direct_recvmsg *recvmsg; + struct smb_direct_negotiate_req *req; + int ret; + + ksmbd_debug(RDMA, "Waiting for SMB_DIRECT negotiate request\n"); + ret = wait_event_interruptible_timeout(st->wait_status, + st->negotiation_requested || + st->status == SMB_DIRECT_CS_DISCONNECTED, + SMB_DIRECT_NEGOTIATE_TIMEOUT * HZ); + if (ret <= 0 || st->status == SMB_DIRECT_CS_DISCONNECTED) + return ret < 0 ? ret : -ETIMEDOUT; + + recvmsg = get_first_reassembly(st); + if (!recvmsg) + return -ECONNABORTED; + + ret = smb_direct_check_recvmsg(recvmsg); + if (ret == -ECONNABORTED) + goto out; + + req = (struct smb_direct_negotiate_req *)recvmsg->packet; + st->max_recv_size = min_t(int, st->max_recv_size, + le32_to_cpu(req->preferred_send_size)); + st->max_send_size = min_t(int, st->max_send_size, + le32_to_cpu(req->max_receive_size)); + st->max_fragmented_send_size = + le32_to_cpu(req->max_fragmented_size); + st->max_fragmented_recv_size = + (st->recv_credit_max * st->max_recv_size) / 2; + + ret = smb_direct_send_negotiate_response(st, ret); +out: + spin_lock_irq(&st->reassembly_queue_lock); + st->reassembly_queue_length--; + list_del(&recvmsg->list); + spin_unlock_irq(&st->reassembly_queue_lock); + put_recvmsg(st, recvmsg); + + return ret; +} + +static int smb_direct_connect(struct smb_direct_transport *st) +{ int ret; struct ib_qp_cap qp_cap; @@ -1913,13 +2019,11 @@ return ret; } - ret = smb_direct_negotiate(st); + ret = smb_direct_prepare_negotiation(st); if (ret) { pr_err("Can't negotiate: %d\n", ret); return ret; } - - st->status = SMB_DIRECT_CS_CONNECTED; return 0; } @@ -1935,6 +2039,8 @@ static int smb_direct_handle_connect_request(struct rdma_cm_id *new_cm_id) { struct smb_direct_transport *t; + struct task_struct *handler; + int ret; if (!rdma_frwr_is_supported(&new_cm_id->device->attrs)) { ksmbd_debug(RDMA, @@ -1947,18 +2053,23 @@ if (!t) return -ENOMEM; - KSMBD_TRANS(t)->handler = kthread_run(ksmbd_conn_handler_loop, - KSMBD_TRANS(t)->conn, "ksmbd:r%u", - SMB_DIRECT_PORT); - if (IS_ERR(KSMBD_TRANS(t)->handler)) { - int ret = PTR_ERR(KSMBD_TRANS(t)->handler); - + ret = smb_direct_connect(t); + if (ret) + goto out_err; + + handler = kthread_run(ksmbd_conn_handler_loop, + KSMBD_TRANS(t)->conn, "ksmbd:r%u", + smb_direct_port); + if (IS_ERR(handler)) { + ret = PTR_ERR(handler); pr_err("Can't start thread\n"); - free_transport(t); - return ret; + goto out_err; } return 0; +out_err: + free_transport(t); + return ret; } static int smb_direct_listen_handler(struct rdma_cm_id *cm_id, @@ -2022,12 +2133,64 @@ return ret; } +static int smb_direct_ib_client_add(struct ib_device *ib_dev) +{ + struct smb_direct_device *smb_dev; + + /* Set 5445 port if device type is iWARP(No IB) */ + if (ib_dev->node_type != RDMA_NODE_IB_CA) + smb_direct_port = SMB_DIRECT_PORT_IWARP; + + if (!rdma_frwr_is_supported(&ib_dev->attrs)) + return 0; + + smb_dev = kzalloc(sizeof(*smb_dev), GFP_KERNEL); + if (!smb_dev) + return -ENOMEM; + smb_dev->ib_dev = ib_dev; + + write_lock(&smb_direct_device_lock); + list_add(&smb_dev->list, &smb_direct_device_list); + write_unlock(&smb_direct_device_lock); + + ksmbd_debug(RDMA, "ib device added: name %s\n", ib_dev->name); + return 0; +} + +static void smb_direct_ib_client_remove(struct ib_device *ib_dev, + void *client_data) +{ + struct smb_direct_device *smb_dev, *tmp; + + write_lock(&smb_direct_device_lock); + list_for_each_entry_safe(smb_dev, tmp, &smb_direct_device_list, list) { + if (smb_dev->ib_dev == ib_dev) { + list_del(&smb_dev->list); + kfree(smb_dev); + break; + } + } + write_unlock(&smb_direct_device_lock); +} + +static struct ib_client smb_direct_ib_client = { + .name = "ksmbd_smb_direct_ib", + .add = smb_direct_ib_client_add, + .remove = smb_direct_ib_client_remove, +}; + int ksmbd_rdma_init(void) { int ret; smb_direct_listener.cm_id = NULL; + ret = ib_register_client(&smb_direct_ib_client); + if (ret) { + pr_err("failed to ib_register_client\n"); + return ret; + } + /* When a client is running out of send credits, the credits are * granted by the server's sending a packet using this queue. * This avoids the situation that a clients cannot send packets @@ -2038,7 +2201,7 @@ if (!smb_direct_wq) return -ENOMEM; - ret = smb_direct_listen(SMB_DIRECT_PORT); + ret = smb_direct_listen(smb_direct_port); if (ret) { destroy_workqueue(smb_direct_wq); smb_direct_wq = NULL; @@ -2051,31 +2214,81 @@ return 0; } -int ksmbd_rdma_destroy(void) +void ksmbd_rdma_destroy(void) { - if (smb_direct_listener.cm_id) - rdma_destroy_id(smb_direct_listener.cm_id); + if (!smb_direct_listener.cm_id) + return; + + ib_unregister_client(&smb_direct_ib_client); + rdma_destroy_id(smb_direct_listener.cm_id); + smb_direct_listener.cm_id = NULL; if (smb_direct_wq) { - flush_workqueue(smb_direct_wq); destroy_workqueue(smb_direct_wq); smb_direct_wq = NULL; } - return 0; } bool ksmbd_rdma_capable_netdev(struct net_device *netdev) { - struct ib_device *ibdev; + struct smb_direct_device *smb_dev; + int i; bool rdma_capable = false; - ibdev = ib_device_get_by_netdev(netdev, RDMA_DRIVER_UNKNOWN); - if (ibdev) { - if (rdma_frwr_is_supported(&ibdev->attrs)) - rdma_capable = true; - ib_device_put(ibdev); + read_lock(&smb_direct_device_lock); + list_for_each_entry(smb_dev, &smb_direct_device_list, list) { + for (i = 0; i < smb_dev->ib_dev->phys_port_cnt; i++) { + struct net_device *ndev; + + if (smb_dev->ib_dev->ops.get_netdev) { + ndev = smb_dev->ib_dev->ops.get_netdev( + smb_dev->ib_dev, i + 1); + if (!ndev) + continue; + + if (ndev == netdev) { + dev_put(ndev); + rdma_capable = true; + goto out; + } + dev_put(ndev); + /* if ib_dev does not implement ops.get_netdev + * check for matching infiniband GUID in hw_addr + */ + } else if (netdev->type == ARPHRD_INFINIBAND) { + struct netdev_hw_addr *ha; + union ib_gid gid; + u32 port_num; + int ret; + + netdev_hw_addr_list_for_each( + ha, &netdev->dev_addrs) { + memcpy(&gid, ha->addr + 4, sizeof(gid)); + ret = ib_find_gid(smb_dev->ib_dev, &gid, + &port_num, NULL); + if (!ret) { + rdma_capable = true; + goto out; + } + } + } + } } +out: + read_unlock(&smb_direct_device_lock); + + if (rdma_capable == false) { + struct ib_device *ibdev; + + ibdev = ib_device_get_by_netdev(netdev, RDMA_DRIVER_UNKNOWN); + if (ibdev) { + if (rdma_frwr_is_supported(&ibdev->attrs)) + rdma_capable = true; + ib_device_put(ibdev); + } + } + return rdma_capable; } diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/transport_rdma.h linux-xilinx-zynqmp-5.15.0/fs/ksmbd/transport_rdma.h --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/transport_rdma.h +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/transport_rdma.h @@ -7,8 +7,6 @@ #ifndef __KSMBD_TRANSPORT_RDMA_H__ #define __KSMBD_TRANSPORT_RDMA_H__ -#define SMB_DIRECT_PORT 5445 - #define SMBD_DEFAULT_IOSIZE (8 * 1024 * 1024) #define SMBD_MIN_IOSIZE (512 * 1024) #define SMBD_MAX_IOSIZE (16 * 1024 * 1024) @@ -56,14 +54,16 @@ #ifdef CONFIG_SMB_SERVER_SMBDIRECT int ksmbd_rdma_init(void); -int ksmbd_rdma_destroy(void); +void ksmbd_rdma_destroy(void); bool ksmbd_rdma_capable_netdev(struct net_device *netdev); void init_smbd_max_io_size(unsigned int sz); +unsigned int get_smbd_max_read_write_size(void); #else static inline int ksmbd_rdma_init(void) { return 0; } static inline int ksmbd_rdma_destroy(void) { return 0; } static inline bool ksmbd_rdma_capable_netdev(struct net_device *netdev) { return false; } static inline void init_smbd_max_io_size(unsigned int sz) { } +static inline unsigned int get_smbd_max_read_write_size(void) { return 0; } #endif #endif /* __KSMBD_TRANSPORT_RDMA_H__ */ diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/transport_tcp.c linux-xilinx-zynqmp-5.15.0/fs/ksmbd/transport_tcp.c --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/transport_tcp.c +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/transport_tcp.c @@ -185,6 +185,7 @@ struct sockaddr *csin; int rc = 0; struct tcp_transport *t; + struct task_struct *handler; t = alloc_transport(client_sk); if (!t) { @@ -199,13 +200,13 @@ goto out_error; } - KSMBD_TRANS(t)->handler = kthread_run(ksmbd_conn_handler_loop, - KSMBD_TRANS(t)->conn, - "ksmbd:%u", - ksmbd_tcp_get_port(csin)); - if (IS_ERR(KSMBD_TRANS(t)->handler)) { + handler = kthread_run(ksmbd_conn_handler_loop, + KSMBD_TRANS(t)->conn, + "ksmbd:%u", + ksmbd_tcp_get_port(csin)); + if (IS_ERR(handler)) { pr_err("cannot start conn thread\n"); - rc = PTR_ERR(KSMBD_TRANS(t)->handler); + rc = PTR_ERR(handler); free_transport(t); } return rc; @@ -428,7 +429,8 @@ ret = sock_create(PF_INET6, SOCK_STREAM, IPPROTO_TCP, &ksmbd_socket); if (ret) { - pr_err("Can't create socket for ipv6, try ipv4: %d\n", ret); + if (ret != -EAFNOSUPPORT) + pr_err("Can't create socket for ipv6, fallback to ipv4: %d\n", ret); ret = sock_create(PF_INET, SOCK_STREAM, IPPROTO_TCP, &ksmbd_socket); if (ret) { @@ -505,7 +507,7 @@ switch (event) { case NETDEV_UP: - if (netdev->priv_flags & IFF_BRIDGE_PORT) + if (netif_is_bridge_port(netdev)) return NOTIFY_OK; list_for_each_entry(iface, &iface_list, entry) { @@ -614,7 +616,7 @@ rtnl_lock(); for_each_netdev(&init_net, netdev) { - if (netdev->priv_flags & IFF_BRIDGE_PORT) + if (netif_is_bridge_port(netdev)) continue; if (!alloc_iface(kstrdup(netdev->name, GFP_KERNEL))) return -ENOMEM; diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/vfs.c linux-xilinx-zynqmp-5.15.0/fs/ksmbd/vfs.c --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/vfs.c +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/vfs.c @@ -18,6 +18,7 @@ #include #include #include +#include #include "glob.h" #include "oplock.h" @@ -35,19 +36,6 @@ #include "mgmt/user_session.h" #include "mgmt/user_config.h" -static char *extract_last_component(char *path) -{ - char *p = strrchr(path, '/'); - - if (p && p[1] != '\0') { - *p = '\0'; - p++; - } else { - p = NULL; - } - return p; -} - static void ksmbd_vfs_inherit_owner(struct ksmbd_work *work, struct inode *parent_inode, struct inode *inode) @@ -61,67 +49,96 @@ /** * ksmbd_vfs_lock_parent() - lock parent dentry if it is stable - * - * the parent dentry got by dget_parent or @parent could be - * unstable, we try to lock a parent inode and lookup the - * child dentry again. - * - * the reference count of @parent isn't incremented. */ -int ksmbd_vfs_lock_parent(struct user_namespace *user_ns, struct dentry *parent, - struct dentry *child) +int ksmbd_vfs_lock_parent(struct dentry *parent, struct dentry *child) { - struct dentry *dentry; - int ret = 0; - inode_lock_nested(d_inode(parent), I_MUTEX_PARENT); - dentry = lookup_one(user_ns, child->d_name.name, parent, - child->d_name.len); - if (IS_ERR(dentry)) { - ret = PTR_ERR(dentry); - goto out_err; - } - - if (dentry != child) { - ret = -ESTALE; - dput(dentry); - goto out_err; + if (child->d_parent != parent) { + inode_unlock(d_inode(parent)); + return -ENOENT; } - dput(dentry); return 0; -out_err: - inode_unlock(d_inode(parent)); - return ret; } -int ksmbd_vfs_may_delete(struct user_namespace *user_ns, - struct dentry *dentry) -{ - struct dentry *parent; - int ret; +static int ksmbd_vfs_path_lookup_locked(struct ksmbd_share_config *share_conf, + char *pathname, unsigned int flags, + struct path *parent_path, + struct path *path) +{ + struct qstr last; + struct filename *filename; + struct path *root_share_path = &share_conf->vfs_path; + int err, type; + struct dentry *d; + + if (pathname[0] == '\0') { + pathname = share_conf->path; + root_share_path = NULL; + } else { + flags |= LOOKUP_BENEATH; + } + + filename = getname_kernel(pathname); + if (IS_ERR(filename)) + return PTR_ERR(filename); + + err = vfs_path_parent_lookup(filename, flags, + parent_path, &last, &type, + root_share_path); + if (err) { + putname(filename); + return err; + } + + if (unlikely(type != LAST_NORM)) { + path_put(parent_path); + putname(filename); + return -ENOENT; + } + + err = mnt_want_write(parent_path->mnt); + if (err) { + path_put(parent_path); + putname(filename); + return -ENOENT; + } - parent = dget_parent(dentry); - ret = ksmbd_vfs_lock_parent(user_ns, parent, dentry); - if (ret) { - dput(parent); - return ret; + inode_lock_nested(parent_path->dentry->d_inode, I_MUTEX_PARENT); + d = lookup_one_qstr_excl(&last, parent_path->dentry, 0); + if (IS_ERR(d)) + goto err_out; + + if (d_is_negative(d)) { + dput(d); + goto err_out; } - ret = inode_permission(user_ns, d_inode(parent), - MAY_EXEC | MAY_WRITE); + path->dentry = d; + path->mnt = mntget(parent_path->mnt); - inode_unlock(d_inode(parent)); - dput(parent); - return ret; + if (test_share_config_flag(share_conf, KSMBD_SHARE_FLAG_CROSSMNT)) { + err = follow_down(path); + if (err < 0) { + path_put(path); + goto err_out; + } + } + + putname(filename); + return 0; + +err_out: + inode_unlock(d_inode(parent_path->dentry)); + mnt_drop_write(parent_path->mnt); + path_put(parent_path); + putname(filename); + return -ENOENT; } -int ksmbd_vfs_query_maximal_access(struct user_namespace *user_ns, +void ksmbd_vfs_query_maximal_access(struct user_namespace *user_ns, struct dentry *dentry, __le32 *daccess) { - struct dentry *parent; - int ret = 0; - *daccess = cpu_to_le32(FILE_READ_ATTRIBUTES | READ_CONTROL); if (!inode_permission(user_ns, d_inode(dentry), MAY_OPEN | MAY_WRITE)) @@ -136,19 +153,8 @@ if (!inode_permission(user_ns, d_inode(dentry), MAY_OPEN | MAY_EXEC)) *daccess |= FILE_EXECUTE_LE; - parent = dget_parent(dentry); - ret = ksmbd_vfs_lock_parent(user_ns, parent, dentry); - if (ret) { - dput(parent); - return ret; - } - - if (!inode_permission(user_ns, d_inode(parent), MAY_EXEC | MAY_WRITE)) + if (!inode_permission(user_ns, d_inode(dentry->d_parent), MAY_EXEC | MAY_WRITE)) *daccess |= FILE_DELETE_LE; - - inode_unlock(d_inode(parent)); - dput(parent); - return ret; } /** @@ -184,6 +190,7 @@ } else { pr_err("File(%s): creation failed (err:%d)\n", name, err); } + done_path_create(&path, dentry); return err; } @@ -217,27 +224,26 @@ user_ns = mnt_user_ns(path.mnt); mode |= S_IFDIR; err = vfs_mkdir(user_ns, d_inode(path.dentry), dentry, mode); - if (err) { - goto out; - } else if (d_unhashed(dentry)) { + if (!err && d_unhashed(dentry)) { struct dentry *d; d = lookup_one(user_ns, dentry->d_name.name, dentry->d_parent, dentry->d_name.len); if (IS_ERR(d)) { err = PTR_ERR(d); - goto out; + goto out_err; } if (unlikely(d_is_negative(d))) { dput(d); err = -ENOENT; - goto out; + goto out_err; } ksmbd_vfs_inherit_owner(work, d_inode(path.dentry), d_inode(d)); dput(d); } -out: + +out_err: done_path_create(&path, dentry); if (err) pr_err("mkdir(%s): creation failed (err:%d)\n", name, err); @@ -357,15 +363,15 @@ * @fid: file id of open file * @count: read byte count * @pos: file pos + * @rbuf: read data buffer * * Return: number of read bytes on success, otherwise error */ int ksmbd_vfs_read(struct ksmbd_work *work, struct ksmbd_file *fp, size_t count, - loff_t *pos) + loff_t *pos, char *rbuf) { struct file *filp = fp->filp; ssize_t nbytes = 0; - char *rbuf = work->aux_payload_buf; struct inode *inode = file_inode(filp); if (S_ISDIR(inode->i_mode)) @@ -376,8 +382,7 @@ if (work->conn->connection_type) { if (!(fp->daccess & (FILE_READ_DATA_LE | FILE_EXECUTE_LE))) { - pr_err("no right to read(%pd)\n", - fp->filp->f_path.dentry); + pr_err("no right to read(%pD)\n", fp->filp); return -EACCES; } } @@ -397,8 +402,7 @@ nbytes = kernel_read(filp, rbuf, count, pos); if (nbytes < 0) { - pr_err("smb read failed for (%s), err = %zd\n", - fp->filename, nbytes); + pr_err("smb read failed, err = %zd\n", nbytes); return nbytes; } @@ -411,7 +415,8 @@ { char *stream_buf = NULL, *wbuf; struct user_namespace *user_ns = file_mnt_user_ns(fp->filp); - size_t size, v_len; + size_t size; + ssize_t v_len; int err = 0; ksmbd_debug(VFS, "write stream data pos : %llu, count : %zd\n", @@ -428,14 +433,14 @@ fp->stream.name, fp->stream.size, &stream_buf); - if ((int)v_len < 0) { + if (v_len < 0) { pr_err("not found stream in xattr : %zd\n", v_len); - err = (int)v_len; + err = v_len; goto out; } if (v_len < size) { - wbuf = kvmalloc(size, GFP_KERNEL | __GFP_ZERO); + wbuf = kvzalloc(size, GFP_KERNEL); if (!wbuf) { err = -ENOMEM; goto out; @@ -450,11 +455,12 @@ memcpy(&stream_buf[*pos], buf, count); err = ksmbd_vfs_setxattr(user_ns, - fp->filp->f_path.dentry, + &fp->filp->f_path, fp->stream.name, (void *)stream_buf, size, - 0); + 0, + true); if (err < 0) goto out; @@ -487,8 +493,7 @@ if (work->conn->connection_type) { if (!(fp->daccess & FILE_WRITE_DATA_LE)) { - pr_err("no right to write(%pd)\n", - fp->filp->f_path.dentry); + pr_err("no right to write(%pD)\n", fp->filp); err = -EACCES; goto out; } @@ -512,6 +517,9 @@ } } + /* Reserve lease break for parent dir at closing time */ + fp->reserve_lease_break = true; + /* Do we need to break any of a levelII oplock? */ smb_break_all_levII_oplock(work, fp, 1); @@ -527,8 +535,8 @@ if (sync) { err = vfs_fsync_range(filp, offset, offset + *written, 0); if (err < 0) - pr_err("fsync failed for filename = %pd, err = %d\n", - fp->filp->f_path.dentry, err); + pr_err("fsync failed for filename = %pD, err = %d\n", + fp->filp, err); } out: @@ -543,7 +551,7 @@ * * Return: 0 on success, otherwise error */ -int ksmbd_vfs_getattr(struct path *path, struct kstat *stat) +int ksmbd_vfs_getattr(const struct path *path, struct kstat *stat) { int err; @@ -583,54 +591,32 @@ * * Return: 0 on success, otherwise error */ -int ksmbd_vfs_remove_file(struct ksmbd_work *work, char *name) +int ksmbd_vfs_remove_file(struct ksmbd_work *work, const struct path *path) { struct user_namespace *user_ns; - struct path path; - struct dentry *parent; + struct dentry *parent = path->dentry->d_parent; int err; if (ksmbd_override_fsids(work)) return -ENOMEM; - err = ksmbd_vfs_kern_path(work, name, LOOKUP_NO_SYMLINKS, &path, false); - if (err) { - ksmbd_debug(VFS, "can't get %s, err %d\n", name, err); - ksmbd_revert_fsids(work); - return err; - } - - user_ns = mnt_user_ns(path.mnt); - parent = dget_parent(path.dentry); - err = ksmbd_vfs_lock_parent(user_ns, parent, path.dentry); - if (err) { - dput(parent); - path_put(&path); - ksmbd_revert_fsids(work); - return err; - } - - if (!d_inode(path.dentry)->i_nlink) { + if (!d_inode(path->dentry)->i_nlink) { err = -ENOENT; goto out_err; } - if (S_ISDIR(d_inode(path.dentry)->i_mode)) { - err = vfs_rmdir(user_ns, d_inode(parent), path.dentry); + user_ns = mnt_user_ns(path->mnt); + if (S_ISDIR(d_inode(path->dentry)->i_mode)) { + err = vfs_rmdir(user_ns, d_inode(parent), path->dentry); if (err && err != -ENOTEMPTY) - ksmbd_debug(VFS, "%s: rmdir failed, err %d\n", name, - err); + ksmbd_debug(VFS, "rmdir failed, err %d\n", err); } else { - err = vfs_unlink(user_ns, d_inode(parent), path.dentry, NULL); + err = vfs_unlink(user_ns, d_inode(parent), path->dentry, NULL); if (err) - ksmbd_debug(VFS, "%s: unlink failed, err %d\n", name, - err); + ksmbd_debug(VFS, "unlink failed, err %d\n", err); } out_err: - inode_unlock(d_inode(parent)); - dput(parent); - path_put(&path); ksmbd_revert_fsids(work); return err; } @@ -689,149 +675,120 @@ return err; } -static int ksmbd_validate_entry_in_use(struct dentry *src_dent) +int ksmbd_vfs_rename(struct ksmbd_work *work, const struct path *old_path, + char *newname, int flags) { - struct dentry *dst_dent; - - spin_lock(&src_dent->d_lock); - list_for_each_entry(dst_dent, &src_dent->d_subdirs, d_child) { - struct ksmbd_file *child_fp; + struct dentry *old_parent, *new_dentry, *trap; + struct dentry *old_child = old_path->dentry; + struct path new_path; + struct qstr new_last; + struct renamedata rd; + struct filename *to; + struct ksmbd_share_config *share_conf = work->tcon->share_conf; + struct ksmbd_file *parent_fp; + int new_type; + int err, lookup_flags = LOOKUP_NO_SYMLINKS; - if (d_really_is_negative(dst_dent)) - continue; + if (ksmbd_override_fsids(work)) + return -ENOMEM; - child_fp = ksmbd_lookup_fd_inode(d_inode(dst_dent)); - if (child_fp) { - spin_unlock(&src_dent->d_lock); - ksmbd_debug(VFS, "Forbid rename, sub file/dir is in use\n"); - return -EACCES; - } + to = getname_kernel(newname); + if (IS_ERR(to)) { + err = PTR_ERR(to); + goto revert_fsids; } - spin_unlock(&src_dent->d_lock); - return 0; -} - -static int __ksmbd_vfs_rename(struct ksmbd_work *work, - struct user_namespace *src_user_ns, - struct dentry *src_dent_parent, - struct dentry *src_dent, - struct user_namespace *dst_user_ns, - struct dentry *dst_dent_parent, - struct dentry *trap_dent, - char *dst_name) -{ - struct dentry *dst_dent; - int err; +retry: + err = vfs_path_parent_lookup(to, lookup_flags | LOOKUP_BENEATH, + &new_path, &new_last, &new_type, + &share_conf->vfs_path); + if (err) + goto out1; - if (!work->tcon->posix_extensions) { - err = ksmbd_validate_entry_in_use(src_dent); - if (err) - return err; + if (old_path->mnt != new_path.mnt) { + err = -EXDEV; + goto out2; } - if (d_really_is_negative(src_dent_parent)) - return -ENOENT; - if (d_really_is_negative(dst_dent_parent)) - return -ENOENT; - if (d_really_is_negative(src_dent)) - return -ENOENT; - if (src_dent == trap_dent) - return -EINVAL; + err = mnt_want_write(old_path->mnt); + if (err) + goto out2; - if (ksmbd_override_fsids(work)) - return -ENOMEM; + trap = lock_rename_child(old_child, new_path.dentry); - dst_dent = lookup_one(dst_user_ns, dst_name, dst_dent_parent, - strlen(dst_name)); - err = PTR_ERR(dst_dent); - if (IS_ERR(dst_dent)) { - pr_err("lookup failed %s [%d]\n", dst_name, err); - goto out; + old_parent = dget(old_child->d_parent); + if (d_unhashed(old_child)) { + err = -EINVAL; + goto out3; } - err = -ENOTEMPTY; - if (dst_dent != trap_dent && !d_really_is_positive(dst_dent)) { - struct renamedata rd = { - .old_mnt_userns = src_user_ns, - .old_dir = d_inode(src_dent_parent), - .old_dentry = src_dent, - .new_mnt_userns = dst_user_ns, - .new_dir = d_inode(dst_dent_parent), - .new_dentry = dst_dent, - }; - err = vfs_rename(&rd); + parent_fp = ksmbd_lookup_fd_inode(old_child->d_parent); + if (parent_fp) { + if (parent_fp->daccess & FILE_DELETE_LE) { + pr_err("parent dir is opened with delete access\n"); + err = -ESHARE; + ksmbd_fd_put(work, parent_fp); + goto out3; + } + ksmbd_fd_put(work, parent_fp); } - if (err) - pr_err("vfs_rename failed err %d\n", err); - if (dst_dent) - dput(dst_dent); -out: - ksmbd_revert_fsids(work); - return err; -} -int ksmbd_vfs_fp_rename(struct ksmbd_work *work, struct ksmbd_file *fp, - char *newname) -{ - struct user_namespace *user_ns; - struct path dst_path; - struct dentry *src_dent_parent, *dst_dent_parent; - struct dentry *src_dent, *trap_dent, *src_child; - char *dst_name; - int err; + new_dentry = lookup_one_qstr_excl(&new_last, new_path.dentry, + lookup_flags | LOOKUP_RENAME_TARGET); + if (IS_ERR(new_dentry)) { + err = PTR_ERR(new_dentry); + goto out3; + } - dst_name = extract_last_component(newname); - if (!dst_name) { - dst_name = newname; - newname = ""; + if (d_is_symlink(new_dentry)) { + err = -EACCES; + goto out4; } - src_dent_parent = dget_parent(fp->filp->f_path.dentry); - src_dent = fp->filp->f_path.dentry; - - err = ksmbd_vfs_kern_path(work, newname, - LOOKUP_NO_SYMLINKS | LOOKUP_DIRECTORY, - &dst_path, false); - if (err) { - ksmbd_debug(VFS, "Cannot get path for %s [%d]\n", newname, err); - goto out; + if ((flags & RENAME_NOREPLACE) && d_is_positive(new_dentry)) { + err = -EEXIST; + goto out4; } - dst_dent_parent = dst_path.dentry; - trap_dent = lock_rename(src_dent_parent, dst_dent_parent); - dget(src_dent); - dget(dst_dent_parent); - user_ns = file_mnt_user_ns(fp->filp); - src_child = lookup_one(user_ns, src_dent->d_name.name, src_dent_parent, - src_dent->d_name.len); - if (IS_ERR(src_child)) { - err = PTR_ERR(src_child); - goto out_lock; - } - - if (src_child != src_dent) { - err = -ESTALE; - dput(src_child); - goto out_lock; - } - dput(src_child); - - err = __ksmbd_vfs_rename(work, - user_ns, - src_dent_parent, - src_dent, - mnt_user_ns(dst_path.mnt), - dst_dent_parent, - trap_dent, - dst_name); -out_lock: - dput(src_dent); - dput(dst_dent_parent); - unlock_rename(src_dent_parent, dst_dent_parent); - path_put(&dst_path); -out: - dput(src_dent_parent); + if (old_child == trap) { + err = -EINVAL; + goto out4; + } + + if (new_dentry == trap) { + err = -ENOTEMPTY; + goto out4; + } + + rd.old_mnt_userns = mnt_user_ns(old_path->mnt), + rd.old_dir = d_inode(old_parent), + rd.old_dentry = old_child, + rd.new_mnt_userns = mnt_user_ns(new_path.mnt), + rd.new_dir = new_path.dentry->d_inode, + rd.new_dentry = new_dentry, + rd.flags = flags, + rd.delegated_inode = NULL, + err = vfs_rename(&rd); + if (err) + ksmbd_debug(VFS, "vfs_rename failed err %d\n", err); + +out4: + dput(new_dentry); +out3: + dput(old_parent); + unlock_rename(old_parent, new_path.dentry); + mnt_drop_write(old_path->mnt); +out2: + path_put(&new_path); + + if (retry_estale(err, lookup_flags)) { + lookup_flags |= LOOKUP_REVAL; + goto retry; + } +out1: + putname(to); +revert_fsids: + ksmbd_revert_fsids(work); return err; } @@ -873,8 +830,7 @@ err = vfs_truncate(&filp->f_path, size); if (err) - pr_err("truncate failed for filename : %s err %d\n", - fp->filename, err); + pr_err("truncate failed, err %d\n", err); return err; } @@ -895,7 +851,7 @@ if (size <= 0) return size; - vlist = kvmalloc(size, GFP_KERNEL | __GFP_ZERO); + vlist = kvzalloc(size, GFP_KERNEL); if (!vlist) return -ENOMEM; @@ -953,28 +909,38 @@ /** * ksmbd_vfs_setxattr() - vfs helper for smb set extended attributes value * @user_ns: user namespace - * @dentry: dentry to set XATTR at - * @name: xattr name for setxattr - * @value: xattr value to set - * @size: size of xattr value + * @path: path of dentry to set XATTR at + * @attr_name: xattr name for setxattr + * @attr_value: xattr value to set + * @attr_size: size of xattr value * @flags: destination buffer length + * @get_write: get write access to a mount * * Return: 0 on success, otherwise error */ int ksmbd_vfs_setxattr(struct user_namespace *user_ns, - struct dentry *dentry, const char *attr_name, - const void *attr_value, size_t attr_size, int flags) + const struct path *path, const char *attr_name, + const void *attr_value, size_t attr_size, int flags, + bool get_write) { int err; + if (get_write == true) { + err = mnt_want_write(path->mnt); + if (err) + return err; + } + err = vfs_setxattr(user_ns, - dentry, + path->dentry, attr_name, attr_value, attr_size, flags); if (err) ksmbd_debug(VFS, "setxattr failed, err %d\n", err); + if (get_write == true) + mnt_drop_write(path->mnt); return err; } @@ -1078,19 +1044,34 @@ } int ksmbd_vfs_remove_xattr(struct user_namespace *user_ns, - struct dentry *dentry, char *attr_name) + const struct path *path, char *attr_name) { - return vfs_removexattr(user_ns, dentry, attr_name); + int err; + + err = mnt_want_write(path->mnt); + if (err) + return err; + + err = vfs_removexattr(user_ns, path->dentry, attr_name); + mnt_drop_write(path->mnt); + + return err; } -int ksmbd_vfs_unlink(struct user_namespace *user_ns, - struct dentry *dir, struct dentry *dentry) +int ksmbd_vfs_unlink(struct file *filp) { int err = 0; + struct dentry *dir, *dentry = filp->f_path.dentry; + struct user_namespace *user_ns = file_mnt_user_ns(filp); - err = ksmbd_vfs_lock_parent(user_ns, dir, dentry); + err = mnt_want_write(filp->f_path.mnt); if (err) return err; + + dir = dget_parent(dentry); + err = ksmbd_vfs_lock_parent(dir, dentry); + if (err) + goto out; dget(dentry); if (S_ISDIR(d_inode(dentry)->i_mode)) @@ -1102,6 +1083,9 @@ inode_unlock(d_inode(dir)); if (err) ksmbd_debug(VFS, "failed to delete, err %d\n", err); +out: + dput(dir); + mnt_drop_write(filp->f_path.mnt); return err; } @@ -1148,12 +1132,23 @@ unsigned int d_type) { struct ksmbd_readdir_data *buf; + int cmp = -EINVAL; buf = container_of(ctx, struct ksmbd_readdir_data, ctx); if (buf->used != namlen) return 0; - if (!strncasecmp((char *)buf->private, name, namlen)) { + if (IS_ENABLED(CONFIG_UNICODE) && buf->um) { + const struct qstr q_buf = {.name = buf->private, + .len = buf->used}; + const struct qstr q_name = {.name = name, + .len = namlen}; + + cmp = utf8_strncasecmp(buf->um, &q_buf, &q_name); + } + if (cmp < 0) + cmp = strncasecmp((char *)buf->private, name, namlen); + if (!cmp) { memcpy((char *)buf->private, name, namlen); buf->dirent_count = 1; return -EEXIST; @@ -1169,7 +1164,8 @@ * * Return: 0 on success, otherwise error */ -static int ksmbd_vfs_lookup_in_dir(struct path *dir, char *name, size_t namelen) +static int ksmbd_vfs_lookup_in_dir(const struct path *dir, char *name, + size_t namelen, struct unicode_map *um) { int ret; struct file *dfilp; @@ -1179,6 +1175,7 @@ .private = name, .used = namelen, .dirent_count = 0, + .um = um, }; dfilp = dentry_open(dir, flags, current_cred()); @@ -1193,32 +1190,29 @@ } /** - * ksmbd_vfs_kern_path() - lookup a file and get path info - * @name: file path that is relative to share - * @flags: lookup flags - * @path: if lookup succeed, return path info + * ksmbd_vfs_kern_path_locked() - lookup a file and get path info + * @name: file path that is relative to share + * @flags: lookup flags + * @parent_path: if lookup succeed, return parent_path info + * @path: if lookup succeed, return path info * @caseless: caseless filename lookup * * Return: 0 on success, otherwise error */ -int ksmbd_vfs_kern_path(struct ksmbd_work *work, char *name, - unsigned int flags, struct path *path, bool caseless) +int ksmbd_vfs_kern_path_locked(struct ksmbd_work *work, char *name, + unsigned int flags, struct path *parent_path, + struct path *path, bool caseless) { struct ksmbd_share_config *share_conf = work->tcon->share_conf; int err; - flags |= LOOKUP_BENEATH; - err = vfs_path_lookup(share_conf->vfs_path.dentry, - share_conf->vfs_path.mnt, - name, - flags, - path); + err = ksmbd_vfs_path_lookup_locked(share_conf, name, flags, parent_path, + path); if (!err) return 0; if (caseless) { char *filepath; - struct path parent; size_t path_len, remain_len; filepath = kstrdup(name, GFP_KERNEL); @@ -1228,10 +1222,10 @@ path_len = strlen(filepath); remain_len = path_len; - parent = share_conf->vfs_path; - path_get(&parent); + *parent_path = share_conf->vfs_path; + path_get(parent_path); - while (d_can_lookup(parent.dentry)) { + while (d_can_lookup(parent_path->dentry)) { char *filename = filepath + path_len - remain_len; char *next = strchrnul(filename, '/'); size_t filename_len = next - filename; @@ -1240,11 +1234,11 @@ if (filename_len == 0) break; - err = ksmbd_vfs_lookup_in_dir(&parent, filename, - filename_len); - path_put(&parent); + err = ksmbd_vfs_lookup_in_dir(parent_path, filename, + filename_len, + work->conn->um); if (err) - goto out; + goto out2; next[0] = '\0'; @@ -1252,26 +1246,50 @@ share_conf->vfs_path.mnt, filepath, flags, - &parent); + path); if (err) - goto out; - else if (is_last) { - *path = parent; - goto out; - } + goto out2; + else if (is_last) + goto out1; + path_put(parent_path); + *parent_path = *path; next[0] = '/'; remain_len -= filename_len + 1; } - path_put(&parent); err = -EINVAL; -out: +out2: + path_put(parent_path); +out1: kfree(filepath); } + + if (!err) { + err = mnt_want_write(parent_path->mnt); + if (err) { + path_put(path); + path_put(parent_path); + return err; + } + + err = ksmbd_vfs_lock_parent(parent_path->dentry, path->dentry); + if (err) { + path_put(path); + path_put(parent_path); + } + } return err; } +void ksmbd_vfs_kern_path_unlock(struct path *parent_path, struct path *path) +{ + inode_unlock(d_inode(parent_path->dentry)); + mnt_drop_write(parent_path->mnt); + path_put(path); + path_put(parent_path); +} + struct dentry *ksmbd_vfs_kern_path_create(struct ksmbd_work *work, const char *name, unsigned int flags, @@ -1290,13 +1308,13 @@ } int ksmbd_vfs_remove_acl_xattrs(struct user_namespace *user_ns, - struct dentry *dentry) + const struct path *path) { char *name, *xattr_list = NULL; ssize_t xattr_list_len; int err = 0; - xattr_list_len = ksmbd_vfs_listxattr(dentry, &xattr_list); + xattr_list_len = ksmbd_vfs_listxattr(path->dentry, &xattr_list); if (xattr_list_len < 0) { goto out; } else if (!xattr_list_len) { @@ -1312,25 +1330,25 @@ sizeof(XATTR_NAME_POSIX_ACL_ACCESS) - 1) || !strncmp(name, XATTR_NAME_POSIX_ACL_DEFAULT, sizeof(XATTR_NAME_POSIX_ACL_DEFAULT) - 1)) { - err = ksmbd_vfs_remove_xattr(user_ns, dentry, name); + err = ksmbd_vfs_remove_xattr(user_ns, path, name); if (err) ksmbd_debug(SMB, "remove acl xattr failed : %s\n", name); } } + out: kvfree(xattr_list); return err; } -int ksmbd_vfs_remove_sd_xattrs(struct user_namespace *user_ns, - struct dentry *dentry) +int ksmbd_vfs_remove_sd_xattrs(struct user_namespace *user_ns, const struct path *path) { char *name, *xattr_list = NULL; ssize_t xattr_list_len; int err = 0; - xattr_list_len = ksmbd_vfs_listxattr(dentry, &xattr_list); + xattr_list_len = ksmbd_vfs_listxattr(path->dentry, &xattr_list); if (xattr_list_len < 0) { goto out; } else if (!xattr_list_len) { @@ -1343,7 +1361,7 @@ ksmbd_debug(SMB, "%s, len %zd\n", name, strlen(name)); if (!strncmp(name, XATTR_NAME_SD, XATTR_NAME_SD_LEN)) { - err = ksmbd_vfs_remove_xattr(user_ns, dentry, name); + err = ksmbd_vfs_remove_xattr(user_ns, path, name); if (err) ksmbd_debug(SMB, "remove xattr failed : %s\n", name); } @@ -1367,7 +1385,7 @@ return NULL; posix_acls = get_acl(inode, acl_type); - if (!posix_acls) + if (IS_ERR_OR_NULL(posix_acls)) return NULL; smb_acl = kzalloc(sizeof(struct xattr_smb_acl) + @@ -1420,13 +1438,15 @@ int ksmbd_vfs_set_sd_xattr(struct ksmbd_conn *conn, struct user_namespace *user_ns, - struct dentry *dentry, - struct smb_ntsd *pntsd, int len) + const struct path *path, + struct smb_ntsd *pntsd, int len, + bool get_write) { int rc; struct ndr sd_ndr = {0}, acl_ndr = {0}; struct xattr_ntacl acl = {0}; struct xattr_smb_acl *smb_acl, *def_smb_acl = NULL; + struct dentry *dentry = path->dentry; struct inode *inode = d_inode(dentry); acl.version = 4; @@ -1478,9 +1498,9 @@ goto out; } - rc = ksmbd_vfs_setxattr(user_ns, dentry, + rc = ksmbd_vfs_setxattr(user_ns, path, XATTR_NAME_SD, sd_ndr.data, - sd_ndr.offset, 0); + sd_ndr.offset, 0, get_write); if (rc < 0) pr_err("Failed to store XATTR ntacl :%d\n", rc); @@ -1568,8 +1588,9 @@ } int ksmbd_vfs_set_dos_attrib_xattr(struct user_namespace *user_ns, - struct dentry *dentry, - struct xattr_dos_attrib *da) + const struct path *path, + struct xattr_dos_attrib *da, + bool get_write) { struct ndr n; int err; @@ -1578,8 +1599,8 @@ if (err) return err; - err = ksmbd_vfs_setxattr(user_ns, dentry, XATTR_NAME_DOS_ATTRIBUTE, - (void *)n.data, n.offset, 0); + err = ksmbd_vfs_setxattr(user_ns, path, XATTR_NAME_DOS_ATTRIBUTE, + (void *)n.data, n.offset, 0, get_write); if (err) ksmbd_debug(SMB, "failed to store dos attribute in xattr\n"); kfree(n.data); @@ -1744,11 +1765,11 @@ *total_size_written = 0; if (!(src_fp->daccess & (FILE_READ_DATA_LE | FILE_EXECUTE_LE))) { - pr_err("no right to read(%pd)\n", src_fp->filp->f_path.dentry); + pr_err("no right to read(%pD)\n", src_fp->filp); return -EACCES; } if (!(dst_fp->daccess & (FILE_WRITE_DATA_LE | FILE_APPEND_DATA_LE))) { - pr_err("no right to write(%pd)\n", dst_fp->filp->f_path.dentry); + pr_err("no right to write(%pD)\n", dst_fp->filp); return -EACCES; } @@ -1815,10 +1836,11 @@ } int ksmbd_vfs_set_init_posix_acl(struct user_namespace *user_ns, - struct inode *inode) + struct path *path) { struct posix_acl_state acl_state; struct posix_acl *acls; + struct inode *inode = d_inode(path->dentry); int rc; if (!IS_ENABLED(CONFIG_FS_POSIX_ACL)) @@ -1847,6 +1869,7 @@ return -ENOMEM; } posix_state_to_acl(&acl_state, acls->a_entries); + rc = set_posix_acl(user_ns, inode, ACL_TYPE_ACCESS, acls); if (rc < 0) ksmbd_debug(SMB, "Set posix acl(ACL_TYPE_ACCESS) failed, rc : %d\n", @@ -1859,23 +1882,25 @@ ksmbd_debug(SMB, "Set posix acl(ACL_TYPE_DEFAULT) failed, rc : %d\n", rc); } + free_acl_state(&acl_state); posix_acl_release(acls); return rc; } int ksmbd_vfs_inherit_posix_acl(struct user_namespace *user_ns, - struct inode *inode, struct inode *parent_inode) + struct path *path, struct inode *parent_inode) { struct posix_acl *acls; struct posix_acl_entry *pace; + struct inode *inode = d_inode(path->dentry); int rc, i; if (!IS_ENABLED(CONFIG_FS_POSIX_ACL)) return -EOPNOTSUPP; acls = get_acl(parent_inode, ACL_TYPE_DEFAULT); - if (!acls) + if (IS_ERR_OR_NULL(acls)) return -ENOENT; pace = acls->a_entries; @@ -1897,6 +1922,7 @@ ksmbd_debug(SMB, "Set posix acl(ACL_TYPE_DEFAULT) failed, rc : %d\n", rc); } + posix_acl_release(acls); return rc; } diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/vfs.h linux-xilinx-zynqmp-5.15.0/fs/ksmbd/vfs.h --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/vfs.h +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/vfs.h @@ -12,6 +12,7 @@ #include #include #include +#include #include "smbacl.h" #include "xattr.h" @@ -99,6 +100,7 @@ unsigned int used; unsigned int dirent_count; unsigned int file_attr; + struct unicode_map *um; }; /* ksmbd kstat wrapper to get valid create time when reading dir entry */ @@ -108,25 +110,23 @@ __le32 file_attributes; }; -int ksmbd_vfs_lock_parent(struct user_namespace *user_ns, struct dentry *parent, - struct dentry *child); -int ksmbd_vfs_may_delete(struct user_namespace *user_ns, struct dentry *dentry); -int ksmbd_vfs_query_maximal_access(struct user_namespace *user_ns, +int ksmbd_vfs_lock_parent(struct dentry *parent, struct dentry *child); +void ksmbd_vfs_query_maximal_access(struct user_namespace *user_ns, struct dentry *dentry, __le32 *daccess); int ksmbd_vfs_create(struct ksmbd_work *work, const char *name, umode_t mode); int ksmbd_vfs_mkdir(struct ksmbd_work *work, const char *name, umode_t mode); -int ksmbd_vfs_read(struct ksmbd_work *work, struct ksmbd_file *fp, - size_t count, loff_t *pos); +int ksmbd_vfs_read(struct ksmbd_work *work, struct ksmbd_file *fp, size_t count, + loff_t *pos, char *rbuf); int ksmbd_vfs_write(struct ksmbd_work *work, struct ksmbd_file *fp, char *buf, size_t count, loff_t *pos, bool sync, ssize_t *written); int ksmbd_vfs_fsync(struct ksmbd_work *work, u64 fid, u64 p_id); -int ksmbd_vfs_remove_file(struct ksmbd_work *work, char *name); +int ksmbd_vfs_remove_file(struct ksmbd_work *work, const struct path *path); int ksmbd_vfs_link(struct ksmbd_work *work, const char *oldname, const char *newname); -int ksmbd_vfs_getattr(struct path *path, struct kstat *stat); -int ksmbd_vfs_fp_rename(struct ksmbd_work *work, struct ksmbd_file *fp, - char *newname); +int ksmbd_vfs_getattr(const struct path *path, struct kstat *stat); +int ksmbd_vfs_rename(struct ksmbd_work *work, const struct path *old_path, + char *newname, int flags); int ksmbd_vfs_truncate(struct ksmbd_work *work, struct ksmbd_file *fp, loff_t size); struct srv_copychunk; @@ -147,15 +147,17 @@ struct dentry *dentry, char *attr_name, int attr_name_len); int ksmbd_vfs_setxattr(struct user_namespace *user_ns, - struct dentry *dentry, const char *attr_name, - const void *attr_value, size_t attr_size, int flags); + const struct path *path, const char *attr_name, + const void *attr_value, size_t attr_size, int flags, + bool get_write); int ksmbd_vfs_xattr_stream_name(char *stream_name, char **xattr_stream_name, size_t *xattr_stream_name_size, int s_type); int ksmbd_vfs_remove_xattr(struct user_namespace *user_ns, - struct dentry *dentry, char *attr_name); -int ksmbd_vfs_kern_path(struct ksmbd_work *work, - char *name, unsigned int flags, struct path *path, - bool caseless); + const struct path *path, char *attr_name); +int ksmbd_vfs_kern_path_locked(struct ksmbd_work *work, char *name, + unsigned int flags, struct path *parent_path, + struct path *path, bool caseless); +void ksmbd_vfs_kern_path_unlock(struct path *parent_path, struct path *path); struct dentry *ksmbd_vfs_kern_path_create(struct ksmbd_work *work, const char *name, unsigned int flags, @@ -168,8 +170,7 @@ int ksmbd_vfs_fqar_lseek(struct ksmbd_file *fp, loff_t start, loff_t length, struct file_allocated_range_buffer *ranges, unsigned int in_count, unsigned int *out_count); -int ksmbd_vfs_unlink(struct user_namespace *user_ns, - struct dentry *dir, struct dentry *dentry); +int ksmbd_vfs_unlink(struct file *filp); void *ksmbd_vfs_init_kstat(char **p, struct ksmbd_kstat *ksmbd_kstat); int ksmbd_vfs_fill_dentry_attrs(struct ksmbd_work *work, struct user_namespace *user_ns, @@ -180,25 +181,26 @@ void ksmbd_vfs_posix_lock_unblock(struct file_lock *flock); int ksmbd_vfs_remove_acl_xattrs(struct user_namespace *user_ns, - struct dentry *dentry); -int ksmbd_vfs_remove_sd_xattrs(struct user_namespace *user_ns, - struct dentry *dentry); + const struct path *path); +int ksmbd_vfs_remove_sd_xattrs(struct user_namespace *user_ns, const struct path *path); int ksmbd_vfs_set_sd_xattr(struct ksmbd_conn *conn, struct user_namespace *user_ns, - struct dentry *dentry, - struct smb_ntsd *pntsd, int len); + const struct path *path, + struct smb_ntsd *pntsd, int len, + bool get_write); int ksmbd_vfs_get_sd_xattr(struct ksmbd_conn *conn, struct user_namespace *user_ns, struct dentry *dentry, struct smb_ntsd **pntsd); int ksmbd_vfs_set_dos_attrib_xattr(struct user_namespace *user_ns, - struct dentry *dentry, - struct xattr_dos_attrib *da); + const struct path *path, + struct xattr_dos_attrib *da, + bool get_write); int ksmbd_vfs_get_dos_attrib_xattr(struct user_namespace *user_ns, struct dentry *dentry, struct xattr_dos_attrib *da); int ksmbd_vfs_set_init_posix_acl(struct user_namespace *user_ns, - struct inode *inode); + struct path *path); int ksmbd_vfs_inherit_posix_acl(struct user_namespace *user_ns, - struct inode *inode, + struct path *path, struct inode *parent_inode); #endif /* __KSMBD_VFS_H__ */ diff -u linux-xilinx-zynqmp-5.15.0/fs/ksmbd/vfs_cache.c linux-xilinx-zynqmp-5.15.0/fs/ksmbd/vfs_cache.c --- linux-xilinx-zynqmp-5.15.0/fs/ksmbd/vfs_cache.c +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/vfs_cache.c @@ -65,14 +65,14 @@ return tmp & inode_hash_mask; } -static struct ksmbd_inode *__ksmbd_inode_lookup(struct inode *inode) +static struct ksmbd_inode *__ksmbd_inode_lookup(struct dentry *de) { struct hlist_head *head = inode_hashtable + - inode_hash(inode->i_sb, inode->i_ino); + inode_hash(d_inode(de)->i_sb, (unsigned long)de); struct ksmbd_inode *ci = NULL, *ret_ci = NULL; hlist_for_each_entry(ci, head, m_hash) { - if (ci->m_inode == inode) { + if (ci->m_de == de) { if (atomic_inc_not_zero(&ci->m_count)) ret_ci = ci; break; @@ -83,29 +83,30 @@ static struct ksmbd_inode *ksmbd_inode_lookup(struct ksmbd_file *fp) { - return __ksmbd_inode_lookup(file_inode(fp->filp)); + return __ksmbd_inode_lookup(fp->filp->f_path.dentry); } -static struct ksmbd_inode *ksmbd_inode_lookup_by_vfsinode(struct inode *inode) +struct ksmbd_inode *ksmbd_inode_lookup_lock(struct dentry *d) { struct ksmbd_inode *ci; read_lock(&inode_hash_lock); - ci = __ksmbd_inode_lookup(inode); + ci = __ksmbd_inode_lookup(d); read_unlock(&inode_hash_lock); + return ci; } -int ksmbd_query_inode_status(struct inode *inode) +int ksmbd_query_inode_status(struct dentry *dentry) { struct ksmbd_inode *ci; int ret = KSMBD_INODE_STATUS_UNKNOWN; read_lock(&inode_hash_lock); - ci = __ksmbd_inode_lookup(inode); + ci = __ksmbd_inode_lookup(dentry); 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 +116,7 @@ bool ksmbd_inode_pending_delete(struct ksmbd_file *fp) { - return (fp->f_ci->m_flags & S_DEL_PENDING); + return (fp->f_ci->m_flags & (S_DEL_PENDING | S_DEL_ON_CLS)); } void ksmbd_set_inode_pending_delete(struct ksmbd_file *fp) @@ -142,7 +143,7 @@ static void ksmbd_inode_hash(struct ksmbd_inode *ci) { struct hlist_head *b = inode_hashtable + - inode_hash(ci->m_inode->i_sb, ci->m_inode->i_ino); + inode_hash(d_inode(ci->m_de)->i_sb, (unsigned long)ci->m_de); hlist_add_head(&ci->m_hash, b); } @@ -156,7 +157,6 @@ static int ksmbd_inode_init(struct ksmbd_inode *ci, struct ksmbd_file *fp) { - ci->m_inode = file_inode(fp->filp); atomic_set(&ci->m_count, 1); atomic_set(&ci->op_count, 0); atomic_set(&ci->sop_count, 0); @@ -165,6 +165,7 @@ INIT_LIST_HEAD(&ci->m_fp_list); INIT_LIST_HEAD(&ci->m_op_list); rwlock_init(&ci->m_lock); + ci->m_de = fp->filp->f_path.dentry; return 0; } @@ -208,7 +209,7 @@ kfree(ci); } -static void ksmbd_inode_put(struct ksmbd_inode *ci) +void ksmbd_inode_put(struct ksmbd_inode *ci) { if (atomic_dec_and_test(&ci->m_count)) ksmbd_inode_free(ci); @@ -243,7 +244,6 @@ static void __ksmbd_inode_close(struct ksmbd_file *fp) { - struct dentry *dir, *dentry; struct ksmbd_inode *ci = fp->f_ci; int err; struct file *filp; @@ -252,7 +252,7 @@ if (ksmbd_stream_fd(fp) && (ci->m_flags & S_DEL_ON_CLS_STREAM)) { ci->m_flags &= ~S_DEL_ON_CLS_STREAM; err = ksmbd_vfs_remove_xattr(file_mnt_user_ns(filp), - filp->f_path.dentry, + &filp->f_path, fp->stream.name); if (err) pr_err("remove xattr failed : %s\n", @@ -262,11 +262,9 @@ if (atomic_dec_and_test(&ci->m_count)) { write_lock(&ci->m_lock); if (ci->m_flags & (S_DEL_ON_CLS | S_DEL_PENDING)) { - dentry = filp->f_path.dentry; - dir = dentry->d_parent; ci->m_flags &= ~(S_DEL_ON_CLS | S_DEL_PENDING); write_unlock(&ci->m_lock); - ksmbd_vfs_unlink(file_mnt_user_ns(filp), dir, dentry); + ksmbd_vfs_unlink(filp); write_lock(&ci->m_lock); } write_unlock(&ci->m_lock); @@ -328,7 +326,6 @@ kfree(smb_lock); } - kfree(fp->filename); if (ksmbd_stream_fd(fp)) kfree(fp->stream.name); kmem_cache_free(filp_cache, fp); @@ -336,6 +333,9 @@ static struct ksmbd_file *ksmbd_fp_get(struct ksmbd_file *fp) { + if (fp->f_state != FP_INITED) + return NULL; + if (!atomic_inc_not_zero(&fp->refcount)) return NULL; return fp; @@ -365,12 +365,11 @@ static void set_close_state_blocked_works(struct ksmbd_file *fp) { - struct ksmbd_work *cancel_work, *ctmp; + struct ksmbd_work *cancel_work; spin_lock(&fp->f_lock); - list_for_each_entry_safe(cancel_work, ctmp, &fp->blocked_works, + list_for_each_entry(cancel_work, &fp->blocked_works, fp_entry) { - list_del(&cancel_work->fp_entry); cancel_work->state = KSMBD_WORK_CLOSED; cancel_work->cancel_fn(cancel_work->cancel_argv); } @@ -386,15 +385,20 @@ return 0; ft = &work->sess->file_table; - read_lock(&ft->lock); + write_lock(&ft->lock); fp = idr_find(ft->idr, id); if (fp) { set_close_state_blocked_works(fp); - if (!atomic_dec_and_test(&fp->refcount)) + if (fp->f_state != FP_INITED) fp = NULL; + else { + fp->f_state = FP_CLOSED; + if (!atomic_dec_and_test(&fp->refcount)) + fp = NULL; + } } - read_unlock(&ft->lock); + write_unlock(&ft->lock); if (!fp) return -EINVAL; @@ -484,12 +488,15 @@ return fp; } -struct ksmbd_file *ksmbd_lookup_fd_inode(struct inode *inode) +struct ksmbd_file *ksmbd_lookup_fd_inode(struct dentry *dentry) { struct ksmbd_file *lfp; struct ksmbd_inode *ci; + struct inode *inode = d_inode(dentry); - ci = ksmbd_inode_lookup_by_vfsinode(inode); + read_lock(&inode_hash_lock); + ci = __ksmbd_inode_lookup(dentry); + read_unlock(&inode_hash_lock); if (!ci) return NULL; @@ -574,6 +581,7 @@ fp->tcon = work->tcon; fp->volatile_id = KSMBD_NO_FID; fp->persistent_id = KSMBD_NO_FID; + fp->f_state = FP_NEW; fp->f_ci = ksmbd_inode_get(fp); if (!fp->f_ci) { @@ -595,6 +603,17 @@ return ERR_PTR(ret); } +void ksmbd_update_fstate(struct ksmbd_file_table *ft, struct ksmbd_file *fp, + unsigned int state) +{ + if (!fp) + return; + + write_lock(&ft->lock); + fp->f_state = state; + write_unlock(&ft->lock); +} + static int __close_file_table_ids(struct ksmbd_file_table *ft, struct ksmbd_tree_connect *tcon, diff -u linux-xilinx-zynqmp-5.15.0/fs/namei.c linux-xilinx-zynqmp-5.15.0/fs/namei.c --- linux-xilinx-zynqmp-5.15.0/fs/namei.c +++ linux-xilinx-zynqmp-5.15.0/fs/namei.c @@ -252,6 +252,7 @@ return result; } +EXPORT_SYMBOL(getname_kernel); void putname(struct filename *name) { @@ -269,6 +270,7 @@ } else __putname(name); } +EXPORT_SYMBOL(putname); /** * check_acl - perform ACL permission checking @@ -1539,8 +1541,9 @@ * when directory is guaranteed to have no in-lookup children * at all. */ -static struct dentry *__lookup_hash(const struct qstr *name, - struct dentry *base, unsigned int flags) +struct dentry *lookup_one_qstr_excl(const struct qstr *name, + struct dentry *base, + unsigned int flags) { struct dentry *dentry = lookup_dcache(name, base, flags); struct dentry *old; @@ -1564,6 +1567,7 @@ } return dentry; } +EXPORT_SYMBOL(lookup_one_qstr_excl); static struct dentry *lookup_fast(struct nameidata *nd, struct inode **inode, @@ -2508,16 +2512,17 @@ } /* Note: this does not consume "name" */ -static int filename_parentat(int dfd, struct filename *name, - unsigned int flags, struct path *parent, - struct qstr *last, int *type) +static int __filename_parentat(int dfd, struct filename *name, + unsigned int flags, struct path *parent, + struct qstr *last, int *type, + const struct path *root) { int retval; struct nameidata nd; if (IS_ERR(name)) return PTR_ERR(name); - set_nameidata(&nd, dfd, name, NULL); + set_nameidata(&nd, dfd, name, root); retval = path_parentat(&nd, flags | LOOKUP_RCU, parent); if (unlikely(retval == -ECHILD)) retval = path_parentat(&nd, flags, parent); @@ -2532,6 +2537,13 @@ return retval; } +static int filename_parentat(int dfd, struct filename *name, + unsigned int flags, struct path *parent, + struct qstr *last, int *type) +{ + return __filename_parentat(dfd, name, flags, parent, last, type, NULL); +} + /* does lookup, returns the object with parent locked */ static struct dentry *__kern_path_locked(struct filename *name, struct path *path) { @@ -2547,7 +2559,7 @@ return ERR_PTR(-EINVAL); } inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT); - d = __lookup_hash(&last, path->dentry, 0); + d = lookup_one_qstr_excl(&last, path->dentry, 0); if (IS_ERR(d)) { inode_unlock(path->dentry->d_inode); path_put(path); @@ -2576,6 +2588,24 @@ EXPORT_SYMBOL(kern_path); /** + * vfs_path_parent_lookup - lookup a parent path relative to a dentry-vfsmount pair + * @filename: filename structure + * @flags: lookup flags + * @parent: pointer to struct path to fill + * @last: last component + * @type: type of the last component + * @root: pointer to struct path of the base directory + */ +int vfs_path_parent_lookup(struct filename *filename, unsigned int flags, + struct path *parent, struct qstr *last, int *type, + const struct path *root) +{ + return __filename_parentat(AT_FDCWD, filename, flags, parent, last, + type, root); +} +EXPORT_SYMBOL(vfs_path_parent_lookup); + +/** * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair * @dentry: pointer to dentry of the base directory * @mnt: pointer to vfs mount of the base directory @@ -2956,39 +2986,79 @@ return inode_permission(mnt_userns, dir, MAY_WRITE | MAY_EXEC); } +static struct dentry *lock_two_directories(struct dentry *p1, struct dentry *p2) +{ + struct dentry *p; + + p = d_ancestor(p2, p1); + if (p) { + inode_lock_nested(p2->d_inode, I_MUTEX_PARENT); + inode_lock_nested(p1->d_inode, I_MUTEX_PARENT2); + return p; + } + + p = d_ancestor(p1, p2); + inode_lock_nested(p1->d_inode, I_MUTEX_PARENT); + inode_lock_nested(p2->d_inode, I_MUTEX_PARENT2); + return p; +} + /* * p1 and p2 should be directories on the same fs. */ struct dentry *lock_rename(struct dentry *p1, struct dentry *p2) { - struct dentry *p; - if (p1 == p2) { inode_lock_nested(p1->d_inode, I_MUTEX_PARENT); return NULL; } mutex_lock(&p1->d_sb->s_vfs_rename_mutex); + return lock_two_directories(p1, p2); +} +EXPORT_SYMBOL(lock_rename); - p = d_ancestor(p2, p1); - if (p) { +/* + * c1 and p2 should be on the same fs. + */ +struct dentry *lock_rename_child(struct dentry *c1, struct dentry *p2) +{ + if (READ_ONCE(c1->d_parent) == p2) { + /* + * hopefully won't need to touch ->s_vfs_rename_mutex at all. + */ inode_lock_nested(p2->d_inode, I_MUTEX_PARENT); - inode_lock_nested(p1->d_inode, I_MUTEX_CHILD); - return p; + /* + * now that p2 is locked, nobody can move in or out of it, + * so the test below is safe. + */ + if (likely(c1->d_parent == p2)) + return NULL; + + /* + * c1 got moved out of p2 while we'd been taking locks; + * unlock and fall back to slow case. + */ + inode_unlock(p2->d_inode); } - p = d_ancestor(p1, p2); - if (p) { - inode_lock_nested(p1->d_inode, I_MUTEX_PARENT); - inode_lock_nested(p2->d_inode, I_MUTEX_CHILD); - return p; - } + mutex_lock(&c1->d_sb->s_vfs_rename_mutex); + /* + * nobody can move out of any directories on this fs. + */ + if (likely(c1->d_parent != p2)) + return lock_two_directories(c1->d_parent, p2); - lock_two_inodes(p1->d_inode, p2->d_inode, - I_MUTEX_PARENT, I_MUTEX_PARENT2); + /* + * c1 got moved into p2 while we were taking locks; + * we need p2 locked and ->s_vfs_rename_mutex unlocked, + * for consistency with lock_rename(). + */ + inode_lock_nested(p2->d_inode, I_MUTEX_PARENT); + mutex_unlock(&c1->d_sb->s_vfs_rename_mutex); return NULL; } -EXPORT_SYMBOL(lock_rename); +EXPORT_SYMBOL(lock_rename_child); void unlock_rename(struct dentry *p1, struct dentry *p2) { @@ -3763,7 +3833,8 @@ if (last.name[last.len] && !want_dir) create_flags = 0; inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT); - dentry = __lookup_hash(&last, path->dentry, reval_flag | create_flags); + dentry = lookup_one_qstr_excl(&last, path->dentry, + reval_flag | create_flags); if (IS_ERR(dentry)) goto unlock; @@ -4124,7 +4195,7 @@ goto exit2; inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT); - dentry = __lookup_hash(&last, path.dentry, lookup_flags); + dentry = lookup_one_qstr_excl(&last, path.dentry, lookup_flags); error = PTR_ERR(dentry); if (IS_ERR(dentry)) goto exit3; @@ -4258,7 +4329,7 @@ goto exit2; retry_deleg: inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT); - dentry = __lookup_hash(&last, path.dentry, lookup_flags); + dentry = lookup_one_qstr_excl(&last, path.dentry, lookup_flags); error = PTR_ERR(dentry); if (!IS_ERR(dentry)) { struct user_namespace *mnt_userns; @@ -4614,11 +4685,12 @@ * * a) we can get into loop creation. * b) race potential - two innocent renames can create a loop together. - * That's where 4.4 screws up. Current fix: serialization on + * That's where 4.4BSD screws up. Current fix: serialization on * sb->s_vfs_rename_mutex. We might be more accurate, but that's another * story. - * c) we have to lock _four_ objects - parents and victim (if it exists), - * and source. + * c) we may have to lock up to _four_ objects - parents and victim (if it exists), + * and source (if it's a non-directory or a subdirectory that moves to + * different parent). * And that - after we got ->i_mutex on parents (until then we don't know * whether the target exists). Solution: try to be smart with locking * order for inodes. We rely on the fact that tree topology may change @@ -4650,6 +4722,7 @@ bool new_is_dir = false; unsigned max_links = new_dir->i_sb->s_max_links; struct name_snapshot old_name; + bool lock_old_subdir, lock_new_subdir; if (source == target) return 0; @@ -4703,15 +4776,32 @@ take_dentry_name_snapshot(&old_name, old_dentry); dget(new_dentry); /* - * Lock all moved children. Moved directories may need to change parent - * pointer so they need the lock to prevent against concurrent - * directory changes moving parent pointer. For regular files we've - * historically always done this. The lockdep locking subclasses are - * somewhat arbitrary but RENAME_EXCHANGE in particular can swap - * regular files and directories so it's difficult to tell which - * subclasses to use. + * Lock children. + * The source subdirectory needs to be locked on cross-directory + * rename or cross-directory exchange since its parent changes. + * The target subdirectory needs to be locked on cross-directory + * exchange due to parent change and on any rename due to becoming + * a victim. + * Non-directories need locking in all cases (for NFS reasons); + * they get locked after any subdirectories (in inode address order). + * + * NOTE: WE ONLY LOCK UNRELATED DIRECTORIES IN CROSS-DIRECTORY CASE. + * NEVER, EVER DO THAT WITHOUT ->s_vfs_rename_mutex. */ - lock_two_inodes(source, target, I_MUTEX_NORMAL, I_MUTEX_NONDIR2); + lock_old_subdir = new_dir != old_dir; + lock_new_subdir = new_dir != old_dir || !(flags & RENAME_EXCHANGE); + if (is_dir) { + if (lock_old_subdir) + inode_lock_nested(source, I_MUTEX_CHILD); + if (target && (!new_is_dir || lock_new_subdir)) + inode_lock(target); + } else if (new_is_dir) { + if (lock_new_subdir) + inode_lock_nested(target, I_MUTEX_CHILD); + inode_lock(source); + } else { + lock_two_nondirectories(source, target); + } error = -EPERM; if (IS_SWAPFILE(source) || (target && IS_SWAPFILE(target))) @@ -4759,8 +4849,9 @@ d_exchange(old_dentry, new_dentry); } out: - inode_unlock(source); - if (target) + if (!is_dir || lock_old_subdir) + inode_unlock(source); + if (target && (!new_is_dir || lock_new_subdir)) inode_unlock(target); dput(new_dentry); if (!error) { @@ -4832,7 +4923,8 @@ retry_deleg: trap = lock_rename(new_path.dentry, old_path.dentry); - old_dentry = __lookup_hash(&old_last, old_path.dentry, lookup_flags); + old_dentry = lookup_one_qstr_excl(&old_last, old_path.dentry, + lookup_flags); error = PTR_ERR(old_dentry); if (IS_ERR(old_dentry)) goto exit3; @@ -4840,7 +4932,8 @@ error = -ENOENT; if (d_is_negative(old_dentry)) goto exit4; - new_dentry = __lookup_hash(&new_last, new_path.dentry, lookup_flags | target_flags); + new_dentry = lookup_one_qstr_excl(&new_last, new_path.dentry, + lookup_flags | target_flags); error = PTR_ERR(new_dentry); if (IS_ERR(new_dentry)) goto exit4; diff -u linux-xilinx-zynqmp-5.15.0/fs/namespace.c linux-xilinx-zynqmp-5.15.0/fs/namespace.c --- linux-xilinx-zynqmp-5.15.0/fs/namespace.c +++ linux-xilinx-zynqmp-5.15.0/fs/namespace.c @@ -2656,7 +2656,12 @@ if (IS_ERR(fc)) return PTR_ERR(fc); + /* + * Indicate to the filesystem that the remount request is coming + * from the legacy mount system call. + */ fc->oldapi = true; + err = parse_monolithic_mount_data(fc, data); if (!err) { down_write(&sb->s_umount); @@ -2990,6 +2995,12 @@ if (IS_ERR(fc)) return PTR_ERR(fc); + /* + * Indicate to the filesystem that the mount request is coming + * from the legacy mount system call. + */ + fc->oldapi = true; + if (subtype) err = vfs_parse_fs_string(fc, "subtype", subtype, strlen(subtype)); diff -u linux-xilinx-zynqmp-5.15.0/fs/nfs/nfs4proc.c linux-xilinx-zynqmp-5.15.0/fs/nfs/nfs4proc.c --- linux-xilinx-zynqmp-5.15.0/fs/nfs/nfs4proc.c +++ linux-xilinx-zynqmp-5.15.0/fs/nfs/nfs4proc.c @@ -177,6 +177,7 @@ case -NFS4ERR_RESOURCE: case -NFS4ERR_LAYOUTTRYLATER: case -NFS4ERR_RECALLCONFLICT: + case -NFS4ERR_RETURNCONFLICT: return -EREMOTEIO; case -NFS4ERR_WRONGSEC: case -NFS4ERR_WRONG_CRED: @@ -564,6 +565,7 @@ case -NFS4ERR_GRACE: case -NFS4ERR_LAYOUTTRYLATER: case -NFS4ERR_RECALLCONFLICT: + case -NFS4ERR_RETURNCONFLICT: exception->delay = 1; return 0; @@ -5612,7 +5614,7 @@ 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 +5655,8 @@ 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, @@ -8798,8 +8801,6 @@ /* Save the EXCHANGE_ID verifier session trunk tests */ memcpy(clp->cl_confirm.data, argp->verifier.data, sizeof(clp->cl_confirm.data)); - if (resp->flags & EXCHGID4_FLAG_USE_PNFS_DS) - set_bit(NFS_CS_DS, &clp->cl_flags); out: trace_nfs4_exchange_id(clp, status); rpc_put_task(task); @@ -9593,6 +9594,7 @@ status = -EBUSY; break; case -NFS4ERR_RECALLCONFLICT: + case -NFS4ERR_RETURNCONFLICT: status = -ERECALLCONFLICT; break; case -NFS4ERR_DELEG_REVOKED: diff -u linux-xilinx-zynqmp-5.15.0/fs/nfs/pnfs.c linux-xilinx-zynqmp-5.15.0/fs/nfs/pnfs.c --- linux-xilinx-zynqmp-5.15.0/fs/nfs/pnfs.c +++ linux-xilinx-zynqmp-5.15.0/fs/nfs/pnfs.c @@ -2629,31 +2629,44 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/nfsd/nfs4state.c linux-xilinx-zynqmp-5.15.0/fs/nfsd/nfs4state.c --- linux-xilinx-zynqmp-5.15.0/fs/nfsd/nfs4state.c +++ linux-xilinx-zynqmp-5.15.0/fs/nfsd/nfs4state.c @@ -2686,7 +2686,7 @@ /* 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 -u linux-xilinx-zynqmp-5.15.0/fs/nfsd/vfs.c linux-xilinx-zynqmp-5.15.0/fs/nfsd/vfs.c --- linux-xilinx-zynqmp-5.15.0/fs/nfsd/vfs.c +++ linux-xilinx-zynqmp-5.15.0/fs/nfsd/vfs.c @@ -1762,6 +1762,12 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/nilfs2/dat.c linux-xilinx-zynqmp-5.15.0/fs/nilfs2/dat.c --- linux-xilinx-zynqmp-5.15.0/fs/nilfs2/dat.c +++ linux-xilinx-zynqmp-5.15.0/fs/nilfs2/dat.c @@ -40,8 +40,21 @@ static int nilfs_dat_prepare_entry(struct inode *dat, struct nilfs_palloc_req *req, int create) { - return nilfs_palloc_get_entry_block(dat, req->pr_entry_nr, - create, &req->pr_entry_bh); + int ret; + + ret = nilfs_palloc_get_entry_block(dat, req->pr_entry_nr, + create, &req->pr_entry_bh); + if (unlikely(ret == -ENOENT)) { + nilfs_err(dat->i_sb, + "DAT doesn't have a block to manage vblocknr = %llu", + (unsigned long long)req->pr_entry_nr); + /* + * Return internal code -EINVAL to notify bmap layer of + * metadata corruption. + */ + ret = -EINVAL; + } + return ret; } static void nilfs_dat_commit_entry(struct inode *dat, @@ -123,11 +136,7 @@ int nilfs_dat_prepare_start(struct inode *dat, struct nilfs_palloc_req *req) { - int ret; - - ret = nilfs_dat_prepare_entry(dat, req, 0); - WARN_ON(ret == -ENOENT); - return ret; + return nilfs_dat_prepare_entry(dat, req, 0); } void nilfs_dat_commit_start(struct inode *dat, struct nilfs_palloc_req *req, @@ -154,10 +163,8 @@ int ret; ret = nilfs_dat_prepare_entry(dat, req, 0); - if (ret < 0) { - WARN_ON(ret == -ENOENT); + if (ret < 0) return ret; - } kaddr = kmap_atomic(req->pr_entry_bh->b_page); entry = nilfs_palloc_block_get_entry(dat, req->pr_entry_nr, diff -u linux-xilinx-zynqmp-5.15.0/fs/nilfs2/segment.c linux-xilinx-zynqmp-5.15.0/fs/nilfs2/segment.c --- linux-xilinx-zynqmp-5.15.0/fs/nilfs2/segment.c +++ linux-xilinx-zynqmp-5.15.0/fs/nilfs2/segment.c @@ -1702,7 +1702,6 @@ list_for_each_entry(bh, &segbuf->sb_payload_buffers, b_assoc_buffers) { - set_buffer_async_write(bh); if (bh == segbuf->sb_super_root) { if (bh->b_page != bd_page) { lock_page(bd_page); @@ -1713,6 +1712,7 @@ } break; } + set_buffer_async_write(bh); if (bh->b_page != fs_page) { nilfs_begin_page_io(fs_page); fs_page = bh->b_page; @@ -1798,7 +1798,6 @@ list_for_each_entry(bh, &segbuf->sb_payload_buffers, b_assoc_buffers) { - clear_buffer_async_write(bh); if (bh == segbuf->sb_super_root) { clear_buffer_uptodate(bh); if (bh->b_page != bd_page) { @@ -1807,6 +1806,7 @@ } break; } + clear_buffer_async_write(bh); if (bh->b_page != fs_page) { nilfs_end_page_io(fs_page, err); fs_page = bh->b_page; @@ -1894,8 +1894,9 @@ BIT(BH_Delay) | BIT(BH_NILFS_Volatile) | BIT(BH_NILFS_Redirected)); - set_mask_bits(&bh->b_state, clear_bits, set_bits); if (bh == segbuf->sb_super_root) { + set_buffer_uptodate(bh); + clear_buffer_dirty(bh); if (bh->b_page != bd_page) { end_page_writeback(bd_page); bd_page = bh->b_page; @@ -1903,6 +1904,7 @@ update_sr = true; break; } + set_mask_bits(&bh->b_state, clear_bits, set_bits); if (bh->b_page != fs_page) { nilfs_end_page_io(fs_page, 0); fs_page = bh->b_page; diff -u linux-xilinx-zynqmp-5.15.0/fs/nilfs2/sufile.c linux-xilinx-zynqmp-5.15.0/fs/nilfs2/sufile.c --- linux-xilinx-zynqmp-5.15.0/fs/nilfs2/sufile.c +++ linux-xilinx-zynqmp-5.15.0/fs/nilfs2/sufile.c @@ -501,15 +501,38 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/nilfs2/the_nilfs.c linux-xilinx-zynqmp-5.15.0/fs/nilfs2/the_nilfs.c --- linux-xilinx-zynqmp-5.15.0/fs/nilfs2/the_nilfs.c +++ linux-xilinx-zynqmp-5.15.0/fs/nilfs2/the_nilfs.c @@ -717,7 +717,11 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/ntfs3/attrib.c linux-xilinx-zynqmp-5.15.0/fs/ntfs3/attrib.c --- linux-xilinx-zynqmp-5.15.0/fs/ntfs3/attrib.c +++ linux-xilinx-zynqmp-5.15.0/fs/ntfs3/attrib.c @@ -1583,10 +1583,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/ntfs3/attrlist.c linux-xilinx-zynqmp-5.15.0/fs/ntfs3/attrlist.c --- linux-xilinx-zynqmp-5.15.0/fs/ntfs3/attrlist.c +++ linux-xilinx-zynqmp-5.15.0/fs/ntfs3/attrlist.c @@ -52,7 +52,8 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/ntfs3/bitmap.c linux-xilinx-zynqmp-5.15.0/fs/ntfs3/bitmap.c --- linux-xilinx-zynqmp-5.15.0/fs/ntfs3/bitmap.c +++ linux-xilinx-zynqmp-5.15.0/fs/ntfs3/bitmap.c @@ -667,7 +667,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/ntfs3/frecord.c linux-xilinx-zynqmp-5.15.0/fs/ntfs3/frecord.c --- linux-xilinx-zynqmp-5.15.0/fs/ntfs3/frecord.c +++ linux-xilinx-zynqmp-5.15.0/fs/ntfs3/frecord.c @@ -2100,7 +2100,7 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/ntfs3/fslog.c linux-xilinx-zynqmp-5.15.0/fs/ntfs3/fslog.c --- linux-xilinx-zynqmp-5.15.0/fs/ntfs3/fslog.c +++ linux-xilinx-zynqmp-5.15.0/fs/ntfs3/fslog.c @@ -2169,8 +2169,10 @@ if (!page) { page = kmalloc(log->page_size, GFP_NOFS); - if (!page) - return -ENOMEM; + if (!page) { + err = -ENOMEM; + goto out; + } } /* diff -u linux-xilinx-zynqmp-5.15.0/fs/ntfs3/fsntfs.c linux-xilinx-zynqmp-5.15.0/fs/ntfs3/fsntfs.c --- linux-xilinx-zynqmp-5.15.0/fs/ntfs3/fsntfs.c +++ linux-xilinx-zynqmp-5.15.0/fs/ntfs3/fsntfs.c @@ -958,18 +958,11 @@ 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; } @@ -1879,10 +1872,12 @@ goto out; } - root_sdh = resident_data_ex(attr, sizeof(struct INDEX_ROOT)); - if (root_sdh->type != ATTR_ZERO || + if(!(root_sdh = resident_data_ex(attr, sizeof(struct INDEX_ROOT))) || + root_sdh->type != ATTR_ZERO || root_sdh->rule != NTFS_COLLATION_TYPE_SECURITY_HASH || - offsetof(struct INDEX_ROOT, ihdr) + root_sdh->ihdr.used > attr->res.data_size) { + offsetof(struct INDEX_ROOT, ihdr) + + le32_to_cpu(root_sdh->ihdr.used) > + le32_to_cpu(attr->res.data_size)) { err = -EINVAL; goto out; } @@ -1898,10 +1893,12 @@ goto out; } - root_sii = resident_data_ex(attr, sizeof(struct INDEX_ROOT)); - if (root_sii->type != ATTR_ZERO || + if(!(root_sii = resident_data_ex(attr, sizeof(struct INDEX_ROOT))) || + root_sii->type != ATTR_ZERO || root_sii->rule != NTFS_COLLATION_TYPE_UINT || - offsetof(struct INDEX_ROOT, ihdr) + root_sii->ihdr.used > attr->res.data_size) { + offsetof(struct INDEX_ROOT, ihdr) + + le32_to_cpu(root_sii->ihdr.used) > + le32_to_cpu(attr->res.data_size)) { err = -EINVAL; goto out; } @@ -2458,10 +2455,12 @@ { 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 +2492,8 @@ out: up_write(&wnd->rw_lock); + if (dirty) + ntfs_set_state(sbi, NTFS_DIRTY_ERROR); } /* diff -u linux-xilinx-zynqmp-5.15.0/fs/ntfs3/index.c linux-xilinx-zynqmp-5.15.0/fs/ntfs3/index.c --- linux-xilinx-zynqmp-5.15.0/fs/ntfs3/index.c +++ linux-xilinx-zynqmp-5.15.0/fs/ntfs3/index.c @@ -729,6 +729,9 @@ u32 total = le32_to_cpu(hdr->total); u16 offs[128]; + if (unlikely(!cmp)) + return NULL; + fill_table: if (end > total) return NULL; @@ -1103,7 +1106,8 @@ } /* check for index header length */ - if (offsetof(struct INDEX_BUFFER, ihdr) + ib->ihdr.used > bytes) { + if (offsetof(struct INDEX_BUFFER, ihdr) + le32_to_cpu(ib->ihdr.used) > + bytes) { err = -EINVAL; goto out; } diff -u linux-xilinx-zynqmp-5.15.0/fs/ntfs3/ntfs_fs.h linux-xilinx-zynqmp-5.15.0/fs/ntfs3/ntfs_fs.h --- linux-xilinx-zynqmp-5.15.0/fs/ntfs3/ntfs_fs.h +++ linux-xilinx-zynqmp-5.15.0/fs/ntfs3/ntfs_fs.h @@ -468,7 +468,7 @@ int al_update(struct ntfs_inode *ni, int sync); static inline size_t al_aligned(size_t size) { - return (size + 1023) & ~(size_t)1023; + return size_add(size, 1023) & ~(size_t)1023; } /* Globals from bitfunc.c */ diff -u linux-xilinx-zynqmp-5.15.0/fs/ntfs3/super.c linux-xilinx-zynqmp-5.15.0/fs/ntfs3/super.c --- linux-xilinx-zynqmp-5.15.0/fs/ntfs3/super.c +++ linux-xilinx-zynqmp-5.15.0/fs/ntfs3/super.c @@ -1136,7 +1136,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/ntfs3/xattr.c linux-xilinx-zynqmp-5.15.0/fs/ntfs3/xattr.c --- linux-xilinx-zynqmp-5.15.0/fs/ntfs3/xattr.c +++ linux-xilinx-zynqmp-5.15.0/fs/ntfs3/xattr.c @@ -209,7 +209,8 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/overlayfs/copy_up.c linux-xilinx-zynqmp-5.15.0/fs/overlayfs/copy_up.c --- linux-xilinx-zynqmp-5.15.0/fs/overlayfs/copy_up.c +++ linux-xilinx-zynqmp-5.15.0/fs/overlayfs/copy_up.c @@ -306,7 +306,7 @@ { 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, }; diff -u linux-xilinx-zynqmp-5.15.0/fs/overlayfs/super.c linux-xilinx-zynqmp-5.15.0/fs/overlayfs/super.c --- linux-xilinx-zynqmp-5.15.0/fs/overlayfs/super.c +++ linux-xilinx-zynqmp-5.15.0/fs/overlayfs/super.c @@ -2141,7 +2141,7 @@ ovl_trusted_xattr_handlers; sb->s_fs_info = ofs; sb->s_flags |= SB_POSIXACL; - sb->s_iflags |= SB_I_SKIP_SYNC | SB_I_IMA_UNVERIFIABLE_SIGNATURE; + sb->s_iflags |= SB_I_SKIP_SYNC; err = -ENOMEM; root_dentry = ovl_get_root(sb, upperpath.dentry, oe); diff -u linux-xilinx-zynqmp-5.15.0/fs/pipe.c linux-xilinx-zynqmp-5.15.0/fs/pipe.c --- linux-xilinx-zynqmp-5.15.0/fs/pipe.c +++ linux-xilinx-zynqmp-5.15.0/fs/pipe.c @@ -435,12 +435,10 @@ goto out; } -#ifdef CONFIG_WATCH_QUEUE - if (pipe->watch_queue) { + if (pipe_has_watch_queue(pipe)) { ret = -EXDEV; goto out; } -#endif /* * If it wasn't empty we try to merge new data into @@ -1302,6 +1300,11 @@ pipe->tail = tail; pipe->head = head; + if (!pipe_has_watch_queue(pipe)) { + pipe->max_usage = nr_slots; + pipe->nr_accounted = nr_slots; + } + spin_unlock_irq(&pipe->rd_wait.lock); /* This might have made more room for writers */ @@ -1319,10 +1322,8 @@ unsigned int nr_slots, size; long ret = 0; -#ifdef CONFIG_WATCH_QUEUE - if (pipe->watch_queue) + if (pipe_has_watch_queue(pipe)) return -EBUSY; -#endif size = round_pipe_size(arg); nr_slots = size >> PAGE_SHIFT; @@ -1355,8 +1356,6 @@ if (ret < 0) goto out_revert_acct; - pipe->max_usage = nr_slots; - pipe->nr_accounted = nr_slots; return pipe->max_usage * PAGE_SIZE; out_revert_acct: @@ -1374,10 +1373,8 @@ if (file->f_op != &pipefifo_fops || !pipe) return NULL; -#ifdef CONFIG_WATCH_QUEUE - if (for_splice && pipe->watch_queue) + if (for_splice && pipe_has_watch_queue(pipe)) return NULL; -#endif return pipe; } diff -u linux-xilinx-zynqmp-5.15.0/fs/proc/proc_sysctl.c linux-xilinx-zynqmp-5.15.0/fs/proc/proc_sysctl.c --- linux-xilinx-zynqmp-5.15.0/fs/proc/proc_sysctl.c +++ linux-xilinx-zynqmp-5.15.0/fs/proc/proc_sysctl.c @@ -1765,7 +1765,6 @@ {"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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/pstore/platform.c linux-xilinx-zynqmp-5.15.0/fs/pstore/platform.c --- linux-xilinx-zynqmp-5.15.0/fs/pstore/platform.c +++ linux-xilinx-zynqmp-5.15.0/fs/pstore/platform.c @@ -561,6 +561,8 @@ */ 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 @@ 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 @@ * 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 -u linux-xilinx-zynqmp-5.15.0/fs/pstore/ram.c linux-xilinx-zynqmp-5.15.0/fs/pstore/ram.c --- linux-xilinx-zynqmp-5.15.0/fs/pstore/ram.c +++ linux-xilinx-zynqmp-5.15.0/fs/pstore/ram.c @@ -519,6 +519,7 @@ } zone_sz = mem_sz / *cnt; + zone_sz = ALIGN_DOWN(zone_sz, 2); if (!zone_sz) { dev_err(dev, "%s zone size == 0\n", name); goto fail; diff -u linux-xilinx-zynqmp-5.15.0/fs/pstore/ram_core.c linux-xilinx-zynqmp-5.15.0/fs/pstore/ram_core.c --- linux-xilinx-zynqmp-5.15.0/fs/pstore/ram_core.c +++ linux-xilinx-zynqmp-5.15.0/fs/pstore/ram_core.c @@ -190,7 +190,7 @@ { int numerr; struct persistent_ram_buffer *buffer = prz->buffer; - int ecc_blocks; + size_t ecc_blocks; size_t ecc_total; if (!ecc_info || !ecc_info->ecc_size) diff -u linux-xilinx-zynqmp-5.15.0/fs/quota/dquot.c linux-xilinx-zynqmp-5.15.0/fs/quota/dquot.c --- linux-xilinx-zynqmp-5.15.0/fs/quota/dquot.c +++ linux-xilinx-zynqmp-5.15.0/fs/quota/dquot.c @@ -2396,6 +2396,20 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/ubifs/dir.c linux-xilinx-zynqmp-5.15.0/fs/ubifs/dir.c --- linux-xilinx-zynqmp-5.15.0/fs/ubifs/dir.c +++ linux-xilinx-zynqmp-5.15.0/fs/ubifs/dir.c @@ -1225,6 +1225,8 @@ dir_ui->ui_size = dir->i_size; mutex_unlock(&dir_ui->ui_mutex); out_inode: + /* Free inode->i_link before inode is marked as bad. */ + fscrypt_free_inode(inode); make_bad_inode(inode); iput(inode); out_fname: diff -u linux-xilinx-zynqmp-5.15.0/fs/xfs/libxfs/xfs_inode_fork.c linux-xilinx-zynqmp-5.15.0/fs/xfs/libxfs/xfs_inode_fork.c --- linux-xilinx-zynqmp-5.15.0/fs/xfs/libxfs/xfs_inode_fork.c +++ linux-xilinx-zynqmp-5.15.0/fs/xfs/libxfs/xfs_inode_fork.c @@ -330,6 +330,7 @@ } if (error) { + xfs_idestroy_fork(ip->i_afp); kmem_cache_free(xfs_ifork_zone, ip->i_afp); ip->i_afp = NULL; } diff -u linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_buf_item_recover.c linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_buf_item_recover.c --- linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_buf_item_recover.c +++ linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_buf_item_recover.c @@ -24,6 +24,15 @@ #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. */ @@ -1005,0 +1015,57 @@ + +#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 -u linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_inode.c linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_inode.c --- linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_inode.c +++ linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_inode.c @@ -378,8 +378,8 @@ } 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 -u linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_iops.c linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_iops.c --- linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_iops.c +++ linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_iops.c @@ -511,27 +511,6 @@ 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 @@ .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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_log.c linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_log.c --- linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_log.c +++ linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_log.c @@ -2061,8 +2061,6 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_log_priv.h linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_log_priv.h --- linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_log_priv.h +++ linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_log_priv.h @@ -454,9 +454,6 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_log_recover.c linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_log_recover.c --- linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_log_recover.c +++ linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_log_recover.c @@ -2560,6 +2560,7 @@ 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 @@ * 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 @@ * 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 @@ xfs_daddr_t head_blk, xfs_daddr_t tail_blk) { - int error, i; + int error; ASSERT(head_blk != tail_blk); @@ -3256,37 +3262,25 @@ * 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 -u linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_qm.c linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_qm.c --- linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_qm.c +++ linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_qm.c @@ -1244,6 +1244,13 @@ 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 -u linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_reflink.c linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_reflink.c --- linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_reflink.c +++ linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_reflink.c @@ -340,9 +340,41 @@ 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 @@ 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 @@ *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 @@ */ 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 -u linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_super.c linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_super.c --- linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_super.c +++ linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_super.c @@ -1436,6 +1436,18 @@ mp->m_super = sb; + /* + * Copy VFS mount flags from the context now that all parameter parsing + * is guaranteed to have been completed by either the old mount API or + * the newer fsopen/fsconfig API. + */ + if (fc->sb_flags & SB_RDONLY) + set_bit(XFS_OPSTATE_READONLY, &mp->m_opstate); + if (fc->sb_flags & SB_DIRSYNC) + mp->m_features |= XFS_FEAT_DIRSYNC; + if (fc->sb_flags & SB_SYNCHRONOUS) + mp->m_features |= XFS_FEAT_WSYNC; + error = xfs_fs_validate_params(mp); if (error) goto out_free_names; @@ -1910,6 +1922,11 @@ .free = xfs_fs_free, }; +/* + * WARNING: do not initialise any parameters in this function that depend on + * mount option parsing having already been performed as this can be called from + * fsopen() before any parameters have been set. + */ static int xfs_init_fs_context( struct fs_context *fc) { @@ -1942,16 +1959,6 @@ mp->m_logbsize = -1; mp->m_allocsize_log = 16; /* 64k */ - /* - * Copy binary VFS mount flags we are interested in. - */ - if (fc->sb_flags & SB_RDONLY) - set_bit(XFS_OPSTATE_READONLY, &mp->m_opstate); - if (fc->sb_flags & SB_DIRSYNC) - mp->m_features |= XFS_FEAT_DIRSYNC; - if (fc->sb_flags & SB_SYNCHRONOUS) - mp->m_features |= XFS_FEAT_WSYNC; - fc->s_fs_info = mp; fc->ops = &xfs_context_ops; diff -u linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_symlink.c linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_symlink.c --- linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_symlink.c +++ linux-xilinx-zynqmp-5.15.0/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 @@ 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 @@ __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 -u linux-xilinx-zynqmp-5.15.0/include/drm/drm_bridge.h linux-xilinx-zynqmp-5.15.0/include/drm/drm_bridge.h --- linux-xilinx-zynqmp-5.15.0/include/drm/drm_bridge.h +++ linux-xilinx-zynqmp-5.15.0/include/drm/drm_bridge.h @@ -191,7 +191,7 @@ * or &drm_encoder_helper_funcs.dpms hook. * * The bridge must assume that the display pipe (i.e. clocks and timing - * singals) feeding it is no longer running when this callback is + * signals) feeding it is no longer running when this callback is * called. * * The @post_disable callback is optional. diff -u linux-xilinx-zynqmp-5.15.0/include/drm/drm_mipi_dsi.h linux-xilinx-zynqmp-5.15.0/include/drm/drm_mipi_dsi.h --- linux-xilinx-zynqmp-5.15.0/include/drm/drm_mipi_dsi.h +++ linux-xilinx-zynqmp-5.15.0/include/drm/drm_mipi_dsi.h @@ -166,6 +166,7 @@ * struct mipi_dsi_device - DSI peripheral device * @host: DSI host for this peripheral * @dev: driver model device node for this peripheral + * @attached: the DSI device has been successfully attached * @name: DSI peripheral chip type * @channel: virtual channel assigned to the peripheral * @format: pixel format for video mode @@ -181,6 +182,7 @@ struct mipi_dsi_device { struct mipi_dsi_host *host; struct device dev; + bool attached; char name[DSI_DEV_NAME_SIZE]; unsigned int channel; @@ -227,9 +229,13 @@ 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 -u linux-xilinx-zynqmp-5.15.0/include/linux/blkdev.h linux-xilinx-zynqmp-5.15.0/include/linux/blkdev.h --- linux-xilinx-zynqmp-5.15.0/include/linux/blkdev.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/blkdev.h @@ -1334,11 +1334,12 @@ enum blk_default_limits { BLK_MAX_SEGMENTS = 128, BLK_SAFE_MAX_SECTORS = 255, - BLK_DEF_MAX_SECTORS = 2560, BLK_MAX_SEGMENT_SIZE = 65536, BLK_SEG_BOUNDARY_MASK = 0xFFFFFFFFUL, }; +#define BLK_DEF_MAX_SECTORS 2560u + static inline unsigned long queue_segment_boundary(const struct request_queue *q) { return q->limits.seg_boundary_mask; diff -u linux-xilinx-zynqmp-5.15.0/include/linux/bpf.h linux-xilinx-zynqmp-5.15.0/include/linux/bpf.h --- linux-xilinx-zynqmp-5.15.0/include/linux/bpf.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/bpf.h @@ -91,7 +91,11 @@ /* funcs called by prog_array and perf_event_array map */ void *(*map_fd_get_ptr)(struct bpf_map *map, struct file *map_file, int fd); - void (*map_fd_put_ptr)(void *ptr); + /* If need_defer is true, the implementation should guarantee that + * the to-be-put element is still alive before the bpf program, which + * may manipulate it, exists. + */ + void (*map_fd_put_ptr)(struct bpf_map *map, void *ptr, bool need_defer); int (*map_gen_lookup)(struct bpf_map *map, struct bpf_insn *insn_buf); u32 (*map_fd_sys_lookup_elem)(void *ptr); void (*map_seq_show_elem)(struct bpf_map *map, void *key, @@ -2280,6 +2284,9 @@ int bpf_arch_text_poke(void *ip, enum bpf_text_poke_type t, void *addr1, void *addr2); +void bpf_arch_poke_desc_update(struct bpf_jit_poke_descriptor *poke, + struct bpf_prog *new, struct bpf_prog *old); + struct btf_id_set; bool btf_id_set_contains(const struct btf_id_set *set, u32 id); diff -u linux-xilinx-zynqmp-5.15.0/include/linux/cpuhotplug.h linux-xilinx-zynqmp-5.15.0/include/linux/cpuhotplug.h --- linux-xilinx-zynqmp-5.15.0/include/linux/cpuhotplug.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/cpuhotplug.h @@ -190,10 +190,12 @@ /* 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 -u linux-xilinx-zynqmp-5.15.0/include/linux/cred.h linux-xilinx-zynqmp-5.15.0/include/linux/cred.h --- linux-xilinx-zynqmp-5.15.0/include/linux/cred.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/cred.h @@ -109,7 +109,7 @@ * same context as task->real_cred. */ struct cred { - atomic_t usage; + atomic_long_t usage; #ifdef CONFIG_DEBUG_CREDENTIALS atomic_t subscribers; /* number of processes subscribed */ void *put_addr; @@ -229,7 +229,7 @@ */ static inline struct cred *get_new_cred(struct cred *cred) { - atomic_inc(&cred->usage); + atomic_long_inc(&cred->usage); return cred; } @@ -261,7 +261,7 @@ struct cred *nonconst_cred = (struct cred *) cred; if (!cred) return NULL; - if (!atomic_inc_not_zero(&nonconst_cred->usage)) + if (!atomic_long_inc_not_zero(&nonconst_cred->usage)) return NULL; validate_creds(cred); nonconst_cred->non_rcu = 0; @@ -285,7 +285,7 @@ if (cred) { validate_creds(cred); - if (atomic_dec_and_test(&(cred)->usage)) + if (atomic_long_dec_and_test(&(cred)->usage)) __put_cred(cred); } } diff -u linux-xilinx-zynqmp-5.15.0/include/linux/dmaengine.h linux-xilinx-zynqmp-5.15.0/include/linux/dmaengine.h --- linux-xilinx-zynqmp-5.15.0/include/linux/dmaengine.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/dmaengine.h @@ -959,7 +959,8 @@ static inline bool is_slave_direction(enum dma_transfer_direction direction) { - return (direction == DMA_MEM_TO_DEV) || (direction == DMA_DEV_TO_MEM); + return (direction == DMA_MEM_TO_DEV) || (direction == DMA_DEV_TO_MEM) || + (direction == DMA_DEV_TO_DEV); } static inline struct dma_async_tx_descriptor *dmaengine_prep_slave_single( diff -u linux-xilinx-zynqmp-5.15.0/include/linux/ethtool.h linux-xilinx-zynqmp-5.15.0/include/linux/ethtool.h --- linux-xilinx-zynqmp-5.15.0/include/linux/ethtool.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/ethtool.h @@ -940,10 +940,10 @@ /** * 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 -u linux-xilinx-zynqmp-5.15.0/include/linux/fb.h linux-xilinx-zynqmp-5.15.0/include/linux/fb.h --- linux-xilinx-zynqmp-5.15.0/include/linux/fb.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/fb.h @@ -201,11 +201,20 @@ }; #ifdef CONFIG_FB_DEFERRED_IO +struct fb_deferred_io_pageref { + struct page *page; + unsigned long offset; + /* private */ + struct list_head list; +}; + struct fb_deferred_io { /* delay between mkwrite and deferred handler */ unsigned long delay; - struct mutex lock; /* mutex that protects the page list */ - struct list_head pagelist; /* list of touched pages */ + bool sort_pagereflist; /* sort pagelist by offset */ + int open_count; /* number of opened files; protected by fb_info lock */ + struct mutex lock; /* mutex that protects the pageref list */ + struct list_head pagereflist; /* list of pagerefs for touched pages */ /* callback */ void (*first_io)(struct fb_info *info); void (*deferred_io)(struct fb_info *info, struct list_head *pagelist); @@ -468,6 +477,8 @@ #endif #ifdef CONFIG_FB_DEFERRED_IO struct delayed_work deferred_work; + unsigned long npagerefs; + struct fb_deferred_io_pageref *pagerefs; struct fb_deferred_io *fbdefio; #endif @@ -661,10 +672,11 @@ /* drivers/video/fb_defio.c */ int fb_deferred_io_mmap(struct fb_info *info, struct vm_area_struct *vma); -extern void fb_deferred_io_init(struct fb_info *info); +extern int fb_deferred_io_init(struct fb_info *info); extern void fb_deferred_io_open(struct fb_info *info, struct inode *inode, struct file *file); +extern void fb_deferred_io_release(struct fb_info *info); extern void fb_deferred_io_cleanup(struct fb_info *info); extern int fb_deferred_io_fsync(struct file *file, loff_t start, loff_t end, int datasync); diff -u linux-xilinx-zynqmp-5.15.0/include/linux/fs.h linux-xilinx-zynqmp-5.15.0/include/linux/fs.h --- linux-xilinx-zynqmp-5.15.0/include/linux/fs.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/fs.h @@ -468,11 +468,11 @@ atomic_t nr_thps; #endif struct rb_root_cached i_mmap; - struct rw_semaphore i_mmap_rwsem; unsigned long nrpages; pgoff_t writeback_index; const struct address_space_operations *a_ops; unsigned long flags; + struct rw_semaphore i_mmap_rwsem; errseq_t wb_err; spinlock_t private_lock; struct list_head private_list; @@ -1723,7 +1723,50 @@ 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 -u linux-xilinx-zynqmp-5.15.0/include/linux/genhd.h linux-xilinx-zynqmp-5.15.0/include/linux/genhd.h --- linux-xilinx-zynqmp-5.15.0/include/linux/genhd.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/genhd.h @@ -132,6 +132,7 @@ #define GD_READ_ONLY 1 #define GD_DEAD 2 #define GD_NATIVE_CAPACITY 3 +#define GD_SUPPRESS_PART_SCAN 5 struct mutex open_mutex; /* open/close mutex */ unsigned open_partitions; /* number of open partitions */ @@ -185,6 +186,8 @@ static inline bool disk_part_scan_enabled(struct gendisk *disk) { + if (test_bit(GD_SUPPRESS_PART_SCAN, &disk->state)) + return 0; return disk_max_parts(disk) > 1 && !(disk->flags & GENHD_FL_NO_PART); } diff -u linux-xilinx-zynqmp-5.15.0/include/linux/hid.h linux-xilinx-zynqmp-5.15.0/include/linux/hid.h --- linux-xilinx-zynqmp-5.15.0/include/linux/hid.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/hid.h @@ -630,8 +630,13 @@ 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 -u linux-xilinx-zynqmp-5.15.0/include/linux/idr.h linux-xilinx-zynqmp-5.15.0/include/linux/idr.h --- linux-xilinx-zynqmp-5.15.0/include/linux/idr.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/idr.h @@ -200,7 +200,7 @@ */ #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 @@ * @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 -u linux-xilinx-zynqmp-5.15.0/include/linux/if_vlan.h linux-xilinx-zynqmp-5.15.0/include/linux/if_vlan.h --- linux-xilinx-zynqmp-5.15.0/include/linux/if_vlan.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/if_vlan.h @@ -60,6 +60,14 @@ return (struct vlan_ethhdr *)skb_mac_header(skb); } +/* Prefer this version in TX path, instead of + * skb_reset_mac_header() + vlan_eth_hdr() + */ +static inline struct vlan_ethhdr *skb_vlan_eth_hdr(const struct sk_buff *skb) +{ + return (struct vlan_ethhdr *)skb->data; +} + #define VLAN_PRIO_MASK 0xe000 /* Priority Code Point */ #define VLAN_PRIO_SHIFT 13 #define VLAN_CFI_MASK 0x1000 /* Canonical Format Indicator / Drop Eligible Indicator */ @@ -526,7 +534,7 @@ */ static inline int __vlan_get_tag(const struct sk_buff *skb, u16 *vlan_tci) { - struct vlan_ethhdr *veth = (struct vlan_ethhdr *)skb->data; + struct vlan_ethhdr *veth = skb_vlan_eth_hdr(skb); if (!eth_type_vlan(veth->h_vlan_proto)) return -EINVAL; @@ -727,7 +735,7 @@ if (unlikely(!pskb_may_pull(skb, VLAN_ETH_HLEN))) return false; - veh = (struct vlan_ethhdr *)skb->data; + veh = skb_vlan_eth_hdr(skb); protocol = veh->h_vlan_encapsulated_proto; } diff -u linux-xilinx-zynqmp-5.15.0/include/linux/ipc_namespace.h linux-xilinx-zynqmp-5.15.0/include/linux/ipc_namespace.h --- linux-xilinx-zynqmp-5.15.0/include/linux/ipc_namespace.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/ipc_namespace.h @@ -10,6 +10,8 @@ #include #include #include +#include +#include struct user_namespace; @@ -35,8 +37,8 @@ unsigned int msg_ctlmax; unsigned int msg_ctlmnb; unsigned int msg_ctlmni; - atomic_t msg_bytes; - atomic_t msg_hdrs; + struct percpu_counter percpu_msg_bytes; + struct percpu_counter percpu_msg_hdrs; size_t shm_ctlmax; size_t shm_ctlall; @@ -63,6 +65,12 @@ unsigned int mq_msg_default; unsigned int mq_msgsize_default; + struct ctl_table_set mq_set; + struct ctl_table_header *mq_sysctls; + + struct ctl_table_set ipc_set; + struct ctl_table_header *ipc_sysctls; + /* user_ns which owns the ipc ns */ struct user_namespace *user_ns; struct ucounts *ucounts; @@ -174,13 +182,35 @@ -struct ctl_table_header; -extern struct ctl_table_header *mq_register_sysctl_table(void); +void retire_mq_sysctls(struct ipc_namespace *ns); +bool setup_mq_sysctls(struct ipc_namespace *ns); #else /* CONFIG_POSIX_MQUEUE_SYSCTL */ -static inline struct ctl_table_header *mq_register_sysctl_table(void) +static inline void retire_mq_sysctls(struct ipc_namespace *ns) { - return NULL; +} + +static inline bool setup_mq_sysctls(struct ipc_namespace *ns) +{ + return true; } #endif /* CONFIG_POSIX_MQUEUE_SYSCTL */ + +#ifdef CONFIG_SYSVIPC_SYSCTL + +bool setup_ipc_sysctls(struct ipc_namespace *ns); +void retire_ipc_sysctls(struct ipc_namespace *ns); + +#else /* CONFIG_SYSVIPC_SYSCTL */ + +static inline void retire_ipc_sysctls(struct ipc_namespace *ns) +{ +} + +static inline bool setup_ipc_sysctls(struct ipc_namespace *ns) +{ + return true; +} + +#endif /* CONFIG_SYSVIPC_SYSCTL */ #endif diff -u linux-xilinx-zynqmp-5.15.0/include/linux/kasan.h linux-xilinx-zynqmp-5.15.0/include/linux/kasan.h --- linux-xilinx-zynqmp-5.15.0/include/linux/kasan.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/kasan.h @@ -472,9 +472,9 @@ #endif /* (CONFIG_KASAN_GENERIC || CONFIG_KASAN_SW_TAGS) && !CONFIG_KASAN_VMALLOC */ -#ifdef CONFIG_KASAN_INLINE +#if defined(CONFIG_KASAN_GENERIC) || defined(CONFIG_KASAN_SW_TAGS) void kasan_non_canonical_hook(unsigned long addr); -#else /* CONFIG_KASAN_INLINE */ +#else /* CONFIG_KASAN_GENERIC || CONFIG_KASAN_SW_TAGS */ static inline void kasan_non_canonical_hook(unsigned long addr) { } -#endif /* CONFIG_KASAN_INLINE */ +#endif /* CONFIG_KASAN_GENERIC || CONFIG_KASAN_SW_TAGS */ #endif /* LINUX_KASAN_H */ diff -u linux-xilinx-zynqmp-5.15.0/include/linux/kprobes.h linux-xilinx-zynqmp-5.15.0/include/linux/kprobes.h --- linux-xilinx-zynqmp-5.15.0/include/linux/kprobes.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/kprobes.h @@ -139,7 +139,7 @@ * */ struct kretprobe_holder { - struct kretprobe *rp; + struct kretprobe __rcu *rp; refcount_t ref; }; @@ -232,10 +232,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/include/linux/lsm_hook_defs.h linux-xilinx-zynqmp-5.15.0/include/linux/lsm_hook_defs.h --- linux-xilinx-zynqmp-5.15.0/include/linux/lsm_hook_defs.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/lsm_hook_defs.h @@ -48,7 +48,7 @@ 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) @@ -165,6 +165,8 @@ LSM_HOOK(void, LSM_RET_VOID, file_free_security, struct file *file) LSM_HOOK(int, 0, file_ioctl, struct file *file, unsigned int cmd, unsigned long arg) +LSM_HOOK(int, 0, file_ioctl_compat, struct file *file, unsigned int cmd, + unsigned long arg) LSM_HOOK(int, 0, mmap_addr, unsigned long addr) LSM_HOOK(int, 0, mmap_file, struct file *file, unsigned long reqprot, unsigned long prot, unsigned long flags) @@ -265,7 +267,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/include/linux/memblock.h linux-xilinx-zynqmp-5.15.0/include/linux/memblock.h --- linux-xilinx-zynqmp-5.15.0/include/linux/memblock.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/memblock.h @@ -100,7 +100,8 @@ #endif void memblock_allow_resize(void); -int memblock_add_node(phys_addr_t base, phys_addr_t size, int nid); +int memblock_add_node(phys_addr_t base, phys_addr_t size, int nid, + enum memblock_flags flags); int memblock_add(phys_addr_t base, phys_addr_t size); int memblock_remove(phys_addr_t base, phys_addr_t size); int memblock_free(phys_addr_t base, phys_addr_t size); diff -u linux-xilinx-zynqmp-5.15.0/include/linux/mm.h linux-xilinx-zynqmp-5.15.0/include/linux/mm.h --- linux-xilinx-zynqmp-5.15.0/include/linux/mm.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/mm.h @@ -2476,7 +2476,7 @@ * unsigned long max_zone_pfns[MAX_NR_ZONES] = {max_dma, max_normal_pfn, * max_highmem_pfn}; * for_each_valid_physical_page_range() - * memblock_add_node(base, size, nid) + * memblock_add_node(base, size, nid, MEMBLOCK_NONE) * free_area_init(max_zone_pfns); */ void free_area_init(unsigned long *max_zone_pfn); diff -u linux-xilinx-zynqmp-5.15.0/include/linux/mmzone.h linux-xilinx-zynqmp-5.15.0/include/linux/mmzone.h --- linux-xilinx-zynqmp-5.15.0/include/linux/mmzone.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/mmzone.h @@ -1287,6 +1287,7 @@ #define SUBSECTION_ALIGN_DOWN(pfn) ((pfn) & PAGE_SUBSECTION_MASK) struct mem_section_usage { + struct rcu_head rcu; #ifdef CONFIG_SPARSEMEM_VMEMMAP DECLARE_BITMAP(subsection_map, SUBSECTIONS_PER_SECTION); #endif @@ -1457,7 +1458,7 @@ { int idx = subsection_map_index(pfn); - return test_bit(idx, ms->usage->subsection_map); + return test_bit(idx, READ_ONCE(ms->usage)->subsection_map); } #else static inline int pfn_section_valid(struct mem_section *ms, unsigned long pfn) @@ -1481,6 +1482,7 @@ static inline int pfn_valid(unsigned long pfn) { struct mem_section *ms; + int ret; /* * Ensure the upper PAGE_SHIFT bits are clear in the @@ -1493,14 +1495,20 @@ if (pfn_to_section_nr(pfn) >= NR_MEM_SECTIONS) return 0; - ms = __nr_to_section(pfn_to_section_nr(pfn)); - if (!valid_section(ms)) + ms = __pfn_to_section(pfn); + rcu_read_lock(); + if (!valid_section(ms)) { + rcu_read_unlock(); return 0; + } /* * Traditionally early sections always returned pfn_valid() for * the entire section-sized span. */ - return early_section(ms) || pfn_section_valid(ms, pfn); + ret = early_section(ms) || pfn_section_valid(ms, pfn); + rcu_read_unlock(); + + return ret; } #endif @@ -1508,7 +1516,7 @@ { if (pfn_to_section_nr(pfn) >= NR_MEM_SECTIONS) return 0; - return present_section(__nr_to_section(pfn_to_section_nr(pfn))); + return present_section(__pfn_to_section(pfn)); } static inline unsigned long next_present_section_nr(unsigned long section_nr) diff -u linux-xilinx-zynqmp-5.15.0/include/linux/namei.h linux-xilinx-zynqmp-5.15.0/include/linux/namei.h --- linux-xilinx-zynqmp-5.15.0/include/linux/namei.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/namei.h @@ -57,12 +57,18 @@ return user_path_at_empty(dfd, name, flags, path, NULL); } +struct dentry *lookup_one_qstr_excl(const struct qstr *name, + struct dentry *base, + unsigned int flags); extern int kern_path(const char *, unsigned, struct path *); extern struct dentry *kern_path_create(int, const char *, struct path *, unsigned int); extern struct dentry *user_path_create(int, const char __user *, struct path *, unsigned int); extern void done_path_create(struct path *, struct dentry *); extern struct dentry *kern_path_locked(const char *, struct path *); +int vfs_path_parent_lookup(struct filename *filename, unsigned int flags, + struct path *parent, struct qstr *last, int *type, + const struct path *root); int vfs_path_lookup(struct dentry *, struct vfsmount *, const char *, unsigned int, struct path *); @@ -83,6 +89,7 @@ extern int follow_up(struct path *); extern struct dentry *lock_rename(struct dentry *, struct dentry *); +extern struct dentry *lock_rename_child(struct dentry *, struct dentry *); extern void unlock_rename(struct dentry *, struct dentry *); extern int __must_check nd_jump_link(struct path *path); diff -u linux-xilinx-zynqmp-5.15.0/include/linux/netdevice.h linux-xilinx-zynqmp-5.15.0/include/linux/netdevice.h --- linux-xilinx-zynqmp-5.15.0/include/linux/netdevice.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/netdevice.h @@ -2987,6 +2987,7 @@ 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); @@ -5544,4 +5545,5 @@ #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 -u linux-xilinx-zynqmp-5.15.0/include/linux/netfilter/ipset/ip_set.h linux-xilinx-zynqmp-5.15.0/include/linux/netfilter/ipset/ip_set.h --- linux-xilinx-zynqmp-5.15.0/include/linux/netfilter/ipset/ip_set.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/netfilter/ipset/ip_set.h @@ -186,6 +186,8 @@ /* Return true if "b" set is the same as "a" * according to the create set parameters */ bool (*same_set)(const struct ip_set *a, const struct ip_set *b); + /* Cancel ongoing garbage collectors before destroying the set*/ + void (*cancel_gc)(struct ip_set *set); /* Region-locking is used */ bool region_lock; }; @@ -242,6 +244,8 @@ /* A generic IP set */ struct ip_set { + /* For call_cru in destroy */ + struct rcu_head rcu; /* The name of the set */ char name[IPSET_MAXNAMELEN]; /* Lock protecting the set data */ diff -u linux-xilinx-zynqmp-5.15.0/include/linux/of.h linux-xilinx-zynqmp-5.15.0/include/linux/of.h --- linux-xilinx-zynqmp-5.15.0/include/linux/of.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/of.h @@ -415,130 +415,6 @@ #define of_match_ptr(_ptr) (_ptr) -/** - * of_property_read_u8_array - Find and read an array of u8 from a property. - * - * @np: device node from which the property value is to be read. - * @propname: name of the property to be searched. - * @out_values: pointer to return value, modified only if return value is 0. - * @sz: number of array elements to read - * - * Search for a property in a device node and read 8-bit value(s) from - * it. - * - * dts entry of array should be like: - * ``property = /bits/ 8 <0x50 0x60 0x70>;`` - * - * Return: 0 on success, -EINVAL if the property does not exist, - * -ENODATA if property does not have a value, and -EOVERFLOW if the - * property data isn't large enough. - * - * The out_values is modified only if a valid u8 value can be decoded. - */ -static inline int of_property_read_u8_array(const struct device_node *np, - const char *propname, - u8 *out_values, size_t sz) -{ - int ret = of_property_read_variable_u8_array(np, propname, out_values, - sz, 0); - if (ret >= 0) - return 0; - else - return ret; -} - -/** - * of_property_read_u16_array - Find and read an array of u16 from a property. - * - * @np: device node from which the property value is to be read. - * @propname: name of the property to be searched. - * @out_values: pointer to return value, modified only if return value is 0. - * @sz: number of array elements to read - * - * Search for a property in a device node and read 16-bit value(s) from - * it. - * - * dts entry of array should be like: - * ``property = /bits/ 16 <0x5000 0x6000 0x7000>;`` - * - * Return: 0 on success, -EINVAL if the property does not exist, - * -ENODATA if property does not have a value, and -EOVERFLOW if the - * property data isn't large enough. - * - * The out_values is modified only if a valid u16 value can be decoded. - */ -static inline int of_property_read_u16_array(const struct device_node *np, - const char *propname, - u16 *out_values, size_t sz) -{ - int ret = of_property_read_variable_u16_array(np, propname, out_values, - sz, 0); - if (ret >= 0) - return 0; - else - return ret; -} - -/** - * of_property_read_u32_array - Find and read an array of 32 bit integers - * from a property. - * - * @np: device node from which the property value is to be read. - * @propname: name of the property to be searched. - * @out_values: pointer to return value, modified only if return value is 0. - * @sz: number of array elements to read - * - * Search for a property in a device node and read 32-bit value(s) from - * it. - * - * Return: 0 on success, -EINVAL if the property does not exist, - * -ENODATA if property does not have a value, and -EOVERFLOW if the - * property data isn't large enough. - * - * The out_values is modified only if a valid u32 value can be decoded. - */ -static inline int of_property_read_u32_array(const struct device_node *np, - const char *propname, - u32 *out_values, size_t sz) -{ - int ret = of_property_read_variable_u32_array(np, propname, out_values, - sz, 0); - if (ret >= 0) - return 0; - else - return ret; -} - -/** - * of_property_read_u64_array - Find and read an array of 64 bit integers - * from a property. - * - * @np: device node from which the property value is to be read. - * @propname: name of the property to be searched. - * @out_values: pointer to return value, modified only if return value is 0. - * @sz: number of array elements to read - * - * Search for a property in a device node and read 64-bit value(s) from - * it. - * - * Return: 0 on success, -EINVAL if the property does not exist, - * -ENODATA if property does not have a value, and -EOVERFLOW if the - * property data isn't large enough. - * - * The out_values is modified only if a valid u64 value can be decoded. - */ -static inline int of_property_read_u64_array(const struct device_node *np, - const char *propname, - u64 *out_values, size_t sz) -{ - int ret = of_property_read_variable_u64_array(np, propname, out_values, - sz, 0); - if (ret >= 0) - return 0; - else - return ret; -} - /* * struct property *prop; * const __be32 *p; @@ -733,32 +609,6 @@ return -ENOSYS; } -static inline int of_property_read_u8_array(const struct device_node *np, - const char *propname, u8 *out_values, size_t sz) -{ - return -ENOSYS; -} - -static inline int of_property_read_u16_array(const struct device_node *np, - const char *propname, u16 *out_values, size_t sz) -{ - return -ENOSYS; -} - -static inline int of_property_read_u32_array(const struct device_node *np, - const char *propname, - u32 *out_values, size_t sz) -{ - return -ENOSYS; -} - -static inline int of_property_read_u64_array(const struct device_node *np, - const char *propname, - u64 *out_values, size_t sz) -{ - return -ENOSYS; -} - static inline int of_property_read_u32_index(const struct device_node *np, const char *propname, u32 index, u32 *out_value) { @@ -1223,7 +1073,8 @@ * @np: device node from which the property value is to be read. * @propname: name of the property to be searched. * - * Search for a property in a device node. + * Search for a boolean property in a device node. Usage on non-boolean + * property types is deprecated. * * Return: true if the property exists false otherwise. */ @@ -1235,6 +1086,144 @@ return prop ? true : false; } +/** + * of_property_present - Test if a property is present in a node + * @np: device node to search for the property. + * @propname: name of the property to be searched. + * + * Test for a property present in a device node. + * + * Return: true if the property exists false otherwise. + */ +static inline bool of_property_present(const struct device_node *np, const char *propname) +{ + return of_property_read_bool(np, propname); +} + +/** + * of_property_read_u8_array - Find and read an array of u8 from a property. + * + * @np: device node from which the property value is to be read. + * @propname: name of the property to be searched. + * @out_values: pointer to return value, modified only if return value is 0. + * @sz: number of array elements to read + * + * Search for a property in a device node and read 8-bit value(s) from + * it. + * + * dts entry of array should be like: + * ``property = /bits/ 8 <0x50 0x60 0x70>;`` + * + * Return: 0 on success, -EINVAL if the property does not exist, + * -ENODATA if property does not have a value, and -EOVERFLOW if the + * property data isn't large enough. + * + * The out_values is modified only if a valid u8 value can be decoded. + */ +static inline int of_property_read_u8_array(const struct device_node *np, + const char *propname, + u8 *out_values, size_t sz) +{ + int ret = of_property_read_variable_u8_array(np, propname, out_values, + sz, 0); + if (ret >= 0) + return 0; + else + return ret; +} + +/** + * of_property_read_u16_array - Find and read an array of u16 from a property. + * + * @np: device node from which the property value is to be read. + * @propname: name of the property to be searched. + * @out_values: pointer to return value, modified only if return value is 0. + * @sz: number of array elements to read + * + * Search for a property in a device node and read 16-bit value(s) from + * it. + * + * dts entry of array should be like: + * ``property = /bits/ 16 <0x5000 0x6000 0x7000>;`` + * + * Return: 0 on success, -EINVAL if the property does not exist, + * -ENODATA if property does not have a value, and -EOVERFLOW if the + * property data isn't large enough. + * + * The out_values is modified only if a valid u16 value can be decoded. + */ +static inline int of_property_read_u16_array(const struct device_node *np, + const char *propname, + u16 *out_values, size_t sz) +{ + int ret = of_property_read_variable_u16_array(np, propname, out_values, + sz, 0); + if (ret >= 0) + return 0; + else + return ret; +} + +/** + * of_property_read_u32_array - Find and read an array of 32 bit integers + * from a property. + * + * @np: device node from which the property value is to be read. + * @propname: name of the property to be searched. + * @out_values: pointer to return value, modified only if return value is 0. + * @sz: number of array elements to read + * + * Search for a property in a device node and read 32-bit value(s) from + * it. + * + * Return: 0 on success, -EINVAL if the property does not exist, + * -ENODATA if property does not have a value, and -EOVERFLOW if the + * property data isn't large enough. + * + * The out_values is modified only if a valid u32 value can be decoded. + */ +static inline int of_property_read_u32_array(const struct device_node *np, + const char *propname, + u32 *out_values, size_t sz) +{ + int ret = of_property_read_variable_u32_array(np, propname, out_values, + sz, 0); + if (ret >= 0) + return 0; + else + return ret; +} + +/** + * of_property_read_u64_array - Find and read an array of 64 bit integers + * from a property. + * + * @np: device node from which the property value is to be read. + * @propname: name of the property to be searched. + * @out_values: pointer to return value, modified only if return value is 0. + * @sz: number of array elements to read + * + * Search for a property in a device node and read 64-bit value(s) from + * it. + * + * Return: 0 on success, -EINVAL if the property does not exist, + * -ENODATA if property does not have a value, and -EOVERFLOW if the + * property data isn't large enough. + * + * The out_values is modified only if a valid u64 value can be decoded. + */ +static inline int of_property_read_u64_array(const struct device_node *np, + const char *propname, + u64 *out_values, size_t sz) +{ + int ret = of_property_read_variable_u64_array(np, propname, out_values, + sz, 0); + if (ret >= 0) + return 0; + else + return ret; +} + static inline int of_property_read_u8(const struct device_node *np, const char *propname, u8 *out_value) diff -u linux-xilinx-zynqmp-5.15.0/include/linux/overflow.h linux-xilinx-zynqmp-5.15.0/include/linux/overflow.h --- linux-xilinx-zynqmp-5.15.0/include/linux/overflow.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/overflow.h @@ -51,40 +51,50 @@ return unlikely(overflow); } -/* - * For simplicity and code hygiene, the fallback code below insists on - * a, b and *d having the same type (similar to the min() and max() - * macros), whereas gcc's type-generic overflow checkers accept - * different types. Hence we don't just make check_add_overflow an - * alias for __builtin_add_overflow, but add type checks similar to - * below. +/** check_add_overflow() - Calculate addition with overflow checking + * + * @a: first addend + * @b: second addend + * @d: pointer to store sum + * + * Returns 0 on success. + * + * *@d holds the results of the attempted addition, but is not considered + * "safe for use" on a non-zero return value, which indicates that the + * sum has overflowed or been truncated. */ -#define check_add_overflow(a, b, d) __must_check_overflow(({ \ - typeof(a) __a = (a); \ - typeof(b) __b = (b); \ - typeof(d) __d = (d); \ - (void) (&__a == &__b); \ - (void) (&__a == __d); \ - __builtin_add_overflow(__a, __b, __d); \ -})) +#define check_add_overflow(a, b, d) \ + __must_check_overflow(__builtin_add_overflow(a, b, d)) -#define check_sub_overflow(a, b, d) __must_check_overflow(({ \ - typeof(a) __a = (a); \ - typeof(b) __b = (b); \ - typeof(d) __d = (d); \ - (void) (&__a == &__b); \ - (void) (&__a == __d); \ - __builtin_sub_overflow(__a, __b, __d); \ -})) +/** check_sub_overflow() - Calculate subtraction with overflow checking + * + * @a: minuend; value to subtract from + * @b: subtrahend; value to subtract from @a + * @d: pointer to store difference + * + * Returns 0 on success. + * + * *@d holds the results of the attempted subtraction, but is not considered + * "safe for use" on a non-zero return value, which indicates that the + * difference has underflowed or been truncated. + */ +#define check_sub_overflow(a, b, d) \ + __must_check_overflow(__builtin_sub_overflow(a, b, d)) -#define check_mul_overflow(a, b, d) __must_check_overflow(({ \ - typeof(a) __a = (a); \ - typeof(b) __b = (b); \ - typeof(d) __d = (d); \ - (void) (&__a == &__b); \ - (void) (&__a == __d); \ - __builtin_mul_overflow(__a, __b, __d); \ -})) +/** check_mul_overflow() - Calculate multiplication with overflow checking + * + * @a: first factor + * @b: second factor + * @d: pointer to store product + * + * Returns 0 on success. + * + * *@d holds the results of the attempted multiplication, but is not + * considered "safe for use" on a non-zero return value, which indicates + * that the product has overflowed or been truncated. + */ +#define check_mul_overflow(a, b, d) \ + __must_check_overflow(__builtin_mul_overflow(a, b, d)) /** check_shl_overflow() - Calculate a left-shifted value and check overflow * diff -u linux-xilinx-zynqmp-5.15.0/include/linux/pci_ids.h linux-xilinx-zynqmp-5.15.0/include/linux/pci_ids.h --- linux-xilinx-zynqmp-5.15.0/include/linux/pci_ids.h +++ linux-xilinx-zynqmp-5.15.0/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 @@ -2999,6 +3000,7 @@ #define PCI_DEVICE_ID_INTEL_82443GX_0 0x71a0 #define PCI_DEVICE_ID_INTEL_82443GX_2 0x71a2 #define PCI_DEVICE_ID_INTEL_82372FB_1 0x7601 +#define PCI_DEVICE_ID_INTEL_HDA_ARL 0x7728 #define PCI_DEVICE_ID_INTEL_SCH_LPC 0x8119 #define PCI_DEVICE_ID_INTEL_SCH_IDE 0x811a #define PCI_DEVICE_ID_INTEL_E6XX_CU 0x8183 diff -u linux-xilinx-zynqmp-5.15.0/include/linux/pipe_fs_i.h linux-xilinx-zynqmp-5.15.0/include/linux/pipe_fs_i.h --- linux-xilinx-zynqmp-5.15.0/include/linux/pipe_fs_i.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/pipe_fs_i.h @@ -125,6 +125,22 @@ }; /** + * pipe_has_watch_queue - Check whether the pipe is a watch_queue, + * i.e. it was created with O_NOTIFICATION_PIPE + * @pipe: The pipe to check + * + * Return: true if pipe is a watch queue, false otherwise. + */ +static inline bool pipe_has_watch_queue(const struct pipe_inode_info *pipe) +{ +#ifdef CONFIG_WATCH_QUEUE + return pipe->watch_queue != NULL; +#else + return false; +#endif +} + +/** * pipe_empty - Return true if the pipe is empty * @head: The pipe ring head pointer * @tail: The pipe ring tail pointer diff -u linux-xilinx-zynqmp-5.15.0/include/linux/platform_device.h linux-xilinx-zynqmp-5.15.0/include/linux/platform_device.h --- linux-xilinx-zynqmp-5.15.0/include/linux/platform_device.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/platform_device.h @@ -31,7 +31,11 @@ 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 -u linux-xilinx-zynqmp-5.15.0/include/linux/pm_runtime.h linux-xilinx-zynqmp-5.15.0/include/linux/pm_runtime.h --- linux-xilinx-zynqmp-5.15.0/include/linux/pm_runtime.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/pm_runtime.h @@ -542,6 +542,10 @@ * Allow the runtime PM autosuspend mechanism to be used for @dev whenever * requested (or "autosuspend" will be handled as direct runtime-suspend for * it). + * + * NOTE: It's important to undo this with pm_runtime_dont_use_autosuspend() + * at driver exit time unless your driver initially enabled pm_runtime + * with devm_pm_runtime_enable() (which handles it for you). */ static inline void pm_runtime_use_autosuspend(struct device *dev) { diff -u linux-xilinx-zynqmp-5.15.0/include/linux/pwm.h linux-xilinx-zynqmp-5.15.0/include/linux/pwm.h --- linux-xilinx-zynqmp-5.15.0/include/linux/pwm.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/pwm.h @@ -44,8 +44,8 @@ }; enum { - PWMF_REQUESTED = 1 << 0, - PWMF_EXPORTED = 1 << 1, + PWMF_REQUESTED = 0, + PWMF_EXPORTED = 1, }; /* diff -u linux-xilinx-zynqmp-5.15.0/include/linux/qed/qed_eth_if.h linux-xilinx-zynqmp-5.15.0/include/linux/qed/qed_eth_if.h --- linux-xilinx-zynqmp-5.15.0/include/linux/qed/qed_eth_if.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/qed/qed_eth_if.h @@ -331,7 +331,7 @@ int (*configure_arfs_searcher)(struct qed_dev *cdev, enum qed_filter_config_mode mode); int (*get_coalesce)(struct qed_dev *cdev, u16 *coal, void *handle); - int (*req_bulletin_update_mac)(struct qed_dev *cdev, u8 *mac); + int (*req_bulletin_update_mac)(struct qed_dev *cdev, const u8 *mac); }; const struct qed_eth_ops *qed_get_eth_ops(void); diff -u linux-xilinx-zynqmp-5.15.0/include/linux/qed/qed_if.h linux-xilinx-zynqmp-5.15.0/include/linux/qed/qed_if.h --- linux-xilinx-zynqmp-5.15.0/include/linux/qed/qed_if.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/qed/qed_if.h @@ -1111,7 +1111,7 @@ * * Return: Int. */ - int (*update_mac)(struct qed_dev *cdev, u8 *mac); + int (*update_mac)(struct qed_dev *cdev, const u8 *mac); /** * update_mtu(): API to inform the change in the mtu. diff -u linux-xilinx-zynqmp-5.15.0/include/linux/rpmsg.h linux-xilinx-zynqmp-5.15.0/include/linux/rpmsg.h --- linux-xilinx-zynqmp-5.15.0/include/linux/rpmsg.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/rpmsg.h @@ -41,7 +41,9 @@ * 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_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 @@ #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 @@ #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 -u linux-xilinx-zynqmp-5.15.0/include/linux/security.h linux-xilinx-zynqmp-5.15.0/include/linux/security.h --- linux-xilinx-zynqmp-5.15.0/include/linux/security.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/security.h @@ -505,6 +505,8 @@ int security_file_alloc(struct file *file); void security_file_free(struct file *file); int security_file_ioctl(struct file *file, unsigned int cmd, unsigned long arg); +int security_file_ioctl_compat(struct file *file, unsigned int cmd, + unsigned long arg); int security_mmap_file(struct file *file, unsigned long prot, unsigned long flags); int security_mmap_addr(unsigned long addr); @@ -1090,6 +1092,13 @@ return 0; } +static inline int security_file_ioctl_compat(struct file *file, + unsigned int cmd, + unsigned long arg) +{ + return 0; +} + static inline int security_mmap_file(struct file *file, unsigned long prot, unsigned long flags) { diff -u linux-xilinx-zynqmp-5.15.0/include/linux/spi/spi.h linux-xilinx-zynqmp-5.15.0/include/linux/spi/spi.h --- linux-xilinx-zynqmp-5.15.0/include/linux/spi/spi.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/spi/spi.h @@ -1525,6 +1525,9 @@ extern const struct spi_device_id * spi_get_device_id(const struct spi_device *sdev); +extern const void * +spi_get_device_match_data(const struct spi_device *sdev); + static inline bool spi_transfer_is_last(struct spi_controller *ctlr, struct spi_transfer *xfer) { diff -u linux-xilinx-zynqmp-5.15.0/include/linux/stmmac.h linux-xilinx-zynqmp-5.15.0/include/linux/stmmac.h --- linux-xilinx-zynqmp-5.15.0/include/linux/stmmac.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/stmmac.h @@ -172,6 +172,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/include/linux/string.h linux-xilinx-zynqmp-5.15.0/include/linux/string.h --- linux-xilinx-zynqmp-5.15.0/include/linux/string.h +++ linux-xilinx-zynqmp-5.15.0/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 *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 -u linux-xilinx-zynqmp-5.15.0/include/linux/sunrpc/clnt.h linux-xilinx-zynqmp-5.15.0/include/linux/sunrpc/clnt.h --- linux-xilinx-zynqmp-5.15.0/include/linux/sunrpc/clnt.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/sunrpc/clnt.h @@ -83,6 +83,7 @@ }; 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 -u linux-xilinx-zynqmp-5.15.0/include/linux/sysctl.h linux-xilinx-zynqmp-5.15.0/include/linux/sysctl.h --- linux-xilinx-zynqmp-5.15.0/include/linux/sysctl.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/sysctl.h @@ -210,6 +210,7 @@ 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 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 -u linux-xilinx-zynqmp-5.15.0/include/linux/trace_events.h linux-xilinx-zynqmp-5.15.0/include/linux/trace_events.h --- linux-xilinx-zynqmp-5.15.0/include/linux/trace_events.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/trace_events.h @@ -468,6 +468,7 @@ 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 @@ * 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 @@ 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 @@ * 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 */ }; diff -u linux-xilinx-zynqmp-5.15.0/include/linux/workqueue.h linux-xilinx-zynqmp-5.15.0/include/linux/workqueue.h --- linux-xilinx-zynqmp-5.15.0/include/linux/workqueue.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/workqueue.h @@ -222,18 +222,16 @@ * 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 @@ } 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/include/net/addrconf.h linux-xilinx-zynqmp-5.15.0/include/net/addrconf.h --- linux-xilinx-zynqmp-5.15.0/include/net/addrconf.h +++ linux-xilinx-zynqmp-5.15.0/include/net/addrconf.h @@ -31,17 +31,22 @@ __u8 length; __u8 prefix_len; + union __packed { + __u8 flags; + struct __packed { #if defined(__BIG_ENDIAN_BITFIELD) - __u8 onlink : 1, + __u8 onlink : 1, autoconf : 1, reserved : 6; #elif defined(__LITTLE_ENDIAN_BITFIELD) - __u8 reserved : 6, + __u8 reserved : 6, autoconf : 1, onlink : 1; #else #error "Please fix " #endif + }; + }; __be32 valid; __be32 prefered; __be32 reserved2; @@ -49,6 +54,9 @@ struct in6_addr prefix; }; +/* rfc4861 4.6.2: IPv6 PIO is 32 bytes in size */ +static_assert(sizeof(struct prefix_info) == 32); + #include #include #include diff -u linux-xilinx-zynqmp-5.15.0/include/net/af_unix.h linux-xilinx-zynqmp-5.15.0/include/net/af_unix.h --- linux-xilinx-zynqmp-5.15.0/include/net/af_unix.h +++ linux-xilinx-zynqmp-5.15.0/include/net/af_unix.h @@ -47,12 +47,6 @@ #define UNIXCB(skb) (*(struct unix_skb_parms *)&((skb)->cb)) -#define unix_state_lock(s) spin_lock(&unix_sk(s)->lock) -#define unix_state_unlock(s) spin_unlock(&unix_sk(s)->lock) -#define unix_state_lock_nested(s) \ - spin_lock_nested(&unix_sk(s)->lock, \ - SINGLE_DEPTH_NESTING) - /* The AF_UNIX socket */ struct unix_sock { /* WARNING: sk has to be the first member */ @@ -80,6 +74,20 @@ return (struct unix_sock *)sk; } +#define unix_state_lock(s) spin_lock(&unix_sk(s)->lock) +#define unix_state_unlock(s) spin_unlock(&unix_sk(s)->lock) +enum unix_socket_lock_class { + U_LOCK_NORMAL, + U_LOCK_SECOND, /* for double locking, see unix_state_double_lock(). */ + U_LOCK_DIAG, /* used while dumping icons, see sk_diag_dump_icons(). */ +}; + +static inline void unix_state_lock_nested(struct sock *sk, + enum unix_socket_lock_class subclass) +{ + spin_lock_nested(&unix_sk(sk)->lock, subclass); +} + #define peer_wait peer_wq.wait long unix_inq_len(struct sock *sk); diff -u linux-xilinx-zynqmp-5.15.0/include/net/bluetooth/hci_core.h linux-xilinx-zynqmp-5.15.0/include/net/bluetooth/hci_core.h --- linux-xilinx-zynqmp-5.15.0/include/net/bluetooth/hci_core.h +++ linux-xilinx-zynqmp-5.15.0/include/net/bluetooth/hci_core.h @@ -176,6 +176,7 @@ struct smp_csrk { bdaddr_t bdaddr; u8 bdaddr_type; + u8 link_type; u8 type; u8 val[16]; }; @@ -185,6 +186,7 @@ struct rcu_head rcu; bdaddr_t bdaddr; u8 bdaddr_type; + u8 link_type; u8 authenticated; u8 type; u8 enc_size; @@ -199,6 +201,7 @@ bdaddr_t rpa; bdaddr_t bdaddr; u8 addr_type; + u8 link_type; u8 val[16]; }; @@ -206,6 +209,8 @@ struct list_head list; struct rcu_head rcu; bdaddr_t bdaddr; + u8 bdaddr_type; + u8 link_type; u8 type; u8 val[HCI_LINK_KEY_SIZE]; u8 pin_len; @@ -310,7 +315,7 @@ struct list_head list; struct mutex lock; - char name[8]; + const char *name; unsigned long flags; __u16 id; __u8 bus; @@ -847,7 +852,6 @@ /* ----- HCI Connections ----- */ enum { HCI_CONN_AUTH_PEND, - HCI_CONN_REAUTH_PEND, HCI_CONN_ENCRYPT_PEND, HCI_CONN_RSWITCH_PEND, HCI_CONN_MODE_CHANGE_PEND, diff -u linux-xilinx-zynqmp-5.15.0/include/net/flow.h linux-xilinx-zynqmp-5.15.0/include/net/flow.h --- linux-xilinx-zynqmp-5.15.0/include/net/flow.h +++ linux-xilinx-zynqmp-5.15.0/include/net/flow.h @@ -39,8 +39,8 @@ #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 -u linux-xilinx-zynqmp-5.15.0/include/net/if_inet6.h linux-xilinx-zynqmp-5.15.0/include/net/if_inet6.h --- linux-xilinx-zynqmp-5.15.0/include/net/if_inet6.h +++ linux-xilinx-zynqmp-5.15.0/include/net/if_inet6.h @@ -22,10 +22,6 @@ #define IF_RS_SENT 0x10 #define IF_READY 0x80000000 -/* prefix flags */ -#define IF_PREFIX_ONLINK 0x01 -#define IF_PREFIX_AUTOCONF 0x02 - enum { INET6_IFADDR_STATE_PREDAD, INET6_IFADDR_STATE_DAD, diff -u linux-xilinx-zynqmp-5.15.0/include/net/inet_connection_sock.h linux-xilinx-zynqmp-5.15.0/include/net/inet_connection_sock.h --- linux-xilinx-zynqmp-5.15.0/include/net/inet_connection_sock.h +++ linux-xilinx-zynqmp-5.15.0/include/net/inet_connection_sock.h @@ -66,7 +66,6 @@ * @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 @@ 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, @@ -339,2 +337,10 @@ +static inline void inet_init_csk_locks(struct sock *sk) +{ + struct inet_connection_sock *icsk = inet_csk(sk); + + spin_lock_init(&icsk->icsk_accept_queue.rskq_lock); + spin_lock_init(&icsk->icsk_accept_queue.fastopenq.lock); +} + #endif /* _INET_CONNECTION_SOCK_H */ diff -u linux-xilinx-zynqmp-5.15.0/include/net/inet_hashtables.h linux-xilinx-zynqmp-5.15.0/include/net/inet_hashtables.h --- linux-xilinx-zynqmp-5.15.0/include/net/inet_hashtables.h +++ linux-xilinx-zynqmp-5.15.0/include/net/inet_hashtables.h @@ -111,11 +111,7 @@ #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 @@ /* 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/include/net/ip_fib.h linux-xilinx-zynqmp-5.15.0/include/net/ip_fib.h --- linux-xilinx-zynqmp-5.15.0/include/net/ip_fib.h +++ linux-xilinx-zynqmp-5.15.0/include/net/ip_fib.h @@ -151,6 +151,7 @@ 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[]; diff -u linux-xilinx-zynqmp-5.15.0/include/net/netfilter/nf_tables.h linux-xilinx-zynqmp-5.15.0/include/net/netfilter/nf_tables.h --- linux-xilinx-zynqmp-5.15.0/include/net/netfilter/nf_tables.h +++ linux-xilinx-zynqmp-5.15.0/include/net/netfilter/nf_tables.h @@ -144,14 +144,29 @@ *(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) @@ -1238,6 +1253,7 @@ * @type: stateful object numeric type * @owner: module owner * @maxattr: maximum netlink attribute + * @family: address family for AF-specific object types * @policy: netlink attribute policy */ struct nft_object_type { @@ -1247,6 +1263,7 @@ struct list_head list; u32 type; unsigned int maxattr; + u8 family; struct module *owner; const struct nla_policy *policy; }; diff -u linux-xilinx-zynqmp-5.15.0/include/net/netns/xfrm.h linux-xilinx-zynqmp-5.15.0/include/net/netns/xfrm.h --- linux-xilinx-zynqmp-5.15.0/include/net/netns/xfrm.h +++ linux-xilinx-zynqmp-5.15.0/include/net/netns/xfrm.h @@ -50,6 +50,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/include/net/sock.h linux-xilinx-zynqmp-5.15.0/include/net/sock.h --- linux-xilinx-zynqmp-5.15.0/include/net/sock.h +++ linux-xilinx-zynqmp-5.15.0/include/net/sock.h @@ -1923,21 +1923,33 @@ /* 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 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/include/net/tcp.h linux-xilinx-zynqmp-5.15.0/include/net/tcp.h --- linux-xilinx-zynqmp-5.15.0/include/net/tcp.h +++ linux-xilinx-zynqmp-5.15.0/include/net/tcp.h @@ -141,6 +141,9 @@ #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 @@ 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); @@ -783,7 +786,7 @@ } /* 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 -u linux-xilinx-zynqmp-5.15.0/include/rdma/ib_umem.h linux-xilinx-zynqmp-5.15.0/include/rdma/ib_umem.h --- linux-xilinx-zynqmp-5.15.0/include/rdma/ib_umem.h +++ linux-xilinx-zynqmp-5.15.0/include/rdma/ib_umem.h @@ -85,6 +85,13 @@ { __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 @@ */ #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 -u linux-xilinx-zynqmp-5.15.0/include/rdma/ib_verbs.h linux-xilinx-zynqmp-5.15.0/include/rdma/ib_verbs.h --- linux-xilinx-zynqmp-5.15.0/include/rdma/ib_verbs.h +++ linux-xilinx-zynqmp-5.15.0/include/rdma/ib_verbs.h @@ -2817,6 +2817,7 @@ /* 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 -u linux-xilinx-zynqmp-5.15.0/include/sound/soc.h linux-xilinx-zynqmp-5.15.0/include/sound/soc.h --- linux-xilinx-zynqmp-5.15.0/include/sound/soc.h +++ linux-xilinx-zynqmp-5.15.0/include/sound/soc.h @@ -880,6 +880,17 @@ #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 -u linux-xilinx-zynqmp-5.15.0/include/trace/events/f2fs.h linux-xilinx-zynqmp-5.15.0/include/trace/events/f2fs.h --- linux-xilinx-zynqmp-5.15.0/include/trace/events/f2fs.h +++ linux-xilinx-zynqmp-5.15.0/include/trace/events/f2fs.h @@ -540,17 +540,17 @@ TRACE_EVENT(f2fs_file_write_iter, - TP_PROTO(struct inode *inode, unsigned long offset, - unsigned long length, int ret), + TP_PROTO(struct inode *inode, loff_t offset, size_t length, + ssize_t ret), TP_ARGS(inode, offset, length, ret), TP_STRUCT__entry( __field(dev_t, dev) __field(ino_t, ino) - __field(unsigned long, offset) - __field(unsigned long, length) - __field(int, ret) + __field(loff_t, offset) + __field(size_t, length) + __field(ssize_t, ret) ), TP_fast_assign( @@ -562,7 +562,7 @@ ), TP_printk("dev = (%d,%d), ino = %lu, " - "offset = %lu, length = %lu, written(err) = %d", + "offset = %lld, length = %zu, written(err) = %zd", show_dev_ino(__entry), __entry->offset, __entry->length, diff -u linux-xilinx-zynqmp-5.15.0/include/uapi/linux/bpf.h linux-xilinx-zynqmp-5.15.0/include/uapi/linux/bpf.h --- linux-xilinx-zynqmp-5.15.0/include/uapi/linux/bpf.h +++ linux-xilinx-zynqmp-5.15.0/include/uapi/linux/bpf.h @@ -4245,6 +4245,8 @@ * long bpf_get_task_stack(struct task_struct *task, void *buf, u32 size, u64 flags) * Description * Return a user or a kernel stack in bpf program provided buffer. + * Note: the user stack will only be populated if the *task* is + * the current task; all other tasks will return -EOPNOTSUPP. * To achieve this, the helper needs *task*, which is a valid * pointer to **struct task_struct**. To store the stacktrace, the * bpf program provides *buf* with a nonnegative *size*. @@ -4256,6 +4258,7 @@ * * **BPF_F_USER_STACK** * Collect a user space stack instead of a kernel stack. + * The *task* must be the current task. * **BPF_F_USER_BUILD_ID** * Collect buildid+offset instead of ips for user stack, * only valid if **BPF_F_USER_STACK** is also specified. diff -u linux-xilinx-zynqmp-5.15.0/include/uapi/linux/btrfs.h linux-xilinx-zynqmp-5.15.0/include/uapi/linux/btrfs.h --- linux-xilinx-zynqmp-5.15.0/include/uapi/linux/btrfs.h +++ linux-xilinx-zynqmp-5.15.0/include/uapi/linux/btrfs.h @@ -310,6 +310,7 @@ #define BTRFS_FEATURE_INCOMPAT_METADATA_UUID (1ULL << 10) #define BTRFS_FEATURE_INCOMPAT_RAID1C34 (1ULL << 11) #define BTRFS_FEATURE_INCOMPAT_ZONED (1ULL << 12) +#define BTRFS_FEATURE_INCOMPAT_EXTENT_TREE_V2 (1ULL << 13) struct btrfs_ioctl_feature_flags { __u64 compat_flags; @@ -578,6 +579,9 @@ */ #define BTRFS_DEFRAG_RANGE_COMPRESS 1 #define BTRFS_DEFRAG_RANGE_START_IO 2 +#define BTRFS_DEFRAG_RANGE_FLAGS_SUPP (BTRFS_DEFRAG_RANGE_COMPRESS | \ + BTRFS_DEFRAG_RANGE_START_IO) + struct btrfs_ioctl_defrag_range_args { /* start of the defrag operation */ __u64 start; diff -u linux-xilinx-zynqmp-5.15.0/include/uapi/linux/can/isotp.h linux-xilinx-zynqmp-5.15.0/include/uapi/linux/can/isotp.h --- linux-xilinx-zynqmp-5.15.0/include/uapi/linux/can/isotp.h +++ linux-xilinx-zynqmp-5.15.0/include/uapi/linux/can/isotp.h @@ -124,18 +124,19 @@ /* 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 -u linux-xilinx-zynqmp-5.15.0/include/uapi/linux/netfilter/nf_tables.h linux-xilinx-zynqmp-5.15.0/include/uapi/linux/netfilter/nf_tables.h --- linux-xilinx-zynqmp-5.15.0/include/uapi/linux/netfilter/nf_tables.h +++ linux-xilinx-zynqmp-5.15.0/include/uapi/linux/netfilter/nf_tables.h @@ -266,9 +266,11 @@ /** * enum nft_rule_compat_flags - nf_tables rule compat flags * + * @NFT_RULE_COMPAT_F_UNUSED: unused * @NFT_RULE_COMPAT_F_INV: invert the check result */ enum nft_rule_compat_flags { + NFT_RULE_COMPAT_F_UNUSED = (1 << 0), NFT_RULE_COMPAT_F_INV = (1 << 1), NFT_RULE_COMPAT_F_MASK = NFT_RULE_COMPAT_F_INV, }; diff -u linux-xilinx-zynqmp-5.15.0/include/uapi/linux/perf_event.h linux-xilinx-zynqmp-5.15.0/include/uapi/linux/perf_event.h --- linux-xilinx-zynqmp-5.15.0/include/uapi/linux/perf_event.h +++ linux-xilinx-zynqmp-5.15.0/include/uapi/linux/perf_event.h @@ -251,6 +251,8 @@ 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, }; diff -u linux-xilinx-zynqmp-5.15.0/include/uapi/linux/stddef.h linux-xilinx-zynqmp-5.15.0/include/uapi/linux/stddef.h --- linux-xilinx-zynqmp-5.15.0/include/uapi/linux/stddef.h +++ linux-xilinx-zynqmp-5.15.0/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 -u linux-xilinx-zynqmp-5.15.0/init/do_mounts.c linux-xilinx-zynqmp-5.15.0/init/do_mounts.c --- linux-xilinx-zynqmp-5.15.0/init/do_mounts.c +++ linux-xilinx-zynqmp-5.15.0/init/do_mounts.c @@ -677,5 +677,8 @@ { - if (IS_ENABLED(CONFIG_TMPFS) && !saved_root_name[0] && - (!root_fs_names || strstr(root_fs_names, "tmpfs"))) - is_tmpfs = true; + if (IS_ENABLED(CONFIG_TMPFS)) { + if (!saved_root_name[0] && !root_fs_names) + is_tmpfs = true; + else if (root_fs_names && !!strstr(root_fs_names, "tmpfs")) + is_tmpfs = true; + } } diff -u linux-xilinx-zynqmp-5.15.0/init/main.c linux-xilinx-zynqmp-5.15.0/init/main.c --- linux-xilinx-zynqmp-5.15.0/init/main.c +++ linux-xilinx-zynqmp-5.15.0/init/main.c @@ -540,6 +540,10 @@ { 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 -u linux-xilinx-zynqmp-5.15.0/io_uring/io_uring.c linux-xilinx-zynqmp-5.15.0/io_uring/io_uring.c --- linux-xilinx-zynqmp-5.15.0/io_uring/io_uring.c +++ linux-xilinx-zynqmp-5.15.0/io_uring/io_uring.c @@ -2626,6 +2626,7 @@ 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 @@ } } mutex_unlock(&ctx->uring_lock); + percpu_ref_put(&ctx->refs); } static int io_iopoll_check(struct io_ring_ctx *ctx, long min) @@ -3177,7 +3179,7 @@ */ 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; @@ -3513,14 +3515,17 @@ struct iovec *iov = iorw->fast_iov; int ret; + iorw->bytes_done = 0; + iorw->free_iovec = NULL; + ret = io_import_iovec(rw, req, &iov, &iorw->iter, false); if (unlikely(ret < 0)) return ret; - iorw->bytes_done = 0; - iorw->free_iovec = iov; - if (iov) + if (iov) { + iorw->free_iovec = iov; req->flags |= REQ_F_NEED_CLEANUP; + } iov_iter_save_state(&iorw->iter, &iorw->iter_state); return 0; } @@ -4074,7 +4079,7 @@ 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); @@ -8650,49 +8655,6 @@ 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) { @@ -8750,12 +8712,6 @@ *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) @@ -8869,12 +8825,6 @@ } *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; - } } } @@ -9796,12 +9746,7 @@ 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)); @@ -10436,7 +10381,7 @@ 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; @@ -10449,13 +10394,19 @@ has_lock = mutex_trylock(&ctx->uring_lock); if (has_lock && (ctx->flags & IORING_SETUP_SQPOLL)) { - sq = ctx->sq_data; - if (!sq->thread) - sq = NULL; + struct io_sq_data *sq = ctx->sq_data; + + if (mutex_trylock(&sq->lock)) { + if (sq->thread) { + sq_pid = task_pid_nr(sq->thread); + sq_cpu = task_cpu(sq->thread); + } + mutex_unlock(&sq->lock); + } } - seq_printf(m, "SqThread:\t%d\n", sq ? task_pid_nr(sq->thread) : -1); - seq_printf(m, "SqThreadCpu:\t%d\n", sq ? task_cpu(sq->thread) : -1); + seq_printf(m, "SqThread:\t%d\n", sq_pid); + seq_printf(m, "SqThreadCpu:\t%d\n", sq_cpu); seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files); for (i = 0; has_lock && i < ctx->nr_user_files; i++) { struct file *f = io_file_from_index(ctx, i); diff -u linux-xilinx-zynqmp-5.15.0/ipc/mqueue.c linux-xilinx-zynqmp-5.15.0/ipc/mqueue.c --- linux-xilinx-zynqmp-5.15.0/ipc/mqueue.c +++ linux-xilinx-zynqmp-5.15.0/ipc/mqueue.c @@ -164,8 +164,6 @@ static struct kmem_cache *mqueue_inode_cachep; -static struct ctl_table_header *mq_sysctl_table; - static inline struct mqueue_inode_info *MQUEUE_I(struct inode *inode) { return container_of(inode, struct mqueue_inode_info, vfs_inode); @@ -1727,8 +1725,10 @@ if (mqueue_inode_cachep == NULL) return -ENOMEM; - /* ignore failures - they are not fatal */ - mq_sysctl_table = mq_register_sysctl_table(); + if (!setup_mq_sysctls(&init_ipc_ns)) { + pr_warn("sysctl registration failed\n"); + return -ENOMEM; + } error = register_filesystem(&mqueue_fs_type); if (error) @@ -1745,8 +1745,6 @@ out_filesystem: unregister_filesystem(&mqueue_fs_type); out_sysctl: - if (mq_sysctl_table) - unregister_sysctl_table(mq_sysctl_table); kmem_cache_destroy(mqueue_inode_cachep); return error; } diff -u linux-xilinx-zynqmp-5.15.0/ipc/namespace.c linux-xilinx-zynqmp-5.15.0/ipc/namespace.c --- linux-xilinx-zynqmp-5.15.0/ipc/namespace.c +++ linux-xilinx-zynqmp-5.15.0/ipc/namespace.c @@ -59,8 +59,18 @@ if (err) goto fail_put; + err = -ENOMEM; + if (!setup_mq_sysctls(ns)) + goto fail_put; + + if (!setup_ipc_sysctls(ns)) + goto fail_put; + + err = msg_init_ns(ns); + if (err) + goto fail_put; + sem_init_ns(ns); - msg_init_ns(ns); shm_init_ns(ns); return ns; @@ -125,6 +135,9 @@ msg_exit_ns(ns); shm_exit_ns(ns); + retire_mq_sysctls(ns); + retire_ipc_sysctls(ns); + dec_ipc_namespaces(ns->ucounts); put_user_ns(ns->user_ns); ns_free_inum(&ns->ns); diff -u linux-xilinx-zynqmp-5.15.0/kernel/async.c linux-xilinx-zynqmp-5.15.0/kernel/async.c --- linux-xilinx-zynqmp-5.15.0/kernel/async.c +++ linux-xilinx-zynqmp-5.15.0/kernel/async.c @@ -145,6 +145,39 @@ wake_up(&async_done); } +static async_cookie_t __async_schedule_node_domain(async_func_t func, + void *data, int node, + struct async_domain *domain, + struct async_entry *entry) +{ + async_cookie_t newcookie; + unsigned long flags; + + INIT_LIST_HEAD(&entry->domain_list); + INIT_LIST_HEAD(&entry->global_list); + INIT_WORK(&entry->work, async_run_entry_fn); + entry->func = func; + entry->data = data; + entry->domain = domain; + + spin_lock_irqsave(&async_lock, flags); + + /* allocate cookie and queue */ + newcookie = entry->cookie = next_cookie++; + + list_add_tail(&entry->domain_list, &domain->pending); + if (domain->registered) + list_add_tail(&entry->global_list, &async_global_pending); + + atomic_inc(&entry_count); + spin_unlock_irqrestore(&async_lock, flags); + + /* schedule for execution */ + queue_work_node(node, system_unbound_wq, &entry->work); + + return newcookie; +} + /** * async_schedule_node_domain - NUMA specific version of async_schedule_domain * @func: function to execute asynchronously @@ -186,29 +219,8 @@ func(data, newcookie); return newcookie; } - INIT_LIST_HEAD(&entry->domain_list); - INIT_LIST_HEAD(&entry->global_list); - INIT_WORK(&entry->work, async_run_entry_fn); - entry->func = func; - entry->data = data; - entry->domain = domain; - - spin_lock_irqsave(&async_lock, flags); - - /* allocate cookie and queue */ - newcookie = entry->cookie = next_cookie++; - - list_add_tail(&entry->domain_list, &domain->pending); - if (domain->registered) - list_add_tail(&entry->global_list, &async_global_pending); - atomic_inc(&entry_count); - spin_unlock_irqrestore(&async_lock, flags); - - /* schedule for execution */ - queue_work_node(node, system_unbound_wq, &entry->work); - - return newcookie; + return __async_schedule_node_domain(func, data, node, domain, entry); } EXPORT_SYMBOL_GPL(async_schedule_node_domain); @@ -232,6 +244,35 @@ EXPORT_SYMBOL_GPL(async_schedule_node); /** + * async_schedule_dev_nocall - A simplified variant of async_schedule_dev() + * @func: function to execute asynchronously + * @dev: device argument to be passed to function + * + * @dev is used as both the argument for the function and to provide NUMA + * context for where to run the function. + * + * If the asynchronous execution of @func is scheduled successfully, return + * true. Otherwise, do nothing and return false, unlike async_schedule_dev() + * that will run the function synchronously then. + */ +bool async_schedule_dev_nocall(async_func_t func, struct device *dev) +{ + struct async_entry *entry; + + entry = kzalloc(sizeof(struct async_entry), GFP_KERNEL); + + /* Give up if there is no memory or too much work. */ + if (!entry || atomic_read(&entry_count) > MAX_WORK) { + kfree(entry); + return false; + } + + __async_schedule_node_domain(func, dev, dev_to_node(dev), + &async_dfl_domain, entry); + return true; +} + +/** * async_synchronize_full - synchronize all asynchronous function calls * * This function waits until all asynchronous function calls have been done. diff -u linux-xilinx-zynqmp-5.15.0/kernel/audit.c linux-xilinx-zynqmp-5.15.0/kernel/audit.c --- linux-xilinx-zynqmp-5.15.0/kernel/audit.c +++ linux-xilinx-zynqmp-5.15.0/kernel/audit.c @@ -491,15 +491,19 @@ * @pid: auditd PID * @portid: auditd netlink portid * @net: auditd network namespace pointer + * @skb: the netlink command from the audit daemon + * @ack: netlink ack flag, cleared if ack'd here * * Description: * This function will obtain and drop network namespace references as * necessary. Returns zero on success, negative values on failure. */ -static int auditd_set(struct pid *pid, u32 portid, struct net *net) +static int auditd_set(struct pid *pid, u32 portid, struct net *net, + struct sk_buff *skb, bool *ack) { unsigned long flags; struct auditd_connection *ac_old, *ac_new; + struct nlmsghdr *nlh; if (!pid || !net) return -EINVAL; @@ -511,6 +515,13 @@ ac_new->portid = portid; ac_new->net = get_net(net); + /* send the ack now to avoid a race with the queue backlog */ + if (*ack) { + nlh = nlmsg_hdr(skb); + netlink_ack(skb, nlh, 0, NULL); + *ack = false; + } + spin_lock_irqsave(&auditd_conn_lock, flags); ac_old = rcu_dereference_protected(auditd_conn, lockdep_is_held(&auditd_conn_lock)); @@ -1222,7 +1233,8 @@ return auditd_send_unicast_skb(skb); } -static int audit_receive_msg(struct sk_buff *skb, struct nlmsghdr *nlh) +static int audit_receive_msg(struct sk_buff *skb, struct nlmsghdr *nlh, + bool *ack) { u32 seq; void *data; @@ -1313,7 +1325,8 @@ /* register a new auditd connection */ err = auditd_set(req_pid, NETLINK_CB(skb).portid, - sock_net(NETLINK_CB(skb).sk)); + sock_net(NETLINK_CB(skb).sk), + skb, ack); if (audit_enabled != AUDIT_OFF) audit_log_config_change("audit_pid", new_pid, @@ -1564,9 +1577,10 @@ * Parse the provided skb and deal with any messages that may be present, * malformed skbs are discarded. */ -static void audit_receive(struct sk_buff *skb) +static void audit_receive(struct sk_buff *skb) { struct nlmsghdr *nlh; + bool ack; /* * len MUST be signed for nlmsg_next to be able to dec it below 0 * if the nlmsg_len was not aligned @@ -1579,9 +1593,12 @@ audit_ctl_lock(); while (nlmsg_ok(nlh, len)) { - err = audit_receive_msg(skb, nlh); - /* if err or if this message says it wants a response */ - if (err || (nlh->nlmsg_flags & NLM_F_ACK)) + ack = nlh->nlmsg_flags & NLM_F_ACK; + err = audit_receive_msg(skb, nlh, &ack); + + /* send an ack if the user asked for one and audit_receive_msg + * didn't already do it, or if there was an error. */ + if (ack || err) netlink_ack(skb, nlh, err, NULL); nlh = nlmsg_next(nlh, &len); diff -u linux-xilinx-zynqmp-5.15.0/kernel/bpf/arraymap.c linux-xilinx-zynqmp-5.15.0/kernel/bpf/arraymap.c --- linux-xilinx-zynqmp-5.15.0/kernel/bpf/arraymap.c +++ linux-xilinx-zynqmp-5.15.0/kernel/bpf/arraymap.c @@ -811,7 +811,7 @@ } if (old_ptr) - map->ops->map_fd_put_ptr(old_ptr); + map->ops->map_fd_put_ptr(map, old_ptr, true); return 0; } @@ -834,7 +834,7 @@ } if (old_ptr) { - map->ops->map_fd_put_ptr(old_ptr); + map->ops->map_fd_put_ptr(map, old_ptr, true); return 0; } else { return -ENOENT; @@ -858,8 +858,9 @@ return prog; } -static void prog_fd_array_put_ptr(void *ptr) +static void prog_fd_array_put_ptr(struct bpf_map *map, void *ptr, bool need_defer) { + /* bpf_prog is freed after one RCU or tasks trace grace period */ bpf_prog_put(ptr); } @@ -957,11 +958,16 @@ mutex_unlock(&aux->poke_mutex); } +void __weak bpf_arch_poke_desc_update(struct bpf_jit_poke_descriptor *poke, + struct bpf_prog *new, struct bpf_prog *old) +{ + WARN_ON_ONCE(1); +} + static void prog_array_map_poke_run(struct bpf_map *map, u32 key, struct bpf_prog *old, struct bpf_prog *new) { - u8 *old_addr, *new_addr, *old_bypass_addr; struct prog_poke_elem *elem; struct bpf_array_aux *aux; @@ -970,7 +976,7 @@ list_for_each_entry(elem, &aux->poke_progs, list) { struct bpf_jit_poke_descriptor *poke; - int i, ret; + int i; for (i = 0; i < elem->aux->size_poke_tab; i++) { poke = &elem->aux->poke_tab[i]; @@ -989,21 +995,10 @@ * activated, so tail call updates can arrive from here * while JIT is still finishing its final fixup for * non-activated poke entries. - * 3) On program teardown, the program's kallsym entry gets - * removed out of RCU callback, but we can only untrack - * from sleepable context, therefore bpf_arch_text_poke() - * might not see that this is in BPF text section and - * bails out with -EINVAL. As these are unreachable since - * RCU grace period already passed, we simply skip them. - * 4) Also programs reaching refcount of zero while patching + * 3) Also programs reaching refcount of zero while patching * is in progress is okay since we're protected under * poke_mutex and untrack the programs before the JIT - * buffer is freed. When we're still in the middle of - * patching and suddenly kallsyms entry of the program - * gets evicted, we just skip the rest which is fine due - * to point 3). - * 5) Any other error happening below from bpf_arch_text_poke() - * is a unexpected bug. + * buffer is freed. */ if (!READ_ONCE(poke->tailcall_target_stable)) continue; @@ -1013,39 +1008,7 @@ poke->tail_call.key != key) continue; - old_bypass_addr = old ? NULL : poke->bypass_addr; - old_addr = old ? (u8 *)old->bpf_func + poke->adj_off : NULL; - new_addr = new ? (u8 *)new->bpf_func + poke->adj_off : NULL; - - if (new) { - ret = bpf_arch_text_poke(poke->tailcall_target, - BPF_MOD_JUMP, - old_addr, new_addr); - BUG_ON(ret < 0 && ret != -EINVAL); - if (!old) { - ret = bpf_arch_text_poke(poke->tailcall_bypass, - BPF_MOD_JUMP, - poke->bypass_addr, - NULL); - BUG_ON(ret < 0 && ret != -EINVAL); - } - } else { - ret = bpf_arch_text_poke(poke->tailcall_bypass, - BPF_MOD_JUMP, - old_bypass_addr, - poke->bypass_addr); - BUG_ON(ret < 0 && ret != -EINVAL); - /* let other CPUs finish the execution of program - * so that it will not possible to expose them - * to invalid nop, stack unwind, nop state - */ - if (!ret) - synchronize_rcu(); - ret = bpf_arch_text_poke(poke->tailcall_target, - BPF_MOD_JUMP, - old_addr, NULL); - BUG_ON(ret < 0 && ret != -EINVAL); - } + bpf_arch_poke_desc_update(poke, new, old); } } } @@ -1186,8 +1149,9 @@ return ee; } -static void perf_event_fd_array_put_ptr(void *ptr) +static void perf_event_fd_array_put_ptr(struct bpf_map *map, void *ptr, bool need_defer) { + /* bpf_perf_event is freed after one RCU grace period */ bpf_event_entry_free_rcu(ptr); } @@ -1242,7 +1206,7 @@ return cgroup_get_from_fd(fd); } -static void cgroup_fd_array_put_ptr(void *ptr) +static void cgroup_fd_array_put_ptr(struct bpf_map *map, void *ptr, bool need_defer) { /* cgroup_put free cgrp after a rcu grace period */ cgroup_put(ptr); diff -u linux-xilinx-zynqmp-5.15.0/kernel/bpf/core.c linux-xilinx-zynqmp-5.15.0/kernel/bpf/core.c --- linux-xilinx-zynqmp-5.15.0/kernel/bpf/core.c +++ linux-xilinx-zynqmp-5.15.0/kernel/bpf/core.c @@ -605,7 +605,11 @@ 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 -u linux-xilinx-zynqmp-5.15.0/kernel/bpf/hashtab.c linux-xilinx-zynqmp-5.15.0/kernel/bpf/hashtab.c --- linux-xilinx-zynqmp-5.15.0/kernel/bpf/hashtab.c +++ linux-xilinx-zynqmp-5.15.0/kernel/bpf/hashtab.c @@ -857,7 +857,7 @@ if (map->ops->map_fd_put_ptr) { ptr = fd_htab_map_get_ptr(map, l); - map->ops->map_fd_put_ptr(ptr); + map->ops->map_fd_put_ptr(map, ptr, true); } } @@ -2330,7 +2330,7 @@ hlist_nulls_for_each_entry_safe(l, n, head, hash_node) { void *ptr = fd_htab_map_get_ptr(map, l); - map->ops->map_fd_put_ptr(ptr); + map->ops->map_fd_put_ptr(map, ptr, false); } } @@ -2371,7 +2371,7 @@ ret = htab_map_update_elem(map, key, &ptr, map_flags); if (ret) - map->ops->map_fd_put_ptr(ptr); + map->ops->map_fd_put_ptr(map, ptr, false); return ret; } diff -u linux-xilinx-zynqmp-5.15.0/kernel/bpf/helpers.c linux-xilinx-zynqmp-5.15.0/kernel/bpf/helpers.c --- linux-xilinx-zynqmp-5.15.0/kernel/bpf/helpers.c +++ linux-xilinx-zynqmp-5.15.0/kernel/bpf/helpers.c @@ -1118,13 +1118,6 @@ 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 @@ 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 @@ /* 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 -u linux-xilinx-zynqmp-5.15.0/kernel/bpf/stackmap.c linux-xilinx-zynqmp-5.15.0/kernel/bpf/stackmap.c --- linux-xilinx-zynqmp-5.15.0/kernel/bpf/stackmap.c +++ linux-xilinx-zynqmp-5.15.0/kernel/bpf/stackmap.c @@ -435,6 +435,7 @@ { u32 trace_nr, copy_len, elem_size, num_elem, max_depth; bool user_build_id = flags & BPF_F_USER_BUILD_ID; + bool crosstask = task && task != current; u32 skip = flags & BPF_F_SKIP_FIELD_MASK; bool user = flags & BPF_F_USER_STACK; struct perf_callchain_entry *trace; @@ -457,6 +458,14 @@ if (task && user && !user_mode(regs)) goto err_fault; + /* get_perf_callchain does not support crosstask user stack walking + * but returns an empty stack instead of NULL. + */ + if (crosstask && user) { + err = -EOPNOTSUPP; + goto clear; + } + num_elem = size / elem_size; max_depth = num_elem + skip; if (sysctl_perf_event_max_stack < max_depth) @@ -468,7 +477,7 @@ trace = get_callchain_entry_for_task(task, max_depth); else trace = get_perf_callchain(regs, 0, kernel, user, max_depth, - false, false); + crosstask, false); if (unlikely(!trace)) goto err_fault; diff -u linux-xilinx-zynqmp-5.15.0/kernel/bpf/syscall.c linux-xilinx-zynqmp-5.15.0/kernel/bpf/syscall.c --- linux-xilinx-zynqmp-5.15.0/kernel/bpf/syscall.c +++ linux-xilinx-zynqmp-5.15.0/kernel/bpf/syscall.c @@ -1314,6 +1314,9 @@ if (!max_count) return 0; + if (put_user(0, &uattr->batch.count)) + return -EFAULT; + key = kvmalloc(map->key_size, GFP_USER | __GFP_NOWARN); if (!key) return -ENOMEM; @@ -1372,6 +1375,9 @@ if (!max_count) return 0; + if (put_user(0, &uattr->batch.count)) + return -EFAULT; + key = kvmalloc(map->key_size, GFP_USER | __GFP_NOWARN); if (!key) return -ENOMEM; @@ -2761,6 +2767,10 @@ * * - if prog->aux->dst_trampoline and tgt_prog is NULL, the program * was detached and is going for re-attachment. + * + * - if prog->aux->dst_trampoline is NULL and tgt_prog and prog->aux->attach_btf + * are NULL, then program was already attached and user did not provide + * tgt_prog_fd so we have no way to find out or create trampoline */ if (!prog->aux->dst_trampoline && !tgt_prog) { /* @@ -2774,6 +2784,11 @@ err = -EINVAL; goto out_unlock; } + /* We can allow re-attach only if we have valid attach_btf. */ + if (!prog->aux->attach_btf) { + err = -EINVAL; + goto out_unlock; + } btf_id = prog->aux->attach_btf_id; key = bpf_trampoline_compute_key(NULL, prog->aux->attach_btf, btf_id); } diff -u linux-xilinx-zynqmp-5.15.0/kernel/bpf/verifier.c linux-xilinx-zynqmp-5.15.0/kernel/bpf/verifier.c --- linux-xilinx-zynqmp-5.15.0/kernel/bpf/verifier.c +++ linux-xilinx-zynqmp-5.15.0/kernel/bpf/verifier.c @@ -2189,7 +2189,12 @@ 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 @@ -2839,7 +2844,7 @@ * so it's aligned access and [off, off + size) are within stack limits */ if (!env->allow_ptr_leaks && - state->stack[spi].slot_type[0] == STACK_SPILL && + is_spilled_reg(&state->stack[spi]) && size != BPF_REG_SIZE) { verbose(env, "attempt to corrupt spilled pointer on stack\n"); return -EACCES; @@ -2885,7 +2890,7 @@ 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)) { @@ -4300,10 +4305,7 @@ if (tnum_is_const(reg->var_off)) { min_off = reg->var_off.value + off; - if (access_size > 0) - max_off = min_off + access_size - 1; - else - max_off = min_off; + max_off = min_off + access_size; } else { if (reg->smax_value >= BPF_MAX_VAR_OFF || reg->smin_value <= -BPF_MAX_VAR_OFF) { @@ -4312,15 +4314,12 @@ return -EACCES; } min_off = reg->smin_value + off; - if (access_size > 0) - max_off = reg->smax_value + off + access_size - 1; - else - max_off = min_off; + max_off = reg->smax_value + off + access_size; } err = check_stack_slot_within_bounds(min_off, state, type); - if (!err) - err = check_stack_slot_within_bounds(max_off, state, type); + if (!err && max_off > 0) + err = -EINVAL; /* out of stack access into non-negative offsets */ if (err) { if (tnum_is_const(reg->var_off)) { @@ -6247,6 +6246,13 @@ verbose(env, "R0 not a scalar value\n"); return -EACCES; } + + /* we are going to rely on register's precise value */ + err = mark_reg_read(env, r0, r0->parent, REG_LIVE_READ64); + err = err ?: mark_chain_precision(env, BPF_REG_0); + if (err) + return err; + if (!tnum_in(range, r0->var_off)) { verbose_invalid_scalar(env, r0, &range, "callback return", "R0"); return -EINVAL; @@ -7297,6 +7303,10 @@ } switch (base_type(ptr_reg->type)) { + case PTR_TO_FLOW_KEYS: + if (known) + break; + fallthrough; case CONST_PTR_TO_MAP: /* smin_val represents the known value */ if (known && smin_val == 0 && opcode == BPF_ADD) diff -u linux-xilinx-zynqmp-5.15.0/kernel/cpu.c linux-xilinx-zynqmp-5.15.0/kernel/cpu.c --- linux-xilinx-zynqmp-5.15.0/kernel/cpu.c +++ linux-xilinx-zynqmp-5.15.0/kernel/cpu.c @@ -1697,7 +1697,7 @@ [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 @@ .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 -u linux-xilinx-zynqmp-5.15.0/kernel/cred.c linux-xilinx-zynqmp-5.15.0/kernel/cred.c --- linux-xilinx-zynqmp-5.15.0/kernel/cred.c +++ linux-xilinx-zynqmp-5.15.0/kernel/cred.c @@ -99,17 +99,17 @@ #ifdef CONFIG_DEBUG_CREDENTIALS if (cred->magic != CRED_MAGIC_DEAD || - atomic_read(&cred->usage) != 0 || + atomic_long_read(&cred->usage) != 0 || read_cred_subscribers(cred) != 0) panic("CRED: put_cred_rcu() sees %p with" - " mag %x, put %p, usage %d, subscr %d\n", + " mag %x, put %p, usage %ld, subscr %d\n", cred, cred->magic, cred->put_addr, - atomic_read(&cred->usage), + atomic_long_read(&cred->usage), read_cred_subscribers(cred)); #else - if (atomic_read(&cred->usage) != 0) - panic("CRED: put_cred_rcu() sees %p with usage %d\n", - cred, atomic_read(&cred->usage)); + if (atomic_long_read(&cred->usage) != 0) + panic("CRED: put_cred_rcu() sees %p with usage %ld\n", + cred, atomic_long_read(&cred->usage)); #endif security_cred_free(cred); @@ -134,11 +134,11 @@ */ void __put_cred(struct cred *cred) { - kdebug("__put_cred(%p{%d,%d})", cred, - atomic_read(&cred->usage), + kdebug("__put_cred(%p{%ld,%d})", cred, + atomic_long_read(&cred->usage), read_cred_subscribers(cred)); - BUG_ON(atomic_read(&cred->usage) != 0); + BUG_ON(atomic_long_read(&cred->usage) != 0); #ifdef CONFIG_DEBUG_CREDENTIALS BUG_ON(read_cred_subscribers(cred) != 0); cred->magic = CRED_MAGIC_DEAD; @@ -161,8 +161,8 @@ { struct cred *cred; - kdebug("exit_creds(%u,%p,%p,{%d,%d})", tsk->pid, tsk->real_cred, tsk->cred, - atomic_read(&tsk->cred->usage), + kdebug("exit_creds(%u,%p,%p,{%ld,%d})", tsk->pid, tsk->real_cred, tsk->cred, + atomic_long_read(&tsk->cred->usage), read_cred_subscribers(tsk->cred)); cred = (struct cred *) tsk->real_cred; @@ -221,7 +221,7 @@ if (!new) return NULL; - atomic_set(&new->usage, 1); + atomic_long_set(&new->usage, 1); #ifdef CONFIG_DEBUG_CREDENTIALS new->magic = CRED_MAGIC; #endif @@ -267,7 +267,7 @@ memcpy(new, old, sizeof(struct cred)); new->non_rcu = 0; - atomic_set(&new->usage, 1); + atomic_long_set(&new->usage, 1); set_cred_subscribers(new, 0); get_group_info(new->group_info); get_uid(new->user); @@ -355,8 +355,8 @@ p->real_cred = get_cred(p->cred); get_cred(p->cred); alter_cred_subscribers(p->cred, 2); - kdebug("share_creds(%p{%d,%d})", - p->cred, atomic_read(&p->cred->usage), + kdebug("share_creds(%p{%ld,%d})", + p->cred, atomic_long_read(&p->cred->usage), read_cred_subscribers(p->cred)); inc_rlimit_ucounts(task_ucounts(p), UCOUNT_RLIMIT_NPROC, 1); return 0; @@ -449,8 +449,8 @@ struct task_struct *task = current; const struct cred *old = task->real_cred; - kdebug("commit_creds(%p{%d,%d})", new, - atomic_read(&new->usage), + kdebug("commit_creds(%p{%ld,%d})", new, + atomic_long_read(&new->usage), read_cred_subscribers(new)); BUG_ON(task->cred != old); @@ -459,7 +459,7 @@ validate_creds(old); validate_creds(new); #endif - BUG_ON(atomic_read(&new->usage) < 1); + BUG_ON(atomic_long_read(&new->usage) < 1); get_cred(new); /* we will require a ref for the subj creds too */ @@ -532,14 +532,14 @@ */ void abort_creds(struct cred *new) { - kdebug("abort_creds(%p{%d,%d})", new, - atomic_read(&new->usage), + kdebug("abort_creds(%p{%ld,%d})", new, + atomic_long_read(&new->usage), read_cred_subscribers(new)); #ifdef CONFIG_DEBUG_CREDENTIALS BUG_ON(read_cred_subscribers(new) != 0); #endif - BUG_ON(atomic_read(&new->usage) < 1); + BUG_ON(atomic_long_read(&new->usage) < 1); put_cred(new); } EXPORT_SYMBOL(abort_creds); @@ -555,8 +555,8 @@ { const struct cred *old = current->cred; - kdebug("override_creds(%p{%d,%d})", new, - atomic_read(&new->usage), + kdebug("override_creds(%p{%ld,%d})", new, + atomic_long_read(&new->usage), read_cred_subscribers(new)); validate_creds(old); @@ -578,8 +578,8 @@ rcu_assign_pointer(current->cred, new); alter_cred_subscribers(old, -1); - kdebug("override_creds() = %p{%d,%d}", old, - atomic_read(&old->usage), + kdebug("override_creds() = %p{%ld,%d}", old, + atomic_long_read(&old->usage), read_cred_subscribers(old)); return old; } @@ -596,8 +596,8 @@ { const struct cred *override = current->cred; - kdebug("revert_creds(%p{%d,%d})", old, - atomic_read(&old->usage), + kdebug("revert_creds(%p{%ld,%d})", old, + atomic_long_read(&old->usage), read_cred_subscribers(old)); validate_creds(old); @@ -729,7 +729,7 @@ *new = *old; new->non_rcu = 0; - atomic_set(&new->usage, 1); + atomic_long_set(&new->usage, 1); set_cred_subscribers(new, 0); get_uid(new->user); get_user_ns(new->user_ns); @@ -843,8 +843,8 @@ cred == tsk->cred ? "[eff]" : ""); printk(KERN_ERR "CRED: ->magic=%x, put_addr=%p\n", cred->magic, cred->put_addr); - printk(KERN_ERR "CRED: ->usage=%d, subscr=%d\n", - atomic_read(&cred->usage), + printk(KERN_ERR "CRED: ->usage=%ld, subscr=%d\n", + atomic_long_read(&cred->usage), read_cred_subscribers(cred)); printk(KERN_ERR "CRED: ->*uid = { %d,%d,%d,%d }\n", from_kuid_munged(&init_user_ns, cred->uid), @@ -916,9 +916,9 @@ */ void validate_creds_for_do_exit(struct task_struct *tsk) { - kdebug("validate_creds_for_do_exit(%p,%p{%d,%d})", + kdebug("validate_creds_for_do_exit(%p,%p{%ld,%d})", tsk->real_cred, tsk->cred, - atomic_read(&tsk->cred->usage), + atomic_long_read(&tsk->cred->usage), read_cred_subscribers(tsk->cred)); __validate_process_creds(tsk, __FILE__, __LINE__); diff -u linux-xilinx-zynqmp-5.15.0/kernel/debug/debug_core.c linux-xilinx-zynqmp-5.15.0/kernel/debug/debug_core.c --- linux-xilinx-zynqmp-5.15.0/kernel/debug/debug_core.c +++ linux-xilinx-zynqmp-5.15.0/kernel/debug/debug_core.c @@ -997,6 +997,9 @@ 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 -u linux-xilinx-zynqmp-5.15.0/kernel/debug/kdb/kdb_main.c linux-xilinx-zynqmp-5.15.0/kernel/debug/kdb/kdb_main.c --- linux-xilinx-zynqmp-5.15.0/kernel/debug/kdb/kdb_main.c +++ linux-xilinx-zynqmp-5.15.0/kernel/debug/kdb/kdb_main.c @@ -1294,8 +1294,6 @@ /* PROMPT can only be set if we have MEM_READ permission. */ snprintf(kdb_prompt_str, CMD_BUFLEN, kdbgetenv("PROMPT"), raw_smp_processor_id()); - if (defcmd_in_progress) - strncat(kdb_prompt_str, "[defcmd]", CMD_BUFLEN); /* * Fetch command from keyboard diff -u linux-xilinx-zynqmp-5.15.0/kernel/events/core.c linux-xilinx-zynqmp-5.15.0/kernel/events/core.c --- linux-xilinx-zynqmp-5.15.0/kernel/events/core.c +++ linux-xilinx-zynqmp-5.15.0/kernel/events/core.c @@ -11225,9 +11225,30 @@ static struct attribute *pmu_dev_attrs[] = { &dev_attr_type.attr, &dev_attr_perf_event_mux_interval_ms.attr, + &dev_attr_nr_addr_filters.attr, + NULL, +}; + +static umode_t pmu_dev_is_visible(struct kobject *kobj, struct attribute *a, int n) +{ + struct device *dev = kobj_to_dev(kobj); + struct pmu *pmu = dev_get_drvdata(dev); + + if (n == 2 && !pmu->nr_addr_filters) + return 0; + + return a->mode; +} + +static struct attribute_group pmu_dev_attr_group = { + .is_visible = pmu_dev_is_visible, + .attrs = pmu_dev_attrs, +}; + +static const struct attribute_group *pmu_dev_groups[] = { + &pmu_dev_attr_group, NULL, }; -ATTRIBUTE_GROUPS(pmu_dev); static int pmu_bus_running; static struct bus_type pmu_bus = { @@ -11263,18 +11284,11 @@ if (ret) goto free_dev; - /* For PMUs with address filters, throw in an extra attribute: */ - if (pmu->nr_addr_filters) - ret = device_create_file(pmu->dev, &dev_attr_nr_addr_filters); - - if (ret) - goto del_dev; - - if (pmu->attr_update) + if (pmu->attr_update) { ret = sysfs_update_groups(&pmu->dev->kobj, pmu->attr_update); - - if (ret) - goto del_dev; + if (ret) + goto del_dev; + } out: return ret; @@ -13325,7 +13339,8 @@ !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 -u linux-xilinx-zynqmp-5.15.0/kernel/events/internal.h linux-xilinx-zynqmp-5.15.0/kernel/events/internal.h --- linux-xilinx-zynqmp-5.15.0/kernel/events/internal.h +++ linux-xilinx-zynqmp-5.15.0/kernel/events/internal.h @@ -210,12 +210,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/kernel/events/ring_buffer.c linux-xilinx-zynqmp-5.15.0/kernel/events/ring_buffer.c --- linux-xilinx-zynqmp-5.15.0/kernel/events/ring_buffer.c +++ linux-xilinx-zynqmp-5.15.0/kernel/events/ring_buffer.c @@ -699,6 +699,12 @@ 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 -u linux-xilinx-zynqmp-5.15.0/kernel/futex/core.c linux-xilinx-zynqmp-5.15.0/kernel/futex/core.c --- linux-xilinx-zynqmp-5.15.0/kernel/futex/core.c +++ linux-xilinx-zynqmp-5.15.0/kernel/futex/core.c @@ -570,7 +570,17 @@ * 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 -u linux-xilinx-zynqmp-5.15.0/kernel/kexec.c linux-xilinx-zynqmp-5.15.0/kernel/kexec.c --- linux-xilinx-zynqmp-5.15.0/kernel/kexec.c +++ linux-xilinx-zynqmp-5.15.0/kernel/kexec.c @@ -240,7 +240,7 @@ ((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 -u linux-xilinx-zynqmp-5.15.0/kernel/kprobes.c linux-xilinx-zynqmp-5.15.0/kernel/kprobes.c --- linux-xilinx-zynqmp-5.15.0/kernel/kprobes.c +++ linux-xilinx-zynqmp-5.15.0/kernel/kprobes.c @@ -549,17 +549,15 @@ /* See comment in do_optimize_kprobes() */ lockdep_assert_cpus_held(); - /* Unoptimization must be done anytime */ - if (list_empty(&unoptimizing_list)) - return; + if (!list_empty(&unoptimizing_list)) + arch_unoptimize_kprobes(&unoptimizing_list, &freeing_list); - arch_unoptimize_kprobes(&unoptimizing_list, &freeing_list); - /* Loop free_list for disarming */ + /* Loop on 'freeing_list' for disarming and removing from kprobe hash list */ list_for_each_entry_safe(op, tmp, &freeing_list, list) { /* Switching from detour code to origin */ op->kp.flags &= ~KPROBE_FLAG_OPTIMIZED; - /* Disarm probes if marked disabled */ - if (kprobe_disabled(&op->kp)) + /* Disarm probes if marked disabled and not gone */ + if (kprobe_disabled(&op->kp) && !kprobe_gone(&op->kp)) arch_disarm_kprobe(&op->kp); if (kprobe_unused(&op->kp)) { /* @@ -788,14 +786,13 @@ op->kp.flags &= ~KPROBE_FLAG_OPTIMIZED; if (kprobe_unused(p)) { - /* Enqueue if it is unused */ - list_add(&op->list, &freeing_list); /* - * Remove unused probes from the hash list. After waiting - * for synchronization, this probe is reclaimed. - * (reclaiming is done by do_free_cleaned_kprobes().) + * Unused kprobe is on unoptimizing or freeing list. We move it + * to freeing_list and let the kprobe_optimizer() remove it from + * the kprobe hash list and free it. */ - hlist_del_rcu(&op->kp.hlist); + if (optprobe_queued_unopt(op)) + list_move(&op->list, &freeing_list); } /* Don't touch the code, because it is already freed. */ @@ -2100,7 +2097,7 @@ 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); @@ -2157,7 +2154,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/kernel/livepatch/core.c linux-xilinx-zynqmp-5.15.0/kernel/livepatch/core.c --- linux-xilinx-zynqmp-5.15.0/kernel/livepatch/core.c +++ linux-xilinx-zynqmp-5.15.0/kernel/livepatch/core.c @@ -244,7 +244,7 @@ * 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 -u linux-xilinx-zynqmp-5.15.0/kernel/locking/lockdep.c linux-xilinx-zynqmp-5.15.0/kernel/locking/lockdep.c --- linux-xilinx-zynqmp-5.15.0/kernel/locking/lockdep.c +++ linux-xilinx-zynqmp-5.15.0/kernel/locking/lockdep.c @@ -3418,7 +3418,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/kernel/module.c linux-xilinx-zynqmp-5.15.0/kernel/module.c --- linux-xilinx-zynqmp-5.15.0/kernel/module.c +++ linux-xilinx-zynqmp-5.15.0/kernel/module.c @@ -4474,7 +4474,6 @@ return ret; } -#ifdef CONFIG_LIVEPATCH int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *, struct module *, unsigned long), void *data) @@ -4506,7 +4505,6 @@ mutex_unlock(&module_mutex); return ret; } -#endif /* CONFIG_LIVEPATCH */ #endif /* CONFIG_KALLSYMS */ static void cfi_init(struct module *mod) diff -u linux-xilinx-zynqmp-5.15.0/kernel/padata.c linux-xilinx-zynqmp-5.15.0/kernel/padata.c --- linux-xilinx-zynqmp-5.15.0/kernel/padata.c +++ linux-xilinx-zynqmp-5.15.0/kernel/padata.c @@ -194,7 +194,7 @@ *cb_cpu = cpu; } - err = -EBUSY; + err = -EBUSY; if ((pinst->flags & PADATA_RESET)) goto out; @@ -1094,12 +1094,16 @@ */ 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 -u linux-xilinx-zynqmp-5.15.0/kernel/power/snapshot.c linux-xilinx-zynqmp-5.15.0/kernel/power/snapshot.c --- linux-xilinx-zynqmp-5.15.0/kernel/power/snapshot.c +++ linux-xilinx-zynqmp-5.15.0/kernel/power/snapshot.c @@ -2414,8 +2414,9 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/kernel/power/swap.c linux-xilinx-zynqmp-5.15.0/kernel/power/swap.c --- linux-xilinx-zynqmp-5.15.0/kernel/power/swap.c +++ linux-xilinx-zynqmp-5.15.0/kernel/power/swap.c @@ -603,11 +603,11 @@ unsigned i; while (1) { - wait_event(d->go, atomic_read(&d->ready) || + wait_event(d->go, atomic_read_acquire(&d->ready) || kthread_should_stop()); if (kthread_should_stop()) { d->thr = NULL; - atomic_set(&d->stop, 1); + atomic_set_release(&d->stop, 1); wake_up(&d->done); break; } @@ -616,7 +616,7 @@ for (i = 0; i < d->run_threads; i++) *d->crc32 = crc32_le(*d->crc32, d->unc[i], *d->unc_len[i]); - atomic_set(&d->stop, 1); + atomic_set_release(&d->stop, 1); wake_up(&d->done); } return 0; @@ -646,12 +646,12 @@ struct cmp_data *d = data; while (1) { - wait_event(d->go, atomic_read(&d->ready) || + wait_event(d->go, atomic_read_acquire(&d->ready) || kthread_should_stop()); if (kthread_should_stop()) { d->thr = NULL; d->ret = -1; - atomic_set(&d->stop, 1); + atomic_set_release(&d->stop, 1); wake_up(&d->done); break; } @@ -660,7 +660,7 @@ d->ret = lzo1x_1_compress(d->unc, d->unc_len, d->cmp + LZO_HEADER, &d->cmp_len, d->wrk); - atomic_set(&d->stop, 1); + atomic_set_release(&d->stop, 1); wake_up(&d->done); } return 0; @@ -798,7 +798,7 @@ data[thr].unc_len = off; - atomic_set(&data[thr].ready, 1); + atomic_set_release(&data[thr].ready, 1); wake_up(&data[thr].go); } @@ -806,12 +806,12 @@ break; crc->run_threads = thr; - atomic_set(&crc->ready, 1); + atomic_set_release(&crc->ready, 1); wake_up(&crc->go); for (run_threads = thr, thr = 0; thr < run_threads; thr++) { wait_event(data[thr].done, - atomic_read(&data[thr].stop)); + atomic_read_acquire(&data[thr].stop)); atomic_set(&data[thr].stop, 0); ret = data[thr].ret; @@ -850,7 +850,7 @@ } } - wait_event(crc->done, atomic_read(&crc->stop)); + wait_event(crc->done, atomic_read_acquire(&crc->stop)); atomic_set(&crc->stop, 0); } @@ -1132,12 +1132,12 @@ struct dec_data *d = data; while (1) { - wait_event(d->go, atomic_read(&d->ready) || + wait_event(d->go, atomic_read_acquire(&d->ready) || kthread_should_stop()); if (kthread_should_stop()) { d->thr = NULL; d->ret = -1; - atomic_set(&d->stop, 1); + atomic_set_release(&d->stop, 1); wake_up(&d->done); break; } @@ -1150,7 +1150,7 @@ flush_icache_range((unsigned long)d->unc, (unsigned long)d->unc + d->unc_len); - atomic_set(&d->stop, 1); + atomic_set_release(&d->stop, 1); wake_up(&d->done); } return 0; @@ -1338,7 +1338,7 @@ } if (crc->run_threads) { - wait_event(crc->done, atomic_read(&crc->stop)); + wait_event(crc->done, atomic_read_acquire(&crc->stop)); atomic_set(&crc->stop, 0); crc->run_threads = 0; } @@ -1374,7 +1374,7 @@ pg = 0; } - atomic_set(&data[thr].ready, 1); + atomic_set_release(&data[thr].ready, 1); wake_up(&data[thr].go); } @@ -1393,7 +1393,7 @@ for (run_threads = thr, thr = 0; thr < run_threads; thr++) { wait_event(data[thr].done, - atomic_read(&data[thr].stop)); + atomic_read_acquire(&data[thr].stop)); atomic_set(&data[thr].stop, 0); ret = data[thr].ret; @@ -1424,7 +1424,7 @@ ret = snapshot_write_next(snapshot); if (ret <= 0) { crc->run_threads = thr + 1; - atomic_set(&crc->ready, 1); + atomic_set_release(&crc->ready, 1); wake_up(&crc->go); goto out_finish; } @@ -1432,13 +1432,13 @@ } crc->run_threads = thr; - atomic_set(&crc->ready, 1); + atomic_set_release(&crc->ready, 1); wake_up(&crc->go); } out_finish: if (crc->run_threads) { - wait_event(crc->done, atomic_read(&crc->stop)); + wait_event(crc->done, atomic_read_acquire(&crc->stop)); atomic_set(&crc->stop, 0); } stop = ktime_get(); diff -u linux-xilinx-zynqmp-5.15.0/kernel/rcu/tree.c linux-xilinx-zynqmp-5.15.0/kernel/rcu/tree.c --- linux-xilinx-zynqmp-5.15.0/kernel/rcu/tree.c +++ linux-xilinx-zynqmp-5.15.0/kernel/rcu/tree.c @@ -31,6 +31,7 @@ #include #include #include +#include #include #include #include @@ -1906,10 +1907,22 @@ */ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/kernel/rcu/tree_plugin.h linux-xilinx-zynqmp-5.15.0/kernel/rcu/tree_plugin.h --- linux-xilinx-zynqmp-5.15.0/kernel/rcu/tree_plugin.h +++ linux-xilinx-zynqmp-5.15.0/kernel/rcu/tree_plugin.h @@ -458,7 +458,7 @@ * 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 @@ * 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 @@ * 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 @@ * 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 -u linux-xilinx-zynqmp-5.15.0/kernel/rcu/tree_stall.h linux-xilinx-zynqmp-5.15.0/kernel/rcu/tree_stall.h --- linux-xilinx-zynqmp-5.15.0/kernel/rcu/tree_stall.h +++ linux-xilinx-zynqmp-5.15.0/kernel/rcu/tree_stall.h @@ -121,12 +121,17 @@ /** * 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 @@ 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 @@ !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 -u linux-xilinx-zynqmp-5.15.0/kernel/sched/core.c linux-xilinx-zynqmp-5.15.0/kernel/sched/core.c --- linux-xilinx-zynqmp-5.15.0/kernel/sched/core.c +++ linux-xilinx-zynqmp-5.15.0/kernel/sched/core.c @@ -2377,9 +2377,11 @@ * 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 @@ 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 @@ 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 @@ * 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 -u linux-xilinx-zynqmp-5.15.0/kernel/sched/deadline.c linux-xilinx-zynqmp-5.15.0/kernel/sched/deadline.c --- linux-xilinx-zynqmp-5.15.0/kernel/sched/deadline.c +++ linux-xilinx-zynqmp-5.15.0/kernel/sched/deadline.c @@ -2308,9 +2308,11 @@ 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 -u linux-xilinx-zynqmp-5.15.0/kernel/sched/fair.c linux-xilinx-zynqmp-5.15.0/kernel/sched/fair.c --- linux-xilinx-zynqmp-5.15.0/kernel/sched/fair.c +++ linux-xilinx-zynqmp-5.15.0/kernel/sched/fair.c @@ -3373,7 +3373,8 @@ */ static inline void update_tg_load_avg(struct cfs_rq *cfs_rq) { - long delta = cfs_rq->avg.load_avg - cfs_rq->tg_load_avg_contrib; + long delta; + u64 now; /* * No need to update load_avg for root_task_group as it is not used. @@ -3381,9 +3382,19 @@ if (cfs_rq->tg == &root_task_group) return; + /* + * For migration heavy workloads, access to tg->load_avg can be + * unbound. Limit the update rate to at most once per ms. + */ + now = sched_clock_cpu(cpu_of(rq_of(cfs_rq))); + if (now - cfs_rq->last_update_tg_load_avg < NSEC_PER_MSEC) + return; + + delta = cfs_rq->avg.load_avg - cfs_rq->tg_load_avg_contrib; if (abs(delta) > cfs_rq->tg_load_avg_contrib / 64) { atomic_long_add(delta, &cfs_rq->tg->load_avg); cfs_rq->tg_load_avg_contrib = cfs_rq->avg.load_avg; + cfs_rq->last_update_tg_load_avg = now; } } @@ -3987,22 +3998,6 @@ 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 +7032,7 @@ 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 +10474,15 @@ 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 -u linux-xilinx-zynqmp-5.15.0/kernel/sched/membarrier.c linux-xilinx-zynqmp-5.15.0/kernel/sched/membarrier.c --- linux-xilinx-zynqmp-5.15.0/kernel/sched/membarrier.c +++ linux-xilinx-zynqmp-5.15.0/kernel/sched/membarrier.c @@ -163,4 +163,6 @@ | MEMBARRIER_PRIVATE_EXPEDITED_RSEQ_BITMASK) +static DEFINE_MUTEX(membarrier_ipi_mutex); + static void ipi_mb(void *info) { @@ -259,6 +261,7 @@ if (!zalloc_cpumask_var(&tmpmask, GFP_KERNEL)) return -ENOMEM; + mutex_lock(&membarrier_ipi_mutex); cpus_read_lock(); rcu_read_lock(); for_each_online_cpu(cpu) { @@ -304,6 +307,8 @@ * rq->curr modification in scheduler. */ smp_mb(); /* exit from system call is not a mb */ + mutex_unlock(&membarrier_ipi_mutex); + return 0; } @@ -347,6 +352,7 @@ if (cpu_id < 0 && !zalloc_cpumask_var(&tmpmask, GFP_KERNEL)) return -ENOMEM; + mutex_lock(&membarrier_ipi_mutex); cpus_read_lock(); if (cpu_id >= 0) { @@ -419,6 +425,7 @@ * rq->curr modification in scheduler. */ smp_mb(); /* exit from system call is not a mb */ + mutex_unlock(&membarrier_ipi_mutex); return 0; } @@ -460,6 +467,7 @@ * between threads which are users of @mm has its membarrier state * updated. */ + mutex_lock(&membarrier_ipi_mutex); cpus_read_lock(); rcu_read_lock(); for_each_online_cpu(cpu) { @@ -476,6 +484,7 @@ free_cpumask_var(tmpmask); cpus_read_unlock(); + mutex_unlock(&membarrier_ipi_mutex); return 0; } diff -u linux-xilinx-zynqmp-5.15.0/kernel/sched/rt.c linux-xilinx-zynqmp-5.15.0/kernel/sched/rt.c --- linux-xilinx-zynqmp-5.15.0/kernel/sched/rt.c +++ linux-xilinx-zynqmp-5.15.0/kernel/sched/rt.c @@ -1951,9 +1951,11 @@ */ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/kernel/sched/sched.h linux-xilinx-zynqmp-5.15.0/kernel/sched/sched.h --- linux-xilinx-zynqmp-5.15.0/kernel/sched/sched.h +++ linux-xilinx-zynqmp-5.15.0/kernel/sched/sched.h @@ -575,6 +575,7 @@ } removed; #ifdef CONFIG_FAIR_GROUP_SCHED + u64 last_update_tg_load_avg; unsigned long tg_load_avg_contrib; long propagate; long prop_runnable_sum; diff -u linux-xilinx-zynqmp-5.15.0/kernel/time/clocksource.c linux-xilinx-zynqmp-5.15.0/kernel/time/clocksource.c --- linux-xilinx-zynqmp-5.15.0/kernel/time/clocksource.c +++ linux-xilinx-zynqmp-5.15.0/kernel/time/clocksource.c @@ -120,6 +120,7 @@ static DEFINE_SPINLOCK(watchdog_lock); static int watchdog_running; static atomic_t watchdog_reset_pending; +static int64_t watchdog_max_interval; static inline void clocksource_watchdog_lock(unsigned long *flags) { @@ -138,6 +139,7 @@ * Interval: 0.5sec. */ #define WATCHDOG_INTERVAL (HZ >> 1) +#define WATCHDOG_INTERVAL_MAX_NS ((2 * WATCHDOG_INTERVAL) * (NSEC_PER_SEC / HZ)) static void clocksource_watchdog_work(struct work_struct *work) { @@ -390,8 +392,8 @@ static void clocksource_watchdog(struct timer_list *unused) { u64 csnow, wdnow, cslast, wdlast, delta; + int64_t wd_nsec, cs_nsec, interval; int next_cpu, reset_pending; - int64_t wd_nsec, cs_nsec; struct clocksource *cs; enum wd_read_status read_ret; unsigned long extra_wait = 0; @@ -461,6 +463,27 @@ if (atomic_read(&watchdog_reset_pending)) continue; + /* + * The processing of timer softirqs can get delayed (usually + * on account of ksoftirqd not getting to run in a timely + * manner), which causes the watchdog interval to stretch. + * Skew detection may fail for longer watchdog intervals + * on account of fixed margins being used. + * Some clocksources, e.g. acpi_pm, cannot tolerate + * watchdog intervals longer than a few seconds. + */ + interval = max(cs_nsec, wd_nsec); + if (unlikely(interval > WATCHDOG_INTERVAL_MAX_NS)) { + if (system_state > SYSTEM_SCHEDULING && + interval > 2 * watchdog_max_interval) { + watchdog_max_interval = interval; + pr_warn("Long readout interval, skipping watchdog check: cs_nsec: %lld wd_nsec: %lld\n", + cs_nsec, wd_nsec); + } + watchdog_timer.expires = jiffies; + continue; + } + /* Check the deviation from the watchdog clocksource. */ md = cs->uncertainty_margin + watchdog->uncertainty_margin; if (abs(cs_nsec - wd_nsec) > md) { diff -u linux-xilinx-zynqmp-5.15.0/kernel/time/hrtimer.c linux-xilinx-zynqmp-5.15.0/kernel/time/hrtimer.c --- linux-xilinx-zynqmp-5.15.0/kernel/time/hrtimer.c +++ linux-xilinx-zynqmp-5.15.0/kernel/time/hrtimer.c @@ -1082,6 +1082,7 @@ enum hrtimer_mode mode) { debug_activate(timer, mode); + WARN_ON_ONCE(!base->cpu_base->online); base->cpu_base->active_bases |= 1 << base->index; @@ -2180,6 +2181,7 @@ cpu_base->softirq_next_timer = NULL; cpu_base->expires_next = KTIME_MAX; cpu_base->softirq_expires_next = KTIME_MAX; + cpu_base->online = 1; hrtimer_cpu_base_init_expiry_lock(cpu_base); return 0; } @@ -2216,29 +2218,22 @@ } } -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 +2244,14 @@ * 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); + old_base->online = 0; + 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; } @@ -2272,7 +2266,7 @@ /** * schedule_hrtimeout_range_clock - sleep until timeout * @expires: timeout value (ktime_t) - * @delta: slack in expires timeout (ktime_t) + * @delta: slack in expires timeout (ktime_t) for SCHED_OTHER tasks * @mode: timer mode * @clock_id: timer clock to be used */ @@ -2299,6 +2293,13 @@ return -EINTR; } + /* + * Override any slack passed by the user if under + * rt contraints. + */ + if (rt_task(current)) + delta = 0; + hrtimer_init_sleeper_on_stack(&t, clock_id, mode); hrtimer_set_expires_range_ns(&t.timer, *expires, delta); hrtimer_sleeper_start_expires(&t, mode); @@ -2318,7 +2319,7 @@ /** * schedule_hrtimeout_range - sleep until timeout * @expires: timeout value (ktime_t) - * @delta: slack in expires timeout (ktime_t) + * @delta: slack in expires timeout (ktime_t) for SCHED_OTHER tasks * @mode: timer mode * * Make the current task sleep until the given expiry time has @@ -2326,7 +2327,8 @@ * the current task state has been set (see set_current_state()). * * The @delta argument gives the kernel the freedom to schedule the - * actual wakeup to a time that is both power and performance friendly. + * actual wakeup to a time that is both power and performance friendly + * for regular (non RT/DL) tasks. * The kernel give the normal best effort behavior for "@expires+@delta", * but may decide to fire the timer earlier, but no earlier than @expires. * diff -u linux-xilinx-zynqmp-5.15.0/kernel/time/tick-sched.c linux-xilinx-zynqmp-5.15.0/kernel/time/tick-sched.c --- linux-xilinx-zynqmp-5.15.0/kernel/time/tick-sched.c +++ linux-xilinx-zynqmp-5.15.0/kernel/time/tick-sched.c @@ -1528,13 +1528,23 @@ void tick_cancel_sched_timer(int cpu) { struct tick_sched *ts = &per_cpu(tick_cpu_sched, cpu); + ktime_t idle_sleeptime, iowait_sleeptime; + unsigned long idle_calls, idle_sleeps; # ifdef CONFIG_HIGH_RES_TIMERS if (ts->sched_timer.base) hrtimer_cancel(&ts->sched_timer); # endif + idle_sleeptime = ts->idle_sleeptime; + iowait_sleeptime = ts->iowait_sleeptime; + idle_calls = ts->idle_calls; + idle_sleeps = ts->idle_sleeps; memset(ts, 0, sizeof(*ts)); + ts->idle_sleeptime = idle_sleeptime; + ts->iowait_sleeptime = iowait_sleeptime; + ts->idle_calls = idle_calls; + ts->idle_sleeps = idle_sleeps; } #endif diff -u linux-xilinx-zynqmp-5.15.0/kernel/time/timer.c linux-xilinx-zynqmp-5.15.0/kernel/time/timer.c --- linux-xilinx-zynqmp-5.15.0/kernel/time/timer.c +++ linux-xilinx-zynqmp-5.15.0/kernel/time/timer.c @@ -1155,7 +1155,8 @@ */ void add_timer(struct timer_list *timer) { - BUG_ON(timer_pending(timer)); + if (WARN_ON_ONCE(timer_pending(timer))) + return; __mod_timer(timer, timer->expires, MOD_TIMER_NOTPENDING); } EXPORT_SYMBOL(add_timer); @@ -1174,7 +1175,8 @@ struct timer_base *new_base, *base; unsigned long flags; - BUG_ON(timer_pending(timer) || !timer->function); + if (WARN_ON_ONCE(timer_pending(timer) || !timer->function)) + return; new_base = get_timer_cpu_base(timer->flags, cpu); @@ -2148,8 +2150,6 @@ struct timer_base *new_base; int b, i; - BUG_ON(cpu_online(cpu)); - for (b = 0; b < NR_BASES; b++) { old_base = per_cpu_ptr(&timer_bases[b], cpu); new_base = get_cpu_ptr(&timer_bases[b]); @@ -2166,7 +2166,8 @@ */ forward_timer_base(new_base); - BUG_ON(old_base->running_timer); + WARN_ON_ONCE(old_base->running_timer); + old_base->running_timer = NULL; for (i = 0; i < WHEEL_SIZE; i++) migrate_timer_list(new_base, old_base->vectors + i); diff -u linux-xilinx-zynqmp-5.15.0/kernel/trace/ring_buffer.c linux-xilinx-zynqmp-5.15.0/kernel/trace/ring_buffer.c --- linux-xilinx-zynqmp-5.15.0/kernel/trace/ring_buffer.c +++ linux-xilinx-zynqmp-5.15.0/kernel/trace/ring_buffer.c @@ -691,42 +691,6 @@ return ret == expect; } -static int rb_time_cmpxchg(rb_time_t *t, u64 expect, u64 set) -{ - unsigned long cnt, top, bottom; - unsigned long cnt2, top2, bottom2; - u64 val; - - /* The cmpxchg always fails if it interrupted an update */ - if (!__rb_time_read(t, &val, &cnt2)) - return false; - - if (val != expect) - return false; - - cnt = local_read(&t->cnt); - if ((cnt & 3) != cnt2) - return false; - - cnt2 = cnt + 1; - - rb_time_split(val, &top, &bottom); - top = rb_time_val_cnt(top, cnt); - bottom = rb_time_val_cnt(bottom, cnt); - - rb_time_split(set, &top2, &bottom2); - top2 = rb_time_val_cnt(top2, cnt2); - bottom2 = rb_time_val_cnt(bottom2, cnt2); - - if (!rb_time_read_cmpxchg(&t->cnt, cnt, cnt2)) - return false; - if (!rb_time_read_cmpxchg(&t->top, top, top2)) - return false; - if (!rb_time_read_cmpxchg(&t->bottom, bottom, bottom2)) - return false; - return true; -} - #else /* 64 bits */ /* local64_t always succeeds */ @@ -740,13 +704,6 @@ { local64_set(&t->time, val); } - -static bool rb_time_cmpxchg(rb_time_t *t, u64 expect, u64 set) -{ - u64 val; - val = local64_cmpxchg(&t->time, expect, set); - return val == expect; -} #endif /* @@ -895,9 +852,14 @@ if (!nr_pages || !full) return true; - dirty = ring_buffer_nr_dirty_pages(buffer, cpu); + /* + * Add one as dirty will never equal nr_pages, as the sub-buffer + * that the writer is on is not counted as dirty. + * This is needed if "buffer_percent" is set to 100. + */ + dirty = ring_buffer_nr_dirty_pages(buffer, cpu) + 1; - return (dirty * 100) > (full * nr_pages); + return (dirty * 100) >= (full * nr_pages); } /* @@ -957,7 +919,8 @@ /* make sure the waiters see the new index */ smp_wmb(); - rb_wake_up_waiters(&rbwork->work); + /* This can be called in any context */ + irq_work_queue(&rbwork->work); } /** @@ -1098,7 +1061,7 @@ full = 0; } else { if (!cpumask_test_cpu(cpu, buffer->cpumask)) - return -EINVAL; + return EPOLLERR; cpu_buffer = buffer->buffers[cpu]; work = &cpu_buffer->irq_work; @@ -1765,6 +1728,8 @@ free_buffer_page(bpage); } + free_page((unsigned long)cpu_buffer->free_page); + kfree(cpu_buffer); } @@ -2365,7 +2330,7 @@ */ barrier(); - if ((iter->head + length) > commit || length > BUF_MAX_DATA_SIZE) + if ((iter->head + length) > commit || length > BUF_PAGE_SIZE) /* Writer corrupted the read? */ goto reset; @@ -2932,25 +2897,6 @@ return length; } -static u64 rb_time_delta(struct ring_buffer_event *event) -{ - switch (event->type_len) { - case RINGBUF_TYPE_PADDING: - return 0; - - case RINGBUF_TYPE_TIME_EXTEND: - return rb_event_time_stamp(event); - - case RINGBUF_TYPE_TIME_STAMP: - return 0; - - case RINGBUF_TYPE_DATA: - return event->time_delta; - default: - return 0; - } -} - static inline int rb_try_to_discard(struct ring_buffer_per_cpu *cpu_buffer, struct ring_buffer_event *event) @@ -2959,8 +2905,6 @@ struct buffer_page *bpage; unsigned long index; unsigned long addr; - u64 write_stamp; - u64 delta; new_index = rb_event_index(event); old_index = new_index + rb_event_ts_length(event); @@ -2969,41 +2913,34 @@ bpage = READ_ONCE(cpu_buffer->tail_page); - delta = rb_time_delta(event); - - if (!rb_time_read(&cpu_buffer->write_stamp, &write_stamp)) - return 0; - - /* Make sure the write stamp is read before testing the location */ - barrier(); - + /* + * Make sure the tail_page is still the same and + * the next write location is the end of this event + */ if (bpage->page == (void *)addr && rb_page_write(bpage) == old_index) { unsigned long write_mask = local_read(&bpage->write) & ~RB_WRITE_MASK; unsigned long event_length = rb_event_length(event); - /* 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. + * 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. + * + * By setting the before_stamp to zero, the next event + * is not going to use the write_stamp and will instead + * create an absolute timestamp. This means there's no + * reason to update the wirte_stamp! */ - if (!delta) - rb_time_set(&cpu_buffer->before_stamp, 0); + 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 * that this event just added itself before updating * the write stamp. The interrupting event will fix the - * write stamp for us, and use the before stamp as its delta. + * write stamp for us, and use an absolute timestamp. */ /* @@ -3249,14 +3186,9 @@ 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)))) { /* @@ -3447,7 +3379,7 @@ return; /* - * If this interrupted another event, + * If this interrupted another event, */ if (atomic_inc_return(this_cpu_ptr(&checking)) != 1) goto out; @@ -3541,7 +3473,10 @@ * absolute timestamp. * Don't bother if this is the start of a new page (w == 0). */ - if (unlikely(!a_ok || !b_ok || (info->before != info->after && w))) { + if (!w) { + /* Use the sub-buffer timestamp */ + info->delta = 0; + } else if (unlikely(!a_ok || !b_ok || info->before != info->after)) { info->add_timestamp |= RB_ADD_STAMP_FORCE | RB_ADD_STAMP_EXTEND; info->length += RB_LEN_TIME_EXTEND; } else { @@ -3564,26 +3499,19 @@ /* See if we shot pass the end of this buffer page */ if (unlikely(write > BUF_PAGE_SIZE)) { - /* before and after may now different, fix it up*/ - b_ok = rb_time_read(&cpu_buffer->before_stamp, &info->before); - a_ok = rb_time_read(&cpu_buffer->write_stamp, &info->after); - if (a_ok && b_ok && info->before != info->after) - (void)rb_time_cmpxchg(&cpu_buffer->before_stamp, - info->before, info->after); - if (a_ok && b_ok) - check_buffer(cpu_buffer, info, CHECK_FULL_PAGE); + check_buffer(cpu_buffer, info, CHECK_FULL_PAGE); return rb_move_tail(cpu_buffer, tail, info); } if (likely(tail == w)) { - u64 save_before; - bool s_ok; - /* Nothing interrupted us between A and C */ /*D*/ rb_time_set(&cpu_buffer->write_stamp, info->ts); - barrier(); - /*E*/ s_ok = rb_time_read(&cpu_buffer->before_stamp, &save_before); - RB_WARN_ON(cpu_buffer, !s_ok); + /* + * If something came in between C and D, the write stamp + * may now not be in sync. But that's fine as the before_stamp + * will be different and then next event will just be forced + * to use an absolute timestamp. + */ if (likely(!(info->add_timestamp & (RB_ADD_STAMP_FORCE | RB_ADD_STAMP_ABSOLUTE)))) /* This did not interrupt any time update */ @@ -3591,41 +3519,40 @@ else /* Just use full timestamp for interrupting event */ info->delta = info->ts; - barrier(); check_buffer(cpu_buffer, info, tail); - if (unlikely(info->ts != save_before)) { - /* SLOW PATH - Interrupted between C and E */ - - a_ok = rb_time_read(&cpu_buffer->write_stamp, &info->after); - RB_WARN_ON(cpu_buffer, !a_ok); - - /* Write stamp must only go forward */ - if (save_before > info->after) { - /* - * We do not care about the result, only that - * it gets updated atomically. - */ - (void)rb_time_cmpxchg(&cpu_buffer->write_stamp, - info->after, save_before); - } - } } else { u64 ts; /* SLOW PATH - Interrupted between A and C */ - a_ok = rb_time_read(&cpu_buffer->write_stamp, &info->after); - /* Was interrupted before here, write_stamp must be valid */ + + /* Save the old before_stamp */ + a_ok = rb_time_read(&cpu_buffer->before_stamp, &info->before); RB_WARN_ON(cpu_buffer, !a_ok); + + /* + * Read a new timestamp and update the before_stamp to make + * the next event after this one force using an absolute + * timestamp. This is in case an interrupt were to come in + * between E and F. + */ ts = rb_time_stamp(cpu_buffer->buffer); + rb_time_set(&cpu_buffer->before_stamp, ts); + + barrier(); + /*E*/ a_ok = rb_time_read(&cpu_buffer->write_stamp, &info->after); + /* Was interrupted before here, write_stamp must be valid */ + RB_WARN_ON(cpu_buffer, !a_ok); barrier(); - /*E*/ if (write == (local_read(&tail_page->write) & RB_WRITE_MASK) && - info->after < ts && - rb_time_cmpxchg(&cpu_buffer->write_stamp, - info->after, ts)) { - /* Nothing came after this event between C and E */ + /*F*/ if (write == (local_read(&tail_page->write) & RB_WRITE_MASK) && + info->after == info->before && info->after < ts) { + /* + * Nothing came after this event between C and F, it is + * safe to use info->after for the delta as it + * matched info->before and is still valid. + */ info->delta = ts - info->after; } else { /* - * Interrupted between C and E: + * Interrupted between C and F: * Lost the previous events time stamp. Just set the * delta to zero, and this will be the same time as * the event this event interrupted. And the events that @@ -3676,6 +3603,12 @@ int nr_loops = 0; int add_ts_default; + /* ring buffer does cmpxchg, make sure it is safe in NMI context */ + if (!IS_ENABLED(CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG) && + (unlikely(in_nmi()))) { + return NULL; + } + rb_start_commit(cpu_buffer); /* The commit page can not change after this */ @@ -3699,6 +3632,8 @@ if (ring_buffer_time_stamp_abs(cpu_buffer->buffer)) { add_ts_default = RB_ADD_STAMP_ABSOLUTE; info.length += RB_LEN_TIME_EXTEND; + if (info.length > BUF_MAX_DATA_SIZE) + goto out_fail; } else { add_ts_default = RB_ADD_STAMP_NONE; } @@ -5079,7 +5014,8 @@ if (!iter) return NULL; - iter->event = kmalloc(BUF_MAX_DATA_SIZE, flags); + /* Holds the entire event: data and meta data */ + iter->event = kmalloc(BUF_PAGE_SIZE, flags); if (!iter->event) { kfree(iter); return NULL; diff -u linux-xilinx-zynqmp-5.15.0/kernel/trace/synth_event_gen_test.c linux-xilinx-zynqmp-5.15.0/kernel/trace/synth_event_gen_test.c --- linux-xilinx-zynqmp-5.15.0/kernel/trace/synth_event_gen_test.c +++ linux-xilinx-zynqmp-5.15.0/kernel/trace/synth_event_gen_test.c @@ -477,6 +477,17 @@ ret = test_trace_synth_event(); WARN_ON(ret); + + /* Disable when done */ + trace_array_set_clr_event(gen_synth_test->tr, + "synthetic", + "gen_synth_test", false); + trace_array_set_clr_event(empty_synth_test->tr, + "synthetic", + "empty_synth_test", false); + trace_array_set_clr_event(create_synth_test->tr, + "synthetic", + "create_synth_test", false); out: return ret; } diff -u linux-xilinx-zynqmp-5.15.0/kernel/trace/trace.c linux-xilinx-zynqmp-5.15.0/kernel/trace/trace.c --- linux-xilinx-zynqmp-5.15.0/kernel/trace/trace.c +++ linux-xilinx-zynqmp-5.15.0/kernel/trace/trace.c @@ -40,6 +40,7 @@ #include #include #include +#include #include #include #include @@ -1837,6 +1838,9 @@ __update_max_tr(tr, tsk, cpu); arch_spin_unlock(&tr->max_lock); + + /* Any waiters on the old snapshot buffer need to wake up */ + ring_buffer_wake_waiters(tr->array_buffer.buffer, RING_BUFFER_ALL_CPUS); } /** @@ -1888,12 +1892,23 @@ static int wait_on_pipe(struct trace_iterator *iter, int full) { + int ret; + /* Iterators are static, they should be filled or empty */ if (trace_buffer_iter(iter, iter->cpu_file)) return 0; - return ring_buffer_wait(iter->array_buffer->buffer, iter->cpu_file, - full); + ret = ring_buffer_wait(iter->array_buffer->buffer, iter->cpu_file, full); + +#ifdef CONFIG_TRACER_MAX_TRACE + /* + * Make sure this is still the snapshot buffer, as if a snapshot were + * to happen, this would now be the main buffer. + */ + if (iter->snapshot) + iter->array_buffer = &iter->tr->max_buffer; +#endif + return ret; } #ifdef CONFIG_FTRACE_STARTUP_TEST @@ -2222,7 +2237,7 @@ unsigned *map_cmdline_to_pid; unsigned cmdline_num; int cmdline_idx; - char *saved_cmdlines; + char saved_cmdlines[]; }; static struct saved_cmdlines_buffer *savedcmd; @@ -2236,47 +2251,60 @@ strncpy(get_saved_cmdlines(idx), cmdline, TASK_COMM_LEN); } -static int allocate_cmdlines_buffer(unsigned int val, - struct saved_cmdlines_buffer *s) +static void free_saved_cmdlines_buffer(struct saved_cmdlines_buffer *s) +{ + int order = get_order(sizeof(*s) + s->cmdline_num * TASK_COMM_LEN); + + kfree(s->map_cmdline_to_pid); + kmemleak_free(s); + free_pages((unsigned long)s, order); +} + +static struct saved_cmdlines_buffer *allocate_cmdlines_buffer(unsigned int val) { + struct saved_cmdlines_buffer *s; + struct page *page; + int orig_size, size; + int order; + + /* Figure out how much is needed to hold the given number of cmdlines */ + orig_size = sizeof(*s) + val * TASK_COMM_LEN; + order = get_order(orig_size); + size = 1 << (order + PAGE_SHIFT); + page = alloc_pages(GFP_KERNEL, order); + if (!page) + return NULL; + + s = page_address(page); + kmemleak_alloc(s, size, 1, GFP_KERNEL); + memset(s, 0, sizeof(*s)); + + /* Round up to actual allocation */ + val = (size - sizeof(*s)) / TASK_COMM_LEN; + s->cmdline_num = val; + s->map_cmdline_to_pid = kmalloc_array(val, sizeof(*s->map_cmdline_to_pid), GFP_KERNEL); - if (!s->map_cmdline_to_pid) - return -ENOMEM; - - s->saved_cmdlines = kmalloc_array(TASK_COMM_LEN, val, GFP_KERNEL); - if (!s->saved_cmdlines) { - kfree(s->map_cmdline_to_pid); - return -ENOMEM; + if (!s->map_cmdline_to_pid) { + free_saved_cmdlines_buffer(s); + return NULL; } s->cmdline_idx = 0; - s->cmdline_num = val; memset(&s->map_pid_to_cmdline, NO_CMDLINE_MAP, sizeof(s->map_pid_to_cmdline)); memset(s->map_cmdline_to_pid, NO_CMDLINE_MAP, val * sizeof(*s->map_cmdline_to_pid)); - return 0; + return s; } static int trace_create_savedcmd(void) { - int ret; - - savedcmd = kmalloc(sizeof(*savedcmd), GFP_KERNEL); - if (!savedcmd) - return -ENOMEM; - - ret = allocate_cmdlines_buffer(SAVED_CMDLINES_DEFAULT, savedcmd); - if (ret < 0) { - kfree(savedcmd); - savedcmd = NULL; - return -ENOMEM; - } + savedcmd = allocate_cmdlines_buffer(SAVED_CMDLINES_DEFAULT); - return 0; + return savedcmd ? 0 : -ENOMEM; } int is_tracing_stopped(void) @@ -2284,13 +2312,7 @@ 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 +2320,83 @@ 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 +2678,11 @@ 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 +2696,6 @@ WARN_ON_ONCE(1); preempt_enable(); } - - return; - failed: - trace_buffered_event_disable(); } static void enable_trace_buffered_event(void *data) @@ -2745,11 +2730,9 @@ 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 +2741,19 @@ 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; @@ -4696,7 +4681,11 @@ iter->leftover = ret; } else { - print_trace_line(iter); + ret = print_trace_line(iter); + if (ret == TRACE_TYPE_PARTIAL_LINE) { + iter->seq.full = 0; + trace_seq_puts(&iter->seq, "[LINE TOO BIG]\n"); + } ret = trace_print_seq(m, &iter->seq); /* * If we overflow the seq_file buffer, then it will @@ -4900,6 +4889,20 @@ 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; @@ -4910,10 +4913,17 @@ struct trace_event_file *file = inode->i_private; trace_array_put(file->tr); + event_file_put(file); return 0; } +int tracing_single_release_file_tr(struct inode *inode, struct file *filp) +{ + tracing_release_file_tr(inode, filp); + return single_release(inode, filp); +} + static int tracing_mark_open(struct inode *inode, struct file *filp) { stream_open(inode, filp); @@ -5951,26 +5961,14 @@ return simple_read_from_buffer(ubuf, cnt, ppos, buf, r); } -static void free_saved_cmdlines_buffer(struct saved_cmdlines_buffer *s) -{ - kfree(s->saved_cmdlines); - kfree(s->map_cmdline_to_pid); - kfree(s); -} - static int tracing_resize_saved_cmdlines(unsigned int val) { struct saved_cmdlines_buffer *s, *savedcmd_temp; - s = kmalloc(sizeof(*s), GFP_KERNEL); + s = allocate_cmdlines_buffer(val); if (!s) return -ENOMEM; - if (allocate_cmdlines_buffer(val, s) < 0) { - kfree(s); - return -ENOMEM; - } - preempt_disable(); arch_spin_lock(&trace_cmdline_lock); savedcmd_temp = savedcmd; @@ -6218,6 +6216,15 @@ 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, @@ -6262,13 +6269,15 @@ if (!tr->array_buffer.buffer) return 0; + /* Do not allow tracing while resizing 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->allocated_snapshot) goto out; ret = ring_buffer_resize(tr->max_buffer.buffer, size, cpu); @@ -6293,22 +6302,17 @@ 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; } @@ -8405,7 +8409,7 @@ wait_index = READ_ONCE(iter->wait_index); - ret = wait_on_pipe(iter, iter->tr->buffer_percent); + ret = wait_on_pipe(iter, iter->snapshot ? 0 : iter->tr->buffer_percent); if (ret) goto out; diff -u linux-xilinx-zynqmp-5.15.0/kernel/trace/trace.h linux-xilinx-zynqmp-5.15.0/kernel/trace/trace.h --- linux-xilinx-zynqmp-5.15.0/kernel/trace/trace.h +++ linux-xilinx-zynqmp-5.15.0/kernel/trace/trace.h @@ -593,6 +593,7 @@ 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); +int tracing_single_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); @@ -1620,6 +1621,9 @@ 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 -u linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_events.c linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_events.c --- linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_events.c +++ linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_events.c @@ -969,26 +969,38 @@ } } -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 @@ 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 @@ 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 @@ 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); @@ -2753,6 +2765,7 @@ update_event_fields(call, map[i]); } } + cond_resched(); } up_write(&trace_event_sem); } @@ -2783,6 +2796,7 @@ atomic_set(&file->tm_ref, 0); INIT_LIST_HEAD(&file->triggers); list_add(&file->list, &tr->events); + event_file_get(file); return file; } diff -u linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_events_filter.c linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_events_filter.c --- linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_events_filter.c +++ linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_events_filter.c @@ -1872,6 +1872,9 @@ 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 -u linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_events_hist.c linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_events_hist.c --- linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_events_hist.c +++ linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_events_hist.c @@ -4946,10 +4946,12 @@ { int ret; - ret = security_locked_down(LOCKDOWN_TRACEFS); + ret = tracing_open_file_tr(inode, file); if (ret) return ret; + /* Clear private_data to avoid warning in single_open() */ + file->private_data = NULL; return single_open(file, hist_show, file); } @@ -4957,7 +4959,7 @@ .open = event_hist_open, .read = seq_read, .llseek = seq_lseek, - .release = single_release, + .release = tracing_single_release_file_tr, }; #ifdef CONFIG_HIST_TRIGGERS_DEBUG @@ -5218,10 +5220,12 @@ { int ret; - ret = security_locked_down(LOCKDOWN_TRACEFS); + ret = tracing_open_file_tr(inode, file); if (ret) return ret; + /* Clear private_data to avoid warning in single_open() */ + file->private_data = NULL; return single_open(file, hist_debug_show, file); } @@ -5229,7 +5233,7 @@ .open = event_hist_debug_open, .read = seq_read, .llseek = seq_lseek, - .release = single_release, + .release = tracing_single_release_file_tr, }; #endif diff -u linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_events_synth.c linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_events_synth.c --- linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_events_synth.c +++ linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_events_synth.c @@ -454,7 +454,7 @@ #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 -u linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_events_trigger.c linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_events_trigger.c --- linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_events_trigger.c +++ linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_events_trigger.c @@ -1161,8 +1161,10 @@ struct event_trigger_data *data, struct trace_event_file *file) { - if (tracing_alloc_snapshot_instance(file->tr) != 0) - return 0; + int ret = tracing_alloc_snapshot_instance(file->tr); + + if (ret < 0) + return ret; return register_trigger(glob, ops, data, file); } diff -u linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_kprobe.c linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_kprobe.c --- linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_kprobe.c +++ linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_kprobe.c @@ -708,6 +708,38 @@ .priority = 1 /* Invoked after kprobe module callback */ }; +struct count_symbols_struct { + const char *func_name; + unsigned int count; +}; + +static int count_symbols(void *data, const char *name, struct module *unused0, + unsigned long unused1) +{ + struct count_symbols_struct *args = data; + + if (strcmp(args->func_name, name)) + return 0; + + args->count++; + + return 0; +} + +static unsigned int number_of_same_symbols(char *func_name) +{ + struct count_symbols_struct args = { + .func_name = func_name, + .count = 0, + }; + + kallsyms_on_each_symbol(count_symbols, &args); + + module_kallsyms_on_each_symbol(count_symbols, &args); + + return args.count; +} + static int __trace_kprobe_create(int argc, const char *argv[]) { /* @@ -836,6 +868,31 @@ } } + if (symbol && !strchr(symbol, ':')) { + unsigned int count; + + count = number_of_same_symbols(symbol); + if (count > 1) { + /* + * Users should use ADDR to remove the ambiguity of + * using KSYM only. + */ + trace_probe_log_err(0, NON_UNIQ_SYMBOL); + ret = -EADDRNOTAVAIL; + + goto error; + } else if (count == 0) { + /* + * We can return ENOENT earlier than when register the + * kprobe. + */ + trace_probe_log_err(0, BAD_PROBE_ADDR); + ret = -ENOENT; + + goto error; + } + } + trace_probe_log_set_index(0); if (event) { ret = traceprobe_parse_event_name(&event, &group, buf, @@ -942,10 +999,10 @@ /** * __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 +1075,7 @@ /** * __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 @@ -1755,6 +1812,7 @@ } #ifdef CONFIG_PERF_EVENTS + /* create a trace_kprobe, but don't add it to global lists */ struct trace_event_call * create_local_trace_kprobe(char *func, void *addr, unsigned long offs, @@ -1765,6 +1823,24 @@ int ret; char *event; + if (func) { + unsigned int count; + + count = number_of_same_symbols(func); + if (count > 1) + /* + * Users should use addr to remove the ambiguity of + * using func only. + */ + return ERR_PTR(-EADDRNOTAVAIL); + else if (count == 0) + /* + * We can return ENOENT earlier than when register the + * kprobe. + */ + return ERR_PTR(-ENOENT); + } + /* * local trace_kprobes are not added to dyn_event, so they are never * searched in find_trace_kprobe(). Therefore, there is no concern of diff -u linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_output.c linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_output.c --- linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_output.c +++ linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_output.c @@ -1446,11 +1446,12 @@ { struct print_entry *field; struct trace_seq *s = &iter->seq; + int max = iter->ent_size - offsetof(struct print_entry, buf); trace_assign_type(field, iter->ent); seq_print_ip_sym(s, field->ip, flags); - trace_seq_printf(s, ": %s", field->buf); + trace_seq_printf(s, ": %.*s", max, field->buf); return trace_handle_return(s); } @@ -1459,10 +1460,11 @@ struct trace_event *event) { struct print_entry *field; + int max = iter->ent_size - offsetof(struct print_entry, buf); trace_assign_type(field, iter->ent); - trace_seq_printf(&iter->seq, "# %lx %s", field->ip, field->buf); + trace_seq_printf(&iter->seq, "# %lx %.*s", field->ip, max, field->buf); return trace_handle_return(&iter->seq); } diff -u linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_probe.h linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_probe.h --- linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_probe.h +++ linux-xilinx-zynqmp-5.15.0/kernel/trace/trace_probe.h @@ -405,6 +405,7 @@ C(BAD_MAXACT, "Invalid maxactive number"), \ C(MAXACT_TOO_BIG, "Maxactive is too big"), \ C(BAD_PROBE_ADDR, "Invalid probed address or symbol"), \ + C(NON_UNIQ_SYMBOL, "The symbol is not unique"), \ C(BAD_RETPROBE, "Retprobe address must be an function entry"), \ C(BAD_ADDR_SUFFIX, "Invalid probed address suffix"), \ C(NO_GROUP_NAME, "Group name is not specified"), \ diff -u linux-xilinx-zynqmp-5.15.0/kernel/trace/tracing_map.c linux-xilinx-zynqmp-5.15.0/kernel/trace/tracing_map.c --- linux-xilinx-zynqmp-5.15.0/kernel/trace/tracing_map.c +++ linux-xilinx-zynqmp-5.15.0/kernel/trace/tracing_map.c @@ -574,7 +574,12 @@ } memcpy(elt->key, key, map->key_size); - entry->val = elt; + /* + * Ensure the initialization is visible and + * publish the elt. + */ + smp_wmb(); + WRITE_ONCE(entry->val, elt); atomic64_inc(&map->hits); return entry->val; diff -u linux-xilinx-zynqmp-5.15.0/kernel/watch_queue.c linux-xilinx-zynqmp-5.15.0/kernel/watch_queue.c --- linux-xilinx-zynqmp-5.15.0/kernel/watch_queue.c +++ linux-xilinx-zynqmp-5.15.0/kernel/watch_queue.c @@ -338,7 +338,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/kernel/watchdog.c linux-xilinx-zynqmp-5.15.0/kernel/watchdog.c --- linux-xilinx-zynqmp-5.15.0/kernel/watchdog.c +++ linux-xilinx-zynqmp-5.15.0/kernel/watchdog.c @@ -183,6 +183,13 @@ 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 -u linux-xilinx-zynqmp-5.15.0/kernel/workqueue.c linux-xilinx-zynqmp-5.15.0/kernel/workqueue.c --- linux-xilinx-zynqmp-5.15.0/kernel/workqueue.c +++ linux-xilinx-zynqmp-5.15.0/kernel/workqueue.c @@ -3277,6 +3277,15 @@ 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 @@ } /** - * 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 diff -u linux-xilinx-zynqmp-5.15.0/lib/Kconfig.debug linux-xilinx-zynqmp-5.15.0/lib/Kconfig.debug --- linux-xilinx-zynqmp-5.15.0/lib/Kconfig.debug +++ linux-xilinx-zynqmp-5.15.0/lib/Kconfig.debug @@ -1231,13 +1231,16 @@ 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 -u linux-xilinx-zynqmp-5.15.0/lib/debugobjects.c linux-xilinx-zynqmp-5.15.0/lib/debugobjects.c --- linux-xilinx-zynqmp-5.15.0/lib/debugobjects.c +++ linux-xilinx-zynqmp-5.15.0/lib/debugobjects.c @@ -593,9 +593,8 @@ static void __debug_object_init(void *addr, const struct debug_obj_descr *descr, int onstack) { - enum debug_obj_state state; + struct debug_obj *obj, o; struct debug_bucket *db; - struct debug_obj *obj; unsigned long flags; /* @@ -621,24 +620,18 @@ case ODEBUG_STATE_INIT: case ODEBUG_STATE_INACTIVE: obj->state = ODEBUG_STATE_INIT; - break; - - case ODEBUG_STATE_ACTIVE: - state = obj->state; raw_spin_unlock_irqrestore(&db->lock, flags); - debug_print_object(obj, "init"); - debug_object_fixup(descr->fixup_init, addr, state); - return; - - case ODEBUG_STATE_DESTROYED: - raw_spin_unlock_irqrestore(&db->lock, flags); - debug_print_object(obj, "init"); return; default: break; } + o = *obj; raw_spin_unlock_irqrestore(&db->lock, flags); + debug_print_object(&o, "init"); + + if (o.state == ODEBUG_STATE_ACTIVE) + debug_object_fixup(descr->fixup_init, addr, o.state); } /** @@ -679,11 +672,9 @@ int debug_object_activate(void *addr, const struct debug_obj_descr *descr) { struct debug_obj o = { .object = addr, .state = ODEBUG_STATE_NOTAVAILABLE, .descr = descr }; - enum debug_obj_state state; struct debug_bucket *db; struct debug_obj *obj; unsigned long flags; - int ret; if (!debug_objects_enabled) return 0; @@ -693,49 +684,38 @@ raw_spin_lock_irqsave(&db->lock, flags); obj = lookup_object_or_alloc(addr, db, descr, false, true); - if (likely(!IS_ERR_OR_NULL(obj))) { - bool print_object = false; - + if (unlikely(!obj)) { + raw_spin_unlock_irqrestore(&db->lock, flags); + debug_objects_oom(); + return 0; + } else if (likely(!IS_ERR(obj))) { switch (obj->state) { - case ODEBUG_STATE_INIT: - case ODEBUG_STATE_INACTIVE: - obj->state = ODEBUG_STATE_ACTIVE; - ret = 0; - break; - case ODEBUG_STATE_ACTIVE: - state = obj->state; - raw_spin_unlock_irqrestore(&db->lock, flags); - debug_print_object(obj, "activate"); - ret = debug_object_fixup(descr->fixup_activate, addr, state); - return ret ? 0 : -EINVAL; - case ODEBUG_STATE_DESTROYED: - print_object = true; - ret = -EINVAL; + o = *obj; break; + case ODEBUG_STATE_INIT: + case ODEBUG_STATE_INACTIVE: + obj->state = ODEBUG_STATE_ACTIVE; + fallthrough; default: - ret = 0; - break; + raw_spin_unlock_irqrestore(&db->lock, flags); + return 0; } - raw_spin_unlock_irqrestore(&db->lock, flags); - if (print_object) - debug_print_object(obj, "activate"); - return ret; } raw_spin_unlock_irqrestore(&db->lock, flags); + debug_print_object(&o, "activate"); - /* If NULL the allocation has hit OOM */ - if (!obj) { - debug_objects_oom(); - return 0; + switch (o.state) { + case ODEBUG_STATE_ACTIVE: + case ODEBUG_STATE_NOTAVAILABLE: + if (debug_object_fixup(descr->fixup_activate, addr, o.state)) + return 0; + fallthrough; + default: + return -EINVAL; } - - /* Object is neither static nor tracked. It's not initialized */ - debug_print_object(&o, "activate"); - ret = debug_object_fixup(descr->fixup_activate, addr, ODEBUG_STATE_NOTAVAILABLE); - return ret ? 0 : -EINVAL; } EXPORT_SYMBOL_GPL(debug_object_activate); @@ -746,10 +726,10 @@ */ void debug_object_deactivate(void *addr, const struct debug_obj_descr *descr) { + struct debug_obj o = { .object = addr, .state = ODEBUG_STATE_NOTAVAILABLE, .descr = descr }; struct debug_bucket *db; struct debug_obj *obj; unsigned long flags; - bool print_object = false; if (!debug_objects_enabled) return; @@ -761,33 +741,24 @@ obj = lookup_object(addr, db); if (obj) { switch (obj->state) { + case ODEBUG_STATE_DESTROYED: + break; case ODEBUG_STATE_INIT: case ODEBUG_STATE_INACTIVE: case ODEBUG_STATE_ACTIVE: - if (!obj->astate) - obj->state = ODEBUG_STATE_INACTIVE; - else - print_object = true; - break; - - case ODEBUG_STATE_DESTROYED: - print_object = true; - break; + if (obj->astate) + break; + obj->state = ODEBUG_STATE_INACTIVE; + fallthrough; default: - break; + raw_spin_unlock_irqrestore(&db->lock, flags); + return; } + o = *obj; } raw_spin_unlock_irqrestore(&db->lock, flags); - if (!obj) { - struct debug_obj o = { .object = addr, - .state = ODEBUG_STATE_NOTAVAILABLE, - .descr = descr }; - - debug_print_object(&o, "deactivate"); - } else if (print_object) { - debug_print_object(obj, "deactivate"); - } + debug_print_object(&o, "deactivate"); } EXPORT_SYMBOL_GPL(debug_object_deactivate); @@ -798,11 +769,9 @@ */ void debug_object_destroy(void *addr, const struct debug_obj_descr *descr) { - enum debug_obj_state state; + struct debug_obj *obj, o; struct debug_bucket *db; - struct debug_obj *obj; unsigned long flags; - bool print_object = false; if (!debug_objects_enabled) return; @@ -812,32 +781,31 @@ raw_spin_lock_irqsave(&db->lock, flags); obj = lookup_object(addr, db); - if (!obj) - goto out_unlock; + if (!obj) { + raw_spin_unlock_irqrestore(&db->lock, flags); + return; + } switch (obj->state) { + case ODEBUG_STATE_ACTIVE: + case ODEBUG_STATE_DESTROYED: + break; case ODEBUG_STATE_NONE: case ODEBUG_STATE_INIT: case ODEBUG_STATE_INACTIVE: obj->state = ODEBUG_STATE_DESTROYED; - break; - case ODEBUG_STATE_ACTIVE: - state = obj->state; + fallthrough; + default: raw_spin_unlock_irqrestore(&db->lock, flags); - debug_print_object(obj, "destroy"); - debug_object_fixup(descr->fixup_destroy, addr, state); return; - - case ODEBUG_STATE_DESTROYED: - print_object = true; - break; - default: - break; } -out_unlock: + + o = *obj; raw_spin_unlock_irqrestore(&db->lock, flags); - if (print_object) - debug_print_object(obj, "destroy"); + debug_print_object(&o, "destroy"); + + if (o.state == ODEBUG_STATE_ACTIVE) + debug_object_fixup(descr->fixup_destroy, addr, o.state); } EXPORT_SYMBOL_GPL(debug_object_destroy); @@ -848,9 +816,8 @@ */ void debug_object_free(void *addr, const struct debug_obj_descr *descr) { - enum debug_obj_state state; + struct debug_obj *obj, o; struct debug_bucket *db; - struct debug_obj *obj; unsigned long flags; if (!debug_objects_enabled) @@ -861,24 +828,26 @@ raw_spin_lock_irqsave(&db->lock, flags); obj = lookup_object(addr, db); - if (!obj) - goto out_unlock; + if (!obj) { + raw_spin_unlock_irqrestore(&db->lock, flags); + return; + } switch (obj->state) { case ODEBUG_STATE_ACTIVE: - state = obj->state; - raw_spin_unlock_irqrestore(&db->lock, flags); - debug_print_object(obj, "free"); - debug_object_fixup(descr->fixup_free, addr, state); - return; + break; default: hlist_del(&obj->node); raw_spin_unlock_irqrestore(&db->lock, flags); free_object(obj); return; } -out_unlock: + + o = *obj; raw_spin_unlock_irqrestore(&db->lock, flags); + debug_print_object(&o, "free"); + + debug_object_fixup(descr->fixup_free, addr, o.state); } EXPORT_SYMBOL_GPL(debug_object_free); @@ -928,10 +897,10 @@ debug_object_active_state(void *addr, const struct debug_obj_descr *descr, unsigned int expect, unsigned int next) { + struct debug_obj o = { .object = addr, .state = ODEBUG_STATE_NOTAVAILABLE, .descr = descr }; struct debug_bucket *db; struct debug_obj *obj; unsigned long flags; - bool print_object = false; if (!debug_objects_enabled) return; @@ -944,28 +913,19 @@ if (obj) { switch (obj->state) { case ODEBUG_STATE_ACTIVE: - if (obj->astate == expect) - obj->astate = next; - else - print_object = true; - break; - + if (obj->astate != expect) + break; + obj->astate = next; + raw_spin_unlock_irqrestore(&db->lock, flags); + return; default: - print_object = true; break; } + o = *obj; } raw_spin_unlock_irqrestore(&db->lock, flags); - if (!obj) { - struct debug_obj o = { .object = addr, - .state = ODEBUG_STATE_NOTAVAILABLE, - .descr = descr }; - - debug_print_object(&o, "active_state"); - } else if (print_object) { - debug_print_object(obj, "active_state"); - } + debug_print_object(&o, "active_state"); } EXPORT_SYMBOL_GPL(debug_object_active_state); @@ -973,12 +933,10 @@ static void __debug_check_no_obj_freed(const void *address, unsigned long size) { unsigned long flags, oaddr, saddr, eaddr, paddr, chunks; - const struct debug_obj_descr *descr; - enum debug_obj_state state; + int cnt, objs_checked = 0; + struct debug_obj *obj, o; struct debug_bucket *db; struct hlist_node *tmp; - struct debug_obj *obj; - int cnt, objs_checked = 0; saddr = (unsigned long) address; eaddr = saddr + size; @@ -1000,12 +958,10 @@ switch (obj->state) { case ODEBUG_STATE_ACTIVE: - descr = obj->descr; - state = obj->state; + o = *obj; raw_spin_unlock_irqrestore(&db->lock, flags); - debug_print_object(obj, "free"); - debug_object_fixup(descr->fixup_free, - (void *) oaddr, state); + debug_print_object(&o, "free"); + debug_object_fixup(o.descr->fixup_free, (void *)oaddr, o.state); goto repeat; default: hlist_del(&obj->node); diff -u linux-xilinx-zynqmp-5.15.0/lib/errname.c linux-xilinx-zynqmp-5.15.0/lib/errname.c --- linux-xilinx-zynqmp-5.15.0/lib/errname.c +++ linux-xilinx-zynqmp-5.15.0/lib/errname.c @@ -111,9 +111,6 @@ E(ENOSPC), E(ENOSR), E(ENOSTR), -#ifdef ENOSYM - E(ENOSYM), -#endif E(ENOSYS), E(ENOTBLK), E(ENOTCONN), @@ -144,9 +141,6 @@ #endif E(EREMOTE), E(EREMOTEIO), -#ifdef EREMOTERELEASE - E(EREMOTERELEASE), -#endif E(ERESTART), E(ERFKILL), E(EROFS), diff -u linux-xilinx-zynqmp-5.15.0/lib/idr.c linux-xilinx-zynqmp-5.15.0/lib/idr.c --- linux-xilinx-zynqmp-5.15.0/lib/idr.c +++ linux-xilinx-zynqmp-5.15.0/lib/idr.c @@ -508,7 +508,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/lib/kunit/debugfs.c linux-xilinx-zynqmp-5.15.0/lib/kunit/debugfs.c --- linux-xilinx-zynqmp-5.15.0/lib/kunit/debugfs.c +++ linux-xilinx-zynqmp-5.15.0/lib/kunit/debugfs.c @@ -52,12 +52,14 @@ static int debugfs_print_results(struct seq_file *seq, void *v) { struct kunit_suite *suite = (struct kunit_suite *)seq->private; - enum kunit_status success = kunit_suite_has_succeeded(suite); + enum kunit_status success; struct kunit_case *test_case; if (!suite || !suite->log) return 0; + success = kunit_suite_has_succeeded(suite); + seq_printf(seq, "%s", suite->log); kunit_suite_for_each_test_case(suite, test_case) diff -u linux-xilinx-zynqmp-5.15.0/lib/vsprintf.c linux-xilinx-zynqmp-5.15.0/lib/vsprintf.c --- linux-xilinx-zynqmp-5.15.0/lib/vsprintf.c +++ linux-xilinx-zynqmp-5.15.0/lib/vsprintf.c @@ -2111,15 +2111,20 @@ /* Loop starting from the root node to the current node. */ for (depth = fwnode_count_parents(fwnode); depth >= 0; depth--) { - struct fwnode_handle *__fwnode = - fwnode_get_nth_parent(fwnode, depth); + /* + * Only get a reference for other nodes (i.e. parent nodes). + * fwnode refcount may be 0 here. + */ + struct fwnode_handle *__fwnode = depth ? + fwnode_get_nth_parent(fwnode, depth) : fwnode; buf = string(buf, end, fwnode_get_name_prefix(__fwnode), default_str_spec); buf = string(buf, end, fwnode_get_name(__fwnode), default_str_spec); - fwnode_handle_put(__fwnode); + if (depth) + fwnode_handle_put(__fwnode); } return buf; diff -u linux-xilinx-zynqmp-5.15.0/mm/cma.c linux-xilinx-zynqmp-5.15.0/mm/cma.c --- linux-xilinx-zynqmp-5.15.0/mm/cma.c +++ linux-xilinx-zynqmp-5.15.0/mm/cma.c @@ -503,7 +503,7 @@ */ 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 -u linux-xilinx-zynqmp-5.15.0/mm/filemap.c linux-xilinx-zynqmp-5.15.0/mm/filemap.c --- linux-xilinx-zynqmp-5.15.0/mm/filemap.c +++ linux-xilinx-zynqmp-5.15.0/mm/filemap.c @@ -2649,6 +2649,15 @@ end_offset = min_t(loff_t, isize, iocb->ki_pos + iter->count); /* + * Pairs with a barrier in + * block_write_end()->mark_buffer_dirty() or other page + * dirtying routines like iomap_write_end() to ensure + * changes to page contents are visible before we see + * increased inode size. + */ + smp_rmb(); + + /* * Once we start copying data, we don't want to be touching any * cachelines that might be contended: */ @@ -3209,7 +3218,7 @@ } } - 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 -u linux-xilinx-zynqmp-5.15.0/mm/kasan/report.c linux-xilinx-zynqmp-5.15.0/mm/kasan/report.c --- linux-xilinx-zynqmp-5.15.0/mm/kasan/report.c +++ linux-xilinx-zynqmp-5.15.0/mm/kasan/report.c @@ -457,7 +457,7 @@ return ret; } -#ifdef CONFIG_KASAN_INLINE +#if defined(CONFIG_KASAN_GENERIC) || defined(CONFIG_KASAN_SW_TAGS) /* * With CONFIG_KASAN_INLINE, accesses to bogus pointers (outside the high * canonical half of the address space) cause out-of-bounds shadow memory reads diff -u linux-xilinx-zynqmp-5.15.0/mm/memblock.c linux-xilinx-zynqmp-5.15.0/mm/memblock.c --- linux-xilinx-zynqmp-5.15.0/mm/memblock.c +++ linux-xilinx-zynqmp-5.15.0/mm/memblock.c @@ -661,6 +661,7 @@ * @base: base address of the new region * @size: size of the new region * @nid: nid of the new region + * @flags: flags of the new region * * Add new memblock region [@base, @base + @size) to the "memory" * type. See memblock_add_range() description for mode details @@ -669,14 +670,14 @@ * 0 on success, -errno on failure. */ int __init_memblock memblock_add_node(phys_addr_t base, phys_addr_t size, - int nid) + int nid, enum memblock_flags flags) { phys_addr_t end = base + size - 1; - memblock_dbg("%s: [%pa-%pa] nid=%d %pS\n", __func__, - &base, &end, nid, (void *)_RET_IP_); + memblock_dbg("%s: [%pa-%pa] nid=%d flags=%x %pS\n", __func__, + &base, &end, nid, flags, (void *)_RET_IP_); - return memblock_add_range(&memblock.memory, base, size, nid, 0); + return memblock_add_range(&memblock.memory, base, size, nid, flags); } /** diff -u linux-xilinx-zynqmp-5.15.0/mm/memcontrol.c linux-xilinx-zynqmp-5.15.0/mm/memcontrol.c --- linux-xilinx-zynqmp-5.15.0/mm/memcontrol.c +++ linux-xilinx-zynqmp-5.15.0/mm/memcontrol.c @@ -662,7 +662,14 @@ x = __this_cpu_add_return(stats_updates, abs(val)); if (x > MEMCG_CHARGE_BATCH) { - atomic_add(x / MEMCG_CHARGE_BATCH, &stats_flush_threshold); + /* + * If stats_flush_threshold exceeds the threshold + * (>num_online_cpus()), cgroup stats update will be triggered + * in __mem_cgroup_flush_stats(). Increasing this var further + * is redundant and simply adds overhead in atomic update. + */ + if (atomic_read(&stats_flush_threshold) <= num_online_cpus()) + atomic_add(x / MEMCG_CHARGE_BATCH, &stats_flush_threshold); __this_cpu_write(stats_updates, 0); } } @@ -2822,7 +2829,8 @@ * 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 -u linux-xilinx-zynqmp-5.15.0/mm/memory-failure.c linux-xilinx-zynqmp-5.15.0/mm/memory-failure.c --- linux-xilinx-zynqmp-5.15.0/mm/memory-failure.c +++ linux-xilinx-zynqmp-5.15.0/mm/memory-failure.c @@ -1331,7 +1331,7 @@ * This check implies we don't kill processes if their pages * are in the swap cache early. Those are always late kills. */ - if (!page_mapped(hpage)) + if (!page_mapped(p)) return true; if (PageKsm(p)) { @@ -1397,10 +1397,10 @@ } } - unmap_success = !page_mapped(hpage); + unmap_success = !page_mapped(p); if (!unmap_success) pr_err("Memory failure: %#lx: failed to unmap page (mapcount=%d)\n", - pfn, page_mapcount(hpage)); + pfn, page_mapcount(p)); /* * try_to_unmap() might put mlocked page in lru cache, so call diff -u linux-xilinx-zynqmp-5.15.0/mm/memory.c linux-xilinx-zynqmp-5.15.0/mm/memory.c --- linux-xilinx-zynqmp-5.15.0/mm/memory.c +++ linux-xilinx-zynqmp-5.15.0/mm/memory.c @@ -3452,8 +3452,8 @@ void unmap_mapping_range(struct address_space *mapping, loff_t const holebegin, loff_t const holelen, int even_cows) { - pgoff_t hba = holebegin >> PAGE_SHIFT; - pgoff_t hlen = (holelen + PAGE_SIZE - 1) >> PAGE_SHIFT; + pgoff_t hba = (pgoff_t)(holebegin) >> PAGE_SHIFT; + pgoff_t hlen = ((pgoff_t)(holelen) + PAGE_SIZE - 1) >> PAGE_SHIFT; /* Check for overflow. */ if (sizeof(holelen) > sizeof(hlen)) { diff -u linux-xilinx-zynqmp-5.15.0/mm/memory_hotplug.c linux-xilinx-zynqmp-5.15.0/mm/memory_hotplug.c --- linux-xilinx-zynqmp-5.15.0/mm/memory_hotplug.c +++ linux-xilinx-zynqmp-5.15.0/mm/memory_hotplug.c @@ -1384,8 +1384,11 @@ mem_hotplug_begin(); - if (IS_ENABLED(CONFIG_ARCH_KEEP_MEMBLOCK)) - memblock_add_node(start, size, nid); + if (IS_ENABLED(CONFIG_ARCH_KEEP_MEMBLOCK)) { + ret = memblock_add_node(start, size, nid, MEMBLOCK_NONE); + if (ret) + goto error_mem_hotplug_end; + } ret = __try_online_node(nid, false); if (ret < 0) @@ -1458,6 +1461,7 @@ rollback_node_hotadd(nid); if (IS_ENABLED(CONFIG_ARCH_KEEP_MEMBLOCK)) memblock_remove(start, size); +error_mem_hotplug_end: mem_hotplug_done(); return ret; } @@ -1677,7 +1681,7 @@ */ 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 -u linux-xilinx-zynqmp-5.15.0/mm/migrate.c linux-xilinx-zynqmp-5.15.0/mm/migrate.c --- linux-xilinx-zynqmp-5.15.0/mm/migrate.c +++ linux-xilinx-zynqmp-5.15.0/mm/migrate.c @@ -1788,6 +1788,7 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/mm/page-writeback.c linux-xilinx-zynqmp-5.15.0/mm/page-writeback.c --- linux-xilinx-zynqmp-5.15.0/mm/page-writeback.c +++ linux-xilinx-zynqmp-5.15.0/mm/page-writeback.c @@ -1529,7 +1529,7 @@ */ dtc->wb_thresh = __wb_calc_thresh(dtc); dtc->wb_bg_thresh = dtc->thresh ? - div_u64((u64)dtc->wb_thresh * dtc->bg_thresh, dtc->thresh) : 0; + div64_u64(dtc->wb_thresh * dtc->bg_thresh, dtc->thresh) : 0; /* * In order to avoid the stacked BDI deadlock we need diff -u linux-xilinx-zynqmp-5.15.0/mm/page_alloc.c linux-xilinx-zynqmp-5.15.0/mm/page_alloc.c --- linux-xilinx-zynqmp-5.15.0/mm/page_alloc.c +++ linux-xilinx-zynqmp-5.15.0/mm/page_alloc.c @@ -9481,6 +9481,7 @@ next_page = page; current_buddy = page + size; } + page = next_page; if (set_page_guard(zone, current_buddy, high, migratetype)) continue; @@ -9488,7 +9489,6 @@ if (current_buddy != target) { add_to_free_list(current_buddy, zone, high, migratetype); set_buddy_order(current_buddy, high); - page = next_page; } } } diff -u linux-xilinx-zynqmp-5.15.0/net/8021q/vlan_dev.c linux-xilinx-zynqmp-5.15.0/net/8021q/vlan_dev.c --- linux-xilinx-zynqmp-5.15.0/net/8021q/vlan_dev.c +++ linux-xilinx-zynqmp-5.15.0/net/8021q/vlan_dev.c @@ -622,7 +622,7 @@ } /* 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 @@ } } +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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/9p/client.c linux-xilinx-zynqmp-5.15.0/net/9p/client.c --- linux-xilinx-zynqmp-5.15.0/net/9p/client.c +++ linux-xilinx-zynqmp-5.15.0/net/9p/client.c @@ -520,12 +520,14 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/9p/protocol.c linux-xilinx-zynqmp-5.15.0/net/9p/protocol.c --- linux-xilinx-zynqmp-5.15.0/net/9p/protocol.c +++ linux-xilinx-zynqmp-5.15.0/net/9p/protocol.c @@ -230,6 +230,8 @@ uint16_t *nwname = va_arg(ap, uint16_t *); char ***wnames = va_arg(ap, char ***); + *wnames = NULL; + errcode = p9pdu_readf(pdu, proto_version, "w", nwname); if (!errcode) { @@ -239,6 +241,8 @@ GFP_NOFS); if (!*wnames) errcode = -ENOMEM; + else + (*wnames)[0] = NULL; } if (!errcode) { @@ -250,8 +254,10 @@ proto_version, "s", &(*wnames)[i]); - if (errcode) + if (errcode) { + (*wnames)[i] = NULL; break; + } } } @@ -259,11 +265,14 @@ if (*wnames) { int i; - for (i = 0; i < *nwname; i++) + for (i = 0; i < *nwname; i++) { + if (!(*wnames)[i]) + break; kfree((*wnames)[i]); + } + kfree(*wnames); + *wnames = NULL; } - kfree(*wnames); - *wnames = NULL; } } break; diff -u linux-xilinx-zynqmp-5.15.0/net/9p/trans_fd.c linux-xilinx-zynqmp-5.15.0/net/9p/trans_fd.c --- linux-xilinx-zynqmp-5.15.0/net/9p/trans_fd.c +++ linux-xilinx-zynqmp-5.15.0/net/9p/trans_fd.c @@ -835,14 +835,21 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/batman-adv/soft-interface.c linux-xilinx-zynqmp-5.15.0/net/batman-adv/soft-interface.c --- linux-xilinx-zynqmp-5.15.0/net/batman-adv/soft-interface.c +++ linux-xilinx-zynqmp-5.15.0/net/batman-adv/soft-interface.c @@ -444,7 +444,7 @@ if (!pskb_may_pull(skb, VLAN_ETH_HLEN)) goto dropped; - vhdr = (struct vlan_ethhdr *)skb->data; + vhdr = skb_vlan_eth_hdr(skb); /* drop batman-in-batman packets to prevent loops */ if (vhdr->h_vlan_encapsulated_proto != htons(ETH_P_BATMAN)) diff -u linux-xilinx-zynqmp-5.15.0/net/bluetooth/af_bluetooth.c linux-xilinx-zynqmp-5.15.0/net/bluetooth/af_bluetooth.c --- linux-xilinx-zynqmp-5.15.0/net/bluetooth/af_bluetooth.c +++ linux-xilinx-zynqmp-5.15.0/net/bluetooth/af_bluetooth.c @@ -263,11 +263,14 @@ 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 @@ skb_free_datagram(sk, skb); + release_sock(sk); + if (flags & MSG_TRUNC) copied = skblen; diff -u linux-xilinx-zynqmp-5.15.0/net/bluetooth/hci_conn.c linux-xilinx-zynqmp-5.15.0/net/bluetooth/hci_conn.c --- linux-xilinx-zynqmp-5.15.0/net/bluetooth/hci_conn.c +++ linux-xilinx-zynqmp-5.15.0/net/bluetooth/hci_conn.c @@ -135,13 +135,11 @@ 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 @@ 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); @@ -1429,12 +1436,10 @@ hci_send_cmd(conn->hdev, HCI_OP_AUTH_REQUESTED, sizeof(cp), &cp); - /* If we're already encrypted set the REAUTH_PEND flag, - * otherwise set the ENCRYPT_PEND. + /* Set the ENCRYPT_PEND to trigger encryption after + * authentication. */ - if (test_bit(HCI_CONN_ENCRYPT, &conn->flags)) - set_bit(HCI_CONN_REAUTH_PEND, &conn->flags); - else + if (!test_bit(HCI_CONN_ENCRYPT, &conn->flags)) set_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags); } @@ -1477,34 +1482,41 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/bluetooth/hci_core.c linux-xilinx-zynqmp-5.15.0/net/bluetooth/hci_core.c --- linux-xilinx-zynqmp-5.15.0/net/bluetooth/hci_core.c +++ linux-xilinx-zynqmp-5.15.0/net/bluetooth/hci_core.c @@ -3920,7 +3920,11 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/bluetooth/hci_event.c linux-xilinx-zynqmp-5.15.0/net/bluetooth/hci_event.c --- linux-xilinx-zynqmp-5.15.0/net/bluetooth/hci_event.c +++ linux-xilinx-zynqmp-5.15.0/net/bluetooth/hci_event.c @@ -25,6 +25,8 @@ /* Bluetooth HCI event handling. */ #include +#include +#include #include #include @@ -1924,7 +1926,8 @@ return; } - set_bit(HCI_INQUIRY, &hdev->flags); + if (hci_sent_cmd_data(hdev, HCI_OP_INQUIRY)) + set_bit(HCI_INQUIRY, &hdev->flags); } static void hci_cs_create_conn(struct hci_dev *hdev, __u8 status) @@ -2794,6 +2797,16 @@ 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); @@ -3004,14 +3017,8 @@ if (!ev->status) { clear_bit(HCI_CONN_AUTH_FAILURE, &conn->flags); - - if (!hci_conn_ssp_enabled(conn) && - test_bit(HCI_CONN_REAUTH_PEND, &conn->flags)) { - bt_dev_info(hdev, "re-auth of legacy device is not possible."); - } else { - set_bit(HCI_CONN_AUTH, &conn->flags); - conn->sec_level = conn->pending_sec_level; - } + set_bit(HCI_CONN_AUTH, &conn->flags); + conn->sec_level = conn->pending_sec_level; } else { if (ev->status == HCI_ERROR_PIN_OR_KEY_MISSING) set_bit(HCI_CONN_AUTH_FAILURE, &conn->flags); @@ -3020,7 +3027,6 @@ } clear_bit(HCI_CONN_AUTH_PEND, &conn->flags); - clear_bit(HCI_CONN_REAUTH_PEND, &conn->flags); if (conn->state == BT_CONFIG) { if (!ev->status && hci_conn_ssp_enabled(conn)) { @@ -3107,6 +3113,7 @@ const struct hci_rp_read_enc_key_size *rp; struct hci_conn *conn; u16 handle; + u8 rp_status; BT_DBG("%s status 0x%02x", hdev->name, status); @@ -3116,6 +3123,7 @@ } rp = (void *)skb->data; + rp_status = rp->status; handle = le16_to_cpu(rp->handle); hci_dev_lock(hdev); @@ -3128,15 +3136,30 @@ * secure approach is to then assume the key size is 0 to force a * disconnection. */ - if (rp->status) { + if (rp_status) { bt_dev_err(hdev, "failed to read key size for handle %u", handle); conn->enc_key_size = 0; } else { conn->enc_key_size = rp->key_size; + rp_status = 0; + + if (conn->enc_key_size < hdev->min_enc_key_size) { + /* As slave role, the conn->state has been set to + * BT_CONNECTED and l2cap conn req might not be received + * yet, at this moment the l2cap layer almost does + * nothing with the non-zero status. + * So we also clear encrypt related bits, and then the + * handler of l2cap conn req will get the right secure + * state at a later time. + */ + rp_status = HCI_ERROR_AUTH_FAILURE; + clear_bit(HCI_CONN_ENCRYPT, &conn->flags); + clear_bit(HCI_CONN_AES_CCM, &conn->flags); + } } - hci_encrypt_cfm(conn, 0); + hci_encrypt_cfm(conn, rp_status); unlock: hci_dev_unlock(hdev); @@ -4173,6 +4196,15 @@ 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 +4709,8 @@ * 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 +4720,8 @@ * 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 +4737,7 @@ 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 +4982,7 @@ 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 */ @@ -6040,6 +6072,10 @@ return send_conn_param_neg_reply(hdev, handle, HCI_ERROR_UNKNOWN_CONN_ID); + if (max > hcon->le_conn_max_interval) + return send_conn_param_neg_reply(hdev, handle, + HCI_ERROR_INVALID_LL_PARAMS); + if (hci_check_conn_params(min, max, latency, timeout)) return send_conn_param_neg_reply(hdev, handle, HCI_ERROR_INVALID_LL_PARAMS); diff -u linux-xilinx-zynqmp-5.15.0/net/bluetooth/hci_sock.c linux-xilinx-zynqmp-5.15.0/net/bluetooth/hci_sock.c --- linux-xilinx-zynqmp-5.15.0/net/bluetooth/hci_sock.c +++ linux-xilinx-zynqmp-5.15.0/net/bluetooth/hci_sock.c @@ -438,7 +438,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/bluetooth/hci_sysfs.c linux-xilinx-zynqmp-5.15.0/net/bluetooth/hci_sysfs.c --- linux-xilinx-zynqmp-5.15.0/net/bluetooth/hci_sysfs.c +++ linux-xilinx-zynqmp-5.15.0/net/bluetooth/hci_sysfs.c @@ -33,7 +33,7 @@ { 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 @@ { 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 @@ put_device(dev); } - device_del(&conn->dev); - - hci_dev_put(hdev); + device_unregister(&conn->dev); } static void bt_host_release(struct device *dev) diff -u linux-xilinx-zynqmp-5.15.0/net/bluetooth/l2cap_core.c linux-xilinx-zynqmp-5.15.0/net/bluetooth/l2cap_core.c --- linux-xilinx-zynqmp-5.15.0/net/bluetooth/l2cap_core.c +++ linux-xilinx-zynqmp-5.15.0/net/bluetooth/l2cap_core.c @@ -5614,7 +5614,13 @@ memset(&rsp, 0, sizeof(rsp)); - err = hci_check_conn_params(min, max, latency, to_multiplier); + if (max > hcon->le_conn_max_interval) { + BT_DBG("requested connection interval exceeds current bounds."); + err = -EINVAL; + } else { + err = hci_check_conn_params(min, max, latency, to_multiplier); + } + if (err) rsp.result = cpu_to_le16(L2CAP_CONN_PARAM_REJECTED); else @@ -6493,6 +6499,14 @@ 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 +6532,25 @@ if (len > skb->len || !cmd->ident) { BT_DBG("corrupted command"); - break; + l2cap_sig_send_rej(conn, cmd->ident); + skb_pull(skb, len > skb->len ? skb->len : len); + continue; } 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 -u linux-xilinx-zynqmp-5.15.0/net/bluetooth/mgmt.c linux-xilinx-zynqmp-5.15.0/net/bluetooth/mgmt.c --- linux-xilinx-zynqmp-5.15.0/net/bluetooth/mgmt.c +++ linux-xilinx-zynqmp-5.15.0/net/bluetooth/mgmt.c @@ -2378,7 +2378,8 @@ for (i = 0; i < key_count; i++) { struct mgmt_link_key_info *key = &cp->keys[i]; - if (key->addr.type != BDADDR_BREDR || key->type > 0x08) + /* Considering SMP over BREDR/LE, there is no need to check addr_type */ + if (key->type > 0x08) return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS, MGMT_STATUS_INVALID_PARAMS); @@ -6180,6 +6181,7 @@ for (i = 0; i < irk_count; i++) { struct mgmt_irk_info *irk = &cp->irks[i]; + u8 addr_type = le_addr_type(irk->addr.type); if (hci_is_blocked_key(hdev, HCI_BLOCKED_KEY_TYPE_IRK, @@ -6189,8 +6191,12 @@ continue; } + /* When using SMP over BR/EDR, the addr type should be set to BREDR */ + if (irk->addr.type == BDADDR_BREDR) + addr_type = BDADDR_BREDR; + hci_add_irk(hdev, &irk->addr.bdaddr, - le_addr_type(irk->addr.type), irk->val, + addr_type, irk->val, BDADDR_ANY); } @@ -6271,6 +6277,7 @@ for (i = 0; i < key_count; i++) { struct mgmt_ltk_info *key = &cp->keys[i]; u8 type, authenticated; + u8 addr_type = le_addr_type(key->addr.type); if (hci_is_blocked_key(hdev, HCI_BLOCKED_KEY_TYPE_LTK, @@ -6305,8 +6312,12 @@ continue; } + /* When using SMP over BR/EDR, the addr type should be set to BREDR */ + if (key->addr.type == BDADDR_BREDR) + addr_type = BDADDR_BREDR; + hci_add_ltk(hdev, &key->addr.bdaddr, - le_addr_type(key->addr.type), type, authenticated, + addr_type, type, authenticated, key->val, key->enc_size, key->ediv, key->rand); } @@ -8673,7 +8684,7 @@ ev.store_hint = persistent; bacpy(&ev.key.addr.bdaddr, &key->bdaddr); - ev.key.addr.type = BDADDR_BREDR; + ev.key.addr.type = link_to_bdaddr(key->link_type, key->bdaddr_type); ev.key.type = key->type; memcpy(ev.key.val, key->val, HCI_LINK_KEY_SIZE); ev.key.pin_len = key->pin_len; @@ -8724,7 +8735,7 @@ ev.store_hint = persistent; bacpy(&ev.key.addr.bdaddr, &key->bdaddr); - ev.key.addr.type = link_to_bdaddr(LE_LINK, key->bdaddr_type); + ev.key.addr.type = link_to_bdaddr(key->link_type, key->bdaddr_type); ev.key.type = mgmt_ltk_type(key); ev.key.enc_size = key->enc_size; ev.key.ediv = key->ediv; @@ -8753,7 +8764,7 @@ bacpy(&ev.rpa, &irk->rpa); bacpy(&ev.irk.addr.bdaddr, &irk->bdaddr); - ev.irk.addr.type = link_to_bdaddr(LE_LINK, irk->addr_type); + ev.irk.addr.type = link_to_bdaddr(irk->link_type, irk->addr_type); memcpy(ev.irk.val, irk->val, sizeof(irk->val)); mgmt_event(MGMT_EV_NEW_IRK, hdev, &ev, sizeof(ev), NULL); @@ -8782,7 +8793,7 @@ ev.store_hint = persistent; bacpy(&ev.key.addr.bdaddr, &csrk->bdaddr); - ev.key.addr.type = link_to_bdaddr(LE_LINK, csrk->bdaddr_type); + ev.key.addr.type = link_to_bdaddr(csrk->link_type, csrk->bdaddr_type); ev.key.type = csrk->type; memcpy(ev.key.val, csrk->val, sizeof(csrk->val)); diff -u linux-xilinx-zynqmp-5.15.0/net/bridge/br_multicast.c linux-xilinx-zynqmp-5.15.0/net/bridge/br_multicast.c --- linux-xilinx-zynqmp-5.15.0/net/bridge/br_multicast.c +++ linux-xilinx-zynqmp-5.15.0/net/bridge/br_multicast.c @@ -1607,6 +1607,10 @@ } #endif +static void br_multicast_query_delay_expired(struct timer_list *t) +{ +} + static void br_multicast_select_own_querier(struct net_bridge_mcast *brmctx, struct br_ip *ip, struct sk_buff *skb) @@ -3024,7 +3028,7 @@ unsigned long max_delay) { if (!timer_pending(&query->timer)) - query->delay_time = jiffies + max_delay; + mod_timer(&query->delay_timer, jiffies + max_delay); mod_timer(&query->timer, jiffies + brmctx->multicast_querier_interval); } @@ -3867,13 +3871,11 @@ brmctx->multicast_querier_interval = 255 * HZ; brmctx->multicast_membership_interval = 260 * HZ; - brmctx->ip4_other_query.delay_time = 0; brmctx->ip4_querier.port_ifidx = 0; seqcount_spinlock_init(&brmctx->ip4_querier.seq, &br->multicast_lock); brmctx->multicast_igmp_version = 2; #if IS_ENABLED(CONFIG_IPV6) brmctx->multicast_mld_version = 1; - brmctx->ip6_other_query.delay_time = 0; brmctx->ip6_querier.port_ifidx = 0; seqcount_spinlock_init(&brmctx->ip6_querier.seq, &br->multicast_lock); #endif @@ -3882,6 +3884,8 @@ br_ip4_multicast_local_router_expired, 0); timer_setup(&brmctx->ip4_other_query.timer, br_ip4_multicast_querier_expired, 0); + timer_setup(&brmctx->ip4_other_query.delay_timer, + br_multicast_query_delay_expired, 0); timer_setup(&brmctx->ip4_own_query.timer, br_ip4_multicast_query_expired, 0); #if IS_ENABLED(CONFIG_IPV6) @@ -3889,6 +3893,8 @@ br_ip6_multicast_local_router_expired, 0); timer_setup(&brmctx->ip6_other_query.timer, br_ip6_multicast_querier_expired, 0); + timer_setup(&brmctx->ip6_other_query.delay_timer, + br_multicast_query_delay_expired, 0); timer_setup(&brmctx->ip6_own_query.timer, br_ip6_multicast_query_expired, 0); #endif @@ -4023,10 +4029,12 @@ { del_timer_sync(&brmctx->ip4_mc_router_timer); del_timer_sync(&brmctx->ip4_other_query.timer); + del_timer_sync(&brmctx->ip4_other_query.delay_timer); del_timer_sync(&brmctx->ip4_own_query.timer); #if IS_ENABLED(CONFIG_IPV6) del_timer_sync(&brmctx->ip6_mc_router_timer); del_timer_sync(&brmctx->ip6_other_query.timer); + del_timer_sync(&brmctx->ip6_other_query.delay_timer); del_timer_sync(&brmctx->ip6_own_query.timer); #endif } @@ -4469,13 +4477,15 @@ max_delay = brmctx->multicast_query_response_interval; if (!timer_pending(&brmctx->ip4_other_query.timer)) - brmctx->ip4_other_query.delay_time = jiffies + max_delay; + mod_timer(&brmctx->ip4_other_query.delay_timer, + jiffies + max_delay); br_multicast_start_querier(brmctx, &brmctx->ip4_own_query); #if IS_ENABLED(CONFIG_IPV6) if (!timer_pending(&brmctx->ip6_other_query.timer)) - brmctx->ip6_other_query.delay_time = jiffies + max_delay; + mod_timer(&brmctx->ip6_other_query.delay_timer, + jiffies + max_delay); br_multicast_start_querier(brmctx, &brmctx->ip6_own_query); #endif diff -u linux-xilinx-zynqmp-5.15.0/net/bridge/br_private.h linux-xilinx-zynqmp-5.15.0/net/bridge/br_private.h --- linux-xilinx-zynqmp-5.15.0/net/bridge/br_private.h +++ linux-xilinx-zynqmp-5.15.0/net/bridge/br_private.h @@ -77,7 +77,7 @@ /* other querier */ struct bridge_mcast_other_query { struct timer_list timer; - unsigned long delay_time; + struct timer_list delay_timer; }; /* selected querier */ @@ -1066,7 +1066,7 @@ own_querier_enabled = false; } - return time_is_before_jiffies(querier->delay_time) && + return !timer_pending(&querier->delay_timer) && (own_querier_enabled || timer_pending(&querier->timer)); } diff -u linux-xilinx-zynqmp-5.15.0/net/can/isotp.c linux-xilinx-zynqmp-5.15.0/net/can/isotp.c --- linux-xilinx-zynqmp-5.15.0/net/can/isotp.c +++ linux-xilinx-zynqmp-5.15.0/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 @@ /* 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 @@ #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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ /* 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 @@ 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 @@ 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: - - /* we did not get any flow control frame in time */ - - /* report 'communication error on send' */ - sk->sk_err = ECOMM; - if (!sock_flag(sk, SOCK_DEAD)) - sk_error_report(sk); + /* only handle my own local echo CF/SF skb's (no FF!) */ + if (skb->sk != sk || so->cfecho != *(u32 *)cf->data) + return; - /* reset tx state */ + /* cancel local echo timeout */ + hrtimer_cancel(&so->txtimer); + + /* local echo skb with consecutive frame has been consumed */ + so->cfecho = 0; + + if (so->tx.idx >= so->tx.len) { + /* we are done */ so->tx.state = ISOTP_IDLE; wake_up_interruptible(&so->wait); - break; + return; + } - case ISOTP_SENDING: + 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; + } - /* push out the next segmented pdu */ - dev = dev_get_by_index(sock_net(sk), so->ifindex); - if (!dev) - break; - -isotp_tx_burst: - skb = alloc_skb(so->ll.mtu + sizeof(struct can_skb_priv), - GFP_ATOMIC); - if (!skb) { - dev_put(dev); - break; - } + /* 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; + } - 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); - - 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; - } + /* start timer to send next consecutive frame with correct delay */ + hrtimer_start(&so->txfrtimer, so->tx_gap, HRTIMER_MODE_REL_SOFT); +} - 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; - } +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; - /* no gap between data frames needed => use burst mode */ - if (!so->tx_gap) - goto isotp_tx_burst; + /* don't handle timeouts in IDLE or SHUTDOWN state */ + if (so->tx.state == ISOTP_IDLE || so->tx.state == ISOTP_SHUTDOWN) + return HRTIMER_NORESTART; + + /* we did not get any flow control or echo frame in time */ + + /* report 'communication error on send' */ + sk->sk_err = ECOMM; + if (!sock_flag(sk, SOCK_DEAD)) + sk_error_report(sk); + + /* reset tx state */ + so->tx.state = ISOTP_IDLE; + wake_up_interruptible(&so->wait); - /* 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; + return HRTIMER_NORESTART; +} - default: - WARN_ON_ONCE(1); - } +static enum hrtimer_restart isotp_txfr_timer_handler(struct hrtimer *hrtimer) +{ + struct isotp_sock *so = container_of(hrtimer, struct isotp_sock, + txfrtimer); + + /* start echo timeout handling and cover below protocol error */ + hrtimer_start(&so->txtimer, ktime_set(ISOTP_ECHO_TIMEOUT, 0), + HRTIMER_MODE_REL_SOFT); - return restart; + /* cfecho should be consumed by isotp_rcv_echo() here */ + if (so->tx.state == ISOTP_SENDING && !so->cfecho) + isotp_send_cframe(so); + + 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 @@ 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 @@ 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 @@ 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 @@ __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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/can/j1939/main.c linux-xilinx-zynqmp-5.15.0/net/can/j1939/main.c --- linux-xilinx-zynqmp-5.15.0/net/can/j1939/main.c +++ linux-xilinx-zynqmp-5.15.0/net/can/j1939/main.c @@ -270,7 +270,7 @@ return ERR_PTR(-ENOMEM); j1939_tp_init(priv); - spin_lock_init(&priv->j1939_socks_lock); + rwlock_init(&priv->j1939_socks_lock); INIT_LIST_HEAD(&priv->j1939_socks); mutex_lock(&j1939_netdev_lock); diff -u linux-xilinx-zynqmp-5.15.0/net/can/j1939/socket.c linux-xilinx-zynqmp-5.15.0/net/can/j1939/socket.c --- linux-xilinx-zynqmp-5.15.0/net/can/j1939/socket.c +++ linux-xilinx-zynqmp-5.15.0/net/can/j1939/socket.c @@ -80,16 +80,16 @@ jsk->state |= J1939_SOCK_BOUND; j1939_priv_get(priv); - spin_lock_bh(&priv->j1939_socks_lock); + write_lock_bh(&priv->j1939_socks_lock); list_add_tail(&jsk->list, &priv->j1939_socks); - spin_unlock_bh(&priv->j1939_socks_lock); + write_unlock_bh(&priv->j1939_socks_lock); } static void j1939_jsk_del(struct j1939_priv *priv, struct j1939_sock *jsk) { - spin_lock_bh(&priv->j1939_socks_lock); + write_lock_bh(&priv->j1939_socks_lock); list_del_init(&jsk->list); - spin_unlock_bh(&priv->j1939_socks_lock); + write_unlock_bh(&priv->j1939_socks_lock); j1939_priv_put(priv); jsk->state &= ~J1939_SOCK_BOUND; @@ -262,12 +262,17 @@ static bool j1939_sk_match_filter(struct j1939_sock *jsk, const struct j1939_sk_buff_cb *skcb) { - const struct j1939_filter *f = jsk->filters; - int nfilter = jsk->nfilters; + const struct j1939_filter *f; + int nfilter; + + spin_lock_bh(&jsk->filters_lock); + + f = jsk->filters; + nfilter = jsk->nfilters; if (!nfilter) /* receive all when no filters are assigned */ - return true; + goto filter_match_found; for (; nfilter; ++f, --nfilter) { if ((skcb->addr.pgn & f->pgn_mask) != f->pgn) @@ -276,9 +281,15 @@ continue; if ((skcb->addr.src_name & f->name_mask) != f->name) continue; - return true; + goto filter_match_found; } + + spin_unlock_bh(&jsk->filters_lock); return false; + +filter_match_found: + spin_unlock_bh(&jsk->filters_lock); + return true; } static bool j1939_sk_recv_match_one(struct j1939_sock *jsk, @@ -329,13 +340,13 @@ struct j1939_sock *jsk; bool match = false; - spin_lock_bh(&priv->j1939_socks_lock); + read_lock_bh(&priv->j1939_socks_lock); list_for_each_entry(jsk, &priv->j1939_socks, list) { match = j1939_sk_recv_match_one(jsk, skcb); if (match) break; } - spin_unlock_bh(&priv->j1939_socks_lock); + read_unlock_bh(&priv->j1939_socks_lock); return match; } @@ -344,11 +355,11 @@ { struct j1939_sock *jsk; - spin_lock_bh(&priv->j1939_socks_lock); + read_lock_bh(&priv->j1939_socks_lock); list_for_each_entry(jsk, &priv->j1939_socks, list) { j1939_sk_recv_one(jsk, skb); } - spin_unlock_bh(&priv->j1939_socks_lock); + read_unlock_bh(&priv->j1939_socks_lock); } static void j1939_sk_sock_destruct(struct sock *sk) @@ -401,6 +412,7 @@ atomic_set(&jsk->skb_pending, 0); spin_lock_init(&jsk->sk_session_queue_lock); INIT_LIST_HEAD(&jsk->sk_session_queue); + spin_lock_init(&jsk->filters_lock); /* j1939_sk_sock_destruct() depends on SOCK_RCU_FREE flag */ sock_set_flag(sk, SOCK_RCU_FREE); @@ -703,9 +715,11 @@ } lock_sock(&jsk->sk); + spin_lock_bh(&jsk->filters_lock); ofilters = jsk->filters; jsk->filters = filters; jsk->nfilters = count; + spin_unlock_bh(&jsk->filters_lock); release_sock(&jsk->sk); kfree(ofilters); return 0; @@ -1078,12 +1092,12 @@ } /* spread RX notifications to all sockets subscribed to this session */ - spin_lock_bh(&priv->j1939_socks_lock); + read_lock_bh(&priv->j1939_socks_lock); list_for_each_entry(jsk, &priv->j1939_socks, list) { if (j1939_sk_recv_match_one(jsk, &session->skcb)) __j1939_sk_errqueue(session, &jsk->sk, type); } - spin_unlock_bh(&priv->j1939_socks_lock); + read_unlock_bh(&priv->j1939_socks_lock); }; void j1939_sk_send_loop_abort(struct sock *sk, int err) @@ -1271,7 +1285,7 @@ struct j1939_sock *jsk; int error_code = ENETDOWN; - spin_lock_bh(&priv->j1939_socks_lock); + read_lock_bh(&priv->j1939_socks_lock); list_for_each_entry(jsk, &priv->j1939_socks, list) { jsk->sk.sk_err = error_code; if (!sock_flag(&jsk->sk, SOCK_DEAD)) @@ -1279,7 +1293,7 @@ j1939_sk_queue_drop_all(priv, jsk, error_code); } - spin_unlock_bh(&priv->j1939_socks_lock); + read_unlock_bh(&priv->j1939_socks_lock); } static int j1939_sk_no_ioctlcmd(struct socket *sock, unsigned int cmd, diff -u linux-xilinx-zynqmp-5.15.0/net/can/raw.c linux-xilinx-zynqmp-5.15.0/net/can/raw.c --- linux-xilinx-zynqmp-5.15.0/net/can/raw.c +++ linux-xilinx-zynqmp-5.15.0/net/can/raw.c @@ -780,6 +780,7 @@ { struct sock *sk = sock->sk; struct raw_sock *ro = raw_sk(sk); + struct sockcm_cookie sockc; struct sk_buff *skb; struct net_device *dev; int ifindex; @@ -825,11 +826,20 @@ if (err < 0) goto free_skb; - skb_setup_tx_timestamp(skb, sk->sk_tsflags); + sockcm_init(&sockc, sk); + if (msg->msg_controllen) { + err = sock_cmsg_send(sk, msg, &sockc); + if (unlikely(err)) + goto free_skb; + } skb->dev = dev; skb->sk = sk; skb->priority = sk->sk_priority; + skb->mark = sk->sk_mark; + skb->tstamp = sockc.transmit_time; + + skb_setup_tx_timestamp(skb, sockc.tsflags); err = can_send(skb, ro->loopback); diff -u linux-xilinx-zynqmp-5.15.0/net/core/dev.c linux-xilinx-zynqmp-5.15.0/net/core/dev.c --- linux-xilinx-zynqmp-5.15.0/net/core/dev.c +++ linux-xilinx-zynqmp-5.15.0/net/core/dev.c @@ -303,6 +303,12 @@ 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 @@ } 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 @@ 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 @@ 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 @@ 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; } /** @@ -3520,6 +3540,9 @@ if (gso_segs > dev->gso_max_segs) return features & ~NETIF_F_GSO_MASK; + if (unlikely(skb->len >= READ_ONCE(dev->gso_max_size))) + return features & ~NETIF_F_GSO_MASK; + if (!skb_shinfo(skb)->gso_type) { skb_warn_bad_offload(skb); return features & ~NETIF_F_GSO_MASK; @@ -11151,6 +11174,7 @@ const char *pat, int new_ifindex) { struct net *net_old = dev_net(dev); + char new_name[IFNAMSIZ] = {}; int err, new_nsid; ASSERT_RTNL(); @@ -11173,11 +11197,11 @@ * 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; } @@ -11245,6 +11269,9 @@ 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); @@ -11525,7 +11552,7 @@ /* 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 -u linux-xilinx-zynqmp-5.15.0/net/core/drop_monitor.c linux-xilinx-zynqmp-5.15.0/net/core/drop_monitor.c --- linux-xilinx-zynqmp-5.15.0/net/core/drop_monitor.c +++ linux-xilinx-zynqmp-5.15.0/net/core/drop_monitor.c @@ -184,7 +184,7 @@ } 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 @@ 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 @@ .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 -u linux-xilinx-zynqmp-5.15.0/net/core/filter.c linux-xilinx-zynqmp-5.15.0/net/core/filter.c --- linux-xilinx-zynqmp-5.15.0/net/core/filter.c +++ linux-xilinx-zynqmp-5.15.0/net/core/filter.c @@ -2576,6 +2576,22 @@ 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 @@ 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 @@ msg->sg.data[new] = rsge; } + sk_msg_reset_curr(msg); sk_msg_compute_data_pointers(msg); return 0; } @@ -2999,6 +3017,7 @@ 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; } diff -u linux-xilinx-zynqmp-5.15.0/net/core/neighbour.c linux-xilinx-zynqmp-5.15.0/net/core/neighbour.c --- linux-xilinx-zynqmp-5.15.0/net/core/neighbour.c +++ linux-xilinx-zynqmp-5.15.0/net/core/neighbour.c @@ -223,10 +223,13 @@ 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); + u64 tmax = ktime_get_ns() + NSEC_PER_MSEC; unsigned long tref = jiffies - 5 * HZ; struct neighbour *n, *tmp; int shrunk = 0; + int loop = 0; NEIGH_CACHE_STAT_INC(tbl, forced_gc_runs); @@ -249,11 +252,16 @@ shrunk++; if (shrunk >= max_clean) break; + if (++loop == 16) { + if (ktime_get_ns() > tmax) + goto unlock; + loop = 0; + } } } - tbl->last_flush = jiffies; - + WRITE_ONCE(tbl->last_flush, jiffies); +unlock: write_unlock_bh(&tbl->lock); return shrunk; @@ -408,17 +416,17 @@ { 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 +905,14 @@ 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++) { @@ -2047,15 +2056,16 @@ 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, @@ -2063,7 +2073,7 @@ .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(); @@ -2086,17 +2096,17 @@ 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, @@ -2320,16 +2330,16 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/core/netpoll.c linux-xilinx-zynqmp-5.15.0/net/core/netpoll.c --- linux-xilinx-zynqmp-5.15.0/net/core/netpoll.c +++ linux-xilinx-zynqmp-5.15.0/net/core/netpoll.c @@ -573,7 +573,7 @@ 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 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 -u linux-xilinx-zynqmp-5.15.0/net/core/scm.c linux-xilinx-zynqmp-5.15.0/net/core/scm.c --- linux-xilinx-zynqmp-5.15.0/net/core/scm.c +++ linux-xilinx-zynqmp-5.15.0/net/core/scm.c @@ -26,6 +26,7 @@ #include #include #include +#include #include @@ -103,6 +104,11 @@ if (fd < 0 || !(file = fget_raw(fd))) return -EBADF; + /* don't allow io_uring files */ + if (io_uring_get_socket(file)) { + fput(file); + return -EINVAL; + } *fpp++ = file; fpl->count++; } diff -u linux-xilinx-zynqmp-5.15.0/net/core/skbuff.c linux-xilinx-zynqmp-5.15.0/net/core/skbuff.c --- linux-xilinx-zynqmp-5.15.0/net/core/skbuff.c +++ linux-xilinx-zynqmp-5.15.0/net/core/skbuff.c @@ -4079,8 +4079,9 @@ /* GSO partial only requires that we trim off any excess that * doesn't fit into an MSS sized block, so take care of that * now. + * Cap len to not accidentally hit GSO_BY_FRAGS. */ - partial_segs = len / mss; + partial_segs = min(len, GSO_BY_FRAGS - 1U) / mss; if (partial_segs > 1) mss *= partial_segs; else diff -u linux-xilinx-zynqmp-5.15.0/net/core/sock.c linux-xilinx-zynqmp-5.15.0/net/core/sock.c --- linux-xilinx-zynqmp-5.15.0/net/core/sock.c +++ linux-xilinx-zynqmp-5.15.0/net/core/sock.c @@ -557,7 +557,7 @@ 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; @@ -1534,9 +1534,16 @@ break; case SO_TIMESTAMPING_OLD: + case SO_TIMESTAMPING_NEW: lv = sizeof(v.timestamping); - v.timestamping.flags = sk->sk_tsflags; - v.timestamping.bind_phc = sk->sk_bind_phc; + /* For the later-added case SO_TIMESTAMPING_NEW: Be strict about only + * returning the flags when they were set through the same option. + * Don't change the beviour for the old case SO_TIMESTAMPING_OLD. + */ + if (optname == SO_TIMESTAMPING_OLD || sock_flag(sk, SOCK_TSTAMP_NEW)) { + v.timestamping.flags = sk->sk_tsflags; + v.timestamping.bind_phc = sk->sk_bind_phc; + } break; case SO_RCVTIMEO_OLD: @@ -2544,6 +2551,7 @@ sockc->mark = *(u32 *)CMSG_DATA(cmsg); break; case SO_TIMESTAMPING_OLD: + case SO_TIMESTAMPING_NEW: if (cmsg->cmsg_len != CMSG_LEN(sizeof(u32))) return -EINVAL; diff -u linux-xilinx-zynqmp-5.15.0/net/dccp/ipv4.c linux-xilinx-zynqmp-5.15.0/net/dccp/ipv4.c --- linux-xilinx-zynqmp-5.15.0/net/dccp/ipv4.c +++ linux-xilinx-zynqmp-5.15.0/net/dccp/ipv4.c @@ -623,9 +623,6 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/dccp/ipv6.c linux-xilinx-zynqmp-5.15.0/net/dccp/ipv6.c --- linux-xilinx-zynqmp-5.15.0/net/dccp/ipv6.c +++ linux-xilinx-zynqmp-5.15.0/net/dccp/ipv6.c @@ -359,15 +359,15 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/dccp/proto.c linux-xilinx-zynqmp-5.15.0/net/dccp/proto.c --- linux-xilinx-zynqmp-5.15.0/net/dccp/proto.c +++ linux-xilinx-zynqmp-5.15.0/net/dccp/proto.c @@ -1131,7 +1131,6 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/ethtool/features.c linux-xilinx-zynqmp-5.15.0/net/ethtool/features.c --- linux-xilinx-zynqmp-5.15.0/net/ethtool/features.c +++ linux-xilinx-zynqmp-5.15.0/net/ethtool/features.c @@ -235,17 +235,20 @@ dev = req_info.dev; rtnl_lock(); + ret = ethnl_ops_begin(dev); + if (ret < 0) + goto out_rtnl; ethnl_features_to_bitmap(old_active, dev->features); ethnl_features_to_bitmap(old_wanted, dev->wanted_features); ret = ethnl_parse_bitset(req_wanted, req_mask, NETDEV_FEATURE_COUNT, tb[ETHTOOL_A_FEATURES_WANTED], netdev_features_strings, info->extack); if (ret < 0) - goto out_rtnl; + goto out_ops; if (ethnl_bitmap_to_features(req_mask) & ~NETIF_F_ETHTOOL_BITS) { GENL_SET_ERR_MSG(info, "attempt to change non-ethtool features"); ret = -EINVAL; - goto out_rtnl; + goto out_ops; } /* set req_wanted bits not in req_mask from old_wanted */ @@ -282,6 +285,8 @@ if (mod) netdev_features_change(dev); +out_ops: + ethnl_ops_complete(dev); out_rtnl: rtnl_unlock(); ethnl_parse_header_dev_put(&req_info); diff -u linux-xilinx-zynqmp-5.15.0/net/hsr/hsr_device.c linux-xilinx-zynqmp-5.15.0/net/hsr/hsr_device.c --- linux-xilinx-zynqmp-5.15.0/net/hsr/hsr_device.c +++ linux-xilinx-zynqmp-5.15.0/net/hsr/hsr_device.c @@ -291,7 +291,7 @@ skb = hsr_init_skb(master); if (!skb) { - WARN_ONCE(1, "HSR: Could not send supervision frame\n"); + netdev_warn_once(master->dev, "HSR: Could not send supervision frame\n"); return; } @@ -338,7 +338,7 @@ skb = hsr_init_skb(master); if (!skb) { - WARN_ONCE(1, "PRP: Could not send supervision frame\n"); + netdev_warn_once(master->dev, "PRP: Could not send supervision frame\n"); return; } diff -u linux-xilinx-zynqmp-5.15.0/net/hsr/hsr_forward.c linux-xilinx-zynqmp-5.15.0/net/hsr/hsr_forward.c --- linux-xilinx-zynqmp-5.15.0/net/hsr/hsr_forward.c +++ linux-xilinx-zynqmp-5.15.0/net/hsr/hsr_forward.c @@ -300,9 +300,7 @@ 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, diff -u linux-xilinx-zynqmp-5.15.0/net/ipv4/af_inet.c linux-xilinx-zynqmp-5.15.0/net/ipv4/af_inet.c --- linux-xilinx-zynqmp-5.15.0/net/ipv4/af_inet.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv4/af_inet.c @@ -328,6 +328,9 @@ if (INET_PROTOSW_REUSE & answer_flags) sk->sk_reuse = SK_CAN_REUSE; + if (INET_PROTOSW_ICSK & answer_flags) + inet_init_csk_locks(sk); + inet = inet_sk(sk); inet->is_icsk = (INET_PROTOSW_ICSK & answer_flags) != 0; @@ -1612,10 +1615,12 @@ int inet_recv_error(struct sock *sk, struct msghdr *msg, int len, int *addr_len) { - if (sk->sk_family == AF_INET) + unsigned int family = READ_ONCE(sk->sk_family); + + if (family == AF_INET) return ip_recv_error(sk, msg, len, addr_len); #if IS_ENABLED(CONFIG_IPV6) - if (sk->sk_family == AF_INET6) + if (family == AF_INET6) return pingv6_ops.ipv6_recv_error(sk, msg, len, addr_len); #endif return -EINVAL; diff -u linux-xilinx-zynqmp-5.15.0/net/ipv4/esp4.c linux-xilinx-zynqmp-5.15.0/net/ipv4/esp4.c --- linux-xilinx-zynqmp-5.15.0/net/ipv4/esp4.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv4/esp4.c @@ -739,7 +739,9 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/ipv4/fib_semantics.c linux-xilinx-zynqmp-5.15.0/net/ipv4/fib_semantics.c --- linux-xilinx-zynqmp-5.15.0/net/ipv4/fib_semantics.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv4/fib_semantics.c @@ -1344,15 +1344,18 @@ 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); - return nh->nh_saddr; + WRITE_ONCE(nh->nh_saddr, saddr); + WRITE_ONCE(nh->nh_saddr_genid, atomic_read(&net->ipv4.dev_addr_genid)); + + return saddr; } __be32 fib_result_prefsrc(struct net *net, struct fib_result *res) @@ -1366,8 +1369,9 @@ 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); @@ -1904,6 +1908,7 @@ continue; if (fi->fib_prefsrc == local) { fi->fib_flags |= RTNH_F_DEAD; + fi->pfsrc_removed = true; ret++; } } diff -u linux-xilinx-zynqmp-5.15.0/net/ipv4/fib_trie.c linux-xilinx-zynqmp-5.15.0/net/ipv4/fib_trie.c --- linux-xilinx-zynqmp-5.15.0/net/ipv4/fib_trie.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv4/fib_trie.c @@ -2021,6 +2021,7 @@ 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; @@ -2083,6 +2084,9 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/ipv4/inet_connection_sock.c linux-xilinx-zynqmp-5.15.0/net/ipv4/inet_connection_sock.c --- linux-xilinx-zynqmp-5.15.0/net/ipv4/inet_connection_sock.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv4/inet_connection_sock.c @@ -545,6 +545,10 @@ } if (req) reqsk_put(req); + + if (newsk) + inet_init_csk_locks(newsk); + return newsk; out_err: newsk = NULL; diff -u linux-xilinx-zynqmp-5.15.0/net/ipv4/inet_diag.c linux-xilinx-zynqmp-5.15.0/net/ipv4/inet_diag.c --- linux-xilinx-zynqmp-5.15.0/net/ipv4/inet_diag.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv4/inet_diag.c @@ -1028,12 +1028,13 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/ipv4/inet_hashtables.c linux-xilinx-zynqmp-5.15.0/net/ipv4/inet_hashtables.c --- linux-xilinx-zynqmp-5.15.0/net/ipv4/inet_hashtables.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv4/inet_hashtables.c @@ -193,42 +193,6 @@ 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 @@ 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 @@ 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 @@ 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 @@ } 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 @@ 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 @@ } 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 -u linux-xilinx-zynqmp-5.15.0/net/ipv4/ip_gre.c linux-xilinx-zynqmp-5.15.0/net/ipv4/ip_gre.c --- linux-xilinx-zynqmp-5.15.0/net/ipv4/ip_gre.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv4/ip_gre.c @@ -634,15 +634,18 @@ } 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 -u linux-xilinx-zynqmp-5.15.0/net/ipv4/ip_output.c linux-xilinx-zynqmp-5.15.0/net/ipv4/ip_output.c --- linux-xilinx-zynqmp-5.15.0/net/ipv4/ip_output.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv4/ip_output.c @@ -990,7 +990,7 @@ mtu = cork->gso_size ? IP_MAX_MTU : cork->fragsize; paged = !!cork->gso_size; - if (cork->tx_flags & SKBTX_ANY_SW_TSTAMP && + if (cork->tx_flags & SKBTX_ANY_TSTAMP && sk->sk_tsflags & SOF_TIMESTAMPING_OPT_ID) tskey = atomic_inc_return(&sk->sk_tskey) - 1; @@ -1251,6 +1251,12 @@ if (unlikely(!rt)) return -EFAULT; + cork->fragsize = ip_sk_use_pmtu(sk) ? + dst_mtu(&rt->dst) : READ_ONCE(rt->dst.dev->mtu); + + if (!inetdev_valid_mtu(cork->fragsize)) + return -ENETUNREACH; + /* * setup for corking. */ @@ -1267,12 +1273,6 @@ cork->addr = ipc->addr; } - cork->fragsize = ip_sk_use_pmtu(sk) ? - dst_mtu(&rt->dst) : READ_ONCE(rt->dst.dev->mtu); - - if (!inetdev_valid_mtu(cork->fragsize)) - return -ENETUNREACH; - cork->gso_size = ipc->gso_size; cork->dst = &rt->dst; diff -u linux-xilinx-zynqmp-5.15.0/net/ipv4/ip_tunnel_core.c linux-xilinx-zynqmp-5.15.0/net/ipv4/ip_tunnel_core.c --- linux-xilinx-zynqmp-5.15.0/net/ipv4/ip_tunnel_core.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv4/ip_tunnel_core.c @@ -332,7 +332,7 @@ }; skb_reset_network_header(skb); - csum = csum_partial(icmp6h, len, 0); + csum = skb_checksum(skb, skb_transport_offset(skb), len, 0); icmp6h->icmp6_cksum = csum_ipv6_magic(&nip6h->saddr, &nip6h->daddr, len, IPPROTO_ICMPV6, csum); diff -u linux-xilinx-zynqmp-5.15.0/net/ipv4/route.c linux-xilinx-zynqmp-5.15.0/net/ipv4/route.c --- linux-xilinx-zynqmp-5.15.0/net/ipv4/route.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv4/route.c @@ -786,7 +786,7 @@ 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)) { diff -u linux-xilinx-zynqmp-5.15.0/net/ipv4/syncookies.c linux-xilinx-zynqmp-5.15.0/net/ipv4/syncookies.c --- linux-xilinx-zynqmp-5.15.0/net/ipv4/syncookies.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv4/syncookies.c @@ -43,7 +43,6 @@ * 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 @@ */ 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 -u linux-xilinx-zynqmp-5.15.0/net/ipv4/tcp.c linux-xilinx-zynqmp-5.15.0/net/ipv4/tcp.c --- linux-xilinx-zynqmp-5.15.0/net/ipv4/tcp.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv4/tcp.c @@ -722,6 +722,7 @@ if (!test_bit(TSQ_THROTTLED, &sk->sk_tsq_flags)) { NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPAUTOCORKING); set_bit(TSQ_THROTTLED, &sk->sk_tsq_flags); + smp_mb__after_atomic(); } /* It is possible TX completion already happened * before we set TSQ_THROTTLED. @@ -953,8 +954,10 @@ * 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 +1110,7 @@ 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 +1333,7 @@ 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 +1432,7 @@ 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; @@ -1804,7 +1798,17 @@ static bool can_map_frag(const skb_frag_t *frag) { - return skb_frag_size(frag) == PAGE_SIZE && !skb_frag_off(frag); + struct page *page; + + if (skb_frag_size(frag) != PAGE_SIZE || skb_frag_off(frag)) + return false; + + page = skb_frag_page(frag); + + if (PageCompound(page) || page->mapping) + return false; + + return true; } static int find_next_mappable_frag(const skb_frag_t *frag, @@ -4563,7 +4567,6 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/ipv4/tcp_input.c linux-xilinx-zynqmp-5.15.0/net/ipv4/tcp_input.c --- linux-xilinx-zynqmp-5.15.0/net/ipv4/tcp_input.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv4/tcp_input.c @@ -2195,16 +2195,17 @@ * 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; @@ -2974,7 +2975,7 @@ 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. */ @@ -3795,8 +3796,12 @@ * 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; @@ -6375,22 +6380,23 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/ipv4/tcp_ipv4.c linux-xilinx-zynqmp-5.15.0/net/ipv4/tcp_ipv4.c --- linux-xilinx-zynqmp-5.15.0/net/ipv4/tcp_ipv4.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv4/tcp_ipv4.c @@ -1863,6 +1863,7 @@ #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 @@ 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 @@ { 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 @@ { 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); diff -u linux-xilinx-zynqmp-5.15.0/net/ipv4/tcp_metrics.c linux-xilinx-zynqmp-5.15.0/net/ipv4/tcp_metrics.c --- linux-xilinx-zynqmp-5.15.0/net/ipv4/tcp_metrics.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv4/tcp_metrics.c @@ -470,11 +470,15 @@ 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 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/ipv4/tcp_output.c linux-xilinx-zynqmp-5.15.0/net/ipv4/tcp_output.c --- linux-xilinx-zynqmp-5.15.0/net/ipv4/tcp_output.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv4/tcp_output.c @@ -1318,7 +1318,7 @@ 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; @@ -2486,6 +2486,18 @@ 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) @@ -2523,12 +2535,12 @@ 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); @@ -2731,7 +2743,7 @@ { 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 @@ -2755,11 +2767,12 @@ * 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; } @@ -3158,7 +3171,13 @@ if (skb_still_in_host_queue(sk, skb)) return -EBUSY; +start: if (before(TCP_SKB_CB(skb)->seq, tp->snd_una)) { + if (unlikely(TCP_SKB_CB(skb)->tcp_flags & TCPHDR_SYN)) { + TCP_SKB_CB(skb)->tcp_flags &= ~TCPHDR_SYN; + TCP_SKB_CB(skb)->seq++; + goto start; + } if (unlikely(before(TCP_SKB_CB(skb)->end_seq, tp->snd_una))) { WARN_ON_ONCE(1); return -EINVAL; diff -u linux-xilinx-zynqmp-5.15.0/net/ipv4/tcp_recovery.c linux-xilinx-zynqmp-5.15.0/net/ipv4/tcp_recovery.c --- linux-xilinx-zynqmp-5.15.0/net/ipv4/tcp_recovery.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv4/tcp_recovery.c @@ -109,7 +109,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/ipv4/udp.c linux-xilinx-zynqmp-5.15.0/net/ipv4/udp.c --- linux-xilinx-zynqmp-5.15.0/net/ipv4/udp.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv4/udp.c @@ -2711,10 +2711,12 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/ipv6/addrconf.c linux-xilinx-zynqmp-5.15.0/net/ipv6/addrconf.c --- linux-xilinx-zynqmp-5.15.0/net/ipv6/addrconf.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv6/addrconf.c @@ -6093,11 +6093,7 @@ pmsg->prefix_len = pinfo->prefix_len; pmsg->prefix_type = pinfo->type; pmsg->prefix_pad3 = 0; - pmsg->prefix_flags = 0; - if (pinfo->onlink) - pmsg->prefix_flags |= IF_PREFIX_ONLINK; - if (pinfo->autoconf) - pmsg->prefix_flags |= IF_PREFIX_AUTOCONF; + pmsg->prefix_flags = pinfo->flags; if (nla_put(skb, PREFIX_ADDRESS, sizeof(pinfo->prefix), &pinfo->prefix)) goto nla_put_failure; diff -u linux-xilinx-zynqmp-5.15.0/net/ipv6/af_inet6.c linux-xilinx-zynqmp-5.15.0/net/ipv6/af_inet6.c --- linux-xilinx-zynqmp-5.15.0/net/ipv6/af_inet6.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv6/af_inet6.c @@ -198,6 +198,9 @@ if (INET_PROTOSW_REUSE & answer_flags) sk->sk_reuse = SK_CAN_REUSE; + if (INET_PROTOSW_ICSK & answer_flags) + inet_init_csk_locks(sk); + inet = inet_sk(sk); inet->is_icsk = (INET_PROTOSW_ICSK & answer_flags) != 0; diff -u linux-xilinx-zynqmp-5.15.0/net/ipv6/esp6.c linux-xilinx-zynqmp-5.15.0/net/ipv6/esp6.c --- linux-xilinx-zynqmp-5.15.0/net/ipv6/esp6.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv6/esp6.c @@ -776,7 +776,9 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/ipv6/inet6_hashtables.c linux-xilinx-zynqmp-5.15.0/net/ipv6/inet6_hashtables.c --- linux-xilinx-zynqmp-5.15.0/net/ipv6/inet6_hashtables.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv6/inet6_hashtables.c @@ -138,12 +138,11 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/ipv6/ip6_fib.c linux-xilinx-zynqmp-5.15.0/net/ipv6/ip6_fib.c --- linux-xilinx-zynqmp-5.15.0/net/ipv6/ip6_fib.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv6/ip6_fib.c @@ -1501,13 +1501,9 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/ipv6/ip6_output.c linux-xilinx-zynqmp-5.15.0/net/ipv6/ip6_output.c --- linux-xilinx-zynqmp-5.15.0/net/ipv6/ip6_output.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv6/ip6_output.c @@ -159,7 +159,13 @@ 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; } @@ -1481,7 +1487,7 @@ mtu = cork->gso_size ? IP6_MAX_MTU : cork->fragsize; orig_mtu = mtu; - if (cork->tx_flags & SKBTX_ANY_SW_TSTAMP && + if (cork->tx_flags & SKBTX_ANY_TSTAMP && sk->sk_tsflags & SOF_TIMESTAMPING_OPT_ID) tskey = atomic_inc_return(&sk->sk_tskey) - 1; diff -u linux-xilinx-zynqmp-5.15.0/net/ipv6/ip6_tunnel.c linux-xilinx-zynqmp-5.15.0/net/ipv6/ip6_tunnel.c --- linux-xilinx-zynqmp-5.15.0/net/ipv6/ip6_tunnel.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv6/ip6_tunnel.c @@ -401,7 +401,7 @@ const struct ipv6hdr *ipv6h = (const struct ipv6hdr *)raw; unsigned int nhoff = raw - skb->data; unsigned int off = nhoff + sizeof(*ipv6h); - u8 next, nexthdr = ipv6h->nexthdr; + u8 nexthdr = ipv6h->nexthdr; while (ipv6_ext_hdr(nexthdr) && nexthdr != NEXTHDR_NONE) { struct ipv6_opt_hdr *hdr; @@ -412,25 +412,25 @@ hdr = (struct ipv6_opt_hdr *)(skb->data + off); if (nexthdr == NEXTHDR_FRAGMENT) { - struct frag_hdr *frag_hdr = (struct frag_hdr *) hdr; - if (frag_hdr->frag_off) - break; optlen = 8; } else if (nexthdr == NEXTHDR_AUTH) { optlen = ipv6_authlen(hdr); } else { optlen = ipv6_optlen(hdr); } - /* cache hdr->nexthdr, since pskb_may_pull() might - * invalidate hdr - */ - next = hdr->nexthdr; - if (nexthdr == NEXTHDR_DEST) { - u16 i = 2; - /* Remember : hdr is no longer valid at this point. */ - if (!pskb_may_pull(skb, off + optlen)) + if (!pskb_may_pull(skb, off + optlen)) + break; + + hdr = (struct ipv6_opt_hdr *)(skb->data + off); + if (nexthdr == NEXTHDR_FRAGMENT) { + struct frag_hdr *frag_hdr = (struct frag_hdr *)hdr; + + if (frag_hdr->frag_off) break; + } + if (nexthdr == NEXTHDR_DEST) { + u16 i = 2; while (1) { struct ipv6_tlv_tnl_enc_lim *tel; @@ -451,7 +451,7 @@ i++; } } - nexthdr = next; + nexthdr = hdr->nexthdr; off += optlen; } return 0; @@ -798,9 +798,8 @@ struct sk_buff *skb), bool log_ecn_err) { - struct pcpu_sw_netstats *tstats; - const struct ipv6hdr *ipv6h = ipv6_hdr(skb); - int err; + const struct ipv6hdr *ipv6h; + int nh, err; if ((!(tpi->flags & TUNNEL_CSUM) && (tunnel->parms.i_flags & TUNNEL_CSUM)) || @@ -832,7 +831,6 @@ goto drop; } - ipv6h = ipv6_hdr(skb); skb->protocol = eth_type_trans(skb, tunnel->dev); skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN); } else { @@ -840,7 +838,23 @@ skb_reset_mac_header(skb); } + /* Save offset of outer header relative to skb->head, + * because we are going to reset the network header to the inner header + * and might change skb->head. + */ + nh = skb_network_header(skb) - skb->head; + skb_reset_network_header(skb); + + if (!pskb_inet_may_pull(skb)) { + DEV_STATS_INC(tunnel->dev, rx_length_errors); + DEV_STATS_INC(tunnel->dev, rx_errors); + goto drop; + } + + /* Get the outer header. */ + ipv6h = (struct ipv6hdr *)(skb->head + nh); + memset(skb->cb, 0, sizeof(struct inet6_skb_parm)); __skb_tunnel_rx(skb, tunnel->dev, tunnel->net); @@ -858,11 +872,7 @@ } } - tstats = this_cpu_ptr(tunnel->dev->tstats); - u64_stats_update_begin(&tstats->syncp); - tstats->rx_packets++; - tstats->rx_bytes += skb->len; - u64_stats_update_end(&tstats->syncp); + dev_sw_netstats_rx_add(tunnel->dev, skb->len); skb_scrub_packet(skb, !net_eq(tunnel->net, dev_net(tunnel->dev))); diff -u linux-xilinx-zynqmp-5.15.0/net/ipv6/mcast.c linux-xilinx-zynqmp-5.15.0/net/ipv6/mcast.c --- linux-xilinx-zynqmp-5.15.0/net/ipv6/mcast.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv6/mcast.c @@ -2725,8 +2725,12 @@ synchronize_net(); mld_query_stop_work(idev); mld_report_stop_work(idev); + + mutex_lock(&idev->mc_lock); mld_ifc_stop_work(idev); mld_gq_stop_work(idev); + mutex_unlock(&idev->mc_lock); + mld_dad_stop_work(idev); } diff -u linux-xilinx-zynqmp-5.15.0/net/ipv6/route.c linux-xilinx-zynqmp-5.15.0/net/ipv6/route.c --- linux-xilinx-zynqmp-5.15.0/net/ipv6/route.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv6/route.c @@ -91,7 +91,7 @@ static void ip6_dst_destroy(struct dst_entry *); static void ip6_dst_ifdown(struct dst_entry *, struct net_device *dev, int how); -static int ip6_dst_gc(struct dst_ops *ops); +static void ip6_dst_gc(struct dst_ops *ops); static int ip6_pkt_discard(struct sk_buff *skb); static int ip6_pkt_discard_out(struct net *net, struct sock *sk, struct sk_buff *skb); @@ -3295,11 +3295,10 @@ return dst; } -static int ip6_dst_gc(struct dst_ops *ops) +static void ip6_dst_gc(struct dst_ops *ops) { struct net *net = container_of(ops, struct net, ipv6.ip6_dst_ops); int rt_min_interval = net->ipv6.sysctl.ip6_rt_gc_min_interval; - int rt_max_size = net->ipv6.sysctl.ip6_rt_max_size; int rt_elasticity = net->ipv6.sysctl.ip6_rt_gc_elasticity; int rt_gc_timeout = net->ipv6.sysctl.ip6_rt_gc_timeout; unsigned long rt_last_gc = net->ipv6.ip6_rt_last_gc; @@ -3307,11 +3306,10 @@ int entries; entries = dst_entries_get_fast(ops); - if (entries > rt_max_size) + if (entries > ops->gc_thresh) entries = dst_entries_get_slow(ops); - if (time_after(rt_last_gc + rt_min_interval, jiffies) && - entries <= rt_max_size) + if (time_after(rt_last_gc + rt_min_interval, jiffies)) goto out; fib6_run_gc(atomic_inc_return(&net->ipv6.ip6_rt_gc_expire), net, true); @@ -3321,7 +3319,6 @@ out: val = atomic_read(&net->ipv6.ip6_rt_gc_expire); atomic_set(&net->ipv6.ip6_rt_gc_expire, val - (val >> rt_elasticity)); - return entries > rt_max_size; } static int ip6_nh_lookup_table(struct net *net, struct fib6_config *cfg, @@ -6528,7 +6525,7 @@ #endif net->ipv6.sysctl.flush_delay = 0; - net->ipv6.sysctl.ip6_rt_max_size = 4096; + net->ipv6.sysctl.ip6_rt_max_size = INT_MAX; net->ipv6.sysctl.ip6_rt_gc_min_interval = HZ / 2; net->ipv6.sysctl.ip6_rt_gc_timeout = 60*HZ; net->ipv6.sysctl.ip6_rt_gc_interval = 30*HZ; diff -u linux-xilinx-zynqmp-5.15.0/net/ipv6/syncookies.c linux-xilinx-zynqmp-5.15.0/net/ipv6/syncookies.c --- linux-xilinx-zynqmp-5.15.0/net/ipv6/syncookies.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv6/syncookies.c @@ -180,14 +180,15 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/ipv6/xfrm6_policy.c linux-xilinx-zynqmp-5.15.0/net/ipv6/xfrm6_policy.c --- linux-xilinx-zynqmp-5.15.0/net/ipv6/xfrm6_policy.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv6/xfrm6_policy.c @@ -120,11 +120,11 @@ { 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 -u linux-xilinx-zynqmp-5.15.0/net/llc/af_llc.c linux-xilinx-zynqmp-5.15.0/net/llc/af_llc.c --- linux-xilinx-zynqmp-5.15.0/net/llc/af_llc.c +++ linux-xilinx-zynqmp-5.15.0/net/llc/af_llc.c @@ -226,6 +226,8 @@ } dev_put(llc->dev); sock_put(sk); + sock_orphan(sk); + sock->sk = NULL; llc_sk_free(sk); out: return 0; @@ -926,14 +928,15 @@ */ static int llc_ui_sendmsg(struct socket *sock, struct msghdr *msg, size_t len) { + DECLARE_SOCKADDR(struct sockaddr_llc *, addr, msg->msg_name); struct sock *sk = sock->sk; struct llc_sock *llc = llc_sk(sk); - DECLARE_SOCKADDR(struct sockaddr_llc *, addr, msg->msg_name); int flags = msg->msg_flags; int noblock = flags & MSG_DONTWAIT; + int rc = -EINVAL, copied = 0, hdrlen, hh_len; struct sk_buff *skb = NULL; + struct net_device *dev; size_t size = 0; - int rc = -EINVAL, copied = 0, hdrlen; dprintk("%s: sending from %02X to %02X\n", __func__, llc->laddr.lsap, llc->daddr.lsap); @@ -953,22 +956,29 @@ if (rc) goto out; } - hdrlen = llc->dev->hard_header_len + llc_ui_header_len(sk, addr); + dev = llc->dev; + hh_len = LL_RESERVED_SPACE(dev); + hdrlen = llc_ui_header_len(sk, addr); size = hdrlen + len; - if (size > llc->dev->mtu) - size = llc->dev->mtu; + size = min_t(size_t, size, READ_ONCE(dev->mtu)); copied = size - hdrlen; rc = -EINVAL; if (copied < 0) goto out; release_sock(sk); - skb = sock_alloc_send_skb(sk, size, noblock, &rc); + skb = sock_alloc_send_skb(sk, hh_len + size, noblock, &rc); lock_sock(sk); if (!skb) goto out; - skb->dev = llc->dev; + if (sock_flag(sk, SOCK_ZAPPED) || + llc->dev != dev || + hdrlen != llc_ui_header_len(sk, addr) || + hh_len != LL_RESERVED_SPACE(dev) || + size > READ_ONCE(dev->mtu)) + goto out; + skb->dev = dev; skb->protocol = llc_proto_type(addr->sllc_arphrd); - skb_reserve(skb, hdrlen); + skb_reserve(skb, hh_len + hdrlen); rc = memcpy_from_msg(skb_put(skb, copied), msg, copied); if (rc) goto out; diff -u linux-xilinx-zynqmp-5.15.0/net/llc/llc_input.c linux-xilinx-zynqmp-5.15.0/net/llc/llc_input.c --- linux-xilinx-zynqmp-5.15.0/net/llc/llc_input.c +++ linux-xilinx-zynqmp-5.15.0/net/llc/llc_input.c @@ -127,8 +127,14 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/mac80211/cfg.c linux-xilinx-zynqmp-5.15.0/net/mac80211/cfg.c --- linux-xilinx-zynqmp-5.15.0/net/mac80211/cfg.c +++ linux-xilinx-zynqmp-5.15.0/net/mac80211/cfg.c @@ -2762,6 +2762,10 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/mac80211/mesh_plink.c linux-xilinx-zynqmp-5.15.0/net/mac80211/mesh_plink.c --- linux-xilinx-zynqmp-5.15.0/net/mac80211/mesh_plink.c +++ linux-xilinx-zynqmp-5.15.0/net/mac80211/mesh_plink.c @@ -1050,8 +1050,8 @@ case WLAN_SP_MESH_PEERING_OPEN: if (!matches_local) event = OPN_RJCT; - if (!mesh_plink_free_count(sdata) || - (sta->mesh->plid && sta->mesh->plid != plid)) + else if (!mesh_plink_free_count(sdata) || + (sta->mesh->plid && sta->mesh->plid != plid)) event = OPN_IGNR; else event = OPN_ACPT; @@ -1059,9 +1059,9 @@ case WLAN_SP_MESH_PEERING_CONFIRM: if (!matches_local) event = CNF_RJCT; - if (!mesh_plink_free_count(sdata) || - sta->mesh->llid != llid || - (sta->mesh->plid && sta->mesh->plid != plid)) + else if (!mesh_plink_free_count(sdata) || + sta->mesh->llid != llid || + (sta->mesh->plid && sta->mesh->plid != plid)) event = CNF_IGNR; else event = CNF_ACPT; diff -u linux-xilinx-zynqmp-5.15.0/net/mac80211/tx.c linux-xilinx-zynqmp-5.15.0/net/mac80211/tx.c --- linux-xilinx-zynqmp-5.15.0/net/mac80211/tx.c +++ linux-xilinx-zynqmp-5.15.0/net/mac80211/tx.c @@ -644,7 +644,8 @@ } 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 && @@ -3745,6 +3746,7 @@ goto begin; skb = __skb_dequeue(&tx.skbs); + info = IEEE80211_SKB_CB(skb); if (!skb_queue_empty(&tx.skbs)) { spin_lock_bh(&fq->lock); @@ -3789,7 +3791,7 @@ } encap_out: - IEEE80211_SKB_CB(skb)->control.vif = vif; + info->control.vif = vif; if (vif && wiphy_ext_feature_isset(local->hw.wiphy, NL80211_EXT_FEATURE_AQL)) { diff -u linux-xilinx-zynqmp-5.15.0/net/mctp/route.c linux-xilinx-zynqmp-5.15.0/net/mctp/route.c --- linux-xilinx-zynqmp-5.15.0/net/mctp/route.c +++ linux-xilinx-zynqmp-5.15.0/net/mctp/route.c @@ -480,6 +480,10 @@ 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 *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 @@ } } + 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/mptcp/options.c linux-xilinx-zynqmp-5.15.0/net/mptcp/options.c --- linux-xilinx-zynqmp-5.15.0/net/mptcp/options.c +++ linux-xilinx-zynqmp-5.15.0/net/mptcp/options.c @@ -103,6 +103,7 @@ mp_opt->suboptions |= OPTION_MPTCP_DSS; mp_opt->use_map = 1; mp_opt->mpc_map = 1; + mp_opt->use_ack = 0; mp_opt->data_len = get_unaligned_be16(ptr); ptr += 2; } @@ -117,8 +118,8 @@ break; case MPTCPOPT_MP_JOIN: - mp_opt->suboptions |= OPTIONS_MPTCP_MPJ; if (opsize == TCPOLEN_MPTCP_MPJ_SYN) { + mp_opt->suboptions |= OPTION_MPTCP_MPJ_SYN; mp_opt->backup = *ptr++ & MPTCPOPT_BACKUP; mp_opt->join_id = *ptr++; mp_opt->token = get_unaligned_be32(ptr); @@ -129,6 +130,7 @@ mp_opt->backup, mp_opt->join_id, mp_opt->token, mp_opt->nonce); } else if (opsize == TCPOLEN_MPTCP_MPJ_SYNACK) { + mp_opt->suboptions |= OPTION_MPTCP_MPJ_SYNACK; mp_opt->backup = *ptr++ & MPTCPOPT_BACKUP; mp_opt->join_id = *ptr++; mp_opt->thmac = get_unaligned_be64(ptr); @@ -139,11 +141,10 @@ mp_opt->backup, mp_opt->join_id, mp_opt->thmac, mp_opt->nonce); } else if (opsize == TCPOLEN_MPTCP_MPJ_ACK) { + mp_opt->suboptions |= OPTION_MPTCP_MPJ_ACK; ptr += 2; memcpy(mp_opt->hmac, ptr, MPTCPOPT_HMAC_LEN); pr_debug("MP_JOIN hmac"); - } else { - mp_opt->suboptions &= ~OPTIONS_MPTCP_MPJ; } break; @@ -353,8 +354,7 @@ } } -void mptcp_get_options(const struct sock *sk, - const struct sk_buff *skb, +void mptcp_get_options(const struct sk_buff *skb, struct mptcp_options_received *mp_opt) { const struct tcphdr *th = tcp_hdr(skb); @@ -1090,7 +1090,7 @@ return true; } - mptcp_get_options(sk, skb, &mp_opt); + mptcp_get_options(skb, &mp_opt); /* The subflow can be in close state only if check_fully_established() * just sent a reset. If so, tell the caller to ignore the current packet. diff -u linux-xilinx-zynqmp-5.15.0/net/mptcp/protocol.c linux-xilinx-zynqmp-5.15.0/net/mptcp/protocol.c --- linux-xilinx-zynqmp-5.15.0/net/mptcp/protocol.c +++ linux-xilinx-zynqmp-5.15.0/net/mptcp/protocol.c @@ -1337,24 +1337,19 @@ 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 @@ if (reuse_skb) { TCP_SKB_CB(skb)->tcp_flags &= ~TCPHDR_PSH; mpext->data_len += copy; - WARN_ON_ONCE(zero_window_probe); goto out; } @@ -2209,9 +2203,6 @@ if (__mptcp_check_fallback(mptcp_sk(sk))) return false; - if (tcp_rtx_and_write_queues_empty(sk)) - return false; - /* the closing socket has some data untransmitted and/or unacked: * some data in the mptcp rtx queue has not really xmitted yet. * keep it simple and re-inject the whole mptcp level rtx queue diff -u linux-xilinx-zynqmp-5.15.0/net/mptcp/protocol.h linux-xilinx-zynqmp-5.15.0/net/mptcp/protocol.h --- linux-xilinx-zynqmp-5.15.0/net/mptcp/protocol.h +++ linux-xilinx-zynqmp-5.15.0/net/mptcp/protocol.h @@ -636,8 +636,7 @@ struct sock *mptcp_sk_clone(const struct sock *sk, const struct mptcp_options_received *mp_opt, struct request_sock *req); -void mptcp_get_options(const struct sock *sk, - const struct sk_buff *skb, +void mptcp_get_options(const struct sk_buff *skb, struct mptcp_options_received *mp_opt); void mptcp_finish_connect(struct sock *sk); diff -u linux-xilinx-zynqmp-5.15.0/net/mptcp/subflow.c linux-xilinx-zynqmp-5.15.0/net/mptcp/subflow.c --- linux-xilinx-zynqmp-5.15.0/net/mptcp/subflow.c +++ linux-xilinx-zynqmp-5.15.0/net/mptcp/subflow.c @@ -152,10 +152,10 @@ return -EINVAL; #endif - mptcp_get_options(sk_listener, skb, &mp_opt); + mptcp_get_options(skb, &mp_opt); opt_mp_capable = !!(mp_opt.suboptions & OPTIONS_MPTCP_MPC); - opt_mp_join = !!(mp_opt.suboptions & OPTIONS_MPTCP_MPJ); + opt_mp_join = !!(mp_opt.suboptions & OPTION_MPTCP_MPJ_SYN); if (opt_mp_capable) { SUBFLOW_REQ_INC_STATS(req, MPTCP_MIB_MPCAPABLEPASSIVE); @@ -249,10 +249,10 @@ int err; subflow_init_req(req, sk_listener); - mptcp_get_options(sk_listener, skb, &mp_opt); + mptcp_get_options(skb, &mp_opt); opt_mp_capable = !!(mp_opt.suboptions & OPTIONS_MPTCP_MPC); - opt_mp_join = !!(mp_opt.suboptions & OPTIONS_MPTCP_MPJ); + opt_mp_join = !!(mp_opt.suboptions & OPTION_MPTCP_MPJ_ACK); if (opt_mp_capable && opt_mp_join) return -EINVAL; @@ -407,7 +407,7 @@ subflow->ssn_offset = TCP_SKB_CB(skb)->seq; pr_debug("subflow=%p synack seq=%x", subflow, subflow->ssn_offset); - mptcp_get_options(sk, skb, &mp_opt); + mptcp_get_options(skb, &mp_opt); if (subflow->request_mptcp) { if (!(mp_opt.suboptions & OPTIONS_MPTCP_MPC)) { MPTCP_INC_STATS(sock_net(sk), @@ -432,7 +432,7 @@ } else if (subflow->request_join) { u8 hmac[SHA256_DIGEST_SIZE]; - if (!(mp_opt.suboptions & OPTIONS_MPTCP_MPJ)) { + if (!(mp_opt.suboptions & OPTION_MPTCP_MPJ_SYNACK)) { subflow->reset_reason = MPTCP_RST_EMPTCP; goto do_reset; } @@ -687,7 +687,7 @@ * reordered MPC will cause fallback, but we don't have other * options. */ - mptcp_get_options(sk, skb, &mp_opt); + mptcp_get_options(skb, &mp_opt); if (!(mp_opt.suboptions & OPTIONS_MPTCP_MPC)) { fallback = true; goto create_child; @@ -697,8 +697,8 @@ if (!new_msk) fallback = true; } else if (subflow_req->mp_join) { - mptcp_get_options(sk, skb, &mp_opt); - if (!(mp_opt.suboptions & OPTIONS_MPTCP_MPJ) || + mptcp_get_options(skb, &mp_opt); + if (!(mp_opt.suboptions & OPTION_MPTCP_MPJ_ACK) || !subflow_hmac_valid(req, &mp_opt) || !mptcp_can_accept_new_subflow(subflow_req->msk)) { SUBFLOW_REQ_INC_STATS(req, MPTCP_MIB_JOINACKMAC); diff -u linux-xilinx-zynqmp-5.15.0/net/ncsi/ncsi-aen.c linux-xilinx-zynqmp-5.15.0/net/ncsi/ncsi-aen.c --- linux-xilinx-zynqmp-5.15.0/net/ncsi/ncsi-aen.c +++ linux-xilinx-zynqmp-5.15.0/net/ncsi/ncsi-aen.c @@ -89,11 +89,6 @@ if ((had_link == has_link) || chained) return 0; - if (had_link) - netif_carrier_off(ndp->ndev.dev); - else - netif_carrier_on(ndp->ndev.dev); - if (!ndp->multi_package && !nc->package->multi_channel) { if (had_link) { ndp->flags |= NCSI_DEV_RESHUFFLE; diff -u linux-xilinx-zynqmp-5.15.0/net/ncsi/ncsi-netlink.c linux-xilinx-zynqmp-5.15.0/net/ncsi/ncsi-netlink.c --- linux-xilinx-zynqmp-5.15.0/net/ncsi/ncsi-netlink.c +++ linux-xilinx-zynqmp-5.15.0/net/ncsi/ncsi-netlink.c @@ -71,8 +71,8 @@ if (nc == nc->package->preferred_channel) nla_put_flag(skb, NCSI_CHANNEL_ATTR_FORCED); - nla_put_u32(skb, NCSI_CHANNEL_ATTR_VERSION_MAJOR, nc->version.version); - nla_put_u32(skb, NCSI_CHANNEL_ATTR_VERSION_MINOR, nc->version.alpha2); + nla_put_u32(skb, NCSI_CHANNEL_ATTR_VERSION_MAJOR, nc->version.major); + nla_put_u32(skb, NCSI_CHANNEL_ATTR_VERSION_MINOR, nc->version.minor); nla_put_string(skb, NCSI_CHANNEL_ATTR_VERSION_STR, nc->version.fw_name); vid_nest = nla_nest_start_noflag(skb, NCSI_CHANNEL_ATTR_VLAN_LIST); diff -u linux-xilinx-zynqmp-5.15.0/net/ncsi/ncsi-rsp.c linux-xilinx-zynqmp-5.15.0/net/ncsi/ncsi-rsp.c --- linux-xilinx-zynqmp-5.15.0/net/ncsi/ncsi-rsp.c +++ linux-xilinx-zynqmp-5.15.0/net/ncsi/ncsi-rsp.c @@ -19,6 +19,19 @@ #include "ncsi-pkt.h" #include "ncsi-netlink.h" +/* Nibbles within [0xA, 0xF] add zero "0" to the returned value. + * Optional fields (encoded as 0xFF) will default to zero. + */ +static u8 decode_bcd_u8(u8 x) +{ + int lo = x & 0xF; + int hi = x >> 4; + + lo = lo < 0xA ? lo : 0; + hi = hi < 0xA ? hi : 0; + return lo + hi * 10; +} + static int ncsi_validate_rsp_pkt(struct ncsi_request *nr, unsigned short payload) { @@ -755,9 +768,18 @@ if (!nc) return -ENODEV; - /* Update to channel's version info */ + /* Update channel's version info + * + * Major, minor, and update fields are supposed to be + * unsigned integers encoded as packed BCD. + * + * Alpha1 and alpha2 are ISO/IEC 8859-1 characters. + */ ncv = &nc->version; - ncv->version = ntohl(rsp->ncsi_version); + ncv->major = decode_bcd_u8(rsp->major); + ncv->minor = decode_bcd_u8(rsp->minor); + ncv->update = decode_bcd_u8(rsp->update); + ncv->alpha1 = rsp->alpha1; ncv->alpha2 = rsp->alpha2; memcpy(ncv->fw_name, rsp->fw_name, 12); ncv->fw_version = ntohl(rsp->fw_version); diff -u linux-xilinx-zynqmp-5.15.0/net/netfilter/ipset/ip_set_core.c linux-xilinx-zynqmp-5.15.0/net/netfilter/ipset/ip_set_core.c --- linux-xilinx-zynqmp-5.15.0/net/netfilter/ipset/ip_set_core.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/ipset/ip_set_core.c @@ -61,6 +61,8 @@ 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 @@ 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 @@ -1159,6 +1156,7 @@ return ret; cleanup: + set->variant->cancel_gc(set); set->variant->destroy(set); put_out: module_put(set->type->me); @@ -1187,6 +1185,14 @@ kfree(set); } +static void +ip_set_destroy_set_rcu(struct rcu_head *head) +{ + struct ip_set *set = container_of(head, struct ip_set, rcu); + + ip_set_destroy_set(set); +} + static int ip_set_destroy(struct sk_buff *skb, const struct nfnl_info *info, const struct nlattr * const attr[]) { @@ -1198,8 +1204,6 @@ if (unlikely(protocol_min_failed(attr))) return -IPSET_ERR_PROTOCOL; - /* Must wait for flush to be really finished in list:set */ - rcu_barrier(); /* Commands are serialized and references are * protected by the ip_set_ref_lock. @@ -1211,8 +1215,10 @@ * counter, so if it's already zero, we can proceed * without holding the lock. */ - read_lock_bh(&ip_set_ref_lock); if (!attr[IPSET_ATTR_SETNAME]) { + /* Must wait for flush to be really finished in list:set */ + rcu_barrier(); + read_lock_bh(&ip_set_ref_lock); for (i = 0; i < inst->ip_set_max; i++) { s = ip_set(inst, i); if (s && (s->ref || s->ref_netlink)) { @@ -1226,6 +1232,8 @@ s = ip_set(inst, i); if (s) { ip_set(inst, i) = NULL; + /* Must cancel garbage collectors */ + s->variant->cancel_gc(s); ip_set_destroy_set(s); } } @@ -1233,6 +1241,9 @@ inst->is_destroyed = false; } else { u32 flags = flag_exist(info->nlh); + u16 features = 0; + + read_lock_bh(&ip_set_ref_lock); s = find_set_and_id(inst, nla_data(attr[IPSET_ATTR_SETNAME]), &i); if (!s) { @@ -1243,10 +1254,16 @@ ret = -IPSET_ERR_BUSY; goto out; } + features = s->type->features; ip_set(inst, i) = NULL; read_unlock_bh(&ip_set_ref_lock); - - ip_set_destroy_set(s); + if (features & IPSET_TYPE_NAME) { + /* Must wait for flush to be really finished */ + rcu_barrier(); + } + /* Must cancel garbage collectors */ + s->variant->cancel_gc(s); + call_rcu(&s->rcu, ip_set_destroy_set_rcu); } return 0; out: @@ -2362,6 +2379,7 @@ set = ip_set(inst, i); if (set) { ip_set(inst, i) = NULL; + set->variant->cancel_gc(set); ip_set_destroy_set(set); } } @@ -2409,8 +2427,11 @@ { nf_unregister_sockopt(&so_set); nfnetlink_subsys_unregister(&ip_set_netlink_subsys); - unregister_pernet_subsys(&ip_set_net_ops); + + /* Wait for call_rcu() in destroy */ + rcu_barrier(); + pr_debug("these are the famous last words\n"); } diff -u linux-xilinx-zynqmp-5.15.0/net/netfilter/ipset/ip_set_hash_gen.h linux-xilinx-zynqmp-5.15.0/net/netfilter/ipset/ip_set_hash_gen.h --- linux-xilinx-zynqmp-5.15.0/net/netfilter/ipset/ip_set_hash_gen.h +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/ipset/ip_set_hash_gen.h @@ -210,6 +210,7 @@ #undef mtype_gc_do #undef mtype_gc #undef mtype_gc_init +#undef mtype_cancel_gc #undef mtype_variant #undef mtype_data_match @@ -254,6 +255,7 @@ #define mtype_gc_do IPSET_TOKEN(MTYPE, _gc_do) #define mtype_gc IPSET_TOKEN(MTYPE, _gc) #define mtype_gc_init IPSET_TOKEN(MTYPE, _gc_init) +#define mtype_cancel_gc IPSET_TOKEN(MTYPE, _cancel_gc) #define mtype_variant IPSET_TOKEN(MTYPE, _variant) #define mtype_data_match IPSET_TOKEN(MTYPE, _data_match) @@ -417,7 +419,7 @@ u32 i; for (i = 0; i < jhash_size(t->htable_bits); i++) { - n = __ipset_dereference(hbucket(t, i)); + n = (__force struct hbucket *)hbucket(t, i); if (!n) continue; if (set->extensions & IPSET_EXT_DESTROY && ext_destroy) @@ -437,10 +439,7 @@ struct htype *h = set->data; struct list_head *l, *lt; - if (SET_WITH_TIMEOUT(set)) - cancel_delayed_work_sync(&h->gc.dwork); - - mtype_ahash_destroy(set, ipset_dereference_nfnl(h->table), true); + mtype_ahash_destroy(set, (__force struct htable *)h->table, true); list_for_each_safe(l, lt, &h->ad) { list_del(l); kfree(l); @@ -586,6 +585,15 @@ queue_delayed_work(system_power_efficient_wq, &gc->dwork, HZ); } +static void +mtype_cancel_gc(struct ip_set *set) +{ + struct htype *h = set->data; + + if (SET_WITH_TIMEOUT(set)) + cancel_delayed_work_sync(&h->gc.dwork); +} + static int mtype_add(struct ip_set *set, void *value, const struct ip_set_ext *ext, struct ip_set_ext *mext, u32 flags); @@ -1416,6 +1424,7 @@ .uref = mtype_uref, .resize = mtype_resize, .same_set = mtype_same_set, + .cancel_gc = mtype_cancel_gc, .region_lock = true, }; diff -u linux-xilinx-zynqmp-5.15.0/net/netfilter/ipvs/ip_vs_xmit.c linux-xilinx-zynqmp-5.15.0/net/netfilter/ipvs/ip_vs_xmit.c --- linux-xilinx-zynqmp-5.15.0/net/netfilter/ipvs/ip_vs_xmit.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/ipvs/ip_vs_xmit.c @@ -271,7 +271,7 @@ skb->dev = dst->dev; icmpv6_send(skb, ICMPV6_TIME_EXCEED, ICMPV6_EXC_HOPLIMIT, 0); - __IP6_INC_STATS(net, idev, IPSTATS_MIB_INHDRERRORS); + IP6_INC_STATS(net, idev, IPSTATS_MIB_INHDRERRORS); return false; } @@ -286,7 +286,7 @@ { if (ip_hdr(skb)->ttl <= 1) { /* Tell the sender its packet died... */ - __IP_INC_STATS(net, IPSTATS_MIB_INHDRERRORS); + IP_INC_STATS(net, IPSTATS_MIB_INHDRERRORS); icmp_send(skb, ICMP_TIME_EXCEEDED, ICMP_EXC_TTL, 0); return false; } diff -u linux-xilinx-zynqmp-5.15.0/net/netfilter/nf_tables_api.c linux-xilinx-zynqmp-5.15.0/net/netfilter/nf_tables_api.c --- linux-xilinx-zynqmp-5.15.0/net/netfilter/nf_tables_api.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nf_tables_api.c @@ -24,6 +24,7 @@ #include #define NFT_MODULE_AUTOLOAD_LIMIT (MODULE_NAME_LEN - sizeof("nft-expr-255-")) +#define NFT_SET_MAX_ANONLEN 16 unsigned int nf_tables_net_id __read_mostly; @@ -753,7 +754,7 @@ 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 +762,7 @@ 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) @@ -1485,7 +1487,7 @@ 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]; @@ -3211,10 +3213,6 @@ 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 @@ -4060,6 +4058,9 @@ if (p[1] != 'd' || strchr(p + 2, '%')) return -EINVAL; + if (strnlen(name, NFT_SET_MAX_ANONLEN) >= NFT_SET_MAX_ANONLEN) + return -EINVAL; + inuse = (unsigned long *)get_zeroed_page(GFP_KERNEL); if (inuse == NULL) return -ENOMEM; @@ -4456,8 +4457,8 @@ static int nft_set_desc_concat(struct nft_set_desc *desc, const struct nlattr *nla) { + u32 num_regs = 0, key_num_regs = 0; struct nlattr *attr; - u32 num_regs = 0; int rem, err, i; nla_for_each_nested(attr, nla, rem) { @@ -4472,6 +4473,10 @@ for (i = 0; i < desc->field_count; i++) num_regs += DIV_ROUND_UP(desc->field_len[i], sizeof(u32)); + key_num_regs = DIV_ROUND_UP(desc->klen, sizeof(u32)); + if (key_num_regs != num_regs) + return -EINVAL; + if (num_regs > NFT_REG32_COUNT) return -E2BIG; @@ -4686,16 +4691,28 @@ } desc.policy = NFT_SET_POL_PERFORMANCE; - if (nla[NFTA_SET_POLICY] != NULL) + if (nla[NFTA_SET_POLICY] != NULL) { desc.policy = ntohl(nla_get_be32(nla[NFTA_SET_POLICY])); + switch (desc.policy) { + case NFT_SET_POL_PERFORMANCE: + case NFT_SET_POL_MEMORY: + break; + default: + return -EOPNOTSUPP; + } + } if (nla[NFTA_SET_DESC] != NULL) { err = nf_tables_set_desc_parse(&desc, nla[NFTA_SET_DESC]); if (err < 0) return err; - if (desc.field_count > 1 && !(flags & NFT_SET_CONCAT)) + if (desc.field_count > 1) { + if (!(flags & NFT_SET_CONCAT)) + return -EINVAL; + } else if (flags & NFT_SET_CONCAT) { return -EINVAL; + } } else if (flags & NFT_SET_CONCAT) { return -EINVAL; } @@ -5339,7 +5356,7 @@ const struct nft_set_ext *ext = nft_set_elem_ext(set, elem->priv); struct nft_set_dump_args *args; - if (nft_set_elem_expired(ext)) + if (nft_set_elem_expired(ext) || nft_set_elem_is_dead(ext)) return 0; args = container_of(iter, struct nft_set_dump_args, iter); @@ -5891,7 +5908,7 @@ int err, i, k; for (i = 0; i < set->num_exprs; i++) { - expr = kzalloc(set->exprs[i]->ops->size, GFP_KERNEL); + expr = kzalloc(set->exprs[i]->ops->size, GFP_KERNEL_ACCOUNT); if (!expr) goto err_expr; @@ -6037,7 +6054,7 @@ 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); @@ -6982,11 +6999,15 @@ return -1; } -static const struct nft_object_type *__nft_obj_type_get(u32 objtype) +static const struct nft_object_type *__nft_obj_type_get(u32 objtype, u8 family) { const struct nft_object_type *type; list_for_each_entry(type, &nf_tables_objects, list) { + if (type->family != NFPROTO_UNSPEC && + type->family != family) + continue; + if (objtype == type->type) return type; } @@ -6994,11 +7015,11 @@ } static const struct nft_object_type * -nft_obj_type_get(struct net *net, u32 objtype) +nft_obj_type_get(struct net *net, u32 objtype, u8 family) { const struct nft_object_type *type; - type = __nft_obj_type_get(objtype); + type = __nft_obj_type_get(objtype, family); if (type != NULL && try_module_get(type->owner)) return type; @@ -7091,7 +7112,7 @@ if (info->nlh->nlmsg_flags & NLM_F_REPLACE) return -EOPNOTSUPP; - type = __nft_obj_type_get(objtype); + type = __nft_obj_type_get(objtype, family); if (WARN_ON_ONCE(!type)) return -ENOENT; @@ -7105,7 +7126,7 @@ if (!nft_use_inc(&table->use)) return -EMFILE; - type = nft_obj_type_get(net, objtype); + type = nft_obj_type_get(net, objtype, family); if (IS_ERR(type)) { err = PTR_ERR(type); goto err_type; @@ -9078,16 +9099,14 @@ call_rcu(&trans->rcu, nft_trans_gc_trans_free); } -static struct nft_trans_gc *nft_trans_gc_catchall(struct nft_trans_gc *gc, - unsigned int gc_seq, - bool sync) +struct nft_trans_gc *nft_trans_gc_catchall_async(struct nft_trans_gc *gc, + unsigned int gc_seq) { - struct nft_set_elem_catchall *catchall, *next; + struct nft_set_elem_catchall *catchall; const struct nft_set *set = gc->set; - struct nft_set_elem *elem; struct nft_set_ext *ext; - list_for_each_entry_safe(catchall, next, &set->catchall_list, list) { + list_for_each_entry_rcu(catchall, &set->catchall_list, list) { ext = nft_set_elem_ext(set, catchall->elem); if (!nft_set_elem_expired(ext)) @@ -9097,35 +9116,44 @@ nft_set_elem_dead(ext); dead_elem: - if (sync) - gc = nft_trans_gc_queue_sync(gc, GFP_ATOMIC); - else - gc = nft_trans_gc_queue_async(gc, gc_seq, GFP_ATOMIC); - + gc = nft_trans_gc_queue_async(gc, gc_seq, GFP_ATOMIC); if (!gc) return NULL; - elem = catchall->elem; - if (sync) { - nft_setelem_data_deactivate(gc->net, gc->set, elem); - nft_setelem_catchall_destroy(catchall); - } - - nft_trans_gc_elem_add(gc, elem->priv); + nft_trans_gc_elem_add(gc, catchall->elem); } return gc; } -struct nft_trans_gc *nft_trans_gc_catchall_async(struct nft_trans_gc *gc, - unsigned int gc_seq) -{ - return nft_trans_gc_catchall(gc, gc_seq, false); -} - struct nft_trans_gc *nft_trans_gc_catchall_sync(struct nft_trans_gc *gc) { - return nft_trans_gc_catchall(gc, 0, true); + 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) @@ -9736,6 +9764,7 @@ nft_trans_destroy(trans); break; } + nft_trans_set(trans)->dead = 1; list_del_rcu(&nft_trans_set(trans)->list); break; case NFT_MSG_DELSET: @@ -10225,16 +10254,10 @@ 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: @@ -10269,6 +10292,8 @@ data->verdict.chain = chain; break; + default: + return -EINVAL; } desc->len = sizeof(data->verdict); diff -u linux-xilinx-zynqmp-5.15.0/net/netfilter/nfnetlink_log.c linux-xilinx-zynqmp-5.15.0/net/netfilter/nfnetlink_log.c --- linux-xilinx-zynqmp-5.15.0/net/netfilter/nfnetlink_log.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nfnetlink_log.c @@ -687,8 +687,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_byteorder.c linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_byteorder.c --- linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_byteorder.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_byteorder.c @@ -38,20 +38,22 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_chain_filter.c linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_chain_filter.c --- linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_chain_filter.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_chain_filter.c @@ -355,9 +355,10 @@ unsigned long event, void *ptr) { struct net_device *dev = netdev_notifier_info_to_dev(ptr); + struct nft_base_chain *basechain; struct nftables_pernet *nft_net; - struct nft_table *table; struct nft_chain *chain, *nr; + struct nft_table *table; struct nft_ctx ctx = { .net = dev_net(dev), }; @@ -369,7 +370,8 @@ nft_net = nft_pernet(ctx.net); mutex_lock(&nft_net->commit_mutex); list_for_each_entry(table, &nft_net->tables, list) { - if (table->family != NFPROTO_NETDEV) + if (table->family != NFPROTO_NETDEV && + table->family != NFPROTO_INET) continue; ctx.family = table->family; @@ -378,6 +380,11 @@ if (!nft_is_base_chain(chain)) continue; + basechain = nft_base_chain(chain); + if (table->family == NFPROTO_INET && + basechain->ops.hooknum != NF_INET_INGRESS) + continue; + ctx.chain = chain; nft_netdev_event(event, dev, &ctx); } diff -u linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_ct.c linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_ct.c --- linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_ct.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_ct.c @@ -483,6 +483,9 @@ break; #endif case NFT_CT_ID: + if (tb[NFTA_CT_DIRECTION]) + return -EINVAL; + len = sizeof(u32); break; default: @@ -1186,7 +1189,31 @@ if (tb[NFTA_CT_EXPECT_L3PROTO]) priv->l3num = ntohs(nla_get_be16(tb[NFTA_CT_EXPECT_L3PROTO])); + switch (priv->l3num) { + case NFPROTO_IPV4: + case NFPROTO_IPV6: + if (priv->l3num != ctx->family) + return -EINVAL; + + fallthrough; + case NFPROTO_INET: + break; + default: + return -EOPNOTSUPP; + } + priv->l4proto = nla_get_u8(tb[NFTA_CT_EXPECT_L4PROTO]); + switch (priv->l4proto) { + case IPPROTO_TCP: + case IPPROTO_UDP: + case IPPROTO_UDPLITE: + case IPPROTO_DCCP: + case IPPROTO_SCTP: + break; + default: + return -EOPNOTSUPP; + } + priv->dport = nla_get_be16(tb[NFTA_CT_EXPECT_DPORT]); priv->timeout = nla_get_u32(tb[NFTA_CT_EXPECT_TIMEOUT]); priv->size = nla_get_u8(tb[NFTA_CT_EXPECT_SIZE]); diff -u linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_exthdr.c linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_exthdr.c --- linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_exthdr.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_exthdr.c @@ -214,7 +214,7 @@ offset = i + priv->offset; if (priv->flags & NFT_EXTHDR_F_PRESENT) { - *dest = 1; + nft_reg_store8(dest, 1); } else { if (priv->len % NFT_REG32_SIZE) dest[priv->len / NFT_REG32_SIZE] = 0; diff -u linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_flow_offload.c linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_flow_offload.c --- linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_flow_offload.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_flow_offload.c @@ -357,6 +357,11 @@ { unsigned int hook_mask = (1 << NF_INET_FORWARD); + if (ctx->family != NFPROTO_IPV4 && + ctx->family != NFPROTO_IPV6 && + ctx->family != NFPROTO_INET) + return -EOPNOTSUPP; + return nft_chain_validate_hooks(ctx->chain, hook_mask); } diff -u linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_immediate.c linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_immediate.c --- linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_immediate.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_immediate.c @@ -78,7 +78,7 @@ case NFT_GOTO: err = nf_tables_bind_chain(ctx, chain); if (err < 0) - return err; + goto err1; break; default: break; diff -u linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_meta.c linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_meta.c --- linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_meta.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_meta.c @@ -63,7 +63,7 @@ { 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 -u linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_nat.c linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_nat.c --- linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_nat.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_nat.c @@ -142,6 +142,11 @@ struct nft_nat *priv = nft_expr_priv(expr); int err; + if (ctx->family != NFPROTO_IPV4 && + ctx->family != NFPROTO_IPV6 && + ctx->family != NFPROTO_INET) + return -EOPNOTSUPP; + err = nft_chain_validate_dependency(ctx->chain, NFT_CHAIN_T_NAT); if (err < 0) return err; diff -u linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_osf.c linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_osf.c --- linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_osf.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_osf.c @@ -99,7 +99,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_payload.c linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_payload.c --- linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_payload.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_payload.c @@ -133,7 +133,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_redir.c linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_redir.c --- linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_redir.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_redir.c @@ -64,6 +64,8 @@ } 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 @@ 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 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 @@ }; #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 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 @@ #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 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 -u linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_set_pipapo.c linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_set_pipapo.c --- linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_set_pipapo.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_set_pipapo.c @@ -342,9 +342,6 @@ #include "nft_set_pipapo_avx2.h" #include "nft_set_pipapo.h" -/* Current working bitmap index, toggled between field matches */ -static DEFINE_PER_CPU(bool, nft_pipapo_scratch_index); - /** * pipapo_refill() - For each set bit, set bits from selected mapping table item * @map: Bitmap to be scanned for set bits @@ -412,6 +409,7 @@ const u32 *key, const struct nft_set_ext **ext) { struct nft_pipapo *priv = nft_set_priv(set); + struct nft_pipapo_scratch *scratch; unsigned long *res_map, *fill_map; u8 genmask = nft_genmask_cur(net); const u8 *rp = (const u8 *)key; @@ -422,15 +420,17 @@ local_bh_disable(); - map_index = raw_cpu_read(nft_pipapo_scratch_index); - m = rcu_dereference(priv->match); if (unlikely(!m || !*raw_cpu_ptr(m->scratch))) goto out; - res_map = *raw_cpu_ptr(m->scratch) + (map_index ? m->bsize_max : 0); - fill_map = *raw_cpu_ptr(m->scratch) + (map_index ? 0 : m->bsize_max); + scratch = *raw_cpu_ptr(m->scratch); + + map_index = scratch->map_index; + + res_map = scratch->map + (map_index ? m->bsize_max : 0); + fill_map = scratch->map + (map_index ? 0 : m->bsize_max); memset(res_map, 0xff, m->bsize_max * sizeof(*res_map)); @@ -460,7 +460,7 @@ b = pipapo_refill(res_map, f->bsize, f->rules, fill_map, f->mt, last); if (b < 0) { - raw_cpu_write(nft_pipapo_scratch_index, map_index); + scratch->map_index = map_index; local_bh_enable(); return false; @@ -477,7 +477,7 @@ * current inactive bitmap is clean and can be reused as * *next* bitmap (not initial) for the next packet. */ - raw_cpu_write(nft_pipapo_scratch_index, map_index); + scratch->map_index = map_index; local_bh_enable(); return true; @@ -1102,6 +1102,25 @@ } /** + * pipapo_free_scratch() - Free per-CPU map at original (not aligned) address + * @m: Matching data + * @cpu: CPU number + */ +static void pipapo_free_scratch(const struct nft_pipapo_match *m, unsigned int cpu) +{ + struct nft_pipapo_scratch *s; + void *mem; + + s = *per_cpu_ptr(m->scratch, cpu); + if (!s) + return; + + mem = s; + mem -= s->align_off; + kfree(mem); +} + +/** * pipapo_realloc_scratch() - Reallocate scratch maps for partial match results * @clone: Copy of matching data with pending insertions and deletions * @bsize_max: Maximum bucket size, scratch maps cover two buckets @@ -1114,12 +1133,13 @@ int i; for_each_possible_cpu(i) { - unsigned long *scratch; + struct nft_pipapo_scratch *scratch; #ifdef NFT_PIPAPO_ALIGN - unsigned long *scratch_aligned; + void *scratch_aligned; + u32 align_off; #endif - - scratch = kzalloc_node(bsize_max * sizeof(*scratch) * 2 + + scratch = kzalloc_node(struct_size(scratch, map, + bsize_max * 2) + NFT_PIPAPO_ALIGN_HEADROOM, GFP_KERNEL, cpu_to_node(i)); if (!scratch) { @@ -1133,14 +1153,25 @@ return -ENOMEM; } - kfree(*per_cpu_ptr(clone->scratch, i)); - - *per_cpu_ptr(clone->scratch, i) = scratch; + pipapo_free_scratch(clone, i); #ifdef NFT_PIPAPO_ALIGN - scratch_aligned = NFT_PIPAPO_LT_ALIGN(scratch); - *per_cpu_ptr(clone->scratch_aligned, i) = scratch_aligned; + /* Align &scratch->map (not the struct itself): the extra + * %NFT_PIPAPO_ALIGN_HEADROOM bytes passed to kzalloc_node() + * above guarantee we can waste up to those bytes in order + * to align the map field regardless of its offset within + * the struct. + */ + BUILD_BUG_ON(offsetof(struct nft_pipapo_scratch, map) > NFT_PIPAPO_ALIGN_HEADROOM); + + scratch_aligned = NFT_PIPAPO_LT_ALIGN(&scratch->map); + scratch_aligned -= offsetof(struct nft_pipapo_scratch, map); + align_off = scratch_aligned - (void *)scratch; + + scratch = scratch_aligned; + scratch->align_off = align_off; #endif + *per_cpu_ptr(clone->scratch, i) = scratch; } return 0; @@ -1294,11 +1325,6 @@ if (!new->scratch) goto out_scratch; -#ifdef NFT_PIPAPO_ALIGN - new->scratch_aligned = alloc_percpu(*new->scratch_aligned); - if (!new->scratch_aligned) - goto out_scratch; -#endif for_each_possible_cpu(i) *per_cpu_ptr(new->scratch, i) = NULL; @@ -1350,10 +1376,7 @@ } out_scratch_realloc: for_each_possible_cpu(i) - kfree(*per_cpu_ptr(new->scratch, i)); -#ifdef NFT_PIPAPO_ALIGN - free_percpu(new->scratch_aligned); -#endif + pipapo_free_scratch(new, i); out_scratch: free_percpu(new->scratch); kfree(new); @@ -1638,13 +1661,9 @@ int i; for_each_possible_cpu(i) - kfree(*per_cpu_ptr(m->scratch, i)); + pipapo_free_scratch(m, i); -#ifdef NFT_PIPAPO_ALIGN - free_percpu(m->scratch_aligned); -#endif free_percpu(m->scratch); - pipapo_free_fields(m); kfree(m); @@ -2132,7 +2151,7 @@ m->field_count = field_count; m->bsize_max = 0; - m->scratch = alloc_percpu(unsigned long *); + m->scratch = alloc_percpu(struct nft_pipapo_scratch *); if (!m->scratch) { err = -ENOMEM; goto out_scratch; @@ -2140,16 +2159,6 @@ for_each_possible_cpu(i) *per_cpu_ptr(m->scratch, i) = NULL; -#ifdef NFT_PIPAPO_ALIGN - m->scratch_aligned = alloc_percpu(unsigned long *); - if (!m->scratch_aligned) { - err = -ENOMEM; - goto out_free; - } - for_each_possible_cpu(i) - *per_cpu_ptr(m->scratch_aligned, i) = NULL; -#endif - rcu_head_init(&m->rcu); nft_pipapo_for_each_field(f, i, m) { @@ -2180,9 +2189,6 @@ return 0; out_free: -#ifdef NFT_PIPAPO_ALIGN - free_percpu(m->scratch_aligned); -#endif free_percpu(m->scratch); out_scratch: kfree(m); @@ -2236,11 +2242,8 @@ nft_set_pipapo_match_destroy(ctx, set, m); -#ifdef NFT_PIPAPO_ALIGN - free_percpu(m->scratch_aligned); -#endif for_each_possible_cpu(cpu) - kfree(*per_cpu_ptr(m->scratch, cpu)); + pipapo_free_scratch(m, cpu); free_percpu(m->scratch); pipapo_free_fields(m); kfree(m); @@ -2253,11 +2256,8 @@ if (priv->dirty) nft_set_pipapo_match_destroy(ctx, set, m); -#ifdef NFT_PIPAPO_ALIGN - free_percpu(priv->clone->scratch_aligned); -#endif for_each_possible_cpu(cpu) - kfree(*per_cpu_ptr(priv->clone->scratch, cpu)); + pipapo_free_scratch(priv->clone, cpu); free_percpu(priv->clone->scratch); pipapo_free_fields(priv->clone); diff -u linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_set_pipapo_avx2.c linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_set_pipapo_avx2.c --- linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_set_pipapo_avx2.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_set_pipapo_avx2.c @@ -71,9 +71,6 @@ #define NFT_PIPAPO_AVX2_ZERO(reg) \ asm volatile("vpxor %ymm" #reg ", %ymm" #reg ", %ymm" #reg) -/* Current working bitmap index, toggled between field matches */ -static DEFINE_PER_CPU(bool, nft_pipapo_avx2_scratch_index); - /** * nft_pipapo_avx2_prepare() - Prepare before main algorithm body * @@ -1122,11 +1119,12 @@ const u32 *key, const struct nft_set_ext **ext) { struct nft_pipapo *priv = nft_set_priv(set); - unsigned long *res, *fill, *scratch; + struct nft_pipapo_scratch *scratch; u8 genmask = nft_genmask_cur(net); const u8 *rp = (const u8 *)key; struct nft_pipapo_match *m; struct nft_pipapo_field *f; + unsigned long *res, *fill; bool map_index; int i, ret = 0; @@ -1143,15 +1141,16 @@ */ kernel_fpu_begin_mask(0); - scratch = *raw_cpu_ptr(m->scratch_aligned); + scratch = *raw_cpu_ptr(m->scratch); if (unlikely(!scratch)) { kernel_fpu_end(); return false; } - map_index = raw_cpu_read(nft_pipapo_avx2_scratch_index); - res = scratch + (map_index ? m->bsize_max : 0); - fill = scratch + (map_index ? 0 : m->bsize_max); + map_index = scratch->map_index; + + res = scratch->map + (map_index ? m->bsize_max : 0); + fill = scratch->map + (map_index ? 0 : m->bsize_max); /* Starting map doesn't need to be set for this implementation */ @@ -1223,7 +1222,7 @@ out: if (i % 2) - raw_cpu_write(nft_pipapo_avx2_scratch_index, !map_index); + scratch->map_index = !map_index; kernel_fpu_end(); return ret >= 0; diff -u linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_set_rbtree.c linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_set_rbtree.c --- linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_set_rbtree.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_set_rbtree.c @@ -235,7 +235,7 @@ 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_rbtree_elem *rbe) { struct nft_set *set = (struct nft_set *)__set; struct rb_node *prev = rb_prev(&rbe->node); @@ -254,7 +254,7 @@ while (prev) { rbe_prev = rb_entry(prev, struct nft_rbtree_elem, node); if (nft_rbtree_interval_end(rbe_prev) && - nft_set_elem_active(&rbe_prev->ext, genmask)) + nft_set_elem_active(&rbe_prev->ext, NFT_GENMASK_ANY)) break; prev = rb_prev(prev); @@ -365,7 +365,7 @@ nft_set_elem_active(&rbe->ext, cur_genmask)) { const struct nft_rbtree_elem *removed_end; - removed_end = nft_rbtree_gc_elem(set, priv, rbe, genmask); + removed_end = nft_rbtree_gc_elem(set, priv, rbe); if (IS_ERR(removed_end)) return PTR_ERR(removed_end); @@ -568,6 +568,8 @@ 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; diff -u linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_socket.c linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_socket.c --- linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_socket.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_socket.c @@ -162,7 +162,7 @@ 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 @@ 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 @@ { 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; } @@ -214,6 +214,11 @@ const struct nft_expr *expr, const struct nft_data **data) { + if (ctx->family != NFPROTO_IPV4 && + ctx->family != NFPROTO_IPV6 && + ctx->family != NFPROTO_INET) + return -EOPNOTSUPP; + return nft_chain_validate_hooks(ctx->chain, (1 << NF_INET_PRE_ROUTING) | (1 << NF_INET_LOCAL_IN) | diff -u linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_synproxy.c linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_synproxy.c --- linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_synproxy.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_synproxy.c @@ -186,7 +186,6 @@ break; #endif case NFPROTO_INET: - case NFPROTO_BRIDGE: err = nf_synproxy_ipv4_init(snet, ctx->net); if (err) goto nf_ct_failure; @@ -219,7 +218,6 @@ break; #endif case NFPROTO_INET: - case NFPROTO_BRIDGE: nf_synproxy_ipv4_fini(snet, ctx->net); nf_synproxy_ipv6_fini(snet, ctx->net); break; @@ -253,6 +251,11 @@ const struct nft_expr *expr, const struct nft_data **data) { + if (ctx->family != NFPROTO_IPV4 && + ctx->family != NFPROTO_IPV6 && + ctx->family != NFPROTO_INET) + return -EOPNOTSUPP; + return nft_chain_validate_hooks(ctx->chain, (1 << NF_INET_LOCAL_IN) | (1 << NF_INET_FORWARD)); } diff -u linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_tproxy.c linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_tproxy.c --- linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_tproxy.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_tproxy.c @@ -52,11 +52,11 @@ 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 @@ 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; @@ -316,6 +316,11 @@ const struct nft_expr *expr, const struct nft_data **data) { + if (ctx->family != NFPROTO_IPV4 && + ctx->family != NFPROTO_IPV6 && + ctx->family != NFPROTO_INET) + return -EOPNOTSUPP; + return nft_chain_validate_hooks(ctx->chain, 1 << NF_INET_PRE_ROUTING); } diff -u linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_tunnel.c linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_tunnel.c --- linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_tunnel.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_tunnel.c @@ -684,6 +684,7 @@ static struct nft_object_type nft_tunnel_obj_type __read_mostly = { .type = NFT_OBJECT_TUNNEL, + .family = NFPROTO_NETDEV, .ops = &nft_tunnel_obj_ops, .maxattr = NFTA_TUNNEL_KEY_MAX, .policy = nft_tunnel_key_policy, diff -u linux-xilinx-zynqmp-5.15.0/net/netlink/af_netlink.c linux-xilinx-zynqmp-5.15.0/net/netlink/af_netlink.c --- linux-xilinx-zynqmp-5.15.0/net/netlink/af_netlink.c +++ linux-xilinx-zynqmp-5.15.0/net/netlink/af_netlink.c @@ -374,7 +374,7 @@ if (is_vmalloc_addr(skb->head)) { if (!skb->cloned || !atomic_dec_return(&(skb_shinfo(skb)->dataref))) - vfree(skb->head); + vfree_atomic(skb->head); skb->head = NULL; } diff -u linux-xilinx-zynqmp-5.15.0/net/netlink/genetlink.c linux-xilinx-zynqmp-5.15.0/net/netlink/genetlink.c --- linux-xilinx-zynqmp-5.15.0/net/netlink/genetlink.c +++ linux-xilinx-zynqmp-5.15.0/net/netlink/genetlink.c @@ -1379,6 +1379,9 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/nfc/llcp_core.c linux-xilinx-zynqmp-5.15.0/net/nfc/llcp_core.c --- linux-xilinx-zynqmp-5.15.0/net/nfc/llcp_core.c +++ linux-xilinx-zynqmp-5.15.0/net/nfc/llcp_core.c @@ -147,6 +147,13 @@ static struct nfc_llcp_local *nfc_llcp_local_get(struct nfc_llcp_local *local) { + /* Since using nfc_llcp_local may result in usage of nfc_dev, whenever + * we hold a reference to local, we also need to hold a reference to + * the device to avoid UAF. + */ + if (!nfc_get_device(local->dev->idx)) + return NULL; + kref_get(&local->ref); return local; @@ -179,10 +186,18 @@ int nfc_llcp_local_put(struct nfc_llcp_local *local) { + struct nfc_dev *dev; + int ret; + if (local == NULL) return 0; - return kref_put(&local->ref, local_release); + dev = local->dev; + + ret = kref_put(&local->ref, local_release); + nfc_put_device(dev); + + return ret; } static struct nfc_llcp_sock *nfc_llcp_sock_get(struct nfc_llcp_local *local, @@ -968,8 +983,17 @@ } new_sock = nfc_llcp_sock(new_sk); - new_sock->dev = local->dev; + new_sock->local = nfc_llcp_local_get(local); + if (!new_sock->local) { + reason = LLCP_DM_REJ; + sock_put(&new_sock->sk); + release_sock(&sock->sk); + sock_put(&sock->sk); + goto fail; + } + + new_sock->dev = local->dev; new_sock->rw = sock->rw; new_sock->miux = sock->miux; new_sock->nfc_protocol = sock->nfc_protocol; @@ -1607,7 +1631,16 @@ if (local == NULL) return -ENOMEM; - local->dev = ndev; + /* As we are going to initialize local's refcount, we need to get the + * nfc_dev to avoid UAF, otherwise there is no point in continuing. + * See nfc_llcp_local_get(). + */ + local->dev = nfc_get_device(ndev->idx); + if (!local->dev) { + kfree(local); + return -ENODEV; + } + INIT_LIST_HEAD(&local->list); kref_init(&local->ref); mutex_init(&local->sdp_lock); diff -u linux-xilinx-zynqmp-5.15.0/net/nfc/nci/core.c linux-xilinx-zynqmp-5.15.0/net/nfc/nci/core.c --- linux-xilinx-zynqmp-5.15.0/net/nfc/nci/core.c +++ linux-xilinx-zynqmp-5.15.0/net/nfc/nci/core.c @@ -1211,6 +1211,10 @@ { nfc_free_device(ndev->nfc_dev); nci_hci_deallocate(ndev); + + /* drop partial rx data packet if present */ + if (ndev->rx_data_reassembly) + kfree_skb(ndev->rx_data_reassembly); kfree(ndev); } EXPORT_SYMBOL(nci_free_device); diff -u linux-xilinx-zynqmp-5.15.0/net/openvswitch/flow_netlink.c linux-xilinx-zynqmp-5.15.0/net/openvswitch/flow_netlink.c --- linux-xilinx-zynqmp-5.15.0/net/openvswitch/flow_netlink.c +++ linux-xilinx-zynqmp-5.15.0/net/openvswitch/flow_netlink.c @@ -47,6 +47,7 @@ #define OVS_ATTR_NESTED -1 #define OVS_ATTR_VARIABLE -2 +#define OVS_COPY_ACTIONS_MAX_DEPTH 16 static bool actions_may_change_flow(const struct nlattr *actions) { @@ -2514,13 +2515,15 @@ const struct sw_flow_key *key, struct sw_flow_actions **sfa, __be16 eth_type, __be16 vlan_tci, - u32 mpls_label_count, bool log); + u32 mpls_label_count, bool log, + u32 depth); static int validate_and_copy_sample(struct net *net, const struct nlattr *attr, const struct sw_flow_key *key, struct sw_flow_actions **sfa, __be16 eth_type, __be16 vlan_tci, - u32 mpls_label_count, bool log, bool last) + u32 mpls_label_count, bool log, bool last, + u32 depth) { const struct nlattr *attrs[OVS_SAMPLE_ATTR_MAX + 1]; const struct nlattr *probability, *actions; @@ -2571,7 +2574,8 @@ return err; err = __ovs_nla_copy_actions(net, actions, key, sfa, - eth_type, vlan_tci, mpls_label_count, log); + eth_type, vlan_tci, mpls_label_count, log, + depth + 1); if (err) return err; @@ -2586,7 +2590,8 @@ const struct sw_flow_key *key, struct sw_flow_actions **sfa, __be16 eth_type, __be16 vlan_tci, - u32 mpls_label_count, bool log) + u32 mpls_label_count, bool log, + u32 depth) { const struct nlattr *attrs[OVS_DEC_TTL_ATTR_MAX + 1]; int start, action_start, err, rem; @@ -2629,7 +2634,8 @@ return action_start; err = __ovs_nla_copy_actions(net, actions, key, sfa, eth_type, - vlan_tci, mpls_label_count, log); + vlan_tci, mpls_label_count, log, + depth + 1); if (err) return err; @@ -2643,7 +2649,8 @@ const struct sw_flow_key *key, struct sw_flow_actions **sfa, __be16 eth_type, __be16 vlan_tci, - u32 mpls_label_count, bool log, bool last) + u32 mpls_label_count, bool log, bool last, + u32 depth) { int start, err; u32 exec; @@ -2663,7 +2670,8 @@ return err; err = __ovs_nla_copy_actions(net, attr, key, sfa, - eth_type, vlan_tci, mpls_label_count, log); + eth_type, vlan_tci, mpls_label_count, log, + depth + 1); if (err) return err; @@ -3032,7 +3040,7 @@ struct sw_flow_actions **sfa, __be16 eth_type, __be16 vlan_tci, u32 mpls_label_count, - bool log, bool last) + bool log, bool last, u32 depth) { const struct nlattr *acts_if_greater, *acts_if_lesser_eq; struct nlattr *a[OVS_CHECK_PKT_LEN_ATTR_MAX + 1]; @@ -3080,7 +3088,8 @@ return nested_acts_start; err = __ovs_nla_copy_actions(net, acts_if_lesser_eq, key, sfa, - eth_type, vlan_tci, mpls_label_count, log); + eth_type, vlan_tci, mpls_label_count, log, + depth + 1); if (err) return err; @@ -3093,7 +3102,8 @@ return nested_acts_start; err = __ovs_nla_copy_actions(net, acts_if_greater, key, sfa, - eth_type, vlan_tci, mpls_label_count, log); + eth_type, vlan_tci, mpls_label_count, log, + depth + 1); if (err) return err; @@ -3121,12 +3131,16 @@ const struct sw_flow_key *key, struct sw_flow_actions **sfa, __be16 eth_type, __be16 vlan_tci, - u32 mpls_label_count, bool log) + u32 mpls_label_count, bool log, + u32 depth) { u8 mac_proto = ovs_key_mac_proto(key); const struct nlattr *a; int rem, err; + if (depth > OVS_COPY_ACTIONS_MAX_DEPTH) + return -EOVERFLOW; + nla_for_each_nested(a, attr, rem) { /* Expected argument lengths, (u32)-1 for variable length. */ static const u32 action_lens[OVS_ACTION_ATTR_MAX + 1] = { @@ -3321,7 +3335,7 @@ err = validate_and_copy_sample(net, a, key, sfa, eth_type, vlan_tci, mpls_label_count, - log, last); + log, last, depth); if (err) return err; skip_copy = true; @@ -3392,7 +3406,7 @@ err = validate_and_copy_clone(net, a, key, sfa, eth_type, vlan_tci, mpls_label_count, - log, last); + log, last, depth); if (err) return err; skip_copy = true; @@ -3406,7 +3420,8 @@ eth_type, vlan_tci, mpls_label_count, - log, last); + log, last, + depth); if (err) return err; skip_copy = true; @@ -3416,7 +3431,8 @@ case OVS_ACTION_ATTR_DEC_TTL: err = validate_and_copy_dec_ttl(net, a, key, sfa, eth_type, vlan_tci, - mpls_label_count, log); + mpls_label_count, log, + depth); if (err) return err; skip_copy = true; @@ -3456,7 +3472,8 @@ (*sfa)->orig_len = nla_len(attr); err = __ovs_nla_copy_actions(net, attr, key, sfa, key->eth.type, - key->eth.vlan.tci, mpls_label_count, log); + key->eth.vlan.tci, mpls_label_count, log, + 0); if (err) ovs_nla_free_flow_actions(*sfa); diff -u linux-xilinx-zynqmp-5.15.0/net/packet/af_packet.c linux-xilinx-zynqmp-5.15.0/net/packet/af_packet.c --- linux-xilinx-zynqmp-5.15.0/net/packet/af_packet.c +++ linux-xilinx-zynqmp-5.15.0/net/packet/af_packet.c @@ -4244,7 +4244,7 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ } } - atomic_inc(&po->mapped); + atomic_long_inc(&po->mapped); vma->vm_ops = &packet_mmap_ops; err = 0; diff -u linux-xilinx-zynqmp-5.15.0/net/packet/internal.h linux-xilinx-zynqmp-5.15.0/net/packet/internal.h --- linux-xilinx-zynqmp-5.15.0/net/packet/internal.h +++ linux-xilinx-zynqmp-5.15.0/net/packet/internal.h @@ -126,7 +126,7 @@ __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 -u linux-xilinx-zynqmp-5.15.0/net/qrtr/ns.c linux-xilinx-zynqmp-5.15.0/net/qrtr/ns.c --- linux-xilinx-zynqmp-5.15.0/net/qrtr/ns.c +++ linux-xilinx-zynqmp-5.15.0/net/qrtr/ns.c @@ -569,7 +569,9 @@ if (!node) return -ENOENT; - return server_del(node, port, true); + server_del(node, port, true); + + return 0; } static int ctrl_cmd_new_lookup(struct sockaddr_qrtr *from, diff -u linux-xilinx-zynqmp-5.15.0/net/rose/af_rose.c linux-xilinx-zynqmp-5.15.0/net/rose/af_rose.c --- linux-xilinx-zynqmp-5.15.0/net/rose/af_rose.c +++ linux-xilinx-zynqmp-5.15.0/net/rose/af_rose.c @@ -181,21 +181,47 @@ */ static void rose_kill_by_device(struct net_device *dev) { - struct sock *s; + struct sock *sk, *array[16]; + struct rose_sock *rose; + bool rescan; + int i, cnt; +start: + rescan = false; + cnt = 0; spin_lock_bh(&rose_list_lock); - sk_for_each(s, &rose_list) { - struct rose_sock *rose = rose_sk(s); + sk_for_each(sk, &rose_list) { + rose = rose_sk(sk); + if (rose->device == dev) { + if (cnt == ARRAY_SIZE(array)) { + rescan = true; + break; + } + sock_hold(sk); + array[cnt++] = sk; + } + } + spin_unlock_bh(&rose_list_lock); + for (i = 0; i < cnt; i++) { + sk = array[cnt]; + rose = rose_sk(sk); + lock_sock(sk); + spin_lock_bh(&rose_list_lock); if (rose->device == dev) { - rose_disconnect(s, ENETUNREACH, ROSE_OUT_OF_ORDER, 0); + rose_disconnect(sk, ENETUNREACH, ROSE_OUT_OF_ORDER, 0); if (rose->neighbour) rose->neighbour->use--; dev_put(rose->device); rose->device = NULL; } + spin_unlock_bh(&rose_list_lock); + release_sock(sk); + sock_put(sk); + cond_resched(); } - spin_unlock_bh(&rose_list_lock); + if (rescan) + goto start; } /* @@ -655,7 +681,10 @@ break; } + spin_lock_bh(&rose_list_lock); dev_put(rose->device); + rose->device = NULL; + spin_unlock_bh(&rose_list_lock); sock->sk = NULL; release_sock(sk); sock_put(sk); @@ -1307,9 +1336,11 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/rxrpc/conn_service.c linux-xilinx-zynqmp-5.15.0/net/rxrpc/conn_service.c --- linux-xilinx-zynqmp-5.15.0/net/rxrpc/conn_service.c +++ linux-xilinx-zynqmp-5.15.0/net/rxrpc/conn_service.c @@ -31,7 +31,7 @@ struct rxrpc_conn_proto k; struct rxrpc_skb_priv *sp = rxrpc_skb(skb); struct rb_node *p; - unsigned int seq = 0; + unsigned int seq = 1; k.epoch = sp->hdr.epoch; k.cid = sp->hdr.cid & RXRPC_CIDMASK; @@ -41,6 +41,7 @@ * under just the RCU read lock, so we have to check for * changes. */ + seq++; /* 2 on the 1st/lockless path, otherwise odd */ read_seqbegin_or_lock(&peer->service_conn_lock, &seq); p = rcu_dereference_raw(peer->service_conns.rb_node); diff -u linux-xilinx-zynqmp-5.15.0/net/sched/act_ct.c linux-xilinx-zynqmp-5.15.0/net/sched/act_ct.c --- linux-xilinx-zynqmp-5.15.0/net/sched/act_ct.c +++ linux-xilinx-zynqmp-5.15.0/net/sched/act_ct.c @@ -705,7 +705,6 @@ if (err || !frag) return err; - skb_get(skb); mru = tc_skb_cb(skb)->mru; if (family == NFPROTO_IPV4) { @@ -987,12 +986,8 @@ nh_ofs = skb_network_offset(skb); skb_pull_rcsum(skb, nh_ofs); err = tcf_ct_handle_fragments(net, skb, family, p->zone, &defrag); - if (err == -EINPROGRESS) { - retval = TC_ACT_STOLEN; - goto out_clear; - } if (err) - goto drop; + goto out_frag; err = tcf_ct_skb_network_trim(skb, family); if (err) @@ -1059,6 +1054,11 @@ qdisc_skb_cb(skb)->pkt_len = skb->len; return retval; +out_frag: + if (err != -EINPROGRESS) + tcf_action_inc_drop_qstats(&c->common); + return TC_ACT_CONSUMED; + drop: tcf_action_inc_drop_qstats(&c->common); return TC_ACT_SHOT; diff -u linux-xilinx-zynqmp-5.15.0/net/sched/cls_u32.c linux-xilinx-zynqmp-5.15.0/net/sched/cls_u32.c --- linux-xilinx-zynqmp-5.15.0/net/sched/cls_u32.c +++ linux-xilinx-zynqmp-5.15.0/net/sched/cls_u32.c @@ -364,7 +364,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/sched/sch_hfsc.c linux-xilinx-zynqmp-5.15.0/net/sched/sch_hfsc.c --- linux-xilinx-zynqmp-5.15.0/net/sched/sch_hfsc.c +++ linux-xilinx-zynqmp-5.15.0/net/sched/sch_hfsc.c @@ -903,6 +903,14 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/smc/af_smc.c linux-xilinx-zynqmp-5.15.0/net/smc/af_smc.c --- linux-xilinx-zynqmp-5.15.0/net/smc/af_smc.c +++ linux-xilinx-zynqmp-5.15.0/net/smc/af_smc.c @@ -145,7 +145,7 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/smc/smc.h linux-xilinx-zynqmp-5.15.0/net/smc/smc.h --- linux-xilinx-zynqmp-5.15.0/net/smc/smc.h +++ linux-xilinx-zynqmp-5.15.0/net/smc/smc.h @@ -332,2 +332,7 @@ +static inline void smc_sock_set_flag(struct sock *sk, enum sock_flags flag) +{ + set_bit(flag, &sk->sk_flags); +} + #endif /* __SMC_H */ diff -u linux-xilinx-zynqmp-5.15.0/net/smc/smc_cdc.c linux-xilinx-zynqmp-5.15.0/net/smc/smc_cdc.c --- linux-xilinx-zynqmp-5.15.0/net/smc/smc_cdc.c +++ linux-xilinx-zynqmp-5.15.0/net/smc/smc_cdc.c @@ -28,13 +28,15 @@ { 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/smc/smc_close.c linux-xilinx-zynqmp-5.15.0/net/smc/smc_close.c --- linux-xilinx-zynqmp-5.15.0/net/smc/smc_close.c +++ linux-xilinx-zynqmp-5.15.0/net/smc/smc_close.c @@ -113,7 +113,8 @@ 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 @@ break; } - sock_set_flag(sk, SOCK_DEAD); + smc_sock_set_flag(sk, SOCK_DEAD); sk->sk_state_change(sk); if (release_clcsock) { diff -u linux-xilinx-zynqmp-5.15.0/net/socket.c linux-xilinx-zynqmp-5.15.0/net/socket.c --- linux-xilinx-zynqmp-5.15.0/net/socket.c +++ linux-xilinx-zynqmp-5.15.0/net/socket.c @@ -728,6 +728,7 @@ { struct sockaddr_storage *save_addr = (struct sockaddr_storage *)msg->msg_name; struct sockaddr_storage address; + int save_len = msg->msg_namelen; int ret; if (msg->msg_name) { @@ -737,6 +738,7 @@ ret = __sock_sendmsg(sock, msg); msg->msg_name = save_addr; + msg->msg_namelen = save_len; return ret; } diff -u linux-xilinx-zynqmp-5.15.0/net/sunrpc/clnt.c linux-xilinx-zynqmp-5.15.0/net/sunrpc/clnt.c --- linux-xilinx-zynqmp-5.15.0/net/sunrpc/clnt.c +++ linux-xilinx-zynqmp-5.15.0/net/sunrpc/clnt.c @@ -111,7 +111,8 @@ 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 +152,8 @@ { 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)) @@ -2088,6 +2091,7 @@ 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 +2100,6 @@ goto out_retry; } fallthrough; - case -ECONNRESET: case -ECONNABORTED: case -ENETDOWN: case -ENETUNREACH: diff -u linux-xilinx-zynqmp-5.15.0/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c linux-xilinx-zynqmp-5.15.0/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c --- linux-xilinx-zynqmp-5.15.0/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c +++ linux-xilinx-zynqmp-5.15.0/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c @@ -852,7 +852,8 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/tipc/bearer.c linux-xilinx-zynqmp-5.15.0/net/tipc/bearer.c --- linux-xilinx-zynqmp-5.15.0/net/tipc/bearer.c +++ linux-xilinx-zynqmp-5.15.0/net/tipc/bearer.c @@ -1088,6 +1088,12 @@ #ifdef CONFIG_TIPC_MEDIA_UDP if (attrs[TIPC_NLA_BEARER_UDP_OPTS]) { + if (b->media->type_id != TIPC_MEDIA_TYPE_UDP) { + rtnl_unlock(); + NL_SET_ERR_MSG(info->extack, "UDP option is unsupported"); + return -EINVAL; + } + err = tipc_udp_nl_bearer_add(b, attrs[TIPC_NLA_BEARER_UDP_OPTS]); if (err) { diff -u linux-xilinx-zynqmp-5.15.0/net/tipc/link.c linux-xilinx-zynqmp-5.15.0/net/tipc/link.c --- linux-xilinx-zynqmp-5.15.0/net/tipc/link.c +++ linux-xilinx-zynqmp-5.15.0/net/tipc/link.c @@ -1445,7 +1445,7 @@ 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 @@ __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 -u linux-xilinx-zynqmp-5.15.0/net/tipc/netlink_compat.c linux-xilinx-zynqmp-5.15.0/net/tipc/netlink_compat.c --- linux-xilinx-zynqmp-5.15.0/net/tipc/netlink_compat.c +++ linux-xilinx-zynqmp-5.15.0/net/tipc/netlink_compat.c @@ -101,6 +101,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/tls/tls_sw.c linux-xilinx-zynqmp-5.15.0/net/tls/tls_sw.c --- linux-xilinx-zynqmp-5.15.0/net/tls/tls_sw.c +++ linux-xilinx-zynqmp-5.15.0/net/tls/tls_sw.c @@ -1216,6 +1216,8 @@ } 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 -u linux-xilinx-zynqmp-5.15.0/net/unix/af_unix.c linux-xilinx-zynqmp-5.15.0/net/unix/af_unix.c --- linux-xilinx-zynqmp-5.15.0/net/unix/af_unix.c +++ linux-xilinx-zynqmp-5.15.0/net/unix/af_unix.c @@ -1192,13 +1192,11 @@ unix_state_lock(sk1); return; } - if (sk1 < sk2) { - unix_state_lock(sk1); - unix_state_lock_nested(sk2); - } else { - unix_state_lock(sk2); - unix_state_lock_nested(sk1); - } + if (sk1 > sk2) + swap(sk1, sk2); + + unix_state_lock(sk1); + unix_state_lock_nested(sk2, U_LOCK_SECOND); } static void unix_state_double_unlock(struct sock *sk1, struct sock *sk2) @@ -1426,7 +1424,7 @@ goto out_unlock; } - unix_state_lock_nested(sk); + unix_state_lock_nested(sk, U_LOCK_SECOND); if (sk->sk_state != st) { unix_state_unlock(sk); @@ -2529,15 +2527,16 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/unix/diag.c linux-xilinx-zynqmp-5.15.0/net/unix/diag.c --- linux-xilinx-zynqmp-5.15.0/net/unix/diag.c +++ linux-xilinx-zynqmp-5.15.0/net/unix/diag.c @@ -83,7 +83,7 @@ * queue lock. With the other's queue locked it's * OK to lock the state. */ - unix_state_lock_nested(req); + unix_state_lock_nested(req, U_LOCK_DIAG); peer = unix_sk(req)->peer; buf[i++] = (peer ? sock_i_ino(peer) : 0); unix_state_unlock(req); diff -u linux-xilinx-zynqmp-5.15.0/net/unix/garbage.c linux-xilinx-zynqmp-5.15.0/net/unix/garbage.c --- linux-xilinx-zynqmp-5.15.0/net/unix/garbage.c +++ linux-xilinx-zynqmp-5.15.0/net/unix/garbage.c @@ -314,6 +314,18 @@ /* Here we are. Hitlist is filled. Die. */ __skb_queue_purge(&hitlist); +#if IS_ENABLED(CONFIG_AF_UNIX_OOB) + while (!list_empty(&gc_candidates)) { + u = list_entry(gc_candidates.next, struct unix_sock, link); + if (u->oob_skb) { + struct sk_buff *skb = u->oob_skb; + + u->oob_skb = NULL; + kfree_skb(skb); + } + } +#endif + spin_lock(&unix_gc_lock); /* There could be io_uring registered files, just push them back to diff -u linux-xilinx-zynqmp-5.15.0/net/vmw_vsock/virtio_transport.c linux-xilinx-zynqmp-5.15.0/net/vmw_vsock/virtio_transport.c --- linux-xilinx-zynqmp-5.15.0/net/vmw_vsock/virtio_transport.c +++ linux-xilinx-zynqmp-5.15.0/net/vmw_vsock/virtio_transport.c @@ -566,69 +566,35 @@ 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 @@ 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 @@ /* 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 @@ 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 @@ .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 -u linux-xilinx-zynqmp-5.15.0/net/vmw_vsock/virtio_transport_common.c linux-xilinx-zynqmp-5.15.0/net/vmw_vsock/virtio_transport_common.c --- linux-xilinx-zynqmp-5.15.0/net/vmw_vsock/virtio_transport_common.c +++ linux-xilinx-zynqmp-5.15.0/net/vmw_vsock/virtio_transport_common.c @@ -355,6 +355,8 @@ struct virtio_vsock_pkt *pkt; size_t bytes, total = 0; u32 free_space; + u32 fwd_cnt_delta; + bool low_rx_bytes; int err = -EFAULT; spin_lock_bh(&vvs->rx_lock); @@ -386,7 +388,10 @@ } } - free_space = vvs->buf_alloc - (vvs->fwd_cnt - vvs->last_fwd_cnt); + fwd_cnt_delta = vvs->fwd_cnt - vvs->last_fwd_cnt; + free_space = vvs->buf_alloc - fwd_cnt_delta; + low_rx_bytes = (vvs->rx_bytes < + sock_rcvlowat(sk_vsock(vsk), 0, INT_MAX)); spin_unlock_bh(&vvs->rx_lock); @@ -396,9 +401,11 @@ * too high causes extra messages. Too low causes transmitter * stalls. As stalls are in theory more expensive than extra * messages, we set the limit to a high value. TODO: experiment - * with different values. + * with different values. Also send credit update message when + * number of bytes in rx queue is not enough to wake up reader. */ - if (free_space < VIRTIO_VSOCK_MAX_PKT_BUF_SIZE) + if (fwd_cnt_delta && + (free_space < VIRTIO_VSOCK_MAX_PKT_BUF_SIZE || low_rx_bytes)) virtio_transport_send_credit_update(vsk); return total; @@ -565,7 +572,7 @@ struct virtio_vsock_sock *vvs = vsk->trans; s64 bytes; - bytes = vvs->peer_buf_alloc - (vvs->tx_cnt - vvs->peer_fwd_cnt); + bytes = (s64)vvs->peer_buf_alloc - (vvs->tx_cnt - vvs->peer_fwd_cnt); if (bytes < 0) bytes = 0; diff -u linux-xilinx-zynqmp-5.15.0/net/wireless/core.c linux-xilinx-zynqmp-5.15.0/net/wireless/core.c --- linux-xilinx-zynqmp-5.15.0/net/wireless/core.c +++ linux-xilinx-zynqmp-5.15.0/net/wireless/core.c @@ -216,7 +216,9 @@ { struct cfg80211_registered_device *rdev = data; + wiphy_lock(&rdev->wiphy); rdev_rfkill_poll(rdev); + wiphy_unlock(&rdev->wiphy); } void cfg80211_stop_p2p_device(struct cfg80211_registered_device *rdev, diff -u linux-xilinx-zynqmp-5.15.0/net/wireless/nl80211.c linux-xilinx-zynqmp-5.15.0/net/wireless/nl80211.c --- linux-xilinx-zynqmp-5.15.0/net/wireless/nl80211.c +++ linux-xilinx-zynqmp-5.15.0/net/wireless/nl80211.c @@ -7664,7 +7664,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/wireless/scan.c linux-xilinx-zynqmp-5.15.0/net/wireless/scan.c --- linux-xilinx-zynqmp-5.15.0/net/wireless/scan.c +++ linux-xilinx-zynqmp-5.15.0/net/wireless/scan.c @@ -874,6 +874,10 @@ !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; @@ -1804,8 +1808,12 @@ list_add(&new->hidden_list, &hidden->hidden_list); hidden->refcount++; + + ies = (void *)rcu_access_pointer(new->pub.beacon_ies); rcu_assign_pointer(new->pub.beacon_ies, hidden->pub.beacon_ies); + if (ies) + kfree_rcu(ies, rcu_head); } } else { /* diff -u linux-xilinx-zynqmp-5.15.0/net/xfrm/xfrm_interface_core.c linux-xilinx-zynqmp-5.15.0/net/xfrm/xfrm_interface_core.c --- linux-xilinx-zynqmp-5.15.0/net/xfrm/xfrm_interface_core.c +++ linux-xilinx-zynqmp-5.15.0/net/xfrm/xfrm_interface_core.c @@ -274,8 +274,8 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/net/xfrm/xfrm_policy.c linux-xilinx-zynqmp-5.15.0/net/xfrm/xfrm_policy.c --- linux-xilinx-zynqmp-5.15.0/net/xfrm/xfrm_policy.c +++ linux-xilinx-zynqmp-5.15.0/net/xfrm/xfrm_policy.c @@ -1371,8 +1371,6 @@ * 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/scripts/link-vmlinux.sh linux-xilinx-zynqmp-5.15.0/scripts/link-vmlinux.sh --- linux-xilinx-zynqmp-5.15.0/scripts/link-vmlinux.sh +++ linux-xilinx-zynqmp-5.15.0/scripts/link-vmlinux.sh @@ -236,8 +236,13 @@ ${OBJCOPY} --only-section=.BTF --set-section-flags .BTF=alloc,readonly \ --strip-all ${1} ${2} 2>/dev/null # Change e_type to ET_REL so that it can be used to link final vmlinux. - # Unlike GNU ld, lld does not allow an ET_EXEC input. - printf '\1' | dd of=${2} conv=notrunc bs=1 seek=16 status=none + # GNU ld 2.35+ and lld do not allow an ET_EXEC input. + if [ -n "${CONFIG_CPU_BIG_ENDIAN}" ]; then + et_rel='\0\1' + else + et_rel='\1\0' + fi + printf "${et_rel}" | dd of=${2} conv=notrunc bs=1 seek=16 status=none } # Create ${2} .S file with all symbols from the ${1} object file diff -u linux-xilinx-zynqmp-5.15.0/scripts/mod/file2alias.c linux-xilinx-zynqmp-5.15.0/scripts/mod/file2alias.c --- linux-xilinx-zynqmp-5.15.0/scripts/mod/file2alias.c +++ linux-xilinx-zynqmp-5.15.0/scripts/mod/file2alias.c @@ -1339,13 +1339,13 @@ /* 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; diff -u linux-xilinx-zynqmp-5.15.0/scripts/pahole-flags.sh linux-xilinx-zynqmp-5.15.0/scripts/pahole-flags.sh --- linux-xilinx-zynqmp-5.15.0/scripts/pahole-flags.sh +++ linux-xilinx-zynqmp-5.15.0/scripts/pahole-flags.sh @@ -21,4 +21,7 @@ extra_paholeopt="${extra_paholeopt} --skip_encoding_btf_enum64" fi +if [ "${pahole_ver}" -ge "125" ]; then + extra_paholeopt="${extra_paholeopt} --skip_encoding_btf_inconsistent_proto --btf_gen_optimized" +fi echo ${extra_paholeopt} diff -u linux-xilinx-zynqmp-5.15.0/scripts/sign-file.c linux-xilinx-zynqmp-5.15.0/scripts/sign-file.c --- linux-xilinx-zynqmp-5.15.0/scripts/sign-file.c +++ linux-xilinx-zynqmp-5.15.0/scripts/sign-file.c @@ -322,7 +322,7 @@ CMS_NOSMIMECAP | use_keyid | use_signed_attrs), "CMS_add1_signer"); - ERR(CMS_final(cms, bm, NULL, CMS_NOCERTS | CMS_BINARY) < 0, + ERR(CMS_final(cms, bm, NULL, CMS_NOCERTS | CMS_BINARY) != 1, "CMS_final"); #else @@ -341,10 +341,10 @@ b = BIO_new_file(sig_file_name, "wb"); ERR(!b, "%s", sig_file_name); #ifndef USE_PKCS7 - ERR(i2d_CMS_bio_stream(b, cms, NULL, 0) < 0, + ERR(i2d_CMS_bio_stream(b, cms, NULL, 0) != 1, "%s", sig_file_name); #else - ERR(i2d_PKCS7_bio(b, pkcs7) < 0, + ERR(i2d_PKCS7_bio(b, pkcs7) != 1, "%s", sig_file_name); #endif BIO_free(b); @@ -374,9 +374,9 @@ if (!raw_sig) { #ifndef USE_PKCS7 - ERR(i2d_CMS_bio_stream(bd, cms, NULL, 0) < 0, "%s", dest_name); + ERR(i2d_CMS_bio_stream(bd, cms, NULL, 0) != 1, "%s", dest_name); #else - ERR(i2d_PKCS7_bio(bd, pkcs7) < 0, "%s", dest_name); + ERR(i2d_PKCS7_bio(bd, pkcs7) != 1, "%s", dest_name); #endif } else { BIO *b; @@ -396,7 +396,7 @@ ERR(BIO_write(bd, &sig_info, sizeof(sig_info)) < 0, "%s", dest_name); ERR(BIO_write(bd, magic_number, sizeof(magic_number) - 1) < 0, "%s", dest_name); - ERR(BIO_free(bd) < 0, "%s", dest_name); + ERR(BIO_free(bd) != 1, "%s", dest_name); /* Finally, if we're signing in place, replace the original. */ if (replace_orig) diff -u linux-xilinx-zynqmp-5.15.0/security/apparmor/af_unix.c linux-xilinx-zynqmp-5.15.0/security/apparmor/af_unix.c --- linux-xilinx-zynqmp-5.15.0/security/apparmor/af_unix.c +++ linux-xilinx-zynqmp-5.15.0/security/apparmor/af_unix.c @@ -578,13 +578,11 @@ unix_state_lock(sk1); return; } - if (sk1 < sk2) { - unix_state_lock(sk1); - unix_state_lock_nested(sk2); - } else { - unix_state_lock(sk2); - unix_state_lock_nested(sk1); - } + if (sk1 > sk2) + swap(sk1, sk2); + + unix_state_lock(sk1); + unix_state_lock_nested(sk2, U_LOCK_SECOND); } static void unix_state_double_unlock(struct sock *sk1, struct sock *sk2) diff -u linux-xilinx-zynqmp-5.15.0/security/apparmor/policy_unpack.c linux-xilinx-zynqmp-5.15.0/security/apparmor/policy_unpack.c --- linux-xilinx-zynqmp-5.15.0/security/apparmor/policy_unpack.c +++ linux-xilinx-zynqmp-5.15.0/security/apparmor/policy_unpack.c @@ -709,6 +709,10 @@ tmpname = aa_splitn_fqname(name, strlen(name), &tmpns, &ns_len); if (tmpns) { + if (!tmpname) { + info = "empty profile name"; + goto fail; + } *ns_name = kstrndup(tmpns, ns_len, GFP_KERNEL); if (!*ns_name) { info = "out of memory"; diff -u linux-xilinx-zynqmp-5.15.0/security/integrity/iint.c linux-xilinx-zynqmp-5.15.0/security/integrity/iint.c --- linux-xilinx-zynqmp-5.15.0/security/integrity/iint.c +++ linux-xilinx-zynqmp-5.15.0/security/integrity/iint.c @@ -66,9 +66,32 @@ 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 @@ 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 @@ if (!iint) return NULL; + iint_init_always(iint, inode); + write_lock(&integrity_iint_lock); p = &integrity_iint_tree.rb_node; @@ -161,25 +194,18 @@ 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 -u linux-xilinx-zynqmp-5.15.0/security/integrity/ima/ima_api.c linux-xilinx-zynqmp-5.15.0/security/integrity/ima/ima_api.c --- linux-xilinx-zynqmp-5.15.0/security/integrity/ima/ima_api.c +++ linux-xilinx-zynqmp-5.15.0/security/integrity/ima/ima_api.c @@ -216,6 +216,7 @@ { 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/security/integrity/ima/ima_main.c linux-xilinx-zynqmp-5.15.0/security/integrity/ima/ima_main.c --- linux-xilinx-zynqmp-5.15.0/security/integrity/ima/ima_main.c +++ linux-xilinx-zynqmp-5.15.0/security/integrity/ima/ima_main.c @@ -26,6 +26,7 @@ #include #include #include +#include #include "ima.h" @@ -202,7 +203,7 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/security/keys/trusted-keys/trusted_core.c linux-xilinx-zynqmp-5.15.0/security/keys/trusted-keys/trusted_core.c --- linux-xilinx-zynqmp-5.15.0/security/keys/trusted-keys/trusted_core.c +++ linux-xilinx-zynqmp-5.15.0/security/keys/trusted-keys/trusted_core.c @@ -354,17 +354,17 @@ if (!get_random) get_random = kernel_get_random; - 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; - ret = trusted_key_sources[i].ops->init(); - if (!ret) + 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; } diff -u linux-xilinx-zynqmp-5.15.0/security/security.c linux-xilinx-zynqmp-5.15.0/security/security.c --- linux-xilinx-zynqmp-5.15.0/security/security.c +++ linux-xilinx-zynqmp-5.15.0/security/security.c @@ -1740,6 +1740,24 @@ } EXPORT_SYMBOL_GPL(security_file_ioctl); +/** + * security_file_ioctl_compat() - Check if an ioctl is allowed in compat mode + * @file: associated file + * @cmd: ioctl cmd + * @arg: ioctl arguments + * + * Compat version of security_file_ioctl() that correctly handles 32-bit + * processes running on 64-bit kernels. + * + * Return: Returns 0 if permission is granted. + */ +int security_file_ioctl_compat(struct file *file, unsigned int cmd, + unsigned long arg) +{ + return call_int_hook(file_ioctl_compat, 0, file, cmd, arg); +} +EXPORT_SYMBOL_GPL(security_file_ioctl_compat); + static inline unsigned long mmap_prot(struct file *file, unsigned long prot) { /* diff -u linux-xilinx-zynqmp-5.15.0/security/selinux/hooks.c linux-xilinx-zynqmp-5.15.0/security/selinux/hooks.c --- linux-xilinx-zynqmp-5.15.0/security/selinux/hooks.c +++ linux-xilinx-zynqmp-5.15.0/security/selinux/hooks.c @@ -3810,6 +3810,33 @@ return error; } +static int selinux_file_ioctl_compat(struct file *file, unsigned int cmd, + unsigned long arg) +{ + /* + * If we are in a 64-bit kernel running 32-bit userspace, we need to + * make sure we don't compare 32-bit flags to 64-bit flags. + */ + switch (cmd) { + case FS_IOC32_GETFLAGS: + cmd = FS_IOC_GETFLAGS; + break; + case FS_IOC32_SETFLAGS: + cmd = FS_IOC_SETFLAGS; + break; + case FS_IOC32_GETVERSION: + cmd = FS_IOC_GETVERSION; + break; + case FS_IOC32_SETVERSION: + cmd = FS_IOC_SETVERSION; + break; + default: + break; + } + + return selinux_file_ioctl(file, cmd, arg); +} + static int default_noexec __ro_after_init; static int file_map_prot_check(struct file *file, unsigned long prot, int shared) @@ -4774,6 +4801,13 @@ return -EINVAL; addr4 = (struct sockaddr_in *)address; if (family_sa == AF_UNSPEC) { + if (family == PF_INET6) { + /* Length check from inet6_bind_sk() */ + if (addrlen < SIN6_LEN_RFC2133) + return -EINVAL; + /* Family check from __inet6_bind() */ + goto err_af; + } /* see __inet_bind(), we only want to allow * AF_UNSPEC if the address is INADDR_ANY */ @@ -7213,6 +7247,7 @@ LSM_HOOK_INIT(file_permission, selinux_file_permission), LSM_HOOK_INIT(file_alloc_security, selinux_file_alloc_security), LSM_HOOK_INIT(file_ioctl, selinux_file_ioctl), + LSM_HOOK_INIT(file_ioctl_compat, selinux_file_ioctl_compat), LSM_HOOK_INIT(mmap_file, selinux_mmap_file), LSM_HOOK_INIT(mmap_addr, selinux_mmap_addr), LSM_HOOK_INIT(file_mprotect, selinux_file_mprotect), diff -u linux-xilinx-zynqmp-5.15.0/security/smack/smack_lsm.c linux-xilinx-zynqmp-5.15.0/security/smack/smack_lsm.c --- linux-xilinx-zynqmp-5.15.0/security/smack/smack_lsm.c +++ linux-xilinx-zynqmp-5.15.0/security/smack/smack_lsm.c @@ -4774,6 +4774,7 @@ LSM_HOOK_INIT(file_alloc_security, smack_file_alloc_security), LSM_HOOK_INIT(file_ioctl, smack_file_ioctl), + LSM_HOOK_INIT(file_ioctl_compat, smack_file_ioctl), LSM_HOOK_INIT(file_lock, smack_file_lock), LSM_HOOK_INIT(file_fcntl, smack_file_fcntl), LSM_HOOK_INIT(mmap_file, smack_mmap_file), diff -u linux-xilinx-zynqmp-5.15.0/security/tomoyo/tomoyo.c linux-xilinx-zynqmp-5.15.0/security/tomoyo/tomoyo.c --- linux-xilinx-zynqmp-5.15.0/security/tomoyo/tomoyo.c +++ linux-xilinx-zynqmp-5.15.0/security/tomoyo/tomoyo.c @@ -551,6 +551,7 @@ LSM_HOOK_INIT(path_rename, tomoyo_path_rename), LSM_HOOK_INIT(inode_getattr, tomoyo_inode_getattr), LSM_HOOK_INIT(file_ioctl, tomoyo_file_ioctl), + LSM_HOOK_INIT(file_ioctl_compat, tomoyo_file_ioctl), LSM_HOOK_INIT(path_chmod, tomoyo_path_chmod), LSM_HOOK_INIT(path_chown, tomoyo_path_chown), LSM_HOOK_INIT(path_chroot, tomoyo_path_chroot), diff -u linux-xilinx-zynqmp-5.15.0/sound/core/info.c linux-xilinx-zynqmp-5.15.0/sound/core/info.c --- linux-xilinx-zynqmp-5.15.0/sound/core/info.c +++ linux-xilinx-zynqmp-5.15.0/sound/core/info.c @@ -56,7 +56,7 @@ }; 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 @@ { 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 @@ } 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/sound/core/pcm.c linux-xilinx-zynqmp-5.15.0/sound/core/pcm.c --- linux-xilinx-zynqmp-5.15.0/sound/core/pcm.c +++ linux-xilinx-zynqmp-5.15.0/sound/core/pcm.c @@ -251,6 +251,7 @@ STATE(DRAINING), STATE(PAUSED), STATE(SUSPENDED), + STATE(DISCONNECTED), }; static const char * const snd_pcm_access_names[] = { diff -u linux-xilinx-zynqmp-5.15.0/sound/hda/hdac_stream.c linux-xilinx-zynqmp-5.15.0/sound/hda/hdac_stream.c --- linux-xilinx-zynqmp-5.15.0/sound/hda/hdac_stream.c +++ linux-xilinx-zynqmp-5.15.0/sound/hda/hdac_stream.c @@ -320,8 +320,10 @@ 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) { @@ -596,17 +598,15 @@ struct hdac_stream *s; bool inited = false; u64 cycle_last = 0; - int i = 0; list_for_each_entry(s, &bus->stream_list, list) { - if (streams & (1 << i)) { + if ((streams & (1 << s->index))) { azx_timecounter_init(s, inited, cycle_last); if (!inited) { inited = true; cycle_last = s->tc.cycle_last; } } - i++; } snd_pcm_gettime(runtime, &runtime->trigger_tstamp); @@ -651,14 +651,13 @@ unsigned int streams) { struct hdac_bus *bus = azx_dev->bus; - int i, nwait, timeout; + int nwait, timeout; struct hdac_stream *s; for (timeout = 5000; timeout; timeout--) { nwait = 0; - i = 0; list_for_each_entry(s, &bus->stream_list, list) { - if (!(streams & (1 << i++))) + if (!(streams & (1 << s->index))) continue; if (start) { diff -u linux-xilinx-zynqmp-5.15.0/sound/hda/intel-dsp-config.c linux-xilinx-zynqmp-5.15.0/sound/hda/intel-dsp-config.c --- linux-xilinx-zynqmp-5.15.0/sound/hda/intel-dsp-config.c +++ linux-xilinx-zynqmp-5.15.0/sound/hda/intel-dsp-config.c @@ -330,6 +330,12 @@ DMI_MATCH(DMI_SYS_VENDOR, "Google"), } }, + { + .ident = "Google firmware", + .matches = { + DMI_MATCH(DMI_BIOS_VERSION, "Google"), + } + }, {} } }, @@ -383,6 +389,16 @@ .flags = FLAG_SOF | FLAG_SOF_ONLY_IF_DMIC_OR_SOUNDWIRE, .device = 0x7e28, }, + /* ArrowLake-S */ + { + .flags = FLAG_SOF | FLAG_SOF_ONLY_IF_DMIC_OR_SOUNDWIRE, + .device = PCI_DEVICE_ID_INTEL_HDA_ARL_S, + }, + /* ArrowLake */ + { + .flags = FLAG_SOF | FLAG_SOF_ONLY_IF_DMIC_OR_SOUNDWIRE, + .device = PCI_DEVICE_ID_INTEL_HDA_ARL, + }, #endif /* Lunar Lake */ diff -u linux-xilinx-zynqmp-5.15.0/sound/pci/hda/hda_intel.c linux-xilinx-zynqmp-5.15.0/sound/pci/hda/hda_intel.c --- linux-xilinx-zynqmp-5.15.0/sound/pci/hda/hda_intel.c +++ linux-xilinx-zynqmp-5.15.0/sound/pci/hda/hda_intel.c @@ -2210,6 +2210,8 @@ 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 */ @@ -2525,6 +2527,8 @@ .driver_data = AZX_DRIVER_SKL | AZX_DCAPS_INTEL_SKYLAKE}, { PCI_DEVICE(0x8086, 0x51cf), .driver_data = AZX_DRIVER_SKL | AZX_DCAPS_INTEL_SKYLAKE}, + /* Arrow Lake */ + { PCI_DEVICE_DATA(INTEL, HDA_ARL, AZX_DRIVER_SKL | AZX_DCAPS_INTEL_SKYLAKE) }, /* Broxton-P(Apollolake) */ { PCI_DEVICE(0x8086, 0x5a98), .driver_data = AZX_DRIVER_SKL | AZX_DCAPS_INTEL_BROXTON }, diff -u linux-xilinx-zynqmp-5.15.0/sound/pci/hda/patch_conexant.c linux-xilinx-zynqmp-5.15.0/sound/pci/hda/patch_conexant.c --- linux-xilinx-zynqmp-5.15.0/sound/pci/hda/patch_conexant.c +++ linux-xilinx-zynqmp-5.15.0/sound/pci/hda/patch_conexant.c @@ -21,6 +21,12 @@ #include "hda_jack.h" #include "hda_generic.h" +enum { + CX_HEADSET_NOPRESENT = 0, + CX_HEADSET_PARTPRESENT, + CX_HEADSET_ALLPRESENT, +}; + struct conexant_spec { struct hda_gen_spec gen; @@ -42,7 +48,8 @@ unsigned int gpio_led; unsigned int gpio_mute_led_mask; unsigned int gpio_mic_led_mask; - + unsigned int headset_present_flag; + bool is_cx8070_sn6140; }; @@ -164,6 +171,27 @@ } } +static void cx_fixup_headset_recog(struct hda_codec *codec) +{ + unsigned int mic_persent; + + /* fix some headset type recognize fail issue, such as EDIFIER headset */ + /* set micbiasd output current comparator threshold from 66% to 55%. */ + snd_hda_codec_write(codec, 0x1c, 0, 0x320, 0x010); + /* set OFF voltage for DFET from -1.2V to -0.8V, set headset micbias registor + * value adjustment trim from 2.2K ohms to 2.0K ohms. + */ + snd_hda_codec_write(codec, 0x1c, 0, 0x3b0, 0xe10); + /* fix reboot headset type recognize fail issue */ + mic_persent = snd_hda_codec_read(codec, 0x19, 0, AC_VERB_GET_PIN_SENSE, 0x0); + if (mic_persent & AC_PINSENSE_PRESENCE) + /* enable headset mic VREF */ + snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24); + else + /* disable headset mic VREF */ + snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20); +} + static int cx_auto_init(struct hda_codec *codec) { struct conexant_spec *spec = codec->spec; @@ -174,6 +202,9 @@ cxt_init_gpio_led(codec); snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_INIT); + if (spec->is_cx8070_sn6140) + cx_fixup_headset_recog(codec); + return 0; } @@ -192,6 +223,77 @@ snd_hda_gen_free(codec); } +static void cx_process_headset_plugin(struct hda_codec *codec) +{ + unsigned int val; + unsigned int count = 0; + + /* Wait headset detect done. */ + do { + val = snd_hda_codec_read(codec, 0x1c, 0, 0xca0, 0x0); + if (val & 0x080) { + codec_dbg(codec, "headset type detect done!\n"); + break; + } + msleep(20); + count++; + } while (count < 3); + val = snd_hda_codec_read(codec, 0x1c, 0, 0xcb0, 0x0); + if (val & 0x800) { + codec_dbg(codec, "headset plugin, type is CTIA\n"); + snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24); + } else if (val & 0x400) { + codec_dbg(codec, "headset plugin, type is OMTP\n"); + snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24); + } else { + codec_dbg(codec, "headphone plugin\n"); + } +} + +static void cx_update_headset_mic_vref(struct hda_codec *codec, unsigned int res) +{ + unsigned int phone_present, mic_persent, phone_tag, mic_tag; + struct conexant_spec *spec = codec->spec; + + /* In cx8070 and sn6140, the node 16 can only be config to headphone or disabled, + * the node 19 can only be config to microphone or disabled. + * Check hp&mic tag to process headset pulgin&plugout. + */ + phone_tag = snd_hda_codec_read(codec, 0x16, 0, AC_VERB_GET_UNSOLICITED_RESPONSE, 0x0); + mic_tag = snd_hda_codec_read(codec, 0x19, 0, AC_VERB_GET_UNSOLICITED_RESPONSE, 0x0); + if ((phone_tag & (res >> AC_UNSOL_RES_TAG_SHIFT)) || + (mic_tag & (res >> AC_UNSOL_RES_TAG_SHIFT))) { + phone_present = snd_hda_codec_read(codec, 0x16, 0, AC_VERB_GET_PIN_SENSE, 0x0); + if (!(phone_present & AC_PINSENSE_PRESENCE)) {/* headphone plugout */ + spec->headset_present_flag = CX_HEADSET_NOPRESENT; + snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20); + return; + } + if (spec->headset_present_flag == CX_HEADSET_NOPRESENT) { + spec->headset_present_flag = CX_HEADSET_PARTPRESENT; + } else if (spec->headset_present_flag == CX_HEADSET_PARTPRESENT) { + mic_persent = snd_hda_codec_read(codec, 0x19, 0, + AC_VERB_GET_PIN_SENSE, 0x0); + /* headset is present */ + if ((phone_present & AC_PINSENSE_PRESENCE) && + (mic_persent & AC_PINSENSE_PRESENCE)) { + cx_process_headset_plugin(codec); + spec->headset_present_flag = CX_HEADSET_ALLPRESENT; + } + } + } +} + +static void cx_jack_unsol_event(struct hda_codec *codec, unsigned int res) +{ + struct conexant_spec *spec = codec->spec; + + if (spec->is_cx8070_sn6140) + cx_update_headset_mic_vref(codec, res); + + snd_hda_jack_unsol_event(codec, res); +} + #ifdef CONFIG_PM static int cx_auto_suspend(struct hda_codec *codec) { @@ -205,7 +307,7 @@ .build_pcms = snd_hda_gen_build_pcms, .init = cx_auto_init, .free = cx_auto_free, - .unsol_event = snd_hda_jack_unsol_event, + .unsol_event = cx_jack_unsol_event, #ifdef CONFIG_PM .suspend = cx_auto_suspend, .check_power_status = snd_hda_gen_check_power_status, @@ -242,6 +344,7 @@ CXT_FIXUP_HP_ZBOOK_MUTE_LED, CXT_FIXUP_HEADSET_MIC, CXT_FIXUP_HP_MIC_NO_PRESENCE, + CXT_PINCFG_SWS_JS201D, }; /* for hda_fixup_thinkpad_acpi() */ @@ -739,6 +842,17 @@ {} }; +/* SuoWoSi/South-holding JS201D with sn6140 */ +static const struct hda_pintbl cxt_pincfg_sws_js201d[] = { + { 0x16, 0x03211040 }, /* hp out */ + { 0x17, 0x91170110 }, /* SPK/Class_D */ + { 0x18, 0x95a70130 }, /* Internal mic */ + { 0x19, 0x03a11020 }, /* Headset Mic */ + { 0x1a, 0x40f001f0 }, /* Not used */ + { 0x21, 0x40f001f0 }, /* Not used */ + {} +}; + static const struct hda_fixup cxt_fixups[] = { [CXT_PINCFG_LENOVO_X200] = { .type = HDA_FIXUP_PINS, @@ -894,6 +1008,10 @@ .chained = true, .chain_id = CXT_FIXUP_HEADSET_MIC, }, + [CXT_PINCFG_SWS_JS201D] = { + .type = HDA_FIXUP_PINS, + .v.pins = cxt_pincfg_sws_js201d, + }, }; static const struct snd_pci_quirk cxt5045_fixups[] = { @@ -967,6 +1085,7 @@ SND_PCI_QUIRK(0x103c, 0x8457, "HP Z2 G4 mini", CXT_FIXUP_HP_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x103c, 0x8458, "HP Z2 G4 mini premium", CXT_FIXUP_HP_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1043, 0x138d, "Asus", CXT_FIXUP_HEADPHONE_MIC_PIN), + SND_PCI_QUIRK(0x14f1, 0x0265, "SWS JS201D", CXT_PINCFG_SWS_JS201D), SND_PCI_QUIRK(0x152d, 0x0833, "OLPC XO-1.5", CXT_FIXUP_OLPC_XO), SND_PCI_QUIRK(0x17aa, 0x20f2, "Lenovo T400", CXT_PINCFG_LENOVO_TP410), SND_PCI_QUIRK(0x17aa, 0x215e, "Lenovo T410", CXT_PINCFG_LENOVO_TP410), @@ -1007,6 +1126,7 @@ { .id = CXT_FIXUP_HP_ZBOOK_MUTE_LED, .name = "hp-zbook-mute-led" }, { .id = CXT_FIXUP_HP_MIC_NO_PRESENCE, .name = "hp-mic-fix" }, { .id = CXT_PINCFG_LENOVO_NOTEBOOK, .name = "lenovo-20149" }, + { .id = CXT_PINCFG_SWS_JS201D, .name = "sws-js201d" }, {} }; @@ -1042,6 +1162,15 @@ codec->spec = spec; codec->patch_ops = cx_auto_patch_ops; + /* init cx8070/sn6140 flag and reset headset_present_flag */ + switch (codec->core.vendor_id) { + case 0x14f11f86: + case 0x14f11f87: + spec->is_cx8070_sn6140 = true; + spec->headset_present_flag = CX_HEADSET_NOPRESENT; + break; + } + cx_auto_parse_eapd(codec); spec->gen.own_eapd_ctl = 1; diff -u linux-xilinx-zynqmp-5.15.0/sound/pci/hda/patch_cs8409.c linux-xilinx-zynqmp-5.15.0/sound/pci/hda/patch_cs8409.c --- linux-xilinx-zynqmp-5.15.0/sound/pci/hda/patch_cs8409.c +++ linux-xilinx-zynqmp-5.15.0/sound/pci/hda/patch_cs8409.c @@ -1369,6 +1369,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/sound/pci/hda/patch_hdmi.c linux-xilinx-zynqmp-5.15.0/sound/pci/hda/patch_hdmi.c --- linux-xilinx-zynqmp-5.15.0/sound/pci/hda/patch_hdmi.c +++ linux-xilinx-zynqmp-5.15.0/sound/pci/hda/patch_hdmi.c @@ -1964,7 +1964,10 @@ SND_PCI_QUIRK(0x103c, 0x871a, "HP", 1), SND_PCI_QUIRK(0x103c, 0x8711, "HP", 1), SND_PCI_QUIRK(0x103c, 0x8715, "HP", 1), + SND_PCI_QUIRK(0x1043, 0x86ae, "ASUS", 1), /* Z170 PRO */ + SND_PCI_QUIRK(0x1043, 0x86c7, "ASUS", 1), /* Z170M PLUS */ SND_PCI_QUIRK(0x1462, 0xec94, "MS-7C94", 1), + SND_PCI_QUIRK(0x8086, 0x2060, "Intel NUC5CPYB", 1), SND_PCI_QUIRK(0x8086, 0x2081, "Intel NUC 10", 1), {} }; diff -u linux-xilinx-zynqmp-5.15.0/sound/pci/hda/patch_realtek.c linux-xilinx-zynqmp-5.15.0/sound/pci/hda/patch_realtek.c --- linux-xilinx-zynqmp-5.15.0/sound/pci/hda/patch_realtek.c +++ linux-xilinx-zynqmp-5.15.0/sound/pci/hda/patch_realtek.c @@ -1985,6 +1985,7 @@ 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 @@ {} } }, + [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 @@ 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 @@ 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 @@ 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 @@ 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); @@ -6889,6 +6901,25 @@ } } +static void alc256_decrease_headphone_amp_val(struct hda_codec *codec, + const struct hda_fixup *fix, int action) +{ + u32 caps; + u8 nsteps, offs; + + if (action != HDA_FIXUP_ACT_PRE_PROBE) + return; + + caps = query_amp_caps(codec, 0x3, HDA_OUTPUT); + nsteps = ((caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT) - 10; + offs = ((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT) - 10; + caps &= ~AC_AMPCAP_NUM_STEPS & ~AC_AMPCAP_OFFSET; + caps |= (nsteps << AC_AMPCAP_NUM_STEPS_SHIFT) | (offs << AC_AMPCAP_OFFSET_SHIFT); + + if (snd_hda_override_amp_caps(codec, 0x3, HDA_OUTPUT, caps)) + codec_warn(codec, "failed to override amp caps for NID 0x3\n"); +} + static void alc295_fixup_dell_inspiron_top_speakers(struct hda_codec *codec, const struct hda_fixup *fix, int action) { @@ -7005,6 +7036,7 @@ ALC290_FIXUP_SUBWOOFER_HSJACK, ALC269_FIXUP_THINKPAD_ACPI, ALC269_FIXUP_DMIC_THINKPAD_ACPI, + ALC269VB_FIXUP_CHUWI_COREBOOK_XPRO, ALC255_FIXUP_ACER_MIC_NO_PRESENCE, ALC255_FIXUP_ASUS_MIC_NO_PRESENCE, ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, @@ -7181,6 +7213,7 @@ ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS, ALC236_FIXUP_DELL_DUAL_CODECS, ALC287_FIXUP_THINKPAD_I2S_SPK, + ALC256_FIXUP_HEADPHONE_AMP_VOL, }; /* A special fixup for Lenovo C940 and Yoga Duet 7; @@ -7311,6 +7344,14 @@ .type = HDA_FIXUP_FUNC, .v.func = alc269_fixup_pincfg_U7x7_headset_mic, }, + [ALC269VB_FIXUP_CHUWI_COREBOOK_XPRO] = { + .type = HDA_FIXUP_PINS, + .v.pins = (const struct hda_pintbl[]) { + { 0x18, 0x03a19020 }, /* headset mic */ + { 0x1b, 0x90170150 }, /* speaker */ + { } + }, + }, [ALC269_FIXUP_AMIC] = { .type = HDA_FIXUP_PINS, .v.pins = (const struct hda_pintbl[]) { @@ -9068,4 +9109,8 @@ .v.func = alc287_fixup_bind_dacs, }, + [ALC256_FIXUP_HEADPHONE_AMP_VOL] = { + .type = HDA_FIXUP_FUNC, + .v.func = alc256_decrease_headphone_amp_val, + }, }; @@ -9095,6 +9140,7 @@ SND_PCI_QUIRK(0x1025, 0x1247, "Acer vCopperbox", ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS), SND_PCI_QUIRK(0x1025, 0x1248, "Acer Veriton N4660G", ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1025, 0x1269, "Acer SWIFT SF314-54", ALC256_FIXUP_ACER_HEADSET_MIC), + SND_PCI_QUIRK(0x1025, 0x126a, "Acer Swift SF114-32", ALC256_FIXUP_ACER_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC), SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC), SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC), @@ -9249,9 +9295,11 @@ SND_PCI_QUIRK(0x103c, 0x83b9, "HP Spectre x360", ALC269_FIXUP_HP_MUTE_LED_MIC3), SND_PCI_QUIRK(0x103c, 0x841c, "HP Pavilion 15-CK0xx", ALC269_FIXUP_HP_MUTE_LED_MIC3), SND_PCI_QUIRK(0x103c, 0x8497, "HP Envy x360", ALC269_FIXUP_HP_MUTE_LED_MIC3), + SND_PCI_QUIRK(0x103c, 0x84ae, "HP 15-db0403ng", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2), SND_PCI_QUIRK(0x103c, 0x84da, "HP OMEN dc0019-ur", ALC295_FIXUP_HP_OMEN), SND_PCI_QUIRK(0x103c, 0x84e7, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3), SND_PCI_QUIRK(0x103c, 0x8519, "HP Spectre x360 15-df0xxx", ALC285_FIXUP_HP_SPECTRE_X360), + SND_PCI_QUIRK(0x103c, 0x8537, "HP ProBook 440 G6", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF), SND_PCI_QUIRK(0x103c, 0x860f, "HP ZBook 15 G6", ALC285_FIXUP_HP_GPIO_AMP_INIT), SND_PCI_QUIRK(0x103c, 0x861f, "HP Elite Dragonfly G1", ALC285_FIXUP_HP_GPIO_AMP_INIT), SND_PCI_QUIRK(0x103c, 0x869d, "HP", ALC236_FIXUP_HP_MUTE_LED), @@ -9277,6 +9325,7 @@ SND_PCI_QUIRK(0x103c, 0x8786, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED), SND_PCI_QUIRK(0x103c, 0x8787, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED), SND_PCI_QUIRK(0x103c, 0x8788, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED), + SND_PCI_QUIRK(0x103c, 0x87b7, "HP Laptop 14-fq0xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2), SND_PCI_QUIRK(0x103c, 0x87c8, "HP", ALC287_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x87e5, "HP ProBook 440 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x87e7, "HP ProBook 450 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED), @@ -9286,6 +9335,7 @@ SND_PCI_QUIRK(0x103c, 0x87f5, "HP", ALC287_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x87f6, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP), SND_PCI_QUIRK(0x103c, 0x87f7, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP), + SND_PCI_QUIRK(0x103c, 0x87fe, "HP Laptop 15s-fq2xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2), SND_PCI_QUIRK(0x103c, 0x8805, "HP ProBook 650 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x880d, "HP EliteBook 830 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8811, "HP Spectre x360 15-eb1xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1), @@ -9342,6 +9392,7 @@ 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), @@ -9602,6 +9653,8 @@ SND_PCI_QUIRK(0x17aa, 0x9e56, "Lenovo ZhaoYang CF4620Z", ALC286_FIXUP_SONY_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1849, 0x1233, "ASRock NUC Box 1100", ALC233_FIXUP_NO_AUDIO_JACK), SND_PCI_QUIRK(0x1849, 0xa233, "Positivo Master C6300", ALC269_FIXUP_HEADSET_MIC), + SND_PCI_QUIRK(0x1854, 0x0440, "LG CQ6", ALC256_FIXUP_HEADPHONE_AMP_VOL), + SND_PCI_QUIRK(0x1854, 0x0441, "LG CQ6 AIO", ALC256_FIXUP_HEADPHONE_AMP_VOL), SND_PCI_QUIRK(0x19e5, 0x3204, "Huawei MACH-WX9", ALC256_FIXUP_HUAWEI_MACH_WX9_PINS), SND_PCI_QUIRK(0x19e5, 0x320f, "Huawei WRT-WX9 ", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1b35, 0x1235, "CZC B20", ALC269_FIXUP_CZC_B20), @@ -9625,6 +9678,8 @@ SND_PCI_QUIRK(0x1d72, 0x1901, "RedmiBook 14", ALC256_FIXUP_ASUS_HEADSET_MIC), SND_PCI_QUIRK(0x1d72, 0x1945, "Redmi G", ALC256_FIXUP_ASUS_HEADSET_MIC), SND_PCI_QUIRK(0x1d72, 0x1947, "RedmiBook Air", ALC255_FIXUP_XIAOMI_HEADSET_MIC), + SND_PCI_QUIRK(0x2782, 0x0232, "CHUWI CoreBook XPro", ALC269VB_FIXUP_CHUWI_COREBOOK_XPRO), + SND_PCI_QUIRK(0x2782, 0x1707, "Vaio VJFE-ADL", ALC298_FIXUP_SPK_VOLUME), SND_PCI_QUIRK(0x8086, 0x2074, "Intel NUC 8", ALC233_FIXUP_INTEL_NUC8_DMIC), SND_PCI_QUIRK(0x8086, 0x2080, "Intel NUC 8 Rugged", ALC256_FIXUP_INTEL_NUC8_RUGGED), SND_PCI_QUIRK(0x8086, 0x2081, "Intel NUC 10", ALC256_FIXUP_INTEL_NUC10), @@ -10205,22 +10260,6 @@ {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 +10303,9 @@ 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}), @@ -10945,8 +10987,7 @@ snd_hda_gen_hp_automute(codec, jack); vref = spec->gen.hp_jack_present ? (PIN_HP | AC_PINCTL_VREF_100) : PIN_HP; - snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, - vref); + snd_hda_set_pin_ctl(codec, 0x1b, vref); } static void alc897_fixup_lenovo_headset_mic(struct hda_codec *codec, @@ -10955,6 +10996,10 @@ struct alc_spec *spec = codec->spec; if (action == HDA_FIXUP_ACT_PRE_PROBE) { spec->gen.hp_automute_hook = alc897_hp_automute_hook; + spec->no_shutup_pins = 1; + } + if (action == HDA_FIXUP_ACT_PROBE) { + snd_hda_set_pin_ctl_cache(codec, 0x1a, PIN_IN | AC_PINCTL_VREF_100); } } diff -u linux-xilinx-zynqmp-5.15.0/sound/soc/atmel/sam9g20_wm8731.c linux-xilinx-zynqmp-5.15.0/sound/soc/atmel/sam9g20_wm8731.c --- linux-xilinx-zynqmp-5.15.0/sound/soc/atmel/sam9g20_wm8731.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/atmel/sam9g20_wm8731.c @@ -46,6 +46,35 @@ */ #undef ENABLE_MIC_INPUT +static struct clk *mclk; + +static int at91sam9g20ek_set_bias_level(struct snd_soc_card *card, + struct snd_soc_dapm_context *dapm, + enum snd_soc_bias_level level) +{ + static int mclk_on; + int ret = 0; + + switch (level) { + case SND_SOC_BIAS_ON: + case SND_SOC_BIAS_PREPARE: + if (!mclk_on) + ret = clk_enable(mclk); + if (ret == 0) + mclk_on = 1; + break; + + case SND_SOC_BIAS_OFF: + case SND_SOC_BIAS_STANDBY: + if (mclk_on) + clk_disable(mclk); + mclk_on = 0; + break; + } + + return ret; +} + static const struct snd_soc_dapm_widget at91sam9g20ek_dapm_widgets[] = { SND_SOC_DAPM_MIC("Int Mic", NULL), SND_SOC_DAPM_SPK("Ext Spk", NULL), @@ -106,6 +135,7 @@ .owner = THIS_MODULE, .dai_link = &at91sam9g20ek_dai, .num_links = 1, + .set_bias_level = at91sam9g20ek_set_bias_level, .dapm_widgets = at91sam9g20ek_dapm_widgets, .num_dapm_widgets = ARRAY_SIZE(at91sam9g20ek_dapm_widgets), @@ -118,6 +148,7 @@ { struct device_node *np = pdev->dev.of_node; struct device_node *codec_np, *cpu_np; + struct clk *pllb; struct snd_soc_card *card = &snd_soc_at91sam9g20ek; int ret; @@ -131,6 +162,31 @@ return -EINVAL; } + /* + * Codec MCLK is supplied by PCK0 - set it up. + */ + mclk = clk_get(NULL, "pck0"); + if (IS_ERR(mclk)) { + dev_err(&pdev->dev, "Failed to get MCLK\n"); + ret = PTR_ERR(mclk); + goto err; + } + + pllb = clk_get(NULL, "pllb"); + if (IS_ERR(pllb)) { + dev_err(&pdev->dev, "Failed to get PLLB\n"); + ret = PTR_ERR(pllb); + goto err_mclk; + } + ret = clk_set_parent(mclk, pllb); + clk_put(pllb); + if (ret != 0) { + dev_err(&pdev->dev, "Failed to set MCLK parent\n"); + goto err_mclk; + } + + clk_set_rate(mclk, MCLK_RATE); + card->dev = &pdev->dev; /* Parse device node info */ @@ -174,6 +230,9 @@ return ret; +err_mclk: + clk_put(mclk); + mclk = NULL; err: atmel_ssc_put_audio(0); return ret; @@ -183,6 +242,8 @@ { struct snd_soc_card *card = platform_get_drvdata(pdev); + clk_disable(mclk); + mclk = NULL; snd_soc_unregister_card(card); atmel_ssc_put_audio(0); diff -u linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/da7219-aad.c linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/da7219-aad.c --- linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/da7219-aad.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/da7219-aad.c @@ -654,7 +654,7 @@ aad_pdata->mic_det_thr = da7219_aad_fw_mic_det_thr(dev, fw_val32); else - aad_pdata->mic_det_thr = DA7219_AAD_MIC_DET_THR_500_OHMS; + aad_pdata->mic_det_thr = DA7219_AAD_MIC_DET_THR_200_OHMS; if (fwnode_property_read_u32(aad_np, "dlg,jack-ins-deb", &fw_val32) >= 0) aad_pdata->jack_ins_deb = diff -u linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/hdmi-codec.c linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/hdmi-codec.c --- linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/hdmi-codec.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/hdmi-codec.c @@ -843,8 +843,9 @@ static void hdmi_codec_jack_report(struct hdmi_codec_priv *hcp, unsigned int jack_status) { - if (hcp->jack && jack_status != hcp->jack_status) { - snd_soc_jack_report(hcp->jack, jack_status, SND_JACK_LINEOUT); + if (jack_status != hcp->jack_status) { + if (hcp->jack) + snd_soc_jack_report(hcp->jack, jack_status, SND_JACK_LINEOUT); hcp->jack_status = jack_status; } } @@ -870,18 +871,20 @@ 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; + + /* + * Report the initial jack status which may have been provided + * by the parent hdmi driver while the hpd hook was registered. + */ + snd_soc_jack_report(jack, hcp->jack_status, SND_JACK_LINEOUT); + + return 0; } - return ret; + + return -ENOTSUPP; } static int hdmi_dai_spdif_probe(struct snd_soc_dai *dai) @@ -965,6 +968,21 @@ 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 +993,7 @@ } 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 -u linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/lpass-wsa-macro.c linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/lpass-wsa-macro.c --- linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/lpass-wsa-macro.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/lpass-wsa-macro.c @@ -1577,7 +1577,6 @@ u16 gain_reg; u16 reg; int val; - int offset_val = 0; struct wsa_macro *wsa = snd_soc_component_get_drvdata(component); if (w->shift == WSA_MACRO_COMP1) { @@ -1616,10 +1615,8 @@ CDC_WSA_RX1_RX_PATH_MIX_SEC0, CDC_WSA_RX_PGA_HALF_DB_MASK, CDC_WSA_RX_PGA_HALF_DB_ENABLE); - offset_val = -2; } val = snd_soc_component_read(component, gain_reg); - val += offset_val; snd_soc_component_write(component, gain_reg, val); wsa_macro_config_ear_spkr_gain(component, wsa, event, gain_reg); @@ -1647,10 +1644,6 @@ CDC_WSA_RX1_RX_PATH_MIX_SEC0, CDC_WSA_RX_PGA_HALF_DB_MASK, CDC_WSA_RX_PGA_HALF_DB_DISABLE); - offset_val = 2; - val = snd_soc_component_read(component, gain_reg); - val += offset_val; - snd_soc_component_write(component, gain_reg, val); } wsa_macro_config_ear_spkr_gain(component, wsa, event, gain_reg); @@ -1678,6 +1671,9 @@ 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 -u linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/nau8822.c linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/nau8822.c --- linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/nau8822.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/nau8822.c @@ -184,6 +184,7 @@ struct soc_bytes_ext *params = (void *)kcontrol->private_value; int i, reg; u16 reg_val, *val; + __be16 tmp; val = (u16 *)ucontrol->value.bytes.data; reg = NAU8822_REG_EQ1; @@ -192,8 +193,8 @@ /* conversion of 16-bit integers between native CPU format * and big endian format */ - reg_val = cpu_to_be16(reg_val); - memcpy(val + i, ®_val, sizeof(reg_val)); + tmp = cpu_to_be16(reg_val); + memcpy(val + i, &tmp, sizeof(tmp)); } return 0; @@ -216,6 +217,7 @@ void *data; u16 *val, value; int i, reg, ret; + __be16 *tmp; data = kmemdup(ucontrol->value.bytes.data, params->max, GFP_KERNEL | GFP_DMA); @@ -228,7 +230,8 @@ /* conversion of 16-bit integers between native CPU format * and big endian format */ - value = be16_to_cpu(*(val + i)); + tmp = (__be16 *)(val + i); + value = be16_to_cpup(tmp); ret = snd_soc_component_write(component, reg + i, value); if (ret) { dev_err(component->dev, diff -u linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/rt5645.c linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/rt5645.c --- linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/rt5645.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/rt5645.c @@ -448,6 +448,7 @@ struct regulator_bulk_data supplies[ARRAY_SIZE(rt5645_supply_names)]; struct rt5645_eq_param_s *eq_param; struct timer_list btn_check_timer; + struct mutex jd_mutex; int codec_type; int sysclk; @@ -3189,6 +3190,8 @@ rt5645_enable_push_button_irq(component, true); } } else { + if (rt5645->en_button_func) + rt5645_enable_push_button_irq(component, false); snd_soc_dapm_disable_pin(dapm, "Mic Det Power"); snd_soc_dapm_sync(dapm); rt5645->jack_type = SND_JACK_HEADPHONE; @@ -3251,6 +3254,8 @@ 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); @@ -3267,6 +3272,8 @@ if (!rt5645->component) return; + mutex_lock(&rt5645->jd_mutex); + switch (rt5645->pdata.jd_mode) { case 0: /* Not using rt5645 JD */ if (rt5645->gpiod_hp_det) { @@ -3281,6 +3288,7 @@ report, SND_JACK_HEADPHONE); snd_soc_jack_report(rt5645->mic_jack, report, SND_JACK_MICROPHONE); + mutex_unlock(&rt5645->jd_mutex); return; case 4: val = snd_soc_component_read(rt5645->component, RT5645_A_JD_CTRL1) & 0x0020; @@ -3293,7 +3301,7 @@ if (!val && (rt5645->jack_type == 0)) { /* jack in */ report = rt5645_jack_detect(rt5645->component, 1); - } else if (!val && rt5645->jack_type != 0) { + } else if (!val && rt5645->jack_type == SND_JACK_HEADSET) { /* for push button and jack out */ btn_type = 0; if (snd_soc_component_read(rt5645->component, RT5645_INT_IRQ_ST) & 0x4) { @@ -3349,6 +3357,8 @@ rt5645_jack_detect(rt5645->component, 0); } + mutex_unlock(&rt5645->jd_mutex); + snd_soc_jack_report(rt5645->hp_jack, report, SND_JACK_HEADPHONE); snd_soc_jack_report(rt5645->mic_jack, report, SND_JACK_MICROPHONE); if (rt5645->en_button_func) @@ -3819,14 +3829,6 @@ }, .driver_data = (void *)&ecs_ef20_platform_data, }, - { - .ident = "EF20EA", - .callback = cht_rt5645_ef20_quirk_cb, - .matches = { - DMI_MATCH(DMI_PRODUCT_NAME, "EF20EA"), - }, - .driver_data = (void *)&ecs_ef20_platform_data, - }, { } }; @@ -4119,6 +4121,7 @@ } timer_setup(&rt5645->btn_check_timer, rt5645_btn_check_callback, 0); + mutex_init(&rt5645->jd_mutex); INIT_DELAYED_WORK(&rt5645->jack_detect_work, rt5645_jack_detect_work); INIT_DELAYED_WORK(&rt5645->rcclock_work, rt5645_rcclock_work); diff -u linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/wcd938x.c linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/wcd938x.c --- linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/wcd938x.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/wcd938x.c @@ -4411,7 +4411,8 @@ 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 @@ 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 @@ 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); } @@ -4553,7 +4573,7 @@ ret = wcd938x_populate_dt_data(wcd938x, dev); if (ret) { dev_err(dev, "%s: Fail to obtain platform data\n", __func__); - return -EINVAL; + return ret; } ret = wcd938x_add_slave_components(wcd938x, dev, &match); @@ -4578,7 +4598,13 @@ 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 -u linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/wm_adsp.c linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/wm_adsp.c --- linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/wm_adsp.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/wm_adsp.c @@ -3766,12 +3766,12 @@ 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 @@ } return 0; + +err: + kfree(buf->regions); + return ret; } static void wm_adsp_buffer_clear(struct wm_adsp_compr_buf *buf) diff -u linux-xilinx-zynqmp-5.15.0/sound/soc/fsl/fsl_easrc.c linux-xilinx-zynqmp-5.15.0/sound/soc/fsl/fsl_easrc.c --- linux-xilinx-zynqmp-5.15.0/sound/soc/fsl/fsl_easrc.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/fsl/fsl_easrc.c @@ -1965,17 +1965,21 @@ &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 -u linux-xilinx-zynqmp-5.15.0/sound/soc/generic/simple-card.c linux-xilinx-zynqmp-5.15.0/sound/soc/generic/simple-card.c --- linux-xilinx-zynqmp-5.15.0/sound/soc/generic/simple-card.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/generic/simple-card.c @@ -680,10 +680,12 @@ 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 @@ !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 -u linux-xilinx-zynqmp-5.15.0/sound/soc/intel/boards/bytcr_rt5640.c linux-xilinx-zynqmp-5.15.0/sound/soc/intel/boards/bytcr_rt5640.c --- linux-xilinx-zynqmp-5.15.0/sound/soc/intel/boards/bytcr_rt5640.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/intel/boards/bytcr_rt5640.c @@ -870,6 +870,18 @@ BYT_RT5640_SSP0_AIF1 | BYT_RT5640_MCLK_EN), }, + { + /* Medion Lifetab S10346 */ + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "AMI Corporation"), + DMI_MATCH(DMI_BOARD_NAME, "Aptio CRB"), + /* Above strings are much too generic, also match on BIOS date */ + DMI_MATCH(DMI_BIOS_DATE, "10/22/2015"), + }, + .driver_data = (void *)(BYTCR_INPUT_DEFAULTS | + BYT_RT5640_SSP0_AIF1 | + BYT_RT5640_MCLK_EN), + }, { /* Mele PCG03 Mini PC */ .matches = { DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "Mini PC"), diff -u linux-xilinx-zynqmp-5.15.0/sound/soc/intel/skylake/skl-pcm.c linux-xilinx-zynqmp-5.15.0/sound/soc/intel/skylake/skl-pcm.c --- linux-xilinx-zynqmp-5.15.0/sound/soc/intel/skylake/skl-pcm.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/intel/skylake/skl-pcm.c @@ -251,8 +251,10 @@ snd_pcm_set_sync(substream); mconfig = skl_tplg_fe_get_cpr_module(dai, substream->stream); - if (!mconfig) + if (!mconfig) { + kfree(dma_params); return -EINVAL; + } skl_tplg_d0i3_get(skl, mconfig->d0i3_caps); @@ -1465,6 +1467,7 @@ dais = krealloc(skl->dais, sizeof(skl_fe_dai) + sizeof(skl_platform_dai), GFP_KERNEL); if (!dais) { + kfree(skl->dais); ret = -ENOMEM; goto err; } @@ -1477,8 +1480,10 @@ ret = devm_snd_soc_register_component(dev, &skl_component, skl->dais, num_dais); - if (ret) + if (ret) { + kfree(skl->dais); dev_err(dev, "soc component registration failed %d\n", ret); + } err: return ret; } diff -u linux-xilinx-zynqmp-5.15.0/sound/soc/meson/g12a-tohdmitx.c linux-xilinx-zynqmp-5.15.0/sound/soc/meson/g12a-tohdmitx.c --- linux-xilinx-zynqmp-5.15.0/sound/soc/meson/g12a-tohdmitx.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/meson/g12a-tohdmitx.c @@ -45,6 +45,9 @@ struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; unsigned int mux, changed; + if (ucontrol->value.enumerated.item[0] >= e->items) + return -EINVAL; + mux = snd_soc_enum_item_to_val(e, ucontrol->value.enumerated.item[0]); changed = snd_soc_component_test_bits(component, e->reg, CTRL0_I2S_DAT_SEL, @@ -93,6 +96,9 @@ struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; unsigned int mux, changed; + if (ucontrol->value.enumerated.item[0] >= e->items) + return -EINVAL; + mux = snd_soc_enum_item_to_val(e, ucontrol->value.enumerated.item[0]); changed = snd_soc_component_test_bits(component, TOHDMITX_CTRL0, CTRL0_SPDIF_SEL, @@ -112,7 +118,7 @@ snd_soc_dapm_mux_update_power(dapm, kcontrol, mux, e, NULL); - return 0; + return 1; } static SOC_ENUM_SINGLE_DECL(g12a_tohdmitx_spdif_mux_enum, TOHDMITX_CTRL0, diff -u linux-xilinx-zynqmp-5.15.0/sound/soc/soc-ops.c linux-xilinx-zynqmp-5.15.0/sound/soc/soc-ops.c --- linux-xilinx-zynqmp-5.15.0/sound/soc/soc-ops.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/soc-ops.c @@ -644,7 +644,7 @@ kctl = snd_soc_card_get_kcontrol(card, name); if (kctl) { struct soc_mixer_control *mc = (struct soc_mixer_control *)kctl->private_value; - if (max <= mc->max) { + if (max <= mc->max - mc->min) { mc->platform_max = max; ret = 0; } diff -u linux-xilinx-zynqmp-5.15.0/sound/soc/sof/sof-pci-dev.c linux-xilinx-zynqmp-5.15.0/sound/soc/sof/sof-pci-dev.c --- linux-xilinx-zynqmp-5.15.0/sound/soc/sof/sof-pci-dev.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/sof/sof-pci-dev.c @@ -12,6 +12,7 @@ #include #include #include +#include #include #include #include @@ -27,17 +28,22 @@ 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 @@ {} }; +/* 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 @@ "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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/sound/usb/mixer_quirks.c linux-xilinx-zynqmp-5.15.0/sound/usb/mixer_quirks.c --- linux-xilinx-zynqmp-5.15.0/sound/usb/mixer_quirks.c +++ linux-xilinx-zynqmp-5.15.0/sound/usb/mixer_quirks.c @@ -2796,6 +2796,7 @@ #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 @@ }; +// 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 @@ [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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/sound/usb/quirks.c linux-xilinx-zynqmp-5.15.0/sound/usb/quirks.c --- linux-xilinx-zynqmp-5.15.0/sound/usb/quirks.c +++ linux-xilinx-zynqmp-5.15.0/sound/usb/quirks.c @@ -1125,7 +1125,7 @@ static int snd_usb_motu_m_series_boot_quirk(struct usb_device *dev) { - msleep(2000); + msleep(4000); return 0; } @@ -1364,7 +1364,7 @@ unsigned int id) { switch (id) { - case USB_ID(0x07fd, 0x0008): /* MOTU M Series */ + case USB_ID(0x07fd, 0x0008): /* MOTU M Series, 1st hardware version */ return snd_usb_motu_m_series_boot_quirk(dev); } @@ -1759,6 +1759,8 @@ QUIRK_FLAG_CTL_MSG_DELAY_1M | QUIRK_FLAG_IGNORE_CTL_ERROR), DEVICE_FLG(0x0499, 0x1509, /* Steinberg UR22 */ QUIRK_FLAG_GENERIC_IMPLICIT_FB), + DEVICE_FLG(0x0499, 0x3108, /* Yamaha YIT-W12TX */ + QUIRK_FLAG_GET_SAMPLE_RATE), DEVICE_FLG(0x04d8, 0xfeea, /* Benchmark DAC1 Pre */ QUIRK_FLAG_GET_SAMPLE_RATE), DEVICE_FLG(0x04e8, 0xa051, /* Samsung USBC Headset (AKG) */ @@ -1796,6 +1798,8 @@ QUIRK_FLAG_GENERIC_IMPLICIT_FB), DEVICE_FLG(0x0763, 0x2031, /* M-Audio Fast Track C600 */ QUIRK_FLAG_GENERIC_IMPLICIT_FB), + DEVICE_FLG(0x07fd, 0x000b, /* MOTU M Series 2nd hardware revision */ + QUIRK_FLAG_CTL_MSG_DELAY_1M), DEVICE_FLG(0x08bb, 0x2702, /* LineX FM Transmitter */ QUIRK_FLAG_IGNORE_CTL_ERROR), DEVICE_FLG(0x0951, 0x16ad, /* Kingston HyperX */ diff -u linux-xilinx-zynqmp-5.15.0/tools/iio/iio_generic_buffer.c linux-xilinx-zynqmp-5.15.0/tools/iio/iio_generic_buffer.c --- linux-xilinx-zynqmp-5.15.0/tools/iio/iio_generic_buffer.c +++ linux-xilinx-zynqmp-5.15.0/tools/iio/iio_generic_buffer.c @@ -54,9 +54,12 @@ static unsigned int size_from_channelarray(struct iio_channel_info *channels, int num_channels) { unsigned int bytes = 0; - int i = 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 @@ 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; } diff -u linux-xilinx-zynqmp-5.15.0/tools/include/uapi/linux/bpf.h linux-xilinx-zynqmp-5.15.0/tools/include/uapi/linux/bpf.h --- linux-xilinx-zynqmp-5.15.0/tools/include/uapi/linux/bpf.h +++ linux-xilinx-zynqmp-5.15.0/tools/include/uapi/linux/bpf.h @@ -4245,6 +4245,8 @@ * long bpf_get_task_stack(struct task_struct *task, void *buf, u32 size, u64 flags) * Description * Return a user or a kernel stack in bpf program provided buffer. + * Note: the user stack will only be populated if the *task* is + * the current task; all other tasks will return -EOPNOTSUPP. * To achieve this, the helper needs *task*, which is a valid * pointer to **struct task_struct**. To store the stacktrace, the * bpf program provides *buf* with a nonnegative *size*. @@ -4256,6 +4258,7 @@ * * **BPF_F_USER_STACK** * Collect a user space stack instead of a kernel stack. + * The *task* must be the current task. * **BPF_F_USER_BUILD_ID** * Collect buildid+offset instead of ips for user stack, * only valid if **BPF_F_USER_STACK** is also specified. diff -u linux-xilinx-zynqmp-5.15.0/tools/lib/bpf/libbpf.c linux-xilinx-zynqmp-5.15.0/tools/lib/bpf/libbpf.c --- linux-xilinx-zynqmp-5.15.0/tools/lib/bpf/libbpf.c +++ linux-xilinx-zynqmp-5.15.0/tools/lib/bpf/libbpf.c @@ -3803,6 +3803,8 @@ scn = elf_sec_by_idx(obj, sec_idx); scn_data = elf_sec_data(obj, scn); + if (!scn_data) + return -LIBBPF_ERRNO__FORMAT; relo_sec_name = elf_sec_str(obj, shdr->sh_name); sec_name = elf_sec_name(obj, scn); diff -u linux-xilinx-zynqmp-5.15.0/tools/objtool/check.c linux-xilinx-zynqmp-5.15.0/tools/objtool/check.c --- linux-xilinx-zynqmp-5.15.0/tools/objtool/check.c +++ linux-xilinx-zynqmp-5.15.0/tools/objtool/check.c @@ -2202,7 +2202,7 @@ if (!dest) return false; - if (dest->fentry) + if (dest->fentry || dest->embedded_insn) return true; } diff -u linux-xilinx-zynqmp-5.15.0/tools/perf/util/bpf-event.c linux-xilinx-zynqmp-5.15.0/tools/perf/util/bpf-event.c --- linux-xilinx-zynqmp-5.15.0/tools/perf/util/bpf-event.c +++ linux-xilinx-zynqmp-5.15.0/tools/perf/util/bpf-event.c @@ -554,9 +554,9 @@ return evlist__add_sb_event(evlist, &attr, bpf_event__sb_cb, env); } -void bpf_event__print_bpf_prog_info(struct bpf_prog_info *info, - struct perf_env *env, - FILE *fp) +void __bpf_event__print_bpf_prog_info(struct bpf_prog_info *info, + struct perf_env *env, + FILE *fp) { __u32 *prog_lens = (__u32 *)(uintptr_t)(info->jited_func_lens); __u64 *prog_addrs = (__u64 *)(uintptr_t)(info->jited_ksyms); @@ -572,7 +572,7 @@ if (info->btf_id) { struct btf_node *node; - node = perf_env__find_btf(env, info->btf_id); + node = __perf_env__find_btf(env, info->btf_id); if (node) btf = btf__new((__u8 *)(node->data), node->data_size); diff -u linux-xilinx-zynqmp-5.15.0/tools/perf/util/env.c linux-xilinx-zynqmp-5.15.0/tools/perf/util/env.c --- linux-xilinx-zynqmp-5.15.0/tools/perf/util/env.c +++ linux-xilinx-zynqmp-5.15.0/tools/perf/util/env.c @@ -21,12 +21,18 @@ void perf_env__insert_bpf_prog_info(struct perf_env *env, struct bpf_prog_info_node *info_node) { + down_write(&env->bpf_progs.lock); + __perf_env__insert_bpf_prog_info(env, info_node); + up_write(&env->bpf_progs.lock); +} + +void __perf_env__insert_bpf_prog_info(struct perf_env *env, struct bpf_prog_info_node *info_node) +{ __u32 prog_id = info_node->info_linear->info.id; struct bpf_prog_info_node *node; struct rb_node *parent = NULL; struct rb_node **p; - down_write(&env->bpf_progs.lock); p = &env->bpf_progs.infos.rb_node; while (*p != NULL) { @@ -38,15 +44,13 @@ p = &(*p)->rb_right; } else { pr_debug("duplicated bpf prog info %u\n", prog_id); - goto out; + return; } } rb_link_node(&info_node->rb_node, parent, p); rb_insert_color(&info_node->rb_node, &env->bpf_progs.infos); env->bpf_progs.infos_cnt++; -out: - up_write(&env->bpf_progs.lock); } struct bpf_prog_info_node *perf_env__find_bpf_prog_info(struct perf_env *env, @@ -76,13 +80,21 @@ bool perf_env__insert_btf(struct perf_env *env, struct btf_node *btf_node) { + bool ret; + + down_write(&env->bpf_progs.lock); + ret = __perf_env__insert_btf(env, btf_node); + up_write(&env->bpf_progs.lock); + return ret; +} + +bool __perf_env__insert_btf(struct perf_env *env, struct btf_node *btf_node) +{ struct rb_node *parent = NULL; __u32 btf_id = btf_node->id; struct btf_node *node; struct rb_node **p; - bool ret = true; - down_write(&env->bpf_progs.lock); p = &env->bpf_progs.btfs.rb_node; while (*p != NULL) { @@ -94,25 +106,31 @@ p = &(*p)->rb_right; } else { pr_debug("duplicated btf %u\n", btf_id); - ret = false; - goto out; + return false; } } rb_link_node(&btf_node->rb_node, parent, p); rb_insert_color(&btf_node->rb_node, &env->bpf_progs.btfs); env->bpf_progs.btfs_cnt++; -out: - up_write(&env->bpf_progs.lock); - return ret; + return true; } struct btf_node *perf_env__find_btf(struct perf_env *env, __u32 btf_id) { + struct btf_node *res; + + down_read(&env->bpf_progs.lock); + res = __perf_env__find_btf(env, btf_id); + up_read(&env->bpf_progs.lock); + return res; +} + +struct btf_node *__perf_env__find_btf(struct perf_env *env, __u32 btf_id) +{ struct btf_node *node = NULL; struct rb_node *n; - down_read(&env->bpf_progs.lock); n = env->bpf_progs.btfs.rb_node; while (n) { @@ -122,13 +140,9 @@ else if (btf_id > node->id) n = n->rb_right; else - goto out; + return node; } - node = NULL; - -out: - up_read(&env->bpf_progs.lock); - return node; + return NULL; } /* purge data in bpf_progs.infos tree */ diff -u linux-xilinx-zynqmp-5.15.0/tools/perf/util/env.h linux-xilinx-zynqmp-5.15.0/tools/perf/util/env.h --- linux-xilinx-zynqmp-5.15.0/tools/perf/util/env.h +++ linux-xilinx-zynqmp-5.15.0/tools/perf/util/env.h @@ -163,12 +163,16 @@ int perf_env__nr_cpus_avail(struct perf_env *env); void perf_env__init(struct perf_env *env); +void __perf_env__insert_bpf_prog_info(struct perf_env *env, + struct bpf_prog_info_node *info_node); void perf_env__insert_bpf_prog_info(struct perf_env *env, struct bpf_prog_info_node *info_node); struct bpf_prog_info_node *perf_env__find_bpf_prog_info(struct perf_env *env, __u32 prog_id); bool perf_env__insert_btf(struct perf_env *env, struct btf_node *btf_node); +bool __perf_env__insert_btf(struct perf_env *env, struct btf_node *btf_node); struct btf_node *perf_env__find_btf(struct perf_env *env, __u32 btf_id); +struct btf_node *__perf_env__find_btf(struct perf_env *env, __u32 btf_id); int perf_env__numa_node(struct perf_env *env, int cpu); #endif /* __PERF_ENV_H */ diff -u linux-xilinx-zynqmp-5.15.0/tools/perf/util/genelf.c linux-xilinx-zynqmp-5.15.0/tools/perf/util/genelf.c --- linux-xilinx-zynqmp-5.15.0/tools/perf/util/genelf.c +++ linux-xilinx-zynqmp-5.15.0/tools/perf/util/genelf.c @@ -291,9 +291,9 @@ */ phdr = elf_newphdr(e, 1); phdr[0].p_type = PT_LOAD; - phdr[0].p_offset = 0; - phdr[0].p_vaddr = 0; - phdr[0].p_paddr = 0; + phdr[0].p_offset = GEN_ELF_TEXT_OFFSET; + phdr[0].p_vaddr = GEN_ELF_TEXT_OFFSET; + phdr[0].p_paddr = GEN_ELF_TEXT_OFFSET; phdr[0].p_filesz = csize; phdr[0].p_memsz = csize; phdr[0].p_flags = PF_X | PF_R; diff -u linux-xilinx-zynqmp-5.15.0/tools/perf/util/genelf.h linux-xilinx-zynqmp-5.15.0/tools/perf/util/genelf.h --- linux-xilinx-zynqmp-5.15.0/tools/perf/util/genelf.h +++ linux-xilinx-zynqmp-5.15.0/tools/perf/util/genelf.h @@ -2,6 +2,8 @@ #ifndef __GENELF_H__ #define __GENELF_H__ +#include + /* genelf.c */ int jit_write_elf(int fd, uint64_t code_addr, const char *sym, const void *code, int csize, void *debug, int nr_debug_entries, @@ -74,5 +76,5 @@ /* The .text section is directly after the ELF header */ -#define GEN_ELF_TEXT_OFFSET sizeof(Elf_Ehdr) +#define GEN_ELF_TEXT_OFFSET round_up(sizeof(Elf_Ehdr) + sizeof(Elf_Phdr), 16) #endif diff -u linux-xilinx-zynqmp-5.15.0/tools/perf/util/header.c linux-xilinx-zynqmp-5.15.0/tools/perf/util/header.c --- linux-xilinx-zynqmp-5.15.0/tools/perf/util/header.c +++ linux-xilinx-zynqmp-5.15.0/tools/perf/util/header.c @@ -1735,8 +1735,8 @@ node = rb_entry(next, struct bpf_prog_info_node, rb_node); next = rb_next(&node->rb_node); - bpf_event__print_bpf_prog_info(&node->info_linear->info, - env, fp); + __bpf_event__print_bpf_prog_info(&node->info_linear->info, + env, fp); } up_read(&env->bpf_progs.lock); @@ -3073,7 +3073,7 @@ /* after reading from file, translate offset to address */ bpf_program__bpil_offs_to_addr(info_linear); info_node->info_linear = info_linear; - perf_env__insert_bpf_prog_info(env, info_node); + __perf_env__insert_bpf_prog_info(env, info_node); } up_write(&env->bpf_progs.lock); @@ -3120,7 +3120,7 @@ if (__do_read(ff, node->data, data_size)) goto out; - perf_env__insert_btf(env, node); + __perf_env__insert_btf(env, node); node = NULL; } diff -u linux-xilinx-zynqmp-5.15.0/tools/perf/util/hist.c linux-xilinx-zynqmp-5.15.0/tools/perf/util/hist.c --- linux-xilinx-zynqmp-5.15.0/tools/perf/util/hist.c +++ linux-xilinx-zynqmp-5.15.0/tools/perf/util/hist.c @@ -2635,8 +2635,6 @@ /* 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 @@ * 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/tools/perf/util/intel-pt.c linux-xilinx-zynqmp-5.15.0/tools/perf/util/intel-pt.c --- linux-xilinx-zynqmp-5.15.0/tools/perf/util/intel-pt.c +++ linux-xilinx-zynqmp-5.15.0/tools/perf/util/intel-pt.c @@ -1346,9 +1346,11 @@ } 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 -u linux-xilinx-zynqmp-5.15.0/tools/perf/util/machine.c linux-xilinx-zynqmp-5.15.0/tools/perf/util/machine.c --- linux-xilinx-zynqmp-5.15.0/tools/perf/util/machine.c +++ linux-xilinx-zynqmp-5.15.0/tools/perf/util/machine.c @@ -2437,16 +2437,18 @@ 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 -u linux-xilinx-zynqmp-5.15.0/tools/power/x86/turbostat/turbostat.c linux-xilinx-zynqmp-5.15.0/tools/power/x86/turbostat/turbostat.c --- linux-xilinx-zynqmp-5.15.0/tools/power/x86/turbostat/turbostat.c +++ linux-xilinx-zynqmp-5.15.0/tools/power/x86/turbostat/turbostat.c @@ -2100,7 +2100,7 @@ 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 @@ 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 -u linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/bpf/prog_tests/bpf_iter.c linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/bpf/prog_tests/bpf_iter.c --- linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/bpf/prog_tests/bpf_iter.c +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/bpf/prog_tests/bpf_iter.c @@ -150,6 +150,8 @@ do_dummy_read(skel->progs.dump_task_stack); do_dummy_read(skel->progs.get_task_user_stacks); + ASSERT_EQ(skel->bss->num_user_stacks, 1, "num_user_stacks"); + bpf_iter_task_stack__destroy(skel); } diff -u linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/bpf/prog_tests/btf.c linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/bpf/prog_tests/btf.c --- linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/bpf/prog_tests/btf.c +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/bpf/prog_tests/btf.c @@ -4766,6 +4766,7 @@ #endif assert(0); + return 0; } static void set_pprint_mapv(enum pprint_mapv_kind_t mapv_kind, diff -u linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/net/pmtu.sh linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/net/pmtu.sh --- linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/net/pmtu.sh +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/net/pmtu.sh @@ -698,23 +698,23 @@ } setup_xfrm4udp() { - setup_xfrm 4 ${veth4_a_addr} ${veth4_b_addr} "encap espinudp 4500 4500 0.0.0.0" - setup_nettest_xfrm 4 4500 + setup_xfrm 4 ${veth4_a_addr} ${veth4_b_addr} "encap espinudp 4500 4500 0.0.0.0" && \ + setup_nettest_xfrm 4 4500 } setup_xfrm6udp() { - setup_xfrm 6 ${veth6_a_addr} ${veth6_b_addr} "encap espinudp 4500 4500 0.0.0.0" - setup_nettest_xfrm 6 4500 + setup_xfrm 6 ${veth6_a_addr} ${veth6_b_addr} "encap espinudp 4500 4500 0.0.0.0" && \ + setup_nettest_xfrm 6 4500 } setup_xfrm4udprouted() { - setup_xfrm 4 ${prefix4}.${a_r1}.1 ${prefix4}.${b_r1}.1 "encap espinudp 4500 4500 0.0.0.0" - setup_nettest_xfrm 4 4500 + setup_xfrm 4 ${prefix4}.${a_r1}.1 ${prefix4}.${b_r1}.1 "encap espinudp 4500 4500 0.0.0.0" && \ + setup_nettest_xfrm 4 4500 } setup_xfrm6udprouted() { - setup_xfrm 6 ${prefix6}:${a_r1}::1 ${prefix6}:${b_r1}::1 "encap espinudp 4500 4500 0.0.0.0" - setup_nettest_xfrm 6 4500 + setup_xfrm 6 ${prefix6}:${a_r1}::1 ${prefix6}:${b_r1}::1 "encap espinudp 4500 4500 0.0.0.0" && \ + setup_nettest_xfrm 6 4500 } setup_routing_old() { @@ -1795,6 +1795,13 @@ return 0 } +check_running() { + pid=${1} + cmd=${2} + + [ "$(cat /proc/${pid}/cmdline 2>/dev/null | tr -d '\0')" = "{cmd}" ] +} + test_cleanup_vxlanX_exception() { outer="${1}" encap="vxlan" @@ -1825,11 +1832,12 @@ ${ns_a} ip link del dev veth_A-R1 & iplink_pid=$! - sleep 1 - if [ "$(cat /proc/${iplink_pid}/cmdline 2>/dev/null | tr -d '\0')" = "iplinkdeldevveth_A-R1" ]; then - err " can't delete veth device in a timely manner, PMTU dst likely leaked" - return 1 - fi + for i in $(seq 1 20); do + check_running ${iplink_pid} "iplinkdeldevveth_A-R1" || return 0 + sleep 0.1 + done + err " can't delete veth device in a timely manner, PMTU dst likely leaked" + return 1 } test_cleanup_ipv6_exception() { @@ -1880,7 +1888,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/net/udpgro_fwd.sh linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/net/udpgro_fwd.sh --- linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/net/udpgro_fwd.sh +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/net/udpgro_fwd.sh @@ -36,6 +36,10 @@ for ns in $NS_SRC $NS_DST; do ip netns add $ns ip -n $ns link set dev lo up + + # disable route solicitations to decrease 'noise' traffic + ip netns exec $ns sysctl -qw net.ipv6.conf.default.router_solicitations=0 + ip netns exec $ns sysctl -qw net.ipv6.conf.all.router_solicitations=0 done ip link add name veth$SRC type veth peer name veth$DST @@ -77,6 +81,12 @@ create_vxlan_endpoint $BASE$ns veth$ns $BM_NET_V6$((3 - $ns)) vxlan6$ns 6 ip -n $BASE$ns addr add dev vxlan6$ns $OL_NET_V6$ns/24 nodad done + + # preload neighbur cache, do avoid some noisy traffic + local addr_dst=$(ip -j -n $BASE$DST link show dev vxlan6$DST |jq -r '.[]["address"]') + local addr_src=$(ip -j -n $BASE$SRC link show dev vxlan6$SRC |jq -r '.[]["address"]') + ip -n $BASE$DST neigh add dev vxlan6$DST lladdr $addr_src $OL_NET_V6$SRC + ip -n $BASE$SRC neigh add dev vxlan6$SRC lladdr $addr_dst $OL_NET_V6$DST } is_ipv6() { @@ -116,7 +126,7 @@ # not enable GRO ip netns exec $NS_DST $ipt -A INPUT -p udp --dport 4789 ip netns exec $NS_DST $ipt -A INPUT -p udp --dport 8000 - ip netns exec $NS_DST ./udpgso_bench_rx -C 1000 -R 10 -n 10 -l 1300 $rx_args & + ip netns exec $NS_DST ./udpgso_bench_rx -C 2000 -R 100 -n 10 -l 1300 $rx_args & local spid=$! sleep 0.1 ip netns exec $NS_SRC ./udpgso_bench_tx $family -M 1 -s 13000 -S 1300 -D $dst @@ -165,7 +175,7 @@ # bind the sender and the receiver to different CPUs to try # get reproducible results ip netns exec $NS_DST bash -c "echo 2 > /sys/class/net/veth$DST/queues/rx-0/rps_cpus" - ip netns exec $NS_DST taskset 0x2 ./udpgso_bench_rx -C 1000 -R 10 & + ip netns exec $NS_DST taskset 0x2 ./udpgso_bench_rx -C 2000 -R 100 & local spid=$! sleep 0.1 ip netns exec $NS_SRC taskset 0x1 ./udpgso_bench_tx $family -l 3 -S 1300 -D $dst diff -u linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/net/udpgso_bench_rx.c linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/net/udpgso_bench_rx.c --- linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/net/udpgso_bench_rx.c +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/net/udpgso_bench_rx.c @@ -375,7 +375,7 @@ do_flush_udp(fd); tnow = gettimeofday_ms(); - if (tnow > treport) { + if (!cfg_expected_pkt_nr && tnow > treport) { if (packets) fprintf(stderr, "%s rx: %6lu MB/s %8lu calls/s\n", diff -u linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/pidfd/pidfd_fdinfo_test.c linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/pidfd/pidfd_fdinfo_test.c --- linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/pidfd/pidfd_fdinfo_test.c +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/pidfd/pidfd_fdinfo_test.c @@ -62,7 +62,7 @@ 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 -u linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/pidfd/pidfd_test.c linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/pidfd/pidfd_test.c --- linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/pidfd/pidfd_test.c +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/pidfd/pidfd_test.c @@ -380,13 +380,13 @@ 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 @@ { 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_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 @@ { 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 -u linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/resctrl/Makefile linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/resctrl/Makefile --- linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/resctrl/Makefile +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/resctrl/Makefile @@ -1,4 +1,6 @@ -CFLAGS = -g -Wall -O2 -D_FORTIFY_SOURCE=2 +# SPDX-License-Identifier: GPL-2.0 + +CFLAGS = -g -Wall -O2 -D_FORTIFY_SOURCE=2 -D_GNU_SOURCE CFLAGS += $(KHDR_INCLUDES) TEST_GEN_PROGS := resctrl_tests diff -u linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/resctrl/cmt_test.c linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/resctrl/cmt_test.c --- linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/resctrl/cmt_test.c +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/resctrl/cmt_test.c @@ -91,9 +91,6 @@ 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 -u linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/resctrl/mba_test.c linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/resctrl/mba_test.c --- linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/resctrl/mba_test.c +++ linux-xilinx-zynqmp-5.15.0/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 -u linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/resctrl/mbm_test.c linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/resctrl/mbm_test.c --- linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/resctrl/mbm_test.c +++ linux-xilinx-zynqmp-5.15.0/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 -u linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/resctrl/resctrl.h linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/resctrl/resctrl.h --- linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/resctrl/resctrl.h +++ linux-xilinx-zynqmp-5.15.0/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 diff -u linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/resctrl/resctrl_tests.c linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/resctrl/resctrl_tests.c --- linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/resctrl/resctrl_tests.c +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/resctrl/resctrl_tests.c @@ -224,9 +224,14 @@ 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 -u linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/sgx/Makefile linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/sgx/Makefile --- linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/sgx/Makefile +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/sgx/Makefile @@ -16,9 +16,9 @@ ENCL_CFLAGS := -Wall -Werror -static -nostdlib -nostartfiles -fPIC \ -fno-stack-protector -mrdrnd $(INCLUDES) +ifeq ($(CAN_BUILD_X86_64), 1) TEST_CUSTOM_PROGS := $(OUTPUT)/test_sgx -ifeq ($(CAN_BUILD_X86_64), 1) all: $(TEST_CUSTOM_PROGS) $(OUTPUT)/test_encl.elf endif diff -u linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/vm/charge_reserved_hugetlb.sh linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/vm/charge_reserved_hugetlb.sh --- linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/vm/charge_reserved_hugetlb.sh +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/vm/charge_reserved_hugetlb.sh @@ -25,7 +25,7 @@ fi if [[ $cgroup2 ]]; then - cgroup_path=$(mount -t cgroup2 | head -1 | awk -e '{print $3}') + cgroup_path=$(mount -t cgroup2 | head -1 | awk '{print $3}') if [[ -z "$cgroup_path" ]]; then cgroup_path=/dev/cgroup/memory mount -t cgroup2 none $cgroup_path @@ -33,7 +33,7 @@ fi echo "+hugetlb" >$cgroup_path/cgroup.subtree_control else - cgroup_path=$(mount -t cgroup | grep ",hugetlb" | awk -e '{print $3}') + cgroup_path=$(mount -t cgroup | grep ",hugetlb" | awk '{print $3}') if [[ -z "$cgroup_path" ]]; then cgroup_path=/dev/cgroup/memory mount -t cgroup memory,hugetlb $cgroup_path diff -u linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/vm/hugetlb_reparenting_test.sh linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/vm/hugetlb_reparenting_test.sh --- linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/vm/hugetlb_reparenting_test.sh +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/vm/hugetlb_reparenting_test.sh @@ -20,7 +20,7 @@ if [[ $cgroup2 ]]; then - CGROUP_ROOT=$(mount -t cgroup2 | head -1 | awk -e '{print $3}') + CGROUP_ROOT=$(mount -t cgroup2 | head -1 | awk '{print $3}') if [[ -z "$CGROUP_ROOT" ]]; then CGROUP_ROOT=/dev/cgroup/memory mount -t cgroup2 none $CGROUP_ROOT @@ -28,7 +28,7 @@ fi echo "+hugetlb +memory" >$CGROUP_ROOT/cgroup.subtree_control else - CGROUP_ROOT=$(mount -t cgroup | grep ",hugetlb" | awk -e '{print $3}') + CGROUP_ROOT=$(mount -t cgroup | grep ",hugetlb" | awk '{print $3}') if [[ -z "$CGROUP_ROOT" ]]; then CGROUP_ROOT=/dev/cgroup/memory mount -t cgroup memory,hugetlb $CGROUP_ROOT reverted: --- linux-xilinx-zynqmp-5.15.0/update-dkms-versions +++ linux-xilinx-zynqmp-5.15.0.orig/update-dkms-versions @@ -1,195 +0,0 @@ -#!/bin/bash - -remote_repo='' -remote_branch='main' -sru_cycle= -while : -do - if [ "$1" = "--remote-repo" ]; then - remote_repo="$2" - shift 2 - - elif [ "$1" = "--remote-branch" ]; then - remote_branch="$2" - shift 2 - - elif [ "$1" = "--sru-cycle" ]; then - sru_cycle="$2" - shift 2 - - else - break - fi -done -if [ "$#" -ne 0 ]; then - { - echo "Usage: $0 []" - echo " --remote-repo " - echo " --sru-cycle " - } 1>&2 - exit 1 -fi - -default_sru_cycle() -{ - local tracking_bug - local version - - # Pick out the cycle from the tracking bug file. - if [ -f "$DEBIAN/tracking-bug" ]; then - read tracking_bug sru_cycle X <"$DEBIAN/tracking-bug" - fi - - if [ -z "$sru_cycle" ]; then - echo "$0: sru-cycle not found via debian/tracking-bug; specify --sru-cycle" 1>&2 - exit 1 - fi - - sru_cycle=$(echo "$sru_cycle" | sed -e 's/-[0-9][0-9]*$//' -e 's/^kernel-sru-cycle-//') - - #echo "default_sru_cycle: version<$version> sru_cycle<$sru_cycle>" -} - -# Determine where our changelog is. -DEBIAN=debian -[ -f 'debian/debian.env' ] && . 'debian/debian.env' - -[ -z "$sru_cycle" ] && default_sru_cycle -if [ -z "$remote_repo" ]; then - case "$sru_cycle" in - c[0-9][0-9][0-9][0-9].[0-9][0-9].[0-9][0-9]) - remote_repo='security' ;; - *) - remote_repo='main' ;; - esac -fi -case "$remote_repo" in -security) - remote_repo='ssh+git://git.launchpad.net/~canonical-kernel-security-team/canonical-kernel-private/+git/kernel-versions' - remote_name='security' - ;; -main) - remote_repo='git://git.launchpad.net/~canonical-kernel/+git/kernel-versions' - remote_name='main' - ;; -*) - remote_name='adhoc' - ;; -esac - -# -# kernel-versoins repository dkms-version mapping see below for details: -# https://git.launchpad.net/~canonical-kernel/+git/kernel-versions/plain/README -# -kv_repo="$HOME/.cache/kernel-versions-bare" - -# Now we know where our repo is and what it called update it. -# We maintain "persistent" remotes for main and security, but assume -# any manually supplied entries are transient. -( - [ ! -d "$kv_repo" ] && mkdir -p "$kv_repo" - cd "$kv_repo" || exit 1 - [ ! -f config ] && git init -q --bare - current_url=$(git config "remote.$remote_name.url") - if [ -z "$current_url" ]; then - git remote add "$remote_name" "$remote_repo" - elif [ "$current_url" != "$remote_repo" ]; then - git config "remote.$remote_name.url" "$remote_repo" - fi - git fetch -q -p "$remote_name" -) || exit 1 - -cat_file() -{ - (cd "$kv_repo" && git cat-file "$@") || exit 1 -} - -present=$(cat_file -t "$remote_name/$remote_branch:devel/" 2>/dev/null) -if [ "$present" ]; then - git_base_devel="$remote_name/$remote_branch:devel/" -else - 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. -present=$(cat_file -t "$git_base" 2>/dev/null) -if [ "$present" = "" ]; then - # If we don't have the cycle in the development cycle then - # fall back to master. - case "$sru_cycle" in - d*) git_base="$git_base_devel" ;; - *) echo "$sru_cycle: cycle not found in $remote_repo" 2>&1 - exit 1 - ;; - esac -fi - -# Determine our series and mainline version from our own changelog. -our_series=$(LC_ALL=C dpkg-parsechangelog -l"$DEBIAN/changelog" -SDistribution) -if [ "$our_series" = "UNRELEASED" ]; then - our_series=$(LC_ALL=C dpkg-parsechangelog -l"$DEBIAN/changelog" -o1 -c1 -SDistribution) -fi -our_mainline=$(LC_ALL=C dpkg-parsechangelog -l"$DEBIAN/changelog" -SVersion | sed -e 's/-.*//') -our_package=$(LC_ALL=C dpkg-parsechangelog -l"$DEBIAN/changelog" -SSource) -our_source=$(echo "$our_package" | sed -e 's/-restricted-modules//') -case "$our_package" in -linux-restricted-modules*) our_type="lrm" ;; -*) our_type="main" ;; -esac - -# Update rules are complex. We update development series kernels to the -# versions in development. For stable series we update versions against -# the series in which our prime kernel was built. This is expressed -# via the map/dkms-versions namespace. Attempt to map via our series -# and then our mainline-version. - -# Try and find a package specific dkms-versions fragment. Try: -# handle+type -# series+type -# mainline+type -# series - backwards compatibility -# 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" \ - "$our_mainline" -do - echo "II: trying $versions_path_tail ..." - versions_paths=$(echo $(cat_file -p "${git_base}map/dkms-versions/$versions_path_tail" 2>/dev/null)) - [ -n "$versions_paths" ] && break -done - -if [ -z "$versions_paths" ]; then - echo "$0: unable to identify dkms-versions mapping" 1>&2 - exit 1 -fi - -echo "git_base<$git_base> versions_paths<$versions_paths>" -echo "II: grabbing dkms-versions from $sru_cycle $versions_paths" - -: ">debian/dkms-versions.new" -for versions_path in $versions_paths -do - cat_file -p "$git_base$versions_path" >>"debian/dkms-versions.new" - if [ "$?" -ne 0 ]; then - echo "$0: unable to download an updated dkms-versions file" 1>&2 - exit 1 - fi -done -mv "debian/dkms-versions.new" "debian/dkms-versions" - -thing="debian/dkms-versions" -if ! git diff --exit-code -- "$thing" >/dev/null; then - git commit -m "UBUNTU: $thing -- update from kernel-versions ($git_human)" \ - -m "BugLink: https://bugs.launchpad.net/bugs/1786013" \ - -s -- "$thing" -else - echo "$thing: no changes from kernel-versions" -fi - -exit 0 reverted: --- linux-xilinx-zynqmp-5.15.0/update-version-dkms +++ linux-xilinx-zynqmp-5.15.0.orig/update-version-dkms @@ -1,4 +0,0 @@ -#!/bin/bash - -echo "EE: run update-dkms-versions after link-to-tracker" 1>&2 -exit 1 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/Documentation/ABI/testing/sysfs-bus-optee-devices +++ linux-xilinx-zynqmp-5.15.0/Documentation/ABI/testing/sysfs-bus-optee-devices @@ -6,3 +6,12 @@ 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. only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/Documentation/ABI/testing/sysfs-class-devfreq +++ linux-xilinx-zynqmp-5.15.0/Documentation/ABI/testing/sysfs-class-devfreq @@ -52,6 +52,9 @@ echo 0 > /sys/class/devfreq/.../trans_stat + If the transition table is bigger than PAGE_SIZE, reading + this will return an -EFBIG error. + What: /sys/class/devfreq/.../available_frequencies Date: October 2012 Contact: Nishanth Menon only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/Documentation/ABI/testing/sysfs-class-net-queues +++ linux-xilinx-zynqmp-5.15.0/Documentation/ABI/testing/sysfs-class-net-queues @@ -1,4 +1,4 @@ -What: /sys/class//queues/rx-/rps_cpus +What: /sys/class/net//queues/rx-/rps_cpus Date: March 2010 KernelVersion: 2.6.35 Contact: netdev@vger.kernel.org @@ -8,7 +8,7 @@ network device queue. Possible values depend on the number of available CPU(s) in the system. -What: /sys/class//queues/rx-/rps_flow_cnt +What: /sys/class/net//queues/rx-/rps_flow_cnt Date: April 2010 KernelVersion: 2.6.35 Contact: netdev@vger.kernel.org @@ -16,7 +16,7 @@ Number of Receive Packet Steering flows being currently processed by this particular network device receive queue. -What: /sys/class//queues/tx-/tx_timeout +What: /sys/class/net//queues/tx-/tx_timeout Date: November 2011 KernelVersion: 3.3 Contact: netdev@vger.kernel.org @@ -24,7 +24,7 @@ Indicates the number of transmit timeout events seen by this network interface transmit queue. -What: /sys/class//queues/tx-/tx_maxrate +What: /sys/class/net//queues/tx-/tx_maxrate Date: March 2015 KernelVersion: 4.1 Contact: netdev@vger.kernel.org @@ -32,7 +32,7 @@ A Mbps max-rate set for the queue, a value of zero means disabled, default is disabled. -What: /sys/class//queues/tx-/xps_cpus +What: /sys/class/net//queues/tx-/xps_cpus Date: November 2010 KernelVersion: 2.6.38 Contact: netdev@vger.kernel.org @@ -42,7 +42,7 @@ network device transmit queue. Possible vaules depend on the number of available CPU(s) in the system. -What: /sys/class//queues/tx-/xps_rxqs +What: /sys/class/net//queues/tx-/xps_rxqs Date: June 2018 KernelVersion: 4.18.0 Contact: netdev@vger.kernel.org @@ -53,7 +53,7 @@ number of available receive queue(s) in the network device. Default is disabled. -What: /sys/class//queues/tx-/byte_queue_limits/hold_time +What: /sys/class/net//queues/tx-/byte_queue_limits/hold_time Date: November 2011 KernelVersion: 3.3 Contact: netdev@vger.kernel.org @@ -62,7 +62,7 @@ of this particular network device transmit queue. Default value is 1000. -What: /sys/class//queues/tx-/byte_queue_limits/inflight +What: /sys/class/net//queues/tx-/byte_queue_limits/inflight Date: November 2011 KernelVersion: 3.3 Contact: netdev@vger.kernel.org @@ -70,7 +70,7 @@ Indicates the number of bytes (objects) in flight on this network device transmit queue. -What: /sys/class//queues/tx-/byte_queue_limits/limit +What: /sys/class/net//queues/tx-/byte_queue_limits/limit Date: November 2011 KernelVersion: 3.3 Contact: netdev@vger.kernel.org @@ -79,7 +79,7 @@ on this network device transmit queue. This value is clamped to be within the bounds defined by limit_max and limit_min. -What: /sys/class//queues/tx-/byte_queue_limits/limit_max +What: /sys/class/net//queues/tx-/byte_queue_limits/limit_max Date: November 2011 KernelVersion: 3.3 Contact: netdev@vger.kernel.org @@ -88,7 +88,7 @@ queued on this network device transmit queue. See include/linux/dynamic_queue_limits.h for the default value. -What: /sys/class//queues/tx-/byte_queue_limits/limit_min +What: /sys/class/net//queues/tx-/byte_queue_limits/limit_min Date: November 2011 KernelVersion: 3.3 Contact: netdev@vger.kernel.org only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/Documentation/ABI/testing/sysfs-class-net-statistics +++ linux-xilinx-zynqmp-5.15.0/Documentation/ABI/testing/sysfs-class-net-statistics @@ -1,4 +1,4 @@ -What: /sys/class//statistics/collisions +What: /sys/class/net//statistics/collisions Date: April 2005 KernelVersion: 2.6.12 Contact: netdev@vger.kernel.org @@ -6,7 +6,7 @@ Indicates the number of collisions seen by this network device. This value might not be relevant with all MAC layers. -What: /sys/class//statistics/multicast +What: /sys/class/net//statistics/multicast Date: April 2005 KernelVersion: 2.6.12 Contact: netdev@vger.kernel.org @@ -14,7 +14,7 @@ Indicates the number of multicast packets received by this network device. -What: /sys/class//statistics/rx_bytes +What: /sys/class/net//statistics/rx_bytes Date: April 2005 KernelVersion: 2.6.12 Contact: netdev@vger.kernel.org @@ -23,7 +23,7 @@ See the network driver for the exact meaning of when this value is incremented. -What: /sys/class//statistics/rx_compressed +What: /sys/class/net//statistics/rx_compressed Date: April 2005 KernelVersion: 2.6.12 Contact: netdev@vger.kernel.org @@ -32,7 +32,7 @@ network device. This value might only be relevant for interfaces that support packet compression (e.g: PPP). -What: /sys/class//statistics/rx_crc_errors +What: /sys/class/net//statistics/rx_crc_errors Date: April 2005 KernelVersion: 2.6.12 Contact: netdev@vger.kernel.org @@ -41,7 +41,7 @@ by this network device. Note that the specific meaning might depend on the MAC layer used by the interface. -What: /sys/class//statistics/rx_dropped +What: /sys/class/net//statistics/rx_dropped Date: April 2005 KernelVersion: 2.6.12 Contact: netdev@vger.kernel.org @@ -51,7 +51,7 @@ packet processing. See the network driver for the exact meaning of this value. -What: /sys/class//statistics/rx_errors +What: /sys/class/net//statistics/rx_errors Date: April 2005 KernelVersion: 2.6.12 Contact: netdev@vger.kernel.org @@ -59,7 +59,7 @@ Indicates the number of receive errors on this network device. See the network driver for the exact meaning of this value. -What: /sys/class//statistics/rx_fifo_errors +What: /sys/class/net//statistics/rx_fifo_errors Date: April 2005 KernelVersion: 2.6.12 Contact: netdev@vger.kernel.org @@ -68,7 +68,7 @@ network device. See the network driver for the exact meaning of this value. -What: /sys/class//statistics/rx_frame_errors +What: /sys/class/net//statistics/rx_frame_errors Date: April 2005 KernelVersion: 2.6.12 Contact: netdev@vger.kernel.org @@ -78,7 +78,7 @@ on the MAC layer protocol used. See the network driver for the exact meaning of this value. -What: /sys/class//statistics/rx_length_errors +What: /sys/class/net//statistics/rx_length_errors Date: April 2005 KernelVersion: 2.6.12 Contact: netdev@vger.kernel.org @@ -87,7 +87,7 @@ error, oversized or undersized. See the network driver for the exact meaning of this value. -What: /sys/class//statistics/rx_missed_errors +What: /sys/class/net//statistics/rx_missed_errors Date: April 2005 KernelVersion: 2.6.12 Contact: netdev@vger.kernel.org @@ -96,7 +96,7 @@ due to lack of capacity in the receive side. See the network driver for the exact meaning of this value. -What: /sys/class//statistics/rx_nohandler +What: /sys/class/net//statistics/rx_nohandler Date: February 2016 KernelVersion: 4.6 Contact: netdev@vger.kernel.org @@ -104,7 +104,7 @@ Indicates the number of received packets that were dropped on an inactive device by the network core. -What: /sys/class//statistics/rx_over_errors +What: /sys/class/net//statistics/rx_over_errors Date: April 2005 KernelVersion: 2.6.12 Contact: netdev@vger.kernel.org @@ -114,7 +114,7 @@ (e.g: larger than MTU). See the network driver for the exact meaning of this value. -What: /sys/class//statistics/rx_packets +What: /sys/class/net//statistics/rx_packets Date: April 2005 KernelVersion: 2.6.12 Contact: netdev@vger.kernel.org @@ -122,7 +122,7 @@ Indicates the total number of good packets received by this network device. -What: /sys/class//statistics/tx_aborted_errors +What: /sys/class/net//statistics/tx_aborted_errors Date: April 2005 KernelVersion: 2.6.12 Contact: netdev@vger.kernel.org @@ -132,7 +132,7 @@ a medium collision). See the network driver for the exact meaning of this value. -What: /sys/class//statistics/tx_bytes +What: /sys/class/net//statistics/tx_bytes Date: April 2005 KernelVersion: 2.6.12 Contact: netdev@vger.kernel.org @@ -143,7 +143,7 @@ transmitted packets or all packets that have been queued for transmission. -What: /sys/class//statistics/tx_carrier_errors +What: /sys/class/net//statistics/tx_carrier_errors Date: April 2005 KernelVersion: 2.6.12 Contact: netdev@vger.kernel.org @@ -152,7 +152,7 @@ because of carrier errors (e.g: physical link down). See the network driver for the exact meaning of this value. -What: /sys/class//statistics/tx_compressed +What: /sys/class/net//statistics/tx_compressed Date: April 2005 KernelVersion: 2.6.12 Contact: netdev@vger.kernel.org @@ -161,7 +161,7 @@ this might only be relevant for devices that support compression (e.g: PPP). -What: /sys/class//statistics/tx_dropped +What: /sys/class/net//statistics/tx_dropped Date: April 2005 KernelVersion: 2.6.12 Contact: netdev@vger.kernel.org @@ -170,7 +170,7 @@ See the driver for the exact reasons as to why the packets were dropped. -What: /sys/class//statistics/tx_errors +What: /sys/class/net//statistics/tx_errors Date: April 2005 KernelVersion: 2.6.12 Contact: netdev@vger.kernel.org @@ -179,7 +179,7 @@ a network device. See the driver for the exact reasons as to why the packets were dropped. -What: /sys/class//statistics/tx_fifo_errors +What: /sys/class/net//statistics/tx_fifo_errors Date: April 2005 KernelVersion: 2.6.12 Contact: netdev@vger.kernel.org @@ -188,7 +188,7 @@ FIFO error. See the driver for the exact reasons as to why the packets were dropped. -What: /sys/class//statistics/tx_heartbeat_errors +What: /sys/class/net//statistics/tx_heartbeat_errors Date: April 2005 KernelVersion: 2.6.12 Contact: netdev@vger.kernel.org @@ -197,7 +197,7 @@ reported as heartbeat errors. See the driver for the exact reasons as to why the packets were dropped. -What: /sys/class//statistics/tx_packets +What: /sys/class/net//statistics/tx_packets Date: April 2005 KernelVersion: 2.6.12 Contact: netdev@vger.kernel.org @@ -206,7 +206,7 @@ device. See the driver for whether this reports the number of all attempted or successful transmissions. -What: /sys/class//statistics/tx_window_errors +What: /sys/class/net//statistics/tx_window_errors Date: April 2005 KernelVersion: 2.6.12 Contact: netdev@vger.kernel.org only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/Documentation/devicetree/bindings/nvmem/mxs-ocotp.yaml +++ linux-xilinx-zynqmp-5.15.0/Documentation/devicetree/bindings/nvmem/mxs-ocotp.yaml @@ -14,9 +14,11 @@ properties: compatible: - enum: - - fsl,imx23-ocotp - - fsl,imx28-ocotp + items: + - enum: + - fsl,imx23-ocotp + - fsl,imx28-ocotp + - const: fsl,ocotp "#address-cells": const: 1 @@ -40,7 +42,7 @@ examples: - | ocotp: efuse@8002c000 { - compatible = "fsl,imx28-ocotp"; + compatible = "fsl,imx28-ocotp", "fsl,ocotp"; #address-cells = <1>; #size-cells = <1>; reg = <0x8002c000 0x2000>; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/Documentation/devicetree/bindings/w1/amd,axi-1wire-host.yaml +++ linux-xilinx-zynqmp-5.15.0/Documentation/devicetree/bindings/w1/amd,axi-1wire-host.yaml @@ -0,0 +1,44 @@ +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/w1/amd,axi-1wire-host.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: AMD AXI 1-wire bus host for programmable logic + +maintainers: + - Kris Chaplin + +properties: + compatible: + const: amd,axi-1wire-host + + reg: + maxItems: 1 + + clocks: + maxItems: 1 + + interrupts: + maxItems: 1 + +required: + - compatible + - reg + - clocks + - interrupts + +additionalProperties: false + +examples: + - | + #include + + onewire@a0000000 { + compatible = "amd,axi-1wire-host"; + reg = <0xa0000000 0x10000>; + clocks = <&zynqmp_clk 0x47>; + interrupts = ; + }; + +... only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/Documentation/filesystems/locking.rst +++ linux-xilinx-zynqmp-5.15.0/Documentation/filesystems/locking.rst @@ -98,7 +98,7 @@ mkdir: exclusive unlink: exclusive (both) rmdir: exclusive (both)(see below) -rename: exclusive (all) (see below) +rename: exclusive (both parents, some children) (see below) readlink: no get_link: no setattr: exclusive @@ -118,6 +118,9 @@ Additionally, ->rmdir(), ->unlink() and ->rename() have ->i_rwsem exclusive on victim. cross-directory ->rename() has (per-superblock) ->s_vfs_rename_sem. + ->unlink() and ->rename() have ->i_rwsem exclusive on all non-directories + involved. + ->rename() has ->i_rwsem exclusive on any subdirectory that changes parent. See Documentation/filesystems/directory-locking.rst for more detailed discussion of the locking scheme for directory operations. only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/Documentation/filesystems/porting.rst +++ linux-xilinx-zynqmp-5.15.0/Documentation/filesystems/porting.rst @@ -908,3 +908,21 @@ instead of passing mount and dentry separately. For callers that used to pass mnt_root> pair (i.e. the root of given mount), a new helper is provided - file_open_root_mnt(). In-tree users adjusted. + +--- + +**mandatory** + +If ->rename() update of .. on cross-directory move needs an exclusion with +directory modifications, do *not* lock the subdirectory in question in your +->rename() - it's done by the caller now [that item should've been added in +28eceeda130f "fs: Lock moved directories"]. + +--- + +**mandatory** + +On same-directory ->rename() the (tautological) update of .. is not protected +by any locks; just don't do it if the old parent is the same as the new one. +We really can't lock two subdirectories in same-directory rename - not without +deadlocks. only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/Documentation/process/howto.rst +++ linux-xilinx-zynqmp-5.15.0/Documentation/process/howto.rst @@ -36,7 +36,7 @@ - "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 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/Documentation/sound/soc/dapm.rst +++ linux-xilinx-zynqmp-5.15.0/Documentation/sound/soc/dapm.rst @@ -234,7 +234,7 @@ a virtual widget - a widget with no control bits e.g. :: - SND_SOC_DAPM_MIXER("AC97 Mixer", SND_SOC_DAPM_NOPM, 0, 0, NULL, 0), + SND_SOC_DAPM_MIXER("AC97 Mixer", SND_SOC_NOPM, 0, 0, NULL, 0), This can be used to merge to signal paths together in software. only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/Documentation/translations/it_IT/process/howto.rst +++ linux-xilinx-zynqmp-5.15.0/Documentation/translations/it_IT/process/howto.rst @@ -44,7 +44,7 @@ - "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. only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/Documentation/translations/ja_JP/howto.rst +++ linux-xilinx-zynqmp-5.15.0/Documentation/translations/ja_JP/howto.rst @@ -65,7 +65,7 @@ - 『新・詳説 C 言語 H&S リファレンス』 (サミュエル P ハービソン/ガイ L スティール共著 斉藤 信男監訳)[ソフトバンク] カーネルは GNU C と GNU ツールチェインを使って書かれています。カーネル -は ISO C89 仕様に準拠して書く一方で、標準には無い言語拡張を多く使って +は ISO C11 仕様に準拠して書く一方で、標準には無い言語拡張を多く使って います。カーネルは標準 C ライブラリに依存しない、C 言語非依存環境です。 そのため、C の標準の中で使えないものもあります。特に任意の long long の除算や浮動小数点は使えません。カーネルがツールチェインや C 言語拡張 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/Documentation/translations/ko_KR/howto.rst +++ linux-xilinx-zynqmp-5.15.0/Documentation/translations/ko_KR/howto.rst @@ -62,7 +62,7 @@ - "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는 지원되지 않는다. only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/Documentation/translations/zh_CN/process/howto.rst +++ linux-xilinx-zynqmp-5.15.0/Documentation/translations/zh_CN/process/howto.rst @@ -45,7 +45,7 @@ - "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类型的大数除法和浮点运算就不允许 使用。有时候确实很难弄清楚内核对工具链的要求和它所使用的扩展,不幸的是目 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/Documentation/translations/zh_TW/process/howto.rst +++ linux-xilinx-zynqmp-5.15.0/Documentation/translations/zh_TW/process/howto.rst @@ -48,7 +48,7 @@ - "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類型的大數除法和浮點運算就不允許 使用。有時候確實很難弄清楚內核對工具鏈的要求和它所使用的擴展,不幸的是目 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arc/kernel/signal.c +++ linux-xilinx-zynqmp-5.15.0/arch/arc/kernel/signal.c @@ -61,7 +61,7 @@ unsigned int sigret_magic; }; -static int save_arcv2_regs(struct sigcontext *mctx, struct pt_regs *regs) +static int save_arcv2_regs(struct sigcontext __user *mctx, struct pt_regs *regs) { int err = 0; #ifndef CONFIG_ISA_ARCOMPACT @@ -74,12 +74,12 @@ #else v2abi.r58 = v2abi.r59 = 0; #endif - err = __copy_to_user(&mctx->v2abi, &v2abi, sizeof(v2abi)); + err = __copy_to_user(&mctx->v2abi, (void const *)&v2abi, sizeof(v2abi)); #endif return err; } -static int restore_arcv2_regs(struct sigcontext *mctx, struct pt_regs *regs) +static int restore_arcv2_regs(struct sigcontext __user *mctx, struct pt_regs *regs) { int err = 0; #ifndef CONFIG_ISA_ARCOMPACT only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arc/mm/init.c +++ linux-xilinx-zynqmp-5.15.0/arch/arc/mm/init.c @@ -59,13 +59,13 @@ low_mem_sz = size; in_use = 1; - memblock_add_node(base, size, 0); + memblock_add_node(base, size, 0, MEMBLOCK_NONE); } else { #ifdef CONFIG_HIGHMEM high_mem_start = base; high_mem_sz = size; in_use = 1; - memblock_add_node(base, size, 1); + memblock_add_node(base, size, 1, MEMBLOCK_NONE); memblock_reserve(base, size); #endif } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm/boot/dts/imx1-ads.dts +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx1-ads.dts @@ -65,7 +65,7 @@ pinctrl-0 = <&pinctrl_weim>; status = "okay"; - nor: nor@0,0 { + nor: flash@0,0 { compatible = "cfi-flash"; reg = <0 0x00000000 0x02000000>; bank-width = <4>; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm/boot/dts/imx1-apf9328.dts +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx1-apf9328.dts @@ -45,7 +45,7 @@ pinctrl-0 = <&pinctrl_weim>; status = "okay"; - nor: nor@0,0 { + nor: flash@0,0 { compatible = "cfi-flash"; reg = <0 0x00000000 0x02000000>; bank-width = <2>; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm/boot/dts/imx1.dtsi +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx1.dtsi @@ -268,9 +268,12 @@ status = "disabled"; }; - esram: esram@300000 { + esram: sram@300000 { compatible = "mmio-sram"; reg = <0x00300000 0x20000>; + ranges = <0 0x00300000 0x20000>; + #address-cells = <1>; + #size-cells = <1>; }; }; }; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm/boot/dts/imx23-sansa.dts +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx23-sansa.dts @@ -175,10 +175,8 @@ #address-cells = <1>; #size-cells = <0>; compatible = "i2c-gpio"; - gpios = < - &gpio1 24 0 /* SDA */ - &gpio1 22 0 /* SCL */ - >; + sda-gpios = <&gpio1 24 0>; + scl-gpios = <&gpio1 22 0>; i2c-gpio,delay-us = <2>; /* ~100 kHz */ }; @@ -186,10 +184,8 @@ #address-cells = <1>; #size-cells = <0>; compatible = "i2c-gpio"; - gpios = < - &gpio0 31 0 /* SDA */ - &gpio0 30 0 /* SCL */ - >; + sda-gpios = <&gpio0 31 0>; + scl-gpios = <&gpio0 30 0>; i2c-gpio,delay-us = <2>; /* ~100 kHz */ touch: touch@20 { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm/boot/dts/imx25-eukrea-cpuimx25.dtsi +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx25-eukrea-cpuimx25.dtsi @@ -27,7 +27,7 @@ pinctrl-0 = <&pinctrl_i2c1>; status = "okay"; - pcf8563@51 { + rtc@51 { compatible = "nxp,pcf8563"; reg = <0x51>; }; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm/boot/dts/imx25-eukrea-mbimxsd25-baseboard-cmo-qvga.dts +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx25-eukrea-mbimxsd25-baseboard-cmo-qvga.dts @@ -16,7 +16,7 @@ bus-width = <18>; display-timings { native-mode = <&qvga_timings>; - qvga_timings: 320x240 { + qvga_timings: timing0 { clock-frequency = <6500000>; hactive = <320>; vactive = <240>; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm/boot/dts/imx25-eukrea-mbimxsd25-baseboard-dvi-svga.dts +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx25-eukrea-mbimxsd25-baseboard-dvi-svga.dts @@ -16,7 +16,7 @@ bus-width = <18>; display-timings { native-mode = <&dvi_svga_timings>; - dvi_svga_timings: 800x600 { + dvi_svga_timings: timing0 { clock-frequency = <40000000>; hactive = <800>; vactive = <600>; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm/boot/dts/imx25-eukrea-mbimxsd25-baseboard-dvi-vga.dts +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx25-eukrea-mbimxsd25-baseboard-dvi-vga.dts @@ -16,7 +16,7 @@ bus-width = <18>; display-timings { native-mode = <&dvi_vga_timings>; - dvi_vga_timings: 640x480 { + dvi_vga_timings: timing0 { clock-frequency = <31250000>; hactive = <640>; vactive = <480>; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm/boot/dts/imx25-pdk.dts +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx25-pdk.dts @@ -78,7 +78,7 @@ bus-width = <18>; display-timings { native-mode = <&wvga_timings>; - wvga_timings: 640x480 { + wvga_timings: timing0 { hactive = <640>; vactive = <480>; hback-porch = <45>; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm/boot/dts/imx27-apf27dev.dts +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx27-apf27dev.dts @@ -16,7 +16,7 @@ fsl,pcr = <0xfae80083>; /* non-standard but required */ display-timings { native-mode = <&timing0>; - timing0: 800x480 { + timing0: timing0 { clock-frequency = <33000033>; hactive = <800>; vactive = <480>; @@ -47,7 +47,7 @@ pinctrl-names = "default"; pinctrl-0 = <&pinctrl_gpio_leds>; - user { + led-user { label = "Heartbeat"; gpios = <&gpio6 14 GPIO_ACTIVE_HIGH>; linux,default-trigger = "heartbeat"; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm/boot/dts/imx27-eukrea-cpuimx27.dtsi +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx27-eukrea-cpuimx27.dtsi @@ -33,7 +33,7 @@ pinctrl-0 = <&pinctrl_i2c1>; status = "okay"; - pcf8563@51 { + rtc@51 { compatible = "nxp,pcf8563"; reg = <0x51>; }; @@ -90,7 +90,7 @@ &weim { status = "okay"; - nor: nor@0,0 { + nor: flash@0,0 { #address-cells = <1>; #size-cells = <1>; compatible = "cfi-flash"; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm/boot/dts/imx27-eukrea-mbimxsd27-baseboard.dts +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx27-eukrea-mbimxsd27-baseboard.dts @@ -16,7 +16,7 @@ display-timings { native-mode = <&timing0>; - timing0: 320x240 { + timing0: timing0 { clock-frequency = <6500000>; hactive = <320>; vactive = <240>; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm/boot/dts/imx27-phytec-phycard-s-rdk.dts +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx27-phytec-phycard-s-rdk.dts @@ -19,7 +19,7 @@ fsl,pcr = <0xf0c88080>; /* non-standard but required */ display-timings { native-mode = <&timing0>; - timing0: 640x480 { + timing0: timing0 { hactive = <640>; vactive = <480>; hback-porch = <112>; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm/boot/dts/imx27-phytec-phycore-rdk.dts +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx27-phytec-phycore-rdk.dts @@ -19,7 +19,7 @@ display-timings { native-mode = <&timing0>; - timing0: 240x320 { + timing0: timing0 { clock-frequency = <5500000>; hactive = <240>; vactive = <320>; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm/boot/dts/imx27-phytec-phycore-som.dtsi +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx27-phytec-phycore-som.dtsi @@ -322,7 +322,7 @@ &weim { status = "okay"; - nor: nor@0,0 { + nor: flash@0,0 { compatible = "cfi-flash"; reg = <0 0x00000000 0x02000000>; bank-width = <2>; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm/boot/dts/imx27.dtsi +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx27.dtsi @@ -588,6 +588,9 @@ iram: sram@ffff4c00 { compatible = "mmio-sram"; reg = <0xffff4c00 0xb400>; + ranges = <0 0xffff4c00 0xb400>; + #address-cells = <1>; + #size-cells = <1>; }; }; }; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm/boot/dts/imx28-xea.dts +++ linux-xilinx-zynqmp-5.15.0/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"; }; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm/boot/dts/imx6ul-pico.dtsi +++ linux-xilinx-zynqmp-5.15.0/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"; }; }; }; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm/boot/dts/imx7d.dtsi +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/imx7d.dtsi @@ -209,9 +209,6 @@ }; &ca_funnel_in_ports { - #address-cells = <1>; - #size-cells = <0>; - port@1 { reg = <1>; ca_funnel_in_port1: endpoint { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm/boot/dts/r8a7792-blanche.dts +++ linux-xilinx-zynqmp-5.15.0/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; }; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm/boot/dts/rk3036.dtsi +++ linux-xilinx-zynqmp-5.15.0/arch/arm/boot/dts/rk3036.dtsi @@ -402,12 +402,20 @@ pinctrl-0 = <&hdmi_ctl>; status = "disabled"; - hdmi_in: port { + ports { #address-cells = <1>; #size-cells = <0>; - hdmi_in_vop: endpoint@0 { + + hdmi_in: port@0 { reg = <0>; - remote-endpoint = <&vop_out_hdmi>; + + hdmi_in_vop: endpoint { + remote-endpoint = <&vop_out_hdmi>; + }; + }; + + hdmi_out: port@1 { + reg = <1>; }; }; }; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm/include/asm/exception.h +++ linux-xilinx-zynqmp-5.15.0/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 */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm/lib/memset.S +++ linux-xilinx-zynqmp-5.15.0/arch/arm/lib/memset.S @@ -17,6 +17,7 @@ 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 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm/mach-davinci/Kconfig +++ linux-xilinx-zynqmp-5.15.0/arch/arm/mach-davinci/Kconfig @@ -3,12 +3,14 @@ menuconfig ARCH_DAVINCI bool "TI DaVinci" depends on ARCH_MULTI_V5 + select CPU_ARM926T select DAVINCI_TIMER select ZONE_DMA select PM_GENERIC_DOMAINS if PM select PM_GENERIC_DOMAINS_OF if PM && OF select REGMAP_MMIO select RESET_CONTROLLER + select PINCTRL select PINCTRL_SINGLE if ARCH_DAVINCI only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm/mach-omap2/id.c +++ linux-xilinx-zynqmp-5.15.0/arch/arm/mach-omap2/id.c @@ -793,11 +793,16 @@ soc_dev_attr->machine = soc_name; soc_dev_attr->family = omap_get_family(); + if (!soc_dev_attr->family) { + kfree(soc_dev_attr); + return; + } soc_dev_attr->revision = soc_rev; soc_dev_attr->custom_attr_group = omap_soc_groups[0]; soc_dev = soc_device_register(soc_dev_attr); if (IS_ERR(soc_dev)) { + kfree(soc_dev_attr->family); kfree(soc_dev_attr); return; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm/mach-sunxi/mc_smp.c +++ linux-xilinx-zynqmp-5.15.0/arch/arm/mach-sunxi/mc_smp.c @@ -804,16 +804,16 @@ for (i = 0; i < ARRAY_SIZE(sunxi_mc_smp_data); i++) { ret = of_property_match_string(node, "enable-method", sunxi_mc_smp_data[i].enable_method); - if (!ret) + if (ret >= 0) break; } - is_a83t = sunxi_mc_smp_data[i].is_a83t; - of_node_put(node); - if (ret) + if (ret < 0) return -ENODEV; + is_a83t = sunxi_mc_smp_data[i].is_a83t; + if (!sunxi_mc_smp_cpu_table_init()) return -EINVAL; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm/xen/enlighten.c +++ linux-xilinx-zynqmp-5.15.0/arch/arm/xen/enlighten.c @@ -159,9 +159,6 @@ 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 @@ * 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 @@ 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 @@ } 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 @@ 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 */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm64/boot/dts/freescale/imx8qm-ss-img.dtsi +++ linux-xilinx-zynqmp-5.15.0/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"; }; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm64/boot/dts/marvell/cn9130-crb.dtsi +++ linux-xilinx-zynqmp-5.15.0/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"; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm64/boot/dts/marvell/cn9130-db.dtsi +++ linux-xilinx-zynqmp-5.15.0/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"; }; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm64/boot/dts/mediatek/mt7622-rfb1.dts +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/mediatek/mt7622-rfb1.dts @@ -55,7 +55,7 @@ }; }; - memory { + memory@40000000 { reg = <0 0x40000000 0 0x20000000>; }; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm64/boot/dts/mediatek/mt8173-evb.dts +++ linux-xilinx-zynqmp-5.15.0/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>; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm64/boot/dts/mediatek/mt8173.dtsi +++ linux-xilinx-zynqmp-5.15.0/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 */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm64/boot/dts/mediatek/mt8183-evb.dts +++ linux-xilinx-zynqmp-5.15.0/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 = , , , only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm64/boot/dts/mediatek/mt8183-kukui-jacuzzi.dtsi +++ linux-xilinx-zynqmp-5.15.0/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 */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm64/boot/dts/mediatek/mt8183-pumpkin.dts +++ linux-xilinx-zynqmp-5.15.0/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>; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm64/boot/dts/qcom/sdm845-mtp.dts +++ linux-xilinx-zynqmp-5.15.0/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 */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm64/boot/dts/qcom/sm8150-hdk.dts +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/boot/dts/qcom/sm8150-hdk.dts @@ -126,8 +126,6 @@ vdda_sp_sensor: vdda_ufs_2ln_core_1: vdda_ufs_2ln_core_2: - vdda_usb_ss_dp_core_1: - vdda_usb_ss_dp_core_2: vdda_qlink_lv: vdda_qlink_lv_ck: vreg_l5a_0p875: ldo5 { @@ -209,6 +207,12 @@ regulator-max-microvolt = <3008000>; regulator-initial-mode = ; }; + + vreg_l18a_0p8: ldo18 { + regulator-min-microvolt = <880000>; + regulator-max-microvolt = <880000>; + regulator-initial-mode = ; + }; }; pm8150l-rpmh-regulators { @@ -441,13 +445,13 @@ &usb_1_qmpphy { status = "okay"; vdda-phy-supply = <&vreg_l3c_1p2>; - vdda-pll-supply = <&vdda_usb_ss_dp_core_1>; + vdda-pll-supply = <&vreg_l18a_0p8>; }; &usb_2_qmpphy { status = "okay"; vdda-phy-supply = <&vreg_l3c_1p2>; - vdda-pll-supply = <&vdda_usb_ss_dp_core_1>; + vdda-pll-supply = <&vreg_l5a_0p875>; }; &usb_1 { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm64/include/asm/irq_work.h +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/include/asm/irq_work.h @@ -2,8 +2,6 @@ #ifndef __ASM_IRQ_WORK_H #define __ASM_IRQ_WORK_H -extern void arch_irq_work_raise(void); - static inline bool arch_irq_work_has_interrupt(void) { return true; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm64/include/asm/kvm_pgtable.h +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/include/asm/kvm_pgtable.h @@ -13,6 +13,18 @@ #define KVM_PGTABLE_MAX_LEVELS 4U +/* + * The largest supported block sizes for KVM (no 52-bit PA support): + * - 4K (level 1): 1GB + * - 16K (level 2): 32MB + * - 64K (level 2): 512MB + */ +#ifdef CONFIG_ARM64_4K_PAGES +#define KVM_PGTABLE_MIN_BLOCK_LEVEL 1U +#else +#define KVM_PGTABLE_MIN_BLOCK_LEVEL 2U +#endif + static inline u64 kvm_get_parange(u64 mmfr0) { u64 parange = cpuid_feature_extract_unsigned_field(mmfr0, @@ -58,11 +70,7 @@ static inline bool kvm_level_supports_block_mapping(u32 level) { - /* - * Reject invalid block mappings and don't bother with 4TB mappings for - * 52-bit PAs. - */ - return !(level == 0 || (PAGE_SIZE != SZ_4K && level == 1)); + return level >= KVM_PGTABLE_MIN_BLOCK_LEVEL; } /** only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm64/include/asm/stage2_pgtable.h +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/include/asm/stage2_pgtable.h @@ -11,13 +11,6 @@ #include /* - * PGDIR_SHIFT determines the size a top-level page table entry can map - * and depends on the number of levels in the page table. Compute the - * PGDIR_SHIFT for a given number of levels. - */ -#define pt_levels_pgdir_shift(lvls) ARM64_HW_PGTABLE_LEVEL_SHIFT(4 - (lvls)) - -/* * The hardware supports concatenation of up to 16 tables at stage2 entry * level and we use the feature whenever possible, which means we resolve 4 * additional bits of address at the entry level. @@ -30,11 +23,6 @@ #define stage2_pgtable_levels(ipa) ARM64_HW_PGTABLE_LEVELS((ipa) - 4) #define kvm_stage2_levels(kvm) VTCR_EL2_LVLS(kvm->arch.vtcr) -/* stage2_pgdir_shift() is the size mapped by top-level stage2 entry for the VM */ -#define stage2_pgdir_shift(kvm) pt_levels_pgdir_shift(kvm_stage2_levels(kvm)) -#define stage2_pgdir_size(kvm) (1ULL << stage2_pgdir_shift(kvm)) -#define stage2_pgdir_mask(kvm) ~(stage2_pgdir_size(kvm) - 1) - /* * kvm_mmmu_cache_min_pages() is the number of pages required to install * a stage-2 translation. We pre-allocate the entry level page table at @@ -42,12 +30,4 @@ */ #define kvm_mmu_cache_min_pages(kvm) (kvm_stage2_levels(kvm) - 1) -static inline phys_addr_t -stage2_pgd_addr_end(struct kvm *kvm, phys_addr_t addr, phys_addr_t end) -{ - phys_addr_t boundary = (addr + stage2_pgdir_size(kvm)) & stage2_pgdir_mask(kvm); - - return (boundary - 1 < end - 1) ? boundary : end; -} - #endif /* __ARM64_S2_PGTABLE_H_ */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm64/kernel/perf_event.c +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/kernel/perf_event.c @@ -168,7 +168,11 @@ PMU_EVENT_ATTR_ID(name, armv8pmu_events_sysfs_show, config) static struct attribute *armv8_pmuv3_event_attrs[] = { - ARMV8_EVENT_ATTR(sw_incr, ARMV8_PMUV3_PERFCTR_SW_INCR), + /* + * Don't expose the sw_incr event in /sys. It's not usable as writes to + * PMSWINC_EL0 will trap as PMUSERENR.{SW,EN}=={0,0} and event rotation + * means we don't have a fixed event<->counter relationship regardless. + */ ARMV8_EVENT_ATTR(l1i_cache_refill, ARMV8_PMUV3_PERFCTR_L1I_CACHE_REFILL), ARMV8_EVENT_ATTR(l1i_tlb_refill, ARMV8_PMUV3_PERFCTR_L1I_TLB_REFILL), ARMV8_EVENT_ATTR(l1d_cache_refill, ARMV8_PMUV3_PERFCTR_L1D_CACHE_REFILL), only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm64/kvm/vgic/vgic-init.c +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/kvm/vgic/vgic-init.c @@ -363,7 +363,10 @@ vgic_flush_pending_lpis(vcpu); INIT_LIST_HEAD(&vgic_cpu->ap_list_head); - vgic_cpu->rd_iodev.base_addr = VGIC_ADDR_UNDEF; + if (vcpu->kvm->arch.vgic.vgic_model == KVM_DEV_TYPE_ARM_VGIC_V3) { + vgic_unregister_redist_iodev(vcpu); + vgic_cpu->rd_iodev.base_addr = VGIC_ADDR_UNDEF; + } } /* To be called with kvm->lock held */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/arm64/kvm/vgic/vgic-mmio-v3.c +++ linux-xilinx-zynqmp-5.15.0/arch/arm64/kvm/vgic/vgic-mmio-v3.c @@ -363,19 +363,26 @@ struct vgic_irq *irq = vgic_get_irq(vcpu->kvm, vcpu, intid + i); raw_spin_lock_irqsave(&irq->irq_lock, flags); - if (test_bit(i, &val)) { - /* - * pending_latch is set irrespective of irq type - * (level or edge) to avoid dependency that VM should - * restore irq config before pending info. - */ - irq->pending_latch = true; - vgic_queue_irq_unlock(vcpu->kvm, irq, flags); - } else { + + /* + * pending_latch is set irrespective of irq type + * (level or edge) to avoid dependency that VM should + * restore irq config before pending info. + */ + irq->pending_latch = test_bit(i, &val); + + if (irq->hw && vgic_irq_is_sgi(irq->intid)) { + irq_set_irqchip_state(irq->host_irq, + IRQCHIP_STATE_PENDING, + irq->pending_latch); irq->pending_latch = false; - raw_spin_unlock_irqrestore(&irq->irq_lock, flags); } + if (irq->pending_latch) + vgic_queue_irq_unlock(vcpu->kvm, irq, flags); + else + raw_spin_unlock_irqrestore(&irq->irq_lock, flags); + vgic_put_irq(vcpu->kvm, irq); } @@ -744,7 +751,7 @@ return 0; } -static void vgic_unregister_redist_iodev(struct kvm_vcpu *vcpu) +void vgic_unregister_redist_iodev(struct kvm_vcpu *vcpu) { struct vgic_io_device *rd_dev = &vcpu->arch.vgic_cpu.rd_iodev; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/csky/include/asm/irq_work.h +++ linux-xilinx-zynqmp-5.15.0/arch/csky/include/asm/irq_work.h @@ -7,5 +7,5 @@ { return true; } -extern void arch_irq_work_raise(void); + #endif /* __ASM_CSKY_IRQ_WORK_H */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/ia64/mm/init.c +++ linux-xilinx-zynqmp-5.15.0/arch/ia64/mm/init.c @@ -378,7 +378,7 @@ #endif if (start < end) - memblock_add_node(__pa(start), end - start, nid); + memblock_add_node(__pa(start), end - start, nid, MEMBLOCK_NONE); return 0; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/m68k/mm/mcfmmu.c +++ linux-xilinx-zynqmp-5.15.0/arch/m68k/mm/mcfmmu.c @@ -174,7 +174,8 @@ m68k_memory[0].addr = _rambase; m68k_memory[0].size = _ramend - _rambase; - memblock_add_node(m68k_memory[0].addr, m68k_memory[0].size, 0); + memblock_add_node(m68k_memory[0].addr, m68k_memory[0].size, 0, + MEMBLOCK_NONE); /* compute total pages in system */ num_pages = PFN_DOWN(_ramend - _rambase); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/m68k/mm/motorola.c +++ linux-xilinx-zynqmp-5.15.0/arch/m68k/mm/motorola.c @@ -410,7 +410,8 @@ min_addr = m68k_memory[0].addr; max_addr = min_addr + m68k_memory[0].size; - memblock_add_node(m68k_memory[0].addr, m68k_memory[0].size, 0); + memblock_add_node(m68k_memory[0].addr, m68k_memory[0].size, 0, + MEMBLOCK_NONE); for (i = 1; i < m68k_num_memory;) { if (m68k_memory[i].addr < min_addr) { printk("Ignoring memory chunk at 0x%lx:0x%lx before the first chunk\n", @@ -421,7 +422,8 @@ (m68k_num_memory - i) * sizeof(struct m68k_mem_info)); continue; } - memblock_add_node(m68k_memory[i].addr, m68k_memory[i].size, i); + memblock_add_node(m68k_memory[i].addr, m68k_memory[i].size, i, + MEMBLOCK_NONE); addr = m68k_memory[i].addr + m68k_memory[i].size; if (addr > max_addr) max_addr = addr; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/mips/alchemy/devboards/db1550.c +++ linux-xilinx-zynqmp-5.15.0/arch/mips/alchemy/devboards/db1550.c @@ -588,7 +588,7 @@ i2c_register_board_info(0, db1550_i2c_devs, ARRAY_SIZE(db1550_i2c_devs)); spi_register_board_info(db1550_spi_devs, - ARRAY_SIZE(db1550_i2c_devs)); + ARRAY_SIZE(db1550_spi_devs)); c = clk_get(NULL, "psc0_intclk"); if (!IS_ERR(c)) { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/mips/boot/dts/loongson/loongson64-2k1000.dtsi +++ linux-xilinx-zynqmp-5.15.0/arch/mips/boot/dts/loongson/loongson64-2k1000.dtsi @@ -118,8 +118,7 @@ compatible = "pci0014,7a03.0", "pci0014,7a03", "pciclass0c0320", - "pciclass0c03", - "loongson, pci-gmac"; + "pciclass0c03"; reg = <0x1800 0x0 0x0 0x0 0x0>; interrupts = <12 IRQ_TYPE_LEVEL_LOW>, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/mips/boot/dts/loongson/ls7a-pch.dtsi +++ linux-xilinx-zynqmp-5.15.0/arch/mips/boot/dts/loongson/ls7a-pch.dtsi @@ -186,8 +186,7 @@ compatible = "pci0014,7a03.0", "pci0014,7a03", "pciclass020000", - "pciclass0200", - "loongson, pci-gmac"; + "pciclass0200"; reg = <0x1800 0x0 0x0 0x0 0x0>; interrupts = <12 IRQ_TYPE_LEVEL_HIGH>, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/mips/include/asm/checksum.h +++ linux-xilinx-zynqmp-5.15.0/arch/mips/include/asm/checksum.h @@ -244,7 +244,8 @@ " .set pop" : "=&r" (sum), "=&r" (tmp) : "r" (saddr), "r" (daddr), - "0" (htonl(len)), "r" (htonl(proto)), "r" (sum)); + "0" (htonl(len)), "r" (htonl(proto)), "r" (sum) + : "memory"); return csum_fold(sum); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/mips/include/asm/dmi.h +++ linux-xilinx-zynqmp-5.15.0/arch/mips/include/asm/dmi.h @@ -5,7 +5,7 @@ #include #include -#define dmi_early_remap(x, l) ioremap_cache(x, l) +#define dmi_early_remap(x, l) ioremap(x, l) #define dmi_early_unmap(x, l) iounmap(x) #define dmi_remap(x, l) ioremap_cache(x, l) #define dmi_unmap(x) iounmap(x) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/mips/include/asm/mach-loongson64/boot_param.h +++ linux-xilinx-zynqmp-5.15.0/arch/mips/include/asm/mach-loongson64/boot_param.h @@ -14,7 +14,11 @@ #define ADAPTER_ROM 8 #define ACPI_TABLE 9 #define SMBIOS_TABLE 10 -#define MAX_MEMORY_TYPE 11 +#define UMA_VIDEO_RAM 11 +#define VUMA_VIDEO_RAM 12 +#define MAX_MEMORY_TYPE 13 + +#define MEM_SIZE_IS_IN_BYTES (1 << 31) #define LOONGSON3_BOOT_MEM_MAP_MAX 128 struct efi_memory_map_loongson { @@ -117,7 +121,8 @@ 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 { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/mips/kernel/elf.c +++ linux-xilinx-zynqmp-5.15.0/arch/mips/kernel/elf.c @@ -11,6 +11,7 @@ #include #include +#include #ifdef CONFIG_MIPS_FP_SUPPORT @@ -309,6 +310,11 @@ struct cpuinfo_mips *c = &boot_cpu_data; struct task_struct *t = current; + /* Do this early so t->thread.fpu.fcr31 won't be clobbered in case + * we are preempted before the lose_fpu(0) in start_thread. + */ + lose_fpu(0); + t->thread.fpu.fcr31 = c->fpu_csr31; switch (state->nan_2008) { case 0: only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/mips/kvm/mmu.c +++ linux-xilinx-zynqmp-5.15.0/arch/mips/kvm/mmu.c @@ -593,7 +593,7 @@ 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 @@ entry = pfn_pte(pfn, __pgprot(prot_bits)); /* Write the PTE */ - old_pte = *ptep; set_pte(ptep, entry); err = 0; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/mips/loongson64/env.c +++ linux-xilinx-zynqmp-5.15.0/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 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/mips/loongson64/init.c +++ linux-xilinx-zynqmp-5.15.0/arch/mips/loongson64/init.c @@ -49,8 +49,7 @@ void __init szmem(unsigned int node) { u32 i, mem_type; - static unsigned long num_physpages; - u64 node_id, node_psize, start_pfn, end_pfn, mem_start, mem_size; + phys_addr_t node_id, mem_start, mem_size; /* Otherwise come from DTB */ if (loongson_sysconf.fw_interface != LOONGSON_LEFI) @@ -64,28 +63,46 @@ mem_type = loongson_memmap->map[i].mem_type; mem_size = loongson_memmap->map[i].mem_size; - mem_start = loongson_memmap->map[i].mem_start; + + /* Memory size comes in MB if MEM_SIZE_IS_IN_BYTES not set */ + if (mem_size & MEM_SIZE_IS_IN_BYTES) + mem_size &= ~MEM_SIZE_IS_IN_BYTES; + else + mem_size = mem_size << 20; + + mem_start = (node_id << 44) | loongson_memmap->map[i].mem_start; switch (mem_type) { case SYSTEM_RAM_LOW: case SYSTEM_RAM_HIGH: - start_pfn = ((node_id << 44) + mem_start) >> PAGE_SHIFT; - node_psize = (mem_size << 20) >> PAGE_SHIFT; - end_pfn = start_pfn + node_psize; - num_physpages += node_psize; - pr_info("Node%d: mem_type:%d, mem_start:0x%llx, mem_size:0x%llx MB\n", - (u32)node_id, mem_type, mem_start, mem_size); - pr_info(" start_pfn:0x%llx, end_pfn:0x%llx, num_physpages:0x%lx\n", - start_pfn, end_pfn, num_physpages); - memblock_add_node(PFN_PHYS(start_pfn), PFN_PHYS(node_psize), node); + case UMA_VIDEO_RAM: + pr_info("Node %d, mem_type:%d\t[%pa], %pa bytes usable\n", + (u32)node_id, mem_type, &mem_start, &mem_size); + memblock_add_node(mem_start, mem_size, node, + MEMBLOCK_NONE); break; case SYSTEM_RAM_RESERVED: - pr_info("Node%d: mem_type:%d, mem_start:0x%llx, mem_size:0x%llx MB\n", - (u32)node_id, mem_type, mem_start, mem_size); - memblock_reserve(((node_id << 44) + mem_start), mem_size << 20); + case VIDEO_ROM: + case ADAPTER_ROM: + case ACPI_TABLE: + case SMBIOS_TABLE: + pr_info("Node %d, mem_type:%d\t[%pa], %pa bytes reserved\n", + (u32)node_id, mem_type, &mem_start, &mem_size); + memblock_reserve(mem_start, mem_size); + break; + /* We should not reserve VUMA_VIDEO_RAM as it overlaps with MMIO */ + case VUMA_VIDEO_RAM: + default: + pr_info("Node %d, mem_type:%d\t[%pa], %pa bytes unhandled\n", + (u32)node_id, mem_type, &mem_start, &mem_size); 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 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/mips/mm/init.c +++ linux-xilinx-zynqmp-5.15.0/arch/mips/mm/init.c @@ -417,7 +417,12 @@ (highend_pfn - max_low_pfn) << (PAGE_SHIFT - 10)); max_zone_pfns[ZONE_HIGHMEM] = max_low_pfn; } + + max_mapnr = highend_pfn ? highend_pfn : max_low_pfn; +#else + max_mapnr = max_low_pfn; #endif + high_memory = (void *) __va(max_low_pfn << PAGE_SHIFT); free_area_init(max_zone_pfns); } @@ -453,13 +458,6 @@ */ BUILD_BUG_ON(IS_ENABLED(CONFIG_32BIT) && (_PFN_SHIFT > PAGE_SHIFT)); -#ifdef CONFIG_HIGHMEM - max_mapnr = highend_pfn ? highend_pfn : max_low_pfn; -#else - max_mapnr = max_low_pfn; -#endif - high_memory = (void *) __va(max_low_pfn << PAGE_SHIFT); - maar_init(); memblock_free_all(); setup_zero_pages(); /* Setup zeroed pages. */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/mips/sgi-ip27/ip27-memory.c +++ linux-xilinx-zynqmp-5.15.0/arch/mips/sgi-ip27/ip27-memory.c @@ -341,7 +341,8 @@ continue; } memblock_add_node(PFN_PHYS(slot_getbasepfn(node, slot)), - PFN_PHYS(slot_psize), node); + PFN_PHYS(slot_psize), node, + MEMBLOCK_NONE); } } } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/parisc/include/uapi/asm/errno.h +++ linux-xilinx-zynqmp-5.15.0/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 */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/parisc/include/uapi/asm/pdc.h +++ linux-xilinx-zynqmp-5.15.0/arch/parisc/include/uapi/asm/pdc.h @@ -465,6 +465,7 @@ 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) */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/powerpc/boot/zImage.lds.S +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/boot/zImage.lds.S @@ -36,12 +36,9 @@ } #ifdef CONFIG_PPC64_BOOT_WRAPPER - . = ALIGN(256); - .got : + .got : ALIGN(256) { - __toc_start = .; - *(.got) - *(.toc) + *(.got .toc) } #endif only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/powerpc/include/asm/book3s/32/kup.h +++ linux-xilinx-zynqmp-5.15.0/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 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 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/powerpc/include/asm/irq_work.h +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/include/asm/irq_work.h @@ -6,6 +6,5 @@ { return true; } -extern void arch_irq_work_raise(void); #endif /* _ASM_POWERPC_IRQ_WORK_H */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/powerpc/include/asm/kup.h +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/include/asm/kup.h @@ -38,11 +38,6 @@ 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 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/powerpc/include/asm/mmu.h +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/include/asm/mmu.h @@ -416,5 +416,9 @@ #include #endif +#if defined(CONFIG_FA_DUMP) || defined(CONFIG_PRESERVE_FA_DUMP) +#define __HAVE_ARCH_RESERVED_KERNEL_PAGES +#endif + #endif /* __KERNEL__ */ #endif /* _ASM_POWERPC_MMU_H_ */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/powerpc/include/asm/mmzone.h +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/include/asm/mmzone.h @@ -42,14 +42,6 @@ #else #define memory_hotplug_max() memblock_end_of_DRAM() #endif /* CONFIG_NUMA */ -#ifdef CONFIG_FA_DUMP -#define __HAVE_ARCH_RESERVED_KERNEL_PAGES -#endif - -#ifdef CONFIG_MEMORY_HOTPLUG -extern int create_section_mapping(unsigned long start, unsigned long end, - int nid, pgprot_t prot); -#endif #endif /* __KERNEL__ */ #endif /* _ASM_MMZONE_H_ */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/powerpc/include/asm/nohash/32/pte-40x.h +++ linux-xilinx-zynqmp-5.15.0/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) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/powerpc/kernel/fpu.S +++ linux-xilinx-zynqmp-5.15.0/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 @@ 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 @@ 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 @@ 2: SAVE_32FPVSRS(0, R4, R6) mffs fr0 stfd fr0,FPSTATE_FPSCR(r6) + REST_1FPVSR(0, R4, R6) blr only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/powerpc/kernel/head_64.S +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/head_64.S @@ -904,7 +904,7 @@ blr .balign 8 -p_toc: .8byte __toc_start + 0x8000 - 0b +p_toc: .8byte .TOC. - 0b /* * This is where the main kernel code starts. only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/powerpc/kernel/head_book3s_32.S +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/head_book3s_32.S @@ -931,7 +931,11 @@ _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 */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/powerpc/kernel/head_fsl_booke.S +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/head_fsl_booke.S @@ -394,7 +394,7 @@ #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 */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/powerpc/kernel/vector.S +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/kernel/vector.S @@ -32,6 +32,7 @@ mfvscr v0 li r4, VRSTATE_VSCR stvx v0, r4, r3 + lvx v0, 0, r3 blr EXPORT_SYMBOL(store_vr_state) @@ -104,6 +105,7 @@ mfvscr v0 li r4,VRSTATE_VSCR stvx v0,r4,r7 + lvx v0,0,r7 blr #ifdef CONFIG_VSX only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/powerpc/mm/book3s32/kuep.c +++ linux-xilinx-zynqmp-5.15.0/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"); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/powerpc/mm/book3s64/pgtable.c +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/mm/book3s64/pgtable.c @@ -459,6 +459,7 @@ set_pte_at(vma->vm_mm, addr, ptep, pte); } +#ifdef CONFIG_TRANSPARENT_HUGEPAGE /* * For hash translation mode, we use the deposited table to store hash slot * information and they are stored at PTRS_PER_PMD offset from related pmd @@ -480,6 +481,7 @@ return true; } +#endif /* * Does the CPU support tlbie? only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/powerpc/mm/init-common.c +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/mm/init-common.c @@ -105,7 +105,7 @@ * as to leave enough 0 bits in the address to contain it. */ unsigned long minalign = max(MAX_PGTABLE_INDEX_SIZE + 1, HUGEPD_SHIFT_MASK + 1); - struct kmem_cache *new; + struct kmem_cache *new = NULL; /* It would be nice if this was a BUILD_BUG_ON(), but at the * moment, gcc doesn't seem to recognize is_power_of_2 as a @@ -118,7 +118,8 @@ align = max_t(unsigned long, align, minalign); name = kasprintf(GFP_KERNEL, "pgtable-2^%d", shift); - new = kmem_cache_create(name, table_size, align, 0, ctor(shift)); + if (name) + new = kmem_cache_create(name, table_size, align, 0, ctor(shift)); if (!new) panic("Could not allocate pgtable cache for order %d", shift); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/powerpc/mm/mmu_decl.h +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/mm/mmu_decl.h @@ -190,3 +190,8 @@ { return IS_ENABLED(CONFIG_KFENCE) || debug_pagealloc_enabled(); } + +#ifdef CONFIG_MEMORY_HOTPLUG +int create_section_mapping(unsigned long start, unsigned long end, + int nid, pgprot_t prot); +#endif only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/powerpc/platforms/44x/Kconfig +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/platforms/44x/Kconfig @@ -177,6 +177,7 @@ config CURRITUCK bool "IBM Currituck (476fpe) Support" depends on PPC_47x + select I2C select SWIOTLB select 476FPE select FORCE_PCI only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/powerpc/platforms/powernv/opal-irqchip.c +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/platforms/powernv/opal-irqchip.c @@ -275,6 +275,8 @@ else name = kasprintf(GFP_KERNEL, "opal"); + if (!name) + continue; /* Install interrupt handler */ rc = request_irq(r->start, opal_interrupt, r->flags & IRQD_TRIGGER_MASK, name, NULL); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/powerpc/platforms/powernv/opal-powercap.c +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/platforms/powernv/opal-powercap.c @@ -196,6 +196,12 @@ j = 0; pcaps[i].pg.name = kasprintf(GFP_KERNEL, "%pOFn", node); + if (!pcaps[i].pg.name) { + kfree(pcaps[i].pattrs); + kfree(pcaps[i].pg.attrs); + goto out_pcaps_pattrs; + } + if (has_min) { powercap_add_attr(min, "powercap-min", &pcaps[i].pattrs[j]); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/powerpc/platforms/powernv/opal-xscom.c +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/platforms/powernv/opal-xscom.c @@ -165,6 +165,11 @@ ent->chip = chip; snprintf(ent->name, 16, "%08x", chip); ent->path.data = (void *)kasprintf(GFP_KERNEL, "%pOF", dn); + if (!ent->path.data) { + kfree(ent); + return -ENOMEM; + } + ent->path.size = strlen((char *)ent->path.data); dir = debugfs_create_dir(ent->name, root); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/powerpc/platforms/pseries/hotplug-memory.c +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/platforms/pseries/hotplug-memory.c @@ -501,14 +501,15 @@ } } - if (!lmb_found) + if (!lmb_found) { + pr_debug("Failed to look up LMB for drc index %x\n", drc_index); rc = -EINVAL; - - if (rc) + } else if (rc) { pr_debug("Failed to hot-remove memory at %llx\n", lmb->base_addr); - else + } else { pr_debug("Memory at %llx was hot-removed\n", lmb->base_addr); + } return rc; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/powerpc/sysdev/xive/native.c +++ linux-xilinx-zynqmp-5.15.0/arch/powerpc/sysdev/xive/native.c @@ -786,7 +786,7 @@ 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) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/riscv/include/asm/sections.h +++ linux-xilinx-zynqmp-5.15.0/arch/riscv/include/asm/sections.h @@ -13,6 +13,7 @@ extern char __init_data_begin[], __init_data_end[]; extern char __init_text_begin[], __init_text_end[]; extern char __alt_start[], __alt_end[]; +extern char __exittext_begin[], __exittext_end[]; static inline bool is_va_kernel_text(uintptr_t va) { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/riscv/kernel/traps_misaligned.c +++ linux-xilinx-zynqmp-5.15.0/arch/riscv/kernel/traps_misaligned.c @@ -344,16 +344,14 @@ } 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 { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/riscv/kernel/vmlinux-xip.lds.S +++ linux-xilinx-zynqmp-5.15.0/arch/riscv/kernel/vmlinux-xip.lds.S @@ -29,10 +29,12 @@ HEAD_TEXT_SECTION INIT_TEXT_SECTION(PAGE_SIZE) /* we have to discard exit text and such at runtime, not link time */ + __exittext_begin = .; .exit.text : { EXIT_TEXT } + __exittext_end = .; .text : { _text = .; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/riscv/kernel/vmlinux.lds.S +++ linux-xilinx-zynqmp-5.15.0/arch/riscv/kernel/vmlinux.lds.S @@ -73,10 +73,12 @@ __soc_builtin_dtb_table_end = .; } /* we have to discard exit text and such at runtime, not link time */ + __exittext_begin = .; .exit.text : { EXIT_TEXT } + __exittext_end = .; __init_text_end = .; . = ALIGN(SECTION_ALIGN); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/s390/include/asm/fpu/api.h +++ linux-xilinx-zynqmp-5.15.0/arch/s390/include/asm/fpu/api.h @@ -78,7 +78,7 @@ #define KERNEL_VXR_HIGH (KERNEL_VXR_V16V23|KERNEL_VXR_V24V31) #define KERNEL_VXR (KERNEL_VXR_LOW|KERNEL_VXR_HIGH) -#define KERNEL_FPR (KERNEL_FPC|KERNEL_VXR_V0V7) +#define KERNEL_FPR (KERNEL_FPC|KERNEL_VXR_LOW) struct kernel_fpu; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/s390/include/asm/irq_work.h +++ linux-xilinx-zynqmp-5.15.0/arch/s390/include/asm/irq_work.h @@ -7,6 +7,4 @@ return true; } -void arch_irq_work_raise(void); - #endif /* _ASM_S390_IRQ_WORK_H */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/s390/mm/page-states.c +++ linux-xilinx-zynqmp-5.15.0/arch/s390/mm/page-states.c @@ -131,7 +131,7 @@ 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 @@ 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 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/s390/pci/pci_dma.c +++ linux-xilinx-zynqmp-5.15.0/arch/s390/pci/pci_dma.c @@ -542,6 +542,17 @@ 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 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/sparc/lib/checksum_32.S +++ linux-xilinx-zynqmp-5.15.0/arch/sparc/lib/checksum_32.S @@ -453,5 +453,5 @@ * we only bother with faults on loads... */ cc_fault: - ret + retl clr %o0 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/um/drivers/net_kern.c +++ linux-xilinx-zynqmp-5.15.0/arch/um/drivers/net_kern.c @@ -204,7 +204,7 @@ return 0; } -static int uml_net_start_xmit(struct sk_buff *skb, struct net_device *dev) +static netdev_tx_t uml_net_start_xmit(struct sk_buff *skb, struct net_device *dev) { struct uml_net_private *lp = netdev_priv(dev); unsigned long flags; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/um/include/shared/kern_util.h +++ linux-xilinx-zynqmp-5.15.0/arch/um/include/shared/kern_util.h @@ -50,7 +50,7 @@ * Are we disallowed to sleep? Used to choose between GFP_KERNEL and * GFP_ATOMIC. */ -extern int __cant_sleep(void); +extern int __uml_cant_sleep(void); extern int get_current_pid(void); extern int copy_from_user_proc(void *to, void *from, int size); extern int cpu(void); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/um/kernel/time.c +++ linux-xilinx-zynqmp-5.15.0/arch/um/kernel/time.c @@ -432,9 +432,29 @@ time_travel_del_event(&ne); } +static void time_travel_update_time_rel(unsigned long long offs) +{ + unsigned long flags; + + /* + * Disable interrupts before calculating the new time so + * that a real timer interrupt (signal) can't happen at + * a bad time e.g. after we read time_travel_time but + * before we've completed updating the time. + */ + local_irq_save(flags); + time_travel_update_time(time_travel_time + offs, false); + local_irq_restore(flags); +} + void time_travel_ndelay(unsigned long nsec) { - time_travel_update_time(time_travel_time + nsec, false); + /* + * Not strictly needed to use _rel() version since this is + * only used in INFCPU/EXT modes, but it doesn't hurt and + * is more readable too. + */ + time_travel_update_time_rel(nsec); } EXPORT_SYMBOL(time_travel_ndelay); @@ -568,7 +588,11 @@ #define time_travel_time 0 #define time_travel_ext_waiting 0 -static inline void time_travel_update_time(unsigned long long ns, bool retearly) +static inline void time_travel_update_time(unsigned long long ns, bool idle) +{ +} + +static inline void time_travel_update_time_rel(unsigned long long offs) { } @@ -720,9 +744,7 @@ */ if (!irqs_disabled() && !in_interrupt() && !in_softirq() && !time_travel_ext_waiting) - time_travel_update_time(time_travel_time + - TIMER_MULTIPLIER, - false); + time_travel_update_time_rel(TIMER_MULTIPLIER); return time_travel_time / TIMER_MULTIPLIER; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/um/os-Linux/helper.c +++ linux-xilinx-zynqmp-5.15.0/arch/um/os-Linux/helper.c @@ -45,7 +45,7 @@ unsigned long stack, sp; int pid, fds[2], ret, n; - stack = alloc_stack(0, __cant_sleep()); + stack = alloc_stack(0, __uml_cant_sleep()); if (stack == 0) return -ENOMEM; @@ -69,7 +69,7 @@ data.pre_data = pre_data; data.argv = argv; data.fd = fds[1]; - data.buf = __cant_sleep() ? uml_kmalloc(PATH_MAX, UM_GFP_ATOMIC) : + data.buf = __uml_cant_sleep() ? uml_kmalloc(PATH_MAX, UM_GFP_ATOMIC) : uml_kmalloc(PATH_MAX, UM_GFP_KERNEL); pid = clone(helper_child, (void *) sp, CLONE_VM, &data); if (pid < 0) { @@ -116,7 +116,7 @@ unsigned long stack, sp; int pid, status, err; - stack = alloc_stack(0, __cant_sleep()); + stack = alloc_stack(0, __uml_cant_sleep()); if (stack == 0) return -ENOMEM; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/x86/Kconfig.cpu +++ linux-xilinx-zynqmp-5.15.0/arch/x86/Kconfig.cpu @@ -379,7 +379,7 @@ config X86_MINIMUM_CPU_FAMILY int default "64" if X86_64 - default "6" if X86_32 && (MPENTIUM4 || MPENTIUMM || MPENTIUMIII || MPENTIUMII || M686 || MVIAC3_2 || MVIAC7 || MEFFICEON || MATOM || MCRUSOE || MCORE2 || MK7 || MK8) + default "6" if X86_32 && (MPENTIUM4 || MPENTIUMM || MPENTIUMIII || MPENTIUMII || M686 || MVIAC3_2 || MVIAC7 || MEFFICEON || MATOM || MCORE2 || MK7 || MK8) default "5" if X86_32 && X86_CMPXCHG64 default "4" only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/x86/boot/compressed/idt_64.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/boot/compressed/idt_64.c @@ -45,6 +45,7 @@ boot_idt_desc.address = (unsigned long)boot_idt; set_idt_entry(X86_TRAP_PF, boot_page_fault); + set_idt_entry(X86_TRAP_NMI, boot_nmi_trap); #ifdef CONFIG_AMD_MEM_ENCRYPT set_idt_entry(X86_TRAP_VC, boot_stage2_vc); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/x86/boot/compressed/idt_handlers_64.S +++ linux-xilinx-zynqmp-5.15.0/arch/x86/boot/compressed/idt_handlers_64.S @@ -70,6 +70,7 @@ .code64 EXCEPTION_HANDLER boot_page_fault do_boot_page_fault error_code=1 +EXCEPTION_HANDLER boot_nmi_trap do_boot_nmi_trap error_code=0 #ifdef CONFIG_AMD_MEM_ENCRYPT EXCEPTION_HANDLER boot_stage1_vc do_vc_no_ghcb error_code=1 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/x86/boot/compressed/misc.h +++ linux-xilinx-zynqmp-5.15.0/arch/x86/boot/compressed/misc.h @@ -163,6 +163,7 @@ /* IDT Entry Points */ void boot_page_fault(void); +void boot_nmi_trap(void); void boot_stage1_vc(void); void boot_stage2_vc(void); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/x86/crypto/sha1_ssse3_glue.c +++ linux-xilinx-zynqmp-5.15.0/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 int __init sha1_ssse3_mod_init(void) { + if (!x86_match_cpu(module_cpu_ids)) + return -ENODEV; + if (register_sha1_ssse3()) goto fail; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/x86/crypto/sha256_ssse3_glue.c +++ linux-xilinx-zynqmp-5.15.0/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 int __init sha256_ssse3_mod_init(void) { + if (!x86_match_cpu(module_cpu_ids)) + return -ENODEV; + if (register_sha256_ssse3()) goto fail; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/x86/events/Makefile +++ linux-xilinx-zynqmp-5.15.0/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 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/x86/events/intel/uncore_discovery.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/events/intel/uncore_discovery.c @@ -140,13 +140,21 @@ 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 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/x86/events/utils.c +++ linux-xilinx-zynqmp-5.15.0/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; +} only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/x86/include/asm/i8259.h +++ linux-xilinx-zynqmp-5.15.0/arch/x86/include/asm/i8259.h @@ -69,6 +69,8 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/x86/include/asm/irq_work.h +++ linux-xilinx-zynqmp-5.15.0/arch/x86/include/asm/irq_work.h @@ -9,7 +9,6 @@ { return boot_cpu_has(X86_FEATURE_APIC); } -extern void arch_irq_work_raise(void); #else static inline bool arch_irq_work_has_interrupt(void) { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/x86/include/asm/numa.h +++ linux-xilinx-zynqmp-5.15.0/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; /* only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/x86/include/asm/page.h +++ linux-xilinx-zynqmp-5.15.0/arch/x86/include/asm/page.h @@ -71,6 +71,16 @@ 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 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/x86/include/asm/setup.h +++ linux-xilinx-zynqmp-5.15.0/arch/x86/include/asm/setup.h @@ -108,27 +108,16 @@ 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 @@ #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 */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/x86/kernel/kvmclock.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/kernel/kvmclock.c @@ -24,8 +24,8 @@ static int kvmclock __initdata = 1; static int kvmclock_vsyscall __initdata = 1; -static int msr_kvm_system_time __ro_after_init = MSR_KVM_SYSTEM_TIME; -static int msr_kvm_wall_clock __ro_after_init = MSR_KVM_WALL_CLOCK; +static int msr_kvm_system_time __ro_after_init; +static int msr_kvm_wall_clock __ro_after_init; static u64 kvm_sched_clock_offset __ro_after_init; static int __init parse_no_kvmclock(char *arg) @@ -195,7 +195,8 @@ void kvmclock_disable(void) { - native_write_msr(msr_kvm_system_time, 0, 0); + if (msr_kvm_system_time) + native_write_msr(msr_kvm_system_time, 0, 0); } static void __init kvmclock_init_mem(void) @@ -291,7 +292,10 @@ if (kvm_para_has_feature(KVM_FEATURE_CLOCKSOURCE2)) { msr_kvm_system_time = MSR_KVM_SYSTEM_TIME_NEW; msr_kvm_wall_clock = MSR_KVM_WALL_CLOCK_NEW; - } else if (!kvm_para_has_feature(KVM_FEATURE_CLOCKSOURCE)) { + } else if (kvm_para_has_feature(KVM_FEATURE_CLOCKSOURCE)) { + msr_kvm_system_time = MSR_KVM_SYSTEM_TIME; + msr_kvm_wall_clock = MSR_KVM_WALL_CLOCK; + } else { return; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/x86/lib/copy_mc.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/lib/copy_mc.c @@ -70,23 +70,23 @@ } 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); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/x86/lib/misc.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/lib/misc.c @@ -6,7 +6,7 @@ */ int num_digits(int val) { - int m = 10; + long long m = 10; int d = 1; if (val < 0) { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/x86/mm/ident_map.c +++ linux-xilinx-zynqmp-5.15.0/arch/x86/mm/ident_map.c @@ -26,18 +26,31 @@ for (; addr < end; addr = next) { pud_t *pud = pud_page + pud_index(addr); pmd_t *pmd; + bool use_gbpage; next = (addr & PUD_MASK) + PUD_SIZE; if (next > end) next = end; - if (info->direct_gbpages) { - pud_t pudval; + /* if this is already a gbpage, this portion is already mapped */ + if (pud_large(*pud)) + continue; + + /* Is using a gbpage allowed? */ + use_gbpage = info->direct_gbpages; - if (pud_present(*pud)) - continue; + /* Don't use gbpage if it maps more than the requested region. */ + /* at the begining: */ + use_gbpage &= ((addr & ~PUD_MASK) == 0); + /* ... or at the end: */ + use_gbpage &= ((next & ~PUD_MASK) == 0); + + /* Never overwrite existing mappings */ + use_gbpage &= !pud_present(*pud); + + if (use_gbpage) { + pud_t pudval; - addr &= PUD_MASK; pudval = __pud((addr - info->offset) | info->page_flag); set_pud(pud, pudval); continue; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/arch/x86/mm/maccess.c +++ linux-xilinx-zynqmp-5.15.0/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) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/crypto/af_alg.c +++ linux-xilinx-zynqmp-5.15.0/crypto/af_alg.c @@ -1045,9 +1045,13 @@ void af_alg_free_resources(struct af_alg_async_req *areq) { struct sock *sk = areq->sk; + struct af_alg_ctx *ctx; af_alg_free_areq_sgls(areq); sock_kfree_s(sk, areq, areq->areqlen); + + ctx = alg_sk(sk)->private; + ctx->inflight = false; } EXPORT_SYMBOL_GPL(af_alg_free_resources); @@ -1117,11 +1121,19 @@ struct af_alg_async_req *af_alg_alloc_areq(struct sock *sk, unsigned int areqlen) { - struct af_alg_async_req *areq = sock_kmalloc(sk, areqlen, GFP_KERNEL); + struct af_alg_ctx *ctx = alg_sk(sk)->private; + struct af_alg_async_req *areq; + + /* Only one AIO request can be in flight. */ + if (ctx->inflight) + return ERR_PTR(-EBUSY); + areq = sock_kmalloc(sk, areqlen, GFP_KERNEL); if (unlikely(!areq)) return ERR_PTR(-ENOMEM); + ctx->inflight = true; + areq->areqlen = areqlen; areq->sk = sk; areq->last_rsgl = NULL; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/crypto/scompress.c +++ linux-xilinx-zynqmp-5.15.0/crypto/scompress.c @@ -124,6 +124,7 @@ struct crypto_scomp *scomp = *tfm_ctx; void **ctx = acomp_request_ctx(req); struct scomp_scratch *scratch; + unsigned int dlen; int ret; if (!req->src || !req->slen || req->slen > SCOMP_SCRATCH_SIZE) @@ -135,6 +136,8 @@ if (!req->dlen || req->dlen > SCOMP_SCRATCH_SIZE) req->dlen = SCOMP_SCRATCH_SIZE; + dlen = req->dlen; + scratch = raw_cpu_ptr(&scomp_scratch); spin_lock(&scratch->lock); @@ -152,6 +155,9 @@ ret = -ENOMEM; goto out; } + } else if (req->dlen > dlen) { + ret = -ENOSPC; + goto out; } scatterwalk_map_and_copy(scratch->dst, req->dst, 0, req->dlen, 1); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/debian.master/dkms-versions +++ linux-xilinx-zynqmp-5.15.0/debian.master/dkms-versions @@ -0,0 +1,3 @@ +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 +backport-iwlwifi-dkms 9858-0ubuntu3.4 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 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/debian.zynqmp/dkms-versions +++ linux-xilinx-zynqmp-5.15.0/debian.zynqmp/dkms-versions @@ -0,0 +1 @@ +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 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/acpi/acpi_lpit.c +++ linux-xilinx-zynqmp-5.15.0/drivers/acpi/acpi_lpit.c @@ -98,7 +98,7 @@ struct acpi_lpit_native *lpit_native) { info->frequency = lpit_native->counter_frequency ? - lpit_native->counter_frequency : tsc_khz * 1000; + lpit_native->counter_frequency : mul_u32_u32(tsc_khz, 1000U); if (!info->frequency) info->frequency = 1; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/acpi/device_sysfs.c +++ linux-xilinx-zynqmp-5.15.0/drivers/acpi/device_sysfs.c @@ -157,8 +157,8 @@ return 0; len = snprintf(modalias, size, "acpi:"); - if (len <= 0) - return len; + if (len >= size) + return -ENOMEM; size -= len; @@ -211,8 +211,10 @@ 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) { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/acpi/irq.c +++ linux-xilinx-zynqmp-5.15.0/drivers/acpi/irq.c @@ -52,6 +52,7 @@ 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 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/ata/pata_isapnp.c +++ linux-xilinx-zynqmp-5.15.0/drivers/ata/pata_isapnp.c @@ -82,6 +82,9 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/atm/iphase.c +++ linux-xilinx-zynqmp-5.15.0/drivers/atm/iphase.c @@ -2293,19 +2293,21 @@ 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; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/atm/solos-pci.c +++ linux-xilinx-zynqmp-5.15.0/drivers/atm/solos-pci.c @@ -449,9 +449,9 @@ struct sk_buff *skb; unsigned int len; - spin_lock(&card->cli_queue_lock); + spin_lock_bh(&card->cli_queue_lock); skb = skb_dequeue(&card->cli_queue[SOLOS_CHAN(atmdev)]); - spin_unlock(&card->cli_queue_lock); + spin_unlock_bh(&card->cli_queue_lock); if(skb == NULL) return sprintf(buf, "No data.\n"); @@ -956,14 +956,14 @@ struct pkt_hdr *header; /* Remove any yet-to-be-transmitted packets from the pending queue */ - spin_lock(&card->tx_queue_lock); + spin_lock_bh(&card->tx_queue_lock); skb_queue_walk_safe(&card->tx_queue[port], skb, tmpskb) { if (SKB_CB(skb)->vcc == vcc) { skb_unlink(skb, &card->tx_queue[port]); solos_pop(vcc, skb); } } - spin_unlock(&card->tx_queue_lock); + spin_unlock_bh(&card->tx_queue_lock); skb = alloc_skb(sizeof(*header), GFP_KERNEL); if (!skb) { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/base/arch_numa.c +++ linux-xilinx-zynqmp-5.15.0/drivers/base/arch_numa.c @@ -144,7 +144,7 @@ unsigned long __per_cpu_offset[NR_CPUS] __read_mostly; EXPORT_SYMBOL(__per_cpu_offset); -static int __init early_cpu_to_node(int cpu) +int __init early_cpu_to_node(int cpu) { return cpu_to_node_map[cpu]; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/base/devcoredump.c +++ linux-xilinx-zynqmp-5.15.0/drivers/base/devcoredump.c @@ -25,6 +25,47 @@ 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 @@ 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 @@ { 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 @@ 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 @@ 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 @@ "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: only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/base/driver.c +++ linux-xilinx-zynqmp-5.15.0/drivers/base/driver.c @@ -31,6 +31,75 @@ } /** + * 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. * @start: Device to begin with only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/base/regmap/regmap-debugfs.c +++ linux-xilinx-zynqmp-5.15.0/drivers/base/regmap/regmap-debugfs.c @@ -48,7 +48,7 @@ name = map->dev->driver->name; ret = snprintf(buf, PAGE_SIZE, "%s\n", name); - if (ret < 0) { + if (ret >= PAGE_SIZE) { kfree(buf); return ret; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/bus/moxtet.c +++ linux-xilinx-zynqmp-5.15.0/drivers/bus/moxtet.c @@ -832,6 +832,12 @@ return 0; } +static const struct spi_device_id moxtet_spi_ids[] = { + { "moxtet" }, + { }, +}; +MODULE_DEVICE_TABLE(spi, moxtet_spi_ids); + static const struct of_device_id moxtet_dt_ids[] = { { .compatible = "cznic,moxtet" }, {}, @@ -843,6 +849,7 @@ .name = "moxtet", .of_match_table = moxtet_dt_ids, }, + .id_table = moxtet_spi_ids, .probe = moxtet_probe, .remove = moxtet_remove, }; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/clk-asm9260.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/clk-asm9260.c @@ -80,7 +80,7 @@ u8 mask; u32 *table; const char *name; - const char **parent_names; + const struct clk_parent_data *parent_data; u8 num_parents; unsigned long offset; unsigned long flags; @@ -232,10 +232,10 @@ HW_AHBCLKCTRL1, 16 }, }; -static const char __initdata *main_mux_p[] = { NULL, NULL }; -static const char __initdata *i2s0_mux_p[] = { NULL, NULL, "i2s0m_div"}; -static const char __initdata *i2s1_mux_p[] = { NULL, NULL, "i2s1m_div"}; -static const char __initdata *clkout_mux_p[] = { NULL, NULL, "rtc"}; +static struct clk_parent_data __initdata main_mux_p[] = { { .index = 0, }, { .name = "pll" } }; +static struct clk_parent_data __initdata i2s0_mux_p[] = { { .index = 0, }, { .name = "pll" }, { .name = "i2s0m_div"} }; +static struct clk_parent_data __initdata i2s1_mux_p[] = { { .index = 0, }, { .name = "pll" }, { .name = "i2s1m_div"} }; +static struct clk_parent_data __initdata clkout_mux_p[] = { { .index = 0, }, { .name = "pll" }, { .name = "rtc"} }; static u32 three_mux_table[] = {0, 1, 3}; static struct asm9260_mux_clock asm9260_mux_clks[] __initdata = { @@ -255,9 +255,10 @@ static void __init asm9260_acc_init(struct device_node *np) { - struct clk_hw *hw; + struct clk_hw *hw, *pll_hw; struct clk_hw **hws; - const char *ref_clk, *pll_clk = "pll"; + const char *pll_clk = "pll"; + struct clk_parent_data pll_parent_data = { .index = 0 }; u32 rate; int n; @@ -274,21 +275,15 @@ /* register pll */ rate = (ioread32(base + HW_SYSPLLCTRL) & 0xffff) * 1000000; - /* TODO: Convert to DT parent scheme */ - ref_clk = of_clk_get_parent_name(np, 0); - hw = __clk_hw_register_fixed_rate(NULL, NULL, pll_clk, - ref_clk, NULL, NULL, 0, rate, 0, - CLK_FIXED_RATE_PARENT_ACCURACY); - - if (IS_ERR(hw)) + pll_hw = clk_hw_register_fixed_rate_parent_accuracy(NULL, pll_clk, &pll_parent_data, + 0, rate); + if (IS_ERR(pll_hw)) panic("%pOFn: can't register REFCLK. Check DT!", np); for (n = 0; n < ARRAY_SIZE(asm9260_mux_clks); n++) { const struct asm9260_mux_clock *mc = &asm9260_mux_clks[n]; - mc->parent_names[0] = ref_clk; - mc->parent_names[1] = pll_clk; - hw = clk_hw_register_mux_table(NULL, mc->name, mc->parent_names, + hw = clk_hw_register_mux_table_parent_data(NULL, mc->name, mc->parent_data, mc->num_parents, mc->flags, base + mc->offset, 0, mc->mask, 0, mc->table, &asm9260_clk_lock); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/clk-fixed-rate.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/clk-fixed-rate.c @@ -49,12 +49,24 @@ }; EXPORT_SYMBOL_GPL(clk_fixed_rate_ops); +static void devm_clk_hw_register_fixed_rate_release(struct device *dev, void *res) +{ + struct clk_fixed_rate *fix = res; + + /* + * We can not use clk_hw_unregister_fixed_rate, since it will kfree() + * the hw, resulting in double free. Just unregister the hw and let + * devres code kfree() it. + */ + clk_hw_unregister(&fix->hw); +} + struct clk_hw *__clk_hw_register_fixed_rate(struct device *dev, struct device_node *np, const char *name, const char *parent_name, const struct clk_hw *parent_hw, const struct clk_parent_data *parent_data, unsigned long flags, unsigned long fixed_rate, unsigned long fixed_accuracy, - unsigned long clk_fixed_flags) + unsigned long clk_fixed_flags, bool devm) { struct clk_fixed_rate *fixed; struct clk_hw *hw; @@ -62,7 +74,11 @@ int ret = -EINVAL; /* allocate fixed-rate clock */ - fixed = kzalloc(sizeof(*fixed), GFP_KERNEL); + if (devm) + fixed = devres_alloc(devm_clk_hw_register_fixed_rate_release, + sizeof(*fixed), GFP_KERNEL); + else + fixed = kzalloc(sizeof(*fixed), GFP_KERNEL); if (!fixed) return ERR_PTR(-ENOMEM); @@ -90,9 +106,13 @@ else if (np) ret = of_clk_hw_register(np, hw); if (ret) { - kfree(fixed); + if (devm) + devres_free(fixed); + else + kfree(fixed); hw = ERR_PTR(ret); - } + } else if (devm) + devres_add(dev, fixed); return hw; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/clk-npcm7xx.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/clk-npcm7xx.c @@ -539,7 +539,7 @@ return; npcm7xx_init_fail: - kfree(npcm7xx_clk_data->hws); + kfree(npcm7xx_clk_data); npcm7xx_init_np_err: iounmap(clk_base); npcm7xx_init_error: only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/clk-scmi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/clk-scmi.c @@ -178,6 +178,7 @@ 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; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/hisilicon/clk-hi3620.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/hisilicon/clk-hi3620.c @@ -467,8 +467,10 @@ return; clk_data->clks = kcalloc(num, sizeof(*clk_data->clks), GFP_KERNEL); - if (!clk_data->clks) + if (!clk_data->clks) { + kfree(clk_data); return; + } for (i = 0; i < num; i++) { struct hisi_mmc_clock *mmc_clk = &hi3620_mmc_clks[i]; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/imx/Kconfig +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/imx/Kconfig @@ -96,5 +96,6 @@ 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. only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/imx/clk-imx8mq.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/imx/clk-imx8mq.c @@ -288,8 +288,7 @@ 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 @@ 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 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/mediatek/clk-mt2701.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/mediatek/clk-mt2701.c @@ -675,6 +675,8 @@ 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 @@ 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 @@ 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 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/mediatek/clk-mt6765.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/mediatek/clk-mt6765.c @@ -785,6 +785,8 @@ } 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 @@ } 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 @@ } 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/mediatek/clk-mt6779.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/mediatek/clk-mt6779.c @@ -1216,6 +1216,8 @@ 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 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/mediatek/clk-mt6797.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/mediatek/clk-mt6797.c @@ -391,6 +391,8 @@ 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 @@ 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 @@ 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)) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/mediatek/clk-mt7629-eth.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/mediatek/clk-mt7629-eth.c @@ -83,6 +83,8 @@ 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 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/mediatek/clk-mt7629.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/mediatek/clk-mt7629.c @@ -580,6 +580,8 @@ 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 @@ 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 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/mmp/clk-of-pxa168.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/mmp/clk-of-pxa168.c @@ -258,18 +258,21 @@ pxa_unit->mpmu_base = of_iomap(np, 0); if (!pxa_unit->mpmu_base) { pr_err("failed to map mpmu registers\n"); + kfree(pxa_unit); return; } pxa_unit->apmu_base = of_iomap(np, 1); if (!pxa_unit->apmu_base) { pr_err("failed to map apmu registers\n"); + kfree(pxa_unit); return; } pxa_unit->apbc_base = of_iomap(np, 2); if (!pxa_unit->apbc_base) { pr_err("failed to map apbc registers\n"); + kfree(pxa_unit); return; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/qcom/gcc-sm8150.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/qcom/gcc-sm8150.c @@ -792,7 +792,7 @@ .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, }, }; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/qcom/gpucc-sm8150.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/qcom/gpucc-sm8150.c @@ -37,8 +37,8 @@ .config_ctl_hi_val = 0x00002267, .config_ctl_hi1_val = 0x00000024, .test_ctl_val = 0x00000000, - .test_ctl_hi_val = 0x00000002, - .test_ctl_hi1_val = 0x00000000, + .test_ctl_hi_val = 0x00000000, + .test_ctl_hi1_val = 0x00000020, .user_ctl_val = 0x00000000, .user_ctl_hi_val = 0x00000805, .user_ctl_hi1_val = 0x000000d0, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/qcom/mmcc-msm8998.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/qcom/mmcc-msm8998.c @@ -2487,6 +2487,7 @@ 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 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_axi_clk = { .halt_reg = 0xe008, + .halt_check = BRANCH_HALT_SKIP, .hwcg_reg = 0xe008, .hwcg_bit = 1, .clkr = { @@ -2659,11 +2662,13 @@ 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[] = { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/qcom/videocc-sm8150.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/qcom/videocc-sm8150.c @@ -33,6 +33,7 @@ .config_ctl_val = 0x20485699, .config_ctl_hi_val = 0x00002267, .config_ctl_hi1_val = 0x00000024, + .test_ctl_hi1_val = 0x00000020, .user_ctl_val = 0x00000000, .user_ctl_hi_val = 0x00000805, .user_ctl_hi1_val = 0x000000D0, @@ -214,6 +215,10 @@ static const struct qcom_reset_map video_cc_sm8150_resets[] = { [VIDEO_CC_MVSC_CORE_CLK_BCR] = { 0x850, 2 }, + [VIDEO_CC_INTERFACE_BCR] = { 0x8f0 }, + [VIDEO_CC_MVS0_BCR] = { 0x870 }, + [VIDEO_CC_MVS1_BCR] = { 0x8b0 }, + [VIDEO_CC_MVSC_BCR] = { 0x810 }, }; static const struct qcom_cc_desc video_cc_sm8150_desc = { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/rockchip/clk-rk3128.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/rockchip/clk-rk3128.c @@ -490,7 +490,7 @@ GATE(HCLK_I2S_2CH, "hclk_i2s_2ch", "hclk_peri", 0, RK2928_CLKGATE_CON(7), 2, GFLAGS), GATE(0, "hclk_usb_peri", "hclk_peri", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(9), 13, GFLAGS), GATE(HCLK_HOST2, "hclk_host2", "hclk_peri", 0, RK2928_CLKGATE_CON(7), 3, GFLAGS), - GATE(HCLK_OTG, "hclk_otg", "hclk_peri", 0, RK2928_CLKGATE_CON(3), 13, GFLAGS), + GATE(HCLK_OTG, "hclk_otg", "hclk_peri", 0, RK2928_CLKGATE_CON(5), 13, GFLAGS), GATE(0, "hclk_peri_ahb", "hclk_peri", CLK_IGNORE_UNUSED, RK2928_CLKGATE_CON(9), 14, GFLAGS), GATE(HCLK_SPDIF, "hclk_spdif", "hclk_peri", 0, RK2928_CLKGATE_CON(10), 9, GFLAGS), GATE(HCLK_TSP, "hclk_tsp", "hclk_peri", 0, RK2928_CLKGATE_CON(10), 12, GFLAGS), only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/socfpga/stratix10-clk.h +++ linux-xilinx-zynqmp-5.15.0/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 { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/ti/apll.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/ti/apll.c @@ -139,6 +139,7 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/ti/autoidle.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/ti/autoidle.c @@ -205,7 +205,7 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/ti/clock.h +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/ti/clock.h @@ -210,11 +210,12 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/ti/clockdomain.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/ti/clockdomain.c @@ -131,7 +131,7 @@ { 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/ti/composite.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/ti/composite.c @@ -125,6 +125,7 @@ struct component_clk *comp; int num_parents = 0; const char **parent_names = NULL; + const char *name; int i; int ret; @@ -172,7 +173,8 @@ 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 @@ &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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/ti/divider.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/ti/divider.c @@ -317,13 +317,14 @@ 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 @@ 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, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/ti/dpll.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/ti/dpll.c @@ -164,6 +164,7 @@ 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 @@ 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 @@ 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 @@ #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 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/ti/fapll.c +++ linux-xilinx-zynqmp-5.15.0/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 @@ 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 @@ 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 @@ 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 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/ti/fixed-factor.c +++ linux-xilinx-zynqmp-5.15.0/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 @@ 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", only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/ti/gate.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/ti/gate.c @@ -93,7 +93,7 @@ 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 @@ 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 @@ 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 @@ 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)) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/ti/interface.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/ti/interface.c @@ -32,7 +32,8 @@ .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 @@ 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 @@ 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 @@ 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)) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/ti/mux.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/ti/mux.c @@ -126,7 +126,7 @@ .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 @@ 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 @@ 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 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clk/zynqmp/clk-mux-zynqmp.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clk/zynqmp/clk-mux-zynqmp.c @@ -89,7 +89,7 @@ static const struct clk_ops zynqmp_clk_mux_ops = { .get_parent = zynqmp_clk_mux_get_parent, .set_parent = zynqmp_clk_mux_set_parent, - .determine_rate = __clk_mux_determine_rate, + .determine_rate = __clk_mux_determine_rate_closest, }; static const struct clk_ops zynqmp_clk_mux_ro_ops = { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clocksource/timer-atmel-tcb.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clocksource/timer-atmel-tcb.c @@ -315,6 +315,7 @@ 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)); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/clocksource/timer-imx-gpt.c +++ linux-xilinx-zynqmp-5.15.0/drivers/clocksource/timer-imx-gpt.c @@ -454,12 +454,16 @@ 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 @@ 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) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/cpufreq/cpufreq_stats.c +++ linux-xilinx-zynqmp-5.15.0/drivers/cpufreq/cpufreq_stats.c @@ -131,25 +131,25 @@ 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 @@ 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; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/cpufreq/imx-cpufreq-dt.c +++ linux-xilinx-zynqmp-5.15.0/drivers/cpufreq/imx-cpufreq-dt.c @@ -89,7 +89,7 @@ cpu_dev = get_cpu_device(0); - if (!of_find_property(cpu_dev->of_node, "cpu-supply", NULL)) + if (!of_property_present(cpu_dev->of_node, "cpu-supply")) return -ENODEV; if (of_machine_is_compatible("fsl,imx7ulp")) { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/cpufreq/imx6q-cpufreq.c +++ linux-xilinx-zynqmp-5.15.0/drivers/cpufreq/imx6q-cpufreq.c @@ -209,6 +209,14 @@ .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 @@ -222,7 +230,7 @@ u32 val; int ret; - if (of_find_property(dev->of_node, "nvmem-cells", NULL)) { + if (of_property_present(dev->of_node, "nvmem-cells")) { ret = nvmem_cell_read_u32(dev, "speed_grade", &val); if (ret) return ret; @@ -254,17 +262,15 @@ 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; @@ -279,7 +285,7 @@ u32 val; int ret = 0; - if (of_find_property(dev->of_node, "nvmem-cells", NULL)) { + if (of_property_present(dev->of_node, "nvmem-cells")) { ret = nvmem_cell_read_u32(dev, "speed_grade", &val); if (ret) return ret; @@ -316,20 +322,16 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/cpufreq/scmi-cpufreq.c +++ linux-xilinx-zynqmp-5.15.0/drivers/cpufreq/scmi-cpufreq.c @@ -299,8 +299,11 @@ #ifdef CONFIG_COMMON_CLK /* dummy clock provider as needed by OPP if clocks property is used */ - if (of_find_property(dev->of_node, "#clock-cells", NULL)) - devm_of_clk_add_hw_provider(dev, of_clk_hw_simple_get, NULL); + if (of_property_present(dev->of_node, "#clock-cells")) { + ret = devm_of_clk_add_hw_provider(dev, of_clk_hw_simple_get, NULL); + if (ret) + return dev_err_probe(dev, ret, "%s: registering clock provider failed\n", __func__); + } #endif ret = cpufreq_register_driver(&scmi_cpufreq_driver); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/cpufreq/tegra20-cpufreq.c +++ linux-xilinx-zynqmp-5.15.0/drivers/cpufreq/tegra20-cpufreq.c @@ -25,7 +25,7 @@ struct device_node *np = of_cpu_device_node_get(0); bool ret = false; - if (of_get_property(np, "operating-points-v2", NULL)) + if (of_property_present(np, "operating-points-v2")) ret = true; of_node_put(np); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/crypto/ccp/ccp-ops.c +++ linux-xilinx-zynqmp-5.15.0/drivers/crypto/ccp/ccp-ops.c @@ -179,8 +179,11 @@ wa->dma.address = dma_map_single(wa->dev, wa->address, len, dir); - if (dma_mapping_error(wa->dev, wa->dma.address)) + if (dma_mapping_error(wa->dev, wa->dma.address)) { + kfree(wa->address); + wa->address = NULL; return -ENOMEM; + } wa->dma.length = len; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/crypto/marvell/octeontx2/otx2_cptlf.c +++ linux-xilinx-zynqmp-5.15.0/drivers/crypto/marvell/octeontx2/otx2_cptlf.c @@ -414,8 +414,8 @@ return 0; free_iq: - otx2_cpt_free_instruction_queues(lfs); cptlf_hw_cleanup(lfs); + otx2_cpt_free_instruction_queues(lfs); detach_rsrcs: otx2_cpt_detach_rsrcs_msg(lfs); clear_lfs_num: @@ -425,9 +425,11 @@ void otx2_cptlf_shutdown(struct otx2_cptlfs_info *lfs) { - lfs->lfs_num = 0; /* Cleanup LFs hardware side */ cptlf_hw_cleanup(lfs); + /* Free instruction queues */ + otx2_cpt_free_instruction_queues(lfs); /* Send request to detach LFs */ otx2_cpt_detach_rsrcs_msg(lfs); + lfs->lfs_num = 0; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/crypto/marvell/octeontx2/otx2_cptvf_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/crypto/marvell/octeontx2/otx2_cptvf_main.c @@ -249,8 +249,11 @@ otx2_cptlf_unregister_interrupts(lfs); /* Cleanup LFs software side */ lf_sw_cleanup(lfs); + /* Free instruction queues */ + otx2_cpt_free_instruction_queues(lfs); /* Send request to detach LFs */ otx2_cpt_detach_rsrcs_msg(lfs); + lfs->lfs_num = 0; } static int cptvf_lf_init(struct otx2_cptvf_dev *cptvf) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/crypto/qat/qat_common/adf_transport_debug.c +++ linux-xilinx-zynqmp-5.15.0/drivers/crypto/qat/qat_common/adf_transport_debug.c @@ -90,7 +90,7 @@ 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 @@ { 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/crypto/sa2ul.c +++ linux-xilinx-zynqmp-5.15.0/drivers/crypto/sa2ul.c @@ -1868,9 +1868,8 @@ crypto_aead_set_flags(ctx->fallback.aead, crypto_aead_get_flags(authenc) & CRYPTO_TFM_REQ_MASK); - crypto_aead_setkey(ctx->fallback.aead, key, keylen); - return 0; + return crypto_aead_setkey(ctx->fallback.aead, key, keylen); } static int sa_aead_setauthsize(struct crypto_aead *tfm, unsigned int authsize) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/crypto/virtio/virtio_crypto_algs.c +++ linux-xilinx-zynqmp-5.15.0/drivers/crypto/virtio/virtio_crypto_algs.c @@ -255,7 +255,7 @@ vcrypto->ctrl_status.status, destroy_session->session_id); - return -EINVAL; + err = -EINVAL; } spin_unlock(&vcrypto->ctrl_lock); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/crypto/virtio/virtio_crypto_common.h +++ linux-xilinx-zynqmp-5.15.0/drivers/crypto/virtio/virtio_crypto_common.h @@ -10,6 +10,7 @@ #include #include #include +#include #include #include #include @@ -27,6 +28,7 @@ char name[32]; struct crypto_engine *engine; + struct tasklet_struct done_task; }; struct virtio_crypto { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/crypto/virtio/virtio_crypto_core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/crypto/virtio/virtio_crypto_core.c @@ -22,27 +22,28 @@ } } -static void virtcrypto_dataq_callback(struct virtqueue *vq) +static void virtcrypto_done_task(unsigned long data) { - struct virtio_crypto *vcrypto = vq->vdev->priv; + struct data_queue *data_vq = (struct data_queue *)data; + struct virtqueue *vq = data_vq->vq; struct virtio_crypto_request *vc_req; - unsigned long flags; unsigned int len; - unsigned int qid = vq->index; - spin_lock_irqsave(&vcrypto->data_vq[qid].lock, flags); do { virtqueue_disable_cb(vq); while ((vc_req = virtqueue_get_buf(vq, &len)) != NULL) { - spin_unlock_irqrestore( - &vcrypto->data_vq[qid].lock, flags); if (vc_req->alg_cb) vc_req->alg_cb(vc_req, len); - spin_lock_irqsave( - &vcrypto->data_vq[qid].lock, flags); } } while (!virtqueue_enable_cb(vq)); - spin_unlock_irqrestore(&vcrypto->data_vq[qid].lock, flags); +} + +static void virtcrypto_dataq_callback(struct virtqueue *vq) +{ + struct virtio_crypto *vcrypto = vq->vdev->priv; + struct data_queue *dq = &vcrypto->data_vq[vq->index]; + + tasklet_schedule(&dq->done_task); } static int virtcrypto_find_vqs(struct virtio_crypto *vi) @@ -99,6 +100,8 @@ ret = -ENOMEM; goto err_engine; } + tasklet_init(&vi->data_vq[i].done_task, virtcrypto_done_task, + (unsigned long)&vi->data_vq[i]); } kfree(names); @@ -431,11 +434,14 @@ static void virtcrypto_remove(struct virtio_device *vdev) { struct virtio_crypto *vcrypto = vdev->priv; + int i; dev_info(&vdev->dev, "Start virtcrypto_remove.\n"); if (virtcrypto_dev_started(vcrypto)) virtcrypto_dev_stop(vcrypto); + for (i = 0; i < vcrypto->max_data_queues; i++) + tasklet_kill(&vcrypto->data_vq[i].done_task); vdev->config->reset(vdev); virtcrypto_free_unused_reqs(vcrypto); virtcrypto_clear_crypto_engines(vcrypto); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/cxl/core/memdev.c +++ linux-xilinx-zynqmp-5.15.0/drivers/cxl/core/memdev.c @@ -139,10 +139,9 @@ 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); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/devfreq/event/rockchip-dfi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/devfreq/event/rockchip-dfi.c @@ -194,14 +194,15 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/dma-buf/dma-fence-unwrap.c +++ linux-xilinx-zynqmp-5.15.0/drivers/dma-buf/dma-fence-unwrap.c @@ -0,0 +1,176 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * dma-fence-util: misc functions for dma_fence objects + * + * Copyright (C) 2022 Advanced Micro Devices, Inc. + * Authors: + * Christian König + */ + +#include +#include +#include +#include +#include + +/* Internal helper to start new array iteration, don't use directly */ +static struct dma_fence * +__dma_fence_unwrap_array(struct dma_fence_unwrap *cursor) +{ + cursor->array = dma_fence_chain_contained(cursor->chain); + cursor->index = 0; + return dma_fence_array_first(cursor->array); +} + +/** + * dma_fence_unwrap_first - return the first fence from fence containers + * @head: the entrypoint into the containers + * @cursor: current position inside the containers + * + * Unwraps potential dma_fence_chain/dma_fence_array containers and return the + * first fence. + */ +struct dma_fence *dma_fence_unwrap_first(struct dma_fence *head, + struct dma_fence_unwrap *cursor) +{ + cursor->chain = dma_fence_get(head); + return __dma_fence_unwrap_array(cursor); +} +EXPORT_SYMBOL_GPL(dma_fence_unwrap_first); + +/** + * dma_fence_unwrap_next - return the next fence from a fence containers + * @cursor: current position inside the containers + * + * Continue unwrapping the dma_fence_chain/dma_fence_array containers and return + * the next fence from them. + */ +struct dma_fence *dma_fence_unwrap_next(struct dma_fence_unwrap *cursor) +{ + struct dma_fence *tmp; + + ++cursor->index; + tmp = dma_fence_array_next(cursor->array, cursor->index); + if (tmp) + return tmp; + + cursor->chain = dma_fence_chain_walk(cursor->chain); + return __dma_fence_unwrap_array(cursor); +} +EXPORT_SYMBOL_GPL(dma_fence_unwrap_next); + +/* Implementation for the dma_fence_merge() marco, don't use directly */ +struct dma_fence *__dma_fence_unwrap_merge(unsigned int num_fences, + struct dma_fence **fences, + struct dma_fence_unwrap *iter) +{ + struct dma_fence_array *result; + struct dma_fence *tmp, **array; + ktime_t timestamp; + unsigned int i; + size_t count; + + count = 0; + timestamp = ns_to_ktime(0); + for (i = 0; i < num_fences; ++i) { + dma_fence_unwrap_for_each(tmp, &iter[i], fences[i]) { + if (!dma_fence_is_signaled(tmp)) { + ++count; + } else { + ktime_t t = dma_fence_timestamp(tmp); + + if (ktime_after(t, timestamp)) + timestamp = t; + } + } + } + + /* + * If we couldn't find a pending fence just return a private signaled + * fence with the timestamp of the last signaled one. + */ + if (count == 0) + return dma_fence_allocate_private_stub(timestamp); + + array = kmalloc_array(count, sizeof(*array), GFP_KERNEL); + if (!array) + return NULL; + + /* + * This trashes the input fence array and uses it as position for the + * following merge loop. This works because the dma_fence_merge() + * wrapper macro is creating this temporary array on the stack together + * with the iterators. + */ + for (i = 0; i < num_fences; ++i) + fences[i] = dma_fence_unwrap_first(fences[i], &iter[i]); + + count = 0; + do { + unsigned int sel; + +restart: + tmp = NULL; + for (i = 0; i < num_fences; ++i) { + struct dma_fence *next; + + while (fences[i] && dma_fence_is_signaled(fences[i])) + fences[i] = dma_fence_unwrap_next(&iter[i]); + + next = fences[i]; + if (!next) + continue; + + /* + * We can't guarantee that inpute fences are ordered by + * context, but it is still quite likely when this + * function is used multiple times. So attempt to order + * the fences by context as we pass over them and merge + * fences with the same context. + */ + if (!tmp || tmp->context > next->context) { + tmp = next; + sel = i; + + } else if (tmp->context < next->context) { + continue; + + } else if (dma_fence_is_later(tmp, next)) { + fences[i] = dma_fence_unwrap_next(&iter[i]); + goto restart; + } else { + fences[sel] = dma_fence_unwrap_next(&iter[sel]); + goto restart; + } + } + + if (tmp) { + array[count++] = dma_fence_get(tmp); + fences[sel] = dma_fence_unwrap_next(&iter[sel]); + } + } while (tmp); + + if (count == 0) { + tmp = dma_fence_allocate_private_stub(ktime_get()); + goto return_tmp; + } + + if (count == 1) { + tmp = array[0]; + goto return_tmp; + } + + result = dma_fence_array_create(count, array, + dma_fence_context_alloc(1), + 1, false); + if (!result) { + tmp = NULL; + goto return_tmp; + } + return &result->base; + +return_tmp: + kfree(array); + return tmp; +} +EXPORT_SYMBOL_GPL(__dma_fence_unwrap_merge); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/dma-buf/sync_file.c +++ linux-xilinx-zynqmp-5.15.0/drivers/dma-buf/sync_file.c @@ -384,13 +384,10 @@ sizeof(info->driver_name)); info->status = dma_fence_get_status(fence); - while (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags) && - !test_bit(DMA_FENCE_FLAG_TIMESTAMP_BIT, &fence->flags)) - cpu_relax(); info->timestamp_ns = - test_bit(DMA_FENCE_FLAG_TIMESTAMP_BIT, &fence->flags) ? - ktime_to_ns(fence->timestamp) : - ktime_set(0, 0); + dma_fence_is_signaled(fence) ? + ktime_to_ns(dma_fence_timestamp(fence)) : + ktime_set(0, 0); return info->status; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/dma/fsl-dpaa2-qdma/dpaa2-qdma.c +++ linux-xilinx-zynqmp-5.15.0/drivers/dma/fsl-dpaa2-qdma/dpaa2-qdma.c @@ -38,15 +38,17 @@ if (!dpaa2_chan->fd_pool) goto err; - dpaa2_chan->fl_pool = dma_pool_create("fl_pool", dev, - sizeof(struct dpaa2_fl_entry), - sizeof(struct dpaa2_fl_entry), 0); + dpaa2_chan->fl_pool = + dma_pool_create("fl_pool", dev, + sizeof(struct dpaa2_fl_entry) * 3, + sizeof(struct dpaa2_fl_entry), 0); + if (!dpaa2_chan->fl_pool) goto err_fd; dpaa2_chan->sdd_pool = dma_pool_create("sdd_pool", dev, - sizeof(struct dpaa2_qdma_sd_d), + sizeof(struct dpaa2_qdma_sd_d) * 2, sizeof(struct dpaa2_qdma_sd_d), 0); if (!dpaa2_chan->sdd_pool) goto err_fl; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/dma/fsl-qdma.c +++ linux-xilinx-zynqmp-5.15.0/drivers/dma/fsl-qdma.c @@ -514,11 +514,11 @@ queue_temp = queue_head + i + (j * queue_num); queue_temp->cq = - dma_alloc_coherent(&pdev->dev, - sizeof(struct fsl_qdma_format) * - queue_size[i], - &queue_temp->bus_addr, - GFP_KERNEL); + dmam_alloc_coherent(&pdev->dev, + sizeof(struct fsl_qdma_format) * + queue_size[i], + &queue_temp->bus_addr, + GFP_KERNEL); if (!queue_temp->cq) return NULL; queue_temp->block_base = fsl_qdma->block_base + @@ -563,11 +563,11 @@ /* * Buffer for queue command */ - status_head->cq = dma_alloc_coherent(&pdev->dev, - sizeof(struct fsl_qdma_format) * - status_size, - &status_head->bus_addr, - GFP_KERNEL); + status_head->cq = dmam_alloc_coherent(&pdev->dev, + sizeof(struct fsl_qdma_format) * + status_size, + &status_head->bus_addr, + GFP_KERNEL); if (!status_head->cq) { devm_kfree(&pdev->dev, status_head); return NULL; @@ -1272,8 +1272,6 @@ static int fsl_qdma_remove(struct platform_device *pdev) { - int i; - struct fsl_qdma_queue *status; struct device_node *np = pdev->dev.of_node; struct fsl_qdma_engine *fsl_qdma = platform_get_drvdata(pdev); @@ -1282,11 +1280,6 @@ of_dma_controller_free(np); dma_async_device_unregister(&fsl_qdma->dma_dev); - for (i = 0; i < fsl_qdma->block_number; i++) { - status = fsl_qdma->status[i]; - dma_free_coherent(&pdev->dev, sizeof(struct fsl_qdma_format) * - status->n_cq, status->cq, status->bus_addr); - } return 0; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/dma/idxd/Makefile +++ linux-xilinx-zynqmp-5.15.0/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 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/dma/ti/edma.c +++ linux-xilinx-zynqmp-5.15.0/drivers/dma/ti/edma.c @@ -2459,7 +2459,7 @@ 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 @@ 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, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/edac/thunderx_edac.c +++ linux-xilinx-zynqmp-5.15.0/drivers/edac/thunderx_edac.c @@ -1133,7 +1133,7 @@ decode_register(other, OCX_OTHER_SIZE, ocx_com_errors, ctx->reg_com_int); - strncat(msg, other, OCX_MESSAGE_SIZE); + strlcat(msg, other, OCX_MESSAGE_SIZE); for (lane = 0; lane < OCX_RX_LANES; lane++) if (ctx->reg_com_int & BIT(lane)) { @@ -1142,12 +1142,12 @@ lane, ctx->reg_lane_int[lane], lane, ctx->reg_lane_stat11[lane]); - strncat(msg, other, OCX_MESSAGE_SIZE); + strlcat(msg, other, OCX_MESSAGE_SIZE); decode_register(other, OCX_OTHER_SIZE, ocx_lane_errors, ctx->reg_lane_int[lane]); - strncat(msg, other, OCX_MESSAGE_SIZE); + strlcat(msg, other, OCX_MESSAGE_SIZE); } if (ctx->reg_com_int & OCX_COM_INT_CE) @@ -1217,7 +1217,7 @@ decode_register(other, OCX_OTHER_SIZE, ocx_com_link_errors, ctx->reg_com_link_int); - strncat(msg, other, OCX_MESSAGE_SIZE); + strlcat(msg, other, OCX_MESSAGE_SIZE); if (ctx->reg_com_link_int & OCX_COM_LINK_INT_UE) edac_device_handle_ue(ocx->edac_dev, 0, 0, msg); @@ -1896,7 +1896,7 @@ decode_register(other, L2C_OTHER_SIZE, l2_errors, ctx->reg_int); - strncat(msg, other, L2C_MESSAGE_SIZE); + strlcat(msg, other, L2C_MESSAGE_SIZE); if (ctx->reg_int & mask_ue) edac_device_handle_ue(l2c->edac_dev, 0, 0, msg); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/firewire/core-device.c +++ linux-xilinx-zynqmp-5.15.0/drivers/firewire/core-device.c @@ -100,10 +100,9 @@ * @buf: where to put the string * @size: size of @buf, in bytes * - * The string is taken from a minimal ASCII text descriptor leaf after - * the immediate entry with @key. The string is zero-terminated. - * An overlong string is silently truncated such that it and the - * zero byte fit into @size. + * The string is taken from a minimal ASCII text descriptor leaf just after the entry with the + * @key. The string is zero-terminated. An overlong string is silently truncated such that it + * and the zero byte fit into @size. * * Returns strlen(buf) or a negative error code. */ @@ -719,14 +718,11 @@ 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; + } } } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/firewire/ohci.c +++ linux-xilinx-zynqmp-5.15.0/drivers/firewire/ohci.c @@ -279,6 +279,51 @@ #define QUIRK_TI_SLLZ059 0x20 #define QUIRK_IR_WAKE 0x40 +// On PCI Express Root Complex in any type of AMD Ryzen machine, VIA VT6306/6307/6308 with Asmedia +// ASM1083/1085 brings an inconvenience that the read accesses to 'Isochronous Cycle Timer' register +// (at offset 0xf0 in PCI I/O space) often causes unexpected system reboot. The mechanism is not +// clear, since the read access to the other registers is enough safe; e.g. 'Node ID' register, +// while it is probable due to detection of any type of PCIe error. +#define QUIRK_REBOOT_BY_CYCLE_TIMER_READ 0x80000000 + +#if IS_ENABLED(CONFIG_X86) + +static bool has_reboot_by_cycle_timer_read_quirk(const struct fw_ohci *ohci) +{ + return !!(ohci->quirks & QUIRK_REBOOT_BY_CYCLE_TIMER_READ); +} + +#define PCI_DEVICE_ID_ASMEDIA_ASM108X 0x1080 + +static bool detect_vt630x_with_asm1083_on_amd_ryzen_machine(const struct pci_dev *pdev) +{ + const struct pci_dev *pcie_to_pci_bridge; + + // Detect any type of AMD Ryzen machine. + if (!static_cpu_has(X86_FEATURE_ZEN)) + return false; + + // Detect VIA VT6306/6307/6308. + if (pdev->vendor != PCI_VENDOR_ID_VIA) + return false; + if (pdev->device != PCI_DEVICE_ID_VIA_VT630X) + return false; + + // Detect Asmedia ASM1083/1085. + pcie_to_pci_bridge = pdev->bus->self; + if (pcie_to_pci_bridge->vendor != PCI_VENDOR_ID_ASMEDIA) + return false; + if (pcie_to_pci_bridge->device != PCI_DEVICE_ID_ASMEDIA_ASM108X) + return false; + + return true; +} + +#else +#define has_reboot_by_cycle_timer_read_quirk(ohci) false +#define detect_vt630x_with_asm1083_on_amd_ryzen_machine(pdev) false +#endif + /* In case of multiple matches in ohci_quirks[], only the first one is used. */ static const struct { unsigned short vendor, device, revision, flags; @@ -1713,6 +1758,9 @@ s32 diff01, diff12; int i; + if (has_reboot_by_cycle_timer_read_quirk(ohci)) + return 0; + c2 = reg_read(ohci, OHCI1394_IsochronousCycleTimer); if (ohci->quirks & QUIRK_CYCLE_TIMER) { @@ -3615,6 +3663,9 @@ if (param_quirks) ohci->quirks = param_quirks; + if (detect_vt630x_with_asm1083_on_amd_ryzen_machine(dev)) + ohci->quirks |= QUIRK_REBOOT_BY_CYCLE_TIMER_READ; + /* * Because dma_alloc_coherent() allocates at least one page, * we save space by using a common buffer for the AR request/ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/firmware/ti_sci.c +++ linux-xilinx-zynqmp-5.15.0/drivers/firmware/ti_sci.c @@ -161,7 +161,7 @@ { struct device *dev = &pdev->dev; struct resource *res; - char debug_name[50] = "ti_sci_debug@"; + char debug_name[50]; /* Debug region is optional */ res = platform_get_resource_byname(pdev, IORESOURCE_MEM, @@ -178,10 +178,10 @@ /* Setup NULL termination */ info->debug_buffer[info->debug_region_size] = 0; - info->d = debugfs_create_file(strncat(debug_name, dev_name(dev), - sizeof(debug_name) - - sizeof("ti_sci_debug@")), - 0444, NULL, info, &ti_sci_debug_fops); + snprintf(debug_name, sizeof(debug_name), "ti_sci_debug@%s", + dev_name(dev)); + info->d = debugfs_create_file(debug_name, 0444, NULL, info, + &ti_sci_debug_fops); if (IS_ERR(info->d)) return PTR_ERR(info->d); @@ -190,19 +190,6 @@ 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 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpio/gpio-eic-sprd.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpio/gpio-eic-sprd.c @@ -318,20 +318,27 @@ switch (flow_type) { case IRQ_TYPE_LEVEL_HIGH: sprd_eic_update(chip, offset, SPRD_EIC_DBNC_IEV, 1); + sprd_eic_update(chip, offset, SPRD_EIC_DBNC_IC, 1); break; case IRQ_TYPE_LEVEL_LOW: sprd_eic_update(chip, offset, SPRD_EIC_DBNC_IEV, 0); + sprd_eic_update(chip, offset, SPRD_EIC_DBNC_IC, 1); break; case IRQ_TYPE_EDGE_RISING: case IRQ_TYPE_EDGE_FALLING: case IRQ_TYPE_EDGE_BOTH: state = sprd_eic_get(chip, offset); - if (state) + if (state) { sprd_eic_update(chip, offset, SPRD_EIC_DBNC_IEV, 0); - else + sprd_eic_update(chip, offset, + SPRD_EIC_DBNC_IC, 1); + } else { sprd_eic_update(chip, offset, SPRD_EIC_DBNC_IEV, 1); + sprd_eic_update(chip, offset, + SPRD_EIC_DBNC_IC, 1); + } break; default: return -ENOTSUPP; @@ -343,20 +350,27 @@ switch (flow_type) { case IRQ_TYPE_LEVEL_HIGH: sprd_eic_update(chip, offset, SPRD_EIC_LATCH_INTPOL, 0); + sprd_eic_update(chip, offset, SPRD_EIC_LATCH_INTCLR, 1); break; case IRQ_TYPE_LEVEL_LOW: sprd_eic_update(chip, offset, SPRD_EIC_LATCH_INTPOL, 1); + sprd_eic_update(chip, offset, SPRD_EIC_LATCH_INTCLR, 1); break; case IRQ_TYPE_EDGE_RISING: case IRQ_TYPE_EDGE_FALLING: case IRQ_TYPE_EDGE_BOTH: state = sprd_eic_get(chip, offset); - if (state) + if (state) { sprd_eic_update(chip, offset, SPRD_EIC_LATCH_INTPOL, 0); - else + sprd_eic_update(chip, offset, + SPRD_EIC_LATCH_INTCLR, 1); + } else { sprd_eic_update(chip, offset, SPRD_EIC_LATCH_INTPOL, 1); + sprd_eic_update(chip, offset, + SPRD_EIC_LATCH_INTCLR, 1); + } break; default: return -ENOTSUPP; @@ -370,29 +384,34 @@ sprd_eic_update(chip, offset, SPRD_EIC_ASYNC_INTBOTH, 0); sprd_eic_update(chip, offset, SPRD_EIC_ASYNC_INTMODE, 0); sprd_eic_update(chip, offset, SPRD_EIC_ASYNC_INTPOL, 1); + sprd_eic_update(chip, offset, SPRD_EIC_ASYNC_INTCLR, 1); irq_set_handler_locked(data, handle_edge_irq); break; case IRQ_TYPE_EDGE_FALLING: sprd_eic_update(chip, offset, SPRD_EIC_ASYNC_INTBOTH, 0); sprd_eic_update(chip, offset, SPRD_EIC_ASYNC_INTMODE, 0); sprd_eic_update(chip, offset, SPRD_EIC_ASYNC_INTPOL, 0); + sprd_eic_update(chip, offset, SPRD_EIC_ASYNC_INTCLR, 1); irq_set_handler_locked(data, handle_edge_irq); break; case IRQ_TYPE_EDGE_BOTH: sprd_eic_update(chip, offset, SPRD_EIC_ASYNC_INTMODE, 0); sprd_eic_update(chip, offset, SPRD_EIC_ASYNC_INTBOTH, 1); + sprd_eic_update(chip, offset, SPRD_EIC_ASYNC_INTCLR, 1); irq_set_handler_locked(data, handle_edge_irq); break; case IRQ_TYPE_LEVEL_HIGH: sprd_eic_update(chip, offset, SPRD_EIC_ASYNC_INTBOTH, 0); sprd_eic_update(chip, offset, SPRD_EIC_ASYNC_INTMODE, 1); sprd_eic_update(chip, offset, SPRD_EIC_ASYNC_INTPOL, 1); + sprd_eic_update(chip, offset, SPRD_EIC_ASYNC_INTCLR, 1); irq_set_handler_locked(data, handle_level_irq); break; case IRQ_TYPE_LEVEL_LOW: sprd_eic_update(chip, offset, SPRD_EIC_ASYNC_INTBOTH, 0); sprd_eic_update(chip, offset, SPRD_EIC_ASYNC_INTMODE, 1); sprd_eic_update(chip, offset, SPRD_EIC_ASYNC_INTPOL, 0); + sprd_eic_update(chip, offset, SPRD_EIC_ASYNC_INTCLR, 1); irq_set_handler_locked(data, handle_level_irq); break; default: @@ -405,29 +424,34 @@ sprd_eic_update(chip, offset, SPRD_EIC_SYNC_INTBOTH, 0); sprd_eic_update(chip, offset, SPRD_EIC_SYNC_INTMODE, 0); sprd_eic_update(chip, offset, SPRD_EIC_SYNC_INTPOL, 1); + sprd_eic_update(chip, offset, SPRD_EIC_SYNC_INTCLR, 1); irq_set_handler_locked(data, handle_edge_irq); break; case IRQ_TYPE_EDGE_FALLING: sprd_eic_update(chip, offset, SPRD_EIC_SYNC_INTBOTH, 0); sprd_eic_update(chip, offset, SPRD_EIC_SYNC_INTMODE, 0); sprd_eic_update(chip, offset, SPRD_EIC_SYNC_INTPOL, 0); + sprd_eic_update(chip, offset, SPRD_EIC_SYNC_INTCLR, 1); irq_set_handler_locked(data, handle_edge_irq); break; case IRQ_TYPE_EDGE_BOTH: sprd_eic_update(chip, offset, SPRD_EIC_SYNC_INTMODE, 0); sprd_eic_update(chip, offset, SPRD_EIC_SYNC_INTBOTH, 1); + sprd_eic_update(chip, offset, SPRD_EIC_SYNC_INTCLR, 1); irq_set_handler_locked(data, handle_edge_irq); break; case IRQ_TYPE_LEVEL_HIGH: sprd_eic_update(chip, offset, SPRD_EIC_SYNC_INTBOTH, 0); sprd_eic_update(chip, offset, SPRD_EIC_SYNC_INTMODE, 1); sprd_eic_update(chip, offset, SPRD_EIC_SYNC_INTPOL, 1); + sprd_eic_update(chip, offset, SPRD_EIC_SYNC_INTCLR, 1); irq_set_handler_locked(data, handle_level_irq); break; case IRQ_TYPE_LEVEL_LOW: sprd_eic_update(chip, offset, SPRD_EIC_SYNC_INTBOTH, 0); sprd_eic_update(chip, offset, SPRD_EIC_SYNC_INTMODE, 1); sprd_eic_update(chip, offset, SPRD_EIC_SYNC_INTPOL, 0); + sprd_eic_update(chip, offset, SPRD_EIC_SYNC_INTCLR, 1); irq_set_handler_locked(data, handle_level_irq); break; default: only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpio/gpio-timberdale.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpio/gpio-timberdale.c @@ -43,9 +43,10 @@ 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 @@ reg &= ~(1 << index); iowrite32(reg, tgpio->membase + offset); - spin_unlock(&tgpio->lock); + spin_unlock_irqrestore(&tgpio->lock, flags); return 0; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_fence.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_fence.c @@ -90,7 +90,7 @@ return NULL; fence = container_of(f, struct amdgpu_amdkfd_fence, base); - if (fence && f->ops == &amdkfd_fence_ops) + if (f->ops == &amdkfd_fence_ops) return fence; return NULL; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c @@ -1192,7 +1192,8 @@ { 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 @@ .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 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_sync.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_sync.c @@ -208,7 +208,8 @@ /* Never sync to VM updates either. */ if (fence_owner == AMDGPU_FENCE_OWNER_VM && - owner != AMDGPU_FENCE_OWNER_UNDEFINED) + owner != AMDGPU_FENCE_OWNER_UNDEFINED && + owner != AMDGPU_FENCE_OWNER_KFD) return false; /* Ignore fences depending on the sync mode */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/amd/display/dc/core/dc_stream.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/display/dc/core/dc_stream.c @@ -562,7 +562,7 @@ 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 @@ 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, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/amd/include/pptable.h +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/include/pptable.h @@ -78,7 +78,7 @@ typedef struct _ATOM_PPLIB_STATE { UCHAR ucNonClockStateIndex; - UCHAR ucClockStateIndices[1]; // variable-sized + UCHAR ucClockStateIndices[]; // variable-sized } ATOM_PPLIB_STATE; @@ -473,7 +473,7 @@ /** * Driver will read the first ucNumDPMLevels in this array */ - UCHAR clockInfoIndex[1]; + UCHAR clockInfoIndex[]; } ATOM_PPLIB_STATE_V2; typedef struct _StateArray{ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/amd/pm/powerplay/hwmgr/pptable_v1_0.h +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/pm/powerplay/hwmgr/pptable_v1_0.h @@ -164,7 +164,7 @@ 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_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_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_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_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_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_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_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 { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/amd/pm/powerplay/hwmgr/process_pptables_v1_0.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/amd/pm/powerplay/hwmgr/process_pptables_v1_0.c @@ -200,7 +200,7 @@ struct pp_hwmgr *hwmgr, ATOM_Tonga_PPM_Table *atom_ppm_table) { - struct phm_ppm_table *ptr = kzalloc(sizeof(ATOM_Tonga_PPM_Table), GFP_KERNEL); + struct phm_ppm_table *ptr = kzalloc(sizeof(*ptr), GFP_KERNEL); struct phm_ppt_v1_information *pp_table_information = (struct phm_ppt_v1_information *)(hwmgr->pptable); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/arm/display/komeda/komeda_pipeline_state.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/arm/display/komeda/komeda_pipeline_state.c @@ -1223,7 +1223,7 @@ return 0; } -static void +static int komeda_pipeline_unbound_components(struct komeda_pipeline *pipe, struct komeda_pipeline_state *new) { @@ -1243,8 +1243,12 @@ 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 @@ 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 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/bridge/cadence/cdns-mhdp8546-hdcp.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/bridge/cadence/cdns-mhdp8546-hdcp.c @@ -403,7 +403,8 @@ static int _cdns_mhdp_hdcp_enable(struct cdns_mhdp_device *mhdp, u8 content_type) { - int ret, tries = 3; + int ret = -EINVAL; + int tries = 3; u32 i; for (i = 0; i < tries; i++) { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/bridge/nxp-ptn3460.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/bridge/nxp-ptn3460.c @@ -54,13 +54,13 @@ int ret; ret = i2c_master_send(ptn_bridge->client, &addr, 1); - if (ret <= 0) { + if (ret < 0) { DRM_ERROR("Failed to send i2c command, ret=%d\n", ret); return ret; } ret = i2c_master_recv(ptn_bridge->client, buf, len); - if (ret <= 0) { + if (ret < 0) { DRM_ERROR("Failed to recv i2c data, ret=%d\n", ret); return ret; } @@ -78,7 +78,7 @@ buf[1] = val; ret = i2c_master_send(ptn_bridge->client, buf, ARRAY_SIZE(buf)); - if (ret <= 0) { + if (ret < 0) { DRM_ERROR("Failed to send i2c command, ret=%d\n", ret); return ret; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/bridge/ti-tpd12s015.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/bridge/ti-tpd12s015.c @@ -179,7 +179,7 @@ return 0; } -static int __exit tpd12s015_remove(struct platform_device *pdev) +static int tpd12s015_remove(struct platform_device *pdev) { struct tpd12s015_device *tpd = platform_get_drvdata(pdev); @@ -197,7 +197,7 @@ static struct platform_driver tpd12s015_driver = { .probe = tpd12s015_probe, - .remove = __exit_p(tpd12s015_remove), + .remove = tpd12s015_remove, .driver = { .name = "tpd12s015", .of_match_table = tpd12s015_of_match, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/drm_crtc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_crtc.c @@ -643,8 +643,7 @@ struct drm_mode_set set; uint32_t __user *set_connectors_ptr; struct drm_modeset_acquire_ctx ctx; - int ret; - int i; + int ret, i, num_connectors = 0; if (!drm_core_check_feature(dev, DRIVER_MODESET)) return -EOPNOTSUPP; @@ -799,6 +798,7 @@ connector->name); connector_set[i] = connector; + num_connectors++; } } @@ -807,7 +807,7 @@ set.y = crtc_req->y; set.mode = mode; set.connectors = connector_set; - set.num_connectors = crtc_req->count_connectors; + set.num_connectors = num_connectors; set.fb = fb; if (drm_drv_uses_atomic_modeset(dev)) @@ -820,7 +820,7 @@ drm_framebuffer_put(fb); if (connector_set) { - for (i = 0; i < crtc_req->count_connectors; i++) { + for (i = 0; i < num_connectors; i++) { if (connector_set[i]) drm_connector_put(connector_set[i]); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/drm_file.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/drm_file.c @@ -411,7 +411,7 @@ { struct drm_device *dev; struct drm_minor *minor; - int retcode; + int retcode = 0; int need_setup = 0; minor = drm_minor_acquire(iminor(inode)); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/exynos/exynos5433_drm_decon.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/exynos/exynos5433_drm_decon.c @@ -317,9 +317,9 @@ static void decon_win_set_pixfmt(struct decon_context *ctx, unsigned int win, struct drm_framebuffer *fb) { - struct exynos_drm_plane plane = ctx->planes[win]; + struct exynos_drm_plane *plane = &ctx->planes[win]; struct exynos_drm_plane_state *state = - to_exynos_plane_state(plane.base.state); + to_exynos_plane_state(plane->base.state); unsigned int alpha = state->base.alpha; unsigned int pixel_alpha; unsigned long val; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/exynos/exynos_drm_dma.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/exynos/exynos_drm_dma.c @@ -108,18 +108,16 @@ return 0; if (!priv->mapping) { - void *mapping; + void *mapping = NULL; if (IS_ENABLED(CONFIG_ARM_DMA_USE_IOMMU)) mapping = arm_iommu_create_mapping(&platform_bus_type, EXYNOS_DEV_ADDR_START, EXYNOS_DEV_ADDR_SIZE); else if (IS_ENABLED(CONFIG_IOMMU_DMA)) mapping = iommu_get_domain_for_dev(priv->dma_dev); - else - mapping = ERR_PTR(-ENODEV); - if (IS_ERR(mapping)) - return PTR_ERR(mapping); + if (!mapping) + return -ENODEV; priv->mapping = mapping; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/exynos/exynos_drm_drv.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/exynos/exynos_drm_drv.c @@ -324,6 +324,7 @@ drm_mode_config_cleanup(drm); exynos_drm_cleanup_dma(drm); kfree(private); + dev_set_drvdata(dev, NULL); err_free_drm: drm_dev_put(drm); @@ -338,6 +339,7 @@ exynos_drm_fbdev_fini(drm); drm_kms_helper_poll_fini(drm); + drm_atomic_helper_shutdown(drm); component_unbind_all(drm->dev, drm); drm_mode_config_cleanup(drm); @@ -375,9 +377,18 @@ return 0; } +static void exynos_drm_platform_shutdown(struct platform_device *pdev) +{ + struct drm_device *drm = platform_get_drvdata(pdev); + + if (drm) + drm_atomic_helper_shutdown(drm); +} + static struct platform_driver exynos_drm_platform_driver = { .probe = exynos_drm_platform_probe, .remove = exynos_drm_platform_remove, + .shutdown = exynos_drm_platform_shutdown, .driver = { .name = "exynos-drm", .pm = &exynos_drm_pm_ops, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/exynos/exynos_drm_fimd.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/exynos/exynos_drm_fimd.c @@ -644,9 +644,9 @@ static void fimd_win_set_pixfmt(struct fimd_context *ctx, unsigned int win, struct drm_framebuffer *fb, int width) { - struct exynos_drm_plane plane = ctx->planes[win]; + struct exynos_drm_plane *plane = &ctx->planes[win]; struct exynos_drm_plane_state *state = - to_exynos_plane_state(plane.base.state); + to_exynos_plane_state(plane->base.state); uint32_t pixel_format = fb->format->format; unsigned int alpha = state->base.alpha; u32 val = WINCONx_ENWIN; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/exynos/exynos_drm_gsc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/exynos/exynos_drm_gsc.c @@ -1346,7 +1346,7 @@ for (i = 0; i < ctx->num_clocks; i++) { ret = clk_prepare_enable(ctx->clocks[i]); if (ret) { - while (--i > 0) + while (--i >= 0) clk_disable_unprepare(ctx->clocks[i]); return ret; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/exynos/exynos_hdmi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/exynos/exynos_hdmi.c @@ -1861,6 +1861,8 @@ return ret; crtc = exynos_drm_crtc_get_by_type(drm_dev, EXYNOS_DISPLAY_TYPE_HDMI); + if (IS_ERR(crtc)) + return PTR_ERR(crtc); crtc->pipe_clk = &hdata->phy_clk; ret = hdmi_create_connector(encoder); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/i915/display/intel_atomic.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_atomic.c @@ -40,6 +40,7 @@ #include "intel_global_state.h" #include "intel_hdcp.h" #include "intel_psr.h" +#include "intel_fb.h" #include "skl_universal_plane.h" /** @@ -310,198 +311,6 @@ kfree(crtc_state); } -static void intel_atomic_setup_scaler(struct intel_crtc_scaler_state *scaler_state, - int num_scalers_need, struct intel_crtc *intel_crtc, - const char *name, int idx, - struct intel_plane_state *plane_state, - int *scaler_id) -{ - struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev); - int j; - u32 mode; - - if (*scaler_id < 0) { - /* find a free scaler */ - for (j = 0; j < intel_crtc->num_scalers; j++) { - if (scaler_state->scalers[j].in_use) - continue; - - *scaler_id = j; - scaler_state->scalers[*scaler_id].in_use = 1; - break; - } - } - - if (drm_WARN(&dev_priv->drm, *scaler_id < 0, - "Cannot find scaler for %s:%d\n", name, idx)) - return; - - /* set scaler mode */ - if (plane_state && plane_state->hw.fb && - plane_state->hw.fb->format->is_yuv && - plane_state->hw.fb->format->num_planes > 1) { - struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane); - if (DISPLAY_VER(dev_priv) == 9) { - mode = SKL_PS_SCALER_MODE_NV12; - } else if (icl_is_hdr_plane(dev_priv, plane->id)) { - /* - * On gen11+'s HDR planes we only use the scaler for - * scaling. They have a dedicated chroma upsampler, so - * we don't need the scaler to upsample the UV plane. - */ - mode = PS_SCALER_MODE_NORMAL; - } else { - struct intel_plane *linked = - plane_state->planar_linked_plane; - - mode = PS_SCALER_MODE_PLANAR; - - if (linked) - mode |= PS_PLANE_Y_SEL(linked->id); - } - } else if (DISPLAY_VER(dev_priv) >= 10) { - mode = PS_SCALER_MODE_NORMAL; - } else if (num_scalers_need == 1 && intel_crtc->num_scalers > 1) { - /* - * when only 1 scaler is in use on a pipe with 2 scalers - * scaler 0 operates in high quality (HQ) mode. - * In this case use scaler 0 to take advantage of HQ mode - */ - scaler_state->scalers[*scaler_id].in_use = 0; - *scaler_id = 0; - scaler_state->scalers[0].in_use = 1; - mode = SKL_PS_SCALER_MODE_HQ; - } else { - mode = SKL_PS_SCALER_MODE_DYN; - } - - drm_dbg_kms(&dev_priv->drm, "Attached scaler id %u.%u to %s:%d\n", - intel_crtc->pipe, *scaler_id, name, idx); - scaler_state->scalers[*scaler_id].mode = mode; -} - -/** - * intel_atomic_setup_scalers() - setup scalers for crtc per staged requests - * @dev_priv: i915 device - * @intel_crtc: intel crtc - * @crtc_state: incoming crtc_state to validate and setup scalers - * - * This function sets up scalers based on staged scaling requests for - * a @crtc and its planes. It is called from crtc level check path. If request - * is a supportable request, it attaches scalers to requested planes and crtc. - * - * This function takes into account the current scaler(s) in use by any planes - * not being part of this atomic state - * - * Returns: - * 0 - scalers were setup succesfully - * error code - otherwise - */ -int intel_atomic_setup_scalers(struct drm_i915_private *dev_priv, - struct intel_crtc *intel_crtc, - struct intel_crtc_state *crtc_state) -{ - struct drm_plane *plane = NULL; - struct intel_plane *intel_plane; - struct intel_plane_state *plane_state = NULL; - struct intel_crtc_scaler_state *scaler_state = - &crtc_state->scaler_state; - struct drm_atomic_state *drm_state = crtc_state->uapi.state; - struct intel_atomic_state *intel_state = to_intel_atomic_state(drm_state); - int num_scalers_need; - int i; - - num_scalers_need = hweight32(scaler_state->scaler_users); - - /* - * High level flow: - * - staged scaler requests are already in scaler_state->scaler_users - * - check whether staged scaling requests can be supported - * - add planes using scalers that aren't in current transaction - * - assign scalers to requested users - * - as part of plane commit, scalers will be committed - * (i.e., either attached or detached) to respective planes in hw - * - as part of crtc_commit, scaler will be either attached or detached - * to crtc in hw - */ - - /* fail if required scalers > available scalers */ - if (num_scalers_need > intel_crtc->num_scalers){ - drm_dbg_kms(&dev_priv->drm, - "Too many scaling requests %d > %d\n", - num_scalers_need, intel_crtc->num_scalers); - return -EINVAL; - } - - /* walkthrough scaler_users bits and start assigning scalers */ - for (i = 0; i < sizeof(scaler_state->scaler_users) * 8; i++) { - int *scaler_id; - const char *name; - int idx; - - /* skip if scaler not required */ - if (!(scaler_state->scaler_users & (1 << i))) - continue; - - if (i == SKL_CRTC_INDEX) { - name = "CRTC"; - idx = intel_crtc->base.base.id; - - /* panel fitter case: assign as a crtc scaler */ - scaler_id = &scaler_state->scaler_id; - } else { - name = "PLANE"; - - /* plane scaler case: assign as a plane scaler */ - /* find the plane that set the bit as scaler_user */ - plane = drm_state->planes[i].ptr; - - /* - * to enable/disable hq mode, add planes that are using scaler - * into this transaction - */ - if (!plane) { - struct drm_plane_state *state; - - /* - * GLK+ scalers don't have a HQ mode so it - * isn't necessary to change between HQ and dyn mode - * on those platforms. - */ - if (DISPLAY_VER(dev_priv) >= 10) - continue; - - plane = drm_plane_from_index(&dev_priv->drm, i); - state = drm_atomic_get_plane_state(drm_state, plane); - if (IS_ERR(state)) { - drm_dbg_kms(&dev_priv->drm, - "Failed to add [PLANE:%d] to drm_state\n", - plane->base.id); - return PTR_ERR(state); - } - } - - intel_plane = to_intel_plane(plane); - idx = plane->base.id; - - /* plane on different crtc cannot be a scaler user of this crtc */ - if (drm_WARN_ON(&dev_priv->drm, - intel_plane->pipe != intel_crtc->pipe)) - continue; - - plane_state = intel_atomic_get_new_plane_state(intel_state, - intel_plane); - scaler_id = &plane_state->scaler_id; - } - - intel_atomic_setup_scaler(scaler_state, num_scalers_need, - intel_crtc, name, idx, - plane_state, scaler_id); - } - - return 0; -} - struct drm_atomic_state * intel_atomic_state_alloc(struct drm_device *dev) { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/i915/display/intel_atomic.h +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_atomic.h @@ -54,8 +54,4 @@ intel_atomic_get_crtc_state(struct drm_atomic_state *state, struct intel_crtc *crtc); -int intel_atomic_setup_scalers(struct drm_i915_private *dev_priv, - struct intel_crtc *intel_crtc, - struct intel_crtc_state *crtc_state); - #endif /* __INTEL_ATOMIC_H__ */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/i915/display/intel_crt.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_crt.c @@ -343,8 +343,13 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/i915/display/intel_dvo.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_dvo.c @@ -220,14 +220,20 @@ } 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/i915/display/intel_tv.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/intel_tv.c @@ -955,8 +955,14 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/i915/display/skl_scaler.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/skl_scaler.c @@ -294,6 +294,263 @@ return 0; } +static int intel_atomic_setup_scaler(struct intel_crtc_scaler_state *scaler_state, + int num_scalers_need, struct intel_crtc *intel_crtc, + const char *name, int idx, + struct intel_plane_state *plane_state, + int *scaler_id) +{ + struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev); + int j; + u32 mode; + + if (*scaler_id < 0) { + /* find a free scaler */ + for (j = 0; j < intel_crtc->num_scalers; j++) { + if (scaler_state->scalers[j].in_use) + continue; + + *scaler_id = j; + scaler_state->scalers[*scaler_id].in_use = 1; + break; + } + } + + if (drm_WARN(&dev_priv->drm, *scaler_id < 0, + "Cannot find scaler for %s:%d\n", name, idx)) + return -EINVAL; + + /* set scaler mode */ + if (plane_state && plane_state->hw.fb && + plane_state->hw.fb->format->is_yuv && + plane_state->hw.fb->format->num_planes > 1) { + struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane); + + if (DISPLAY_VER(dev_priv) == 9) { + mode = SKL_PS_SCALER_MODE_NV12; + } else if (icl_is_hdr_plane(dev_priv, plane->id)) { + /* + * On gen11+'s HDR planes we only use the scaler for + * scaling. They have a dedicated chroma upsampler, so + * we don't need the scaler to upsample the UV plane. + */ + mode = PS_SCALER_MODE_NORMAL; + } else { + struct intel_plane *linked = + plane_state->planar_linked_plane; + + mode = PS_SCALER_MODE_PLANAR; + + if (linked) + mode |= PS_PLANE_Y_SEL(linked->id); + } + } else if (DISPLAY_VER(dev_priv) >= 10) { + mode = PS_SCALER_MODE_NORMAL; + } else if (num_scalers_need == 1 && intel_crtc->num_scalers > 1) { + /* + * when only 1 scaler is in use on a pipe with 2 scalers + * scaler 0 operates in high quality (HQ) mode. + * In this case use scaler 0 to take advantage of HQ mode + */ + scaler_state->scalers[*scaler_id].in_use = 0; + *scaler_id = 0; + scaler_state->scalers[0].in_use = 1; + mode = SKL_PS_SCALER_MODE_HQ; + } else { + mode = SKL_PS_SCALER_MODE_DYN; + } + + /* + * FIXME: we should also check the scaler factors for pfit, so + * this shouldn't be tied directly to planes. + */ + if (plane_state && plane_state->hw.fb) { + const struct drm_framebuffer *fb = plane_state->hw.fb; + const struct drm_rect *src = &plane_state->uapi.src; + const struct drm_rect *dst = &plane_state->uapi.dst; + int hscale, vscale, max_vscale, max_hscale; + + /* + * FIXME: When two scalers are needed, but only one of + * them needs to downscale, we should make sure that + * the one that needs downscaling support is assigned + * as the first scaler, so we don't reject downscaling + * unnecessarily. + */ + + if (DISPLAY_VER(dev_priv) >= 14) { + /* + * On versions 14 and up, only the first + * scaler supports a vertical scaling factor + * of more than 1.0, while a horizontal + * scaling factor of 3.0 is supported. + */ + max_hscale = 0x30000 - 1; + if (*scaler_id == 0) + max_vscale = 0x30000 - 1; + else + max_vscale = 0x10000; + + } else if (DISPLAY_VER(dev_priv) >= 10 || + !intel_format_info_is_yuv_semiplanar(fb->format, fb->modifier)) { + max_hscale = 0x30000 - 1; + max_vscale = 0x30000 - 1; + } else { + max_hscale = 0x20000 - 1; + max_vscale = 0x20000 - 1; + } + + /* + * FIXME: We should change the if-else block above to + * support HQ vs dynamic scaler properly. + */ + + /* Check if required scaling is within limits */ + hscale = drm_rect_calc_hscale(src, dst, 1, max_hscale); + vscale = drm_rect_calc_vscale(src, dst, 1, max_vscale); + + if (hscale < 0 || vscale < 0) { + drm_dbg_kms(&dev_priv->drm, + "Scaler %d doesn't support required plane scaling\n", + *scaler_id); + drm_rect_debug_print("src: ", src, true); + drm_rect_debug_print("dst: ", dst, false); + + return -EINVAL; + } + } + + drm_dbg_kms(&dev_priv->drm, "Attached scaler id %u.%u to %s:%d\n", + intel_crtc->pipe, *scaler_id, name, idx); + scaler_state->scalers[*scaler_id].mode = mode; + + return 0; +} + +/** + * intel_atomic_setup_scalers() - setup scalers for crtc per staged requests + * @dev_priv: i915 device + * @intel_crtc: intel crtc + * @crtc_state: incoming crtc_state to validate and setup scalers + * + * This function sets up scalers based on staged scaling requests for + * a @crtc and its planes. It is called from crtc level check path. If request + * is a supportable request, it attaches scalers to requested planes and crtc. + * + * This function takes into account the current scaler(s) in use by any planes + * not being part of this atomic state + * + * Returns: + * 0 - scalers were setup successfully + * error code - otherwise + */ +int intel_atomic_setup_scalers(struct drm_i915_private *dev_priv, + struct intel_crtc *intel_crtc, + struct intel_crtc_state *crtc_state) +{ + struct drm_plane *plane = NULL; + struct intel_plane *intel_plane; + struct intel_crtc_scaler_state *scaler_state = + &crtc_state->scaler_state; + struct drm_atomic_state *drm_state = crtc_state->uapi.state; + struct intel_atomic_state *intel_state = to_intel_atomic_state(drm_state); + int num_scalers_need; + int i; + + num_scalers_need = hweight32(scaler_state->scaler_users); + + /* + * High level flow: + * - staged scaler requests are already in scaler_state->scaler_users + * - check whether staged scaling requests can be supported + * - add planes using scalers that aren't in current transaction + * - assign scalers to requested users + * - as part of plane commit, scalers will be committed + * (i.e., either attached or detached) to respective planes in hw + * - as part of crtc_commit, scaler will be either attached or detached + * to crtc in hw + */ + + /* fail if required scalers > available scalers */ + if (num_scalers_need > intel_crtc->num_scalers) { + drm_dbg_kms(&dev_priv->drm, + "Too many scaling requests %d > %d\n", + num_scalers_need, intel_crtc->num_scalers); + return -EINVAL; + } + + /* walkthrough scaler_users bits and start assigning scalers */ + for (i = 0; i < sizeof(scaler_state->scaler_users) * 8; i++) { + struct intel_plane_state *plane_state = NULL; + int *scaler_id; + const char *name; + int idx, ret; + + /* skip if scaler not required */ + if (!(scaler_state->scaler_users & (1 << i))) + continue; + + if (i == SKL_CRTC_INDEX) { + name = "CRTC"; + idx = intel_crtc->base.base.id; + + /* panel fitter case: assign as a crtc scaler */ + scaler_id = &scaler_state->scaler_id; + } else { + name = "PLANE"; + + /* plane scaler case: assign as a plane scaler */ + /* find the plane that set the bit as scaler_user */ + plane = drm_state->planes[i].ptr; + + /* + * to enable/disable hq mode, add planes that are using scaler + * into this transaction + */ + if (!plane) { + struct drm_plane_state *state; + + /* + * GLK+ scalers don't have a HQ mode so it + * isn't necessary to change between HQ and dyn mode + * on those platforms. + */ + if (DISPLAY_VER(dev_priv) >= 10) + continue; + + plane = drm_plane_from_index(&dev_priv->drm, i); + state = drm_atomic_get_plane_state(drm_state, plane); + if (IS_ERR(state)) { + drm_dbg_kms(&dev_priv->drm, + "Failed to add [PLANE:%d] to drm_state\n", + plane->base.id); + return PTR_ERR(state); + } + } + + intel_plane = to_intel_plane(plane); + idx = plane->base.id; + + /* plane on different crtc cannot be a scaler user of this crtc */ + if (drm_WARN_ON(&dev_priv->drm, + intel_plane->pipe != intel_crtc->pipe)) + continue; + + plane_state = intel_atomic_get_new_plane_state(intel_state, + intel_plane); + scaler_id = &plane_state->scaler_id; + } + + ret = intel_atomic_setup_scaler(scaler_state, num_scalers_need, + intel_crtc, name, idx, + plane_state, scaler_id); + if (ret < 0) + return ret; + } + + return 0; +} + static int glk_coef_tap(int i) { return i % 7; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/i915/display/skl_scaler.h +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/display/skl_scaler.h @@ -8,17 +8,22 @@ #include enum drm_scaling_filter; +enum pipe; struct drm_i915_private; +struct intel_crtc; struct intel_crtc_state; -struct intel_plane_state; struct intel_plane; -enum pipe; +struct intel_plane_state; int skl_update_scaler_crtc(struct intel_crtc_state *crtc_state); int skl_update_scaler_plane(struct intel_crtc_state *crtc_state, struct intel_plane_state *plane_state); +int intel_atomic_setup_scalers(struct drm_i915_private *dev_priv, + struct intel_crtc *intel_crtc, + struct intel_crtc_state *crtc_state); + void skl_pfit_enable(const struct intel_crtc_state *crtc_state); void skl_program_plane_scaler(struct intel_plane *plane, @@ -26,4 +31,5 @@ const struct intel_plane_state *plane_state); void skl_detach_scalers(const struct intel_crtc_state *crtc_state); void skl_scaler_disable(const struct intel_crtc_state *old_crtc_state); + #endif only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/i915/i915_pmu.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/i915/i915_pmu.c @@ -761,9 +761,18 @@ 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; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/mediatek/mtk_drm_plane.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/mediatek/mtk_drm_plane.c @@ -154,9 +154,9 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/msm/disp/dpu1/dpu_kms.h +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/msm/disp/dpu1/dpu_kms.h @@ -52,6 +52,7 @@ } while (0) #define DPU_ERROR(fmt, ...) pr_err("[dpu error]" fmt, ##__VA_ARGS__) +#define DPU_ERROR_RATELIMITED(fmt, ...) pr_err_ratelimited("[dpu error]" fmt, ##__VA_ARGS__) /** * ktime_compare_safe - compare two ktime structures only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/msm/disp/mdp4/mdp4_crtc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/msm/disp/mdp4/mdp4_crtc.c @@ -269,6 +269,7 @@ { struct mdp4_crtc *mdp4_crtc = to_mdp4_crtc(crtc); struct mdp4_kms *mdp4_kms = get_kms(crtc); + unsigned long flags; DBG("%s", mdp4_crtc->name); @@ -281,6 +282,14 @@ mdp_irq_unregister(&mdp4_kms->base, &mdp4_crtc->err); mdp4_disable(mdp4_kms); + if (crtc->state->event && !crtc->state->active) { + WARN_ON(mdp4_crtc->event); + spin_lock_irqsave(&mdp4_kms->dev->event_lock, flags); + drm_crtc_send_vblank_event(crtc, crtc->state->event); + crtc->state->event = NULL; + spin_unlock_irqrestore(&mdp4_kms->dev->event_lock, flags); + } + mdp4_crtc->enabled = false; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/msm/dp/dp_reg.h +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/msm/dp/dp_reg.h @@ -129,6 +129,9 @@ #define DP_MISC0_COLORIMETRY_CFG_SHIFT (0x00000001) #define DP_MISC0_TEST_BITS_DEPTH_SHIFT (0x00000005) +#define DP_MISC0_COLORIMERY_CFG_LEGACY_RGB (0) +#define DP_MISC0_COLORIMERY_CFG_CEA_RGB (0x04) + #define REG_DP_VALID_BOUNDARY (0x00000030) #define REG_DP_VALID_BOUNDARY_2 (0x00000034) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/nouveau/nouveau_vmm.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/nouveau/nouveau_vmm.c @@ -108,6 +108,9 @@ } else { ret = nvif_vmm_get(&vmm->vmm, PTES, false, mem->mem.page, 0, mem->mem.size, &tmp); + if (ret) + goto done; + vma->addr = tmp.addr; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/nouveau/nv04_fence.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/nouveau/nv04_fence.c @@ -39,7 +39,7 @@ static int nv04_fence_emit(struct nouveau_fence *fence) { - struct nvif_push *push = fence->channel->chan.push; + struct nvif_push *push = unrcu_pointer(fence->channel)->chan.push; int ret = PUSH_WAIT(push, 2); if (ret == 0) { PUSH_NVSQ(push, NV_SW, 0x0150, fence->base.seqno); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmtu102.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmtu102.c @@ -31,7 +31,7 @@ type |= 0x00000001; /* PAGE_ALL */ if (atomic_read(&vmm->engref[NVKM_SUBDEV_BAR])) - type |= 0x00000004; /* HUB_ONLY */ + type |= 0x00000006; /* HUB_ONLY | ALL PDB (hack) */ mutex_lock(&vmm->mmu->mutex); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/omapdrm/omap_drv.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/omapdrm/omap_drv.c @@ -68,7 +68,6 @@ { struct drm_device *dev = old_state->dev; struct omap_drm_private *priv = dev->dev_private; - bool fence_cookie = dma_fence_begin_signalling(); dispc_runtime_get(priv->dispc); @@ -91,6 +90,8 @@ omap_atomic_wait_for_completion(dev, old_state); drm_atomic_helper_commit_planes(dev, old_state, 0); + + drm_atomic_helper_commit_hw_done(old_state); } else { /* * OMAP3 DSS seems to have issues with the work-around above, @@ -100,11 +101,9 @@ drm_atomic_helper_commit_planes(dev, old_state, 0); drm_atomic_helper_commit_modeset_enables(dev, old_state); - } - drm_atomic_helper_commit_hw_done(old_state); - - dma_fence_end_signalling(fence_cookie); + drm_atomic_helper_commit_hw_done(old_state); + } /* * Wait for completion of the page flips to ensure that old buffers only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/panel/panel-arm-versatile.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/panel/panel-arm-versatile.c @@ -267,6 +267,8 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/panel/panel-boe-tv101wum-nl6.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/panel/panel-boe-tv101wum-nl6.c @@ -36,6 +36,7 @@ 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 @@ 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 @@ .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 @@ .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, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/panel/panel-elida-kd35t133.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/panel/panel-elida-kd35t133.c @@ -112,6 +112,8 @@ return ret; } + gpiod_set_value_cansleep(ctx->reset_gpio, 1); + regulator_disable(ctx->iovcc); regulator_disable(ctx->vdd); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/panel/panel-sitronix-st7703.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/panel/panel-sitronix-st7703.c @@ -428,29 +428,30 @@ 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, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/panel/panel-tpo-tpg110.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/panel/panel-tpo-tpg110.c @@ -379,6 +379,8 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/qxl/qxl_display.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/qxl/qxl_display.c @@ -1221,6 +1221,9 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/radeon/evergreen.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/radeon/evergreen.c @@ -4820,14 +4820,15 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/radeon/r100.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/radeon/r100.c @@ -2320,7 +2320,7 @@ switch (prim_walk) { case 1: for (i = 0; i < track->num_arrays; i++) { - size = track->arrays[i].esize * track->max_indx * 4; + size = track->arrays[i].esize * track->max_indx * 4UL; if (track->arrays[i].robj == NULL) { DRM_ERROR("(PW %u) Vertex array %u no buffer " "bound\n", prim_walk, i); @@ -2339,7 +2339,7 @@ break; case 2: for (i = 0; i < track->num_arrays; i++) { - size = track->arrays[i].esize * (nverts - 1) * 4; + size = track->arrays[i].esize * (nverts - 1) * 4UL; if (track->arrays[i].robj == NULL) { DRM_ERROR("(PW %u) Vertex array %u no buffer " "bound\n", prim_walk, i); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/radeon/r600_cs.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/radeon/r600_cs.c @@ -1277,7 +1277,7 @@ return -EINVAL; } tmp = (reg - CB_COLOR0_BASE) / 4; - track->cb_color_bo_offset[tmp] = radeon_get_ib_value(p, idx) << 8; + track->cb_color_bo_offset[tmp] = (u64)radeon_get_ib_value(p, idx) << 8; ib[idx] += (u32)((reloc->gpu_offset >> 8) & 0xffffffff); track->cb_color_base_last[tmp] = ib[idx]; track->cb_color_bo[tmp] = reloc->robj; @@ -1304,7 +1304,7 @@ "0x%04X\n", reg); return -EINVAL; } - track->htile_offset = radeon_get_ib_value(p, idx) << 8; + track->htile_offset = (u64)radeon_get_ib_value(p, idx) << 8; ib[idx] += (u32)((reloc->gpu_offset >> 8) & 0xffffffff); track->htile_bo = reloc->robj; track->db_dirty = true; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/radeon/radeon_display.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/radeon/radeon_display.c @@ -681,11 +681,16 @@ if (radeon_crtc == NULL) return; + radeon_crtc->flip_queue = alloc_workqueue("radeon-crtc", WQ_HIGHPRI, 0); + if (!radeon_crtc->flip_queue) { + kfree(radeon_crtc); + return; + } + drm_crtc_init(dev, &radeon_crtc->base, &radeon_crtc_funcs); drm_mode_crtc_set_gamma_size(&radeon_crtc->base, 256); radeon_crtc->crtc_id = index; - radeon_crtc->flip_queue = alloc_workqueue("radeon-crtc", WQ_HIGHPRI, 0); rdev->mode_info.crtcs[index] = radeon_crtc; if (rdev->family >= CHIP_BONAIRE) { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/radeon/radeon_vm.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/radeon/radeon_vm.c @@ -1204,13 +1204,17 @@ r = radeon_bo_create(rdev, pd_size, align, true, RADEON_GEM_DOMAIN_VRAM, 0, NULL, NULL, &vm->page_directory); - if (r) + if (r) { + kfree(vm->page_tables); + vm->page_tables = NULL; return r; - + } r = radeon_vm_clear_bo(rdev, vm->page_directory); if (r) { radeon_bo_unref(&vm->page_directory); vm->page_directory = NULL; + kfree(vm->page_tables); + vm->page_tables = NULL; return r; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/radeon/sumo_dpm.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/radeon/sumo_dpm.c @@ -1493,8 +1493,10 @@ non_clock_array_index = power_state->v2.nonClockInfoIndex; non_clock_info = (struct _ATOM_PPLIB_NONCLOCK_INFO *) &non_clock_info_array->nonClockInfo[non_clock_array_index]; - if (!rdev->pm.power_state[i].clock_info) + if (!rdev->pm.power_state[i].clock_info) { + kfree(rdev->pm.dpm.ps); return -EINVAL; + } ps = kzalloc(sizeof(struct sumo_ps), GFP_KERNEL); if (ps == NULL) { kfree(rdev->pm.dpm.ps); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/radeon/trinity_dpm.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/radeon/trinity_dpm.c @@ -1726,8 +1726,10 @@ non_clock_array_index = power_state->v2.nonClockInfoIndex; non_clock_info = (struct _ATOM_PPLIB_NONCLOCK_INFO *) &non_clock_info_array->nonClockInfo[non_clock_array_index]; - if (!rdev->pm.power_state[i].clock_info) + if (!rdev->pm.power_state[i].clock_info) { + kfree(rdev->pm.dpm.ps); return -EINVAL; + } ps = kzalloc(sizeof(struct sumo_ps), GFP_KERNEL); if (ps == NULL) { kfree(rdev->pm.dpm.ps); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/scheduler/sched_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/scheduler/sched_main.c @@ -698,8 +698,7 @@ typeof(*next), list); if (next) next->s_fence->scheduled.timestamp = - job->s_fence->finished.timestamp; - + dma_fence_timestamp(&job->s_fence->finished); } else { job = NULL; /* queue timeout for next job */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/tidss/tidss_crtc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/tidss/tidss_crtc.c @@ -172,13 +172,13 @@ struct tidss_device *tidss = to_tidss(ddev); unsigned long flags; - dev_dbg(ddev->dev, - "%s: %s enabled %d, needs modeset %d, event %p\n", __func__, - crtc->name, drm_atomic_crtc_needs_modeset(crtc->state), - crtc->state->enable, crtc->state->event); + dev_dbg(ddev->dev, "%s: %s is %sactive, %s modeset, event %p\n", + __func__, crtc->name, crtc->state->active ? "" : "not ", + drm_atomic_crtc_needs_modeset(crtc->state) ? "needs" : "doesn't need", + crtc->state->event); /* There is nothing to do if CRTC is not going to be enabled. */ - if (!crtc->state->enable) + if (!crtc->state->active) return; /* only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/tidss/tidss_kms.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/tidss/tidss_kms.c @@ -4,8 +4,6 @@ * Author: Tomi Valkeinen */ -#include - #include #include #include @@ -28,7 +26,6 @@ { struct drm_device *ddev = old_state->dev; struct tidss_device *tidss = to_tidss(ddev); - bool fence_cookie = dma_fence_begin_signalling(); dev_dbg(ddev->dev, "%s\n", __func__); @@ -39,7 +36,6 @@ drm_atomic_helper_commit_modeset_enables(ddev, old_state); drm_atomic_helper_commit_hw_done(old_state); - dma_fence_end_signalling(fence_cookie); drm_atomic_helper_wait_for_flip_done(ddev, old_state); drm_atomic_helper_cleanup_planes(ddev, old_state); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/tilcdc/tilcdc_drv.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/tilcdc/tilcdc_drv.c @@ -140,7 +140,7 @@ if (ret) return ret; - priv->irq_enabled = false; + priv->irq_enabled = true; return 0; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/ttm/ttm_device.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/ttm/ttm_device.c @@ -234,10 +234,6 @@ 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 @@ 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])) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/gpu/drm/vmwgfx/vmwgfx_surface.c +++ linux-xilinx-zynqmp-5.15.0/drivers/gpu/drm/vmwgfx/vmwgfx_surface.c @@ -807,9 +807,9 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/hid/hid-glorious.c +++ linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-glorious.c @@ -21,6 +21,10 @@ * Glorious Model O and O- specify the const flag in the consumer input * report descriptor, which leads to inputs being ignored. Fix this * by patching the descriptor. + * + * Glorious Model I incorrectly specifes the Usage Minimum for its + * keyboard HID report, causing keycodes to be misinterpreted. + * Fix this by setting Usage Minimum to 0 in that report. */ static __u8 *glorious_report_fixup(struct hid_device *hdev, __u8 *rdesc, unsigned int *rsize) @@ -32,6 +36,10 @@ rdesc[85] = rdesc[113] = rdesc[141] = \ HID_MAIN_ITEM_VARIABLE | HID_MAIN_ITEM_RELATIVE; } + if (*rsize == 156 && rdesc[41] == 1) { + hid_info(hdev, "patching Glorious Model I keyboard report descriptor\n"); + rdesc[41] = 0; + } return rdesc; } @@ -44,6 +52,8 @@ model = "Model O"; break; case USB_DEVICE_ID_GLORIOUS_MODEL_D: model = "Model D"; break; + case USB_DEVICE_ID_GLORIOUS_MODEL_I: + model = "Model I"; break; } snprintf(hdev->name, sizeof(hdev->name), "%s %s", "Glorious", model); @@ -66,10 +76,12 @@ } static const struct hid_device_id glorious_devices[] = { - { HID_USB_DEVICE(USB_VENDOR_ID_GLORIOUS, + { HID_USB_DEVICE(USB_VENDOR_ID_SINOWEALTH, USB_DEVICE_ID_GLORIOUS_MODEL_O) }, - { HID_USB_DEVICE(USB_VENDOR_ID_GLORIOUS, + { HID_USB_DEVICE(USB_VENDOR_ID_SINOWEALTH, USB_DEVICE_ID_GLORIOUS_MODEL_D) }, + { HID_USB_DEVICE(USB_VENDOR_ID_LAVIEW, + USB_DEVICE_ID_GLORIOUS_MODEL_I) }, { } }; MODULE_DEVICE_TABLE(hid, glorious_devices); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/hid/hid-lenovo.c +++ linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-lenovo.c @@ -50,7 +50,12 @@ 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,49 @@ { 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 (hdev->product == USB_DEVICE_ID_LENOVO_CUSBKBD && + 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/hid/hid-picolcd_fb.c +++ linux-xilinx-zynqmp-5.15.0/drivers/hid/hid-picolcd_fb.c @@ -432,7 +432,7 @@ /* Callback from deferred IO workqueue */ -static void picolcd_fb_deferred_io(struct fb_info *info, struct list_head *pagelist) +static void picolcd_fb_deferred_io(struct fb_info *info, struct list_head *pagereflist) { picolcd_fb_update(info); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/hwmon/acpi_power_meter.c +++ linux-xilinx-zynqmp-5.15.0/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 @@ update_meter(resource); mutex_unlock(&resource->lock); + if (resource->power == UNKNOWN_POWER) + return -ENODATA; + return sprintf(buf, "%llu\n", resource->power * 1000); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/hwmon/aspeed-pwm-tacho.c +++ linux-xilinx-zynqmp-5.15.0/drivers/hwmon/aspeed-pwm-tacho.c @@ -194,6 +194,8 @@ u8 fan_tach_ch_source[16]; struct aspeed_cooling_device *cdev[8]; const struct attribute_group *groups[3]; + /* protects access to shared ASPEED_PTCR_RESULT */ + struct mutex tach_lock; }; enum type { TYPEM, TYPEN, TYPEO }; @@ -528,6 +530,8 @@ u8 fan_tach_ch_source, type, mode, both; int ret; + mutex_lock(&priv->tach_lock); + regmap_write(priv->regmap, ASPEED_PTCR_TRIGGER, 0); regmap_write(priv->regmap, ASPEED_PTCR_TRIGGER, 0x1 << fan_tach_ch); @@ -545,6 +549,8 @@ ASPEED_RPM_STATUS_SLEEP_USEC, usec); + mutex_unlock(&priv->tach_lock); + /* return -ETIMEDOUT if we didn't get an answer. */ if (ret) return ret; @@ -904,6 +910,7 @@ priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL); if (!priv) return -ENOMEM; + mutex_init(&priv->tach_lock); priv->regmap = devm_regmap_init(dev, NULL, (__force void *)regs, &aspeed_pwm_tacho_regmap_config); if (IS_ERR(priv->regmap)) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/hwmon/axi-fan-control.c +++ linux-xilinx-zynqmp-5.15.0/drivers/hwmon/axi-fan-control.c @@ -508,6 +508,21 @@ 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 @@ 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 = { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/hwmon/nzxt-kraken2.c +++ linux-xilinx-zynqmp-5.15.0/drivers/hwmon/nzxt-kraken2.c @@ -161,13 +161,13 @@ 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", only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/i2c/busses/i2c-pxa.c +++ linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-pxa.c @@ -264,6 +264,9 @@ 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 @@ */ 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 @@ 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 @@ 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) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/i2c/busses/i2c-s3c2410.c +++ linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-s3c2410.c @@ -220,8 +220,17 @@ int tries; for (tries = 50; tries; --tries) { - if (readl(i2c->regs + S3C2410_IICCON) - & S3C2410_IICCON_IRQPEND) { + unsigned long tmp = readl(i2c->regs + S3C2410_IICCON); + + if (!(tmp & S3C2410_IICCON_ACKEN)) { + /* + * Wait a bit for the bus to stabilize, + * delay estimated experimentally. + */ + usleep_range(100, 200); + return true; + } + if (tmp & S3C2410_IICCON_IRQPEND) { if (!(readl(i2c->regs + S3C2410_IICSTAT) & S3C2410_IICSTAT_LASTBIT)) return true; @@ -274,16 +283,6 @@ stat |= S3C2410_IICSTAT_START; writel(stat, i2c->regs + S3C2410_IICSTAT); - - if (i2c->quirks & QUIRK_POLL) { - while ((i2c->msg_num != 0) && is_ack(i2c)) { - i2c_s3c_irq_nextbyte(i2c, stat); - stat = readl(i2c->regs + S3C2410_IICSTAT); - - if (stat & S3C2410_IICSTAT_ARBITR) - dev_err(i2c->dev, "deal with arbitration loss\n"); - } - } } static inline void s3c24xx_i2c_stop(struct s3c24xx_i2c *i2c, int ret) @@ -690,7 +689,7 @@ static int s3c24xx_i2c_doxfer(struct s3c24xx_i2c *i2c, struct i2c_msg *msgs, int num) { - unsigned long timeout; + unsigned long timeout = 0; int ret; ret = s3c24xx_i2c_set_master(i2c); @@ -710,16 +709,19 @@ s3c24xx_i2c_message_start(i2c, msgs); if (i2c->quirks & QUIRK_POLL) { - ret = i2c->msg_idx; + while ((i2c->msg_num != 0) && is_ack(i2c)) { + unsigned long stat = readl(i2c->regs + S3C2410_IICSTAT); - if (ret != num) - dev_dbg(i2c->dev, "incomplete xfer (%d)\n", ret); + i2c_s3c_irq_nextbyte(i2c, stat); - goto out; + stat = readl(i2c->regs + S3C2410_IICSTAT); + if (stat & S3C2410_IICSTAT_ARBITR) + dev_err(i2c->dev, "deal with arbitration loss\n"); + } + } else { + timeout = wait_event_timeout(i2c->wait, i2c->msg_num == 0, HZ * 5); } - timeout = wait_event_timeout(i2c->wait, i2c->msg_num == 0, HZ * 5); - ret = i2c->msg_idx; /* only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/i2c/busses/i2c-sun6i-p2wi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/i2c/busses/i2c-sun6i-p2wi.c @@ -201,6 +201,11 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/i2c/i2c-core.h +++ linux-xilinx-zynqmp-5.15.0/drivers/i2c/i2c-core.h @@ -3,6 +3,7 @@ * i2c-core.h - interfaces internal to the I2C framework */ +#include #include struct i2c_devinfo { @@ -29,7 +30,8 @@ */ static inline bool i2c_in_atomic_xfer_mode(void) { - return system_state > SYSTEM_RUNNING && irqs_disabled(); + return system_state > SYSTEM_RUNNING && + (IS_ENABLED(CONFIG_PREEMPT_COUNT) ? !preemptible() : irqs_disabled()); } static inline int __i2c_lock_bus_helper(struct i2c_adapter *adap) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/i2c/i2c-mux.c +++ linux-xilinx-zynqmp-5.15.0/drivers/i2c/i2c-mux.c @@ -340,7 +340,7 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/i2c/muxes/i2c-mux-pinctrl.c +++ linux-xilinx-zynqmp-5.15.0/drivers/i2c/muxes/i2c-mux-pinctrl.c @@ -62,7 +62,7 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/i3c/master/i3c-master-cdns.c +++ linux-xilinx-zynqmp-5.15.0/drivers/i3c/master/i3c-master-cdns.c @@ -77,7 +77,8 @@ #define PRESCL_CTRL0 0x14 #define PRESCL_CTRL0_I2C(x) ((x) << 16) #define PRESCL_CTRL0_I3C(x) (x) -#define PRESCL_CTRL0_MAX GENMASK(9, 0) +#define PRESCL_CTRL0_I3C_MAX GENMASK(9, 0) +#define PRESCL_CTRL0_I2C_MAX GENMASK(15, 0) #define PRESCL_CTRL1 0x18 #define PRESCL_CTRL1_PP_LOW_MASK GENMASK(15, 8) @@ -192,7 +193,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) @@ -1234,7 +1235,7 @@ return -EINVAL; pres = DIV_ROUND_UP(sysclk_rate, (bus->scl_rate.i3c * 4)) - 1; - if (pres > PRESCL_CTRL0_MAX) + if (pres > PRESCL_CTRL0_I3C_MAX) return -ERANGE; bus->scl_rate.i3c = sysclk_rate / ((pres + 1) * 4); @@ -1247,7 +1248,7 @@ max_i2cfreq = bus->scl_rate.i2c; pres = (sysclk_rate / (max_i2cfreq * 5)) - 1; - if (pres > PRESCL_CTRL0_MAX) + if (pres > PRESCL_CTRL0_I2C_MAX) return -ERANGE; bus->scl_rate.i2c = sysclk_rate / ((pres + 1) * 5); @@ -1624,13 +1625,13 @@ /* 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/i3c/master/mipi-i3c-hci/dma.c +++ linux-xilinx-zynqmp-5.15.0/drivers/i3c/master/mipi-i3c-hci/dma.c @@ -734,7 +734,7 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/iio/accel/Kconfig +++ linux-xilinx-zynqmp-5.15.0/drivers/iio/accel/Kconfig @@ -128,10 +128,12 @@ config BMA400_I2C tristate + select REGMAP_I2C depends on BMA400 config BMA400_SPI tristate + select REGMAP_SPI depends on BMA400 config BMC150_ACCEL only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/iio/adc/ad7091r-base.c +++ linux-xilinx-zynqmp-5.15.0/drivers/iio/adc/ad7091r-base.c @@ -6,6 +6,7 @@ */ #include +#include #include #include #include @@ -28,6 +29,7 @@ #define AD7091R_REG_RESULT_CONV_RESULT(x) ((x) & 0xfff) /* AD7091R_REG_CONF */ +#define AD7091R_REG_CONF_ALERT_EN BIT(4) #define AD7091R_REG_CONF_AUTO BIT(8) #define AD7091R_REG_CONF_CMD BIT(10) @@ -49,6 +51,27 @@ struct mutex lock; /*lock to prevent concurent reads */ }; +const struct iio_event_spec ad7091r_events[] = { + { + .type = IIO_EV_TYPE_THRESH, + .dir = IIO_EV_DIR_RISING, + .mask_separate = BIT(IIO_EV_INFO_VALUE) | + BIT(IIO_EV_INFO_ENABLE), + }, + { + .type = IIO_EV_TYPE_THRESH, + .dir = IIO_EV_DIR_FALLING, + .mask_separate = BIT(IIO_EV_INFO_VALUE) | + BIT(IIO_EV_INFO_ENABLE), + }, + { + .type = IIO_EV_TYPE_THRESH, + .dir = IIO_EV_DIR_EITHER, + .mask_separate = BIT(IIO_EV_INFO_HYSTERESIS), + }, +}; +EXPORT_SYMBOL_NS_GPL(ad7091r_events, IIO_AD7091R); + static int ad7091r_set_mode(struct ad7091r_state *st, enum ad7091r_mode mode) { int ret, conf; @@ -168,14 +191,148 @@ return ret; } +static int ad7091r_read_event_config(struct iio_dev *indio_dev, + const struct iio_chan_spec *chan, + enum iio_event_type type, + enum iio_event_direction dir) +{ + struct ad7091r_state *st = iio_priv(indio_dev); + int val, ret; + + switch (dir) { + case IIO_EV_DIR_RISING: + ret = regmap_read(st->map, + AD7091R_REG_CH_HIGH_LIMIT(chan->channel), + &val); + if (ret) + return ret; + return val != AD7091R_HIGH_LIMIT; + case IIO_EV_DIR_FALLING: + ret = regmap_read(st->map, + AD7091R_REG_CH_LOW_LIMIT(chan->channel), + &val); + if (ret) + return ret; + return val != AD7091R_LOW_LIMIT; + default: + return -EINVAL; + } +} + +static int ad7091r_write_event_config(struct iio_dev *indio_dev, + const struct iio_chan_spec *chan, + enum iio_event_type type, + enum iio_event_direction dir, int state) +{ + struct ad7091r_state *st = iio_priv(indio_dev); + + if (state) { + return regmap_set_bits(st->map, AD7091R_REG_CONF, + AD7091R_REG_CONF_ALERT_EN); + } else { + /* + * Set thresholds either to 0 or to 2^12 - 1 as appropriate to + * prevent alerts and thus disable event generation. + */ + switch (dir) { + case IIO_EV_DIR_RISING: + return regmap_write(st->map, + AD7091R_REG_CH_HIGH_LIMIT(chan->channel), + AD7091R_HIGH_LIMIT); + case IIO_EV_DIR_FALLING: + return regmap_write(st->map, + AD7091R_REG_CH_LOW_LIMIT(chan->channel), + AD7091R_LOW_LIMIT); + default: + return -EINVAL; + } + } +} + +static int ad7091r_read_event_value(struct iio_dev *indio_dev, + const struct iio_chan_spec *chan, + enum iio_event_type type, + enum iio_event_direction dir, + enum iio_event_info info, int *val, int *val2) +{ + struct ad7091r_state *st = iio_priv(indio_dev); + int ret; + + switch (info) { + case IIO_EV_INFO_VALUE: + switch (dir) { + case IIO_EV_DIR_RISING: + ret = regmap_read(st->map, + AD7091R_REG_CH_HIGH_LIMIT(chan->channel), + val); + if (ret) + return ret; + return IIO_VAL_INT; + case IIO_EV_DIR_FALLING: + ret = regmap_read(st->map, + AD7091R_REG_CH_LOW_LIMIT(chan->channel), + val); + if (ret) + return ret; + return IIO_VAL_INT; + default: + return -EINVAL; + } + case IIO_EV_INFO_HYSTERESIS: + ret = regmap_read(st->map, + AD7091R_REG_CH_HYSTERESIS(chan->channel), + val); + if (ret) + return ret; + return IIO_VAL_INT; + default: + return -EINVAL; + } +} + +static int ad7091r_write_event_value(struct iio_dev *indio_dev, + const struct iio_chan_spec *chan, + enum iio_event_type type, + enum iio_event_direction dir, + enum iio_event_info info, int val, int val2) +{ + struct ad7091r_state *st = iio_priv(indio_dev); + + switch (info) { + case IIO_EV_INFO_VALUE: + switch (dir) { + case IIO_EV_DIR_RISING: + return regmap_write(st->map, + AD7091R_REG_CH_HIGH_LIMIT(chan->channel), + val); + case IIO_EV_DIR_FALLING: + return regmap_write(st->map, + AD7091R_REG_CH_LOW_LIMIT(chan->channel), + val); + default: + return -EINVAL; + } + case IIO_EV_INFO_HYSTERESIS: + return regmap_write(st->map, + AD7091R_REG_CH_HYSTERESIS(chan->channel), + val); + default: + return -EINVAL; + } +} + static const struct iio_info ad7091r_info = { .read_raw = ad7091r_read_raw, + .read_event_config = &ad7091r_read_event_config, + .write_event_config = &ad7091r_write_event_config, + .read_event_value = &ad7091r_read_event_value, + .write_event_value = &ad7091r_write_event_value, }; static irqreturn_t ad7091r_event_handler(int irq, void *private) { - struct ad7091r_state *st = (struct ad7091r_state *) private; - struct iio_dev *iio_dev = dev_get_drvdata(st->dev); + struct iio_dev *iio_dev = private; + struct ad7091r_state *st = iio_priv(iio_dev); unsigned int i, read_val; int ret; s64 timestamp = iio_get_time_ns(iio_dev); @@ -232,9 +389,14 @@ iio_dev->channels = chip_info->channels; if (irq) { + ret = regmap_update_bits(st->map, AD7091R_REG_CONF, + AD7091R_REG_CONF_ALERT_EN, BIT(4)); + if (ret) + return ret; + ret = devm_request_threaded_irq(dev, irq, NULL, ad7091r_event_handler, - IRQF_TRIGGER_FALLING | IRQF_ONESHOT, name, st); + IRQF_TRIGGER_FALLING | IRQF_ONESHOT, name, iio_dev); if (ret) return ret; } @@ -243,7 +405,14 @@ if (IS_ERR(st->vref)) { if (PTR_ERR(st->vref) == -EPROBE_DEFER) return -EPROBE_DEFER; + st->vref = NULL; + /* Enable internal vref */ + ret = regmap_set_bits(st->map, AD7091R_REG_CONF, + AD7091R_REG_CONF_INT_VREF); + if (ret) + return dev_err_probe(st->dev, ret, + "Error on enable internal reference\n"); } else { ret = regulator_enable(st->vref); if (ret) @@ -260,7 +429,7 @@ return devm_iio_device_register(dev, iio_dev); } -EXPORT_SYMBOL_GPL(ad7091r_probe); +EXPORT_SYMBOL_NS_GPL(ad7091r_probe, IIO_AD7091R); static bool ad7091r_writeable_reg(struct device *dev, unsigned int reg) { @@ -290,7 +459,7 @@ .writeable_reg = ad7091r_writeable_reg, .volatile_reg = ad7091r_volatile_reg, }; -EXPORT_SYMBOL_GPL(ad7091r_regmap_config); +EXPORT_SYMBOL_NS_GPL(ad7091r_regmap_config, IIO_AD7091R); MODULE_AUTHOR("Beniamin Bia "); MODULE_DESCRIPTION("Analog Devices AD7091Rx multi-channel converters"); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/iio/adc/ad7091r-base.h +++ linux-xilinx-zynqmp-5.15.0/drivers/iio/adc/ad7091r-base.h @@ -8,6 +8,12 @@ #ifndef __DRIVERS_IIO_ADC_AD7091R_BASE_H__ #define __DRIVERS_IIO_ADC_AD7091R_BASE_H__ +#define AD7091R_REG_CONF_INT_VREF BIT(0) + +/* AD7091R_REG_CH_LIMIT */ +#define AD7091R_HIGH_LIMIT 0xFFF +#define AD7091R_LOW_LIMIT 0x0 + struct device; struct ad7091r_state; @@ -17,6 +23,8 @@ unsigned int vref_mV; }; +extern const struct iio_event_spec ad7091r_events[3]; + extern const struct regmap_config ad7091r_regmap_config; int ad7091r_probe(struct device *dev, const char *name, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/iio/adc/ad7091r5.c +++ linux-xilinx-zynqmp-5.15.0/drivers/iio/adc/ad7091r5.c @@ -12,26 +12,6 @@ #include "ad7091r-base.h" -static const struct iio_event_spec ad7091r5_events[] = { - { - .type = IIO_EV_TYPE_THRESH, - .dir = IIO_EV_DIR_RISING, - .mask_separate = BIT(IIO_EV_INFO_VALUE) | - BIT(IIO_EV_INFO_ENABLE), - }, - { - .type = IIO_EV_TYPE_THRESH, - .dir = IIO_EV_DIR_FALLING, - .mask_separate = BIT(IIO_EV_INFO_VALUE) | - BIT(IIO_EV_INFO_ENABLE), - }, - { - .type = IIO_EV_TYPE_THRESH, - .dir = IIO_EV_DIR_EITHER, - .mask_separate = BIT(IIO_EV_INFO_HYSTERESIS), - }, -}; - #define AD7091R_CHANNEL(idx, bits, ev, num_ev) { \ .type = IIO_VOLTAGE, \ .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \ @@ -44,10 +24,10 @@ .scan_type.realbits = bits, \ } static const struct iio_chan_spec ad7091r5_channels_irq[] = { - AD7091R_CHANNEL(0, 12, ad7091r5_events, ARRAY_SIZE(ad7091r5_events)), - AD7091R_CHANNEL(1, 12, ad7091r5_events, ARRAY_SIZE(ad7091r5_events)), - AD7091R_CHANNEL(2, 12, ad7091r5_events, ARRAY_SIZE(ad7091r5_events)), - AD7091R_CHANNEL(3, 12, ad7091r5_events, ARRAY_SIZE(ad7091r5_events)), + AD7091R_CHANNEL(0, 12, ad7091r_events, ARRAY_SIZE(ad7091r_events)), + AD7091R_CHANNEL(1, 12, ad7091r_events, ARRAY_SIZE(ad7091r_events)), + AD7091R_CHANNEL(2, 12, ad7091r_events, ARRAY_SIZE(ad7091r_events)), + AD7091R_CHANNEL(3, 12, ad7091r_events, ARRAY_SIZE(ad7091r_events)), }; static const struct iio_chan_spec ad7091r5_channels_noirq[] = { @@ -111,3 +91,4 @@ MODULE_AUTHOR("Beniamin Bia "); MODULE_DESCRIPTION("Analog Devices AD7091R5 multi-channel ADC driver"); MODULE_LICENSE("GPL v2"); +MODULE_IMPORT_NS(IIO_AD7091R); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/iio/adc/ad9467.c +++ linux-xilinx-zynqmp-5.15.0/drivers/iio/adc/ad9467.c @@ -119,9 +119,9 @@ struct spi_device *spi; struct clk *clk; unsigned int output_mode; + unsigned int (*scales)[2]; struct gpio_desc *pwrdown_gpio; - struct gpio_desc *reset_gpio; }; static int ad9467_spi_read(struct spi_device *spi, unsigned int reg) @@ -163,9 +163,10 @@ if (readval == NULL) { ret = ad9467_spi_write(spi, reg, writeval); - ad9467_spi_write(spi, AN877_ADC_REG_TRANSFER, - AN877_ADC_TRANSFER_SYNC); - return ret; + if (ret) + return ret; + return ad9467_spi_write(spi, AN877_ADC_REG_TRANSFER, + AN877_ADC_TRANSFER_SYNC); } ret = ad9467_spi_read(spi, reg); @@ -212,6 +213,7 @@ .channel = _chan, \ .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE) | \ BIT(IIO_CHAN_INFO_SAMP_FREQ), \ + .info_mask_shared_by_type_available = BIT(IIO_CHAN_INFO_SCALE), \ .scan_index = _si, \ .scan_type = { \ .sign = _sign, \ @@ -273,10 +275,13 @@ const struct ad9467_chip_info *info1 = to_ad9467_chip_info(info); struct ad9467_state *st = adi_axi_adc_conv_priv(conv); unsigned int i, vref_val; + int ret; - vref_val = ad9467_spi_read(st->spi, AN877_ADC_REG_VREF); + ret = ad9467_spi_read(st->spi, AN877_ADC_REG_VREF); + if (ret < 0) + return ret; - vref_val &= info1->vref_mask; + vref_val = ret & info1->vref_mask; for (i = 0; i < info->num_scales; i++) { if (vref_val == info->scale_table[i][1]) @@ -297,6 +302,7 @@ struct ad9467_state *st = adi_axi_adc_conv_priv(conv); unsigned int scale_val[2]; unsigned int i; + int ret; if (val != 0) return -EINVAL; @@ -306,11 +312,13 @@ if (scale_val[0] != val || scale_val[1] != val2) continue; - ad9467_spi_write(st->spi, AN877_ADC_REG_VREF, - info->scale_table[i][1]); - ad9467_spi_write(st->spi, AN877_ADC_REG_TRANSFER, - AN877_ADC_TRANSFER_SYNC); - return 0; + ret = ad9467_spi_write(st->spi, AN877_ADC_REG_VREF, + info->scale_table[i][1]); + if (ret < 0) + return ret; + + return ad9467_spi_write(st->spi, AN877_ADC_REG_TRANSFER, + AN877_ADC_TRANSFER_SYNC); } return -EINVAL; @@ -359,6 +367,26 @@ } } +static int ad9467_read_avail(struct adi_axi_adc_conv *conv, + struct iio_chan_spec const *chan, + const int **vals, int *type, int *length, + long mask) +{ + const struct adi_axi_adc_chip_info *info = conv->chip_info; + struct ad9467_state *st = adi_axi_adc_conv_priv(conv); + + switch (mask) { + case IIO_CHAN_INFO_SCALE: + *vals = (const int *)st->scales; + *type = IIO_VAL_INT_PLUS_MICRO; + /* Values are stored in a 2D matrix */ + *length = info->num_scales * 2; + return IIO_AVAIL_LIST; + default: + return -EINVAL; + } +} + static int ad9467_outputmode_set(struct spi_device *spi, unsigned int mode) { int ret; @@ -371,6 +399,26 @@ AN877_ADC_TRANSFER_SYNC); } +static int ad9467_scale_fill(struct adi_axi_adc_conv *conv) +{ + const struct adi_axi_adc_chip_info *info = conv->chip_info; + struct ad9467_state *st = adi_axi_adc_conv_priv(conv); + unsigned int i, val1, val2; + + st->scales = devm_kmalloc_array(&st->spi->dev, info->num_scales, + sizeof(*st->scales), GFP_KERNEL); + if (!st->scales) + return -ENOMEM; + + for (i = 0; i < info->num_scales; i++) { + __ad9467_get_scale(conv, i, &val1, &val2); + st->scales[i][0] = val1; + st->scales[i][1] = val2; + } + + return 0; +} + static int ad9467_preenable_setup(struct adi_axi_adc_conv *conv) { struct ad9467_state *st = adi_axi_adc_conv_priv(conv); @@ -378,11 +426,19 @@ return ad9467_outputmode_set(st->spi, st->output_mode); } -static void ad9467_clk_disable(void *data) +static int ad9467_reset(struct device *dev) { - struct ad9467_state *st = data; + struct gpio_desc *gpio; + + gpio = devm_gpiod_get_optional(dev, "reset", GPIOD_OUT_HIGH); + if (IS_ERR_OR_NULL(gpio)) + return PTR_ERR_OR_ZERO(gpio); + + fsleep(1); + gpiod_set_value_cansleep(gpio, 0); + fsleep(10 * USEC_PER_MSEC); - clk_disable_unprepare(st->clk); + return 0; } static int ad9467_probe(struct spi_device *spi) @@ -404,38 +460,25 @@ st = adi_axi_adc_conv_priv(conv); st->spi = spi; - st->clk = devm_clk_get(&spi->dev, "adc-clk"); + st->clk = devm_clk_get_enabled(&spi->dev, "adc-clk"); if (IS_ERR(st->clk)) return PTR_ERR(st->clk); - ret = clk_prepare_enable(st->clk); - if (ret < 0) - return ret; - - ret = devm_add_action_or_reset(&spi->dev, ad9467_clk_disable, st); - if (ret) - return ret; - st->pwrdown_gpio = devm_gpiod_get_optional(&spi->dev, "powerdown", GPIOD_OUT_LOW); if (IS_ERR(st->pwrdown_gpio)) return PTR_ERR(st->pwrdown_gpio); - st->reset_gpio = devm_gpiod_get_optional(&spi->dev, "reset", - GPIOD_OUT_LOW); - if (IS_ERR(st->reset_gpio)) - return PTR_ERR(st->reset_gpio); - - if (st->reset_gpio) { - udelay(1); - ret = gpiod_direction_output(st->reset_gpio, 1); - if (ret) - return ret; - mdelay(10); - } + ret = ad9467_reset(&spi->dev); + if (ret) + return ret; conv->chip_info = &info->axi_adc_info; + ret = ad9467_scale_fill(conv); + if (ret) + return ret; + id = ad9467_spi_read(spi, AN877_ADC_REG_CHIP_ID); if (id != conv->chip_info->id) { dev_err(&spi->dev, "Mismatch CHIP_ID, got 0x%X, expected 0x%X\n", @@ -446,6 +489,7 @@ conv->reg_access = ad9467_reg_access; conv->write_raw = ad9467_write_raw; conv->read_raw = ad9467_read_raw; + conv->read_avail = ad9467_read_avail; conv->preenable_setup = ad9467_preenable_setup; st->output_mode = info->default_output_mode | only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/iio/adc/exynos_adc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/iio/adc/exynos_adc.c @@ -826,16 +826,26 @@ } } + /* 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; - - info->tsirq = irq; + if (has_ts) { + irq = platform_get_irq(pdev, 1); + if (irq == -EPROBE_DEFER) + return irq; + + info->tsirq = irq; + } else { + info->tsirq = -1; + } info->dev = &pdev->dev; @@ -900,12 +910,6 @@ 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 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/iio/adc/ti_am335x_adc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/iio/adc/ti_am335x_adc.c @@ -632,8 +632,10 @@ platform_set_drvdata(pdev, indio_dev); err = tiadc_request_dma(pdev, adc_dev); - if (err && err == -EPROBE_DEFER) + if (err && err != -ENODEV) { + dev_err_probe(&pdev->dev, err, "DMA request failed\n"); goto err_dma; + } return 0; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/iio/adc/xilinx-xadc-core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/iio/adc/xilinx-xadc-core.c @@ -454,6 +454,9 @@ .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 @@ .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 @@ .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 @@ *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 @@ } 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 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/iio/adc/xilinx-xadc.h +++ linux-xilinx-zynqmp-5.15.0/drivers/iio/adc/xilinx-xadc.h @@ -86,6 +86,8 @@ 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, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/iio/buffer/industrialio-triggered-buffer.c +++ linux-xilinx-zynqmp-5.15.0/drivers/iio/buffer/industrialio-triggered-buffer.c @@ -44,6 +44,16 @@ struct iio_buffer *buffer; int ret; + /* + * iio_triggered_buffer_cleanup() assumes that the buffer allocated here + * is assigned to indio_dev->buffer but this is only the case if this + * function is the first caller to iio_device_attach_buffer(). If + * indio_dev->buffer is already set then we can't proceed otherwise the + * cleanup function will try to free a buffer that was not allocated here. + */ + if (indio_dev->buffer) + return -EADDRINUSE; + buffer = iio_kfifo_allocate(); if (!buffer) { ret = -ENOMEM; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/iio/common/ms_sensors/ms_sensors_i2c.c +++ linux-xilinx-zynqmp-5.15.0/drivers/iio/common/ms_sensors/ms_sensors_i2c.c @@ -15,8 +15,8 @@ /* Conversion times in us */ static const u16 ms_sensors_ht_t_conversion_time[] = { 50000, 25000, 13000, 7000 }; -static const u16 ms_sensors_ht_h_conversion_time[] = { 16000, 3000, - 5000, 8000 }; +static const u16 ms_sensors_ht_h_conversion_time[] = { 16000, 5000, + 3000, 8000 }; static const u16 ms_sensors_tp_conversion_time[] = { 500, 1100, 2100, 4100, 8220, 16440 }; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/iio/imu/inv_mpu6050/inv_mpu_core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/iio/imu/inv_mpu6050/inv_mpu_core.c @@ -727,13 +727,13 @@ ret = inv_mpu6050_sensor_show(st, st->reg->gyro_offset, chan->channel2, val); mutex_unlock(&st->lock); - return IIO_VAL_INT; + return ret; case IIO_ACCEL: mutex_lock(&st->lock); ret = inv_mpu6050_sensor_show(st, st->reg->accl_offset, chan->channel2, val); mutex_unlock(&st->lock); - return IIO_VAL_INT; + return ret; default: return -EINVAL; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/iio/light/hid-sensor-als.c +++ linux-xilinx-zynqmp-5.15.0/drivers/iio/light/hid-sensor-als.c @@ -228,6 +228,7 @@ case HID_USAGE_SENSOR_TIME_TIMESTAMP: als_state->timestamp = hid_sensor_convert_timestamp(&als_state->common_attributes, *(s64 *)raw_data); + ret = 0; break; default: break; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/iio/magnetometer/rm3100-core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/iio/magnetometer/rm3100-core.c @@ -538,6 +538,7 @@ struct rm3100_data *data; unsigned int tmp; int ret; + int samp_rate_index; indio_dev = devm_iio_device_alloc(dev, sizeof(*data)); if (!indio_dev) @@ -595,9 +596,14 @@ ret = regmap_read(regmap, RM3100_REG_TMRC, &tmp); if (ret < 0) return ret; + + samp_rate_index = tmp - RM3100_TMRC_OFFSET; + if (samp_rate_index < 0 || samp_rate_index >= RM3100_SAMP_NUM) { + dev_err(dev, "The value read from RM3100_REG_TMRC is invalid!\n"); + return -EINVAL; + } /* Initializing max wait time, which is double conversion time. */ - data->conversion_time = rm3100_samp_rates[tmp - RM3100_TMRC_OFFSET][2] - * 2; + data->conversion_time = rm3100_samp_rates[samp_rate_index][2] * 2; /* Cycle count values may not be what we want. */ if ((tmp - RM3100_TMRC_OFFSET) == 0) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/infiniband/core/sa_query.c +++ linux-xilinx-zynqmp-5.15.0/drivers/infiniband/core/sa_query.c @@ -2132,7 +2132,9 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/infiniband/hw/hfi1/efivar.c +++ linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/hfi1/efivar.c @@ -110,7 +110,7 @@ unsigned long *size, void **return_data) { char prefix_name[64]; - char name[64]; + char name[128]; int result; int i; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/infiniband/hw/hfi1/pcie.c +++ linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/hfi1/pcie.c @@ -3,6 +3,7 @@ * Copyright(c) 2015 - 2019 Intel Corporation. */ +#include #include #include #include @@ -212,12 +213,6 @@ 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 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/infiniband/hw/hns/hns_roce_pd.c +++ linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/hns/hns_roce_pd.c @@ -161,7 +161,7 @@ int ret; if (!(hr_dev->caps.flags & HNS_ROCE_CAP_FLAG_XRC)) - return -EINVAL; + return -EOPNOTSUPP; ret = hns_roce_xrcd_alloc(hr_dev, &xrcd->xrcdn); if (ret) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/infiniband/hw/mthca/mthca_cmd.c +++ linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/mthca/mthca_cmd.c @@ -635,7 +635,7 @@ int mthca_SYS_EN(struct mthca_dev *dev) { - u64 out; + u64 out = 0; int ret; ret = mthca_cmd_imm(dev, 0, &out, 0, 0, CMD_SYS_EN, CMD_TIME_CLASS_D); @@ -1955,7 +1955,7 @@ int mthca_MGID_HASH(struct mthca_dev *dev, struct mthca_mailbox *mailbox, u16 *hash) { - u64 imm; + u64 imm = 0; int err; err = mthca_cmd_imm(dev, mailbox->dma, &imm, 0, 0, CMD_MGID_HASH, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/infiniband/hw/mthca/mthca_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/infiniband/hw/mthca/mthca_main.c @@ -382,7 +382,7 @@ struct mthca_init_hca_param *init_hca, u64 icm_size) { - u64 aux_pages; + u64 aux_pages = 0; int err; err = mthca_SET_ICM_SIZE(mdev, icm_size, &aux_pages); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/infiniband/ulp/ipoib/ipoib_multicast.c +++ linux-xilinx-zynqmp-5.15.0/drivers/infiniband/ulp/ipoib/ipoib_multicast.c @@ -531,21 +531,18 @@ if (test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags)) rec.join_state = SENDONLY_FULLMEMBER_JOIN; } - spin_unlock_irq(&priv->lock); multicast = ib_sa_join_multicast(&ipoib_sa_client, priv->ca, priv->port, - &rec, comp_mask, GFP_KERNEL, + &rec, comp_mask, GFP_ATOMIC, ipoib_mcast_join_complete, mcast); - spin_lock_irq(&priv->lock); if (IS_ERR(multicast)) { ret = PTR_ERR(multicast); ipoib_warn(priv, "ib_sa_join_multicast failed, status %d\n", ret); /* Requeue this join task with a backoff delay */ __ipoib_mcast_schedule_join_thread(priv, mcast, 1); clear_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags); - spin_unlock_irq(&priv->lock); complete(&mcast->done); - spin_lock_irq(&priv->lock); + return ret; } return 0; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/infiniband/ulp/iser/iscsi_iser.h +++ linux-xilinx-zynqmp-5.15.0/drivers/infiniband/ulp/iser/iscsi_iser.h @@ -321,12 +321,10 @@ * * @mr: memory region * @sig_mr: signature memory region - * @mr_valid: is mr valid indicator */ struct iser_reg_resources { struct ib_mr *mr; struct ib_mr *sig_mr; - u8 mr_valid:1; }; /** only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/infiniband/ulp/iser/iser_initiator.c +++ linux-xilinx-zynqmp-5.15.0/drivers/infiniband/ulp/iser/iser_initiator.c @@ -602,7 +602,10 @@ return -EINVAL; } - desc->rsc.mr_valid = 0; + if (desc->sig_protected) + desc->rsc.sig_mr->need_inval = false; + else + desc->rsc.mr->need_inval = false; return 0; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/infiniband/ulp/iser/iser_memory.c +++ linux-xilinx-zynqmp-5.15.0/drivers/infiniband/ulp/iser/iser_memory.c @@ -250,7 +250,7 @@ iser_set_prot_checks(iser_task->sc, &sig_attrs->check_mask); - if (rsc->mr_valid) + if (rsc->sig_mr->need_inval) iser_inv_rkey(&tx_desc->inv_wr, mr, cqe, &wr->wr); ib_update_fast_reg_key(mr, ib_inc_rkey(mr->rkey)); @@ -274,7 +274,7 @@ wr->access = IB_ACCESS_LOCAL_WRITE | IB_ACCESS_REMOTE_READ | IB_ACCESS_REMOTE_WRITE; - rsc->mr_valid = 1; + rsc->sig_mr->need_inval = true; sig_reg->sge.lkey = mr->lkey; sig_reg->rkey = mr->rkey; @@ -299,7 +299,7 @@ struct ib_reg_wr *wr = &tx_desc->reg_wr; int n; - if (rsc->mr_valid) + if (rsc->mr->need_inval) iser_inv_rkey(&tx_desc->inv_wr, mr, cqe, &wr->wr); ib_update_fast_reg_key(mr, ib_inc_rkey(mr->rkey)); @@ -322,7 +322,7 @@ IB_ACCESS_REMOTE_WRITE | IB_ACCESS_REMOTE_READ; - rsc->mr_valid = 1; + rsc->mr->need_inval = true; reg->sge.lkey = mr->lkey; reg->rkey = mr->rkey; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/infiniband/ulp/iser/iser_verbs.c +++ linux-xilinx-zynqmp-5.15.0/drivers/infiniband/ulp/iser/iser_verbs.c @@ -136,7 +136,6 @@ goto err_alloc_mr_integrity; } } - desc->rsc.mr_valid = 0; return desc; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/input/keyboard/atkbd.c +++ linux-xilinx-zynqmp-5.15.0/drivers/input/keyboard/atkbd.c @@ -756,6 +756,44 @@ ps2dev->serio->phys); } +#ifdef CONFIG_X86 +static bool atkbd_is_portable_device(void) +{ + static const char * const chassis_types[] = { + "8", /* Portable */ + "9", /* Laptop */ + "10", /* Notebook */ + "14", /* Sub-Notebook */ + "31", /* Convertible */ + "32", /* Detachable */ + }; + int i; + + for (i = 0; i < ARRAY_SIZE(chassis_types); i++) + if (dmi_match(DMI_CHASSIS_TYPE, chassis_types[i])) + return true; + + return false; +} + +/* + * On many modern laptops ATKBD_CMD_GETID may cause problems, on these laptops + * the controller is always in translated mode. In this mode mice/touchpads will + * not work. So in this case simply assume a keyboard is connected to avoid + * confusing some laptop keyboards. + * + * Skipping ATKBD_CMD_GETID ends up using a fake keyboard id. Using the standard + * 0xab83 id is ok in translated mode, only atkbd_select_set() checks atkbd->id + * and in translated mode that is a no-op. + */ +static bool atkbd_skip_getid(struct atkbd *atkbd) +{ + return atkbd->translated && atkbd_is_portable_device(); +} +#else +static inline bool atkbd_skip_getid(struct atkbd *atkbd) { return false; } +#endif + /* * atkbd_probe() probes for an AT keyboard on a serio port. */ @@ -777,6 +815,11 @@ "keyboard reset failed on %s\n", ps2dev->serio->phys); + if (atkbd_skip_getid(atkbd)) { + atkbd->id = 0xab83; + return 0; + } + /* * Then we check the keyboard ID. We should get 0xab83 under normal conditions. * Some keyboards report different values, but the first byte is always 0xab or @@ -788,9 +831,9 @@ if (ps2_command(ps2dev, param, ATKBD_CMD_GETID)) { /* - * If the get ID command failed, we check if we can at least set the LEDs on - * the keyboard. This should work on every keyboard out there. It also turns - * the LEDs off, which we want anyway. + * If the get ID command failed, we check if we can at least set + * the LEDs on the keyboard. This should work on every keyboard out there. + * It also turns the LEDs off, which we want anyway. */ param[0] = 0; if (ps2_command(ps2dev, param, ATKBD_CMD_SETLEDS)) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/input/keyboard/ipaq-micro-keys.c +++ linux-xilinx-zynqmp-5.15.0/drivers/input/keyboard/ipaq-micro-keys.c @@ -105,6 +105,9 @@ keys->codes = devm_kmemdup(&pdev->dev, micro_keycodes, keys->input->keycodesize * keys->input->keycodemax, GFP_KERNEL); + if (!keys->codes) + return -ENOMEM; + keys->input->keycode = keys->codes; __set_bit(EV_KEY, keys->input->evbit); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/input/rmi4/rmi_bus.c +++ linux-xilinx-zynqmp-5.15.0/drivers/input/rmi4/rmi_bus.c @@ -276,11 +276,11 @@ 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); } /** only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/input/rmi4/rmi_smbus.c +++ linux-xilinx-zynqmp-5.15.0/drivers/input/rmi4/rmi_smbus.c @@ -235,12 +235,29 @@ 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 @@ 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 @@ { 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 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/input/touchscreen/cyttsp4_core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/input/touchscreen/cyttsp4_core.c @@ -1263,9 +1263,8 @@ * 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) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/irqchip/irq-riscv-intc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/irqchip/irq-riscv-intc.c @@ -109,8 +109,16 @@ * 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/irqchip/irq-stm32-exti.c +++ linux-xilinx-zynqmp-5.15.0/drivers/irqchip/irq-stm32-exti.c @@ -408,6 +408,7 @@ .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) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/leds/leds-turris-omnia.c +++ linux-xilinx-zynqmp-5.15.0/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_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 @@ 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 @@ 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 @@ } /* 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 @@ 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 @@ 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 @@ 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 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/leds/trigger/ledtrig-cpu.c +++ linux-xilinx-zynqmp-5.15.0/drivers/leds/trigger/ledtrig-cpu.c @@ -130,7 +130,7 @@ static int __init ledtrig_cpu_init(void) { - int cpu; + unsigned int cpu; int ret; /* Supports up to 9999 cpu cores */ @@ -152,7 +152,7 @@ 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); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/leds/trigger/ledtrig-panic.c +++ linux-xilinx-zynqmp-5.15.0/drivers/leds/trigger/ledtrig-panic.c @@ -64,10 +64,13 @@ static int __init ledtrig_panic_init(void) { + led_trigger_register_simple("panic", &trigger); + if (!trigger) + return -ENOMEM; + atomic_notifier_chain_register(&panic_notifier_list, &led_trigger_panic_nb); - led_trigger_register_simple("panic", &trigger); panic_blink = led_panic_blink; return 0; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/mcb/mcb-lpc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mcb/mcb-lpc.c @@ -23,7 +23,7 @@ { 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 @@ 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) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/md/bcache/bcache.h +++ linux-xilinx-zynqmp-5.15.0/drivers/md/bcache/bcache.h @@ -265,6 +265,7 @@ #define BCACHE_DEV_WB_RUNNING 3 #define BCACHE_DEV_RATE_DW_RUNNING 4 int nr_stripes; +#define BCH_MIN_STRIPE_SZ ((4 << 20) >> SECTOR_SHIFT) unsigned int stripe_size; atomic_t *stripe_sectors_dirty; unsigned long *full_dirty_stripes; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/md/bcache/sysfs.c +++ linux-xilinx-zynqmp-5.15.0/drivers/md/bcache/sysfs.c @@ -1099,7 +1099,7 @@ 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) / only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/md/dm-delay.c +++ linux-xilinx-zynqmp-5.15.0/drivers/md/dm-delay.c @@ -30,7 +30,7 @@ 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 @@ 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 @@ 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 @@ 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 @@ { 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 @@ { 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) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/md/dm-verity-fec.c +++ linux-xilinx-zynqmp-5.15.0/drivers/md/dm-verity-fec.c @@ -24,7 +24,8 @@ */ 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)); } /* only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/md/dm-verity.h +++ linux-xilinx-zynqmp-5.15.0/drivers/md/dm-verity.h @@ -111,12 +111,6 @@ 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, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/media/cec/platform/Makefile +++ linux-xilinx-zynqmp-5.15.0/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/ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/media/i2c/ccs/ccs-quirk.h +++ linux-xilinx-zynqmp-5.15.0/drivers/media/i2c/ccs/ccs-quirk.h @@ -32,12 +32,10 @@ * @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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/media/i2c/imx335.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/i2c/imx335.c @@ -971,8 +971,8 @@ imx335->hblank_ctrl = v4l2_ctrl_new_std(ctrl_hdlr, &imx335_ctrl_ops, V4L2_CID_HBLANK, - IMX335_REG_MIN, - IMX335_REG_MAX, + mode->hblank, + mode->hblank, 1, mode->hblank); if (imx335->hblank_ctrl) imx335->hblank_ctrl->flags |= V4L2_CTRL_FLAG_READ_ONLY; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/media/i2c/imx355.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/i2c/imx355.c @@ -1784,10 +1784,6 @@ goto error_handler_free; } - ret = v4l2_async_register_subdev_sensor(&imx355->sd); - if (ret < 0) - goto error_media_entity; - /* * Device is already turned on by i2c-core with ACPI domain PM. * Enable runtime PM and turn off the device. @@ -1796,9 +1792,15 @@ pm_runtime_enable(&client->dev); pm_runtime_idle(&client->dev); + ret = v4l2_async_register_subdev_sensor(&imx355->sd); + if (ret < 0) + goto error_media_entity_runtime_pm; + return 0; -error_media_entity: +error_media_entity_runtime_pm: + pm_runtime_disable(&client->dev); + pm_runtime_set_suspended(&client->dev); media_entity_cleanup(&imx355->sd.entity); error_handler_free: only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/media/i2c/ov9734.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/i2c/ov9734.c @@ -939,6 +939,7 @@ media_entity_cleanup(&sd->entity); v4l2_ctrl_handler_free(sd->ctrl_handler); pm_runtime_disable(&client->dev); + pm_runtime_set_suspended(&client->dev); mutex_destroy(&ov9734->mutex); return 0; @@ -986,13 +987,6 @@ goto probe_error_v4l2_ctrl_handler_free; } - ret = v4l2_async_register_subdev_sensor(&ov9734->sd); - if (ret < 0) { - dev_err(&client->dev, "failed to register V4L2 subdev: %d", - ret); - goto probe_error_media_entity_cleanup; - } - /* * Device is already turned on by i2c-core with ACPI domain PM. * Enable runtime PM and turn off the device. @@ -1001,9 +995,18 @@ pm_runtime_enable(&client->dev); pm_runtime_idle(&client->dev); + ret = v4l2_async_register_subdev_sensor(&ov9734->sd); + if (ret < 0) { + dev_err(&client->dev, "failed to register V4L2 subdev: %d", + ret); + goto probe_error_media_entity_cleanup_pm; + } + return 0; -probe_error_media_entity_cleanup: +probe_error_media_entity_cleanup_pm: + pm_runtime_disable(&client->dev); + pm_runtime_set_suspended(&client->dev); media_entity_cleanup(&ov9734->sd.entity); probe_error_v4l2_ctrl_handler_free: only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/media/pci/cobalt/cobalt-driver.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/pci/cobalt/cobalt-driver.c @@ -8,6 +8,7 @@ * All rights reserved. */ +#include #include #include #include @@ -210,17 +211,17 @@ 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 @@ 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 @@ 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) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/media/pci/ddbridge/ddbridge-main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/pci/ddbridge/ddbridge-main.c @@ -247,7 +247,7 @@ ddb_unmap(dev); pci_set_drvdata(pdev, NULL); pci_disable_device(pdev); - return -1; + return stat; } /****************************************************************************/ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/media/platform/cadence/cdns-csi2rx.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/platform/cadence/cdns-csi2rx.c @@ -407,8 +407,10 @@ 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 @@ 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 @@ { 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/media/platform/qcom/camss/camss-csid.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/platform/qcom/camss/camss-csid.c @@ -180,6 +180,8 @@ return ret; } + csid->phy.need_vc_update = true; + enable_irq(csid->irq); ret = csid->ops->reset(csid); @@ -229,7 +231,10 @@ 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 @@ { 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 @@ 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 @@ 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 @@ 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); + + csid->phy.need_vc_update = true; - /* 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); + dev_dbg(dev, "%s: Enabled CSID virtual channels mask 0x%x\n", + __func__, csid->phy.en_vc); } return 0; @@ -773,6 +789,7 @@ 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 @@ } 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/media/platform/qcom/camss/camss-csid.h +++ linux-xilinx-zynqmp-5.15.0/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 @@ u8 csiphy_id; u8 lane_cnt; u32 lane_assign; + u32 en_vc; + u8 need_vc_update; }; struct csid_device; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/media/platform/qcom/camss/camss-vfe.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/platform/qcom/camss/camss-vfe.c @@ -533,7 +533,8 @@ 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 @@ } else { ret = vfe_check_clock_rates(vfe); if (ret < 0) - goto error_pm_runtime_get; + goto error_pm_domain; } vfe->power_count++; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/media/platform/qcom/camss/camss.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/platform/qcom/camss/camss.c @@ -1369,6 +1369,12 @@ 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 @@ } } - 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/media/platform/qcom/venus/hfi_msgs.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/platform/qcom/venus/hfi_msgs.c @@ -367,7 +367,7 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/media/platform/qcom/venus/hfi_parser.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/platform/qcom/venus/hfi_parser.c @@ -19,6 +19,9 @@ 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 @@ { 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 @@ { 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 @@ { 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 @@ rawfmts[i].buftype = fmt->buffer_type; i++; + if (i >= MAX_FMT_ENTRIES) + return; + if (pinfo->num_planes > MAX_PLANES) break; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/media/platform/s3c-camif/camif-capture.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/platform/s3c-camif/camif-capture.c @@ -1132,12 +1132,12 @@ 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 @@ v4l2_ctrl_handler_free(&vp->ctrl_handler); err_me_cleanup: media_entity_cleanup(&vfd->entity); -err_vd_rel: - video_device_release(vfd); return ret; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/media/rc/bpf-lirc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/rc/bpf-lirc.c @@ -249,7 +249,7 @@ if (attr->attach_flags) return -EINVAL; - rcdev = rc_dev_get_from_fd(attr->target_fd); + rcdev = rc_dev_get_from_fd(attr->target_fd, true); if (IS_ERR(rcdev)) return PTR_ERR(rcdev); @@ -274,7 +274,7 @@ if (IS_ERR(prog)) return PTR_ERR(prog); - rcdev = rc_dev_get_from_fd(attr->target_fd); + rcdev = rc_dev_get_from_fd(attr->target_fd, true); if (IS_ERR(rcdev)) { bpf_prog_put(prog); return PTR_ERR(rcdev); @@ -299,7 +299,7 @@ if (attr->query.query_flags) return -EINVAL; - rcdev = rc_dev_get_from_fd(attr->query.target_fd); + rcdev = rc_dev_get_from_fd(attr->query.target_fd, false); if (IS_ERR(rcdev)) return PTR_ERR(rcdev); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/media/rc/ir-sharp-decoder.c +++ linux-xilinx-zynqmp-5.15.0/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 @@ .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, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/media/rc/lirc_dev.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/rc/lirc_dev.c @@ -287,7 +287,11 @@ 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) { @@ -823,7 +827,7 @@ unregister_chrdev_region(lirc_base_dev, RC_DEV_MAX); } -struct rc_dev *rc_dev_get_from_fd(int fd) +struct rc_dev *rc_dev_get_from_fd(int fd, bool write) { struct fd f = fdget(fd); struct lirc_fh *fh; @@ -837,6 +841,9 @@ return ERR_PTR(-EINVAL); } + if (write && !(f.file->f_mode & FMODE_WRITE)) + return ERR_PTR(-EPERM); + fh = f.file->private_data; dev = fh->rc; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/media/rc/rc-core-priv.h +++ linux-xilinx-zynqmp-5.15.0/drivers/media/rc/rc-core-priv.h @@ -325,7 +325,7 @@ void lirc_scancode_event(struct rc_dev *dev, struct lirc_scancode *lsc); int lirc_register(struct rc_dev *dev); void lirc_unregister(struct rc_dev *dev); -struct rc_dev *rc_dev_get_from_fd(int fd); +struct rc_dev *rc_dev_get_from_fd(int fd, bool write); #else static inline int lirc_dev_init(void) { return 0; } static inline void lirc_dev_exit(void) {} only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/media/test-drivers/vidtv/vidtv_mux.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/test-drivers/vidtv/vidtv_mux.c @@ -504,13 +504,16 @@ 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 @@ 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: only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/media/test-drivers/vidtv/vidtv_psi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/test-drivers/vidtv/vidtv_psi.c @@ -307,16 +307,29 @@ 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 @@ 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 @@ 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) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/media/test-drivers/vivid/vivid-rds-gen.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/test-drivers/vivid/vivid-rds-gen.c @@ -145,7 +145,7 @@ 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 ", only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/media/usb/cx231xx/cx231xx-core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/usb/cx231xx/cx231xx-core.c @@ -1024,6 +1024,7 @@ if (!dev->video_mode.isoc_ctl.urb) { dev_err(dev->dev, "cannot alloc memory for usb buffers\n"); + kfree(dma_q->p_left_data); return -ENOMEM; } @@ -1033,6 +1034,7 @@ dev_err(dev->dev, "cannot allocate memory for usbtransfer\n"); kfree(dev->video_mode.isoc_ctl.urb); + kfree(dma_q->p_left_data); return -ENOMEM; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/media/usb/gspca/cpia1.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/usb/gspca/cpia1.c @@ -18,6 +18,7 @@ #include #include +#include #include "gspca.h" @@ -1028,6 +1029,8 @@ 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 */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/media/usb/pvrusb2/pvrusb2-context.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/usb/pvrusb2/pvrusb2-context.c @@ -268,7 +268,8 @@ { pvr2_hdw_disconnect(mp->hdw); mp->disconnect_flag = !0; - pvr2_context_notify(mp); + if (!pvr2_context_shutok()) + pvr2_context_notify(mp); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/media/usb/stk1160/stk1160-video.c +++ linux-xilinx-zynqmp-5.15.0/drivers/media/usb/stk1160/stk1160-video.c @@ -107,8 +107,7 @@ /* * TODO: These stk1160_dbg are very spammy! - * We should 1) check why we are getting them - * and 2) add ratelimit. + * We should check why we are getting them. * * UPDATE: One of the reasons (the only one?) for getting these * is incorrect standard (mismatch between expected and configured). @@ -151,7 +150,7 @@ /* Let the bug hunt begin! sanity checks! */ if (lencopy < 0) { - stk1160_dbg("copy skipped: negative lencopy\n"); + printk_ratelimited(KERN_DEBUG "copy skipped: negative lencopy\n"); return; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/mfd/arizona-spi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mfd/arizona-spi.c @@ -118,6 +118,9 @@ 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; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/mfd/intel-lpss.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mfd/intel-lpss.c @@ -301,8 +301,8 @@ snprintf(name, sizeof(name), "%s-div", devname); tmp = clk_register_fractional_divider(NULL, name, __clk_get_name(tmp), + 0, lpss->priv, 1, 15, 16, 15, CLK_FRAC_DIVIDER_POWER_OF_TWO_PS, - lpss->priv, 1, 15, 16, 15, 0, NULL); if (IS_ERR(tmp)) return PTR_ERR(tmp); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/mfd/syscon.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mfd/syscon.c @@ -103,6 +103,10 @@ syscon_config.name = kasprintf(GFP_KERNEL, "%pOFn@%llx", np, (u64)res.start); + if (!syscon_config.name) { + ret = -ENOMEM; + goto err_regmap; + } syscon_config.reg_stride = reg_io_width; syscon_config.val_bits = reg_io_width * 8; syscon_config.max_register = resource_size(&res) - reg_io_width; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/misc/mei/client.c +++ linux-xilinx-zynqmp-5.15.0/drivers/misc/mei/client.c @@ -1975,7 +1975,7 @@ 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 @@ hbuf_slots = mei_hbuf_empty_slots(dev); if (hbuf_slots < 0) { - rets = -EOVERFLOW; + buf_len = -EOVERFLOW; goto out; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/misc/ti-st/st_core.c +++ linux-xilinx-zynqmp-5.15.0/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 @@ 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 @@ 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 @@ 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 */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/mmc/core/regulator.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mmc/core/regulator.c @@ -271,3 +271,44 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/mmc/core/slot-gpio.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mmc/core/slot-gpio.c @@ -62,11 +62,15 @@ int mmc_gpio_get_ro(struct mmc_host *host) { struct mmc_gpio *ctx = host->slot.handler_priv; + int cansleep; if (!ctx || !ctx->ro_gpio) return -ENOSYS; - return gpiod_get_value_cansleep(ctx->ro_gpio); + cansleep = gpiod_cansleep(ctx->ro_gpio); + return cansleep ? + gpiod_get_value_cansleep(ctx->ro_gpio) : + gpiod_get_value(ctx->ro_gpio); } EXPORT_SYMBOL(mmc_gpio_get_ro); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/mmc/host/cqhci-core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mmc/host/cqhci-core.c @@ -935,8 +935,8 @@ 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 @@ 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 @@ /* * 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 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/mtd/chips/cfi_cmdset_0001.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mtd/chips/cfi_cmdset_0001.c @@ -421,9 +421,25 @@ 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') { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/mtd/maps/physmap-core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mtd/maps/physmap-core.c @@ -556,6 +556,17 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/mtd/mtd_blkdevs.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mtd/mtd_blkdevs.c @@ -457,7 +457,7 @@ { struct mtd_blktrans_ops *tr; - if (mtd->type == MTD_ABSENT) + if (mtd->type == MTD_ABSENT || mtd->type == MTD_UBIVOLUME) return; list_for_each_entry(tr, &blktrans_majors, list) @@ -497,7 +497,7 @@ mutex_lock(&mtd_table_mutex); list_add(&tr->list, &blktrans_majors); mtd_for_each_device(mtd) - if (mtd->type != MTD_ABSENT) + if (mtd->type != MTD_ABSENT && mtd->type != MTD_UBIVOLUME) tr->add_mtd(tr, mtd); mutex_unlock(&mtd_table_mutex); return 0; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/mtd/nand/raw/fsl_ifc_nand.c +++ linux-xilinx-zynqmp-5.15.0/drivers/mtd/nand/raw/fsl_ifc_nand.c @@ -20,7 +20,7 @@ #define ERR_BYTE 0xFF /* Value returned for read bytes when read failed */ -#define IFC_TIMEOUT_MSECS 500 /* Maximum number of mSecs to wait +#define IFC_TIMEOUT_MSECS 1000 /* Maximum timeout to wait for IFC NAND Machine */ struct fsl_ifc_ctrl; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/mtd/nand/spi/micron.c +++ linux-xilinx-zynqmp-5.15.0/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) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/arcnet/arcdevice.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/arcnet/arcdevice.h @@ -186,6 +186,8 @@ #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 { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/can/dev/dev.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/can/dev/dev.c @@ -141,7 +141,8 @@ 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 @@ 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) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/can/dev/skb.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/can/dev/skb.c @@ -42,7 +42,11 @@ { 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) || only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/dsa/lan9303_mdio.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/dsa/lan9303_mdio.c @@ -32,7 +32,7 @@ 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 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/dsa/mv88e6xxx/chip.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/dsa/mv88e6xxx/chip.h @@ -578,8 +578,8 @@ int (*serdes_get_sset_count)(struct mv88e6xxx_chip *chip, int port); int (*serdes_get_strings)(struct mv88e6xxx_chip *chip, int port, uint8_t *data); - int (*serdes_get_stats)(struct mv88e6xxx_chip *chip, int port, - uint64_t *data); + size_t (*serdes_get_stats)(struct mv88e6xxx_chip *chip, int port, + uint64_t *data); /* SERDES registers for ethtool */ int (*serdes_get_regs_len)(struct mv88e6xxx_chip *chip, int port); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/actions/owl-emac.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/actions/owl-emac.c @@ -342,7 +342,7 @@ static void owl_emac_set_hw_mac_addr(struct net_device *netdev) { struct owl_emac_priv *priv = netdev_priv(netdev); - u8 *mac_addr = netdev->dev_addr; + const u8 *mac_addr = netdev->dev_addr; u32 addr_high, addr_low; addr_high = mac_addr[0] << 8 | mac_addr[1]; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/adaptec/starfire.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/adaptec/starfire.c @@ -955,7 +955,7 @@ writew(0, ioaddr + PerfFilterTable + 4); writew(0, ioaddr + PerfFilterTable + 8); for (i = 1; i < 16; i++) { - __be16 *eaddrs = (__be16 *)dev->dev_addr; + const __be16 *eaddrs = (const __be16 *)dev->dev_addr; void __iomem *setup_frm = ioaddr + PerfFilterTable + i * 16; writew(be16_to_cpu(eaddrs[2]), setup_frm); setup_frm += 4; writew(be16_to_cpu(eaddrs[1]), setup_frm); setup_frm += 4; @@ -1787,14 +1787,14 @@ } else if (netdev_mc_count(dev) <= 14) { /* Use the 16 element perfect filter, skip first two entries. */ void __iomem *filter_addr = ioaddr + PerfFilterTable + 2 * 16; - __be16 *eaddrs; + const __be16 *eaddrs; netdev_for_each_mc_addr(ha, dev) { eaddrs = (__be16 *) ha->addr; writew(be16_to_cpu(eaddrs[2]), filter_addr); filter_addr += 4; writew(be16_to_cpu(eaddrs[1]), filter_addr); filter_addr += 4; writew(be16_to_cpu(eaddrs[0]), filter_addr); filter_addr += 8; } - eaddrs = (__be16 *)dev->dev_addr; + eaddrs = (const __be16 *)dev->dev_addr; i = netdev_mc_count(dev) + 2; while (i++ < 16) { writew(be16_to_cpu(eaddrs[0]), filter_addr); filter_addr += 4; @@ -1805,7 +1805,7 @@ } else { /* Must use a multicast hash table. */ void __iomem *filter_addr; - __be16 *eaddrs; + const __be16 *eaddrs; __le16 mc_filter[32] __attribute__ ((aligned(sizeof(long)))); /* Multicast hash filter */ memset(mc_filter, 0, sizeof(mc_filter)); @@ -1819,7 +1819,7 @@ } /* Clear the perfect filter list, skip first two entries. */ filter_addr = ioaddr + PerfFilterTable + 2 * 16; - eaddrs = (__be16 *)dev->dev_addr; + eaddrs = (const __be16 *)dev->dev_addr; for (i = 2; i < 16; i++) { writew(be16_to_cpu(eaddrs[0]), filter_addr); filter_addr += 4; writew(be16_to_cpu(eaddrs[1]), filter_addr); filter_addr += 4; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/alteon/acenic.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/alteon/acenic.c @@ -2712,7 +2712,7 @@ struct ace_private *ap = netdev_priv(dev); struct ace_regs __iomem *regs = ap->regs; struct sockaddr *addr=p; - u8 *da; + const u8 *da; struct cmd cmd; if(netif_running(dev)) @@ -2720,7 +2720,7 @@ memcpy(dev->dev_addr, addr->sa_data,dev->addr_len); - da = (u8 *)dev->dev_addr; + da = (const u8 *)dev->dev_addr; writel(da[0] << 8 | da[1], ®s->MacAddrHi); writel((da[2] << 24) | (da[3] << 16) | (da[4] << 8) | da[5], only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/amazon/ena/ena_eth_com.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/amazon/ena/ena_eth_com.c @@ -328,9 +328,6 @@ * compare it to the stored version, just create the meta */ if (io_sq->disable_meta_caching) { - if (unlikely(!ena_tx_ctx->meta_valid)) - return -EINVAL; - *have_meta = true; return ena_com_create_meta(io_sq, ena_meta); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/amd/xgbe/xgbe-ethtool.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe-ethtool.c @@ -314,10 +314,15 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/apm/xgene-v2/mac.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/apm/xgene-v2/mac.c @@ -65,7 +65,7 @@ void xge_mac_set_station_addr(struct xge_pdata *pdata) { - u8 *dev_addr = pdata->ndev->dev_addr; + const u8 *dev_addr = pdata->ndev->dev_addr; u32 addr0, addr1; addr0 = (dev_addr[3] << 24) | (dev_addr[2] << 16) | only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/apm/xgene/xgene_enet_hw.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/apm/xgene/xgene_enet_hw.c @@ -378,8 +378,8 @@ static void xgene_gmac_set_mac_addr(struct xgene_enet_pdata *pdata) { + const u8 *dev_addr = pdata->ndev->dev_addr; u32 addr0, addr1; - u8 *dev_addr = pdata->ndev->dev_addr; addr0 = (dev_addr[3] << 24) | (dev_addr[2] << 16) | (dev_addr[1] << 8) | dev_addr[0]; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/apm/xgene/xgene_enet_sgmac.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/apm/xgene/xgene_enet_sgmac.c @@ -165,8 +165,8 @@ static void xgene_sgmac_set_mac_addr(struct xgene_enet_pdata *p) { + const u8 *dev_addr = p->ndev->dev_addr; u32 addr0, addr1; - u8 *dev_addr = p->ndev->dev_addr; addr0 = (dev_addr[3] << 24) | (dev_addr[2] << 16) | (dev_addr[1] << 8) | dev_addr[0]; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/apm/xgene/xgene_enet_xgmac.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/apm/xgene/xgene_enet_xgmac.c @@ -207,8 +207,8 @@ static void xgene_xgmac_set_mac_addr(struct xgene_enet_pdata *pdata) { + const u8 *dev_addr = pdata->ndev->dev_addr; u32 addr0, addr1; - u8 *dev_addr = pdata->ndev->dev_addr; addr0 = (dev_addr[3] << 24) | (dev_addr[2] << 16) | (dev_addr[1] << 8) | dev_addr[0]; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_a0.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_a0.c @@ -322,7 +322,7 @@ return aq_hw_err_from_flags(self); } -static int hw_atl_a0_hw_mac_addr_set(struct aq_hw_s *self, u8 *mac_addr) +static int hw_atl_a0_hw_mac_addr_set(struct aq_hw_s *self, const u8 *mac_addr) { unsigned int h = 0U; unsigned int l = 0U; @@ -348,7 +348,7 @@ return err; } -static int hw_atl_a0_hw_init(struct aq_hw_s *self, u8 *mac_addr) +static int hw_atl_a0_hw_init(struct aq_hw_s *self, const u8 *mac_addr) { static u32 aq_hw_atl_igcr_table_[4][2] = { [AQ_HW_IRQ_INVALID] = { 0x20000000U, 0x20000000U }, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.h @@ -58,7 +58,7 @@ void hw_atl_b0_hw_init_rx_rss_ctrl1(struct aq_hw_s *self); -int hw_atl_b0_hw_mac_addr_set(struct aq_hw_s *self, u8 *mac_addr); +int hw_atl_b0_hw_mac_addr_set(struct aq_hw_s *self, const u8 *mac_addr); int hw_atl_b0_set_fc(struct aq_hw_s *self, u32 fc, u32 tc); int hw_atl_b0_set_loopback(struct aq_hw_s *self, u32 mode, bool enable); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/atheros/atl1c/atl1c.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/atheros/atl1c/atl1c.h @@ -504,15 +504,12 @@ 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 */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/broadcom/b44.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/b44.c @@ -218,7 +218,8 @@ data[1] = (val >> 0) & 0xFF; } -static inline void __b44_cam_write(struct b44 *bp, unsigned char *data, int index) +static inline void __b44_cam_write(struct b44 *bp, + const unsigned char *data, int index) { u32 val; @@ -1507,7 +1508,8 @@ } } -static int b44_magic_pattern(u8 *macaddr, u8 *ppattern, u8 *pmask, int offset) +static int b44_magic_pattern(const u8 *macaddr, u8 *ppattern, u8 *pmask, + int offset) { int magicsync = 6; int k, j, len = offset; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/broadcom/bnx2x/bnx2x_sriov.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_sriov.h @@ -508,7 +508,8 @@ void bnx2x_vfpf_close_vf(struct bnx2x *bp); int bnx2x_vfpf_setup_q(struct bnx2x *bp, struct bnx2x_fastpath *fp, bool is_leading); -int bnx2x_vfpf_config_mac(struct bnx2x *bp, u8 *addr, u8 vf_qid, bool set); +int bnx2x_vfpf_config_mac(struct bnx2x *bp, const u8 *addr, u8 vf_qid, + bool set); int bnx2x_vfpf_config_rss(struct bnx2x *bp, struct bnx2x_config_rss_params *params); int bnx2x_vfpf_set_mcast(struct net_device *dev); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/broadcom/bnx2x/bnx2x_vfpf.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_vfpf.c @@ -722,7 +722,7 @@ } /* request pf to add a mac for the vf */ -int bnx2x_vfpf_config_mac(struct bnx2x *bp, u8 *addr, u8 vf_qid, bool set) +int bnx2x_vfpf_config_mac(struct bnx2x *bp, const u8 *addr, u8 vf_qid, bool set) { struct vfpf_set_q_filters_tlv *req = &bp->vf2pf_mbox->req.set_q_filters; struct pfvf_general_resp_tlv *resp = &bp->vf2pf_mbox->resp.general_resp; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.h @@ -41,5 +41,5 @@ void bnxt_sriov_disable(struct bnxt *); void bnxt_hwrm_exec_fwd_req(struct bnxt *); void bnxt_update_vf_mac(struct bnxt *); -int bnxt_approve_mac(struct bnxt *, u8 *, bool); +int bnxt_approve_mac(struct bnxt *, const u8 *, bool); #endif only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/broadcom/genet/bcmgenet.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/genet/bcmgenet.h @@ -701,4 +701,7 @@ void bcmgenet_wol_power_up_cfg(struct bcmgenet_priv *priv, enum bcmgenet_power_mode mode); +void bcmgenet_eee_enable_set(struct net_device *dev, bool enable, + bool tx_lpi_enabled); + #endif /* __BCMGENET_H__ */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/broadcom/tg3.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/broadcom/tg3.h @@ -3018,6 +3018,7 @@ 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 @@ 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 @@ /* 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/calxeda/xgmac.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/calxeda/xgmac.c @@ -607,7 +607,7 @@ writel(value, ioaddr + XGMAC_CONTROL); } -static void xgmac_set_mac_addr(void __iomem *ioaddr, unsigned char *addr, +static void xgmac_set_mac_addr(void __iomem *ioaddr, const unsigned char *addr, int num) { u32 data; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/chelsio/cxgb/gmac.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/chelsio/cxgb/gmac.h @@ -117,7 +117,7 @@ const struct cmac_statistics *(*statistics_update)(struct cmac *, int); int (*macaddress_get)(struct cmac *, u8 mac_addr[6]); - int (*macaddress_set)(struct cmac *, u8 mac_addr[6]); + int (*macaddress_set)(struct cmac *, const u8 mac_addr[6]); }; typedef struct _cmac_instance cmac_instance; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/chelsio/cxgb/pm3393.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/chelsio/cxgb/pm3393.c @@ -496,7 +496,7 @@ return 0; } -static int pm3393_macaddress_set(struct cmac *cmac, u8 ma[6]) +static int pm3393_macaddress_set(struct cmac *cmac, const u8 ma[6]) { u32 val, lo, mid, hi, enabled = cmac->instance->enabled; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/chelsio/cxgb/vsc7326.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/chelsio/cxgb/vsc7326.c @@ -379,7 +379,7 @@ } /* Expect MAC address to be in network byte order. */ -static int mac_set_address(struct cmac* mac, u8 addr[6]) +static int mac_set_address(struct cmac* mac, const u8 addr[6]) { u32 val; int port = mac->instance->index; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/chelsio/cxgb3/common.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/chelsio/cxgb3/common.h @@ -710,7 +710,7 @@ int t3_mac_disable(struct cmac *mac, int which); int t3_mac_set_mtu(struct cmac *mac, unsigned int mtu); int t3_mac_set_rx_mode(struct cmac *mac, struct net_device *dev); -int t3_mac_set_address(struct cmac *mac, unsigned int idx, u8 addr[6]); +int t3_mac_set_address(struct cmac *mac, unsigned int idx, const u8 addr[6]); int t3_mac_set_num_ucast(struct cmac *mac, int n); const struct mac_stats *t3_mac_update_stats(struct cmac *mac); int t3_mac_set_speed_duplex_fc(struct cmac *mac, int speed, int duplex, int fc); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/chelsio/cxgb3/xgmac.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/chelsio/cxgb3/xgmac.c @@ -240,7 +240,7 @@ } /* Set one of the station's unicast MAC addresses. */ -int t3_mac_set_address(struct cmac *mac, unsigned int idx, u8 addr[6]) +int t3_mac_set_address(struct cmac *mac, unsigned int idx, const u8 addr[6]) { if (idx >= mac->nucast) return -EINVAL; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/cisco/enic/enic_pp.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/cisco/enic/enic_pp.c @@ -73,9 +73,9 @@ struct vic_provinfo *vp; const u8 oui[3] = VIC_PROVINFO_CISCO_OUI; const __be16 os_type = htons(VIC_GENERIC_PROV_OS_TYPE_LINUX); + const u8 *client_mac; char uuid_str[38]; char client_mac_str[18]; - u8 *client_mac; int err; ENIC_PP_BY_INDEX(enic, vf, pp, &err); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/cortina/gemini.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/cortina/gemini.h @@ -502,7 +502,7 @@ #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 @@ #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 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/dlink/dl2k.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/dlink/dl2k.c @@ -567,7 +567,7 @@ */ for (i = 0; i < 3; i++) dw16(StationAddr0 + 2 * i, - cpu_to_le16(((u16 *)dev->dev_addr)[i])); + cpu_to_le16(((const u16 *)dev->dev_addr)[i])); set_multicast (dev); if (np->coalesce) { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.h @@ -670,7 +670,7 @@ 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 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/freescale/fman/fman_dtsec.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/freescale/fman/fman_dtsec.c @@ -366,7 +366,7 @@ cfg->maximum_frame = DEFAULT_MAXIMUM_FRAME; } -static void set_mac_address(struct dtsec_regs __iomem *regs, u8 *adr) +static void set_mac_address(struct dtsec_regs __iomem *regs, const u8 *adr) { u32 tmp; @@ -516,7 +516,7 @@ if (addr) { MAKE_ENET_ADDR_FROM_UINT64(addr, eth_addr); - set_mac_address(regs, (u8 *)eth_addr); + set_mac_address(regs, (const u8 *)eth_addr); } /* HASH */ @@ -1022,7 +1022,7 @@ return 0; } -int dtsec_modify_mac_address(struct fman_mac *dtsec, enet_addr_t *enet_addr) +int dtsec_modify_mac_address(struct fman_mac *dtsec, const enet_addr_t *enet_addr) { struct dtsec_regs __iomem *regs = dtsec->regs; enum comm_mode mode = COMM_MODE_NONE; @@ -1041,7 +1041,7 @@ * Station address have to be swapped (big endian to little endian */ dtsec->addr = ENET_ADDR_TO_UINT64(*enet_addr); - set_mac_address(dtsec->regs, (u8 *)(*enet_addr)); + set_mac_address(dtsec->regs, (const u8 *)(*enet_addr)); graceful_start(dtsec, mode); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/freescale/fman/fman_dtsec.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/freescale/fman/fman_dtsec.h @@ -37,7 +37,7 @@ struct fman_mac *dtsec_config(struct fman_mac_params *params); int dtsec_set_promiscuous(struct fman_mac *dtsec, bool new_val); -int dtsec_modify_mac_address(struct fman_mac *dtsec, enet_addr_t *enet_addr); +int dtsec_modify_mac_address(struct fman_mac *dtsec, const enet_addr_t *enet_addr); int dtsec_adjust_link(struct fman_mac *dtsec, u16 speed); int dtsec_restart_autoneg(struct fman_mac *dtsec); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/freescale/fman/fman_memac.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/freescale/fman/fman_memac.c @@ -354,7 +354,7 @@ bool allmulti_enabled; }; -static void add_addr_in_paddr(struct memac_regs __iomem *regs, u8 *adr, +static void add_addr_in_paddr(struct memac_regs __iomem *regs, const u8 *adr, u8 paddr_num) { u32 tmp0, tmp1; @@ -897,12 +897,12 @@ return 0; } -int memac_modify_mac_address(struct fman_mac *memac, enet_addr_t *enet_addr) +int memac_modify_mac_address(struct fman_mac *memac, const enet_addr_t *enet_addr) { if (!is_init_done(memac->memac_drv_param)) return -EINVAL; - add_addr_in_paddr(memac->regs, (u8 *)(*enet_addr), 0); + add_addr_in_paddr(memac->regs, (const u8 *)(*enet_addr), 0); return 0; } @@ -1058,7 +1058,7 @@ /* MAC Address */ if (memac->addr != 0) { MAKE_ENET_ADDR_FROM_UINT64(memac->addr, eth_addr); - add_addr_in_paddr(memac->regs, (u8 *)eth_addr, 0); + add_addr_in_paddr(memac->regs, (const u8 *)eth_addr, 0); } fixed_link = memac_drv_param->fixed_link; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/freescale/fman/fman_memac.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/freescale/fman/fman_memac.h @@ -40,7 +40,7 @@ struct fman_mac *memac_config(struct fman_mac_params *params); int memac_set_promiscuous(struct fman_mac *memac, bool new_val); -int memac_modify_mac_address(struct fman_mac *memac, enet_addr_t *enet_addr); +int memac_modify_mac_address(struct fman_mac *memac, const enet_addr_t *enet_addr); int memac_adjust_link(struct fman_mac *memac, u16 speed); int memac_cfg_max_frame_len(struct fman_mac *memac, u16 new_val); int memac_cfg_reset_on_init(struct fman_mac *memac, bool enable); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/freescale/fman/fman_tgec.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/freescale/fman/fman_tgec.c @@ -221,7 +221,7 @@ bool allmulti_enabled; }; -static void set_mac_address(struct tgec_regs __iomem *regs, u8 *adr) +static void set_mac_address(struct tgec_regs __iomem *regs, const u8 *adr) { u32 tmp0, tmp1; @@ -514,13 +514,13 @@ return 0; } -int tgec_modify_mac_address(struct fman_mac *tgec, enet_addr_t *p_enet_addr) +int tgec_modify_mac_address(struct fman_mac *tgec, const enet_addr_t *p_enet_addr) { if (!is_init_done(tgec->cfg)) return -EINVAL; tgec->addr = ENET_ADDR_TO_UINT64(*p_enet_addr); - set_mac_address(tgec->regs, (u8 *)(*p_enet_addr)); + set_mac_address(tgec->regs, (const u8 *)(*p_enet_addr)); return 0; } @@ -704,7 +704,7 @@ if (tgec->addr) { MAKE_ENET_ADDR_FROM_UINT64(tgec->addr, eth_addr); - set_mac_address(tgec->regs, (u8 *)eth_addr); + set_mac_address(tgec->regs, (const u8 *)eth_addr); } /* interrupts */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/freescale/fman/fman_tgec.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/freescale/fman/fman_tgec.h @@ -37,7 +37,7 @@ struct fman_mac *tgec_config(struct fman_mac_params *params); int tgec_set_promiscuous(struct fman_mac *tgec, bool new_val); -int tgec_modify_mac_address(struct fman_mac *tgec, enet_addr_t *enet_addr); +int tgec_modify_mac_address(struct fman_mac *tgec, const enet_addr_t *enet_addr); int tgec_cfg_max_frame_len(struct fman_mac *tgec, u16 new_val); int tgec_enable(struct fman_mac *tgec, enum comm_mode mode); int tgec_disable(struct fman_mac *tgec, enum comm_mode mode); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/freescale/fman/mac.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/freescale/fman/mac.h @@ -66,7 +66,7 @@ int (*stop)(struct mac_device *mac_dev); void (*adjust_link)(struct mac_device *mac_dev); int (*set_promisc)(struct fman_mac *mac_dev, bool enable); - int (*change_addr)(struct fman_mac *mac_dev, enet_addr_t *enet_addr); + int (*change_addr)(struct fman_mac *mac_dev, const enet_addr_t *enet_addr); int (*set_allmulti)(struct fman_mac *mac_dev, bool enable); int (*set_tstamp)(struct fman_mac *mac_dev, bool enable); int (*set_multi)(struct net_device *net_dev, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/hisilicon/hns/hnae.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns/hnae.h @@ -499,7 +499,7 @@ u32 *tx_usecs_high, u32 *rx_usecs_high); void (*set_promisc_mode)(struct hnae_handle *handle, u32 en); int (*get_mac_addr)(struct hnae_handle *handle, void **p); - int (*set_mac_addr)(struct hnae_handle *handle, void *p); + int (*set_mac_addr)(struct hnae_handle *handle, const void *p); int (*add_uc_addr)(struct hnae_handle *handle, const unsigned char *addr); int (*rm_uc_addr)(struct hnae_handle *handle, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/hisilicon/hns/hns_ae_adapt.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns/hns_ae_adapt.c @@ -207,7 +207,7 @@ hns_rcb_reset_ring_hw(q); } -static int hns_ae_set_mac_address(struct hnae_handle *handle, void *p) +static int hns_ae_set_mac_address(struct hnae_handle *handle, const void *p) { int ret; struct hns_mac_cb *mac_cb = hns_get_mac_cb(handle); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/hisilicon/hns/hns_dsaf_gmac.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns/hns_dsaf_gmac.c @@ -450,7 +450,7 @@ += dsaf_read_dev(drv, GMAC_TX_PAUSE_FRAMES_REG); } -static void hns_gmac_set_mac_addr(void *mac_drv, char *mac_addr) +static void hns_gmac_set_mac_addr(void *mac_drv, const char *mac_addr) { struct mac_driver *drv = (struct mac_driver *)mac_drv; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/hisilicon/hns/hns_dsaf_mac.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns/hns_dsaf_mac.c @@ -66,6 +66,27 @@ } } +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 @@ &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; @@ -240,7 +269,7 @@ *@addr:mac address */ int hns_mac_change_vf_addr(struct hns_mac_cb *mac_cb, - u32 vmid, char *addr) + u32 vmid, const char *addr) { int ret; struct mac_driver *mac_ctrl_drv = hns_mac_get_drv(mac_cb); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/hisilicon/hns/hns_dsaf_mac.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns/hns_dsaf_mac.h @@ -348,7 +348,7 @@ /*disable mac when disable nic or dsaf*/ void (*mac_disable)(void *mac_drv, enum mac_commom_mode mode); /* config mac address*/ - void (*set_mac_addr)(void *mac_drv, char *mac_addr); + void (*set_mac_addr)(void *mac_drv, const char *mac_addr); /*adjust mac mode of port,include speed and duplex*/ int (*adjust_link)(void *mac_drv, enum mac_speed speed, u32 full_duplex); @@ -425,7 +425,8 @@ void mac_adjust_link(struct net_device *net_dev); bool hns_mac_need_adjust_link(struct hns_mac_cb *mac_cb, int speed, int duplex); void hns_mac_get_link_status(struct hns_mac_cb *mac_cb, u32 *link_status); -int hns_mac_change_vf_addr(struct hns_mac_cb *mac_cb, u32 vmid, char *addr); +int hns_mac_change_vf_addr(struct hns_mac_cb *mac_cb, u32 vmid, + const char *addr); int hns_mac_set_multi(struct hns_mac_cb *mac_cb, u32 port_num, char *addr, bool enable); int hns_mac_vm_config_bc_en(struct hns_mac_cb *mac_cb, u32 vm, bool enable); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/hisilicon/hns/hns_dsaf_xgmac.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns/hns_dsaf_xgmac.c @@ -255,7 +255,7 @@ dsaf_write_dev(drv, XGMAC_MAC_PAUSE_CTRL_REG, origin); } -static void hns_xgmac_set_pausefrm_mac_addr(void *mac_drv, char *mac_addr) +static void hns_xgmac_set_pausefrm_mac_addr(void *mac_drv, const char *mac_addr) { struct mac_driver *drv = (struct mac_driver *)mac_drv; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/hisilicon/hns3/hclge_mbx.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hclge_mbx.h @@ -131,11 +131,20 @@ }; 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 @@ 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 @@ 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 @@ 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 @@ 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) \ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_trace.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_trace.h @@ -62,7 +62,7 @@ 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, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_trace.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_trace.h @@ -29,7 +29,7 @@ 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, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/i825xx/sun3_82586.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/i825xx/sun3_82586.c @@ -461,7 +461,7 @@ ias_cmd->cmd_cmd = swab16(CMD_IASETUP | CMD_LAST); ias_cmd->cmd_link = 0xffff; - memcpy((char *)&ias_cmd->iaddr,(char *) dev->dev_addr,ETH_ALEN); + memcpy((char *)&ias_cmd->iaddr,(const char *) dev->dev_addr,ETH_ALEN); p->scb->cbl_offset = make16(ias_cmd); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/intel/ice/ice_adminq_cmd.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ice/ice_adminq_cmd.h @@ -118,6 +118,9 @@ #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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/intel/ice/ice_lib.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ice/ice_lib.h @@ -116,4 +116,7 @@ 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_ */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/intel/ice/ice_type.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ice/ice_type.h @@ -268,6 +268,8 @@ u8 dcb; u8 ieee_1588; u8 rdma; + u8 roce_lag; + u8 sriov_lag; bool nvm_update_pending_nvm; bool nvm_update_pending_orom; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/intel/ixgb/ixgb_hw.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgb/ixgb_hw.c @@ -549,7 +549,7 @@ *****************************************************************************/ void ixgb_rar_set(struct ixgb_hw *hw, - u8 *addr, + const u8 *addr, u32 index) { u32 rar_low, rar_high; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/intel/ixgb/ixgb_hw.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgb/ixgb_hw.h @@ -740,7 +740,7 @@ void ixgb_check_for_link(struct ixgb_hw *hw); bool ixgb_check_for_bad_link(struct ixgb_hw *hw); -void ixgb_rar_set(struct ixgb_hw *hw, u8 *addr, u32 index); +void ixgb_rar_set(struct ixgb_hw *hw, const u8 *addr, u32 index); /* Filters (multicast, vlan, receive) */ void ixgb_mc_addr_list_update(struct ixgb_hw *hw, u8 *mc_addr_list, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/intel/ixgbe/ixgbe_82598.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_82598.c @@ -123,14 +123,14 @@ if (ret_val) return ret_val; if (hw->phy.sfp_type == ixgbe_sfp_type_unknown) - return IXGBE_ERR_SFP_NOT_SUPPORTED; + return -EOPNOTSUPP; /* Check to see if SFP+ module is supported */ ret_val = ixgbe_get_sfp_init_sequence_offsets(hw, &list_offset, &data_offset); if (ret_val) - return IXGBE_ERR_SFP_NOT_SUPPORTED; + return -EOPNOTSUPP; break; default: break; @@ -213,7 +213,7 @@ break; default: - return IXGBE_ERR_LINK_SETUP; + return -EIO; } return 0; @@ -283,7 +283,7 @@ /* Validate the water mark configuration */ if (!hw->fc.pause_time) - return IXGBE_ERR_INVALID_LINK_SETTINGS; + return -EINVAL; /* Low water mark of zero causes XOFF floods */ for (i = 0; i < MAX_TRAFFIC_CLASS; i++) { @@ -292,7 +292,7 @@ if (!hw->fc.low_water[i] || hw->fc.low_water[i] >= hw->fc.high_water[i]) { hw_dbg(hw, "Invalid water mark configuration\n"); - return IXGBE_ERR_INVALID_LINK_SETTINGS; + return -EINVAL; } } } @@ -369,7 +369,7 @@ break; default: hw_dbg(hw, "Flow control param set incorrectly\n"); - return IXGBE_ERR_CONFIG; + return -EIO; } /* Set 802.3x based flow control settings. */ @@ -438,7 +438,7 @@ msleep(100); } if (!(links_reg & IXGBE_LINKS_KX_AN_COMP)) { - status = IXGBE_ERR_AUTONEG_NOT_COMPLETE; + status = -EIO; hw_dbg(hw, "Autonegotiation did not complete.\n"); } } @@ -478,7 +478,7 @@ if (timeout == IXGBE_VALIDATE_LINK_READY_TIMEOUT) { hw_dbg(hw, "Link was indicated but link is down\n"); - return IXGBE_ERR_LINK_SETUP; + return -EIO; } return 0; @@ -594,7 +594,7 @@ speed &= link_capabilities; if (speed == IXGBE_LINK_SPEED_UNKNOWN) - return IXGBE_ERR_LINK_SETUP; + return -EINVAL; /* Set KX4/KX support according to speed requested */ else if (link_mode == IXGBE_AUTOC_LMS_KX4_AN || @@ -701,9 +701,9 @@ /* Init PHY and function pointers, perform SFP setup */ phy_status = hw->phy.ops.init(hw); - if (phy_status == IXGBE_ERR_SFP_NOT_SUPPORTED) + if (phy_status == -EOPNOTSUPP) return phy_status; - if (phy_status == IXGBE_ERR_SFP_NOT_PRESENT) + if (phy_status == -ENOENT) goto mac_reset_top; hw->phy.ops.reset(hw); @@ -727,7 +727,7 @@ udelay(1); } if (ctrl & IXGBE_CTRL_RST) { - status = IXGBE_ERR_RESET_FAILED; + status = -EIO; hw_dbg(hw, "Reset polling failed to complete.\n"); } @@ -789,7 +789,7 @@ /* Make sure we are using a valid rar index range */ if (rar >= rar_entries) { hw_dbg(hw, "RAR index %d is out of range.\n", rar); - return IXGBE_ERR_INVALID_ARGUMENT; + return -EINVAL; } rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(rar)); @@ -814,7 +814,7 @@ /* Make sure we are using a valid rar index range */ if (rar >= rar_entries) { hw_dbg(hw, "RAR index %d is out of range.\n", rar); - return IXGBE_ERR_INVALID_ARGUMENT; + return -EINVAL; } rar_high = IXGBE_READ_REG(hw, IXGBE_RAH(rar)); @@ -845,7 +845,7 @@ u32 vftabyte; if (vlan > 4095) - return IXGBE_ERR_PARAM; + return -EINVAL; /* Determine 32-bit word position in array */ regindex = (vlan >> 5) & 0x7F; /* upper seven bits */ @@ -964,7 +964,7 @@ gssr = IXGBE_GSSR_PHY0_SM; if (hw->mac.ops.acquire_swfw_sync(hw, gssr) != 0) - return IXGBE_ERR_SWFW_SYNC; + return -EBUSY; if (hw->phy.type == ixgbe_phy_nl) { /* @@ -993,7 +993,7 @@ if (sfp_stat != IXGBE_I2C_EEPROM_STATUS_PASS) { hw_dbg(hw, "EEPROM read did not pass.\n"); - status = IXGBE_ERR_SFP_NOT_PRESENT; + status = -ENOENT; goto out; } @@ -1003,7 +1003,7 @@ *eeprom_data = (u8)(sfp_data >> 8); } else { - status = IXGBE_ERR_PHY; + status = -EIO; } out: only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/intel/ixgbe/ixgbe_82599.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_82599.c @@ -117,7 +117,7 @@ ret_val = hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_MAC_CSR_SM); if (ret_val) - return IXGBE_ERR_SWFW_SYNC; + return -EBUSY; if (hw->eeprom.ops.read(hw, ++data_offset, &data_value)) goto setup_sfp_err; @@ -144,7 +144,7 @@ if (ret_val) { hw_dbg(hw, " sfp module setup not complete\n"); - return IXGBE_ERR_SFP_SETUP_NOT_COMPLETE; + return -EIO; } } @@ -159,7 +159,7 @@ usleep_range(hw->eeprom.semaphore_delay * 1000, hw->eeprom.semaphore_delay * 2000); hw_err(hw, "eeprom read at offset %d failed\n", data_offset); - return IXGBE_ERR_SFP_SETUP_NOT_COMPLETE; + return -EIO; } /** @@ -184,7 +184,7 @@ ret_val = hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_MAC_CSR_SM); if (ret_val) - return IXGBE_ERR_SWFW_SYNC; + return -EBUSY; *locked = true; } @@ -219,7 +219,7 @@ ret_val = hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_MAC_CSR_SM); if (ret_val) - return IXGBE_ERR_SWFW_SYNC; + return -EBUSY; locked = true; } @@ -400,7 +400,7 @@ break; default: - return IXGBE_ERR_LINK_SETUP; + return -EIO; } if (hw->phy.multispeed_fiber) { @@ -541,7 +541,7 @@ msleep(100); } if (!(links_reg & IXGBE_LINKS_KX_AN_COMP)) { - status = IXGBE_ERR_AUTONEG_NOT_COMPLETE; + status = -EIO; hw_dbg(hw, "Autoneg did not complete.\n"); } } @@ -794,7 +794,7 @@ speed &= link_capabilities; if (speed == IXGBE_LINK_SPEED_UNKNOWN) - return IXGBE_ERR_LINK_SETUP; + return -EINVAL; /* Use stored value (EEPROM defaults) of AUTOC to find KR/KX4 support*/ if (hw->mac.orig_link_settings_stored) @@ -861,8 +861,7 @@ msleep(100); } if (!(links_reg & IXGBE_LINKS_KX_AN_COMP)) { - status = - IXGBE_ERR_AUTONEG_NOT_COMPLETE; + status = -EIO; hw_dbg(hw, "Autoneg did not complete.\n"); } } @@ -927,7 +926,7 @@ /* Identify PHY and related function pointers */ status = hw->phy.ops.init(hw); - if (status == IXGBE_ERR_SFP_NOT_SUPPORTED) + if (status == -EOPNOTSUPP) return status; /* Setup SFP module if there is one present. */ @@ -936,7 +935,7 @@ hw->phy.sfp_setup_needed = false; } - if (status == IXGBE_ERR_SFP_NOT_SUPPORTED) + if (status == -EOPNOTSUPP) return status; /* Reset PHY */ @@ -974,7 +973,7 @@ } if (ctrl & IXGBE_CTRL_RST_MASK) { - status = IXGBE_ERR_RESET_FAILED; + status = -EIO; hw_dbg(hw, "Reset polling failed to complete.\n"); } @@ -1093,7 +1092,7 @@ udelay(10); } - return IXGBE_ERR_FDIR_CMD_INCOMPLETE; + return -EIO; } /** @@ -1155,7 +1154,7 @@ } if (i >= IXGBE_FDIR_INIT_DONE_POLL) { hw_dbg(hw, "Flow Director Signature poll time exceeded!\n"); - return IXGBE_ERR_FDIR_REINIT_FAILED; + return -EIO; } /* Clear FDIR statistics registers (read to clear) */ @@ -1387,7 +1386,7 @@ break; default: hw_dbg(hw, " Error on flow type input\n"); - return IXGBE_ERR_CONFIG; + return -EIO; } /* configure FDIRCMD register */ @@ -1546,7 +1545,7 @@ break; default: hw_dbg(hw, " Error on vm pool mask\n"); - return IXGBE_ERR_CONFIG; + return -EIO; } switch (input_mask->formatted.flow_type & IXGBE_ATR_L4TYPE_MASK) { @@ -1555,14 +1554,14 @@ if (input_mask->formatted.dst_port || input_mask->formatted.src_port) { hw_dbg(hw, " Error on src/dst port mask\n"); - return IXGBE_ERR_CONFIG; + return -EIO; } break; case IXGBE_ATR_L4TYPE_MASK: break; default: hw_dbg(hw, " Error on flow type mask\n"); - return IXGBE_ERR_CONFIG; + return -EIO; } switch (ntohs(input_mask->formatted.vlan_id) & 0xEFFF) { @@ -1583,7 +1582,7 @@ break; default: hw_dbg(hw, " Error on VLAN mask\n"); - return IXGBE_ERR_CONFIG; + return -EIO; } switch ((__force u16)input_mask->formatted.flex_bytes & 0xFFFF) { @@ -1595,7 +1594,7 @@ break; default: hw_dbg(hw, " Error on flexible byte mask\n"); - return IXGBE_ERR_CONFIG; + return -EIO; } /* Now mask VM pool and destination IPv6 - bits 5 and 2 */ @@ -1824,7 +1823,7 @@ /* Return error if SFP module has been detected but is not supported */ if (hw->phy.type == ixgbe_phy_sfp_unsupported) - return IXGBE_ERR_SFP_NOT_SUPPORTED; + return -EOPNOTSUPP; return status; } @@ -1863,13 +1862,13 @@ * Verifies that installed the firmware version is 0.6 or higher * for SFI devices. All 82599 SFI devices should have version 0.6 or higher. * - * Returns IXGBE_ERR_EEPROM_VERSION if the FW is not present or - * if the FW version is not supported. + * Return: -EACCES if the FW is not present or if the FW version is + * not supported. **/ static s32 ixgbe_verify_fw_version_82599(struct ixgbe_hw *hw) { - s32 status = IXGBE_ERR_EEPROM_VERSION; u16 fw_offset, fw_ptp_cfg_offset; + s32 status = -EACCES; u16 offset; u16 fw_version = 0; @@ -1883,7 +1882,7 @@ goto fw_version_err; if (fw_offset == 0 || fw_offset == 0xFFFF) - return IXGBE_ERR_EEPROM_VERSION; + return -EACCES; /* get the offset to the Pass Through Patch Configuration block */ offset = fw_offset + IXGBE_FW_PASSTHROUGH_PATCH_CONFIG_PTR; @@ -1891,7 +1890,7 @@ goto fw_version_err; if (fw_ptp_cfg_offset == 0 || fw_ptp_cfg_offset == 0xFFFF) - return IXGBE_ERR_EEPROM_VERSION; + return -EACCES; /* get the firmware version */ offset = fw_ptp_cfg_offset + IXGBE_FW_PATCH_VERSION_4; @@ -1905,7 +1904,7 @@ fw_version_err: hw_err(hw, "eeprom read at offset %d failed\n", offset); - return IXGBE_ERR_EEPROM_VERSION; + return -EACCES; } /** @@ -2038,7 +2037,7 @@ if (!(anlp1_reg & IXGBE_ANLP1_AN_STATE_MASK)) { hw_dbg(hw, "auto negotiation not completed\n"); - ret_val = IXGBE_ERR_RESET_FAILED; + ret_val = -EIO; goto reset_pipeline_out; } @@ -2087,7 +2086,7 @@ if (!timeout) { hw_dbg(hw, "Driver can't access resource, acquiring I2C bus timeout.\n"); - status = IXGBE_ERR_I2C; + status = -EIO; goto release_i2c_access; } } @@ -2141,7 +2140,7 @@ if (!timeout) { hw_dbg(hw, "Driver can't access resource, acquiring I2C bus timeout.\n"); - status = IXGBE_ERR_I2C; + status = -EIO; goto release_i2c_access; } } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/intel/ixgbe/ixgbe_common.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_common.c @@ -30,7 +30,7 @@ u16 words, u16 *data); static s32 ixgbe_detect_eeprom_page_size_generic(struct ixgbe_hw *hw, u16 offset); -static s32 ixgbe_disable_pcie_master(struct ixgbe_hw *hw); +static s32 ixgbe_disable_pcie_primary(struct ixgbe_hw *hw); /* Base table for registers values that change by MAC */ const u32 ixgbe_mvals_8259X[IXGBE_MVALS_IDX_LIMIT] = { @@ -124,7 +124,7 @@ */ if (hw->fc.strict_ieee && hw->fc.requested_mode == ixgbe_fc_rx_pause) { hw_dbg(hw, "ixgbe_fc_rx_pause not valid in strict IEEE mode\n"); - return IXGBE_ERR_INVALID_LINK_SETTINGS; + return -EINVAL; } /* @@ -215,7 +215,7 @@ break; default: hw_dbg(hw, "Flow control param set incorrectly\n"); - return IXGBE_ERR_CONFIG; + return -EIO; } if (hw->mac.type != ixgbe_mac_X540) { @@ -500,7 +500,7 @@ if (pba_num == NULL) { hw_dbg(hw, "PBA string buffer was null\n"); - return IXGBE_ERR_INVALID_ARGUMENT; + return -EINVAL; } ret_val = hw->eeprom.ops.read(hw, IXGBE_PBANUM0_PTR, &data); @@ -526,7 +526,7 @@ /* we will need 11 characters to store the PBA */ if (pba_num_size < 11) { hw_dbg(hw, "PBA string buffer too small\n"); - return IXGBE_ERR_NO_SPACE; + return -ENOSPC; } /* extract hex string from data and pba_ptr */ @@ -563,13 +563,13 @@ if (length == 0xFFFF || length == 0) { hw_dbg(hw, "NVM PBA number section invalid length\n"); - return IXGBE_ERR_PBA_SECTION; + return -EIO; } /* check if pba_num buffer is big enough */ if (pba_num_size < (((u32)length * 2) - 1)) { hw_dbg(hw, "PBA string buffer too small\n"); - return IXGBE_ERR_NO_SPACE; + return -ENOSPC; } /* trim pba length from start of string */ @@ -746,10 +746,10 @@ usleep_range(1000, 2000); /* - * Prevent the PCI-E bus from from hanging by disabling PCI-E master + * Prevent the PCI-E bus from hanging by disabling PCI-E primary * access and verify no pending requests */ - return ixgbe_disable_pcie_master(hw); + return ixgbe_disable_pcie_primary(hw); } /** @@ -805,7 +805,7 @@ u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL); if (index > 3) - return IXGBE_ERR_PARAM; + return -EINVAL; /* To turn on the LED, set mode to ON. */ led_reg &= ~IXGBE_LED_MODE_MASK(index); @@ -826,7 +826,7 @@ u32 led_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL); if (index > 3) - return IXGBE_ERR_PARAM; + return -EINVAL; /* To turn off the LED, set mode to OFF. */ led_reg &= ~IXGBE_LED_MODE_MASK(index); @@ -904,11 +904,8 @@ hw->eeprom.ops.init_params(hw); - if (words == 0) - return IXGBE_ERR_INVALID_ARGUMENT; - - if (offset + words > hw->eeprom.word_size) - return IXGBE_ERR_EEPROM; + if (words == 0 || (offset + words > hw->eeprom.word_size)) + return -EINVAL; /* * The EEPROM page size cannot be queried from the chip. We do lazy @@ -962,7 +959,7 @@ if (ixgbe_ready_eeprom(hw) != 0) { ixgbe_release_eeprom(hw); - return IXGBE_ERR_EEPROM; + return -EIO; } for (i = 0; i < words; i++) { @@ -1028,7 +1025,7 @@ hw->eeprom.ops.init_params(hw); if (offset >= hw->eeprom.word_size) - return IXGBE_ERR_EEPROM; + return -EINVAL; return ixgbe_write_eeprom_buffer_bit_bang(hw, offset, 1, &data); } @@ -1050,11 +1047,8 @@ hw->eeprom.ops.init_params(hw); - if (words == 0) - return IXGBE_ERR_INVALID_ARGUMENT; - - if (offset + words > hw->eeprom.word_size) - return IXGBE_ERR_EEPROM; + if (words == 0 || (offset + words > hw->eeprom.word_size)) + return -EINVAL; /* * We cannot hold synchronization semaphores for too long @@ -1099,7 +1093,7 @@ if (ixgbe_ready_eeprom(hw) != 0) { ixgbe_release_eeprom(hw); - return IXGBE_ERR_EEPROM; + return -EIO; } for (i = 0; i < words; i++) { @@ -1142,7 +1136,7 @@ hw->eeprom.ops.init_params(hw); if (offset >= hw->eeprom.word_size) - return IXGBE_ERR_EEPROM; + return -EINVAL; return ixgbe_read_eeprom_buffer_bit_bang(hw, offset, 1, data); } @@ -1165,11 +1159,8 @@ hw->eeprom.ops.init_params(hw); - if (words == 0) - return IXGBE_ERR_INVALID_ARGUMENT; - - if (offset >= hw->eeprom.word_size) - return IXGBE_ERR_EEPROM; + if (words == 0 || offset >= hw->eeprom.word_size) + return -EINVAL; for (i = 0; i < words; i++) { eerd = ((offset + i) << IXGBE_EEPROM_RW_ADDR_SHIFT) | @@ -1262,11 +1253,8 @@ hw->eeprom.ops.init_params(hw); - if (words == 0) - return IXGBE_ERR_INVALID_ARGUMENT; - - if (offset >= hw->eeprom.word_size) - return IXGBE_ERR_EEPROM; + if (words == 0 || offset >= hw->eeprom.word_size) + return -EINVAL; for (i = 0; i < words; i++) { eewr = ((offset + i) << IXGBE_EEPROM_RW_ADDR_SHIFT) | @@ -1328,7 +1316,7 @@ } udelay(5); } - return IXGBE_ERR_EEPROM; + return -EIO; } /** @@ -1344,7 +1332,7 @@ u32 i; if (hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_EEP_SM) != 0) - return IXGBE_ERR_SWFW_SYNC; + return -EBUSY; eec = IXGBE_READ_REG(hw, IXGBE_EEC(hw)); @@ -1366,7 +1354,7 @@ hw_dbg(hw, "Could not acquire EEPROM grant\n"); hw->mac.ops.release_swfw_sync(hw, IXGBE_GSSR_EEP_SM); - return IXGBE_ERR_EEPROM; + return -EIO; } /* Setup EEPROM for Read/Write */ @@ -1419,7 +1407,7 @@ swsm = IXGBE_READ_REG(hw, IXGBE_SWSM(hw)); if (swsm & IXGBE_SWSM_SMBI) { hw_dbg(hw, "Software semaphore SMBI between device drivers not granted.\n"); - return IXGBE_ERR_EEPROM; + return -EIO; } } @@ -1447,7 +1435,7 @@ if (i >= timeout) { hw_dbg(hw, "SWESMBI Software EEPROM semaphore not granted.\n"); ixgbe_release_eeprom_semaphore(hw); - return IXGBE_ERR_EEPROM; + return -EIO; } return 0; @@ -1503,7 +1491,7 @@ */ if (i >= IXGBE_EEPROM_MAX_RETRY_SPI) { hw_dbg(hw, "SPI EEPROM Status error\n"); - return IXGBE_ERR_EEPROM; + return -EIO; } return 0; @@ -1715,7 +1703,7 @@ for (i = IXGBE_PCIE_ANALOG_PTR; i < IXGBE_FW_PTR; i++) { if (hw->eeprom.ops.read(hw, i, &pointer)) { hw_dbg(hw, "EEPROM read failed\n"); - return IXGBE_ERR_EEPROM; + return -EIO; } /* If the pointer seems invalid */ @@ -1724,7 +1712,7 @@ if (hw->eeprom.ops.read(hw, pointer, &length)) { hw_dbg(hw, "EEPROM read failed\n"); - return IXGBE_ERR_EEPROM; + return -EIO; } if (length == 0xFFFF || length == 0) @@ -1733,7 +1721,7 @@ for (j = pointer + 1; j <= pointer + length; j++) { if (hw->eeprom.ops.read(hw, j, &word)) { hw_dbg(hw, "EEPROM read failed\n"); - return IXGBE_ERR_EEPROM; + return -EIO; } checksum += word; } @@ -1786,7 +1774,7 @@ * calculated checksum */ if (read_checksum != checksum) - status = IXGBE_ERR_EEPROM_CHECKSUM; + status = -EIO; /* If the user cares, return the calculated checksum */ if (checksum_val) @@ -1845,7 +1833,7 @@ /* Make sure we are using a valid rar index range */ if (index >= rar_entries) { hw_dbg(hw, "RAR index %d is out of range.\n", index); - return IXGBE_ERR_INVALID_ARGUMENT; + return -EINVAL; } /* setup VMDq pool selection before this RAR gets enabled */ @@ -1897,7 +1885,7 @@ /* Make sure we are using a valid rar index range */ if (index >= rar_entries) { hw_dbg(hw, "RAR index %d is out of range.\n", index); - return IXGBE_ERR_INVALID_ARGUMENT; + return -EINVAL; } /* @@ -2146,7 +2134,7 @@ /* Validate the water mark configuration. */ if (!hw->fc.pause_time) - return IXGBE_ERR_INVALID_LINK_SETTINGS; + return -EINVAL; /* Low water mark of zero causes XOFF floods */ for (i = 0; i < MAX_TRAFFIC_CLASS; i++) { @@ -2155,7 +2143,7 @@ if (!hw->fc.low_water[i] || hw->fc.low_water[i] >= hw->fc.high_water[i]) { hw_dbg(hw, "Invalid water mark configuration\n"); - return IXGBE_ERR_INVALID_LINK_SETTINGS; + return -EINVAL; } } } @@ -2212,7 +2200,7 @@ break; default: hw_dbg(hw, "Flow control param set incorrectly\n"); - return IXGBE_ERR_CONFIG; + return -EIO; } /* Set 802.3x based flow control settings. */ @@ -2269,7 +2257,7 @@ u32 adv_sym, u32 adv_asm, u32 lp_sym, u32 lp_asm) { if ((!(adv_reg)) || (!(lp_reg))) - return IXGBE_ERR_FC_NOT_NEGOTIATED; + return -EINVAL; if ((adv_reg & adv_sym) && (lp_reg & lp_sym)) { /* @@ -2321,7 +2309,7 @@ linkstat = IXGBE_READ_REG(hw, IXGBE_PCS1GLSTA); if ((!!(linkstat & IXGBE_PCS1GLSTA_AN_COMPLETE) == 0) || (!!(linkstat & IXGBE_PCS1GLSTA_AN_TIMED_OUT) == 1)) - return IXGBE_ERR_FC_NOT_NEGOTIATED; + return -EIO; pcs_anadv_reg = IXGBE_READ_REG(hw, IXGBE_PCS1GANA); pcs_lpab_reg = IXGBE_READ_REG(hw, IXGBE_PCS1GANLP); @@ -2353,12 +2341,12 @@ */ links = IXGBE_READ_REG(hw, IXGBE_LINKS); if ((links & IXGBE_LINKS_KX_AN_COMP) == 0) - return IXGBE_ERR_FC_NOT_NEGOTIATED; + return -EIO; if (hw->mac.type == ixgbe_mac_82599EB) { links2 = IXGBE_READ_REG(hw, IXGBE_LINKS2); if ((links2 & IXGBE_LINKS2_AN_SUPPORTED) == 0) - return IXGBE_ERR_FC_NOT_NEGOTIATED; + return -EIO; } /* * Read the 10g AN autoc and LP ability registers and resolve @@ -2407,8 +2395,8 @@ **/ void ixgbe_fc_autoneg(struct ixgbe_hw *hw) { - s32 ret_val = IXGBE_ERR_FC_NOT_NEGOTIATED; ixgbe_link_speed speed; + s32 ret_val = -EIO; bool link_up; /* @@ -2506,15 +2494,15 @@ } /** - * ixgbe_disable_pcie_master - Disable PCI-express master access + * ixgbe_disable_pcie_primary - Disable PCI-express primary access * @hw: pointer to hardware structure * - * Disables PCI-Express master access and verifies there are no pending - * requests. IXGBE_ERR_MASTER_REQUESTS_PENDING is returned if master disable - * bit hasn't caused the master requests to be disabled, else 0 - * is returned signifying master requests disabled. + * Disables PCI-Express primary access and verifies there are no pending + * requests. -EALREADY is returned if primary disable + * bit hasn't caused the primary requests to be disabled, else 0 + * is returned signifying primary requests disabled. **/ -static s32 ixgbe_disable_pcie_master(struct ixgbe_hw *hw) +static s32 ixgbe_disable_pcie_primary(struct ixgbe_hw *hw) { u32 i, poll; u16 value; @@ -2523,23 +2511,23 @@ IXGBE_WRITE_REG(hw, IXGBE_CTRL, IXGBE_CTRL_GIO_DIS); /* Poll for bit to read as set */ - for (i = 0; i < IXGBE_PCI_MASTER_DISABLE_TIMEOUT; i++) { + for (i = 0; i < IXGBE_PCI_PRIMARY_DISABLE_TIMEOUT; i++) { if (IXGBE_READ_REG(hw, IXGBE_CTRL) & IXGBE_CTRL_GIO_DIS) break; usleep_range(100, 120); } - if (i >= IXGBE_PCI_MASTER_DISABLE_TIMEOUT) { + if (i >= IXGBE_PCI_PRIMARY_DISABLE_TIMEOUT) { hw_dbg(hw, "GIO disable did not set - requesting resets\n"); goto gio_disable_fail; } - /* Exit if master requests are blocked */ + /* Exit if primary requests are blocked */ if (!(IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_GIO) || ixgbe_removed(hw->hw_addr)) return 0; - /* Poll for master request bit to clear */ - for (i = 0; i < IXGBE_PCI_MASTER_DISABLE_TIMEOUT; i++) { + /* Poll for primary request bit to clear */ + for (i = 0; i < IXGBE_PCI_PRIMARY_DISABLE_TIMEOUT; i++) { udelay(100); if (!(IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_GIO)) return 0; @@ -2547,13 +2535,13 @@ /* * Two consecutive resets are required via CTRL.RST per datasheet - * 5.2.5.3.2 Master Disable. We set a flag to inform the reset routine - * of this need. The first reset prevents new master requests from + * 5.2.5.3.2 Primary Disable. We set a flag to inform the reset routine + * of this need. The first reset prevents new primary requests from * being issued by our device. We then must wait 1usec or more for any * remaining completions from the PCIe bus to trickle in, and then reset * again to clear out any effects they may have had on our device. */ - hw_dbg(hw, "GIO Master Disable bit didn't clear - requesting resets\n"); + hw_dbg(hw, "GIO Primary Disable bit didn't clear - requesting resets\n"); gio_disable_fail: hw->mac.flags |= IXGBE_FLAGS_DOUBLE_RESET_REQUIRED; @@ -2575,7 +2563,7 @@ } hw_dbg(hw, "PCIe transaction pending bit also did not clear.\n"); - return IXGBE_ERR_MASTER_REQUESTS_PENDING; + return -EALREADY; } /** @@ -2600,7 +2588,7 @@ * SW_FW_SYNC bits (not just NVM) */ if (ixgbe_get_eeprom_semaphore(hw)) - return IXGBE_ERR_SWFW_SYNC; + return -EBUSY; gssr = IXGBE_READ_REG(hw, IXGBE_GSSR); if (!(gssr & (fwmask | swmask))) { @@ -2620,7 +2608,7 @@ ixgbe_release_swfw_sync(hw, gssr & (fwmask | swmask)); usleep_range(5000, 10000); - return IXGBE_ERR_SWFW_SYNC; + return -EBUSY; } /** @@ -2757,7 +2745,7 @@ s32 ret_val; if (index > 3) - return IXGBE_ERR_PARAM; + return -EINVAL; /* * Link must be up to auto-blink the LEDs; @@ -2803,7 +2791,7 @@ s32 ret_val; if (index > 3) - return IXGBE_ERR_PARAM; + return -EINVAL; ret_val = hw->mac.ops.prot_autoc_read(hw, &locked, &autoc_reg); if (ret_val) @@ -2963,7 +2951,7 @@ /* Make sure we are using a valid rar index range */ if (rar >= rar_entries) { hw_dbg(hw, "RAR index %d is out of range.\n", rar); - return IXGBE_ERR_INVALID_ARGUMENT; + return -EINVAL; } mpsar_lo = IXGBE_READ_REG(hw, IXGBE_MPSAR_LO(rar)); @@ -3014,7 +3002,7 @@ /* Make sure we are using a valid rar index range */ if (rar >= rar_entries) { hw_dbg(hw, "RAR index %d is out of range.\n", rar); - return IXGBE_ERR_INVALID_ARGUMENT; + return -EINVAL; } if (vmdq < 32) { @@ -3091,7 +3079,7 @@ * will simply bypass the VLVF if there are no entries present in the * VLVF that contain our VLAN */ - first_empty_slot = vlvf_bypass ? IXGBE_ERR_NO_SPACE : 0; + first_empty_slot = vlvf_bypass ? -ENOSPC : 0; /* add VLAN enable bit for comparison */ vlan |= IXGBE_VLVF_VIEN; @@ -3115,7 +3103,7 @@ if (!first_empty_slot) hw_dbg(hw, "No space in VLVF.\n"); - return first_empty_slot ? : IXGBE_ERR_NO_SPACE; + return first_empty_slot ? : -ENOSPC; } /** @@ -3135,7 +3123,7 @@ s32 vlvf_index; if ((vlan > 4095) || (vind > 63)) - return IXGBE_ERR_PARAM; + return -EINVAL; /* * this is a 2 part operation - first the VFTA, then the @@ -3596,7 +3584,8 @@ * * Communicates with the manageability block. On success return 0 * else returns semaphore error when encountering an error acquiring - * semaphore or IXGBE_ERR_HOST_INTERFACE_COMMAND when command fails. + * semaphore, -EINVAL when incorrect parameters passed or -EIO when + * command fails. * * This function assumes that the IXGBE_GSSR_SW_MNG_SM semaphore is held * by the caller. @@ -3609,7 +3598,7 @@ if (!length || length > IXGBE_HI_MAX_BLOCK_BYTE_LENGTH) { hw_dbg(hw, "Buffer length failure buffersize-%d.\n", length); - return IXGBE_ERR_HOST_INTERFACE_COMMAND; + return -EINVAL; } /* Set bit 9 of FWSTS clearing FW reset indication */ @@ -3620,13 +3609,13 @@ hicr = IXGBE_READ_REG(hw, IXGBE_HICR); if (!(hicr & IXGBE_HICR_EN)) { hw_dbg(hw, "IXGBE_HOST_EN bit disabled.\n"); - return IXGBE_ERR_HOST_INTERFACE_COMMAND; + return -EIO; } /* Calculate length in DWORDs. We must be DWORD aligned */ if (length % sizeof(u32)) { hw_dbg(hw, "Buffer length failure, not aligned to dword"); - return IXGBE_ERR_INVALID_ARGUMENT; + return -EINVAL; } dword_len = length >> 2; @@ -3651,7 +3640,7 @@ /* Check command successful completion. */ if ((timeout && i == timeout) || !(IXGBE_READ_REG(hw, IXGBE_HICR) & IXGBE_HICR_SV)) - return IXGBE_ERR_HOST_INTERFACE_COMMAND; + return -EIO; return 0; } @@ -3671,7 +3660,7 @@ * in these cases. * * Communicates with the manageability block. On success return 0 - * else return IXGBE_ERR_HOST_INTERFACE_COMMAND. + * else return -EIO or -EINVAL. **/ s32 ixgbe_host_interface_command(struct ixgbe_hw *hw, void *buffer, u32 length, u32 timeout, @@ -3686,7 +3675,7 @@ if (!length || length > IXGBE_HI_MAX_BLOCK_BYTE_LENGTH) { hw_dbg(hw, "Buffer length failure buffersize-%d.\n", length); - return IXGBE_ERR_HOST_INTERFACE_COMMAND; + return -EINVAL; } /* Take management host interface semaphore */ status = hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_SW_MNG_SM); @@ -3716,7 +3705,7 @@ if (length < round_up(buf_len, 4) + hdr_size) { hw_dbg(hw, "Buffer not large enough for reply message.\n"); - status = IXGBE_ERR_HOST_INTERFACE_COMMAND; + status = -EIO; goto rel_out; } @@ -3747,8 +3736,8 @@ * * Sends driver version number to firmware through the manageability * block. On success return 0 - * else returns IXGBE_ERR_SWFW_SYNC when encountering an error acquiring - * semaphore or IXGBE_ERR_HOST_INTERFACE_COMMAND when command fails. + * else returns -EBUSY when encountering an error acquiring + * semaphore or -EIO when command fails. **/ s32 ixgbe_set_fw_drv_ver_generic(struct ixgbe_hw *hw, u8 maj, u8 min, u8 build, u8 sub, __always_unused u16 len, @@ -3784,7 +3773,7 @@ FW_CEM_RESP_STATUS_SUCCESS) ret_val = 0; else - ret_val = IXGBE_ERR_HOST_INTERFACE_COMMAND; + ret_val = -EIO; break; } @@ -3882,14 +3871,14 @@ return status; if ((*ets_offset == 0x0000) || (*ets_offset == 0xFFFF)) - return IXGBE_NOT_IMPLEMENTED; + return -EOPNOTSUPP; status = hw->eeprom.ops.read(hw, *ets_offset, ets_cfg); if (status) return status; if ((*ets_cfg & IXGBE_ETS_TYPE_MASK) != IXGBE_ETS_TYPE_EMC_SHIFTED) - return IXGBE_NOT_IMPLEMENTED; + return -EOPNOTSUPP; return 0; } @@ -3912,7 +3901,7 @@ /* Only support thermal sensors attached to physical port 0 */ if ((IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_LAN_ID_1)) - return IXGBE_NOT_IMPLEMENTED; + return -EOPNOTSUPP; status = ixgbe_get_ets_data(hw, &ets_cfg, &ets_offset); if (status) @@ -3972,7 +3961,7 @@ /* Only support thermal sensors attached to physical port 0 */ if ((IXGBE_READ_REG(hw, IXGBE_STATUS) & IXGBE_STATUS_LAN_ID_1)) - return IXGBE_NOT_IMPLEMENTED; + return -EOPNOTSUPP; status = ixgbe_get_ets_data(hw, &ets_cfg, &ets_offset); if (status) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/intel/ixgbe/ixgbe_mbx.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_mbx.c @@ -24,7 +24,7 @@ size = mbx->size; if (!mbx->ops) - return IXGBE_ERR_MBX; + return -EIO; return mbx->ops->read(hw, msg, size, mbx_id); } @@ -43,10 +43,10 @@ struct ixgbe_mbx_info *mbx = &hw->mbx; if (size > mbx->size) - return IXGBE_ERR_MBX; + return -EINVAL; if (!mbx->ops) - return IXGBE_ERR_MBX; + return -EIO; return mbx->ops->write(hw, msg, size, mbx_id); } @@ -63,7 +63,7 @@ struct ixgbe_mbx_info *mbx = &hw->mbx; if (!mbx->ops) - return IXGBE_ERR_MBX; + return -EIO; return mbx->ops->check_for_msg(hw, mbx_id); } @@ -80,7 +80,7 @@ struct ixgbe_mbx_info *mbx = &hw->mbx; if (!mbx->ops) - return IXGBE_ERR_MBX; + return -EIO; return mbx->ops->check_for_ack(hw, mbx_id); } @@ -97,7 +97,7 @@ struct ixgbe_mbx_info *mbx = &hw->mbx; if (!mbx->ops) - return IXGBE_ERR_MBX; + return -EIO; return mbx->ops->check_for_rst(hw, mbx_id); } @@ -115,12 +115,12 @@ int countdown = mbx->timeout; if (!countdown || !mbx->ops) - return IXGBE_ERR_MBX; + return -EIO; while (mbx->ops->check_for_msg(hw, mbx_id)) { countdown--; if (!countdown) - return IXGBE_ERR_MBX; + return -EIO; udelay(mbx->usec_delay); } @@ -140,12 +140,12 @@ int countdown = mbx->timeout; if (!countdown || !mbx->ops) - return IXGBE_ERR_MBX; + return -EIO; while (mbx->ops->check_for_ack(hw, mbx_id)) { countdown--; if (!countdown) - return IXGBE_ERR_MBX; + return -EIO; udelay(mbx->usec_delay); } @@ -169,7 +169,7 @@ s32 ret_val; if (!mbx->ops) - return IXGBE_ERR_MBX; + return -EIO; ret_val = ixgbe_poll_for_msg(hw, mbx_id); if (ret_val) @@ -197,7 +197,7 @@ /* exit if either we can't write or there isn't a defined timeout */ if (!mbx->ops || !mbx->timeout) - return IXGBE_ERR_MBX; + return -EIO; /* send msg */ ret_val = mbx->ops->write(hw, msg, size, mbx_id); @@ -217,7 +217,7 @@ return 0; } - return IXGBE_ERR_MBX; + return -EIO; } /** @@ -238,7 +238,7 @@ return 0; } - return IXGBE_ERR_MBX; + return -EIO; } /** @@ -259,7 +259,7 @@ return 0; } - return IXGBE_ERR_MBX; + return -EIO; } /** @@ -295,7 +295,7 @@ return 0; } - return IXGBE_ERR_MBX; + return -EIO; } /** @@ -317,7 +317,7 @@ if (p2v_mailbox & IXGBE_PFMAILBOX_PFU) return 0; - return IXGBE_ERR_MBX; + return -EIO; } /** only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/intel/ixgbe/ixgbe_phy.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_phy.h @@ -155,7 +155,7 @@ s32 ixgbe_get_sfp_init_sequence_offsets(struct ixgbe_hw *hw, u16 *list_offset, u16 *data_offset); -s32 ixgbe_tn_check_overtemp(struct ixgbe_hw *hw); +bool ixgbe_tn_check_overtemp(struct ixgbe_hw *hw); s32 ixgbe_read_i2c_byte_generic(struct ixgbe_hw *hw, u8 byte_offset, u8 dev_addr, u8 *data); s32 ixgbe_read_i2c_byte_generic_unlocked(struct ixgbe_hw *hw, u8 byte_offset, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/intel/ixgbe/ixgbe_type.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_type.h @@ -1247,7 +1247,7 @@ #define IXGBE_PSRTYPE_RQPL_SHIFT 29 /* CTRL Bit Masks */ -#define IXGBE_CTRL_GIO_DIS 0x00000004 /* Global IO Master Disable bit */ +#define IXGBE_CTRL_GIO_DIS 0x00000004 /* Global IO Primary Disable bit */ #define IXGBE_CTRL_LNK_RST 0x00000008 /* Link Reset. Resets everything. */ #define IXGBE_CTRL_RST 0x04000000 /* Reset (SW) */ #define IXGBE_CTRL_RST_MASK (IXGBE_CTRL_LNK_RST | IXGBE_CTRL_RST) @@ -1811,7 +1811,7 @@ /* STATUS Bit Masks */ #define IXGBE_STATUS_LAN_ID 0x0000000C /* LAN ID */ #define IXGBE_STATUS_LAN_ID_SHIFT 2 /* LAN ID Shift*/ -#define IXGBE_STATUS_GIO 0x00080000 /* GIO Master Enable Status */ +#define IXGBE_STATUS_GIO 0x00080000 /* GIO Primary Enable Status */ #define IXGBE_STATUS_LAN_ID_0 0x00000000 /* LAN ID 0 */ #define IXGBE_STATUS_LAN_ID_1 0x00000004 /* LAN ID 1 */ @@ -2193,8 +2193,8 @@ #define IXGBE_PCIDEVCTRL2_4_8s 0xd #define IXGBE_PCIDEVCTRL2_17_34s 0xe -/* Number of 100 microseconds we wait for PCI Express master disable */ -#define IXGBE_PCI_MASTER_DISABLE_TIMEOUT 800 +/* Number of 100 microseconds we wait for PCI Express primary disable */ +#define IXGBE_PCI_PRIMARY_DISABLE_TIMEOUT 800 /* RAH */ #define IXGBE_RAH_VIND_MASK 0x003C0000 @@ -3502,10 +3502,10 @@ s32 (*read_i2c_sff8472)(struct ixgbe_hw *, u8 , u8 *); s32 (*read_i2c_eeprom)(struct ixgbe_hw *, u8 , u8 *); s32 (*write_i2c_eeprom)(struct ixgbe_hw *, u8, u8); - s32 (*check_overtemp)(struct ixgbe_hw *); + bool (*check_overtemp)(struct ixgbe_hw *); s32 (*set_phy_power)(struct ixgbe_hw *, bool on); s32 (*enter_lplu)(struct ixgbe_hw *); - s32 (*handle_lasi)(struct ixgbe_hw *hw); + s32 (*handle_lasi)(struct ixgbe_hw *hw, bool *); s32 (*read_i2c_byte_unlocked)(struct ixgbe_hw *, u8 offset, u8 addr, u8 *value); s32 (*write_i2c_byte_unlocked)(struct ixgbe_hw *, u8 offset, u8 addr, @@ -3658,45 +3658,6 @@ const u32 *mvals; }; - -/* Error Codes */ -#define IXGBE_ERR_EEPROM -1 -#define IXGBE_ERR_EEPROM_CHECKSUM -2 -#define IXGBE_ERR_PHY -3 -#define IXGBE_ERR_CONFIG -4 -#define IXGBE_ERR_PARAM -5 -#define IXGBE_ERR_MAC_TYPE -6 -#define IXGBE_ERR_UNKNOWN_PHY -7 -#define IXGBE_ERR_LINK_SETUP -8 -#define IXGBE_ERR_ADAPTER_STOPPED -9 -#define IXGBE_ERR_INVALID_MAC_ADDR -10 -#define IXGBE_ERR_DEVICE_NOT_SUPPORTED -11 -#define IXGBE_ERR_MASTER_REQUESTS_PENDING -12 -#define IXGBE_ERR_INVALID_LINK_SETTINGS -13 -#define IXGBE_ERR_AUTONEG_NOT_COMPLETE -14 -#define IXGBE_ERR_RESET_FAILED -15 -#define IXGBE_ERR_SWFW_SYNC -16 -#define IXGBE_ERR_PHY_ADDR_INVALID -17 -#define IXGBE_ERR_I2C -18 -#define IXGBE_ERR_SFP_NOT_SUPPORTED -19 -#define IXGBE_ERR_SFP_NOT_PRESENT -20 -#define IXGBE_ERR_SFP_NO_INIT_SEQ_PRESENT -21 -#define IXGBE_ERR_NO_SAN_ADDR_PTR -22 -#define IXGBE_ERR_FDIR_REINIT_FAILED -23 -#define IXGBE_ERR_EEPROM_VERSION -24 -#define IXGBE_ERR_NO_SPACE -25 -#define IXGBE_ERR_OVERTEMP -26 -#define IXGBE_ERR_FC_NOT_NEGOTIATED -27 -#define IXGBE_ERR_FC_NOT_SUPPORTED -28 -#define IXGBE_ERR_SFP_SETUP_NOT_COMPLETE -30 -#define IXGBE_ERR_PBA_SECTION -31 -#define IXGBE_ERR_INVALID_ARGUMENT -32 -#define IXGBE_ERR_HOST_INTERFACE_COMMAND -33 -#define IXGBE_ERR_FDIR_CMD_INCOMPLETE -38 -#define IXGBE_ERR_FW_RESP_INVALID -39 -#define IXGBE_ERR_TOKEN_RETRY -40 -#define IXGBE_NOT_IMPLEMENTED 0x7FFFFFFF - #define IXGBE_FUSES0_GROUP(_i) (0x11158 + ((_i) * 4)) #define IXGBE_FUSES0_300MHZ BIT(5) #define IXGBE_FUSES0_REV_MASK (3u << 6) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/intel/ixgbe/ixgbe_x540.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_x540.c @@ -84,7 +84,7 @@ status = hw->mac.ops.acquire_swfw_sync(hw, swfw_mask); if (status) { hw_dbg(hw, "semaphore failed with %d", status); - return IXGBE_ERR_SWFW_SYNC; + return -EBUSY; } ctrl = IXGBE_CTRL_RST; @@ -103,7 +103,7 @@ } if (ctrl & IXGBE_CTRL_RST_MASK) { - status = IXGBE_ERR_RESET_FAILED; + status = -EIO; hw_dbg(hw, "Reset polling failed to complete.\n"); } msleep(100); @@ -220,7 +220,7 @@ s32 status; if (hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_EEP_SM)) - return IXGBE_ERR_SWFW_SYNC; + return -EBUSY; status = ixgbe_read_eerd_generic(hw, offset, data); @@ -243,7 +243,7 @@ s32 status; if (hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_EEP_SM)) - return IXGBE_ERR_SWFW_SYNC; + return -EBUSY; status = ixgbe_read_eerd_buffer_generic(hw, offset, words, data); @@ -264,7 +264,7 @@ s32 status; if (hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_EEP_SM)) - return IXGBE_ERR_SWFW_SYNC; + return -EBUSY; status = ixgbe_write_eewr_generic(hw, offset, data); @@ -287,7 +287,7 @@ s32 status; if (hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_EEP_SM)) - return IXGBE_ERR_SWFW_SYNC; + return -EBUSY; status = ixgbe_write_eewr_buffer_generic(hw, offset, words, data); @@ -324,7 +324,7 @@ for (i = 0; i < checksum_last_word; i++) { if (ixgbe_read_eerd_generic(hw, i, &word)) { hw_dbg(hw, "EEPROM read failed\n"); - return IXGBE_ERR_EEPROM; + return -EIO; } checksum += word; } @@ -349,7 +349,7 @@ if (ixgbe_read_eerd_generic(hw, pointer, &length)) { hw_dbg(hw, "EEPROM read failed\n"); - return IXGBE_ERR_EEPROM; + return -EIO; } /* Skip pointer section if length is invalid. */ @@ -360,7 +360,7 @@ for (j = pointer + 1; j <= pointer + length; j++) { if (ixgbe_read_eerd_generic(hw, j, &word)) { hw_dbg(hw, "EEPROM read failed\n"); - return IXGBE_ERR_EEPROM; + return -EIO; } checksum += word; } @@ -397,7 +397,7 @@ } if (hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_EEP_SM)) - return IXGBE_ERR_SWFW_SYNC; + return -EBUSY; status = hw->eeprom.ops.calc_checksum(hw); if (status < 0) @@ -418,7 +418,7 @@ */ if (read_checksum != checksum) { hw_dbg(hw, "Invalid EEPROM checksum"); - status = IXGBE_ERR_EEPROM_CHECKSUM; + status = -EIO; } /* If the user cares, return the calculated checksum */ @@ -455,7 +455,7 @@ } if (hw->mac.ops.acquire_swfw_sync(hw, IXGBE_GSSR_EEP_SM)) - return IXGBE_ERR_SWFW_SYNC; + return -EBUSY; status = hw->eeprom.ops.calc_checksum(hw); if (status < 0) @@ -490,7 +490,7 @@ s32 status; status = ixgbe_poll_flash_update_done_X540(hw); - if (status == IXGBE_ERR_EEPROM) { + if (status == -EIO) { hw_dbg(hw, "Flash update time out\n"); return status; } @@ -540,7 +540,7 @@ return 0; udelay(5); } - return IXGBE_ERR_EEPROM; + return -EIO; } /** @@ -575,7 +575,7 @@ * SW_FW_SYNC bits (not just NVM) */ if (ixgbe_get_swfw_sync_semaphore(hw)) - return IXGBE_ERR_SWFW_SYNC; + return -EBUSY; swfw_sync = IXGBE_READ_REG(hw, IXGBE_SWFW_SYNC(hw)); if (!(swfw_sync & (fwmask | swmask | hwmask))) { @@ -599,7 +599,7 @@ * bits in the SW_FW_SYNC register. */ if (ixgbe_get_swfw_sync_semaphore(hw)) - return IXGBE_ERR_SWFW_SYNC; + return -EBUSY; swfw_sync = IXGBE_READ_REG(hw, IXGBE_SWFW_SYNC(hw)); if (swfw_sync & (fwmask | hwmask)) { swfw_sync |= swmask; @@ -622,11 +622,11 @@ rmask |= IXGBE_GSSR_I2C_MASK; ixgbe_release_swfw_sync_X540(hw, rmask); ixgbe_release_swfw_sync_semaphore(hw); - return IXGBE_ERR_SWFW_SYNC; + return -EBUSY; } ixgbe_release_swfw_sync_semaphore(hw); - return IXGBE_ERR_SWFW_SYNC; + return -EBUSY; } /** @@ -680,7 +680,7 @@ if (i == timeout) { hw_dbg(hw, "Software semaphore SMBI between device drivers not granted.\n"); - return IXGBE_ERR_EEPROM; + return -EIO; } /* Now get the semaphore between SW/FW through the REGSMP bit */ @@ -697,7 +697,7 @@ */ hw_dbg(hw, "REGSMP Software NVM semaphore not granted\n"); ixgbe_release_swfw_sync_semaphore(hw); - return IXGBE_ERR_EEPROM; + return -EIO; } /** @@ -768,7 +768,7 @@ bool link_up; if (index > 3) - return IXGBE_ERR_PARAM; + return -EINVAL; /* Link should be up in order for the blink bit in the LED control * register to work. Force link and speed in the MAC if link is down. @@ -804,7 +804,7 @@ u32 ledctl_reg; if (index > 3) - return IXGBE_ERR_PARAM; + return -EINVAL; /* Restore the LED to its default value. */ ledctl_reg = IXGBE_READ_REG(hw, IXGBE_LEDCTL); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/marvell/octeontx2/af/rvu_devlink.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_devlink.c @@ -641,7 +641,7 @@ 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_nix_intr_work); INIT_WORK(&rvu_reporters->gen_work, rvu_nix_gen_work); @@ -649,9 +649,6 @@ INIT_WORK(&rvu_reporters->ras_work, rvu_nix_ras_work); return 0; -err: - rvu_nix_health_reporters_destroy(rvu_dl); - return -ENOMEM; } static int rvu_nix_health_reporters_create(struct rvu_devlink *rvu_dl) @@ -1284,7 +1281,7 @@ 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 +1289,6 @@ 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) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/marvell/octeontx2/af/rvu_reg.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_reg.c @@ -31,8 +31,8 @@ {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} } }, }; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/marvell/octeontx2/nic/otx2_ethtool.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_ethtool.c @@ -316,9 +316,12 @@ 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 @@ 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, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/marvell/sky2.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/marvell/sky2.h @@ -2195,7 +2195,7 @@ 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 { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/mellanox/mlx5/core/en/fs_tt_redirect.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en/fs_tt_redirect.c @@ -156,6 +156,7 @@ in = kvzalloc(inlen, GFP_KERNEL); if (!in || !ft->g) { kfree(ft->g); + ft->g = NULL; kvfree(in); return -ENOMEM; } @@ -434,6 +435,7 @@ in = kvzalloc(inlen, GFP_KERNEL); if (!in || !ft->g) { kfree(ft->g); + ft->g = NULL; kvfree(in); return -ENOMEM; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/mellanox/mlx5/core/en/mod_hdr.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en/mod_hdr.c @@ -155,3 +155,50 @@ 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); +} only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/mellanox/mlx5/core/en/mod_hdr.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en/mod_hdr.h @@ -15,6 +15,11 @@ 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 @@ 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__ */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/mellanox/mlx5/core/en/tc/sample.c +++ linux-xilinx-zynqmp-5.15.0/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 @@ 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); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/mellanox/mlx5/core/en_arfs.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_arfs.c @@ -239,11 +239,13 @@ ft->g = kcalloc(MLX5E_ARFS_NUM_GROUPS, sizeof(*ft->g), GFP_KERNEL); - in = kvzalloc(inlen, GFP_KERNEL); - if (!in || !ft->g) { - kfree(ft->g); - kvfree(in); + if (!ft->g) return -ENOMEM; + + in = kvzalloc(inlen, GFP_KERNEL); + if (!in) { + err = -ENOMEM; + goto err_free_g; } mc = MLX5_ADDR_OF(create_flow_group_in, in, match_criteria); @@ -263,7 +265,7 @@ break; default: err = -EINVAL; - goto out; + goto err_free_in; } switch (type) { @@ -285,7 +287,7 @@ break; default: err = -EINVAL; - goto out; + goto err_free_in; } MLX5_SET_CFG(in, match_criteria_enable, MLX5_MATCH_OUTER_HEADERS); @@ -294,7 +296,7 @@ MLX5_SET_CFG(in, end_flow_index, ix - 1); ft->g[ft->num_groups] = mlx5_create_flow_group(ft->t, in); if (IS_ERR(ft->g[ft->num_groups])) - goto err; + goto err_clean_group; ft->num_groups++; memset(in, 0, inlen); @@ -303,18 +305,20 @@ MLX5_SET_CFG(in, end_flow_index, ix - 1); ft->g[ft->num_groups] = mlx5_create_flow_group(ft->t, in); if (IS_ERR(ft->g[ft->num_groups])) - goto err; + goto err_clean_group; ft->num_groups++; kvfree(in); return 0; -err: +err_clean_group: err = PTR_ERR(ft->g[ft->num_groups]); ft->g[ft->num_groups] = NULL; -out: +err_free_in: kvfree(in); - +err_free_g: + kfree(ft->g); + ft->g = NULL; return err; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/mellanox/mlx5/core/en_fs.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_fs.c @@ -71,12 +71,12 @@ bool mpfs; }; -static inline int mlx5e_hash_l2(u8 *addr) +static inline int mlx5e_hash_l2(const u8 *addr) { return addr[5]; } -static void mlx5e_add_l2_to_hash(struct hlist_head *hash, u8 *addr) +static void mlx5e_add_l2_to_hash(struct hlist_head *hash, const u8 *addr) { struct mlx5e_l2_hash_node *hn; int ix = mlx5e_hash_l2(addr); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/mellanox/mlx5/core/esw/indir_table.c +++ linux-xilinx-zynqmp-5.15.0/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 @@ 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 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/mellanox/mlx5/core/vport.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/vport.c @@ -277,7 +277,7 @@ req_list_size = max_list_size; } - out_sz = MLX5_ST_SZ_BYTES(query_nic_vport_context_in) + + out_sz = MLX5_ST_SZ_BYTES(query_nic_vport_context_out) + req_list_size * MLX5_ST_SZ_BYTES(mac_address_layout); out = kzalloc(out_sz, GFP_KERNEL); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/mellanox/mlxbf_gige/Makefile +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlxbf_gige/Makefile @@ -3,7 +3,6 @@ obj-$(CONFIG_MLXBF_GIGE) += mlxbf_gige.o mlxbf_gige-y := mlxbf_gige_ethtool.o \ - mlxbf_gige_gpio.o \ mlxbf_gige_intr.o \ mlxbf_gige_main.o \ mlxbf_gige_mdio.o \ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_atcam.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_atcam.c @@ -119,7 +119,6 @@ { struct mlxsw_sp *mlxsw_sp = aregion->region->mlxsw_sp; struct mlxsw_sp_acl_atcam_region_12kb *region_12kb; - size_t alloc_size; u64 max_lkey_id; int err; @@ -131,8 +130,7 @@ if (!region_12kb) return -ENOMEM; - alloc_size = BITS_TO_LONGS(max_lkey_id) * sizeof(unsigned long); - region_12kb->used_lkey_id = kzalloc(alloc_size, GFP_KERNEL); + region_12kb->used_lkey_id = bitmap_zalloc(max_lkey_id, GFP_KERNEL); if (!region_12kb->used_lkey_id) { err = -ENOMEM; goto err_used_lkey_id_alloc; @@ -149,7 +147,7 @@ return 0; err_rhashtable_init: - kfree(region_12kb->used_lkey_id); + bitmap_free(region_12kb->used_lkey_id); err_used_lkey_id_alloc: kfree(region_12kb); return err; @@ -161,7 +159,7 @@ struct mlxsw_sp_acl_atcam_region_12kb *region_12kb = aregion->priv; rhashtable_destroy(®ion_12kb->lkey_ht); - kfree(region_12kb->used_lkey_id); + bitmap_free(region_12kb->used_lkey_id); kfree(region_12kb); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_bloom_filter.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_bloom_filter.c @@ -251,7 +251,7 @@ * 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_erp.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_erp.c @@ -301,6 +301,7 @@ unsigned long *p_index) { unsigned int num_rows, entry_size; + unsigned long index; /* We only allow allocations of entire rows */ if (num_erps % erp_core->num_erp_banks != 0) @@ -309,10 +310,11 @@ entry_size = erp_core->erpt_entries_size[region_type]; num_rows = num_erps / erp_core->num_erp_banks; - *p_index = gen_pool_alloc(erp_core->erp_tables, num_rows * entry_size); - if (*p_index == 0) + index = gen_pool_alloc(erp_core->erp_tables, num_rows * entry_size); + if (!index) return -ENOBUFS; - *p_index -= MLXSW_SP_ACL_ERP_GENALLOC_OFFSET; + + *p_index = index - MLXSW_SP_ACL_ERP_GENALLOC_OFFSET; return 0; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_tcam.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_tcam.c @@ -29,70 +29,6 @@ #define MLXSW_SP_ACL_TCAM_VREGION_REHASH_INTRVL_MIN 3000 /* ms */ #define MLXSW_SP_ACL_TCAM_VREGION_REHASH_CREDITS 100 /* number of entries */ -int mlxsw_sp_acl_tcam_init(struct mlxsw_sp *mlxsw_sp, - struct mlxsw_sp_acl_tcam *tcam) -{ - const struct mlxsw_sp_acl_tcam_ops *ops = mlxsw_sp->acl_tcam_ops; - u64 max_tcam_regions; - u64 max_regions; - u64 max_groups; - size_t alloc_size; - int err; - - mutex_init(&tcam->lock); - tcam->vregion_rehash_intrvl = - MLXSW_SP_ACL_TCAM_VREGION_REHASH_INTRVL_DFLT; - INIT_LIST_HEAD(&tcam->vregion_list); - - max_tcam_regions = MLXSW_CORE_RES_GET(mlxsw_sp->core, - ACL_MAX_TCAM_REGIONS); - max_regions = MLXSW_CORE_RES_GET(mlxsw_sp->core, ACL_MAX_REGIONS); - - /* Use 1:1 mapping between ACL region and TCAM region */ - if (max_tcam_regions < max_regions) - max_regions = max_tcam_regions; - - alloc_size = sizeof(tcam->used_regions[0]) * BITS_TO_LONGS(max_regions); - tcam->used_regions = kzalloc(alloc_size, GFP_KERNEL); - if (!tcam->used_regions) - return -ENOMEM; - tcam->max_regions = max_regions; - - max_groups = MLXSW_CORE_RES_GET(mlxsw_sp->core, ACL_MAX_GROUPS); - alloc_size = sizeof(tcam->used_groups[0]) * BITS_TO_LONGS(max_groups); - tcam->used_groups = kzalloc(alloc_size, GFP_KERNEL); - if (!tcam->used_groups) { - err = -ENOMEM; - goto err_alloc_used_groups; - } - tcam->max_groups = max_groups; - tcam->max_group_size = MLXSW_CORE_RES_GET(mlxsw_sp->core, - ACL_MAX_GROUP_SIZE); - - err = ops->init(mlxsw_sp, tcam->priv, tcam); - if (err) - goto err_tcam_init; - - return 0; - -err_tcam_init: - kfree(tcam->used_groups); -err_alloc_used_groups: - kfree(tcam->used_regions); - return err; -} - -void mlxsw_sp_acl_tcam_fini(struct mlxsw_sp *mlxsw_sp, - struct mlxsw_sp_acl_tcam *tcam) -{ - const struct mlxsw_sp_acl_tcam_ops *ops = mlxsw_sp->acl_tcam_ops; - - mutex_destroy(&tcam->lock); - ops->fini(mlxsw_sp, tcam->priv); - kfree(tcam->used_groups); - kfree(tcam->used_regions); -} - int mlxsw_sp_acl_tcam_priority_get(struct mlxsw_sp *mlxsw_sp, struct mlxsw_sp_acl_rule_info *rulei, u32 *priority, bool fillup_priority) @@ -1545,6 +1481,73 @@ mlxsw_sp_acl_tcam_vregion_rehash_end(mlxsw_sp, vregion, ctx); } +int mlxsw_sp_acl_tcam_init(struct mlxsw_sp *mlxsw_sp, + struct mlxsw_sp_acl_tcam *tcam) +{ + const struct mlxsw_sp_acl_tcam_ops *ops = mlxsw_sp->acl_tcam_ops; + u64 max_tcam_regions; + u64 max_regions; + u64 max_groups; + int err; + + mutex_init(&tcam->lock); + tcam->vregion_rehash_intrvl = + MLXSW_SP_ACL_TCAM_VREGION_REHASH_INTRVL_DFLT; + INIT_LIST_HEAD(&tcam->vregion_list); + + max_tcam_regions = MLXSW_CORE_RES_GET(mlxsw_sp->core, + ACL_MAX_TCAM_REGIONS); + max_regions = MLXSW_CORE_RES_GET(mlxsw_sp->core, ACL_MAX_REGIONS); + + /* Use 1:1 mapping between ACL region and TCAM region */ + if (max_tcam_regions < max_regions) + max_regions = max_tcam_regions; + + tcam->used_regions = bitmap_zalloc(max_regions, GFP_KERNEL); + if (!tcam->used_regions) { + err = -ENOMEM; + goto err_alloc_used_regions; + } + tcam->max_regions = max_regions; + + max_groups = MLXSW_CORE_RES_GET(mlxsw_sp->core, ACL_MAX_GROUPS); + tcam->used_groups = bitmap_zalloc(max_groups, GFP_KERNEL); + if (!tcam->used_groups) { + err = -ENOMEM; + goto err_alloc_used_groups; + } + tcam->max_groups = max_groups; + tcam->max_group_size = MLXSW_CORE_RES_GET(mlxsw_sp->core, + ACL_MAX_GROUP_SIZE); + tcam->max_group_size = min_t(unsigned int, tcam->max_group_size, + MLXSW_REG_PAGT_ACL_MAX_NUM); + + err = ops->init(mlxsw_sp, tcam->priv, tcam); + if (err) + goto err_tcam_init; + + return 0; + +err_tcam_init: + bitmap_free(tcam->used_groups); +err_alloc_used_groups: + bitmap_free(tcam->used_regions); +err_alloc_used_regions: + mutex_destroy(&tcam->lock); + return err; +} + +void mlxsw_sp_acl_tcam_fini(struct mlxsw_sp *mlxsw_sp, + struct mlxsw_sp_acl_tcam *tcam) +{ + const struct mlxsw_sp_acl_tcam_ops *ops = mlxsw_sp->acl_tcam_ops; + + ops->fini(mlxsw_sp, tcam->priv); + bitmap_free(tcam->used_groups); + bitmap_free(tcam->used_regions); + mutex_destroy(&tcam->lock); +} + static const enum mlxsw_afk_element mlxsw_sp_acl_tcam_pattern_ipv4[] = { MLXSW_AFK_ELEMENT_SRC_SYS_PORT, MLXSW_AFK_ELEMENT_DMAC_32_47, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/mellanox/mlxsw/spectrum_cnt.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlxsw/spectrum_cnt.c @@ -122,7 +122,6 @@ unsigned int sub_pools_count = ARRAY_SIZE(mlxsw_sp_counter_sub_pools); struct devlink *devlink = priv_to_devlink(mlxsw_sp->core); struct mlxsw_sp_counter_pool *pool; - unsigned int map_size; int err; pool = kzalloc(struct_size(pool, sub_pools, sub_pools_count), @@ -143,9 +142,7 @@ devlink_resource_occ_get_register(devlink, MLXSW_SP_RESOURCE_COUNTERS, mlxsw_sp_counter_pool_occ_get, pool); - map_size = BITS_TO_LONGS(pool->pool_size) * sizeof(unsigned long); - - pool->usage = kzalloc(map_size, GFP_KERNEL); + pool->usage = bitmap_zalloc(pool->pool_size, GFP_KERNEL); if (!pool->usage) { err = -ENOMEM; goto err_usage_alloc; @@ -158,7 +155,7 @@ return 0; err_sub_pools_init: - kfree(pool->usage); + bitmap_free(pool->usage); err_usage_alloc: devlink_resource_occ_get_unregister(devlink, MLXSW_SP_RESOURCE_COUNTERS); @@ -176,7 +173,7 @@ WARN_ON(find_first_bit(pool->usage, pool->pool_size) != pool->pool_size); WARN_ON(atomic_read(&pool->active_entries_count)); - kfree(pool->usage); + bitmap_free(pool->usage); devlink_resource_occ_get_unregister(devlink, MLXSW_SP_RESOURCE_COUNTERS); kfree(pool); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/mellanox/mlxsw/spectrum_switchdev.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/mellanox/mlxsw/spectrum_switchdev.c @@ -1635,16 +1635,13 @@ u16 fid) { struct mlxsw_sp_mid *mid; - size_t alloc_size; mid = kzalloc(sizeof(*mid), GFP_KERNEL); if (!mid) return NULL; - alloc_size = sizeof(unsigned long) * - BITS_TO_LONGS(mlxsw_core_max_ports(mlxsw_sp->core)); - - mid->ports_in_mid = kzalloc(alloc_size, GFP_KERNEL); + mid->ports_in_mid = bitmap_zalloc(mlxsw_core_max_ports(mlxsw_sp->core), + GFP_KERNEL); if (!mid->ports_in_mid) goto err_ports_in_mid_alloc; @@ -1663,7 +1660,7 @@ return mid; err_write_mdb_entry: - kfree(mid->ports_in_mid); + bitmap_free(mid->ports_in_mid); err_ports_in_mid_alloc: kfree(mid); return NULL; @@ -1680,7 +1677,7 @@ mlxsw_core_max_ports(mlxsw_sp->core))) { err = mlxsw_sp_mc_remove_mdb_entry(mlxsw_sp, mid); list_del(&mid->list); - kfree(mid->ports_in_mid); + bitmap_free(mid->ports_in_mid); kfree(mid); } return err; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/micrel/ks8842.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/micrel/ks8842.c @@ -380,7 +380,7 @@ } } -static void ks8842_write_mac_addr(struct ks8842_adapter *adapter, u8 *mac) +static void ks8842_write_mac_addr(struct ks8842_adapter *adapter, const u8 *mac) { unsigned long flags; unsigned i; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/micrel/ks8851.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/micrel/ks8851.h @@ -350,6 +350,8 @@ * @rxd: Space for receiving SPI data, in DMA-able space. * @txd: Space for transmitting SPI data, in DMA-able space. * @msg_enable: The message flags controlling driver output (see ethtool). + * @tx_space: Free space in the hardware TX buffer (cached copy of KS_TXMIR). + * @queued_len: Space required in hardware TX buffer for queued packets in txq. * @fid: Incrementing frame id tag. * @rc_ier: Cached copy of KS_IER. * @rc_ccr: Cached copy of KS_CCR. @@ -399,6 +401,7 @@ struct work_struct rxctrl_work; struct sk_buff_head txq; + unsigned int queued_len; struct eeprom_93cx6 eeprom; struct regulator *vdd_reg; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/micrel/ks8851_spi.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/micrel/ks8851_spi.c @@ -287,6 +287,18 @@ } /** + * calc_txlen - calculate size of message to send packet + * @len: Length of data + * + * Returns the size of the TXFIFO message needed to send + * this packet. + */ +static unsigned int calc_txlen(unsigned int len) +{ + return ALIGN(len + 4, 4); +} + +/** * ks8851_rx_skb_spi - receive skbuff * @ks: The device state * @skb: The skbuff @@ -305,7 +317,9 @@ */ static void ks8851_tx_work(struct work_struct *work) { + unsigned int dequeued_len = 0; struct ks8851_net_spi *kss; + unsigned short tx_space; struct ks8851_net *ks; unsigned long flags; struct sk_buff *txb; @@ -322,6 +336,8 @@ last = skb_queue_empty(&ks->txq); if (txb) { + dequeued_len += calc_txlen(txb->len); + ks8851_wrreg16_spi(ks, KS_RXQCR, ks->rc_rxqcr | RXQCR_SDA); ks8851_wrfifo_spi(ks, txb, last); @@ -332,6 +348,13 @@ } } + tx_space = ks8851_rdreg16_spi(ks, KS_TXMIR); + + spin_lock(&ks->statelock); + ks->queued_len -= dequeued_len; + ks->tx_space = tx_space; + spin_unlock(&ks->statelock); + ks8851_unlock_spi(ks, &flags); } @@ -347,18 +370,6 @@ } /** - * calc_txlen - calculate size of message to send packet - * @len: Length of data - * - * Returns the size of the TXFIFO message needed to send - * this packet. - */ -static unsigned int calc_txlen(unsigned int len) -{ - return ALIGN(len + 4, 4); -} - -/** * ks8851_start_xmit_spi - transmit packet using SPI * @skb: The buffer to transmit * @dev: The device used to transmit the packet. @@ -386,16 +397,17 @@ spin_lock(&ks->statelock); - if (needed > ks->tx_space) { + if (ks->queued_len + needed > ks->tx_space) { netif_stop_queue(dev); ret = NETDEV_TX_BUSY; } else { - ks->tx_space -= needed; + ks->queued_len += needed; skb_queue_tail(&ks->txq, skb); } spin_unlock(&ks->statelock); - schedule_work(&kss->tx_work); + if (ret == NETDEV_TX_OK) + schedule_work(&kss->tx_work); return ret; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/microsoft/Kconfig +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/microsoft/Kconfig @@ -19,6 +19,7 @@ tristate "Microsoft Azure Network Adapter (MANA) support" depends on PCI_MSI && X86_64 depends on PCI_HYPERV + select PAGE_POOL help This driver supports Microsoft Azure Network Adapter (MANA). So far, the driver is only supported on X86_64. only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/neterion/s2io.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/neterion/s2io.h @@ -1073,7 +1073,7 @@ static int s2io_poll_msix(struct napi_struct *napi, int budget); static int s2io_poll_inta(struct napi_struct *napi, int budget); static void s2io_init_pci(struct s2io_nic * sp); -static int do_s2io_prog_unicast(struct net_device *dev, u8 *addr); +static int do_s2io_prog_unicast(struct net_device *dev, const u8 *addr); static void s2io_alarm_handle(struct timer_list *t); static irqreturn_t s2io_msix_ring_handle(int irq, void *dev_id); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/netronome/nfp/flower/cmsg.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/netronome/nfp/flower/cmsg.c @@ -210,6 +210,7 @@ unsigned int msg_len = nfp_flower_cmsg_get_data_len(skb); struct nfp_flower_cmsg_merge_hint *msg; struct nfp_fl_payload *sub_flows[2]; + struct nfp_flower_priv *priv; int err, i, flow_cnt; msg = nfp_flower_cmsg_get_data(skb); @@ -228,14 +229,15 @@ return; } - rtnl_lock(); + priv = app->priv; + mutex_lock(&priv->nfp_fl_lock); for (i = 0; i < flow_cnt; i++) { u32 ctx = be32_to_cpu(msg->flow[i].host_ctx); sub_flows[i] = nfp_flower_get_fl_payload_from_ctx(app, ctx); if (!sub_flows[i]) { nfp_flower_cmsg_warn(app, "Invalid flow in merge hint\n"); - goto err_rtnl_unlock; + goto err_mutex_unlock; } } @@ -244,8 +246,8 @@ if (err == -ENOMEM) nfp_flower_cmsg_warn(app, "Flow merge memory fail.\n"); -err_rtnl_unlock: - rtnl_unlock(); +err_mutex_unlock: + mutex_unlock(&priv->nfp_fl_lock); } static void only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/netronome/nfp/flower/main.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/netronome/nfp/flower/main.h @@ -196,6 +196,7 @@ * @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 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 */ }; /** only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/netronome/nfp/flower/metadata.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/netronome/nfp/flower/metadata.c @@ -530,6 +530,8 @@ if (err) goto err_free_stats_ctx_table; + mutex_init(&priv->nfp_fl_lock); + err = rhashtable_init(&priv->ct_zone_table, &nfp_zone_table_params); if (err) goto err_free_merge_table; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/netronome/nfp/flower/offload.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/netronome/nfp/flower/offload.c @@ -1009,8 +1009,6 @@ u64 parent_ctx = 0; int err; - ASSERT_RTNL(); - if (sub_flow1 == sub_flow2 || nfp_flower_is_merge_flow(sub_flow1) || nfp_flower_is_merge_flow(sub_flow2)) @@ -1662,19 +1660,30 @@ nfp_flower_repr_offload(struct nfp_app *app, struct net_device *netdev, struct flow_cls_offload *flower) { + struct nfp_flower_priv *priv = app->priv; + int ret; + if (!eth_proto_is_802_3(flower->common.protocol)) return -EOPNOTSUPP; + mutex_lock(&priv->nfp_fl_lock); switch (flower->command) { case FLOW_CLS_REPLACE: - return nfp_flower_add_offload(app, netdev, flower); + ret = nfp_flower_add_offload(app, netdev, flower); + break; case FLOW_CLS_DESTROY: - return nfp_flower_del_offload(app, netdev, flower); + ret = nfp_flower_del_offload(app, netdev, flower); + break; case FLOW_CLS_STATS: - return nfp_flower_get_stats(app, netdev, flower); + ret = nfp_flower_get_stats(app, netdev, flower); + break; default: - return -EOPNOTSUPP; + ret = -EOPNOTSUPP; + break; } + mutex_unlock(&priv->nfp_fl_lock); + + return ret; } static int nfp_flower_setup_tc_block_cb(enum tc_setup_type type, @@ -1713,6 +1722,7 @@ repr_priv = repr->app_priv; repr_priv->block_shared = f->block_shared; f->driver_block_list = &nfp_block_cb_list; + f->unlocked_driver_cb = true; switch (f->command) { case FLOW_BLOCK_BIND: @@ -1811,6 +1821,8 @@ nfp_flower_internal_port_can_offload(app, netdev))) return -EOPNOTSUPP; + f->unlocked_driver_cb = true; + switch (f->command) { case FLOW_BLOCK_BIND: cb_priv = nfp_flower_indr_block_cb_priv_lookup(app, netdev); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/netronome/nfp/flower/qos_conf.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/netronome/nfp/flower/qos_conf.c @@ -421,23 +421,29 @@ { 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; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/netronome/nfp/nfpcore/nfp6000_pcie.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/netronome/nfp/nfpcore/nfp6000_pcie.c @@ -542,11 +542,13 @@ const u32 barcfg_msix_general = NFP_PCIE_BAR_PCIE2CPP_MapType( NFP_PCIE_BAR_PCIE2CPP_MapType_GENERAL) | - NFP_PCIE_BAR_PCIE2CPP_LengthSelect_32BIT; + NFP_PCIE_BAR_PCIE2CPP_LengthSelect( + NFP_PCIE_BAR_PCIE2CPP_LengthSelect_32BIT); const u32 barcfg_msix_xpb = NFP_PCIE_BAR_PCIE2CPP_MapType( NFP_PCIE_BAR_PCIE2CPP_MapType_BULK) | - NFP_PCIE_BAR_PCIE2CPP_LengthSelect_32BIT | + NFP_PCIE_BAR_PCIE2CPP_LengthSelect( + NFP_PCIE_BAR_PCIE2CPP_LengthSelect_32BIT) | NFP_PCIE_BAR_PCIE2CPP_Target_BaseAddress( NFP_CPP_TARGET_ISLAND_XPB); const u32 barcfg_explicit[4] = { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/qlogic/netxen/netxen_nic_main.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/netxen/netxen_nic_main.c @@ -1861,7 +1861,7 @@ if (protocol == cpu_to_be16(ETH_P_8021Q)) { - vh = (struct vlan_ethhdr *)skb->data; + vh = skb_vlan_eth_hdr(skb); protocol = vh->h_vlan_encapsulated_proto; flags = FLAGS_VLAN_TAGGED; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/qlogic/qed/qed_cxt.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_cxt.c @@ -933,6 +933,7 @@ p_dma->virt_addr = NULL; } kfree(p_mngr->ilt_shadow); + p_mngr->ilt_shadow = NULL; } static int qed_ilt_blk_alloc(struct qed_hwfn *p_hwfn, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/qlogic/qed/qed_ll2.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_ll2.c @@ -87,7 +87,10 @@ 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 @@ 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. only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/qlogic/qed/qed_mcp.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_mcp.c @@ -2854,7 +2854,7 @@ } int qed_mcp_ov_update_mac(struct qed_hwfn *p_hwfn, - struct qed_ptt *p_ptt, u8 *mac) + struct qed_ptt *p_ptt, const u8 *mac) { struct qed_mcp_mb_params mb_params; u32 mfw_mac[2]; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/qlogic/qed/qed_rdma.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qed/qed_rdma.c @@ -1966,7 +1966,7 @@ static int qed_roce_ll2_set_mac_filter(struct qed_dev *cdev, u8 *old_mac_address, - u8 *new_mac_address) + const u8 *new_mac_address) { int rc = 0; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/qlogic/qlcnic/qlcnic_io.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qlogic/qlcnic/qlcnic_io.c @@ -317,7 +317,7 @@ if (adapter->flags & QLCNIC_VLAN_FILTERING) { if (protocol == ETH_P_8021Q) { - vh = (struct vlan_ethhdr *)skb->data; + vh = skb_vlan_eth_hdr(skb); vlan_id = ntohs(vh->h_vlan_TCI); } else if (skb_vlan_tag_present(skb)) { vlan_id = skb_vlan_tag_get(skb); @@ -467,7 +467,7 @@ u32 producer = tx_ring->producer; if (protocol == ETH_P_8021Q) { - vh = (struct vlan_ethhdr *)skb->data; + vh = skb_vlan_eth_hdr(skb); flags = QLCNIC_FLAGS_VLAN_TAGGED; vlan_tci = ntohs(vh->h_vlan_TCI); protocol = ntohs(vh->h_vlan_encapsulated_proto); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/qualcomm/emac/emac-mac.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qualcomm/emac/emac-mac.c @@ -420,7 +420,7 @@ } /* set MAC address */ -static void emac_set_mac_address(struct emac_adapter *adpt, u8 *addr) +static void emac_set_mac_address(struct emac_adapter *adpt, const u8 *addr) { u32 sta; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/qualcomm/qca_debug.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qualcomm/qca_debug.c @@ -30,6 +30,8 @@ #define QCASPI_MAX_REGS 0x20 +#define QCASPI_RX_MAX_FRAMES 4 + static const u16 qcaspi_spi_regs[] = { SPI_REG_BFR_SIZE, SPI_REG_WRBUF_SPC_AVA, @@ -250,31 +252,30 @@ { struct qcaspi *qca = netdev_priv(dev); - ring->rx_max_pending = 4; + ring->rx_max_pending = QCASPI_RX_MAX_FRAMES; ring->tx_max_pending = TX_RING_MAX_LEN; - ring->rx_pending = 4; + ring->rx_pending = QCASPI_RX_MAX_FRAMES; ring->tx_pending = qca->txr.count; } static int qcaspi_set_ringparam(struct net_device *dev, struct ethtool_ringparam *ring) { - const struct net_device_ops *ops = dev->netdev_ops; struct qcaspi *qca = netdev_priv(dev); - if ((ring->rx_pending) || + if (ring->rx_pending != QCASPI_RX_MAX_FRAMES || (ring->rx_mini_pending) || (ring->rx_jumbo_pending)) return -EINVAL; - if (netif_running(dev)) - ops->ndo_stop(dev); + if (qca->spi_thread) + kthread_park(qca->spi_thread); qca->txr.count = max_t(u32, ring->tx_pending, TX_RING_MIN_LEN); qca->txr.count = min_t(u16, qca->txr.count, TX_RING_MAX_LEN); - if (netif_running(dev)) - ops->ndo_open(dev); + if (qca->spi_thread) + kthread_unpark(qca->spi_thread); return 0; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/qualcomm/rmnet/rmnet_config.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/qualcomm/rmnet/rmnet_config.c @@ -391,7 +391,7 @@ struct rtnl_link_ops rmnet_link_ops __read_mostly = { .kind = "rmnet", - .maxtype = __IFLA_RMNET_MAX, + .maxtype = IFLA_RMNET_MAX, .priv_size = sizeof(struct rmnet_priv), .setup = rmnet_vnd_setup, .validate = rmnet_rtnl_validate, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/samsung/sxgbe/sxgbe_common.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/samsung/sxgbe/sxgbe_common.h @@ -329,7 +329,7 @@ /* Set power management mode (e.g. magic frame) */ void (*pmt)(void __iomem *ioaddr, unsigned long mode); /* Set/Get Unicast MAC addresses */ - void (*set_umac_addr)(void __iomem *ioaddr, unsigned char *addr, + void (*set_umac_addr)(void __iomem *ioaddr, const unsigned char *addr, unsigned int reg_n); void (*get_umac_addr)(void __iomem *ioaddr, unsigned char *addr, unsigned int reg_n); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/samsung/sxgbe/sxgbe_core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/samsung/sxgbe/sxgbe_core.c @@ -85,7 +85,8 @@ } /* Set/Get Unicast MAC addresses */ -static void sxgbe_core_set_umac_addr(void __iomem *ioaddr, unsigned char *addr, +static void sxgbe_core_set_umac_addr(void __iomem *ioaddr, + const unsigned char *addr, unsigned int reg_n) { u32 high_word, low_word; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/sfc/ef10_sriov.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/sfc/ef10_sriov.h @@ -39,7 +39,7 @@ void efx_ef10_sriov_fini(struct efx_nic *efx); static inline void efx_ef10_sriov_flr(struct efx_nic *efx, unsigned vf_i) {} -int efx_ef10_sriov_set_vf_mac(struct efx_nic *efx, int vf, u8 *mac); +int efx_ef10_sriov_set_vf_mac(struct efx_nic *efx, int vf, const u8 *mac); int efx_ef10_sriov_set_vf_vlan(struct efx_nic *efx, int vf_i, u16 vlan, u8 qos); @@ -60,9 +60,9 @@ void efx_ef10_vswitching_remove_pf(struct efx_nic *efx); void efx_ef10_vswitching_remove_vf(struct efx_nic *efx); int efx_ef10_vport_add_mac(struct efx_nic *efx, - unsigned int port_id, u8 *mac); + unsigned int port_id, const u8 *mac); int efx_ef10_vport_del_mac(struct efx_nic *efx, - unsigned int port_id, u8 *mac); + unsigned int port_id, const u8 *mac); int efx_ef10_vadaptor_alloc(struct efx_nic *efx, unsigned int port_id); int efx_ef10_vadaptor_query(struct efx_nic *efx, unsigned int port_id, u32 *port_flags, u32 *vadaptor_flags, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/sfc/siena_sriov.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/sfc/siena_sriov.c @@ -1591,7 +1591,7 @@ destroy_workqueue(vfdi_workqueue); } -int efx_siena_sriov_set_vf_mac(struct efx_nic *efx, int vf_i, u8 *mac) +int efx_siena_sriov_set_vf_mac(struct efx_nic *efx, int vf_i, const u8 *mac) { struct siena_nic_data *nic_data = efx->nic_data; struct siena_vf *vf; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/sfc/siena_sriov.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/sfc/siena_sriov.h @@ -46,7 +46,7 @@ void efx_siena_sriov_reset(struct efx_nic *efx); void efx_siena_sriov_flr(struct efx_nic *efx, unsigned flr); -int efx_siena_sriov_set_vf_mac(struct efx_nic *efx, int vf, u8 *mac); +int efx_siena_sriov_set_vf_mac(struct efx_nic *efx, int vf, const u8 *mac); int efx_siena_sriov_set_vf_vlan(struct efx_nic *efx, int vf, u16 vlan, u8 qos); int efx_siena_sriov_set_vf_spoofchk(struct efx_nic *efx, int vf, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/sfc/tx_tso.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/sfc/tx_tso.c @@ -147,7 +147,7 @@ EFX_WARN_ON_ONCE_PARANOID(((struct ethhdr *)skb->data)->h_proto != protocol); if (protocol == htons(ETH_P_8021Q)) { - struct vlan_ethhdr *veh = (struct vlan_ethhdr *)skb->data; + struct vlan_ethhdr *veh = skb_vlan_eth_hdr(skb); protocol = veh->h_vlan_encapsulated_proto; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/sis/sis900.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/sis/sis900.c @@ -1098,7 +1098,7 @@ /* load MAC addr to filter data register */ for (i = 0 ; i < 3 ; i++) { - u32 w = (u32) *((u16 *)(net_dev->dev_addr)+i); + u32 w = (u32) *((const u16 *)(net_dev->dev_addr)+i); sw32(rfcr, i << RFADDR_shift); sw32(rfdr, w); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/smsc/smsc9420.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/smsc/smsc9420.c @@ -404,7 +404,7 @@ static void smsc9420_set_mac_address(struct net_device *dev) { struct smsc9420_pdata *pd = netdev_priv(dev); - u8 *dev_addr = dev->dev_addr; + const u8 *dev_addr = dev->dev_addr; u32 mac_high16 = (dev_addr[5] << 8) | dev_addr[4]; u32 mac_low32 = (dev_addr[3] << 24) | (dev_addr[2] << 16) | (dev_addr[1] << 8) | dev_addr[0]; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/stmicro/stmmac/Kconfig +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/Kconfig @@ -253,7 +253,7 @@ config DWMAC_LOONGSON tristate "Loongson PCI DWMAC support" default MACH_LOONGSON64 - depends on STMMAC_ETH && PCI + depends on (MACH_LOONGSON64 || COMPILE_TEST) && STMMAC_ETH && PCI depends on COMMON_CLK help This selects the LOONGSON PCI bus support for the stmmac driver, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/stmicro/stmmac/dwmac1000_core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac1000_core.c @@ -104,7 +104,7 @@ } static void dwmac1000_set_umac_addr(struct mac_device_info *hw, - unsigned char *addr, + const unsigned char *addr, unsigned int reg_n) { void __iomem *ioaddr = hw->pcsr; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/stmicro/stmmac/dwmac100_core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac100_core.c @@ -68,7 +68,7 @@ } static void dwmac100_set_umac_addr(struct mac_device_info *hw, - unsigned char *addr, + const unsigned char *addr, unsigned int reg_n) { void __iomem *ioaddr = hw->pcsr; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/stmicro/stmmac/dwmac5.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac5.h @@ -153,9 +153,11 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/stmicro/stmmac/dwxgmac2.h +++ linux-xilinx-zynqmp-5.15.0/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) @@ -282,6 +282,8 @@ #define XGMAC_RXCEIE BIT(4) #define XGMAC_TXCEIE BIT(0) #define XGMAC_MTL_ECC_INT_STATUS 0x000010cc +#define XGMAC_MTL_DPP_CONTROL 0x000010e0 +#define XGMAC_DPP_DISABLE BIT(0) #define XGMAC_MTL_TXQ_OPMODE(x) (0x00001100 + (0x80 * (x))) #define XGMAC_TQS GENMASK(25, 16) #define XGMAC_TQS_SHIFT 16 @@ -364,6 +366,7 @@ #define XGMAC_DCEIE BIT(1) #define XGMAC_TCEIE BIT(0) #define XGMAC_DMA_ECC_INT_STATUS 0x0000306c +#define XGMAC_DMA_DPP_INT_STATUS 0x00003074 #define XGMAC_DMA_CH_CONTROL(x) (0x00003100 + (0x80 * (x))) #define XGMAC_SPH BIT(24) #define XGMAC_PBLx8 BIT(16) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/stmicro/stmmac/dwxgmac2_core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwxgmac2_core.c @@ -335,7 +335,8 @@ } static void dwxgmac2_set_umac_addr(struct mac_device_info *hw, - unsigned char *addr, unsigned int reg_n) + const unsigned char *addr, + unsigned int reg_n) { void __iomem *ioaddr = hw->pcsr; u32 value; @@ -788,6 +789,44 @@ { false, "UNKNOWN", "Unknown Error" }, /* 31 */ }; +#define DPP_RX_ERR "Read Rx Descriptor Parity checker Error" +#define DPP_TX_ERR "Read Tx Descriptor Parity checker Error" + +static const struct dwxgmac3_error_desc dwxgmac3_dma_dpp_errors[32] = { + { true, "TDPES0", DPP_TX_ERR }, + { true, "TDPES1", DPP_TX_ERR }, + { true, "TDPES2", DPP_TX_ERR }, + { true, "TDPES3", DPP_TX_ERR }, + { true, "TDPES4", DPP_TX_ERR }, + { true, "TDPES5", DPP_TX_ERR }, + { true, "TDPES6", DPP_TX_ERR }, + { true, "TDPES7", DPP_TX_ERR }, + { true, "TDPES8", DPP_TX_ERR }, + { true, "TDPES9", DPP_TX_ERR }, + { true, "TDPES10", DPP_TX_ERR }, + { true, "TDPES11", DPP_TX_ERR }, + { true, "TDPES12", DPP_TX_ERR }, + { true, "TDPES13", DPP_TX_ERR }, + { true, "TDPES14", DPP_TX_ERR }, + { true, "TDPES15", DPP_TX_ERR }, + { true, "RDPES0", DPP_RX_ERR }, + { true, "RDPES1", DPP_RX_ERR }, + { true, "RDPES2", DPP_RX_ERR }, + { true, "RDPES3", DPP_RX_ERR }, + { true, "RDPES4", DPP_RX_ERR }, + { true, "RDPES5", DPP_RX_ERR }, + { true, "RDPES6", DPP_RX_ERR }, + { true, "RDPES7", DPP_RX_ERR }, + { true, "RDPES8", DPP_RX_ERR }, + { true, "RDPES9", DPP_RX_ERR }, + { true, "RDPES10", DPP_RX_ERR }, + { true, "RDPES11", DPP_RX_ERR }, + { true, "RDPES12", DPP_RX_ERR }, + { true, "RDPES13", DPP_RX_ERR }, + { true, "RDPES14", DPP_RX_ERR }, + { true, "RDPES15", DPP_RX_ERR }, +}; + static void dwxgmac3_handle_dma_err(struct net_device *ndev, void __iomem *ioaddr, bool correctable, struct stmmac_safety_stats *stats) @@ -799,6 +838,13 @@ dwxgmac3_log_error(ndev, value, correctable, "DMA", dwxgmac3_dma_errors, STAT_OFF(dma_errors), stats); + + value = readl(ioaddr + XGMAC_DMA_DPP_INT_STATUS); + writel(value, ioaddr + XGMAC_DMA_DPP_INT_STATUS); + + dwxgmac3_log_error(ndev, value, false, "DMA_DPP", + dwxgmac3_dma_dpp_errors, + STAT_OFF(dma_dpp_errors), stats); } static int @@ -837,6 +883,12 @@ value |= XGMAC_TMOUTEN; /* FSM Timeout Feature */ writel(value, ioaddr + XGMAC_MAC_FSM_CONTROL); + /* 5. Enable Data Path Parity Protection */ + value = readl(ioaddr + XGMAC_MTL_DPP_CONTROL); + /* already enabled by default, explicit enable it again */ + value &= ~XGMAC_DPP_DISABLE; + writel(value, ioaddr + XGMAC_MTL_DPP_CONTROL); + return 0; } @@ -870,7 +922,11 @@ ret |= !corr; } - err = dma & (XGMAC_DEUIS | XGMAC_DECIS); + /* DMA_DPP_Interrupt_Status is indicated by MCSIS bit in + * DMA_Safety_Interrupt_Status, so we handle DMA Data Path + * Parity Errors here + */ + err = dma & (XGMAC_DEUIS | XGMAC_DECIS | XGMAC_MCSIS); corr = dma & XGMAC_DECIS; if (err) { dwxgmac3_handle_dma_err(ndev, ioaddr, corr, stats); @@ -886,6 +942,7 @@ { dwxgmac3_mac_errors }, { dwxgmac3_mtl_errors }, { dwxgmac3_dma_errors }, + { dwxgmac3_dma_dpp_errors }, }; static int dwxgmac3_safety_feat_dump(struct stmmac_safety_stats *stats, @@ -1134,7 +1191,19 @@ 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 +1497,8 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/stmicro/stmmac/hwif.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/hwif.h @@ -330,7 +330,8 @@ /* Set power management mode (e.g. magic frame) */ void (*pmt)(struct mac_device_info *hw, unsigned long mode); /* Set/Get Unicast MAC addresses */ - void (*set_umac_addr)(struct mac_device_info *hw, unsigned char *addr, + void (*set_umac_addr)(struct mac_device_info *hw, + const unsigned char *addr, unsigned int reg_n); void (*get_umac_addr)(struct mac_device_info *hw, unsigned char *addr, unsigned int reg_n); @@ -395,9 +396,11 @@ 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); }; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/stmicro/stmmac/mmc_core.c +++ linux-xilinx-zynqmp-5.15.0/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 @@ { 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); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c @@ -489,8 +489,12 @@ new_bus->parent = priv->device; err = of_mdiobus_register(new_bus, mdio_node); - if (err != 0) { - dev_err(dev, "Cannot register the MDIO bus\n"); + if (err == -ENODEV) { + err = 0; + dev_info(dev, "MDIO bus is disabled\n"); + goto bus_register_fail; + } else if (err) { + dev_err_probe(dev, err, "Cannot register the MDIO bus\n"); goto bus_register_fail; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/sun/sunbmac.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/sun/sunbmac.c @@ -623,7 +623,7 @@ void __iomem *cregs = bp->creg; void __iomem *bregs = bp->bregs; __u32 bblk_dvma = (__u32)bp->bblock_dvma; - unsigned char *e = &bp->dev->dev_addr[0]; + const unsigned char *e = &bp->dev->dev_addr[0]; /* Latch current counters into statistics. */ bigmac_get_counters(bp, bregs); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/sun/sunqe.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/sun/sunqe.c @@ -144,7 +144,7 @@ void __iomem *cregs = qep->qcregs; void __iomem *mregs = qep->mregs; void __iomem *gregs = qecp->gregs; - unsigned char *e = &qep->dev->dev_addr[0]; + const unsigned char *e = &qep->dev->dev_addr[0]; __u32 qblk_dvma = (__u32)qep->qblock_dvma; u32 tmp; int i; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/synopsys/dwc-xlgmac-hw.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/synopsys/dwc-xlgmac-hw.c @@ -57,7 +57,7 @@ return 0; } -static int xlgmac_set_mac_address(struct xlgmac_pdata *pdata, u8 *addr) +static int xlgmac_set_mac_address(struct xlgmac_pdata *pdata, const u8 *addr) { unsigned int mac_addr_hi, mac_addr_lo; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/synopsys/dwc-xlgmac.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/synopsys/dwc-xlgmac.h @@ -410,7 +410,7 @@ void (*dev_xmit)(struct xlgmac_channel *channel); int (*dev_read)(struct xlgmac_channel *channel); - int (*set_mac_address)(struct xlgmac_pdata *pdata, u8 *addr); + int (*set_mac_address)(struct xlgmac_pdata *pdata, const u8 *addr); int (*config_rx_mode)(struct xlgmac_pdata *pdata); int (*enable_rx_csum)(struct xlgmac_pdata *pdata); int (*disable_rx_csum)(struct xlgmac_pdata *pdata); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/ti/tlan.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/ti/tlan.c @@ -184,7 +184,7 @@ static void tlan_read_and_clear_stats(struct net_device *, int); static void tlan_reset_adapter(struct net_device *); static void tlan_finish_reset(struct net_device *); -static void tlan_set_mac(struct net_device *, int areg, char *mac); +static void tlan_set_mac(struct net_device *, int areg, const char *mac); static void __tlan_phy_print(struct net_device *); static void tlan_phy_print(struct net_device *); @@ -2346,7 +2346,7 @@ * **************************************************************/ -static void tlan_set_mac(struct net_device *dev, int areg, char *mac) +static void tlan_set_mac(struct net_device *dev, int areg, const char *mac) { int i; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/toshiba/ps3_gelic_wireless.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/toshiba/ps3_gelic_wireless.c @@ -1217,7 +1217,7 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/toshiba/spider_net.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/toshiba/spider_net.c @@ -2332,7 +2332,7 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ethernet/toshiba/tc35815.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ethernet/toshiba/tc35815.c @@ -1859,7 +1859,8 @@ return &dev->stats; } -static void tc35815_set_cam_entry(struct net_device *dev, int index, unsigned char *addr) +static void tc35815_set_cam_entry(struct net_device *dev, int index, + const unsigned char *addr) { struct tc35815_local *lp = netdev_priv(dev); struct tc35815_regs __iomem *tr = only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/fjes/fjes_hw.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/fjes/fjes_hw.c @@ -220,21 +220,25 @@ mem_size = FJES_DEV_REQ_BUF_SIZE(hw->max_epid); hw->hw_info.req_buf = kzalloc(mem_size, GFP_KERNEL); - if (!(hw->hw_info.req_buf)) - return -ENOMEM; + if (!(hw->hw_info.req_buf)) { + result = -ENOMEM; + goto free_ep_info; + } hw->hw_info.req_buf_size = mem_size; mem_size = FJES_DEV_RES_BUF_SIZE(hw->max_epid); hw->hw_info.res_buf = kzalloc(mem_size, GFP_KERNEL); - if (!(hw->hw_info.res_buf)) - return -ENOMEM; + if (!(hw->hw_info.res_buf)) { + result = -ENOMEM; + goto free_req_buf; + } hw->hw_info.res_buf_size = mem_size; result = fjes_hw_alloc_shared_status_region(hw); if (result) - return result; + goto free_res_buf; hw->hw_info.buffer_share_bit = 0; hw->hw_info.buffer_unshare_reserve_bit = 0; @@ -245,11 +249,11 @@ result = fjes_hw_alloc_epbuf(&buf_pair->tx); if (result) - return result; + goto free_epbuf; result = fjes_hw_alloc_epbuf(&buf_pair->rx); if (result) - return result; + goto free_epbuf; spin_lock_irqsave(&hw->rx_status_lock, flags); fjes_hw_setup_epbuf(&buf_pair->tx, mac, @@ -272,6 +276,25 @@ fjes_hw_init_command_registers(hw, ¶m); return 0; + +free_epbuf: + for (epidx = 0; epidx < hw->max_epid ; epidx++) { + if (epidx == hw->my_epid) + continue; + fjes_hw_free_epbuf(&hw->ep_shm_info[epidx].tx); + fjes_hw_free_epbuf(&hw->ep_shm_info[epidx].rx); + } + fjes_hw_free_shared_status_region(hw); +free_res_buf: + kfree(hw->hw_info.res_buf); + hw->hw_info.res_buf = NULL; +free_req_buf: + kfree(hw->hw_info.req_buf); + hw->hw_info.req_buf = NULL; +free_ep_info: + kfree(hw->ep_shm_info); + hw->ep_shm_info = NULL; + return result; } static void fjes_hw_cleanup(struct fjes_hw *hw) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/hyperv/Kconfig +++ linux-xilinx-zynqmp-5.15.0/drivers/net/hyperv/Kconfig @@ -3,5 +3,6 @@ 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. only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ppp/ppp_async.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ppp/ppp_async.c @@ -471,6 +471,10 @@ case PPPIOCSMRU: if (get_user(val, p)) break; + if (val > U16_MAX) { + err = -EINVAL; + break; + } if (val < PPP_MRU) val = PPP_MRU; ap->mru = val; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/ppp/ppp_synctty.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/ppp/ppp_synctty.c @@ -464,6 +464,10 @@ 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 @@ /* 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/usb/ax88172a.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/usb/ax88172a.c @@ -161,7 +161,9 @@ u8 buf[ETH_ALEN]; struct ax88172a_private *priv; - usbnet_get_endpoints(dev, intf); + ret = usbnet_get_endpoints(dev, intf); + if (ret) + return ret; priv = kzalloc(sizeof(*priv), GFP_KERNEL); if (!priv) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/usb/catc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/usb/catc.c @@ -615,7 +615,7 @@ * Receive modes. Broadcast, Multicast, Promisc. */ -static void catc_multicast(unsigned char *addr, u8 *multicast) +static void catc_multicast(const unsigned char *addr, u8 *multicast) { u32 crc; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/ath/ath10k/debug.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ath/ath10k/debug.c @@ -1139,7 +1139,7 @@ u32 sset, u8 *data) { if (sset == ETH_SS_STATS) - memcpy(data, *ath10k_gstrings_stats, + memcpy(data, ath10k_gstrings_stats, sizeof(ath10k_gstrings_stats)); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/ath/ath9k/debug.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ath/ath9k/debug.c @@ -1284,7 +1284,7 @@ u32 sset, u8 *data) { if (sset == ETH_SS_STATS) - memcpy(data, *ath9k_gstrings_stats, + memcpy(data, ath9k_gstrings_stats, sizeof(ath9k_gstrings_stats)); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/intel/iwlwifi/dvm/tx.c +++ linux-xilinx-zynqmp-5.15.0/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 @@ 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 @@ * 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", only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/intel/iwlwifi/iwl-trans.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/intel/iwlwifi/iwl-trans.h @@ -539,7 +539,7 @@ 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 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, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/marvell/libertas/Kconfig +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/marvell/libertas/Kconfig @@ -2,8 +2,6 @@ config LIBERTAS tristate "Marvell 8xxx Libertas WLAN driver support" depends on CFG80211 - select WIRELESS_EXT - select WEXT_SPY select LIB80211 select FW_LOADER help only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/marvell/mwifiex/ioctl.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/marvell/mwifiex/ioctl.h @@ -119,6 +119,7 @@ u8 qos_info; u8 power_constraint; struct mwifiex_types_wmm_info wmm_info; + u8 mac_addr[ETH_ALEN]; }; enum { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/marvell/mwifiex/uap_cmd.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/marvell/mwifiex/uap_cmd.c @@ -480,6 +480,7 @@ static int mwifiex_uap_bss_param_prepare(u8 *tlv, void *cmd_buf, u16 *param_size) { + struct host_cmd_tlv_mac_addr *mac_tlv; struct host_cmd_tlv_dtim_period *dtim_period; struct host_cmd_tlv_beacon_period *beacon_period; struct host_cmd_tlv_ssid *ssid; @@ -499,6 +500,13 @@ int i; u16 cmd_size = *param_size; + mac_tlv = (struct host_cmd_tlv_mac_addr *)tlv; + mac_tlv->header.type = cpu_to_le16(TLV_TYPE_UAP_MAC_ADDRESS); + mac_tlv->header.len = cpu_to_le16(ETH_ALEN); + memcpy(mac_tlv->mac_addr, bss_cfg->mac_addr, ETH_ALEN); + cmd_size += sizeof(struct host_cmd_tlv_mac_addr); + tlv += sizeof(struct host_cmd_tlv_mac_addr); + if (bss_cfg->ssid.ssid_len) { ssid = (struct host_cmd_tlv_ssid *)tlv; ssid->header.type = cpu_to_le16(TLV_TYPE_UAP_SSID); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/mediatek/mt76/mt7603/beacon.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/mt7603/beacon.c @@ -10,12 +10,31 @@ }; 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) { struct mt7603_dev *dev = (struct mt7603_dev *)priv; 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/mediatek/mt76/mt7603/core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/mt7603/core.c @@ -42,11 +42,13 @@ } 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]); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/mediatek/mt76/mt7603/regs.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/mt7603/regs.h @@ -462,6 +462,11 @@ #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) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/mediatek/mt76/mt76x02_mmio.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/mediatek/mt76/mt76x02_mmio.c @@ -59,7 +59,8 @@ 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); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/ralink/rt2x00/rt2x00mac.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/ralink/rt2x00/rt2x00mac.c @@ -598,6 +598,17 @@ */ if (changes & BSS_CHANGED_BEACON_ENABLED) { mutex_lock(&intf->beacon_skb_mutex); + + /* + * Clear the 'enable_beacon' flag and clear beacon because + * the beacon queue has been stopped after hardware reset. + */ + if (test_bit(DEVICE_STATE_RESET, &rt2x00dev->flags) && + intf->enable_beacon) { + intf->enable_beacon = false; + rt2x00queue_clear_beacon(rt2x00dev, vif); + } + if (!bss_conf->enable_beacon && intf->enable_beacon) { rt2x00dev->intf_beaconing--; intf->enable_beacon = false; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/pci.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtlwifi/pci.c @@ -164,21 +164,29 @@ struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw)); struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw)); + value &= PCI_EXP_LNKCTL_ASPMC; + if (rtlhal->hw_type != HARDWARE_TYPE_RTL8192SE) - value |= 0x40; + value |= PCI_EXP_LNKCTL_CCC; - pci_write_config_byte(rtlpci->pdev, 0x80, value); + pcie_capability_clear_and_set_word(rtlpci->pdev, PCI_EXP_LNKCTL, + PCI_EXP_LNKCTL_ASPMC | value, + value); return false; } -/*When we set 0x01 to enable clk request. Set 0x0 to disable clk req.*/ -static void _rtl_pci_switch_clk_req(struct ieee80211_hw *hw, u8 value) +/* @value is PCI_EXP_LNKCTL_CLKREQ_EN or 0 to enable/disable clk request. */ +static void _rtl_pci_switch_clk_req(struct ieee80211_hw *hw, u16 value) { struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw)); struct rtl_hal *rtlhal = rtl_hal(rtl_priv(hw)); - pci_write_config_byte(rtlpci->pdev, 0x81, value); + value &= PCI_EXP_LNKCTL_CLKREQ_EN; + + pcie_capability_clear_and_set_word(rtlpci->pdev, PCI_EXP_LNKCTL, + PCI_EXP_LNKCTL_CLKREQ_EN, + value); if (rtlhal->hw_type == HARDWARE_TYPE_RTL8192SE) udelay(100); @@ -192,11 +200,8 @@ struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw)); struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw)); u8 pcibridge_vendor = pcipriv->ndis_adapter.pcibridge_vendor; - u8 num4bytes = pcipriv->ndis_adapter.num4bytes; /*Retrieve original configuration settings. */ u8 linkctrl_reg = pcipriv->ndis_adapter.linkctrl_reg; - u16 pcibridge_linkctrlreg = pcipriv->ndis_adapter. - pcibridge_linkctrlreg; u16 aspmlevel = 0; u8 tmp_u1b = 0; @@ -221,16 +226,8 @@ /*Set corresponding value. */ aspmlevel |= BIT(0) | BIT(1); linkctrl_reg &= ~aspmlevel; - pcibridge_linkctrlreg &= ~(BIT(0) | BIT(1)); _rtl_pci_platform_switch_device_pci_aspm(hw, linkctrl_reg); - udelay(50); - - /*4 Disable Pci Bridge ASPM */ - pci_write_config_byte(rtlpci->pdev, (num4bytes << 2), - pcibridge_linkctrlreg); - - udelay(50); } /*Enable RTL8192SE ASPM & Enable Pci Bridge ASPM for @@ -245,9 +242,7 @@ struct rtl_ps_ctl *ppsc = rtl_psc(rtl_priv(hw)); struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw)); u8 pcibridge_vendor = pcipriv->ndis_adapter.pcibridge_vendor; - u8 num4bytes = pcipriv->ndis_adapter.num4bytes; u16 aspmlevel; - u8 u_pcibridge_aspmsetting; u8 u_device_aspmsetting; if (!ppsc->support_aspm) @@ -259,25 +254,6 @@ return; } - /*4 Enable Pci Bridge ASPM */ - - u_pcibridge_aspmsetting = - pcipriv->ndis_adapter.pcibridge_linkctrlreg | - rtlpci->const_hostpci_aspm_setting; - - if (pcibridge_vendor == PCI_BRIDGE_VENDOR_INTEL) - u_pcibridge_aspmsetting &= ~BIT(0); - - pci_write_config_byte(rtlpci->pdev, (num4bytes << 2), - u_pcibridge_aspmsetting); - - rtl_dbg(rtlpriv, COMP_INIT, DBG_LOUD, - "PlatformEnableASPM(): Write reg[%x] = %x\n", - (pcipriv->ndis_adapter.pcibridge_pciehdr_offset + 0x10), - u_pcibridge_aspmsetting); - - udelay(50); - /*Get ASPM level (with/without Clock Req) */ aspmlevel = rtlpci->const_devicepci_aspm_setting; u_device_aspmsetting = pcipriv->ndis_adapter.linkctrl_reg; @@ -291,7 +267,8 @@ if (ppsc->reg_rfps_level & RT_RF_OFF_LEVL_CLK_REQ) { _rtl_pci_switch_clk_req(hw, (ppsc->reg_rfps_level & - RT_RF_OFF_LEVL_CLK_REQ) ? 1 : 0); + RT_RF_OFF_LEVL_CLK_REQ) ? + PCI_EXP_LNKCTL_CLKREQ_EN : 0); RT_SET_PS_LEVEL(ppsc, RT_RF_OFF_LEVL_CLK_REQ); } udelay(100); @@ -359,22 +336,6 @@ return find_buddy_priv; } -static void rtl_pci_get_linkcontrol_field(struct ieee80211_hw *hw) -{ - struct rtl_pci_priv *pcipriv = rtl_pcipriv(hw); - struct rtl_pci *rtlpci = rtl_pcidev(pcipriv); - u8 capabilityoffset = pcipriv->ndis_adapter.pcibridge_pciehdr_offset; - u8 linkctrl_reg; - u8 num4bbytes; - - num4bbytes = (capabilityoffset + 0x10) / 4; - - /*Read Link Control Register */ - pci_read_config_byte(rtlpci->pdev, (num4bbytes << 2), &linkctrl_reg); - - pcipriv->ndis_adapter.pcibridge_linkctrlreg = linkctrl_reg; -} - static void rtl_pci_parse_configuration(struct pci_dev *pdev, struct ieee80211_hw *hw) { @@ -2035,12 +1996,6 @@ PCI_SLOT(bridge_pdev->devfn); pcipriv->ndis_adapter.pcibridge_funcnum = PCI_FUNC(bridge_pdev->devfn); - pcipriv->ndis_adapter.pcibridge_pciehdr_offset = - pci_pcie_cap(bridge_pdev); - pcipriv->ndis_adapter.num4bytes = - (pcipriv->ndis_adapter.pcibridge_pciehdr_offset + 0x10) / 4; - - rtl_pci_get_linkcontrol_field(hw); if (pcipriv->ndis_adapter.pcibridge_vendor == PCI_BRIDGE_VENDOR_AMD) { @@ -2057,13 +2012,11 @@ pdev->vendor, pcipriv->ndis_adapter.linkctrl_reg); rtl_dbg(rtlpriv, COMP_INIT, DBG_DMESG, - "pci_bridge busnumber:devnumber:funcnumber:vendor:pcie_cap:link_ctl_reg:amd %d:%d:%d:%x:%x:%x:%x\n", + "pci_bridge busnumber:devnumber:funcnumber:vendor:amd %d:%d:%d:%x:%x\n", pcipriv->ndis_adapter.pcibridge_busnum, pcipriv->ndis_adapter.pcibridge_devnum, pcipriv->ndis_adapter.pcibridge_funcnum, pcibridge_vendors[pcipriv->ndis_adapter.pcibridge_vendor], - pcipriv->ndis_adapter.pcibridge_pciehdr_offset, - pcipriv->ndis_adapter.pcibridge_linkctrlreg, pcipriv->ndis_adapter.amd_l1_patch); rtl_pci_parse_configuration(pdev, hw); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/pci.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtlwifi/pci.h @@ -236,11 +236,6 @@ u16 pcibridge_vendorid; u16 pcibridge_deviceid; - u8 num4bytes; - - u8 pcibridge_pciehdr_offset; - u8 pcibridge_linkctrlreg; - bool amd_l1_patch; }; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/dm.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/dm.c @@ -799,7 +799,7 @@ } 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; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/phy.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/phy.c @@ -16,12 +16,6 @@ static void _rtl88e_phy_rf_serial_write(struct ieee80211_hw *hw, enum radio_path rfpath, u32 offset, u32 data); -static u32 _rtl88e_phy_calculate_bit_shift(u32 bitmask) -{ - u32 i = ffs(bitmask); - - return i ? i - 1 : 32; -} static bool _rtl88e_phy_bb8188e_config_parafile(struct ieee80211_hw *hw); static bool _rtl88e_phy_config_mac_with_headerfile(struct ieee80211_hw *hw); static bool phy_config_bb_with_headerfile(struct ieee80211_hw *hw, @@ -51,7 +45,7 @@ rtl_dbg(rtlpriv, COMP_RF, DBG_TRACE, "regaddr(%#x), bitmask(%#x)\n", regaddr, bitmask); originalvalue = rtl_read_dword(rtlpriv, regaddr); - bitshift = _rtl88e_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); returnvalue = (originalvalue & bitmask) >> bitshift; rtl_dbg(rtlpriv, COMP_RF, DBG_TRACE, @@ -74,7 +68,7 @@ if (bitmask != MASKDWORD) { originalvalue = rtl_read_dword(rtlpriv, regaddr); - bitshift = _rtl88e_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); data = ((originalvalue & (~bitmask)) | (data << bitshift)); } @@ -99,7 +93,7 @@ original_value = _rtl88e_phy_rf_serial_read(hw, rfpath, regaddr); - bitshift = _rtl88e_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); readback_value = (original_value & bitmask) >> bitshift; spin_unlock(&rtlpriv->locks.rf_lock); @@ -127,7 +121,7 @@ original_value = _rtl88e_phy_rf_serial_read(hw, rfpath, regaddr); - bitshift = _rtl88e_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); data = ((original_value & (~bitmask)) | (data << bitshift)); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/rtl8192c/dm_common.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtlwifi/rtl8192c/dm_common.c @@ -640,7 +640,7 @@ } 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; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/rtl8192c/phy_common.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtlwifi/rtl8192c/phy_common.c @@ -17,7 +17,7 @@ rtl_dbg(rtlpriv, COMP_RF, DBG_TRACE, "regaddr(%#x), bitmask(%#x)\n", regaddr, bitmask); originalvalue = rtl_read_dword(rtlpriv, regaddr); - bitshift = _rtl92c_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); returnvalue = (originalvalue & bitmask) >> bitshift; rtl_dbg(rtlpriv, COMP_RF, DBG_TRACE, @@ -40,7 +40,7 @@ if (bitmask != MASKDWORD) { originalvalue = rtl_read_dword(rtlpriv, regaddr); - bitshift = _rtl92c_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); data = ((originalvalue & (~bitmask)) | (data << bitshift)); } @@ -143,14 +143,6 @@ } EXPORT_SYMBOL(_rtl92c_phy_rf_serial_write); -u32 _rtl92c_phy_calculate_bit_shift(u32 bitmask) -{ - u32 i = ffs(bitmask); - - return i ? i - 1 : 32; -} -EXPORT_SYMBOL(_rtl92c_phy_calculate_bit_shift); - static void _rtl92c_phy_bb_config_1t(struct ieee80211_hw *hw) { rtl_set_bbreg(hw, RFPGA0_TXINFO, 0x3, 0x2); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/rtl8192c/phy_common.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtlwifi/rtl8192c/phy_common.h @@ -196,7 +196,6 @@ void rtl92ce_phy_set_rf_on(struct ieee80211_hw *hw); void rtl92c_phy_set_io(struct ieee80211_hw *hw); void rtl92c_bb_block_on(struct ieee80211_hw *hw); -u32 _rtl92c_phy_calculate_bit_shift(u32 bitmask); long _rtl92c_phy_txpwr_idx_to_dbm(struct ieee80211_hw *hw, enum wireless_mode wirelessmode, u8 txpwridx); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/rtl8192ce/phy.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtlwifi/rtl8192ce/phy.c @@ -39,7 +39,7 @@ rfpath, regaddr); } - bitshift = _rtl92c_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); readback_value = (original_value & bitmask) >> bitshift; spin_unlock(&rtlpriv->locks.rf_lock); @@ -110,7 +110,7 @@ original_value = _rtl92c_phy_rf_serial_read(hw, rfpath, regaddr); - bitshift = _rtl92c_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); data = ((original_value & (~bitmask)) | (data << bitshift)); @@ -122,7 +122,7 @@ original_value = _rtl92c_phy_fw_rf_serial_read(hw, rfpath, regaddr); - bitshift = _rtl92c_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); data = ((original_value & (~bitmask)) | (data << bitshift)); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/rtl8192ce/phy.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtlwifi/rtl8192ce/phy.h @@ -94,7 +94,6 @@ u32 offset); u32 _rtl92c_phy_fw_rf_serial_read(struct ieee80211_hw *hw, enum radio_path rfpath, u32 offset); -u32 _rtl92c_phy_calculate_bit_shift(u32 bitmask); void _rtl92c_phy_rf_serial_write(struct ieee80211_hw *hw, enum radio_path rfpath, u32 offset, u32 data); void _rtl92c_phy_fw_rf_serial_write(struct ieee80211_hw *hw, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/phy.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/phy.c @@ -32,7 +32,7 @@ original_value = _rtl92c_phy_fw_rf_serial_read(hw, rfpath, regaddr); } - bitshift = _rtl92c_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); readback_value = (original_value & bitmask) >> bitshift; rtl_dbg(rtlpriv, COMP_RF, DBG_TRACE, "regaddr(%#x), rfpath(%#x), bitmask(%#x), original_value(%#x)\n", @@ -56,7 +56,7 @@ original_value = _rtl92c_phy_rf_serial_read(hw, rfpath, regaddr); - bitshift = _rtl92c_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); data = ((original_value & (~bitmask)) | (data << bitshift)); @@ -67,7 +67,7 @@ original_value = _rtl92c_phy_fw_rf_serial_read(hw, rfpath, regaddr); - bitshift = _rtl92c_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); data = ((original_value & (~bitmask)) | (data << bitshift)); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/phy.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/phy.c @@ -16,7 +16,6 @@ static void _rtl92ee_phy_rf_serial_write(struct ieee80211_hw *hw, enum radio_path rfpath, u32 offset, u32 data); -static u32 _rtl92ee_phy_calculate_bit_shift(u32 bitmask); static bool _rtl92ee_phy_bb8192ee_config_parafile(struct ieee80211_hw *hw); static bool _rtl92ee_phy_config_mac_with_headerfile(struct ieee80211_hw *hw); static bool phy_config_bb_with_hdr_file(struct ieee80211_hw *hw, @@ -46,7 +45,7 @@ rtl_dbg(rtlpriv, COMP_RF, DBG_TRACE, "regaddr(%#x), bitmask(%#x)\n", regaddr, bitmask); originalvalue = rtl_read_dword(rtlpriv, regaddr); - bitshift = _rtl92ee_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); returnvalue = (originalvalue & bitmask) >> bitshift; rtl_dbg(rtlpriv, COMP_RF, DBG_TRACE, @@ -68,7 +67,7 @@ if (bitmask != MASKDWORD) { originalvalue = rtl_read_dword(rtlpriv, regaddr); - bitshift = _rtl92ee_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); data = ((originalvalue & (~bitmask)) | (data << bitshift)); } @@ -92,7 +91,7 @@ spin_lock(&rtlpriv->locks.rf_lock); original_value = _rtl92ee_phy_rf_serial_read(hw , rfpath, regaddr); - bitshift = _rtl92ee_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); readback_value = (original_value & bitmask) >> bitshift; spin_unlock(&rtlpriv->locks.rf_lock); @@ -119,7 +118,7 @@ if (bitmask != RFREG_OFFSET_MASK) { original_value = _rtl92ee_phy_rf_serial_read(hw, rfpath, addr); - bitshift = _rtl92ee_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); data = (original_value & (~bitmask)) | (data << bitshift); } @@ -201,13 +200,6 @@ pphyreg->rf3wire_offset, data_and_addr); } -static u32 _rtl92ee_phy_calculate_bit_shift(u32 bitmask) -{ - u32 i = ffs(bitmask); - - return i ? i - 1 : 32; -} - bool rtl92ee_phy_mac_config(struct ieee80211_hw *hw) { return _rtl92ee_phy_config_mac_with_headerfile(hw); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/rtl8192se/phy.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtlwifi/rtl8192se/phy.c @@ -14,13 +14,6 @@ #include "hw.h" #include "table.h" -static u32 _rtl92s_phy_calculate_bit_shift(u32 bitmask) -{ - u32 i = ffs(bitmask); - - return i ? i - 1 : 32; -} - u32 rtl92s_phy_query_bb_reg(struct ieee80211_hw *hw, u32 regaddr, u32 bitmask) { struct rtl_priv *rtlpriv = rtl_priv(hw); @@ -30,7 +23,7 @@ regaddr, bitmask); originalvalue = rtl_read_dword(rtlpriv, regaddr); - bitshift = _rtl92s_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); returnvalue = (originalvalue & bitmask) >> bitshift; rtl_dbg(rtlpriv, COMP_RF, DBG_TRACE, "BBR MASK=0x%x Addr[0x%x]=0x%x\n", @@ -52,7 +45,7 @@ if (bitmask != MASKDWORD) { originalvalue = rtl_read_dword(rtlpriv, regaddr); - bitshift = _rtl92s_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); data = ((originalvalue & (~bitmask)) | (data << bitshift)); } @@ -160,7 +153,7 @@ original_value = _rtl92s_phy_rf_serial_read(hw, rfpath, regaddr); - bitshift = _rtl92s_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); readback_value = (original_value & bitmask) >> bitshift; spin_unlock(&rtlpriv->locks.rf_lock); @@ -191,7 +184,7 @@ if (bitmask != RFREG_OFFSET_MASK) { original_value = _rtl92s_phy_rf_serial_read(hw, rfpath, regaddr); - bitshift = _rtl92s_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); data = ((original_value & (~bitmask)) | (data << bitshift)); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/dm.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/dm.c @@ -466,7 +466,7 @@ } 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; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/phy.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/phy.c @@ -49,7 +49,7 @@ rfpath, regaddr); } - bitshift = rtl8723_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); readback_value = (original_value & bitmask) >> bitshift; spin_unlock(&rtlpriv->locks.rf_lock); @@ -80,7 +80,7 @@ original_value = rtl8723_phy_rf_serial_read(hw, rfpath, regaddr); - bitshift = rtl8723_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); data = ((original_value & (~bitmask)) | (data << bitshift)); @@ -89,7 +89,7 @@ rtl8723_phy_rf_serial_write(hw, rfpath, regaddr, data); } else { if (bitmask != RFREG_OFFSET_MASK) { - bitshift = rtl8723_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); data = ((original_value & (~bitmask)) | (data << bitshift)); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/rtl8723be/phy.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtlwifi/rtl8723be/phy.c @@ -41,7 +41,7 @@ spin_lock(&rtlpriv->locks.rf_lock); original_value = rtl8723_phy_rf_serial_read(hw, rfpath, regaddr); - bitshift = rtl8723_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); readback_value = (original_value & bitmask) >> bitshift; spin_unlock(&rtlpriv->locks.rf_lock); @@ -68,7 +68,7 @@ if (bitmask != RFREG_OFFSET_MASK) { original_value = rtl8723_phy_rf_serial_read(hw, path, regaddr); - bitshift = rtl8723_phy_calculate_bit_shift(bitmask); + bitshift = calculate_bit_shift(bitmask); data = ((original_value & (~bitmask)) | (data << bitshift)); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/wifi.h +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtlwifi/wifi.h @@ -3106,4 +3106,11 @@ return ieee80211_find_sta(mac->vif, mac_addr); } +static inline u32 calculate_bit_shift(u32 bitmask) +{ + if (WARN_ON_ONCE(!bitmask)) + return 0; + + return __ffs(bitmask); +} #endif only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/net/wireless/realtek/rtw88/debug.c +++ linux-xilinx-zynqmp-5.15.0/drivers/net/wireless/realtek/rtw88/debug.c @@ -1061,9 +1061,9 @@ #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) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/nvdimm/of_pmem.c +++ linux-xilinx-zynqmp-5.15.0/drivers/nvdimm/of_pmem.c @@ -30,7 +30,13 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/nvme/target/fabrics-cmd.c +++ linux-xilinx-zynqmp-5.15.0/drivers/nvme/target/fabrics-cmd.c @@ -206,6 +206,8 @@ 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 @@ 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) { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/nvme/target/trace.h +++ linux-xilinx-zynqmp-5.15.0/drivers/nvme/target/trace.h @@ -53,8 +53,7 @@ return; } - strncpy(name, req->ns->device_path, - min_t(size_t, DISK_NAME_LEN, strlen(req->ns->device_path))); + strscpy_pad(name, req->ns->device_path, DISK_NAME_LEN); } #endif only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/nvmem/imx-ocotp.c +++ linux-xilinx-zynqmp-5.15.0/drivers/nvmem/imx-ocotp.c @@ -485,7 +485,7 @@ }; 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 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, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/of/unittest-data/tests-phandle.dtsi +++ linux-xilinx-zynqmp-5.15.0/drivers/of/unittest-data/tests-phandle.dtsi @@ -38,6 +38,13 @@ phandle-map-pass-thru = <0x0 0xf0>; }; + provider5: provider5 { + #phandle-cells = <2>; + phandle-map = <2 7 &provider4 2 3>; + phandle-map-mask = <0xff 0xf>; + phandle-map-pass-thru = <0x0 0xf0>; + }; + consumer-a { phandle-list = <&provider1 1>, <&provider2 2 0>, @@ -64,7 +71,8 @@ <&provider4 4 0x100>, <&provider4 0 0x61>, <&provider0>, - <&provider4 19 0x20>; + <&provider4 19 0x20>, + <&provider5 2 7>; phandle-list-bad-phandle = <12345678 0 0>; phandle-list-bad-args = <&provider2 1 0>, <&provider4 0>; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/parport/parport_serial.c +++ linux-xilinx-zynqmp-5.15.0/drivers/parport/parport_serial.c @@ -65,6 +65,10 @@ sunix_5069a, sunix_5079a, sunix_5099a, + brainboxes_uc257, + brainboxes_is300, + brainboxes_uc414, + brainboxes_px263, }; /* each element directly indexed from enum list, above */ @@ -158,6 +162,10 @@ /* sunix_5069a */ { 1, { { 1, 2 }, } }, /* sunix_5079a */ { 1, { { 1, 2 }, } }, /* sunix_5099a */ { 1, { { 1, 2 }, } }, + /* brainboxes_uc257 */ { 1, { { 3, -1 }, } }, + /* brainboxes_is300 */ { 1, { { 3, -1 }, } }, + /* brainboxes_uc414 */ { 1, { { 3, -1 }, } }, + /* brainboxes_px263 */ { 1, { { 3, -1 }, } }, }; static struct pci_device_id parport_serial_pci_tbl[] = { @@ -277,6 +285,38 @@ { PCI_VENDOR_ID_SUNIX, PCI_DEVICE_ID_SUNIX_1999, PCI_VENDOR_ID_SUNIX, 0x0104, 0, 0, sunix_5099a }, + /* Brainboxes UC-203 */ + { PCI_VENDOR_ID_INTASHIELD, 0x0bc1, + PCI_ANY_ID, PCI_ANY_ID, 0, 0, brainboxes_uc257 }, + { PCI_VENDOR_ID_INTASHIELD, 0x0bc2, + PCI_ANY_ID, PCI_ANY_ID, 0, 0, brainboxes_uc257 }, + + /* Brainboxes UC-257 */ + { PCI_VENDOR_ID_INTASHIELD, 0x0861, + PCI_ANY_ID, PCI_ANY_ID, 0, 0, brainboxes_uc257 }, + { PCI_VENDOR_ID_INTASHIELD, 0x0862, + PCI_ANY_ID, PCI_ANY_ID, 0, 0, brainboxes_uc257 }, + { PCI_VENDOR_ID_INTASHIELD, 0x0863, + PCI_ANY_ID, PCI_ANY_ID, 0, 0, brainboxes_uc257 }, + + /* Brainboxes UC-414 */ + { PCI_VENDOR_ID_INTASHIELD, 0x0e61, + PCI_ANY_ID, PCI_ANY_ID, 0, 0, brainboxes_uc414 }, + + /* Brainboxes UC-475 */ + { PCI_VENDOR_ID_INTASHIELD, 0x0981, + PCI_ANY_ID, PCI_ANY_ID, 0, 0, brainboxes_uc257 }, + { PCI_VENDOR_ID_INTASHIELD, 0x0982, + PCI_ANY_ID, PCI_ANY_ID, 0, 0, brainboxes_uc257 }, + + /* Brainboxes IS-300/IS-500 */ + { PCI_VENDOR_ID_INTASHIELD, 0x0da0, + PCI_ANY_ID, PCI_ANY_ID, 0, 0, brainboxes_is300 }, + + /* Brainboxes PX-263/PX-295 */ + { PCI_VENDOR_ID_INTASHIELD, 0x402c, + PCI_ANY_ID, PCI_ANY_ID, 0, 0, brainboxes_px263 }, + { 0, } /* terminate list */ }; MODULE_DEVICE_TABLE(pci,parport_serial_pci_tbl); @@ -542,6 +582,30 @@ .base_baud = 921600, .uart_offset = 0x8, }, + [brainboxes_uc257] = { + .flags = FL_BASE2, + .num_ports = 2, + .base_baud = 115200, + .uart_offset = 8, + }, + [brainboxes_is300] = { + .flags = FL_BASE2, + .num_ports = 1, + .base_baud = 115200, + .uart_offset = 8, + }, + [brainboxes_uc414] = { + .flags = FL_BASE2, + .num_ports = 4, + .base_baud = 115200, + .uart_offset = 8, + }, + [brainboxes_px263] = { + .flags = FL_BASE2, + .num_ports = 4, + .base_baud = 921600, + .uart_offset = 8, + }, }; struct parport_serial_private { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/pci/controller/dwc/pci-exynos.c +++ linux-xilinx-zynqmp-5.15.0/drivers/pci/controller/dwc/pci-exynos.c @@ -377,7 +377,7 @@ 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 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, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/pci/controller/dwc/pci-keystone.c +++ linux-xilinx-zynqmp-5.15.0/drivers/pci/controller/dwc/pci-keystone.c @@ -1080,7 +1080,7 @@ { }, }; -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; @@ -1200,7 +1200,16 @@ goto err_link; } + /* Obtain references to the PHYs */ + for (i = 0; i < num_lanes; i++) + phy_pm_runtime_get_sync(ks_pcie->phy[i]); + ret = ks_pcie_enable_phy(ks_pcie); + + /* Release references to the PHYs */ + for (i = 0; i < num_lanes; i++) + phy_pm_runtime_put_sync(ks_pcie->phy[i]); + if (ret) { dev_err(dev, "failed to enable phy\n"); goto err_link; @@ -1284,7 +1293,7 @@ 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 +1309,9 @@ 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), only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/pcmcia/ds.c +++ linux-xilinx-zynqmp-5.15.0/drivers/pcmcia/ds.c @@ -513,9 +513,6 @@ /* 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 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/perf/hisilicon/hisi_uncore_pa_pmu.c +++ linux-xilinx-zynqmp-5.15.0/drivers/perf/hisilicon/hisi_uncore_pa_pmu.c @@ -434,8 +434,8 @@ 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; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/perf/hisilicon/hisi_uncore_sllc_pmu.c +++ linux-xilinx-zynqmp-5.15.0/drivers/perf/hisilicon/hisi_uncore_sllc_pmu.c @@ -463,8 +463,8 @@ 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; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/phy/renesas/phy-rcar-gen3-usb2.c +++ linux-xilinx-zynqmp-5.15.0/drivers/phy/renesas/phy-rcar-gen3-usb2.c @@ -675,8 +675,6 @@ channel->irq = platform_get_irq_optional(pdev, 0); channel->dr_mode = rcar_gen3_get_dr_mode(dev->of_node); if (channel->dr_mode != USB_DR_MODE_UNKNOWN) { - int ret; - channel->is_otg_channel = true; channel->uses_otg_pins = !of_property_read_bool(dev->of_node, "renesas,no-otg-pins"); @@ -740,8 +738,6 @@ ret = PTR_ERR(provider); goto error; } else if (channel->is_otg_channel) { - int ret; - ret = device_create_file(dev, &dev_attr_role); if (ret < 0) goto error; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/pinctrl/cirrus/Kconfig +++ linux-xilinx-zynqmp-5.15.0/drivers/pinctrl/cirrus/Kconfig @@ -1,7 +1,8 @@ # SPDX-License-Identifier: GPL-2.0-only config PINCTRL_LOCHNAGAR tristate "Cirrus Logic Lochnagar pinctrl driver" - depends on MFD_LOCHNAGAR + # Avoid clash caused by MIPS defining RST, which is used in the driver + depends on MFD_LOCHNAGAR && !MIPS select GPIOLIB select PINMUX select PINCONF only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/platform/mellanox/mlxbf-bootctl.c +++ linux-xilinx-zynqmp-5.15.0/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 @@ { 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 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; - - lc_state &= - MLXBF_BOOTCTL_SB_TEST_MASK | MLXBF_BOOTCTL_SB_SECURE_MASK; + status_bits = mlxbf_bootctl_smc(MLXBF_BOOTCTL_GET_TBB_FUSE_STATUS, + MLXBF_BOOTCTL_FUSE_STATUS_LIFECYCLE); + if (status_bits < 0) + return status_bits; + + 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]); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/platform/surface/surface_platform_profile.c +++ linux-xilinx-zynqmp-5.15.0/drivers/platform/surface/surface_platform_profile.c @@ -159,8 +159,7 @@ 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) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/platform/x86/asus-wmi.h +++ linux-xilinx-zynqmp-5.15.0/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 @@ 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 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/platform/x86/intel/telemetry/core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/platform/x86/intel/telemetry/core.c @@ -102,7 +102,7 @@ /** * telemetry_update_events() - Update telemetry Configuration * @pss_evtconfig: PSS related config. No change if num_evts = 0. - * @pss_evtconfig: IOSS related config. No change if num_evts = 0. + * @ioss_evtconfig: IOSS related config. No change if num_evts = 0. * * This API updates the IOSS & PSS Telemetry configuration. Old config * is overwritten. Call telemetry_reset_events when logging is over @@ -176,7 +176,7 @@ /** * telemetry_get_eventconfig() - Returns the pss and ioss events enabled * @pss_evtconfig: Pointer to PSS related configuration. - * @pss_evtconfig: Pointer to IOSS related configuration. + * @ioss_evtconfig: Pointer to IOSS related configuration. * @pss_len: Number of u32 elements allocated for pss_evtconfig array * @ioss_len: Number of u32 elements allocated for ioss_evtconfig array * only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/platform/x86/intel/vbtn.c +++ linux-xilinx-zynqmp-5.15.0/drivers/platform/x86/intel/vbtn.c @@ -73,10 +73,10 @@ bool wakeup_mode; }; -static void detect_tablet_mode(struct platform_device *device) +static void detect_tablet_mode(struct device *dev) { - struct intel_vbtn_priv *priv = dev_get_drvdata(&device->dev); - acpi_handle handle = ACPI_HANDLE(&device->dev); + struct intel_vbtn_priv *priv = dev_get_drvdata(dev); + acpi_handle handle = ACPI_HANDLE(dev); unsigned long long vgbs; acpi_status status; int m; @@ -89,6 +89,8 @@ input_report_switch(priv->switches_dev, SW_TABLET_MODE, m); m = (vgbs & VGBS_DOCK_MODE_FLAG) ? 1 : 0; input_report_switch(priv->switches_dev, SW_DOCK, m); + + input_sync(priv->switches_dev); } /* @@ -134,7 +136,7 @@ priv->switches_dev->id.bustype = BUS_HOST; if (priv->has_switches) { - detect_tablet_mode(device); + detect_tablet_mode(&device->dev); ret = input_register_device(priv->switches_dev); if (ret) @@ -198,6 +200,9 @@ autorelease = val && (!ke_rel || ke_rel->type == KE_IGNORE); sparse_keymap_report_event(input_dev, event, val, autorelease); + + /* Some devices need this to report further events */ + acpi_evaluate_object(handle, "VBDL", NULL, NULL); } /* @@ -358,7 +363,13 @@ static int intel_vbtn_pm_resume(struct device *dev) { + struct intel_vbtn_priv *priv = dev_get_drvdata(dev); + intel_vbtn_pm_complete(dev); + + if (priv->has_switches) + detect_tablet_mode(dev); + return 0; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/pnp/pnpacpi/rsparser.c +++ linux-xilinx-zynqmp-5.15.0/drivers/pnp/pnpacpi/rsparser.c @@ -151,13 +151,13 @@ static void pnpacpi_parse_allocated_vendor(struct pnp_dev *dev, struct acpi_resource_vendor_typed *vendor) { - if (vendor_resource_matches(dev, vendor, &hp_ccsr_uuid, 16)) { - u64 start, length; + struct { u64 start, length; } range; - memcpy(&start, vendor->byte_data, sizeof(start)); - memcpy(&length, vendor->byte_data + 8, sizeof(length)); - - pnp_add_mem_resource(dev, start, start + length - 1, 0); + if (vendor_resource_matches(dev, vendor, &hp_ccsr_uuid, + sizeof(range))) { + memcpy(&range, vendor->byte_data, sizeof(range)); + pnp_add_mem_resource(dev, range.start, range.start + + range.length - 1, 0); } } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/power/supply/bq256xx_charger.c +++ linux-xilinx-zynqmp-5.15.0/drivers/power/supply/bq256xx_charger.c @@ -1514,13 +1514,16 @@ wd_reg_val = i; break; } - if (bq->watchdog_timer > bq256xx_watchdog_time[i] && + if (i + 1 < BQ256XX_NUM_WD_VAL && + bq->watchdog_timer > bq256xx_watchdog_time[i] && bq->watchdog_timer < bq256xx_watchdog_time[i + 1]) wd_reg_val = i; } ret = regmap_update_bits(bq->regmap, BQ256XX_CHARGER_CONTROL_1, BQ256XX_WATCHDOG_MASK, wd_reg_val << BQ256XX_WDT_BIT_SHIFT); + if (ret) + return ret; ret = power_supply_get_battery_info(bq->charger, &bat_info); if (ret) { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/power/supply/cw2015_battery.c +++ linux-xilinx-zynqmp-5.15.0/drivers/power/supply/cw2015_battery.c @@ -490,7 +490,7 @@ case POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW: if (cw_battery_valid_time_to_empty(cw_bat)) - val->intval = cw_bat->time_to_empty; + val->intval = cw_bat->time_to_empty * 60; else val->intval = 0; break; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/ptp/ptp_chardev.c +++ linux-xilinx-zynqmp-5.15.0/drivers/ptp/ptp_chardev.c @@ -487,7 +487,8 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/ptp/ptp_private.h +++ linux-xilinx-zynqmp-5.15.0/drivers/ptp/ptp_private.h @@ -74,9 +74,13 @@ * 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; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/pwm/pwm-brcmstb.c +++ linux-xilinx-zynqmp-5.15.0/drivers/pwm/pwm-brcmstb.c @@ -294,7 +294,7 @@ { struct brcmstb_pwm *p = dev_get_drvdata(dev); - clk_disable(p->clk); + clk_disable_unprepare(p->clk); return 0; } @@ -303,7 +303,7 @@ { struct brcmstb_pwm *p = dev_get_drvdata(dev); - clk_enable(p->clk); + clk_prepare_enable(p->clk); return 0; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/pwm/pwm-jz4740.c +++ linux-xilinx-zynqmp-5.15.0/drivers/pwm/pwm-jz4740.c @@ -60,9 +60,10 @@ snprintf(name, sizeof(name), "timer%u", pwm->hwpwm); clk = clk_get(chip->dev, name); - if (IS_ERR(clk)) - return dev_err_probe(chip->dev, PTR_ERR(clk), - "Failed to get clock\n"); + if (IS_ERR(clk)) { + dev_err(chip->dev, "error %pe: Failed to get clock\n", clk); + return PTR_ERR(clk); + } err = clk_prepare_enable(clk); if (err < 0) { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/pwm/pwm-sti.c +++ linux-xilinx-zynqmp-5.15.0/drivers/pwm/pwm-sti.c @@ -79,6 +79,7 @@ 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 @@ { 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 @@ 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 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/pwm/pwm-stm32.c +++ linux-xilinx-zynqmp-5.15.0/drivers/pwm/pwm-stm32.c @@ -115,14 +115,14 @@ int ret; /* Ensure registers have been updated, enable counter and capture */ - regmap_update_bits(priv->regmap, TIM_EGR, TIM_EGR_UG, TIM_EGR_UG); - regmap_update_bits(priv->regmap, TIM_CR1, TIM_CR1_CEN, TIM_CR1_CEN); + regmap_set_bits(priv->regmap, TIM_EGR, TIM_EGR_UG); + regmap_set_bits(priv->regmap, TIM_CR1, TIM_CR1_CEN); /* Use cc1 or cc3 DMA resp for PWM input channels 1 & 2 or 3 & 4 */ dma_id = pwm->hwpwm < 2 ? STM32_TIMERS_DMA_CH1 : STM32_TIMERS_DMA_CH3; ccen = pwm->hwpwm < 2 ? TIM_CCER_CC12E : TIM_CCER_CC34E; ccr = pwm->hwpwm < 2 ? TIM_CCR1 : TIM_CCR3; - regmap_update_bits(priv->regmap, TIM_CCER, ccen, ccen); + regmap_set_bits(priv->regmap, TIM_CCER, ccen); /* * Timer DMA burst mode. Request 2 registers, 2 bursts, to get both @@ -160,8 +160,8 @@ } stop: - regmap_update_bits(priv->regmap, TIM_CCER, ccen, 0); - regmap_update_bits(priv->regmap, TIM_CR1, TIM_CR1_CEN, 0); + regmap_clear_bits(priv->regmap, TIM_CCER, ccen); + regmap_clear_bits(priv->regmap, TIM_CR1, TIM_CR1_CEN); return ret; } @@ -359,7 +359,7 @@ regmap_write(priv->regmap, TIM_PSC, prescaler); regmap_write(priv->regmap, TIM_ARR, prd - 1); - regmap_update_bits(priv->regmap, TIM_CR1, TIM_CR1_ARPE, TIM_CR1_ARPE); + regmap_set_bits(priv->regmap, TIM_CR1, TIM_CR1_ARPE); /* Calculate the duty cycles */ dty = prd * duty_ns; @@ -377,7 +377,7 @@ else regmap_update_bits(priv->regmap, TIM_CCMR2, mask, ccmr); - regmap_update_bits(priv->regmap, TIM_BDTR, TIM_BDTR_MOE, TIM_BDTR_MOE); + regmap_set_bits(priv->regmap, TIM_BDTR, TIM_BDTR_MOE); return 0; } @@ -411,13 +411,13 @@ if (priv->have_complementary_output) mask |= TIM_CCER_CC1NE << (ch * 4); - regmap_update_bits(priv->regmap, TIM_CCER, mask, mask); + regmap_set_bits(priv->regmap, TIM_CCER, mask); /* Make sure that registers are updated */ - regmap_update_bits(priv->regmap, TIM_EGR, TIM_EGR_UG, TIM_EGR_UG); + regmap_set_bits(priv->regmap, TIM_EGR, TIM_EGR_UG); /* Enable controller */ - regmap_update_bits(priv->regmap, TIM_CR1, TIM_CR1_CEN, TIM_CR1_CEN); + regmap_set_bits(priv->regmap, TIM_CR1, TIM_CR1_CEN); return 0; } @@ -431,11 +431,11 @@ if (priv->have_complementary_output) mask |= TIM_CCER_CC1NE << (ch * 4); - regmap_update_bits(priv->regmap, TIM_CCER, mask, 0); + regmap_clear_bits(priv->regmap, TIM_CCER, mask); /* When all channels are disabled, we can disable the controller */ if (!active_channels(priv)) - regmap_update_bits(priv->regmap, TIM_CR1, TIM_CR1_CEN, 0); + regmap_clear_bits(priv->regmap, TIM_CR1, TIM_CR1_CEN); clk_disable(priv->clk); } @@ -568,41 +568,30 @@ * If complementary bit doesn't exist writing 1 will have no * effect so we can detect it. */ - regmap_update_bits(priv->regmap, - TIM_CCER, TIM_CCER_CC1NE, TIM_CCER_CC1NE); + regmap_set_bits(priv->regmap, TIM_CCER, TIM_CCER_CC1NE); regmap_read(priv->regmap, TIM_CCER, &ccer); - regmap_update_bits(priv->regmap, TIM_CCER, TIM_CCER_CC1NE, 0); + regmap_clear_bits(priv->regmap, TIM_CCER, TIM_CCER_CC1NE); priv->have_complementary_output = (ccer != 0); } -static int stm32_pwm_detect_channels(struct stm32_pwm *priv) +static unsigned int stm32_pwm_detect_channels(struct stm32_pwm *priv, + unsigned int *num_enabled) { - u32 ccer; - int npwm = 0; + u32 ccer, ccer_backup; /* * If channels enable bits don't exist writing 1 will have no * effect so we can detect and count them. */ - regmap_update_bits(priv->regmap, - TIM_CCER, TIM_CCER_CCXE, TIM_CCER_CCXE); + regmap_read(priv->regmap, TIM_CCER, &ccer_backup); + regmap_set_bits(priv->regmap, TIM_CCER, TIM_CCER_CCXE); regmap_read(priv->regmap, TIM_CCER, &ccer); - regmap_update_bits(priv->regmap, TIM_CCER, TIM_CCER_CCXE, 0); - - if (ccer & TIM_CCER_CC1E) - npwm++; + regmap_write(priv->regmap, TIM_CCER, ccer_backup); - if (ccer & TIM_CCER_CC2E) - npwm++; + *num_enabled = hweight32(ccer_backup & TIM_CCER_CCXE); - if (ccer & TIM_CCER_CC3E) - npwm++; - - if (ccer & TIM_CCER_CC4E) - npwm++; - - return npwm; + return hweight32(ccer & TIM_CCER_CCXE); } static int stm32_pwm_probe(struct platform_device *pdev) @@ -611,6 +600,8 @@ struct device_node *np = dev->of_node; struct stm32_timers *ddata = dev_get_drvdata(pdev->dev.parent); struct stm32_pwm *priv; + unsigned int num_enabled; + unsigned int i; int ret; priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL); @@ -633,7 +624,11 @@ priv->chip.dev = dev; priv->chip.ops = &stm32pwm_ops; - priv->chip.npwm = stm32_pwm_detect_channels(priv); + priv->chip.npwm = stm32_pwm_detect_channels(priv, &num_enabled); + + /* Initialize clock refcount to number of enabled PWM channels. */ + for (i = 0; i < num_enabled; i++) + clk_enable(priv->clk); ret = pwmchip_add(&priv->chip); if (ret < 0) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/reset/core.c +++ linux-xilinx-zynqmp-5.15.0/drivers/reset/core.c @@ -806,6 +806,9 @@ { lockdep_assert_held(&reset_list_mutex); + if (IS_ERR_OR_NULL(rstc)) + return; + kref_put(&rstc->refcnt, __reset_control_release); } @@ -1016,11 +1019,8 @@ void reset_control_bulk_put(int num_rstcs, struct reset_control_bulk_data *rstcs) { mutex_lock(&reset_list_mutex); - while (num_rstcs--) { - if (IS_ERR_OR_NULL(rstcs[num_rstcs].rstc)) - continue; + while (num_rstcs--) __reset_control_put_internal(rstcs[num_rstcs].rstc); - } mutex_unlock(&reset_list_mutex); } EXPORT_SYMBOL_GPL(reset_control_bulk_put); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/reset/hisilicon/hi6220_reset.c +++ linux-xilinx-zynqmp-5.15.0/drivers/reset/hisilicon/hi6220_reset.c @@ -164,7 +164,7 @@ if (!data) return -ENOMEM; - type = (enum hi6220_reset_ctrl_type)of_device_get_match_data(dev); + type = (uintptr_t)of_device_get_match_data(dev); regmap = syscon_node_to_regmap(np); if (IS_ERR(regmap)) { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/rpmsg/rpmsg_internal.h +++ linux-xilinx-zynqmp-5.15.0/drivers/rpmsg/rpmsg_internal.h @@ -90,10 +90,7 @@ */ 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 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/rpmsg/rpmsg_ns.c +++ linux-xilinx-zynqmp-5.15.0/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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/rtc/rtc-pcf85363.c +++ linux-xilinx-zynqmp-5.15.0/drivers/rtc/rtc-pcf85363.c @@ -403,7 +403,7 @@ 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, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/s390/block/scm_blk.c +++ linux-xilinx-zynqmp-5.15.0/drivers/s390/block/scm_blk.c @@ -18,6 +18,7 @@ #include #include #include +#include #include #include "scm_blk.h" @@ -131,7 +132,7 @@ for (i = 0; i < nr_requests_per_io && scmrq->request[i]; i++) { msb = &scmrq->aob->msb[i]; - aidaw = msb->data_addr; + aidaw = (u64)phys_to_virt(msb->data_addr); if ((msb->flags & MSB_FLAG_IDA) && aidaw && IS_ALIGNED(aidaw, PAGE_SIZE)) @@ -196,12 +197,12 @@ msb->scm_addr = scmdev->address + ((u64) blk_rq_pos(req) << 9); msb->oc = (rq_data_dir(req) == READ) ? MSB_OC_READ : MSB_OC_WRITE; msb->flags |= MSB_FLAG_IDA; - msb->data_addr = (u64) aidaw; + msb->data_addr = (u64)virt_to_phys(aidaw); rq_for_each_segment(bv, req, iter) { WARN_ON(bv.bv_offset); msb->blk_count += bv.bv_len >> 12; - aidaw->data_addr = (u64) page_address(bv.bv_page); + aidaw->data_addr = virt_to_phys(page_address(bv.bv_page)); aidaw++; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/scsi/arcmsr/arcmsr.h +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/arcmsr/arcmsr.h @@ -77,9 +77,13 @@ #ifndef PCI_DEVICE_ID_ARECA_1203 #define PCI_DEVICE_ID_ARECA_1203 0x1203 #endif +#ifndef PCI_DEVICE_ID_ARECA_1883 +#define PCI_DEVICE_ID_ARECA_1883 0x1883 +#endif #ifndef PCI_DEVICE_ID_ARECA_1884 #define PCI_DEVICE_ID_ARECA_1884 0x1884 #endif +#define PCI_DEVICE_ID_ARECA_1886_0 0x1886 #define PCI_DEVICE_ID_ARECA_1886 0x188A #define ARCMSR_HOURS (1000 * 60 * 60 * 4) #define ARCMSR_MINUTES (1000 * 60 * 60) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/scsi/arcmsr/arcmsr_hba.c +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/arcmsr/arcmsr_hba.c @@ -214,8 +214,12 @@ .driver_data = ACB_ADAPTER_TYPE_A}, {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1880), .driver_data = ACB_ADAPTER_TYPE_C}, + {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1883), + .driver_data = ACB_ADAPTER_TYPE_C}, {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1884), .driver_data = ACB_ADAPTER_TYPE_E}, + {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1886_0), + .driver_data = ACB_ADAPTER_TYPE_F}, {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1886), .driver_data = ACB_ADAPTER_TYPE_F}, {0, 0}, /* Terminating entry */ @@ -4710,9 +4714,11 @@ case PCI_DEVICE_ID_ARECA_1680: case PCI_DEVICE_ID_ARECA_1681: case PCI_DEVICE_ID_ARECA_1880: + case PCI_DEVICE_ID_ARECA_1883: case PCI_DEVICE_ID_ARECA_1884: type = "SAS/SATA"; break; + case PCI_DEVICE_ID_ARECA_1886_0: case PCI_DEVICE_ID_ARECA_1886: type = "NVMe/SAS/SATA"; break; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/scsi/fnic/fnic_debugfs.c +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/fnic/fnic_debugfs.c @@ -66,9 +66,10 @@ fc_trc_flag->fnic_trace = 2; fc_trc_flag->fc_trace = 3; fc_trc_flag->fc_clear = 4; + return 0; } - return 0; + return -ENOMEM; } /* only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/scsi/hisi_sas/hisi_sas.h +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/hisi_sas/hisi_sas.h @@ -35,7 +35,7 @@ #define HISI_SAS_QUEUE_SLOTS 4096 #define HISI_SAS_MAX_ITCT_ENTRIES 1024 #define HISI_SAS_MAX_DEVICES HISI_SAS_MAX_ITCT_ENTRIES -#define HISI_SAS_RESET_BIT 0 +#define HISI_SAS_RESETTING_BIT 0 #define HISI_SAS_REJECT_CMD_BIT 1 #define HISI_SAS_PM_BIT 2 #define HISI_SAS_HW_FAULT_BIT 3 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/scsi/hisi_sas/hisi_sas_v1_hw.c +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/hisi_sas/hisi_sas_v1_hw.c @@ -1422,7 +1422,7 @@ goto end; } - if (!test_bit(HISI_SAS_RESET_BIT, &hisi_hba->flags)) + if (!test_bit(HISI_SAS_RESETTING_BIT, &hisi_hba->flags)) sas_notify_port_event(sas_phy, PORTE_BROADCAST_RCVD, GFP_ATOMIC); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/scsi/isci/request.c +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/isci/request.c @@ -3390,7 +3390,7 @@ return SCI_FAILURE; } - return SCI_SUCCESS; + return status; } static struct isci_request *isci_request_from_tag(struct isci_host *ihost, u16 tag) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/scsi/libfc/fc_fcp.c +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/libfc/fc_fcp.c @@ -270,6 +270,11 @@ if (!fsp->seq_ptr) return -EINVAL; + if (fsp->state & FC_SRB_ABORT_PENDING) { + FC_FCP_DBG(fsp, "abort already pending\n"); + return -EBUSY; + } + per_cpu_ptr(fsp->lp->stats, get_cpu())->FcpPktAborts++; put_cpu(); @@ -1681,7 +1686,7 @@ if (fsp->recov_retry++ < FC_MAX_RECOV_RETRY) fc_fcp_rec(fsp); else - fc_fcp_recovery(fsp, FC_ERROR); + fc_fcp_recovery(fsp, FC_TIMED_OUT); break; } fc_fcp_unlock_pkt(fsp); @@ -1700,11 +1705,12 @@ fsp->status_code = code; fsp->cdb_status = 0; fsp->io_status = 0; - /* - * if this fails then we let the scsi command timer fire and - * scsi-ml escalate. - */ - fc_fcp_send_abort(fsp); + if (!fsp->cmd) + /* + * Only abort non-scsi commands; otherwise let the + * scsi command timer fire and scsi-ml escalate. + */ + fc_fcp_send_abort(fsp); } /** only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/scsi/libfc/fc_lport.c +++ linux-xilinx-zynqmp-5.15.0/drivers/scsi/libfc/fc_lport.c @@ -241,6 +241,12 @@ } 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/spi/spi-npcm-fiu.c +++ linux-xilinx-zynqmp-5.15.0/drivers/spi/spi-npcm-fiu.c @@ -334,8 +334,9 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/spi/spi-ppc4xx.c +++ linux-xilinx-zynqmp-5.15.0/drivers/spi/spi-ppc4xx.c @@ -166,10 +166,8 @@ int scr; u8 cdm = 0; u32 speed; - u8 bits_per_word; /* Start with the generic configuration for this device. */ - bits_per_word = spi->bits_per_word; speed = spi->max_speed_hz; /* @@ -177,9 +175,6 @@ * the transfer to overwrite the generic configuration with zeros. */ if (t) { - if (t->bits_per_word) - bits_per_word = t->bits_per_word; - if (t->speed_hz) speed = min(t->speed_hz, spi->max_speed_hz); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/spi/spi-sh-msiof.c +++ linux-xilinx-zynqmp-5.15.0/drivers/spi/spi-sh-msiof.c @@ -30,12 +30,15 @@ #include +#define SH_MSIOF_FLAG_FIXED_DTDL_200 BIT(0) + struct sh_msiof_chipdata { u32 bits_per_word_mask; u16 tx_fifo_size; u16 rx_fifo_size; u16 ctlr_flags; u16 min_div_pow; + u32 flags; }; struct sh_msiof_spi_priv { @@ -1073,6 +1076,16 @@ .min_div_pow = 1, }; +static const struct sh_msiof_chipdata rcar_r8a7795_data = { + .bits_per_word_mask = SPI_BPW_MASK(8) | SPI_BPW_MASK(16) | + SPI_BPW_MASK(24) | SPI_BPW_MASK(32), + .tx_fifo_size = 64, + .rx_fifo_size = 64, + .ctlr_flags = SPI_CONTROLLER_MUST_TX, + .min_div_pow = 1, + .flags = SH_MSIOF_FLAG_FIXED_DTDL_200, +}; + static const struct of_device_id sh_msiof_match[] = { { .compatible = "renesas,sh-mobile-msiof", .data = &sh_data }, { .compatible = "renesas,msiof-r8a7743", .data = &rcar_gen2_data }, @@ -1083,6 +1096,7 @@ { .compatible = "renesas,msiof-r8a7793", .data = &rcar_gen2_data }, { .compatible = "renesas,msiof-r8a7794", .data = &rcar_gen2_data }, { .compatible = "renesas,rcar-gen2-msiof", .data = &rcar_gen2_data }, + { .compatible = "renesas,msiof-r8a7795", .data = &rcar_r8a7795_data }, { .compatible = "renesas,msiof-r8a7796", .data = &rcar_gen3_data }, { .compatible = "renesas,rcar-gen3-msiof", .data = &rcar_gen3_data }, { .compatible = "renesas,sh-msiof", .data = &sh_data }, /* Deprecated */ @@ -1279,6 +1293,9 @@ return -ENXIO; } + if (chipdata->flags & SH_MSIOF_FLAG_FIXED_DTDL_200) + info->dtdl = 200; + if (info->mode == MSIOF_SPI_SLAVE) ctlr = spi_alloc_slave(&pdev->dev, sizeof(struct sh_msiof_spi_priv)); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/staging/iio/impedance-analyzer/ad5933.c +++ linux-xilinx-zynqmp-5.15.0/drivers/staging/iio/impedance-analyzer/ad5933.c @@ -608,7 +608,7 @@ struct ad5933_state, work.work); struct iio_dev *indio_dev = i2c_get_clientdata(st->client); __be16 buf[2]; - int val[2]; + u16 val[2]; unsigned char status; int ret; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/staging/media/sunxi/cedrus/cedrus_hw.c +++ linux-xilinx-zynqmp-5.15.0/drivers/staging/media/sunxi/cedrus/cedrus_hw.c @@ -147,12 +147,12 @@ { 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 @@ 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 @@ 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; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/tty/hvc/hvcs.c +++ linux-xilinx-zynqmp-5.15.0/drivers/tty/hvc/hvcs.c @@ -52,6 +52,7 @@ #include #include +#include #include #include #include @@ -284,6 +285,7 @@ char p_location_code[HVCS_CLC_LENGTH + 1]; /* CLC + Null Term */ struct list_head next; /* list management */ struct vio_dev *vdev; + struct completion *destroyed; }; static LIST_HEAD(hvcs_structs); @@ -431,7 +433,7 @@ static DEVICE_ATTR(index, S_IRUGO, hvcs_index_show, NULL); -static struct attribute *hvcs_attrs[] = { +static struct attribute *hvcs_dev_attrs[] = { &dev_attr_partner_vtys.attr, &dev_attr_partner_clcs.attr, &dev_attr_current_vty.attr, @@ -440,9 +442,7 @@ NULL, }; -static struct attribute_group hvcs_attr_group = { - .attrs = hvcs_attrs, -}; +ATTRIBUTE_GROUPS(hvcs_dev); static ssize_t rescan_show(struct device_driver *ddp, char *buf) { @@ -467,6 +467,13 @@ static DRIVER_ATTR_RW(rescan); +static struct attribute *hvcs_attrs[] = { + &driver_attr_rescan.attr, + NULL, +}; + +ATTRIBUTE_GROUPS(hvcs); + static void hvcs_kick(void) { hvcs_kicked = 1; @@ -658,11 +665,13 @@ { struct hvcs_struct *hvcsd = container_of(p, struct hvcs_struct, port); struct vio_dev *vdev; + struct completion *comp; unsigned long flags; spin_lock(&hvcs_structs_lock); spin_lock_irqsave(&hvcsd->lock, flags); + comp = hvcsd->destroyed; /* the list_del poisons the pointers */ list_del(&(hvcsd->next)); @@ -682,15 +691,16 @@ hvcsd->p_unit_address = 0; hvcsd->p_partition_ID = 0; + hvcsd->destroyed = NULL; hvcs_return_index(hvcsd->index); memset(&hvcsd->p_location_code[0], 0x00, HVCS_CLC_LENGTH + 1); spin_unlock_irqrestore(&hvcsd->lock, flags); spin_unlock(&hvcs_structs_lock); - sysfs_remove_group(&vdev->dev.kobj, &hvcs_attr_group); - kfree(hvcsd); + if (comp) + complete(comp); } static const struct tty_port_operations hvcs_port_ops = { @@ -721,7 +731,6 @@ { struct hvcs_struct *hvcsd; int index, rc; - int retval; if (!dev || !id) { printk(KERN_ERR "HVCS: probed with invalid parameter.\n"); @@ -778,13 +787,6 @@ list_add_tail(&(hvcsd->next), &hvcs_structs); spin_unlock(&hvcs_structs_lock); - retval = sysfs_create_group(&dev->dev.kobj, &hvcs_attr_group); - if (retval) { - printk(KERN_ERR "HVCS: Can't create sysfs attrs for vty-server@%X\n", - hvcsd->vdev->unit_address); - return retval; - } - printk(KERN_INFO "HVCS: vty-server@%X added to the vio bus.\n", dev->unit_address); /* @@ -797,6 +799,7 @@ static void hvcs_remove(struct vio_dev *dev) { struct hvcs_struct *hvcsd = dev_get_drvdata(&dev->dev); + DECLARE_COMPLETION_ONSTACK(comp); unsigned long flags; struct tty_struct *tty; @@ -804,24 +807,22 @@ spin_lock_irqsave(&hvcsd->lock, flags); - tty = hvcsd->port.tty; + hvcsd->destroyed = ∁ + tty = tty_port_tty_get(&hvcsd->port); spin_unlock_irqrestore(&hvcsd->lock, flags); /* - * Let the last holder of this object cause it to be removed, which - * would probably be tty_hangup below. - */ - tty_port_put(&hvcsd->port); - - /* - * The hangup is a scheduled function which will auto chain call - * hvcs_hangup. The tty should always be valid at this time unless a + * The tty should always be valid at this time unless a * simultaneous tty close already cleaned up the hvcs_struct. */ - if (tty) - tty_hangup(tty); + if (tty) { + tty_vhangup(tty); + tty_kref_put(tty); + } + tty_port_put(&hvcsd->port); + wait_for_completion(&comp); printk(KERN_INFO "HVCS: vty-server@%X removed from the" " vio bus.\n", dev->unit_address); }; @@ -831,6 +832,10 @@ .probe = hvcs_probe, .remove = hvcs_remove, .name = hvcs_driver_name, + .driver = { + .groups = hvcs_groups, + .dev_groups = hvcs_dev_groups, + }, }; /* Only called from hvcs_get_pi please */ @@ -1171,7 +1176,10 @@ hvcsd = tty->driver_data; spin_lock_irqsave(&hvcsd->lock, flags); - if (--hvcsd->port.count == 0) { + if (hvcsd->port.count == 0) { + spin_unlock_irqrestore(&hvcsd->lock, flags); + return; + } else if (--hvcsd->port.count == 0) { vio_disable_interrupts(hvcsd->vdev); @@ -1215,12 +1223,9 @@ { struct hvcs_struct *hvcsd = tty->driver_data; unsigned long flags; - int temp_open_count; int irq; spin_lock_irqsave(&hvcsd->lock, flags); - /* Preserve this so that we know how many kref refs to put */ - temp_open_count = hvcsd->port.count; /* * Don't kref put inside the spinlock because the destruction @@ -1230,11 +1235,7 @@ vio_disable_interrupts(hvcsd->vdev); hvcsd->todo_mask = 0; - - /* I don't think the tty needs the hvcs_struct pointer after a hangup */ - tty->driver_data = NULL; hvcsd->port.tty = NULL; - hvcsd->port.count = 0; /* This will drop any buffered data on the floor which is OK in a hangup @@ -1247,21 +1248,6 @@ spin_unlock_irqrestore(&hvcsd->lock, flags); free_irq(irq, hvcsd); - - /* - * We need to kref_put() for every open_count we have since the - * tty_hangup() function doesn't invoke a close per open connection on a - * non-console device. - */ - while(temp_open_count) { - --temp_open_count; - /* - * The final put will trigger destruction of the hvcs_struct. - * NOTE: If this hangup was signaled from user space then the - * final put will never happen. - */ - tty_port_put(&hvcsd->port); - } } /* @@ -1525,13 +1511,6 @@ pr_info("HVCS: Driver registered.\n"); - /* This needs to be done AFTER the vio_register_driver() call or else - * the kobjects won't be initialized properly. - */ - rc = driver_create_file(&(hvcs_vio_driver.driver), &driver_attr_rescan); - if (rc) - pr_warn("HVCS: Failed to create rescan file (err %d)\n", rc); - return 0; } @@ -1556,8 +1535,6 @@ hvcs_pi_buff = NULL; spin_unlock(&hvcs_pi_lock); - driver_remove_file(&hvcs_vio_driver.driver, &driver_attr_rescan); - tty_unregister_driver(hvcs_tty_driver); hvcs_free_index_list(); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/tty/serial/8250/8250_early.c +++ linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/8250/8250_early.c @@ -199,6 +199,7 @@ 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 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/tty/serial/max310x.c +++ linux-xilinx-zynqmp-5.15.0/drivers/tty/serial/max310x.c @@ -235,6 +235,10 @@ #define MAX310x_REV_MASK (0xf8) #define MAX310X_WRITE_BIT 0x80 +/* Crystal-related definitions */ +#define MAX310X_XTAL_WAIT_RETRIES 20 /* Number of retries */ +#define MAX310X_XTAL_WAIT_DELAY_MS 10 /* Delay between retries */ + /* MAX3107 specific */ #define MAX3107_REV_ID (0xa0) @@ -552,7 +556,7 @@ return 1; } -static u32 max310x_set_ref_clk(struct device *dev, struct max310x_port *s, +static s32 max310x_set_ref_clk(struct device *dev, struct max310x_port *s, unsigned long freq, bool xtal) { unsigned int div, clksrc, pllcfg = 0; @@ -610,12 +614,20 @@ /* Wait for crystal */ if (xtal) { - unsigned int val; - msleep(10); - regmap_read(s->regmap, MAX310X_STS_IRQSTS_REG, &val); - if (!(val & MAX310X_STS_CLKREADY_BIT)) { - dev_warn(dev, "clock is not stable yet\n"); - } + bool stable = false; + unsigned int try = 0, val = 0; + + do { + msleep(MAX310X_XTAL_WAIT_DELAY_MS); + regmap_read(s->regmap, MAX310X_STS_IRQSTS_REG, &val); + + if (val & MAX310X_STS_CLKREADY_BIT) + stable = true; + } while (!stable && (++try < MAX310X_XTAL_WAIT_RETRIES)); + + if (!stable) + return dev_err_probe(dev, -EAGAIN, + "clock is not stable\n"); } return bestfreq; @@ -1255,7 +1267,7 @@ { int i, ret, fmin, fmax, freq; struct max310x_port *s; - u32 uartclk = 0; + s32 uartclk = 0; bool xtal; if (IS_ERR(regmap)) @@ -1335,6 +1347,11 @@ } uartclk = max310x_set_ref_clk(dev, s, freq, xtal); + if (uartclk < 0) { + ret = uartclk; + goto out_uart; + } + dev_dbg(dev, "Reference clock set to %i Hz\n", uartclk); for (i = 0; i < devtype->nr; i++) { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/tty/tty_jobctrl.c +++ linux-xilinx-zynqmp-5.15.0/drivers/tty/tty_jobctrl.c @@ -300,12 +300,7 @@ 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 @@ 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)); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/tty/vcc.c +++ linux-xilinx-zynqmp-5.15.0/drivers/tty/vcc.c @@ -578,18 +578,22 @@ 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 @@ goto unreg_tty; } port->domain = kstrdup(domain, GFP_KERNEL); + if (!port->domain) { + rv = -ENOMEM; + goto unreg_tty; + } + mdesc_release(hp); @@ -652,8 +661,9 @@ vcc_table_remove(port->index); free_ldc: vio_ldc_free(&port->vio); -free_port: +free_name: kfree(name); +free_port: kfree(port); return rv; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/usb/dwc2/hcd_intr.c +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/dwc2/hcd_intr.c @@ -2045,15 +2045,17 @@ { 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 @@ 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 @@ return; } - chan->hcint = hcint; - hcint &= hcintmsk; + chan->hcint = hcintraw; /* * If the channel was halted due to a dequeue, the qtd list might only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/usb/host/xhci-mtk.h +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/host/xhci-mtk.h @@ -161,6 +161,8 @@ struct regmap *uwk; u32 uwk_reg_base; u32 uwk_vers; + /* quirk */ + u32 rxfifo_depth; }; static inline struct xhci_hcd_mtk *hcd_to_mtk(struct usb_hcd *hcd) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/usb/storage/unusual_cypress.h +++ linux-xilinx-zynqmp-5.15.0/drivers/usb/storage/unusual_cypress.h @@ -19,7 +19,7 @@ "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), only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/video/fbdev/aty/atyfb_base.c +++ linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/aty/atyfb_base.c @@ -3447,11 +3447,15 @@ } 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/video/fbdev/broadsheetfb.c +++ linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/broadsheetfb.c @@ -929,13 +929,11 @@ } /* this is called back from the deferred io workqueue */ -static void broadsheetfb_dpy_deferred_io(struct fb_info *info, - struct list_head *pagelist) +static void broadsheetfb_dpy_deferred_io(struct fb_info *info, struct list_head *pagereflist) { u16 y1 = 0, h = 0; int prev_index = -1; - struct page *cur; - struct fb_deferred_io *fbdefio = info->fbdefio; + struct fb_deferred_io_pageref *pageref; int h_inc; u16 yres = info->var.yres; u16 xres = info->var.xres; @@ -944,7 +942,8 @@ h_inc = DIV_ROUND_UP(PAGE_SIZE , xres); /* walk the written page list and swizzle the data */ - list_for_each_entry(cur, &fbdefio->pagelist, lru) { + list_for_each_entry(pageref, pagereflist, list) { + struct page *cur = pageref->page; if (prev_index < 0) { /* just starting so assign first page */ y1 = (cur->index << PAGE_SHIFT) / xres; @@ -1058,8 +1057,9 @@ }; static struct fb_deferred_io broadsheetfb_defio = { - .delay = HZ/4, - .deferred_io = broadsheetfb_dpy_deferred_io, + .delay = HZ/4, + .sort_pagereflist = true, + .deferred_io = broadsheetfb_dpy_deferred_io, }; static int broadsheetfb_probe(struct platform_device *dev) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/video/fbdev/core/fb_defio.c +++ linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/core/fb_defio.c @@ -36,6 +36,60 @@ return page; } +static struct fb_deferred_io_pageref *fb_deferred_io_pageref_get(struct fb_info *info, + unsigned long offset, + struct page *page) +{ + struct fb_deferred_io *fbdefio = info->fbdefio; + struct list_head *pos = &fbdefio->pagereflist; + unsigned long pgoff = offset >> PAGE_SHIFT; + struct fb_deferred_io_pageref *pageref, *cur; + + if (WARN_ON_ONCE(pgoff >= info->npagerefs)) + return NULL; /* incorrect allocation size */ + + /* 1:1 mapping between pageref and page offset */ + pageref = &info->pagerefs[pgoff]; + + /* + * This check is to catch the case where a new process could start + * writing to the same page through a new PTE. This new access + * can cause a call to .page_mkwrite even if the original process' + * PTE is marked writable. + */ + if (!list_empty(&pageref->list)) + goto pageref_already_added; + + pageref->page = page; + pageref->offset = pgoff << PAGE_SHIFT; + + if (unlikely(fbdefio->sort_pagereflist)) { + /* + * We loop through the list of pagerefs before adding in + * order to keep the pagerefs sorted. This has significant + * overhead of O(n^2) with n being the number of written + * pages. If possible, drivers should try to work with + * unsorted page lists instead. + */ + list_for_each_entry(cur, &fbdefio->pagereflist, list) { + if (cur->offset > pageref->offset) + break; + } + pos = &cur->list; + } + + list_add_tail(&pageref->list, pos); + +pageref_already_added: + return pageref; +} + +static void fb_deferred_io_pageref_put(struct fb_deferred_io_pageref *pageref, + struct fb_info *info) +{ + list_del_init(&pageref->list); +} + /* this is to find and return the vmalloc-ed fb pages */ static vm_fault_t fb_deferred_io_fault(struct vm_fault *vmf) { @@ -59,7 +113,7 @@ printk(KERN_ERR "no mapping available\n"); BUG_ON(!page->mapping); - page->index = vmf->pgoff; + page->index = vmf->pgoff; /* for page_mkclean() */ vmf->page = page; return 0; @@ -78,11 +132,7 @@ return 0; inode_lock(inode); - /* Kill off the delayed work */ - cancel_delayed_work_sync(&info->deferred_work); - - /* Run it immediately */ - schedule_delayed_work(&info->deferred_work, 0); + flush_delayed_work(&info->deferred_work); inode_unlock(inode); return 0; @@ -95,7 +145,11 @@ struct page *page = vmf->page; struct fb_info *info = vmf->vma->vm_private_data; struct fb_deferred_io *fbdefio = info->fbdefio; - struct page *cur; + struct fb_deferred_io_pageref *pageref; + unsigned long offset; + vm_fault_t ret; + + offset = (vmf->address - vmf->vma->vm_start); /* this is a callback we get when userspace first tries to write to the page. we schedule a workqueue. that workqueue @@ -109,9 +163,15 @@ mutex_lock(&fbdefio->lock); /* first write in this cycle, notify the driver */ - if (fbdefio->first_io && list_empty(&fbdefio->pagelist)) + if (fbdefio->first_io && list_empty(&fbdefio->pagereflist)) fbdefio->first_io(info); + pageref = fb_deferred_io_pageref_get(info, offset, page); + if (WARN_ON_ONCE(!pageref)) { + ret = VM_FAULT_OOM; + goto err_mutex_unlock; + } + /* * We want the page to remain locked from ->page_mkwrite until * the PTE is marked dirty to avoid page_mkclean() being called @@ -120,30 +180,17 @@ * Do this by locking the page here and informing the caller * about it with VM_FAULT_LOCKED. */ - lock_page(page); - - /* we loop through the pagelist before adding in order - to keep the pagelist sorted */ - list_for_each_entry(cur, &fbdefio->pagelist, lru) { - /* this check is to catch the case where a new - process could start writing to the same page - through a new pte. this new access can cause the - mkwrite even when the original ps's pte is marked - writable */ - if (unlikely(cur == page)) - goto page_already_added; - else if (cur->index > page->index) - break; - } + lock_page(pageref->page); - list_add_tail(&page->lru, &cur->lru); - -page_already_added: mutex_unlock(&fbdefio->lock); /* come back after delay to process the deferred IO */ schedule_delayed_work(&info->deferred_work, fbdefio->delay); return VM_FAULT_LOCKED; + +err_mutex_unlock: + mutex_unlock(&fbdefio->lock); + return ret; } static const struct vm_operations_struct fb_deferred_io_vm_ops = { @@ -175,40 +222,65 @@ /* workqueue callback */ static void fb_deferred_io_work(struct work_struct *work) { - struct fb_info *info = container_of(work, struct fb_info, - deferred_work.work); - struct list_head *node, *next; - struct page *cur; + struct fb_info *info = container_of(work, struct fb_info, deferred_work.work); + struct fb_deferred_io_pageref *pageref, *next; struct fb_deferred_io *fbdefio = info->fbdefio; /* here we mkclean the pages, then do all deferred IO */ mutex_lock(&fbdefio->lock); - list_for_each_entry(cur, &fbdefio->pagelist, lru) { + list_for_each_entry(pageref, &fbdefio->pagereflist, list) { + struct page *cur = pageref->page; lock_page(cur); page_mkclean(cur); unlock_page(cur); } - /* driver's callback with pagelist */ - fbdefio->deferred_io(info, &fbdefio->pagelist); + /* driver's callback with pagereflist */ + fbdefio->deferred_io(info, &fbdefio->pagereflist); /* clear the list */ - list_for_each_safe(node, next, &fbdefio->pagelist) { - list_del(node); - } + list_for_each_entry_safe(pageref, next, &fbdefio->pagereflist, list) + fb_deferred_io_pageref_put(pageref, info); + mutex_unlock(&fbdefio->lock); } -void fb_deferred_io_init(struct fb_info *info) +int fb_deferred_io_init(struct fb_info *info) { struct fb_deferred_io *fbdefio = info->fbdefio; + struct fb_deferred_io_pageref *pagerefs; + unsigned long npagerefs, i; + int ret; BUG_ON(!fbdefio); + + if (WARN_ON(!info->fix.smem_len)) + return -EINVAL; + mutex_init(&fbdefio->lock); INIT_DELAYED_WORK(&info->deferred_work, fb_deferred_io_work); - INIT_LIST_HEAD(&fbdefio->pagelist); + INIT_LIST_HEAD(&fbdefio->pagereflist); if (fbdefio->delay == 0) /* set a default of 1 s */ fbdefio->delay = HZ; + + npagerefs = DIV_ROUND_UP(info->fix.smem_len, PAGE_SIZE); + + /* alloc a page ref for each page of the display memory */ + pagerefs = kvcalloc(npagerefs, sizeof(*pagerefs), GFP_KERNEL); + if (!pagerefs) { + ret = -ENOMEM; + goto err; + } + for (i = 0; i < npagerefs; ++i) + INIT_LIST_HEAD(&pagerefs[i].list); + info->npagerefs = npagerefs; + info->pagerefs = pagerefs; + + return 0; + +err: + mutex_destroy(&fbdefio->lock); + return ret; } EXPORT_SYMBOL_GPL(fb_deferred_io_init); @@ -216,25 +288,43 @@ struct inode *inode, struct file *file) { + struct fb_deferred_io *fbdefio = info->fbdefio; + file->f_mapping->a_ops = &fb_deferred_io_aops; + fbdefio->open_count++; } EXPORT_SYMBOL_GPL(fb_deferred_io_open); -void fb_deferred_io_cleanup(struct fb_info *info) +static void fb_deferred_io_lastclose(struct fb_info *info) { - struct fb_deferred_io *fbdefio = info->fbdefio; struct page *page; int i; - BUG_ON(!fbdefio); - cancel_delayed_work_sync(&info->deferred_work); + flush_delayed_work(&info->deferred_work); /* clear out the mapping that we setup */ for (i = 0 ; i < info->fix.smem_len; i += PAGE_SIZE) { page = fb_deferred_io_page(info, i); page->mapping = NULL; } +} + +void fb_deferred_io_release(struct fb_info *info) +{ + struct fb_deferred_io *fbdefio = info->fbdefio; + + if (!--fbdefio->open_count) + fb_deferred_io_lastclose(info); +} +EXPORT_SYMBOL_GPL(fb_deferred_io_release); + +void fb_deferred_io_cleanup(struct fb_info *info) +{ + struct fb_deferred_io *fbdefio = info->fbdefio; + + fb_deferred_io_lastclose(info); + kvfree(info->pagerefs); mutex_destroy(&fbdefio->lock); } EXPORT_SYMBOL_GPL(fb_deferred_io_cleanup); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/video/fbdev/fsl-diu-fb.c +++ linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/fsl-diu-fb.c @@ -490,7 +490,7 @@ * 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/video/fbdev/hecubafb.c +++ linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/hecubafb.c @@ -115,8 +115,7 @@ } /* this is called back from the deferred io workqueue */ -static void hecubafb_dpy_deferred_io(struct fb_info *info, - struct list_head *pagelist) +static void hecubafb_dpy_deferred_io(struct fb_info *info, struct list_head *pagereflist) { hecubafb_dpy_update(info->par); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/video/fbdev/metronomefb.c +++ linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/metronomefb.c @@ -465,16 +465,15 @@ } /* this is called back from the deferred io workqueue */ -static void metronomefb_dpy_deferred_io(struct fb_info *info, - struct list_head *pagelist) +static void metronomefb_dpy_deferred_io(struct fb_info *info, struct list_head *pagereflist) { u16 cksum; - struct page *cur; - struct fb_deferred_io *fbdefio = info->fbdefio; + struct fb_deferred_io_pageref *pageref; struct metronomefb_par *par = info->par; /* walk the written page list and swizzle the data */ - list_for_each_entry(cur, &fbdefio->pagelist, lru) { + list_for_each_entry(pageref, pagereflist, list) { + struct page *cur = pageref->page; cksum = metronomefb_dpy_update_page(par, (cur->index << PAGE_SHIFT)); par->metromem_img_csum -= par->csum_table[cur->index]; @@ -567,8 +566,9 @@ }; static struct fb_deferred_io metronomefb_defio = { - .delay = HZ, - .deferred_io = metronomefb_dpy_deferred_io, + .delay = HZ, + .sort_pagereflist = true, + .deferred_io = metronomefb_dpy_deferred_io, }; static int metronomefb_probe(struct platform_device *dev) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/video/fbdev/sh_mobile_lcdcfb.c +++ linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/sh_mobile_lcdcfb.c @@ -435,24 +435,24 @@ .read_data = lcdc_sys_read_data, }; -static int sh_mobile_lcdc_sginit(struct fb_info *info, - struct list_head *pagelist) +static int sh_mobile_lcdc_sginit(struct fb_info *info, struct list_head *pagereflist) { struct sh_mobile_lcdc_chan *ch = info->par; unsigned int nr_pages_max = ch->fb_size >> PAGE_SHIFT; - struct page *page; + struct fb_deferred_io_pageref *pageref; int nr_pages = 0; sg_init_table(ch->sglist, nr_pages_max); - list_for_each_entry(page, pagelist, lru) + list_for_each_entry(pageref, pagereflist, list) { + struct page *page = pageref->page; sg_set_page(&ch->sglist[nr_pages++], page, PAGE_SIZE, 0); + } return nr_pages; } -static void sh_mobile_lcdc_deferred_io(struct fb_info *info, - struct list_head *pagelist) +static void sh_mobile_lcdc_deferred_io(struct fb_info *info, struct list_head *pagereflist) { struct sh_mobile_lcdc_chan *ch = info->par; const struct sh_mobile_lcdc_panel_cfg *panel = &ch->cfg->panel_cfg; @@ -461,7 +461,7 @@ sh_mobile_lcdc_clk_on(ch->lcdc); /* - * It's possible to get here without anything on the pagelist via + * It's possible to get here without anything on the pagereflist via * sh_mobile_lcdc_deferred_io_touch() or via a userspace fsync() * invocation. In the former case, the acceleration routines are * stepped in to when using the framebuffer console causing the @@ -471,12 +471,12 @@ * acceleration routines have their own methods for writing in * that still need to be updated. * - * The fsync() and empty pagelist case could be optimized for, + * The fsync() and empty pagereflist case could be optimized for, * but we don't bother, as any application exhibiting such * behaviour is fundamentally broken anyways. */ - if (!list_empty(pagelist)) { - unsigned int nr_pages = sh_mobile_lcdc_sginit(info, pagelist); + if (!list_empty(pagereflist)) { + unsigned int nr_pages = sh_mobile_lcdc_sginit(info, pagereflist); /* trigger panel update */ dma_map_sg(ch->lcdc->dev, ch->sglist, nr_pages, DMA_TO_DEVICE); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/video/fbdev/ssd1307fb.c +++ linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/ssd1307fb.c @@ -370,8 +370,7 @@ .fb_imageblit = ssd1307fb_imageblit, }; -static void ssd1307fb_deferred_io(struct fb_info *info, - struct list_head *pagelist) +static void ssd1307fb_deferred_io(struct fb_info *info, struct list_head *pagereflist) { ssd1307fb_update_display(info->par); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/video/fbdev/xen-fbfront.c +++ linux-xilinx-zynqmp-5.15.0/drivers/video/fbdev/xen-fbfront.c @@ -181,17 +181,17 @@ xenfb_do_update(info, x1, y1, x2 - x1 + 1, y2 - y1 + 1); } -static void xenfb_deferred_io(struct fb_info *fb_info, - struct list_head *pagelist) +static void xenfb_deferred_io(struct fb_info *fb_info, struct list_head *pagereflist) { struct xenfb_info *info = fb_info->par; - struct page *page; + struct fb_deferred_io_pageref *pageref; unsigned long beg, end; int y1, y2, miny, maxy; miny = INT_MAX; maxy = 0; - list_for_each_entry(page, pagelist, lru) { + list_for_each_entry(pageref, pagereflist, list) { + struct page *page = pageref->page; beg = page->index << PAGE_SHIFT; end = beg + PAGE_SIZE - 1; y1 = beg / fb_info->fix.line_length; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/virtio/virtio_balloon.c +++ linux-xilinx-zynqmp-5.15.0/drivers/virtio/virtio_balloon.c @@ -402,7 +402,11 @@ 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; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/w1/masters/Kconfig +++ linux-xilinx-zynqmp-5.15.0/drivers/w1/masters/Kconfig @@ -5,6 +5,17 @@ menu "1-wire Bus Masters" +config W1_MASTER_AMD_AXI + tristate "AMD AXI 1-wire bus host" + help + Say Y here is you want to support the AMD AXI 1-wire IP core. + This driver makes use of the programmable logic IP to perform + correctly timed 1 wire transactions without relying on GPIO timing + through the kernel. + + This driver can also be built as a module. If so, the module will be + called amd_w1_axi. + config W1_MASTER_MATROX tristate "Matrox G400 transport layer for 1-wire" depends on PCI only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/w1/masters/Makefile +++ linux-xilinx-zynqmp-5.15.0/drivers/w1/masters/Makefile @@ -3,6 +3,7 @@ # Makefile for 1-wire bus master drivers. # +obj-$(CONFIG_W1_MASTER_AMD_AXI) += amd_axi_w1.o obj-$(CONFIG_W1_MASTER_MATROX) += matrox_w1.o obj-$(CONFIG_W1_MASTER_DS2490) += ds2490.o obj-$(CONFIG_W1_MASTER_DS2482) += ds2482.o only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/w1/masters/amd_axi_w1.c +++ linux-xilinx-zynqmp-5.15.0/drivers/w1/masters/amd_axi_w1.c @@ -0,0 +1,396 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * amd_axi_w1 - AMD 1Wire programmable logic bus host driver + * + * Copyright (C) 2022-2023 Advanced Micro Devices, Inc. All Rights Reserved. + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +/* 1-wire AMD IP definition */ +#define AXIW1_IPID 0x10ee4453 +/* Registers offset */ +#define AXIW1_INST_REG 0x0 +#define AXIW1_CTRL_REG 0x4 +#define AXIW1_IRQE_REG 0x8 +#define AXIW1_STAT_REG 0xC +#define AXIW1_DATA_REG 0x10 +#define AXIW1_IPVER_REG 0x18 +#define AXIW1_IPID_REG 0x1C +/* Instructions */ +#define AXIW1_INITPRES 0x0800 +#define AXIW1_READBIT 0x0C00 +#define AXIW1_WRITEBIT 0x0E00 +#define AXIW1_READBYTE 0x0D00 +#define AXIW1_WRITEBYTE 0x0F00 +/* Status flag masks */ +#define AXIW1_DONE BIT(0) +#define AXIW1_READY BIT(4) +#define AXIW1_PRESENCE BIT(31) +#define AXIW1_MAJORVER_MASK GENMASK(23, 8) +#define AXIW1_MINORVER_MASK GENMASK(7, 0) +/* Control flag */ +#define AXIW1_GO BIT(0) +#define AXI_CLEAR 0 +#define AXI_RESET BIT(31) +#define AXIW1_READDATA BIT(0) +/* Interrupt Enable */ +#define AXIW1_READY_IRQ_EN BIT(4) +#define AXIW1_DONE_IRQ_EN BIT(0) + +#define AXIW1_TIMEOUT msecs_to_jiffies(100) + +#define DRIVER_NAME "amd_axi_w1" + +struct amd_axi_w1_local { + struct device *dev; + void __iomem *base_addr; + int irq; + atomic_t flag; /* Set on IRQ, cleared once serviced */ + wait_queue_head_t wait_queue; + struct w1_bus_master bus_host; +}; + +/** + * amd_axi_w1_wait_irq_interruptible_timeout() - Wait for IRQ with timeout. + * + * @amd_axi_w1_local: Pointer to device structure + * @IRQ: IRQ channel to wait on + * + * Return: %0 - OK, %-EINTR - Interrupted, %-EBUSY - Timed out + */ +static int amd_axi_w1_wait_irq_interruptible_timeout(struct amd_axi_w1_local *amd_axi_w1_local, + u32 IRQ) +{ + int ret; + + /* Enable the IRQ requested and wait for flag to indicate it's been triggered */ + iowrite32(IRQ, amd_axi_w1_local->base_addr + AXIW1_IRQE_REG); + ret = wait_event_interruptible_timeout(amd_axi_w1_local->wait_queue, + atomic_read(&amd_axi_w1_local->flag) != 0, + AXIW1_TIMEOUT); + if (ret < 0) { + dev_err(amd_axi_w1_local->dev, "Wait IRQ Interrupted\n"); + return -EINTR; + } + + if (!ret) { + dev_err(amd_axi_w1_local->dev, "Wait IRQ Timeout\n"); + return -EBUSY; + } + + atomic_set(&amd_axi_w1_local->flag, 0); + return 0; +} + +/** + * amd_axi_w1_touch_bit() - Performs the touch-bit function - write a 0 or 1 and reads the level. + * + * @data: Pointer to device structure + * @bit: The level to write + * + * Return: The level read + */ +static u8 amd_axi_w1_touch_bit(void *data, u8 bit) +{ + struct amd_axi_w1_local *amd_axi_w1_local = data; + u8 val = 0; + int rc; + + /* Wait for READY signal to be 1 to ensure 1-wire IP is ready */ + while ((ioread32(amd_axi_w1_local->base_addr + AXIW1_STAT_REG) & AXIW1_READY) == 0) { + rc = amd_axi_w1_wait_irq_interruptible_timeout(amd_axi_w1_local, + AXIW1_READY_IRQ_EN); + if (rc < 0) + return 1; /* Callee doesn't test for error. Return inactive bus state */ + } + + if (bit) + /* Read. Write read Bit command in register 0 */ + iowrite32(AXIW1_READBIT, amd_axi_w1_local->base_addr + AXIW1_INST_REG); + else + /* Write. Write tx Bit command in instruction register with bit to transmit */ + iowrite32(AXIW1_WRITEBIT + (bit & 0x01), + amd_axi_w1_local->base_addr + AXIW1_INST_REG); + + /* Write Go signal and clear control reset signal in control register */ + iowrite32(AXIW1_GO, amd_axi_w1_local->base_addr + AXIW1_CTRL_REG); + + /* Wait for done signal to be 1 */ + while ((ioread32(amd_axi_w1_local->base_addr + AXIW1_STAT_REG) & AXIW1_DONE) != 1) { + rc = amd_axi_w1_wait_irq_interruptible_timeout(amd_axi_w1_local, AXIW1_DONE_IRQ_EN); + if (rc < 0) + return 1; /* Callee doesn't test for error. Return inactive bus state */ + } + + /* If read, Retrieve data from register */ + if (bit) + val = (u8)(ioread32(amd_axi_w1_local->base_addr + AXIW1_DATA_REG) & AXIW1_READDATA); + + /* Clear Go signal in register 1 */ + iowrite32(AXI_CLEAR, amd_axi_w1_local->base_addr + AXIW1_CTRL_REG); + + return val; +} + +/** + * amd_axi_w1_read_byte - Performs the read byte function. + * + * @data: Pointer to device structure + * Return: The value read + */ +static u8 amd_axi_w1_read_byte(void *data) +{ + struct amd_axi_w1_local *amd_axi_w1_local = data; + u8 val = 0; + int rc; + + /* Wait for READY signal to be 1 to ensure 1-wire IP is ready */ + while ((ioread32(amd_axi_w1_local->base_addr + AXIW1_STAT_REG) & AXIW1_READY) == 0) { + rc = amd_axi_w1_wait_irq_interruptible_timeout(amd_axi_w1_local, + AXIW1_READY_IRQ_EN); + if (rc < 0) + return 0xFF; /* Return inactive bus state */ + } + + /* Write read Byte command in instruction register*/ + iowrite32(AXIW1_READBYTE, amd_axi_w1_local->base_addr + AXIW1_INST_REG); + + /* Write Go signal and clear control reset signal in control register */ + iowrite32(AXIW1_GO, amd_axi_w1_local->base_addr + AXIW1_CTRL_REG); + + /* Wait for done signal to be 1 */ + while ((ioread32(amd_axi_w1_local->base_addr + AXIW1_STAT_REG) & AXIW1_DONE) != 1) { + rc = amd_axi_w1_wait_irq_interruptible_timeout(amd_axi_w1_local, AXIW1_DONE_IRQ_EN); + if (rc < 0) + return 0xFF; /* Return inactive bus state */ + } + + /* Retrieve LSB bit in data register to get RX byte */ + val = (u8)(ioread32(amd_axi_w1_local->base_addr + AXIW1_DATA_REG) & 0x000000FF); + + /* Clear Go signal in control register */ + iowrite32(AXI_CLEAR, amd_axi_w1_local->base_addr + AXIW1_CTRL_REG); + + return val; +} + +/** + * amd_axi_w1_write_byte - Performs the write byte function. + * + * @data: The ds2482 channel pointer + * @val: The value to write + */ +static void amd_axi_w1_write_byte(void *data, u8 val) +{ + struct amd_axi_w1_local *amd_axi_w1_local = data; + int rc; + + /* Wait for READY signal to be 1 to ensure 1-wire IP is ready */ + while ((ioread32(amd_axi_w1_local->base_addr + AXIW1_STAT_REG) & AXIW1_READY) == 0) { + rc = amd_axi_w1_wait_irq_interruptible_timeout(amd_axi_w1_local, + AXIW1_READY_IRQ_EN); + if (rc < 0) + return; + } + + /* Write tx Byte command in instruction register with bit to transmit */ + iowrite32(AXIW1_WRITEBYTE + val, amd_axi_w1_local->base_addr + AXIW1_INST_REG); + + /* Write Go signal and clear control reset signal in register 1 */ + iowrite32(AXIW1_GO, amd_axi_w1_local->base_addr + AXIW1_CTRL_REG); + + /* Wait for done signal to be 1 */ + while ((ioread32(amd_axi_w1_local->base_addr + AXIW1_STAT_REG) & AXIW1_DONE) != 1) { + rc = amd_axi_w1_wait_irq_interruptible_timeout(amd_axi_w1_local, + AXIW1_DONE_IRQ_EN); + if (rc < 0) + return; + } + + /* Clear Go signal in control register */ + iowrite32(AXI_CLEAR, amd_axi_w1_local->base_addr + AXIW1_CTRL_REG); +} + +/** + * amd_axi_w1_reset_bus() - Issues a reset bus sequence. + * + * @data: the bus host data struct + * Return: 0=Device present, 1=No device present or error + */ +static u8 amd_axi_w1_reset_bus(void *data) +{ + struct amd_axi_w1_local *amd_axi_w1_local = data; + u8 val = 0; + int rc; + + /* Reset 1-wire Axi IP */ + iowrite32(AXI_RESET, amd_axi_w1_local->base_addr + AXIW1_CTRL_REG); + + /* Wait for READY signal to be 1 to ensure 1-wire IP is ready */ + while ((ioread32(amd_axi_w1_local->base_addr + AXIW1_STAT_REG) & AXIW1_READY) == 0) { + rc = amd_axi_w1_wait_irq_interruptible_timeout(amd_axi_w1_local, + AXIW1_READY_IRQ_EN); + if (rc < 0) + return 1; /* Something went wrong with the hardware */ + } + /* Write Initialization command in instruction register */ + iowrite32(AXIW1_INITPRES, amd_axi_w1_local->base_addr + AXIW1_INST_REG); + + /* Write Go signal and clear control reset signal in register 1 */ + iowrite32(AXIW1_GO, amd_axi_w1_local->base_addr + AXIW1_CTRL_REG); + + /* Wait for done signal to be 1 */ + while ((ioread32(amd_axi_w1_local->base_addr + AXIW1_STAT_REG) & AXIW1_DONE) != 1) { + rc = amd_axi_w1_wait_irq_interruptible_timeout(amd_axi_w1_local, AXIW1_DONE_IRQ_EN); + if (rc < 0) + return 1; /* Something went wrong with the hardware */ + } + /* Retrieve MSB bit in status register to get failure bit */ + if ((ioread32(amd_axi_w1_local->base_addr + AXIW1_STAT_REG) & AXIW1_PRESENCE) != 0) + val = 1; + + /* Clear Go signal in control register */ + iowrite32(AXI_CLEAR, amd_axi_w1_local->base_addr + AXIW1_CTRL_REG); + + return val; +} + +/* Reset the 1-wire AXI IP. Put the IP in reset state and clear registers */ +static void amd_axi_w1_reset(struct amd_axi_w1_local *amd_axi_w1_local) +{ + iowrite32(AXI_RESET, amd_axi_w1_local->base_addr + AXIW1_CTRL_REG); + iowrite32(AXI_CLEAR, amd_axi_w1_local->base_addr + AXIW1_INST_REG); + iowrite32(AXI_CLEAR, amd_axi_w1_local->base_addr + AXIW1_IRQE_REG); + iowrite32(AXI_CLEAR, amd_axi_w1_local->base_addr + AXIW1_STAT_REG); + iowrite32(AXI_CLEAR, amd_axi_w1_local->base_addr + AXIW1_DATA_REG); +} + +static irqreturn_t amd_axi_w1_irq(int irq, void *lp) +{ + struct amd_axi_w1_local *amd_axi_w1_local = lp; + + /* Reset interrupt trigger */ + iowrite32(AXI_CLEAR, amd_axi_w1_local->base_addr + AXIW1_IRQE_REG); + + atomic_set(&amd_axi_w1_local->flag, 1); + wake_up_interruptible(&amd_axi_w1_local->wait_queue); + + return IRQ_HANDLED; +} + +static int amd_axi_w1_probe(struct platform_device *pdev) +{ + struct device *dev = &pdev->dev; + struct amd_axi_w1_local *lp; + struct clk *clk; + u32 ver_major, ver_minor; + int val, rc = 0; + + lp = devm_kzalloc(dev, sizeof(*lp), GFP_KERNEL); + if (!lp) + return -ENOMEM; + + lp->dev = dev; + lp->base_addr = devm_platform_ioremap_resource(pdev, 0); + if (IS_ERR(lp->base_addr)) + return PTR_ERR(lp->base_addr); + + lp->irq = platform_get_irq(pdev, 0); + if (lp->irq < 0) + return lp->irq; + + rc = devm_request_irq(dev, lp->irq, &amd_axi_w1_irq, IRQF_TRIGGER_HIGH, DRIVER_NAME, lp); + if (rc) + return rc; + + /* Initialize wait queue and flag */ + init_waitqueue_head(&lp->wait_queue); + + clk = devm_clk_get_enabled(dev, NULL); + if (IS_ERR(clk)) + return PTR_ERR(clk); + + /* Verify IP presence in HW */ + if (ioread32(lp->base_addr + AXIW1_IPID_REG) != AXIW1_IPID) { + dev_err(dev, "AMD 1-wire IP not detected in hardware\n"); + return -ENODEV; + } + + /* + * Allow for future driver expansion supporting new hardware features + * This driver currently only supports hardware 1.x, but include logic + * to detect if a potentially incompatible future version is used + * by reading major version ID. It is highly undesirable for new IP versions + * to break the API, but this code will at least allow for graceful failure + * should that happen. Future new features can be enabled by hardware + * incrementing the minor version and augmenting the driver to detect capability + * using the minor version number + */ + val = ioread32(lp->base_addr + AXIW1_IPVER_REG); + ver_major = FIELD_GET(AXIW1_MAJORVER_MASK, val); + ver_minor = FIELD_GET(AXIW1_MINORVER_MASK, val); + + if (ver_major != 1) { + dev_err(dev, "AMD AXI W1 host version %u.%u is not supported by this driver", + ver_major, ver_minor); + return -ENODEV; + } + + lp->bus_host.data = lp; + lp->bus_host.touch_bit = amd_axi_w1_touch_bit; + lp->bus_host.read_byte = amd_axi_w1_read_byte; + lp->bus_host.write_byte = amd_axi_w1_write_byte; + lp->bus_host.reset_bus = amd_axi_w1_reset_bus; + + amd_axi_w1_reset(lp); + + platform_set_drvdata(pdev, lp); + rc = w1_add_master_device(&lp->bus_host); + if (rc) { + dev_err(dev, "Could not add host device\n"); + return rc; + } + + return 0; +} + +static void amd_axi_w1_remove(struct platform_device *pdev) +{ + struct amd_axi_w1_local *lp = platform_get_drvdata(pdev); + + w1_remove_master_device(&lp->bus_host); +} + +static const struct of_device_id amd_axi_w1_of_match[] = { + { .compatible = "amd,axi-1wire-host" }, + { /* end of list */ }, +}; +MODULE_DEVICE_TABLE(of, amd_axi_w1_of_match); + +static struct platform_driver amd_axi_w1_driver = { + .probe = amd_axi_w1_probe, + .remove_new = amd_axi_w1_remove, + .driver = { + .name = DRIVER_NAME, + .of_match_table = amd_axi_w1_of_match, + }, +}; +module_platform_driver(amd_axi_w1_driver); + +MODULE_LICENSE("GPL"); +MODULE_AUTHOR("Kris Chaplin "); +MODULE_DESCRIPTION("Driver for AMD AXI 1 Wire IP core"); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/watchdog/bcm2835_wdt.c +++ linux-xilinx-zynqmp-5.15.0/drivers/watchdog/bcm2835_wdt.c @@ -42,6 +42,7 @@ #define SECS_TO_WDOG_TICKS(x) ((x) << 16) #define WDOG_TICKS_TO_SECS(x) ((x) >> 16) +#define WDOG_TICKS_TO_MSECS(x) ((x) * 1000 >> 16) struct bcm2835_wdt { void __iomem *base; @@ -140,7 +141,7 @@ .info = &bcm2835_wdt_info, .ops = &bcm2835_wdt_ops, .min_timeout = 1, - .max_timeout = WDOG_TICKS_TO_SECS(PM_WDOG_TIME_SET), + .max_hw_heartbeat_ms = WDOG_TICKS_TO_MSECS(PM_WDOG_TIME_SET), .timeout = WDOG_TICKS_TO_SECS(PM_WDOG_TIME_SET), }; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/watchdog/it87_wdt.c +++ linux-xilinx-zynqmp-5.15.0/drivers/watchdog/it87_wdt.c @@ -255,6 +255,7 @@ static int __init it87_wdt_init(void) { u8 chip_rev; + u8 ctrl; int rc; rc = superio_enter(); @@ -313,7 +314,18 @@ superio_select(GPIO); superio_outb(WDT_TOV1, WDTCFG); - superio_outb(0x00, WDTCTRL); + + switch (chip_type) { + case IT8784_ID: + case IT8786_ID: + ctrl = superio_inb(WDTCTRL); + ctrl &= 0x08; + superio_outb(ctrl, WDTCTRL); + break; + default: + superio_outb(0x00, WDTCTRL); + } + superio_exit(); if (timeout < 1 || timeout > max_units * 60) { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/xen/gntdev-dmabuf.c +++ linux-xilinx-zynqmp-5.15.0/drivers/xen/gntdev-dmabuf.c @@ -11,6 +11,7 @@ #include #include #include +#include #include #include #include @@ -56,7 +57,7 @@ /* Number of pages this buffer has. */ int nr_pages; - /* Pages of this buffer. */ + /* Pages of this buffer (only for dma-buf export). */ struct page **pages; }; @@ -490,7 +491,7 @@ /* DMA buffer import support. */ static int -dmabuf_imp_grant_foreign_access(struct page **pages, u32 *refs, +dmabuf_imp_grant_foreign_access(unsigned long *gfns, u32 *refs, int count, int domid) { grant_ref_t priv_gref_head; @@ -513,7 +514,7 @@ } gnttab_grant_foreign_access_ref(cur_ref, domid, - xen_page_to_gfn(pages[i]), 0); + gfns[i], 0); refs[i] = cur_ref; } @@ -535,7 +536,6 @@ static void dmabuf_imp_free_storage(struct gntdev_dmabuf *gntdev_dmabuf) { - kfree(gntdev_dmabuf->pages); kfree(gntdev_dmabuf->u.imp.refs); kfree(gntdev_dmabuf); } @@ -555,12 +555,6 @@ if (!gntdev_dmabuf->u.imp.refs) goto fail; - gntdev_dmabuf->pages = kcalloc(count, - sizeof(gntdev_dmabuf->pages[0]), - GFP_KERNEL); - if (!gntdev_dmabuf->pages) - goto fail; - gntdev_dmabuf->nr_pages = count; for (i = 0; i < count; i++) @@ -582,7 +576,8 @@ struct dma_buf *dma_buf; struct dma_buf_attachment *attach; struct sg_table *sgt; - struct sg_page_iter sg_iter; + struct sg_dma_page_iter sg_iter; + unsigned long *gfns; int i; dma_buf = dma_buf_get(fd); @@ -630,26 +625,31 @@ gntdev_dmabuf->u.imp.sgt = sgt; - /* Now convert sgt to array of pages and check for page validity. */ + gfns = kcalloc(count, sizeof(*gfns), GFP_KERNEL); + if (!gfns) { + ret = ERR_PTR(-ENOMEM); + goto fail_unmap; + } + + /* + * Now convert sgt to array of gfns without accessing underlying pages. + * It is not allowed to access the underlying struct page of an sg table + * exported by DMA-buf, but since we deal with special Xen dma device here + * (not a normal physical one) look at the dma addresses in the sg table + * and then calculate gfns directly from them. + */ i = 0; - for_each_sgtable_page(sgt, &sg_iter, 0) { - struct page *page = sg_page_iter_page(&sg_iter); - /* - * Check if page is valid: this can happen if we are given - * a page from VRAM or other resources which are not backed - * by a struct page. - */ - if (!pfn_valid(page_to_pfn(page))) { - ret = ERR_PTR(-EINVAL); - goto fail_unmap; - } + for_each_sgtable_dma_page(sgt, &sg_iter, 0) { + dma_addr_t addr = sg_page_iter_dma_address(&sg_iter); + unsigned long pfn = bfn_to_pfn(XEN_PFN_DOWN(dma_to_phys(dev, addr))); - gntdev_dmabuf->pages[i++] = page; + gfns[i++] = pfn_to_gfn(pfn); } - ret = ERR_PTR(dmabuf_imp_grant_foreign_access(gntdev_dmabuf->pages, + ret = ERR_PTR(dmabuf_imp_grant_foreign_access(gfns, gntdev_dmabuf->u.imp.refs, count, domid)); + kfree(gfns); if (IS_ERR(ret)) goto fail_end_access; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/xen/xen-pciback/conf_space.c +++ linux-xilinx-zynqmp-5.15.0/drivers/xen/xen-pciback/conf_space.c @@ -288,12 +288,6 @@ 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 @@ 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; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/drivers/xen/xen-pciback/conf_space_header.c +++ linux-xilinx-zynqmp-5.15.0/drivers/xen/xen-pciback/conf_space_header.c @@ -104,24 +104,9 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/9p/xattr.c +++ linux-xilinx-zynqmp-5.15.0/fs/9p/xattr.c @@ -73,7 +73,7 @@ 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 @@ 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, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/afs/callback.c +++ linux-xilinx-zynqmp-5.15.0/fs/afs/callback.c @@ -110,13 +110,14 @@ { struct afs_volume *volume = NULL; struct rb_node *p; - int seq = 0; + int seq = 1; do { /* Unfortunately, rbtree walking doesn't give reliable results * under just the RCU read lock, so we have to check for * changes. */ + seq++; /* 2 on the 1st/lockless path, otherwise odd */ read_seqbegin_or_lock(&cell->volume_lock, &seq); p = rcu_dereference_raw(cell->volumes.rb_node); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/afs/cell.c +++ linux-xilinx-zynqmp-5.15.0/fs/afs/cell.c @@ -158,7 +158,7 @@ cell->name[i] = tolower(name[i]); cell->name[i] = 0; - atomic_set(&cell->ref, 1); + refcount_set(&cell->ref, 1); atomic_set(&cell->active, 0); INIT_WORK(&cell->manager, afs_manage_cell_work); cell->volumes = RB_ROOT; @@ -287,7 +287,7 @@ cell = candidate; candidate = NULL; atomic_set(&cell->active, 2); - trace_afs_cell(cell->debug_id, atomic_read(&cell->ref), 2, afs_cell_trace_insert); + trace_afs_cell(cell->debug_id, refcount_read(&cell->ref), 2, afs_cell_trace_insert); rb_link_node_rcu(&cell->net_node, parent, pp); rb_insert_color(&cell->net_node, &net->cells); up_write(&net->cells_lock); @@ -295,7 +295,7 @@ afs_queue_cell(cell, afs_cell_trace_get_queue_new); wait_for_cell: - trace_afs_cell(cell->debug_id, atomic_read(&cell->ref), atomic_read(&cell->active), + trace_afs_cell(cell->debug_id, refcount_read(&cell->ref), atomic_read(&cell->active), afs_cell_trace_wait); _debug("wait_for_cell"); wait_var_event(&cell->state, @@ -409,10 +409,12 @@ if (ret == -ENOMEM) goto out_wake; - ret = -ENOMEM; vllist = afs_alloc_vlserver_list(0); - if (!vllist) + if (!vllist) { + if (ret >= 0) + ret = -ENOMEM; goto out_wake; + } switch (ret) { case -ENODATA: @@ -490,13 +492,13 @@ { struct afs_cell *cell = container_of(rcu, struct afs_cell, rcu); struct afs_net *net = cell->net; - int u; + int r; _enter("%p{%s}", cell, cell->name); - u = atomic_read(&cell->ref); - ASSERTCMP(u, ==, 0); - trace_afs_cell(cell->debug_id, u, atomic_read(&cell->active), afs_cell_trace_free); + r = refcount_read(&cell->ref); + ASSERTCMP(r, ==, 0); + trace_afs_cell(cell->debug_id, r, atomic_read(&cell->active), afs_cell_trace_free); afs_put_vlserverlist(net, rcu_access_pointer(cell->vl_servers)); afs_unuse_cell(net, cell->alias_of, afs_cell_trace_unuse_alias); @@ -539,13 +541,10 @@ */ struct afs_cell *afs_get_cell(struct afs_cell *cell, enum afs_cell_trace reason) { - int u; + int r; - if (atomic_read(&cell->ref) <= 0) - BUG(); - - u = atomic_inc_return(&cell->ref); - trace_afs_cell(cell->debug_id, u, atomic_read(&cell->active), reason); + __refcount_inc(&cell->ref, &r); + trace_afs_cell(cell->debug_id, r + 1, atomic_read(&cell->active), reason); return cell; } @@ -556,12 +555,14 @@ { if (cell) { unsigned int debug_id = cell->debug_id; - unsigned int u, a; + unsigned int a; + bool zero; + int r; a = atomic_read(&cell->active); - u = atomic_dec_return(&cell->ref); - trace_afs_cell(debug_id, u, a, reason); - if (u == 0) { + zero = __refcount_dec_and_test(&cell->ref, &r); + trace_afs_cell(debug_id, r - 1, a, reason); + if (zero) { a = atomic_read(&cell->active); WARN(a != 0, "Cell active count %u > 0\n", a); call_rcu(&cell->rcu, afs_cell_destroy); @@ -574,14 +575,12 @@ */ struct afs_cell *afs_use_cell(struct afs_cell *cell, enum afs_cell_trace reason) { - int u, a; - - if (atomic_read(&cell->ref) <= 0) - BUG(); + int r, a; - u = atomic_read(&cell->ref); + r = refcount_read(&cell->ref); + WARN_ON(r == 0); a = atomic_inc_return(&cell->active); - trace_afs_cell(cell->debug_id, u, a, reason); + trace_afs_cell(cell->debug_id, r, a, reason); return cell; } @@ -593,7 +592,7 @@ { unsigned int debug_id; time64_t now, expire_delay; - int u, a; + int r, a; if (!cell) return; @@ -607,9 +606,9 @@ expire_delay = afs_cell_gc_delay; debug_id = cell->debug_id; - u = atomic_read(&cell->ref); + r = refcount_read(&cell->ref); a = atomic_dec_return(&cell->active); - trace_afs_cell(debug_id, u, a, reason); + trace_afs_cell(debug_id, r, a, reason); WARN_ON(a == 0); if (a == 1) /* 'cell' may now be garbage collected. */ @@ -621,11 +620,11 @@ */ void afs_see_cell(struct afs_cell *cell, enum afs_cell_trace reason) { - int u, a; + int r, a; - u = atomic_read(&cell->ref); + r = refcount_read(&cell->ref); a = atomic_read(&cell->active); - trace_afs_cell(cell->debug_id, u, a, reason); + trace_afs_cell(cell->debug_id, r, a, reason); } /* @@ -751,7 +750,7 @@ active = 1; if (atomic_try_cmpxchg_relaxed(&cell->active, &active, 0)) { rb_erase(&cell->net_node, &net->cells); - trace_afs_cell(cell->debug_id, atomic_read(&cell->ref), 0, + trace_afs_cell(cell->debug_id, refcount_read(&cell->ref), 0, afs_cell_trace_unuse_delete); smp_store_release(&cell->state, AFS_CELL_REMOVED); } @@ -878,7 +877,7 @@ bool sched_cell = false; active = atomic_read(&cell->active); - trace_afs_cell(cell->debug_id, atomic_read(&cell->ref), + trace_afs_cell(cell->debug_id, refcount_read(&cell->ref), active, afs_cell_trace_manage); ASSERTCMP(active, >=, 1); @@ -886,7 +885,7 @@ if (purging) { if (test_and_clear_bit(AFS_CELL_FL_NO_GC, &cell->flags)) { active = atomic_dec_return(&cell->active); - trace_afs_cell(cell->debug_id, atomic_read(&cell->ref), + trace_afs_cell(cell->debug_id, refcount_read(&cell->ref), active, afs_cell_trace_unuse_pin); } } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/afs/cmservice.c +++ linux-xilinx-zynqmp-5.15.0/fs/afs/cmservice.c @@ -213,7 +213,7 @@ */ if (call->server) { trace_afs_server(call->server, - atomic_read(&call->server->ref), + refcount_read(&call->server->ref), atomic_read(&call->server->active), afs_server_trace_callback); afs_break_callbacks(call->server, call->count, call->request); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/afs/dynroot.c +++ linux-xilinx-zynqmp-5.15.0/fs/afs/dynroot.c @@ -113,6 +113,7 @@ struct afs_net *net = afs_d2net(dentry); const char *name = dentry->d_name.name; size_t len = dentry->d_name.len; + char *result = NULL; int ret; /* Names prefixed with a dot are R/W mounts. */ @@ -130,9 +131,22 @@ } ret = dns_query(net->net, "afsdb", name, len, "srv=1", - NULL, NULL, false); - if (ret == -ENODATA) - ret = -EDESTADDRREQ; + &result, NULL, false); + if (ret == -ENODATA || ret == -ENOKEY || ret == 0) + ret = -ENOENT; + if (ret > 0 && ret >= sizeof(struct dns_server_list_v1_header)) { + struct dns_server_list_v1_header *v1 = (void *)result; + + if (v1->hdr.zero == 0 && + v1->hdr.content == DNS_PAYLOAD_IS_SERVER_LIST && + v1->hdr.version == 1 && + (v1->status != DNS_LOOKUP_GOOD && + v1->status != DNS_LOOKUP_GOOD_WITH_BAD)) + return -ENOENT; + + } + + kfree(result); return ret; } @@ -251,20 +265,9 @@ return 1; } -/* - * Allow the VFS to enquire as to whether a dentry should be unhashed (mustn't - * sleep) - * - called from dput() when d_count is going to 0. - * - return 1 to request dentry be unhashed, 0 otherwise - */ -static int afs_dynroot_d_delete(const struct dentry *dentry) -{ - return d_really_is_positive(dentry); -} - const struct dentry_operations afs_dynroot_dentry_operations = { .d_revalidate = afs_dynroot_d_revalidate, - .d_delete = afs_dynroot_d_delete, + .d_delete = always_delete_dentry, .d_release = afs_d_release, .d_automount = afs_d_automount, }; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/afs/proc.c +++ linux-xilinx-zynqmp-5.15.0/fs/afs/proc.c @@ -47,7 +47,7 @@ /* display one cell per line on subsequent lines */ seq_printf(m, "%3u %3u %6lld %2u %2u %s\n", - atomic_read(&cell->ref), + refcount_read(&cell->ref), atomic_read(&cell->active), cell->dns_expiry - ktime_get_real_seconds(), vllist ? vllist->nr_servers : 0, @@ -217,7 +217,7 @@ } seq_printf(m, "%3d %08llx %s %s\n", - atomic_read(&vol->usage), vol->vid, + refcount_read(&vol->ref), vol->vid, afs_vol_types[vol->type], vol->name); @@ -388,7 +388,7 @@ alist = rcu_dereference(server->addresses); seq_printf(m, "%pU %3d %3d\n", &server->uuid, - atomic_read(&server->ref), + refcount_read(&server->ref), atomic_read(&server->active)); seq_printf(m, " - info: fl=%lx rtt=%u brk=%x\n", server->flags, server->rtt, server->cb_s_break); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/afs/server.c +++ linux-xilinx-zynqmp-5.15.0/fs/afs/server.c @@ -27,7 +27,7 @@ const struct afs_addr_list *alist; struct afs_server *server = NULL; unsigned int i; - int seq = 0, diff; + int seq = 1, diff; rcu_read_lock(); @@ -35,6 +35,7 @@ if (server) afs_unuse_server_notime(net, server, afs_server_trace_put_find_rsq); server = NULL; + seq++; /* 2 on the 1st/lockless path, otherwise odd */ read_seqbegin_or_lock(&net->fs_addr_lock, &seq); if (srx->transport.family == AF_INET6) { @@ -90,7 +91,7 @@ { struct afs_server *server = NULL; struct rb_node *p; - int diff, seq = 0; + int diff, seq = 1; _enter("%pU", uuid); @@ -102,7 +103,7 @@ if (server) afs_unuse_server(net, server, afs_server_trace_put_uuid_rsq); server = NULL; - + seq++; /* 2 on the 1st/lockless path, otherwise odd */ read_seqbegin_or_lock(&net->fs_lock, &seq); p = net->fs_servers.rb_node; @@ -228,7 +229,7 @@ if (!server) goto enomem; - atomic_set(&server->ref, 1); + refcount_set(&server->ref, 1); atomic_set(&server->active, 1); server->debug_id = atomic_inc_return(&afs_server_debug_id); RCU_INIT_POINTER(server->addresses, alist); @@ -352,9 +353,10 @@ struct afs_server *afs_get_server(struct afs_server *server, enum afs_server_trace reason) { - unsigned int u = atomic_inc_return(&server->ref); + int r; - trace_afs_server(server, u, atomic_read(&server->active), reason); + __refcount_inc(&server->ref, &r); + trace_afs_server(server, r + 1, atomic_read(&server->active), reason); return server; } @@ -364,14 +366,14 @@ static struct afs_server *afs_maybe_use_server(struct afs_server *server, enum afs_server_trace reason) { - unsigned int r = atomic_fetch_add_unless(&server->ref, 1, 0); unsigned int a; + int r; - if (r == 0) + if (!__refcount_inc_not_zero(&server->ref, &r)) return NULL; a = atomic_inc_return(&server->active); - trace_afs_server(server, r, a, reason); + trace_afs_server(server, r + 1, a, reason); return server; } @@ -380,10 +382,13 @@ */ struct afs_server *afs_use_server(struct afs_server *server, enum afs_server_trace reason) { - unsigned int r = atomic_inc_return(&server->ref); - unsigned int a = atomic_inc_return(&server->active); + unsigned int a; + int r; + + __refcount_inc(&server->ref, &r); + a = atomic_inc_return(&server->active); - trace_afs_server(server, r, a, reason); + trace_afs_server(server, r + 1, a, reason); return server; } @@ -393,14 +398,15 @@ void afs_put_server(struct afs_net *net, struct afs_server *server, enum afs_server_trace reason) { - unsigned int usage; + bool zero; + int r; if (!server) return; - usage = atomic_dec_return(&server->ref); - trace_afs_server(server, usage, atomic_read(&server->active), reason); - if (unlikely(usage == 0)) + zero = __refcount_dec_and_test(&server->ref, &r); + trace_afs_server(server, r - 1, atomic_read(&server->active), reason); + if (unlikely(zero)) __afs_put_server(net, server); } @@ -436,7 +442,7 @@ { struct afs_server *server = container_of(rcu, struct afs_server, rcu); - trace_afs_server(server, atomic_read(&server->ref), + trace_afs_server(server, refcount_read(&server->ref), atomic_read(&server->active), afs_server_trace_free); afs_put_addrlist(rcu_access_pointer(server->addresses)); kfree(server); @@ -487,7 +493,7 @@ active = atomic_read(&server->active); if (active == 0) { - trace_afs_server(server, atomic_read(&server->ref), + trace_afs_server(server, refcount_read(&server->ref), active, afs_server_trace_gc); next = rcu_dereference_protected( server->uuid_next, lockdep_is_held(&net->fs_lock.lock)); @@ -553,7 +559,7 @@ _debug("manage %pU %u", &server->uuid, active); if (purging) { - trace_afs_server(server, atomic_read(&server->ref), + trace_afs_server(server, refcount_read(&server->ref), active, afs_server_trace_purging); if (active != 0) pr_notice("Can't purge s=%08x\n", server->debug_id); @@ -633,7 +639,8 @@ _enter(""); - trace_afs_server(server, atomic_read(&server->ref), atomic_read(&server->active), + trace_afs_server(server, refcount_read(&server->ref), + atomic_read(&server->active), afs_server_trace_update); alist = afs_vl_lookup_addrs(op->volume->cell, op->key, &server->uuid); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/afs/server_list.c +++ linux-xilinx-zynqmp-5.15.0/fs/afs/server_list.c @@ -17,7 +17,7 @@ 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); } } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/afs/vl_list.c +++ linux-xilinx-zynqmp-5.15.0/fs/afs/vl_list.c @@ -17,7 +17,7 @@ vlserver = kzalloc(struct_size(vlserver, name, name_len + 1), GFP_KERNEL); if (vlserver) { - atomic_set(&vlserver->usage, 1); + refcount_set(&vlserver->ref, 1); rwlock_init(&vlserver->lock); init_waitqueue_head(&vlserver->probe_wq); spin_lock_init(&vlserver->probe_lock); @@ -39,13 +39,9 @@ void afs_put_vlserver(struct afs_net *net, struct afs_vlserver *vlserver) { - if (vlserver) { - unsigned int u = atomic_dec_return(&vlserver->usage); - //_debug("VL PUT %p{%u}", vlserver, u); - - if (u == 0) - call_rcu(&vlserver->rcu, afs_vlserver_rcu); - } + if (vlserver && + refcount_dec_and_test(&vlserver->ref)) + call_rcu(&vlserver->rcu, afs_vlserver_rcu); } struct afs_vlserver_list *afs_alloc_vlserver_list(unsigned int nr_servers) @@ -54,7 +50,7 @@ vllist = kzalloc(struct_size(vllist, servers, nr_servers), GFP_KERNEL); if (vllist) { - atomic_set(&vllist->usage, 1); + refcount_set(&vllist->ref, 1); rwlock_init(&vllist->lock); } @@ -64,10 +60,7 @@ void afs_put_vlserverlist(struct afs_net *net, struct afs_vlserver_list *vllist) { if (vllist) { - unsigned int u = atomic_dec_return(&vllist->usage); - - //_debug("VLLS PUT %p{%u}", vllist, u); - if (u == 0) { + if (refcount_dec_and_test(&vllist->ref)) { int i; for (i = 0; i < vllist->nr_servers; i++) { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/afs/vl_rotate.c +++ linux-xilinx-zynqmp-5.15.0/fs/afs/vl_rotate.c @@ -58,6 +58,12 @@ } /* 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 @@ */ 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 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/afs/volume.c +++ linux-xilinx-zynqmp-5.15.0/fs/afs/volume.c @@ -33,8 +33,13 @@ } else if (p->vid > volume->vid) { pp = &(*pp)->rb_right; } else { - volume = afs_get_volume(p, afs_volume_trace_get_cell_insert); - goto found; + if (afs_try_get_volume(p, afs_volume_trace_get_cell_insert)) { + volume = p; + goto found; + } + + set_bit(AFS_VOLUME_RM_TREE, &volume->flags); + rb_replace_node_rcu(&p->cell_node, &volume->cell_node, &cell->volumes); } } @@ -53,11 +58,12 @@ struct afs_cell *cell = volume->cell; if (!hlist_unhashed(&volume->proc_link)) { - trace_afs_volume(volume->vid, atomic_read(&volume->usage), + trace_afs_volume(volume->vid, refcount_read(&cell->ref), afs_volume_trace_remove); write_seqlock(&cell->volume_lock); hlist_del_rcu(&volume->proc_link); - rb_erase(&volume->cell_node, &cell->volumes); + if (!test_and_set_bit(AFS_VOLUME_RM_TREE, &volume->flags)) + rb_erase(&volume->cell_node, &cell->volumes); write_sequnlock(&cell->volume_lock); } } @@ -88,7 +94,7 @@ volume->type_force = params->force; volume->name_len = vldb->name_len; - atomic_set(&volume->usage, 1); + refcount_set(&volume->ref, 1); INIT_HLIST_NODE(&volume->proc_link); rwlock_init(&volume->servers_lock); rwlock_init(&volume->cb_v_break_lock); @@ -229,7 +235,7 @@ afs_remove_volume_from_cell(volume); afs_put_serverlist(net, rcu_access_pointer(volume->servers)); afs_put_cell(volume->cell, afs_cell_trace_put_vol); - trace_afs_volume(volume->vid, atomic_read(&volume->usage), + trace_afs_volume(volume->vid, refcount_read(&volume->ref), afs_volume_trace_free); kfree_rcu(volume, rcu); @@ -237,14 +243,30 @@ } /* + * Try to get a reference on a volume record. + */ +bool afs_try_get_volume(struct afs_volume *volume, enum afs_volume_trace reason) +{ + int r; + + if (__refcount_inc_not_zero(&volume->ref, &r)) { + trace_afs_volume(volume->vid, r + 1, reason); + return true; + } + return false; +} + +/* * Get a reference on a volume record. */ struct afs_volume *afs_get_volume(struct afs_volume *volume, enum afs_volume_trace reason) { if (volume) { - int u = atomic_inc_return(&volume->usage); - trace_afs_volume(volume->vid, u, reason); + int r; + + __refcount_inc(&volume->ref, &r); + trace_afs_volume(volume->vid, r + 1, reason); } return volume; } @@ -258,9 +280,12 @@ { if (volume) { afs_volid_t vid = volume->vid; - int u = atomic_dec_return(&volume->usage); - trace_afs_volume(vid, u, reason); - if (u == 0) + bool zero; + int r; + + zero = __refcount_dec_and_test(&volume->ref, &r); + trace_afs_volume(vid, r - 1, reason); + if (zero) afs_destroy_volume(net, volume); } } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/btrfs/delayed-inode.h +++ linux-xilinx-zynqmp-5.15.0/fs/btrfs/delayed-inode.h @@ -123,6 +123,7 @@ /* Used for readdir() */ bool btrfs_readdir_get_delayed_items(struct inode *inode, + u64 last_index, struct list_head *ins_list, struct list_head *del_list); void btrfs_readdir_put_delayed_items(struct inode *inode, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/btrfs/ref-verify.c +++ linux-xilinx-zynqmp-5.15.0/fs/btrfs/ref-verify.c @@ -788,6 +788,7 @@ 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 @@ dump_ref_action(fs_info, ra); kfree(ref); kfree(ra); + kfree(re); goto out_unlock; } @@ -881,8 +883,10 @@ out_unlock: spin_unlock(&fs_info->ref_verify_lock); out: - if (ret) + if (ret) { + btrfs_free_ref_cache(fs_info); btrfs_clear_opt(fs_info->mount_opt, REF_VERIFY); + } return ret; } @@ -1011,8 +1015,8 @@ } } if (ret) { - btrfs_clear_opt(fs_info->mount_opt, REF_VERIFY); btrfs_free_ref_cache(fs_info); + btrfs_clear_opt(fs_info->mount_opt, REF_VERIFY); } btrfs_free_path(path); return ret; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/cifs/cifs_spnego.c +++ linux-xilinx-zynqmp-5.15.0/fs/cifs/cifs_spnego.c @@ -64,8 +64,8 @@ * 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 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/cifs/smb2misc.c +++ linux-xilinx-zynqmp-5.15.0/fs/cifs/smb2misc.c @@ -113,7 +113,7 @@ } 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 @@ -298,6 +298,9 @@ char * smb2_get_data_area_len(int *off, int *len, struct smb2_sync_hdr *shdr) { + const int max_off = 4096; + const int max_len = 128 * 1024; + *off = 0; *len = 0; @@ -369,29 +372,20 @@ * Invalid length or offset probably means data area is invalid, but * we have little choice but to ignore the data area in this case. */ - if (*off > 4096) { - cifs_dbg(VFS, "offset %d too large, data area ignored\n", *off); - *len = 0; - *off = 0; - } else if (*off < 0) { - cifs_dbg(VFS, "negative offset %d to data invalid ignore data area\n", - *off); + if (unlikely(*off < 0 || *off > max_off || + *len < 0 || *len > max_len)) { + cifs_dbg(VFS, "%s: invalid data area (off=%d len=%d)\n", + __func__, *off, *len); *off = 0; *len = 0; - } else if (*len < 0) { - cifs_dbg(VFS, "negative data length %d invalid, data area ignored\n", - *len); - *len = 0; - } else if (*len > 128 * 1024) { - cifs_dbg(VFS, "data area larger than 128K: %d\n", *len); + } else if (*off == 0) { *len = 0; } /* return pointer to beginning of data area, ie offset from SMB start */ - if ((*off != 0) && (*len != 0)) + if (*off > 0 && *len > 0) return (char *)shdr + *off; - else - return NULL; + return NULL; } /* only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/cifs/smb2pdu.h +++ linux-xilinx-zynqmp-5.15.0/fs/cifs/smb2pdu.h @@ -218,7 +218,7 @@ __le16 StructureSize; __le16 Reserved; /* MBZ */ __le32 ByteCount; /* even if zero, at least one byte follows */ - __u8 ErrorData[1]; /* variable length */ + __u8 ErrorData[]; /* variable length */ } __packed; #define SYMLINK_ERROR_TAG 0x4c4d5953 @@ -487,7 +487,7 @@ __le16 SecurityBufferOffset; __le16 SecurityBufferLength; __le32 NegotiateContextOffset; /* Pre:SMB3.1.1 was reserved/ignored */ - __u8 Buffer[1]; /* variable length GSS security buffer */ + __u8 Buffer[]; /* variable length GSS security buffer */ } __packed; /* Flags */ @@ -504,7 +504,7 @@ __le16 SecurityBufferOffset; __le16 SecurityBufferLength; __u64 PreviousSessionId; - __u8 Buffer[1]; /* variable length GSS security buffer */ + __u8 Buffer[]; /* variable length GSS security buffer */ } __packed; /* Currently defined SessionFlags */ @@ -517,7 +517,7 @@ __le16 SessionFlags; __le16 SecurityBufferOffset; __le16 SecurityBufferLength; - __u8 Buffer[1]; /* variable length GSS security buffer */ + __u8 Buffer[]; /* variable length GSS security buffer */ } __packed; struct smb2_logoff_req { @@ -543,7 +543,7 @@ __le16 Flags; /* Reserved MBZ for dialects prior to SMB3.1.1 */ __le16 PathOffset; __le16 PathLength; - __u8 Buffer[1]; /* variable length */ + __u8 Buffer[]; /* variable length */ } __packed; /* See MS-SMB2 section 2.2.9.2 */ @@ -779,7 +779,7 @@ #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_ALLOCATION_SIZE "AlSi" #define SMB2_CREATE_QUERY_MAXIMAL_ACCESS_REQUEST "MxAc" #define SMB2_CREATE_TIMEWARP_REQUEST "TWrp" #define SMB2_CREATE_QUERY_ON_DISK_ID "QFid" @@ -852,7 +852,7 @@ __u64 VolatileFileId; /* opaque endianness */ __le32 CreateContextsOffset; __le32 CreateContextsLength; - __u8 Buffer[1]; + __u8 Buffer[]; } __packed; struct create_context { @@ -1313,7 +1313,7 @@ __le32 RemainingBytes; __le16 ReadChannelInfoOffset; __le16 ReadChannelInfoLength; - __u8 Buffer[1]; + __u8 Buffer[]; } __packed; /* Read flags */ @@ -1328,7 +1328,7 @@ __le32 DataLength; __le32 DataRemaining; __u32 Flags; - __u8 Buffer[1]; + __u8 Buffer[]; } __packed; /* For write request Flags field below the following flags are defined: */ @@ -1348,7 +1348,7 @@ __le16 WriteChannelInfoOffset; __le16 WriteChannelInfoLength; __le32 Flags; - __u8 Buffer[1]; + __u8 Buffer[]; } __packed; struct smb2_write_rsp { @@ -1359,7 +1359,7 @@ __le32 DataLength; __le32 DataRemaining; __u32 Reserved2; - __u8 Buffer[1]; + __u8 Buffer[]; } __packed; /* notify flags */ @@ -1395,7 +1395,7 @@ __le16 StructureSize; /* Must be 9 */ __le16 OutputBufferOffset; __le32 OutputBufferLength; - __u8 Buffer[1]; /* array of file notify structs */ + __u8 Buffer[]; /* array of file notify structs */ } __packed; #define SMB2_LOCKFLAG_SHARED_LOCK 0x0001 @@ -1422,7 +1422,10 @@ __u64 PersistentFileId; /* opaque endianness */ __u64 VolatileFileId; /* opaque endianness */ /* Followed by at least one */ - struct smb2_lock_element locks[1]; + union { + struct smb2_lock_element lock; + DECLARE_FLEX_ARRAY(struct smb2_lock_element, locks); + }; } __packed; struct smb2_lock_rsp { @@ -1478,7 +1481,7 @@ __le16 FileNameOffset; __le16 FileNameLength; __le32 OutputBufferLength; - __u8 Buffer[1]; + __u8 Buffer[]; } __packed; struct smb2_query_directory_rsp { @@ -1486,7 +1489,7 @@ __le16 StructureSize; /* Must be 9 */ __le16 OutputBufferOffset; __le32 OutputBufferLength; - __u8 Buffer[1]; + __u8 Buffer[]; } __packed; /* Possible InfoType values */ @@ -1527,7 +1530,7 @@ __le32 Flags; __u64 PersistentFileId; /* opaque endianness */ __u64 VolatileFileId; /* opaque endianness */ - __u8 Buffer[1]; + __u8 Buffer[]; } __packed; struct smb2_query_info_rsp { @@ -1535,7 +1538,7 @@ __le16 StructureSize; /* Must be 9 */ __le16 OutputBufferOffset; __le32 OutputBufferLength; - __u8 Buffer[1]; + __u8 Buffer[]; } __packed; /* @@ -1558,7 +1561,7 @@ __le32 AdditionalInformation; __u64 PersistentFileId; /* opaque endianness */ __u64 VolatileFileId; /* opaque endianness */ - __u8 Buffer[1]; + __u8 Buffer[]; } __packed; struct smb2_set_info_rsp { @@ -1761,7 +1764,10 @@ __le32 Mode; __le32 AlignmentRequirement; __le32 FileNameLength; - char FileName[1]; + 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 */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/debugfs/internal.h +++ linux-xilinx-zynqmp-5.15.0/fs/debugfs/internal.h @@ -17,8 +17,14 @@ struct debugfs_fsdata { const struct file_operations *real_fops; - refcount_t active_users; - struct completion active_users_drained; + union { + /* automount_fn is used when real_fops is NULL */ + debugfs_automount_t automount; + struct { + refcount_t active_users; + struct completion active_users_drained; + }; + }; }; /* only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/ecryptfs/inode.c +++ linux-xilinx-zynqmp-5.15.0/fs/ecryptfs/inode.c @@ -76,6 +76,14 @@ if (lower_inode->i_sb != ecryptfs_superblock_to_lower(sb)) return ERR_PTR(-EXDEV); + + /* Reject dealing with casefold directories. */ + if (IS_CASEFOLDED(lower_inode)) { + pr_err_ratelimited("%s: Can't handle casefolded directory.\n", + __func__); + return ERR_PTR(-EREMOTE); + } + if (!igrab(lower_inode)) return ERR_PTR(-ESTALE); inode = iget5_locked(sb, (unsigned long)lower_inode, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/efivarfs/super.c +++ linux-xilinx-zynqmp-5.15.0/fs/efivarfs/super.c @@ -13,6 +13,7 @@ #include #include #include +#include #include "internal.h" @@ -231,8 +232,19 @@ return get_tree_single(fc, efivarfs_fill_super); } +static int efivarfs_reconfigure(struct fs_context *fc) +{ + if (!efivar_supports_writes() && !(fc->sb_flags & SB_RDONLY)) { + pr_err("Firmware does not support SetVariableRT. Can not remount with rw\n"); + return -EINVAL; + } + + return 0; +} + static const struct fs_context_operations efivarfs_context_ops = { .get_tree = efivarfs_get_tree, + .reconfigure = efivarfs_reconfigure, }; static int efivarfs_init_fs_context(struct fs_context *fc) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/ext4/acl.h +++ linux-xilinx-zynqmp-5.15.0/fs/ext4/acl.h @@ -68,6 +68,11 @@ 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 */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/ext4/mballoc.h +++ linux-xilinx-zynqmp-5.15.0/fs/ext4/mballoc.h @@ -219,6 +219,20 @@ (fex->fe_start << EXT4_SB(sb)->s_cluster_bits); } +static inline loff_t extent_logical_end(struct ext4_sb_info *sbi, + struct ext4_free_extent *fex) +{ + /* Use loff_t to avoid end exceeding ext4_lblk_t max. */ + return (loff_t)fex->fe_logical + EXT4_C2B(sbi, fex->fe_len); +} + +static inline loff_t pa_logical_end(struct ext4_sb_info *sbi, + struct ext4_prealloc_space *pa) +{ + /* Use loff_t to avoid end exceeding ext4_lblk_t max. */ + return (loff_t)pa->pa_lstart + EXT4_C2B(sbi, pa->pa_len); +} + typedef int (*ext4_mballoc_query_range_fn)( struct super_block *sb, ext4_group_t agno, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/ext4/move_extent.c +++ linux-xilinx-zynqmp-5.15.0/fs/ext4/move_extent.c @@ -615,6 +615,7 @@ goto out; o_end = o_start + len; + *moved_len = 0; while (o_start < o_end) { struct ext4_extent *ex; ext4_lblk_t cur_blk, next_blk; @@ -670,7 +671,7 @@ */ ext4_double_up_write_data_sem(orig_inode, donor_inode); /* Swap original branches with new branches */ - move_extent_per_page(o_filp, donor_inode, + *moved_len += move_extent_per_page(o_filp, donor_inode, orig_page_index, donor_page_index, offset_in_page, cur_len, unwritten, &ret); @@ -680,9 +681,6 @@ o_start += cur_len; d_start += cur_len; } - *moved_len = o_start - orig_blk; - if (*moved_len > len) - *moved_len = len; out: if (*moved_len) { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/fuse/dax.c +++ linux-xilinx-zynqmp-5.15.0/fs/fuse/dax.c @@ -1227,6 +1227,7 @@ if (fc->dax) { fuse_free_dax_mem_ranges(&fc->dax->free_ranges); kfree(fc->dax); + fc->dax = NULL; } } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/jfs/jfs_dtree.c +++ linux-xilinx-zynqmp-5.15.0/fs/jfs/jfs_dtree.c @@ -633,6 +633,11 @@ for (base = 0, lim = p->header.nextindex; lim; lim >>= 1) { index = base + (lim >> 1); + if (stbl[index] < 0) { + rc = -EIO; + goto out; + } + if (p->header.flag & BT_LEAF) { /* uppercase leaf name to compare */ cmp = @@ -1970,7 +1975,7 @@ do { f = &rp->slot[fsi]; fsi = f->next; - } while (fsi != -1); + } while (fsi >= 0); f->next = n; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/ksmbd/asn1.c +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/asn1.c @@ -21,101 +21,11 @@ #include "ksmbd_spnego_negtokeninit.asn1.h" #include "ksmbd_spnego_negtokentarg.asn1.h" -#define SPNEGO_OID_LEN 7 #define NTLMSSP_OID_LEN 10 -#define KRB5_OID_LEN 7 -#define KRB5U2U_OID_LEN 8 -#define MSKRB5_OID_LEN 7 -static unsigned long SPNEGO_OID[7] = { 1, 3, 6, 1, 5, 5, 2 }; -static unsigned long NTLMSSP_OID[10] = { 1, 3, 6, 1, 4, 1, 311, 2, 2, 10 }; -static unsigned long KRB5_OID[7] = { 1, 2, 840, 113554, 1, 2, 2 }; -static unsigned long KRB5U2U_OID[8] = { 1, 2, 840, 113554, 1, 2, 2, 3 }; -static unsigned long MSKRB5_OID[7] = { 1, 2, 840, 48018, 1, 2, 2 }; static char NTLMSSP_OID_STR[NTLMSSP_OID_LEN] = { 0x2b, 0x06, 0x01, 0x04, 0x01, 0x82, 0x37, 0x02, 0x02, 0x0a }; -static bool -asn1_subid_decode(const unsigned char **begin, const unsigned char *end, - unsigned long *subid) -{ - const unsigned char *ptr = *begin; - unsigned char ch; - - *subid = 0; - - do { - if (ptr >= end) - return false; - - ch = *ptr++; - *subid <<= 7; - *subid |= ch & 0x7F; - } while ((ch & 0x80) == 0x80); - - *begin = ptr; - return true; -} - -static bool asn1_oid_decode(const unsigned char *value, size_t vlen, - unsigned long **oid, size_t *oidlen) -{ - const unsigned char *iptr = value, *end = value + vlen; - unsigned long *optr; - unsigned long subid; - - vlen += 1; - if (vlen < 2 || vlen > UINT_MAX / sizeof(unsigned long)) - goto fail_nullify; - - *oid = kmalloc(vlen * sizeof(unsigned long), GFP_KERNEL); - if (!*oid) - return false; - - optr = *oid; - - if (!asn1_subid_decode(&iptr, end, &subid)) - goto fail; - - if (subid < 40) { - optr[0] = 0; - optr[1] = subid; - } else if (subid < 80) { - optr[0] = 1; - optr[1] = subid - 40; - } else { - optr[0] = 2; - optr[1] = subid - 80; - } - - *oidlen = 2; - optr += 2; - - while (iptr < end) { - if (++(*oidlen) > vlen) - goto fail; - - if (!asn1_subid_decode(&iptr, end, optr++)) - goto fail; - } - return true; - -fail: - kfree(*oid); -fail_nullify: - *oid = NULL; - return false; -} - -static bool oid_eq(unsigned long *oid1, unsigned int oid1len, - unsigned long *oid2, unsigned int oid2len) -{ - if (oid1len != oid2len) - return false; - - return memcmp(oid1, oid2, oid1len) == 0; -} - int ksmbd_decode_negTokenInit(unsigned char *security_blob, int length, struct ksmbd_conn *conn) @@ -252,26 +162,18 @@ int ksmbd_gssapi_this_mech(void *context, size_t hdrlen, unsigned char tag, const void *value, size_t vlen) { - unsigned long *oid; - size_t oidlen; - int err = 0; - - if (!asn1_oid_decode(value, vlen, &oid, &oidlen)) { - err = -EBADMSG; - goto out; - } + enum OID oid; - if (!oid_eq(oid, oidlen, SPNEGO_OID, SPNEGO_OID_LEN)) - err = -EBADMSG; - kfree(oid); -out: - if (err) { + oid = look_up_OID(value, vlen); + if (oid != OID_spnego) { char buf[50]; sprint_oid(value, vlen, buf, sizeof(buf)); ksmbd_debug(AUTH, "Unexpected OID: %s\n", buf); + return -EBADMSG; } - return err; + + return 0; } int ksmbd_neg_token_init_mech_type(void *context, size_t hdrlen, @@ -279,65 +181,61 @@ size_t vlen) { struct ksmbd_conn *conn = context; - unsigned long *oid; - size_t oidlen; + enum OID oid; int mech_type; - char buf[50]; - - if (!asn1_oid_decode(value, vlen, &oid, &oidlen)) - goto fail; - if (oid_eq(oid, oidlen, NTLMSSP_OID, NTLMSSP_OID_LEN)) + oid = look_up_OID(value, vlen); + if (oid == OID_ntlmssp) { mech_type = KSMBD_AUTH_NTLMSSP; - else if (oid_eq(oid, oidlen, MSKRB5_OID, MSKRB5_OID_LEN)) + } else if (oid == OID_mskrb5) { mech_type = KSMBD_AUTH_MSKRB5; - else if (oid_eq(oid, oidlen, KRB5_OID, KRB5_OID_LEN)) + } else if (oid == OID_krb5) { mech_type = KSMBD_AUTH_KRB5; - else if (oid_eq(oid, oidlen, KRB5U2U_OID, KRB5U2U_OID_LEN)) + } else if (oid == OID_krb5u2u) { mech_type = KSMBD_AUTH_KRB5U2U; - else - goto fail; + } else { + char buf[50]; + + sprint_oid(value, vlen, buf, sizeof(buf)); + ksmbd_debug(AUTH, "Unexpected OID: %s\n", buf); + return -EBADMSG; + } conn->auth_mechs |= mech_type; if (conn->preferred_auth_mech == 0) conn->preferred_auth_mech = mech_type; - kfree(oid); return 0; - -fail: - kfree(oid); - sprint_oid(value, vlen, buf, sizeof(buf)); - ksmbd_debug(AUTH, "Unexpected OID: %s\n", buf); - return -EBADMSG; } -int ksmbd_neg_token_init_mech_token(void *context, size_t hdrlen, - unsigned char tag, const void *value, - size_t vlen) +static int ksmbd_neg_token_alloc(void *context, size_t hdrlen, + unsigned char tag, const void *value, + size_t vlen) { struct ksmbd_conn *conn = context; - conn->mechToken = kmalloc(vlen + 1, GFP_KERNEL); + if (!vlen) + return -EINVAL; + + conn->mechToken = kmemdup_nul(value, vlen, GFP_KERNEL); if (!conn->mechToken) return -ENOMEM; - memcpy(conn->mechToken, value, vlen); - conn->mechToken[vlen] = '\0'; + conn->mechTokenLen = (unsigned int)vlen; + return 0; } -int ksmbd_neg_token_targ_resp_token(void *context, size_t hdrlen, +int ksmbd_neg_token_init_mech_token(void *context, size_t hdrlen, unsigned char tag, const void *value, size_t vlen) { - struct ksmbd_conn *conn = context; - - conn->mechToken = kmalloc(vlen + 1, GFP_KERNEL); - if (!conn->mechToken) - return -ENOMEM; + return ksmbd_neg_token_alloc(context, hdrlen, tag, value, vlen); +} - memcpy(conn->mechToken, value, vlen); - conn->mechToken[vlen] = '\0'; - return 0; +int ksmbd_neg_token_targ_resp_token(void *context, size_t hdrlen, + unsigned char tag, const void *value, + size_t vlen) +{ + return ksmbd_neg_token_alloc(context, hdrlen, tag, value, vlen); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/ksmbd/ksmbd_work.c +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/ksmbd_work.c @@ -27,18 +27,38 @@ INIT_LIST_HEAD(&work->async_request_entry); INIT_LIST_HEAD(&work->fp_entry); INIT_LIST_HEAD(&work->interim_entry); + INIT_LIST_HEAD(&work->aux_read_list); + work->iov_alloc_cnt = 4; + work->iov = kcalloc(work->iov_alloc_cnt, sizeof(struct kvec), + GFP_KERNEL); + if (!work->iov) { + kmem_cache_free(work_cache, work); + work = NULL; + } } return work; } void ksmbd_free_work_struct(struct ksmbd_work *work) { + struct aux_read *ar, *tmp; + WARN_ON(work->saved_cred != NULL); kvfree(work->response_buf); - kvfree(work->aux_payload_buf); + + list_for_each_entry_safe(ar, tmp, &work->aux_read_list, entry) { + kvfree(ar->buf); + list_del(&ar->entry); + kfree(ar); + } + kfree(work->tr_buf); kvfree(work->request_buf); + kfree(work->iov); + if (!list_empty(&work->interim_entry)) + list_del(&work->interim_entry); + if (work->async_id) ksmbd_release_id(&work->conn->async_ida, work->async_id); kmem_cache_free(work_cache, work); @@ -69,7 +89,6 @@ void ksmbd_workqueue_destroy(void) { - flush_workqueue(ksmbd_wq); destroy_workqueue(ksmbd_wq); ksmbd_wq = NULL; } @@ -78,3 +97,81 @@ { return queue_work(ksmbd_wq, &work->work); } + +static inline void __ksmbd_iov_pin(struct ksmbd_work *work, void *ib, + unsigned int ib_len) +{ + work->iov[++work->iov_idx].iov_base = ib; + work->iov[work->iov_idx].iov_len = ib_len; + work->iov_cnt++; +} + +static int __ksmbd_iov_pin_rsp(struct ksmbd_work *work, void *ib, int len, + void *aux_buf, unsigned int aux_size) +{ + struct aux_read *ar = NULL; + int need_iov_cnt = 1; + + if (aux_size) { + need_iov_cnt++; + ar = kmalloc(sizeof(struct aux_read), GFP_KERNEL); + if (!ar) + return -ENOMEM; + } + + if (work->iov_alloc_cnt < work->iov_cnt + need_iov_cnt) { + struct kvec *new; + + work->iov_alloc_cnt += 4; + new = krealloc(work->iov, + sizeof(struct kvec) * work->iov_alloc_cnt, + GFP_KERNEL | __GFP_ZERO); + if (!new) { + kfree(ar); + work->iov_alloc_cnt -= 4; + return -ENOMEM; + } + work->iov = new; + } + + /* Plus rfc_length size on first iov */ + if (!work->iov_idx) { + work->iov[work->iov_idx].iov_base = work->response_buf; + *(__be32 *)work->iov[0].iov_base = 0; + work->iov[work->iov_idx].iov_len = 4; + work->iov_cnt++; + } + + __ksmbd_iov_pin(work, ib, len); + inc_rfc1001_len(work->iov[0].iov_base, len); + + if (aux_size) { + __ksmbd_iov_pin(work, aux_buf, aux_size); + inc_rfc1001_len(work->iov[0].iov_base, aux_size); + + ar->buf = aux_buf; + list_add(&ar->entry, &work->aux_read_list); + } + + return 0; +} + +int ksmbd_iov_pin_rsp(struct ksmbd_work *work, void *ib, int len) +{ + return __ksmbd_iov_pin_rsp(work, ib, len, NULL, 0); +} + +int ksmbd_iov_pin_rsp_read(struct ksmbd_work *work, void *ib, int len, + void *aux_buf, unsigned int aux_size) +{ + return __ksmbd_iov_pin_rsp(work, ib, len, aux_buf, aux_size); +} + +int allocate_interim_rsp_buf(struct ksmbd_work *work) +{ + work->response_buf = kzalloc(MAX_CIFS_SMALL_BUFFER_SIZE, GFP_KERNEL); + if (!work->response_buf) + return -ENOMEM; + work->response_sz = MAX_CIFS_SMALL_BUFFER_SIZE; + return 0; +} only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/ksmbd/ksmbd_work.h +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/ksmbd_work.h @@ -19,6 +19,11 @@ KSMBD_WORK_CLOSED, }; +struct aux_read { + void *buf; + struct list_head entry; +}; + /* one of these for every pending CIFS request at the connection */ struct ksmbd_work { /* Server corresponding to this mid */ @@ -31,13 +36,19 @@ /* Response buffer */ void *response_buf; - /* Read data buffer */ - void *aux_payload_buf; + struct list_head aux_read_list; + + struct kvec *iov; + int iov_alloc_cnt; + int iov_cnt; + int iov_idx; /* Next cmd hdr in compound req buf*/ int next_smb2_rcv_hdr_off; /* Next cmd hdr in compound rsp buf*/ int next_smb2_rsp_hdr_off; + /* Current cmd hdr in compound rsp buf*/ + int curr_smb2_rsp_hdr_off; /* * Current Local FID assigned compound response if SMB2 CREATE @@ -53,22 +64,17 @@ unsigned int credits_granted; /* response smb header size */ - unsigned int resp_hdr_sz; unsigned int response_sz; - /* Read data count */ - unsigned int aux_payload_sz; void *tr_buf; unsigned char state; - /* Multiple responses for one request e.g. SMB ECHO */ - bool multiRsp:1; /* No response for cancelled request */ bool send_no_response:1; /* Request is encrypted */ bool encrypted:1; /* Is this SYNC or ASYNC ksmbd_work */ - bool syncronous:1; + bool asynchronous:1; bool need_invalidate_rkey:1; unsigned int remote_key; @@ -92,7 +98,16 @@ */ static inline void *ksmbd_resp_buf_next(struct ksmbd_work *work) { - return work->response_buf + work->next_smb2_rsp_hdr_off; + return work->response_buf + work->next_smb2_rsp_hdr_off + 4; +} + +/** + * ksmbd_resp_buf_curr - Get current buffer on compound response. + * @work: smb work containing response buffer + */ +static inline void *ksmbd_resp_buf_curr(struct ksmbd_work *work) +{ + return work->response_buf + work->curr_smb2_rsp_hdr_off + 4; } /** @@ -101,7 +116,7 @@ */ static inline void *ksmbd_req_buf_next(struct ksmbd_work *work) { - return work->request_buf + work->next_smb2_rcv_hdr_off; + return work->request_buf + work->next_smb2_rcv_hdr_off + 4; } struct ksmbd_work *ksmbd_alloc_work_struct(void); @@ -113,5 +128,8 @@ int ksmbd_workqueue_init(void); void ksmbd_workqueue_destroy(void); bool ksmbd_queue_work(struct ksmbd_work *work); - +int ksmbd_iov_pin_rsp_read(struct ksmbd_work *work, void *ib, int len, + void *aux_buf, unsigned int aux_size); +int ksmbd_iov_pin_rsp(struct ksmbd_work *work, void *ib, int len); +int allocate_interim_rsp_buf(struct ksmbd_work *work); #endif /* __KSMBD_WORK_H__ */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/ksmbd/mgmt/share_config.c +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/mgmt/share_config.c @@ -16,6 +16,7 @@ #include "user_config.h" #include "user_session.h" #include "../transport_ipc.h" +#include "../misc.h" #define SHARE_HASH_BITS 3 static DEFINE_HASHTABLE(shares_table, SHARE_HASH_BITS); @@ -26,7 +27,7 @@ struct list_head list; }; -static unsigned int share_name_hash(char *name) +static unsigned int share_name_hash(const char *name) { return jhash(name, strlen(name), 0); } @@ -51,12 +52,16 @@ kfree(share); } -void __ksmbd_share_config_put(struct ksmbd_share_config *share) +void ksmbd_share_config_del(struct ksmbd_share_config *share) { down_write(&shares_table_lock); hash_del(&share->hlist); up_write(&shares_table_lock); +} +void __ksmbd_share_config_put(struct ksmbd_share_config *share) +{ + ksmbd_share_config_del(share); kill_share(share); } @@ -68,7 +73,7 @@ return share; } -static struct ksmbd_share_config *__share_lookup(char *name) +static struct ksmbd_share_config *__share_lookup(const char *name) { struct ksmbd_share_config *share; unsigned int key = share_name_hash(name); @@ -115,7 +120,8 @@ return 0; } -static struct ksmbd_share_config *share_config_request(char *name) +static struct ksmbd_share_config *share_config_request(struct unicode_map *um, + const char *name) { struct ksmbd_share_config_response *resp; struct ksmbd_share_config *share = NULL; @@ -129,6 +135,19 @@ if (resp->flags == KSMBD_SHARE_FLAG_INVALID) goto out; + if (*resp->share_name) { + char *cf_resp_name; + bool equal; + + cf_resp_name = ksmbd_casefold_sharename(um, resp->share_name); + if (IS_ERR(cf_resp_name)) + goto out; + equal = !strcmp(cf_resp_name, name); + kfree(cf_resp_name); + if (!equal) + goto out; + } + share = kzalloc(sizeof(struct ksmbd_share_config), GFP_KERNEL); if (!share) goto out; @@ -186,20 +205,11 @@ return share; } -static void strtolower(char *share_name) -{ - while (*share_name) { - *share_name = tolower(*share_name); - share_name++; - } -} - -struct ksmbd_share_config *ksmbd_share_config_get(char *name) +struct ksmbd_share_config *ksmbd_share_config_get(struct unicode_map *um, + const char *name) { struct ksmbd_share_config *share; - strtolower(name); - down_read(&shares_table_lock); share = __share_lookup(name); if (share) @@ -208,7 +218,7 @@ if (share) return share; - return share_config_request(name); + return share_config_request(um, name); } bool ksmbd_share_veto_filename(struct ksmbd_share_config *share, @@ -222,17 +232,3 @@ } return false; } - -void ksmbd_share_configs_cleanup(void) -{ - struct ksmbd_share_config *share; - struct hlist_node *tmp; - int i; - - down_write(&shares_table_lock); - hash_for_each_safe(shares_table, i, tmp, share, hlist) { - hash_del(&share->hlist); - kill_share(share); - } - up_write(&shares_table_lock); -} only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/ksmbd/mgmt/share_config.h +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/mgmt/share_config.h @@ -9,6 +9,7 @@ #include #include #include +#include struct ksmbd_share_config { char *name; @@ -33,29 +34,22 @@ #define KSMBD_SHARE_INVALID_UID ((__u16)-1) #define KSMBD_SHARE_INVALID_GID ((__u16)-1) -static inline int share_config_create_mode(struct ksmbd_share_config *share, - umode_t posix_mode) +static inline umode_t +share_config_create_mode(struct ksmbd_share_config *share, + umode_t posix_mode) { - if (!share->force_create_mode) { - if (!posix_mode) - return share->create_mask; - else - return posix_mode & share->create_mask; - } - return share->force_create_mode & share->create_mask; + umode_t mode = (posix_mode ?: (umode_t)-1) & share->create_mask; + + return mode | share->force_create_mode; } -static inline int share_config_directory_mode(struct ksmbd_share_config *share, - umode_t posix_mode) +static inline umode_t +share_config_directory_mode(struct ksmbd_share_config *share, + umode_t posix_mode) { - if (!share->force_directory_mode) { - if (!posix_mode) - return share->directory_mask; - else - return posix_mode & share->directory_mask; - } + umode_t mode = (posix_mode ?: (umode_t)-1) & share->directory_mask; - return share->force_directory_mode & share->directory_mask; + return mode | share->force_directory_mode; } static inline int test_share_config_flag(struct ksmbd_share_config *share, @@ -64,6 +58,7 @@ return share->flags & flag; } +void ksmbd_share_config_del(struct ksmbd_share_config *share); void __ksmbd_share_config_put(struct ksmbd_share_config *share); static inline void ksmbd_share_config_put(struct ksmbd_share_config *share) @@ -73,9 +68,8 @@ __ksmbd_share_config_put(share); } -struct ksmbd_share_config *ksmbd_share_config_get(char *name); +struct ksmbd_share_config *ksmbd_share_config_get(struct unicode_map *um, + const char *name); bool ksmbd_share_veto_filename(struct ksmbd_share_config *share, const char *filename); -void ksmbd_share_configs_cleanup(void); - #endif /* __SHARE_CONFIG_MANAGEMENT_H__ */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/ksmbd/misc.c +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/misc.c @@ -7,6 +7,7 @@ #include #include #include +#include #include "misc.h" #include "smb_common.h" @@ -20,7 +21,7 @@ * wildcard '*' and '?' * TODO : implement consideration about DOS_DOT, DOS_QM and DOS_STAR * - * @string: string to compare with a pattern + * @str: string to compare with a pattern * @len: string length * @pattern: pattern string which might include wildcard '*' and '?' * @@ -152,25 +153,47 @@ /** * convert_to_nt_pathname() - extract and return windows path string * whose share directory prefix was removed from file path - * @filename : unix filename - * @sharepath: share path string + * @share: ksmbd_share_config pointer + * @path: path to report * * Return : windows path string or error */ -char *convert_to_nt_pathname(char *filename) +char *convert_to_nt_pathname(struct ksmbd_share_config *share, + const struct path *path) { - char *ab_pathname; + char *pathname, *ab_pathname, *nt_pathname; + int share_path_len = share->path_sz; - if (strlen(filename) == 0) - filename = "\\"; + pathname = kmalloc(PATH_MAX, GFP_KERNEL); + if (!pathname) + return ERR_PTR(-EACCES); + + ab_pathname = d_path(path, pathname, PATH_MAX); + if (IS_ERR(ab_pathname)) { + nt_pathname = ERR_PTR(-EACCES); + goto free_pathname; + } - ab_pathname = kstrdup(filename, GFP_KERNEL); - if (!ab_pathname) - return NULL; + if (strncmp(ab_pathname, share->path, share_path_len)) { + nt_pathname = ERR_PTR(-EACCES); + goto free_pathname; + } - ksmbd_conv_path_to_windows(ab_pathname); - return ab_pathname; + nt_pathname = kzalloc(strlen(&ab_pathname[share_path_len]) + 2, GFP_KERNEL); + if (!nt_pathname) { + nt_pathname = ERR_PTR(-ENOMEM); + goto free_pathname; + } + if (ab_pathname[share_path_len] == '\0') + strcpy(nt_pathname, "/"); + strcat(nt_pathname, &ab_pathname[share_path_len]); + + ksmbd_conv_path_to_windows(nt_pathname); + +free_pathname: + kfree(pathname); + return nt_pathname; } int get_nlink(struct kstat *st) @@ -204,32 +227,59 @@ strreplace(path, '/', '\\'); } +char *ksmbd_casefold_sharename(struct unicode_map *um, const char *name) +{ + char *cf_name; + int cf_len; + + cf_name = kzalloc(KSMBD_REQ_MAX_SHARE_NAME, GFP_KERNEL); + if (!cf_name) + return ERR_PTR(-ENOMEM); + + if (IS_ENABLED(CONFIG_UNICODE) && um) { + const struct qstr q_name = {.name = name, .len = strlen(name)}; + + cf_len = utf8_casefold(um, &q_name, cf_name, + KSMBD_REQ_MAX_SHARE_NAME); + if (cf_len < 0) + goto out_ascii; + + return cf_name; + } + +out_ascii: + cf_len = strscpy(cf_name, name, KSMBD_REQ_MAX_SHARE_NAME); + if (cf_len < 0) { + kfree(cf_name); + return ERR_PTR(-E2BIG); + } + + for (; *cf_name; ++cf_name) + *cf_name = isascii(*cf_name) ? tolower(*cf_name) : *cf_name; + return cf_name - cf_len; +} + /** * ksmbd_extract_sharename() - get share name from tree connect request * @treename: buffer containing tree name and share name * * Return: share name on success, otherwise error */ -char *ksmbd_extract_sharename(char *treename) +char *ksmbd_extract_sharename(struct unicode_map *um, const char *treename) { - char *name = treename; - char *dst; - char *pos = strrchr(name, '\\'); + const char *name = treename, *pos = strrchr(name, '\\'); if (pos) name = (pos + 1); /* caller has to free the memory */ - dst = kstrdup(name, GFP_KERNEL); - if (!dst) - return ERR_PTR(-ENOMEM); - return dst; + return ksmbd_casefold_sharename(um, name); } /** * convert_to_unix_name() - convert windows name to unix format - * @path: name to be converted - * @tid: tree id of mathing share + * @share: ksmbd_share_config pointer + * @name: file name that is relative to share * * Return: converted name on success, otherwise NULL */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/ksmbd/misc.h +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/misc.h @@ -14,12 +14,14 @@ int match_pattern(const char *str, size_t len, const char *pattern); int ksmbd_validate_filename(char *filename); int parse_stream_name(char *filename, char **stream_name, int *s_type); -char *convert_to_nt_pathname(char *filename); +char *convert_to_nt_pathname(struct ksmbd_share_config *share, + const struct path *path); int get_nlink(struct kstat *st); void ksmbd_conv_path_to_unix(char *path); void ksmbd_strip_last_slash(char *path); void ksmbd_conv_path_to_windows(char *path); -char *ksmbd_extract_sharename(char *treename); +char *ksmbd_casefold_sharename(struct unicode_map *um, const char *name); +char *ksmbd_extract_sharename(struct unicode_map *um, const char *treename); char *convert_to_unix_name(struct ksmbd_share_config *share, const char *name); #define KSMBD_DIR_INFO_ALIGNMENT 8 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/ksmbd/unicode.c +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/unicode.c @@ -15,45 +15,9 @@ #include "smb_common.h" /* - * smb_utf16_bytes() - how long will a string be after conversion? - * @from: pointer to input string - * @maxbytes: don't go past this many bytes of input string - * @codepage: destination codepage - * - * Walk a utf16le string and return the number of bytes that the string will - * be after being converted to the given charset, not including any null - * termination required. Don't walk past maxbytes in the source buffer. - * - * Return: string length after conversion - */ -static int smb_utf16_bytes(const __le16 *from, int maxbytes, - const struct nls_table *codepage) -{ - int i; - int charlen, outlen = 0; - int maxwords = maxbytes / 2; - char tmp[NLS_MAX_CHARSET_SIZE]; - __u16 ftmp; - - for (i = 0; i < maxwords; i++) { - ftmp = get_unaligned_le16(&from[i]); - if (ftmp == 0) - break; - - charlen = codepage->uni2char(ftmp, tmp, NLS_MAX_CHARSET_SIZE); - if (charlen > 0) - outlen += charlen; - else - outlen++; - } - - return outlen; -} - -/* * cifs_mapchar() - convert a host-endian char to proper char in codepage * @target: where converted character should be copied - * @src_char: 2 byte host-endian source character + * @from: host-endian source string * @cp: codepage to which character should be converted * @mapchar: should character be mapped according to mapchars mount option? * @@ -64,10 +28,13 @@ * Return: string length after conversion */ static int -cifs_mapchar(char *target, const __u16 src_char, const struct nls_table *cp, +cifs_mapchar(char *target, const __u16 *from, const struct nls_table *cp, bool mapchar) { int len = 1; + __u16 src_char; + + src_char = *from; if (!mapchar) goto cp_convert; @@ -105,30 +72,66 @@ cp_convert: len = cp->uni2char(src_char, target, NLS_MAX_CHARSET_SIZE); - if (len <= 0) { - *target = '?'; - len = 1; - } + if (len <= 0) + goto surrogate_pair; + + goto out; + +surrogate_pair: + /* convert SURROGATE_PAIR and IVS */ + if (strcmp(cp->charset, "utf8")) + goto unknown; + len = utf16s_to_utf8s(from, 3, UTF16_LITTLE_ENDIAN, target, 6); + if (len <= 0) + goto unknown; + return len; +unknown: + *target = '?'; + len = 1; goto out; } /* - * is_char_allowed() - check for valid character - * @ch: input character to be checked + * smb_utf16_bytes() - compute converted string length + * @from: pointer to input string + * @maxbytes: input string length + * @codepage: destination codepage + * + * Walk a utf16le string and return the number of bytes that the string will + * be after being converted to the given charset, not including any null + * termination required. Don't walk past maxbytes in the source buffer. * - * Return: 1 if char is allowed, otherwise 0 + * Return: string length after conversion */ -static inline int is_char_allowed(char *ch) +static int smb_utf16_bytes(const __le16 *from, int maxbytes, + const struct nls_table *codepage) { - /* check for control chars, wildcards etc. */ - if (!(*ch & 0x80) && - (*ch <= 0x1f || - *ch == '?' || *ch == '"' || *ch == '<' || - *ch == '>' || *ch == '|')) - return 0; + int i, j; + int charlen, outlen = 0; + int maxwords = maxbytes / 2; + char tmp[NLS_MAX_CHARSET_SIZE]; + __u16 ftmp[3]; + + for (i = 0; i < maxwords; i++) { + ftmp[0] = get_unaligned_le16(&from[i]); + if (ftmp[0] == 0) + break; + for (j = 1; j <= 2; j++) { + if (i + j < maxwords) + ftmp[j] = get_unaligned_le16(&from[i + j]); + else + ftmp[j] = 0; + } - return 1; + charlen = cifs_mapchar(tmp, ftmp, codepage, 0); + if (charlen > 0) + outlen += charlen; + else + outlen++; + } + + return outlen; } /* @@ -158,12 +161,12 @@ static int smb_from_utf16(char *to, const __le16 *from, int tolen, int fromlen, const struct nls_table *codepage, bool mapchar) { - int i, charlen, safelen; + int i, j, charlen, safelen; int outlen = 0; int nullsize = nls_nullsize(codepage); int fromwords = fromlen / 2; char tmp[NLS_MAX_CHARSET_SIZE]; - __u16 ftmp; + __u16 ftmp[3]; /* ftmp[3] = 3array x 2bytes = 6bytes UTF-16 */ /* * because the chars can be of varying widths, we need to take care @@ -174,9 +177,15 @@ safelen = tolen - (NLS_MAX_CHARSET_SIZE + nullsize); for (i = 0; i < fromwords; i++) { - ftmp = get_unaligned_le16(&from[i]); - if (ftmp == 0) + ftmp[0] = get_unaligned_le16(&from[i]); + if (ftmp[0] == 0) break; + for (j = 1; j <= 2; j++) { + if (i + j < fromwords) + ftmp[j] = get_unaligned_le16(&from[i + j]); + else + ftmp[j] = 0; + } /* * check to see if converting this character might make the @@ -191,6 +200,19 @@ /* put converted char into 'to' buffer */ charlen = cifs_mapchar(&to[outlen], ftmp, codepage, mapchar); outlen += charlen; + + /* + * charlen (=bytes of UTF-8 for 1 character) + * 4bytes UTF-8(surrogate pair) is charlen=4 + * (4bytes UTF-16 code) + * 7-8bytes UTF-8(IVS) is charlen=3+4 or 4+4 + * (2 UTF-8 pairs divided to 2 UTF-16 pairs) + */ + if (charlen == 4) + i++; + else if (charlen >= 5) + /* 5-6bytes UTF-8 */ + i += 2; } /* properly null-terminate string */ @@ -325,6 +347,9 @@ char src_char; __le16 dst_char; wchar_t tmp; + wchar_t wchar_to[6]; /* UTF-16 */ + int ret; + unicode_t u; if (!mapchars) return smb_strtoUTF16(target, source, srclen, cp); @@ -367,11 +392,57 @@ * if no match, use question mark, which at least in * some cases serves as wild card */ - if (charlen < 1) { - dst_char = cpu_to_le16(0x003f); - charlen = 1; + if (charlen > 0) + goto ctoUTF16; + + /* convert SURROGATE_PAIR */ + if (strcmp(cp->charset, "utf8")) + goto unknown; + if (*(source + i) & 0x80) { + charlen = utf8_to_utf32(source + i, 6, &u); + if (charlen < 0) + goto unknown; + } else + goto unknown; + ret = utf8s_to_utf16s(source + i, charlen, + UTF16_LITTLE_ENDIAN, + wchar_to, 6); + if (ret < 0) + goto unknown; + + i += charlen; + dst_char = cpu_to_le16(*wchar_to); + if (charlen <= 3) + /* 1-3bytes UTF-8 to 2bytes UTF-16 */ + put_unaligned(dst_char, &target[j]); + else if (charlen == 4) { + /* + * 4bytes UTF-8(surrogate pair) to 4bytes UTF-16 + * 7-8bytes UTF-8(IVS) divided to 2 UTF-16 + * (charlen=3+4 or 4+4) + */ + put_unaligned(dst_char, &target[j]); + dst_char = cpu_to_le16(*(wchar_to + 1)); + j++; + put_unaligned(dst_char, &target[j]); + } else if (charlen >= 5) { + /* 5-6bytes UTF-8 to 6bytes UTF-16 */ + put_unaligned(dst_char, &target[j]); + dst_char = cpu_to_le16(*(wchar_to + 1)); + j++; + put_unaligned(dst_char, &target[j]); + dst_char = cpu_to_le16(*(wchar_to + 2)); + j++; + put_unaligned(dst_char, &target[j]); } + continue; + +unknown: + dst_char = cpu_to_le16(0x003f); + charlen = 1; } + +ctoUTF16: /* * character may take more than one byte in the source string, * but will take exactly two bytes in the target string only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/ksmbd/unicode.h +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/unicode.h @@ -24,6 +24,7 @@ #include #include #include +#include #define UNIUPR_NOLOWER /* Example to not expand lower case tables */ @@ -69,7 +70,7 @@ const struct nls_table *codepage); int smbConvertToUTF16(__le16 *target, const char *source, int srclen, const struct nls_table *cp, int mapchars); -char *ksmbd_extract_sharename(char *treename); +char *ksmbd_extract_sharename(struct unicode_map *um, const char *treename); #endif /* only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/ksmbd/vfs_cache.h +++ linux-xilinx-zynqmp-5.15.0/fs/ksmbd/vfs_cache.h @@ -51,7 +51,7 @@ atomic_t op_count; /* opinfo count for streams */ atomic_t sop_count; - struct inode *m_inode; + struct dentry *m_de; unsigned int m_flags; struct hlist_node m_hash; struct list_head m_fp_list; @@ -60,9 +60,14 @@ __le32 m_fattr; }; +enum { + FP_NEW = 0, + FP_INITED, + FP_CLOSED +}; + struct ksmbd_file { struct file *filp; - char *filename; u64 persistent_id; u64 volatile_id; @@ -96,19 +101,11 @@ int durable_timeout; - /* for SMB1 */ - int pid; - - /* conflict lock fail count for SMB1 */ - unsigned int cflock_cnt; - /* last lock failure start offset for SMB1 */ - unsigned long long llock_fstart; - - int dirent_offset; - /* if ls is happening on directory, below is valid*/ struct ksmbd_readdir_data readdir_data; int dot_dotdot[2]; + unsigned int f_state; + bool reserve_lease_break; }; static inline void set_ctx_actor(struct dir_context *ctx, @@ -142,9 +139,11 @@ struct ksmbd_file *ksmbd_lookup_fd_slow(struct ksmbd_work *work, u64 id, u64 pid); void ksmbd_fd_put(struct ksmbd_work *work, struct ksmbd_file *fp); +struct ksmbd_inode *ksmbd_inode_lookup_lock(struct dentry *d); +void ksmbd_inode_put(struct ksmbd_inode *ci); struct ksmbd_file *ksmbd_lookup_durable_fd(unsigned long long id); struct ksmbd_file *ksmbd_lookup_fd_cguid(char *cguid); -struct ksmbd_file *ksmbd_lookup_fd_inode(struct inode *inode); +struct ksmbd_file *ksmbd_lookup_fd_inode(struct dentry *dentry); unsigned int ksmbd_open_durable_fd(struct ksmbd_file *fp); struct ksmbd_file *ksmbd_open_fd(struct ksmbd_work *work, struct file *filp); void ksmbd_close_tree_conn_fds(struct ksmbd_work *work); @@ -153,6 +152,8 @@ int ksmbd_init_global_file_table(void); void ksmbd_free_global_file_table(void); void ksmbd_set_fd_limit(unsigned long limit); +void ksmbd_update_fstate(struct ksmbd_file_table *ft, struct ksmbd_file *fp, + unsigned int state); /* * INODE hash @@ -166,7 +167,7 @@ KSMBD_INODE_STATUS_PENDING_DELETE, }; -int ksmbd_query_inode_status(struct inode *inode); +int ksmbd_query_inode_status(struct dentry *dentry); bool ksmbd_inode_pending_delete(struct ksmbd_file *fp); void ksmbd_set_inode_pending_delete(struct ksmbd_file *fp); void ksmbd_clear_inode_pending_delete(struct ksmbd_file *fp); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/nfs/blocklayout/blocklayout.c +++ linux-xilinx-zynqmp-5.15.0/fs/nfs/blocklayout/blocklayout.c @@ -599,6 +599,8 @@ nfs4_delete_deviceid(node->ld, node->nfs_client, id); goto retry; } + + nfs4_put_deviceid_node(node); return ERR_PTR(-ENODEV); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/nilfs2/file.c +++ linux-xilinx-zynqmp-5.15.0/fs/nilfs2/file.c @@ -105,7 +105,13 @@ nilfs_transaction_commit(inode->i_sb); mapped: - wait_for_stable_page(page); + /* + * Since checksumming including data blocks is performed to determine + * the validity of the log to be written and used for recovery, it is + * necessary to wait for writeback to finish here, regardless of the + * stable write requirement of the backing device. + */ + wait_on_page_writeback(page); out: sb_end_pagefault(inode->i_sb); return block_page_mkwrite_return(ret); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/nilfs2/recovery.c +++ linux-xilinx-zynqmp-5.15.0/fs/nilfs2/recovery.c @@ -472,9 +472,10 @@ static int nilfs_recovery_copy_block(struct the_nilfs *nilfs, struct nilfs_recovery_block *rb, - struct page *page) + loff_t pos, struct page *page) { struct buffer_head *bh_org; + size_t from = pos & ~PAGE_MASK; void *kaddr; bh_org = __bread(nilfs->ns_bdev, rb->blocknr, nilfs->ns_blocksize); @@ -482,7 +483,7 @@ return -EIO; kaddr = kmap_atomic(page); - memcpy(kaddr + bh_offset(bh_org), bh_org->b_data, bh_org->b_size); + memcpy(kaddr + from, bh_org->b_data, bh_org->b_size); kunmap_atomic(kaddr); brelse(bh_org); return 0; @@ -521,7 +522,7 @@ goto failed_inode; } - err = nilfs_recovery_copy_block(nilfs, rb, page); + err = nilfs_recovery_copy_block(nilfs, rb, pos, page); if (unlikely(err)) goto failed_page; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/ntfs3/dir.c +++ linux-xilinx-zynqmp-5.15.0/fs/ntfs3/dir.c @@ -309,7 +309,11 @@ 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); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/xfs/libxfs/xfs_dir2_leaf.c +++ linux-xilinx-zynqmp-5.15.0/fs/xfs/libxfs/xfs_dir2_leaf.c @@ -146,6 +146,8 @@ 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 @@ 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 @@ } 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/xfs/libxfs/xfs_log_recover.h +++ linux-xilinx-zynqmp-5.15.0/fs/xfs/libxfs/xfs_log_recover.h @@ -108,12 +108,6 @@ #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 @@ 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__ */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/xfs/libxfs/xfs_trans_resv.c +++ linux-xilinx-zynqmp-5.15.0/fs/xfs/libxfs/xfs_trans_resv.c @@ -423,7 +423,7 @@ { 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) + only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/xfs/xfs_attr_inactive.c +++ linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_attr_inactive.c @@ -158,6 +158,7 @@ } 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 @@ &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 @@ 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. only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/xfs/xfs_error.c +++ linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_error.c @@ -224,13 +224,18 @@ 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 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/fs/xfs/xfs_sysfs.h +++ linux-xilinx-zynqmp-5.15.0/fs/xfs/xfs_sysfs.h @@ -33,10 +33,15 @@ 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 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/asm-generic/numa.h +++ linux-xilinx-zynqmp-5.15.0/include/asm-generic/numa.h @@ -35,6 +35,7 @@ void __init numa_set_distance(int from, int to, int distance); void __init numa_free_distance(void); void __init early_map_cpu_to_node(unsigned int cpu, int nid); +int __init early_cpu_to_node(int cpu); void numa_store_cpu_info(unsigned int cpu); void numa_add_cpu(unsigned int cpu); void numa_remove_cpu(unsigned int cpu); @@ -46,6 +47,7 @@ static inline void numa_remove_cpu(unsigned int cpu) { } static inline void arch_numa_init(void) { } static inline void early_map_cpu_to_node(unsigned int cpu, int nid) { } +static inline int early_cpu_to_node(int cpu) { return 0; } #endif /* CONFIG_NUMA */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/asm-generic/qspinlock.h +++ linux-xilinx-zynqmp-5.15.0/include/asm-generic/qspinlock.h @@ -41,7 +41,7 @@ */ static __always_inline int queued_spin_value_unlocked(struct qspinlock lock) { - return !atomic_read(&lock.val); + return !lock.val.counter; } /** only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/crypto/if_alg.h +++ linux-xilinx-zynqmp-5.15.0/include/crypto/if_alg.h @@ -138,6 +138,7 @@ * recvmsg is invoked. * @init: True if metadata has been sent. * @len: Length of memory allocated for this data structure. + * @inflight: Non-zero when AIO requests are in flight. */ struct af_alg_ctx { struct list_head tsgl_list; @@ -156,6 +157,8 @@ bool init; unsigned int len; + + unsigned int inflight; }; int af_alg_register_type(const struct af_alg_type *type); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/drm/drm_color_mgmt.h +++ linux-xilinx-zynqmp-5.15.0/include/drm/drm_color_mgmt.h @@ -24,6 +24,7 @@ #define __DRM_COLOR_MGMT_H__ #include +#include #include struct drm_crtc; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/drm/drm_fb_helper.h +++ linux-xilinx-zynqmp-5.15.0/include/drm/drm_fb_helper.h @@ -229,8 +229,7 @@ struct drm_fb_helper *fb_helper, struct drm_fb_helper_surface_size *sizes); -void drm_fb_helper_deferred_io(struct fb_info *info, - struct list_head *pagelist); +void drm_fb_helper_deferred_io(struct fb_info *info, struct list_head *pagereflist); ssize_t drm_fb_helper_sys_read(struct fb_info *info, char __user *buf, size_t count, loff_t *ppos); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/dt-bindings/clock/qcom,videocc-sm8150.h +++ linux-xilinx-zynqmp-5.15.0/include/dt-bindings/clock/qcom,videocc-sm8150.h @@ -16,6 +16,10 @@ /* VIDEO_CC Resets */ #define VIDEO_CC_MVSC_CORE_CLK_BCR 0 +#define VIDEO_CC_INTERFACE_BCR 1 +#define VIDEO_CC_MVS0_BCR 2 +#define VIDEO_CC_MVS1_BCR 3 +#define VIDEO_CC_MVSC_BCR 4 /* VIDEO_CC GDSCRs */ #define VENUS_GDSC 0 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/linux/async.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/async.h @@ -90,6 +90,8 @@ return async_schedule_node(func, dev, dev_to_node(dev)); } +bool async_schedule_dev_nocall(async_func_t func, struct device *dev); + /** * async_schedule_dev_domain - A device specific version of async_schedule_domain * @func: function to execute asynchronously only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/linux/clk-provider.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/clk-provider.h @@ -350,7 +350,7 @@ const char *parent_name, const struct clk_hw *parent_hw, const struct clk_parent_data *parent_data, unsigned long flags, unsigned long fixed_rate, unsigned long fixed_accuracy, - unsigned long clk_fixed_flags); + unsigned long clk_fixed_flags, bool devm); struct clk *clk_register_fixed_rate(struct device *dev, const char *name, const char *parent_name, unsigned long flags, unsigned long fixed_rate); @@ -365,7 +365,20 @@ */ #define clk_hw_register_fixed_rate(dev, name, parent_name, flags, fixed_rate) \ __clk_hw_register_fixed_rate((dev), NULL, (name), (parent_name), NULL, \ - NULL, (flags), (fixed_rate), 0, 0) + NULL, (flags), (fixed_rate), 0, 0, false) + +/** + * devm_clk_hw_register_fixed_rate - register fixed-rate clock with the clock + * framework + * @dev: device that is registering this clock + * @name: name of this clock + * @parent_name: name of clock's parent + * @flags: framework-specific flags + * @fixed_rate: non-adjustable clock rate + */ +#define devm_clk_hw_register_fixed_rate(dev, name, parent_name, flags, fixed_rate) \ + __clk_hw_register_fixed_rate((dev), NULL, (name), (parent_name), NULL, \ + NULL, (flags), (fixed_rate), 0, 0, true) /** * clk_hw_register_fixed_rate_parent_hw - register fixed-rate clock with * the clock framework @@ -378,7 +391,7 @@ #define clk_hw_register_fixed_rate_parent_hw(dev, name, parent_hw, flags, \ fixed_rate) \ __clk_hw_register_fixed_rate((dev), NULL, (name), NULL, (parent_hw), \ - NULL, (flags), (fixed_rate), 0, 0) + NULL, (flags), (fixed_rate), 0, 0, false) /** * clk_hw_register_fixed_rate_parent_data - register fixed-rate clock with * the clock framework @@ -392,7 +405,7 @@ fixed_rate) \ __clk_hw_register_fixed_rate((dev), NULL, (name), NULL, NULL, \ (parent_data), (flags), (fixed_rate), 0, \ - 0) + 0, false) /** * clk_hw_register_fixed_rate_with_accuracy - register fixed-rate clock with * the clock framework @@ -408,7 +421,7 @@ fixed_accuracy) \ __clk_hw_register_fixed_rate((dev), NULL, (name), (parent_name), \ NULL, NULL, (flags), (fixed_rate), \ - (fixed_accuracy), 0) + (fixed_accuracy), 0, false) /** * clk_hw_register_fixed_rate_with_accuracy_parent_hw - register fixed-rate * clock with the clock framework @@ -421,9 +434,9 @@ */ #define clk_hw_register_fixed_rate_with_accuracy_parent_hw(dev, name, \ parent_hw, flags, fixed_rate, fixed_accuracy) \ - __clk_hw_register_fixed_rate((dev), NULL, (name), NULL, (parent_hw) \ - NULL, NULL, (flags), (fixed_rate), \ - (fixed_accuracy), 0) + __clk_hw_register_fixed_rate((dev), NULL, (name), NULL, (parent_hw), \ + NULL, (flags), (fixed_rate), \ + (fixed_accuracy), 0, false) /** * clk_hw_register_fixed_rate_with_accuracy_parent_data - register fixed-rate * clock with the clock framework @@ -438,7 +451,21 @@ parent_data, flags, fixed_rate, fixed_accuracy) \ __clk_hw_register_fixed_rate((dev), NULL, (name), NULL, NULL, \ (parent_data), NULL, (flags), \ - (fixed_rate), (fixed_accuracy), 0) + (fixed_rate), (fixed_accuracy), 0, false) +/** + * clk_hw_register_fixed_rate_parent_accuracy - register fixed-rate clock with + * the clock framework + * @dev: device that is registering this clock + * @name: name of this clock + * @parent_name: name of clock's parent + * @flags: framework-specific flags + * @fixed_rate: non-adjustable clock rate + */ +#define clk_hw_register_fixed_rate_parent_accuracy(dev, name, parent_data, \ + flags, fixed_rate) \ + __clk_hw_register_fixed_rate((dev), NULL, (name), NULL, NULL, \ + (parent_data), (flags), (fixed_rate), 0, \ + CLK_FIXED_RATE_PARENT_ACCURACY, false) void clk_unregister_fixed_rate(struct clk *clk); void clk_hw_unregister_fixed_rate(struct clk_hw *hw); @@ -915,6 +942,13 @@ (parent_names), NULL, NULL, (flags), (reg), \ (shift), (mask), (clk_mux_flags), (table), \ (lock)) +#define clk_hw_register_mux_table_parent_data(dev, name, parent_data, \ + num_parents, flags, reg, shift, mask, \ + clk_mux_flags, table, lock) \ + __clk_hw_register_mux((dev), NULL, (name), (num_parents), \ + NULL, NULL, (parent_data), (flags), (reg), \ + (shift), (mask), (clk_mux_flags), (table), \ + (lock)) #define clk_hw_register_mux(dev, name, parent_names, num_parents, flags, reg, \ shift, width, clk_mux_flags, lock) \ __clk_hw_register_mux((dev), NULL, (name), (num_parents), \ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/linux/device/driver.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/device/driver.h @@ -150,6 +150,8 @@ 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, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/linux/dma-fence.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/dma-fence.h @@ -551,6 +551,25 @@ fence->error = error; } +/** + * dma_fence_timestamp - helper to get the completion timestamp of a fence + * @fence: fence to get the timestamp from. + * + * After a fence is signaled the timestamp is updated with the signaling time, + * but setting the timestamp can race with tasks waiting for the signaling. This + * helper busy waits for the correct timestamp to appear. + */ +static inline ktime_t dma_fence_timestamp(struct dma_fence *fence) +{ + if (WARN_ON(!test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))) + return ktime_get(); + + while (!test_bit(DMA_FENCE_FLAG_TIMESTAMP_BIT, &fence->flags)) + cpu_relax(); + + return fence->timestamp; +} + signed long dma_fence_wait_timeout(struct dma_fence *, bool intr, signed long timeout); signed long dma_fence_wait_any_timeout(struct dma_fence **fences, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/linux/dma-map-ops.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/dma-map-ops.h @@ -166,6 +166,7 @@ #ifdef CONFIG_DMA_DECLARE_COHERENT int dma_declare_coherent_memory(struct device *dev, phys_addr_t phys_addr, dma_addr_t device_addr, size_t size); +void dma_release_coherent_memory(struct device *dev); int dma_alloc_from_dev_coherent(struct device *dev, ssize_t size, dma_addr_t *dma_handle, void **ret); int dma_release_from_dev_coherent(struct device *dev, int order, void *vaddr); @@ -177,9 +178,11 @@ { return -ENOSYS; } + #define dma_alloc_from_dev_coherent(dev, size, handle, ret) (0) #define dma_release_from_dev_coherent(dev, order, vaddr) (0) #define dma_mmap_from_dev_coherent(dev, vma, vaddr, order, ret) (0) +static inline void dma_release_coherent_memory(struct device *dev) { } #endif /* CONFIG_DMA_DECLARE_COHERENT */ #ifdef CONFIG_DMA_GLOBAL_POOL only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/linux/hrtimer.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/hrtimer.h @@ -197,6 +197,7 @@ * @max_hang_time: Maximum time spent in hrtimer_interrupt * @softirq_expiry_lock: Lock which is taken while softirq based hrtimer are * expired + * @online: CPU is online from an hrtimers point of view * @timer_waiters: A hrtimer_cancel() invocation waits for the timer * callback to finish. * @expires_next: absolute time of the next event, is required for remote @@ -219,7 +220,8 @@ unsigned int hres_active : 1, in_hrtirq : 1, hang_detected : 1, - softirq_activated : 1; + softirq_activated : 1, + online : 1; #ifdef CONFIG_HIGH_RES_TIMERS unsigned int nr_events; unsigned short nr_retries; @@ -531,9 +533,9 @@ 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 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/linux/iio/adc/adi-axi-adc.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/iio/adc/adi-axi-adc.h @@ -41,6 +41,7 @@ * @reg_access IIO debugfs_reg_access hook for the client ADC * @read_raw IIO read_raw hook for the client ADC * @write_raw IIO write_raw hook for the client ADC + * @read_avail IIO read_avail hook for the client ADC */ struct adi_axi_adc_conv { const struct adi_axi_adc_chip_info *chip_info; @@ -54,6 +55,9 @@ int (*write_raw)(struct adi_axi_adc_conv *conv, struct iio_chan_spec const *chan, int val, int val2, long mask); + int (*read_avail)(struct adi_axi_adc_conv *conv, + struct iio_chan_spec const *chan, + const int **val, int *type, int *length, long mask); }; struct adi_axi_adc_conv *devm_adi_axi_adc_conv_register(struct device *dev, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/linux/iio/afe/rescale.h +++ linux-xilinx-zynqmp-5.15.0/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__ */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/linux/iio/iio.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/iio/iio.h @@ -542,6 +542,8 @@ }; 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 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 @@ __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 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/linux/irq_work.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/irq_work.h @@ -58,6 +58,9 @@ void irq_work_run(void); bool irq_work_needs_cpu(void); void irq_work_single(void *arg); + +void arch_irq_work_raise(void); + #else static inline bool irq_work_needs_cpu(void) { return false; } static inline void irq_work_run(void) { } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/linux/kallsyms.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/kallsyms.h @@ -74,11 +74,11 @@ 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 @@ 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) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/linux/key-type.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/key-type.h @@ -73,6 +73,7 @@ unsigned int flags; #define KEY_TYPE_NET_DOMAIN 0x00000001 /* Keys of this type have a net namespace domain */ +#define KEY_TYPE_INSTANT_REAP 0x00000002 /* Keys of this type don't have a delay after expiring */ /* vet a description */ int (*vet_description)(const char *description); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/linux/mfd/core.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/mfd/core.h @@ -92,7 +92,7 @@ * (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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/linux/mmc/host.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/mmc/host.h @@ -428,6 +428,7 @@ 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 @@ #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) { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/linux/module.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/module.h @@ -867,8 +867,17 @@ } #endif /* CONFIG_MODULE_SIG */ +#if defined(CONFIG_MODULES) && defined(CONFIG_KALLSYMS) int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *, struct module *, unsigned long), void *data); +#else +static inline int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *, + struct module *, unsigned long), + void *data) +{ + return -EOPNOTSUPP; +} +#endif /* CONFIG_MODULES && CONFIG_KALLSYMS */ #endif /* _LINUX_MODULE_H */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/linux/percpu_counter.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/percpu_counter.h @@ -15,6 +15,9 @@ #include #include +/* percpu_counter batch for local add or sub */ +#define PERCPU_COUNTER_LOCAL_BATCH INT_MAX + #ifdef CONFIG_SMP struct percpu_counter { @@ -56,6 +59,22 @@ percpu_counter_add_batch(fbc, amount, percpu_counter_batch); } +/* + * With percpu_counter_add_local() and percpu_counter_sub_local(), counts + * are accumulated in local per cpu counter and not in fbc->count until + * local count overflows PERCPU_COUNTER_LOCAL_BATCH. This makes counter + * write efficient. + * But percpu_counter_sum(), instead of percpu_counter_read(), needs to be + * used to add up the counts from each CPU to account for all the local + * counts. So percpu_counter_add_local() and percpu_counter_sub_local() + * should be used when a counter is updated frequently and read rarely. + */ +static inline void +percpu_counter_add_local(struct percpu_counter *fbc, s64 amount) +{ + percpu_counter_add_batch(fbc, amount, PERCPU_COUNTER_LOCAL_BATCH); +} + static inline s64 percpu_counter_sum_positive(struct percpu_counter *fbc) { s64 ret = __percpu_counter_sum(fbc); @@ -138,6 +157,13 @@ preempt_enable(); } +/* non-SMP percpu_counter_add_local is the same with percpu_counter_add */ +static inline void +percpu_counter_add_local(struct percpu_counter *fbc, s64 amount) +{ + percpu_counter_add(fbc, amount); +} + static inline void percpu_counter_add_batch(struct percpu_counter *fbc, s64 amount, s32 batch) { @@ -193,4 +219,10 @@ percpu_counter_add(fbc, -amount); } +static inline void +percpu_counter_sub_local(struct percpu_counter *fbc, s64 amount) +{ + percpu_counter_add_local(fbc, -amount); +} + #endif /* _LINUX_PERCPU_COUNTER_H */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/linux/platform_data/x86/asus-wmi.h +++ linux-xilinx-zynqmp-5.15.0/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 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/linux/platform_data/x86/soc.h +++ linux-xilinx-zynqmp-5.15.0/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 */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/linux/preempt.h +++ linux-xilinx-zynqmp-5.15.0/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: only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/linux/property.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/property.h @@ -31,7 +31,12 @@ DEV_DMA_COHERENT, }; -struct fwnode_handle *dev_fwnode(struct device *dev); +const struct fwnode_handle *__dev_fwnode_const(const struct device *dev); +struct fwnode_handle *__dev_fwnode(struct device *dev); +#define dev_fwnode(dev) \ + _Generic((dev), \ + const struct device *: __dev_fwnode_const, \ + struct device *: __dev_fwnode)(dev) bool device_property_present(struct device *dev, const char *propname); int device_property_read_u8_array(struct device *dev, const char *propname, @@ -385,7 +390,7 @@ enum dev_dma_attr device_get_dma_attr(struct device *dev); -const void *device_get_match_data(struct device *dev); +const void *device_get_match_data(const struct device *dev); int device_get_phy_mode(struct device *dev); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/linux/qed/qed_rdma_if.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/qed/qed_rdma_if.h @@ -662,7 +662,8 @@ u8 connection_handle, struct qed_ll2_stats *p_stats); int (*ll2_set_mac_filter)(struct qed_dev *cdev, - u8 *old_mac_address, u8 *new_mac_address); + u8 *old_mac_address, + const u8 *new_mac_address); int (*iwarp_set_engine_affin)(struct qed_dev *cdev, bool b_reset); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/linux/syscalls.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/syscalls.h @@ -122,6 +122,7 @@ #define __TYPE_IS_LL(t) (__TYPE_AS(t, 0LL) || __TYPE_AS(t, 0ULL)) #define __SC_LONG(t, a) __typeof(__builtin_choose_expr(__TYPE_IS_LL(t), 0LL, 0L)) a #define __SC_CAST(t, a) (__force t) a +#define __SC_TYPE(t, a) t #define __SC_ARGS(t, a) a #define __SC_TEST(t, a) (void)BUILD_BUG_ON_ZERO(!__TYPE_IS_LL(t) && sizeof(t) > sizeof(long)) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/linux/trace_recursion.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/trace_recursion.h @@ -116,13 +116,9 @@ 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 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/linux/usb/r8152.h +++ linux-xilinx-zynqmp-5.15.0/include/linux/usb/r8152.h @@ -29,6 +29,8 @@ #define VENDOR_ID_LINKSYS 0x13b1 #define VENDOR_ID_NVIDIA 0x0955 #define VENDOR_ID_TPLINK 0x2357 +#define VENDOR_ID_DLINK 0x2001 +#define VENDOR_ID_ASUS 0x0b05 #if IS_REACHABLE(CONFIG_USB_RTL8152) extern u8 rtl8152_get_version(struct usb_interface *intf); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/net/bluetooth/hci_mon.h +++ linux-xilinx-zynqmp-5.15.0/include/net/bluetooth/hci_mon.h @@ -56,7 +56,7 @@ __u8 type; __u8 bus; bdaddr_t bdaddr; - char name[8]; + char name[8] __nonstring; } __packed; #define HCI_MON_NEW_INDEX_SIZE 16 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/net/dst_ops.h +++ linux-xilinx-zynqmp-5.15.0/include/net/dst_ops.h @@ -16,7 +16,7 @@ unsigned short family; unsigned int gc_thresh; - int (*gc)(struct dst_ops *ops); + void (*gc)(struct dst_ops *ops); struct dst_entry * (*check)(struct dst_entry *, __u32 cookie); unsigned int (*default_advmss)(const struct dst_entry *); unsigned int (*mtu)(const struct dst_entry *); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/net/genetlink.h +++ linux-xilinx-zynqmp-5.15.0/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 @@ * 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_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 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/net/llc_pdu.h +++ linux-xilinx-zynqmp-5.15.0/include/net/llc_pdu.h @@ -262,8 +262,7 @@ */ static inline void llc_pdu_decode_sa(struct sk_buff *skb, u8 *sa) { - if (skb->protocol == htons(ETH_P_802_2)) - memcpy(sa, eth_hdr(skb)->h_source, ETH_ALEN); + memcpy(sa, eth_hdr(skb)->h_source, ETH_ALEN); } /** @@ -275,8 +274,7 @@ */ static inline void llc_pdu_decode_da(struct sk_buff *skb, u8 *da) { - if (skb->protocol == htons(ETH_P_802_2)) - memcpy(da, eth_hdr(skb)->h_dest, ETH_ALEN); + memcpy(da, eth_hdr(skb)->h_dest, ETH_ALEN); } /** only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/net/netfilter/nf_nat_redirect.h +++ linux-xilinx-zynqmp-5.15.0/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, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/sound/soc-card.h +++ linux-xilinx-zynqmp-5.15.0/include/sound/soc-card.h @@ -40,6 +40,43 @@ 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) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/trace/events/afs.h +++ linux-xilinx-zynqmp-5.15.0/include/trace/events/afs.h @@ -728,14 +728,14 @@ TRACE_EVENT(afs_call, TP_PROTO(struct afs_call *call, enum afs_call_trace op, - int usage, int outstanding, const void *where), + int ref, int outstanding, const void *where), - TP_ARGS(call, op, usage, outstanding, where), + TP_ARGS(call, op, ref, outstanding, where), TP_STRUCT__entry( __field(unsigned int, call ) __field(int, op ) - __field(int, usage ) + __field(int, ref ) __field(int, outstanding ) __field(const void *, where ) ), @@ -743,15 +743,15 @@ TP_fast_assign( __entry->call = call->debug_id; __entry->op = op; - __entry->usage = usage; + __entry->ref = ref; __entry->outstanding = outstanding; __entry->where = where; ), - TP_printk("c=%08x %s u=%d o=%d sp=%pSR", + TP_printk("c=%08x %s r=%d o=%d sp=%pSR", __entry->call, __print_symbolic(__entry->op, afs_call_traces), - __entry->usage, + __entry->ref, __entry->outstanding, __entry->where) ); @@ -1475,36 +1475,36 @@ __entry->reason = reason; ), - TP_printk("V=%llx %s u=%d", + TP_printk("V=%llx %s ur=%d", __entry->vid, __print_symbolic(__entry->reason, afs_volume_traces), __entry->ref) ); TRACE_EVENT(afs_cell, - TP_PROTO(unsigned int cell_debug_id, int usage, int active, + TP_PROTO(unsigned int cell_debug_id, int ref, int active, enum afs_cell_trace reason), - TP_ARGS(cell_debug_id, usage, active, reason), + TP_ARGS(cell_debug_id, ref, active, reason), TP_STRUCT__entry( __field(unsigned int, cell ) - __field(int, usage ) + __field(int, ref ) __field(int, active ) __field(int, reason ) ), TP_fast_assign( __entry->cell = cell_debug_id; - __entry->usage = usage; + __entry->ref = ref; __entry->active = active; __entry->reason = reason; ), - TP_printk("L=%08x %s u=%d a=%d", + TP_printk("L=%08x %s r=%d a=%d", __entry->cell, __print_symbolic(__entry->reason, afs_cell_traces), - __entry->usage, + __entry->ref, __entry->active) ); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/trace/events/neigh.h +++ linux-xilinx-zynqmp-5.15.0/include/trace/events/neigh.h @@ -39,7 +39,6 @@ ), TP_fast_assign( - struct in6_addr *pin6; __be32 *p32; __entry->family = tbl->family; @@ -47,7 +46,6 @@ __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 @@ #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; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/include/uapi/linux/gtp.h +++ linux-xilinx-zynqmp-5.15.0/include/uapi/linux/gtp.h @@ -32,6 +32,6 @@ GTPA_PAD, __GTPA_MAX, }; -#define GTPA_MAX (__GTPA_MAX + 1) +#define GTPA_MAX (__GTPA_MAX - 1) #endif /* _UAPI_LINUX_GTP_H_ */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/ipc/ipc_sysctl.c +++ linux-xilinx-zynqmp-5.15.0/ipc/ipc_sysctl.c @@ -10,46 +10,20 @@ #include #include #include +#include #include #include +#include #include "util.h" -static void *get_ipc(struct ctl_table *table) -{ - char *which = table->data; - struct ipc_namespace *ipc_ns = current->nsproxy->ipc_ns; - which = (which - (char *)&init_ipc_ns) + (char *)ipc_ns; - return which; -} - -#ifdef CONFIG_PROC_SYSCTL -static int proc_ipc_dointvec(struct ctl_table *table, int write, - void *buffer, size_t *lenp, loff_t *ppos) -{ - struct ctl_table ipc_table; - - memcpy(&ipc_table, table, sizeof(ipc_table)); - ipc_table.data = get_ipc(table); - - return proc_dointvec(&ipc_table, write, buffer, lenp, ppos); -} - -static int proc_ipc_dointvec_minmax(struct ctl_table *table, int write, - void *buffer, size_t *lenp, loff_t *ppos) -{ - struct ctl_table ipc_table; - - memcpy(&ipc_table, table, sizeof(ipc_table)); - ipc_table.data = get_ipc(table); - - return proc_dointvec_minmax(&ipc_table, write, buffer, lenp, ppos); -} - static int proc_ipc_dointvec_minmax_orphans(struct ctl_table *table, int write, void *buffer, size_t *lenp, loff_t *ppos) { - struct ipc_namespace *ns = current->nsproxy->ipc_ns; - int err = proc_ipc_dointvec_minmax(table, write, buffer, lenp, ppos); + struct ipc_namespace *ns = + container_of(table->data, struct ipc_namespace, shm_rmid_forced); + int err; + + err = proc_dointvec_minmax(table, write, buffer, lenp, ppos); if (err < 0) return err; @@ -58,17 +32,6 @@ return err; } -static int proc_ipc_doulongvec_minmax(struct ctl_table *table, int write, - void *buffer, size_t *lenp, loff_t *ppos) -{ - struct ctl_table ipc_table; - memcpy(&ipc_table, table, sizeof(ipc_table)); - ipc_table.data = get_ipc(table); - - return proc_doulongvec_minmax(&ipc_table, write, buffer, - lenp, ppos); -} - static int proc_ipc_auto_msgmni(struct ctl_table *table, int write, void *buffer, size_t *lenp, loff_t *ppos) { @@ -87,14 +50,15 @@ static int proc_ipc_sem_dointvec(struct ctl_table *table, int write, void *buffer, size_t *lenp, loff_t *ppos) { + struct ipc_namespace *ns = + container_of(table->data, struct ipc_namespace, sem_ctls); int ret, semmni; - struct ipc_namespace *ns = current->nsproxy->ipc_ns; semmni = ns->sem_ctls[3]; - ret = proc_ipc_dointvec(table, write, buffer, lenp, ppos); + ret = proc_dointvec(table, write, buffer, lenp, ppos); if (!ret) - ret = sem_check_semmni(current->nsproxy->ipc_ns); + ret = sem_check_semmni(ns); /* * Reset the semmni value if an error happens. @@ -104,40 +68,31 @@ return ret; } -#else -#define proc_ipc_doulongvec_minmax NULL -#define proc_ipc_dointvec NULL -#define proc_ipc_dointvec_minmax NULL -#define proc_ipc_dointvec_minmax_orphans NULL -#define proc_ipc_auto_msgmni NULL -#define proc_ipc_sem_dointvec NULL -#endif - int ipc_mni = IPCMNI; int ipc_mni_shift = IPCMNI_SHIFT; int ipc_min_cycle = RADIX_TREE_MAP_SIZE; -static struct ctl_table ipc_kern_table[] = { +static struct ctl_table ipc_sysctls[] = { { .procname = "shmmax", .data = &init_ipc_ns.shm_ctlmax, .maxlen = sizeof(init_ipc_ns.shm_ctlmax), .mode = 0644, - .proc_handler = proc_ipc_doulongvec_minmax, + .proc_handler = proc_doulongvec_minmax, }, { .procname = "shmall", .data = &init_ipc_ns.shm_ctlall, .maxlen = sizeof(init_ipc_ns.shm_ctlall), .mode = 0644, - .proc_handler = proc_ipc_doulongvec_minmax, + .proc_handler = proc_doulongvec_minmax, }, { .procname = "shmmni", .data = &init_ipc_ns.shm_ctlmni, .maxlen = sizeof(init_ipc_ns.shm_ctlmni), .mode = 0644, - .proc_handler = proc_ipc_dointvec_minmax, + .proc_handler = proc_dointvec_minmax, .extra1 = SYSCTL_ZERO, .extra2 = &ipc_mni, }, @@ -155,7 +110,7 @@ .data = &init_ipc_ns.msg_ctlmax, .maxlen = sizeof(init_ipc_ns.msg_ctlmax), .mode = 0644, - .proc_handler = proc_ipc_dointvec_minmax, + .proc_handler = proc_dointvec_minmax, .extra1 = SYSCTL_ZERO, .extra2 = SYSCTL_INT_MAX, }, @@ -164,7 +119,7 @@ .data = &init_ipc_ns.msg_ctlmni, .maxlen = sizeof(init_ipc_ns.msg_ctlmni), .mode = 0644, - .proc_handler = proc_ipc_dointvec_minmax, + .proc_handler = proc_dointvec_minmax, .extra1 = SYSCTL_ZERO, .extra2 = &ipc_mni, }, @@ -182,7 +137,7 @@ .data = &init_ipc_ns.msg_ctlmnb, .maxlen = sizeof(init_ipc_ns.msg_ctlmnb), .mode = 0644, - .proc_handler = proc_ipc_dointvec_minmax, + .proc_handler = proc_dointvec_minmax, .extra1 = SYSCTL_ZERO, .extra2 = SYSCTL_INT_MAX, }, @@ -198,8 +153,8 @@ .procname = "sem_next_id", .data = &init_ipc_ns.ids[IPC_SEM_IDS].next_id, .maxlen = sizeof(init_ipc_ns.ids[IPC_SEM_IDS].next_id), - .mode = 0644, - .proc_handler = proc_ipc_dointvec_minmax, + .mode = 0444, + .proc_handler = proc_dointvec_minmax, .extra1 = SYSCTL_ZERO, .extra2 = SYSCTL_INT_MAX, }, @@ -207,8 +162,8 @@ .procname = "msg_next_id", .data = &init_ipc_ns.ids[IPC_MSG_IDS].next_id, .maxlen = sizeof(init_ipc_ns.ids[IPC_MSG_IDS].next_id), - .mode = 0644, - .proc_handler = proc_ipc_dointvec_minmax, + .mode = 0444, + .proc_handler = proc_dointvec_minmax, .extra1 = SYSCTL_ZERO, .extra2 = SYSCTL_INT_MAX, }, @@ -216,8 +171,8 @@ .procname = "shm_next_id", .data = &init_ipc_ns.ids[IPC_SHM_IDS].next_id, .maxlen = sizeof(init_ipc_ns.ids[IPC_SHM_IDS].next_id), - .mode = 0644, - .proc_handler = proc_ipc_dointvec_minmax, + .mode = 0444, + .proc_handler = proc_dointvec_minmax, .extra1 = SYSCTL_ZERO, .extra2 = SYSCTL_INT_MAX, }, @@ -225,18 +180,113 @@ {} }; -static struct ctl_table ipc_root_table[] = { - { - .procname = "kernel", - .mode = 0555, - .child = ipc_kern_table, - }, - {} +static struct ctl_table_set *set_lookup(struct ctl_table_root *root) +{ + return ¤t->nsproxy->ipc_ns->ipc_set; +} + +static int set_is_seen(struct ctl_table_set *set) +{ + return ¤t->nsproxy->ipc_ns->ipc_set == set; +} + +static int ipc_permissions(struct ctl_table_header *head, struct ctl_table *table) +{ + int mode = table->mode; + +#ifdef CONFIG_CHECKPOINT_RESTORE + struct ipc_namespace *ns = current->nsproxy->ipc_ns; + + if (((table->data == &ns->ids[IPC_SEM_IDS].next_id) || + (table->data == &ns->ids[IPC_MSG_IDS].next_id) || + (table->data == &ns->ids[IPC_SHM_IDS].next_id)) && + checkpoint_restore_ns_capable(ns->user_ns)) + mode = 0666; +#endif + return mode; +} + +static struct ctl_table_root set_root = { + .lookup = set_lookup, + .permissions = ipc_permissions, }; +bool setup_ipc_sysctls(struct ipc_namespace *ns) +{ + struct ctl_table *tbl; + + setup_sysctl_set(&ns->ipc_set, &set_root, set_is_seen); + + tbl = kmemdup(ipc_sysctls, sizeof(ipc_sysctls), GFP_KERNEL); + if (tbl) { + int i; + + for (i = 0; i < ARRAY_SIZE(ipc_sysctls); i++) { + if (tbl[i].data == &init_ipc_ns.shm_ctlmax) { + tbl[i].data = &ns->shm_ctlmax; + + } else if (tbl[i].data == &init_ipc_ns.shm_ctlall) { + tbl[i].data = &ns->shm_ctlall; + + } else if (tbl[i].data == &init_ipc_ns.shm_ctlmni) { + tbl[i].data = &ns->shm_ctlmni; + + } else if (tbl[i].data == &init_ipc_ns.shm_rmid_forced) { + tbl[i].data = &ns->shm_rmid_forced; + + } else if (tbl[i].data == &init_ipc_ns.msg_ctlmax) { + tbl[i].data = &ns->msg_ctlmax; + + } else if (tbl[i].data == &init_ipc_ns.msg_ctlmni) { + tbl[i].data = &ns->msg_ctlmni; + + } else if (tbl[i].data == &init_ipc_ns.msg_ctlmnb) { + tbl[i].data = &ns->msg_ctlmnb; + + } else if (tbl[i].data == &init_ipc_ns.sem_ctls) { + tbl[i].data = &ns->sem_ctls; +#ifdef CONFIG_CHECKPOINT_RESTORE + } else if (tbl[i].data == &init_ipc_ns.ids[IPC_SEM_IDS].next_id) { + tbl[i].data = &ns->ids[IPC_SEM_IDS].next_id; + + } else if (tbl[i].data == &init_ipc_ns.ids[IPC_MSG_IDS].next_id) { + tbl[i].data = &ns->ids[IPC_MSG_IDS].next_id; + + } else if (tbl[i].data == &init_ipc_ns.ids[IPC_SHM_IDS].next_id) { + tbl[i].data = &ns->ids[IPC_SHM_IDS].next_id; +#endif + } else { + tbl[i].data = NULL; + } + } + + ns->ipc_sysctls = __register_sysctl_table(&ns->ipc_set, "kernel", tbl); + } + if (!ns->ipc_sysctls) { + kfree(tbl); + retire_sysctl_set(&ns->ipc_set); + return false; + } + + return true; +} + +void retire_ipc_sysctls(struct ipc_namespace *ns) +{ + struct ctl_table *tbl; + + tbl = ns->ipc_sysctls->ctl_table_arg; + unregister_sysctl_table(ns->ipc_sysctls); + retire_sysctl_set(&ns->ipc_set); + kfree(tbl); +} + static int __init ipc_sysctl_init(void) { - register_sysctl_table(ipc_root_table); + if (!setup_ipc_sysctls(&init_ipc_ns)) { + pr_warn("ipc sysctl registration failed\n"); + return -ENOMEM; + } return 0; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/ipc/mq_sysctl.c +++ linux-xilinx-zynqmp-5.15.0/ipc/mq_sysctl.c @@ -9,39 +9,9 @@ #include #include -#ifdef CONFIG_PROC_SYSCTL -static void *get_mq(struct ctl_table *table) -{ - char *which = table->data; - struct ipc_namespace *ipc_ns = current->nsproxy->ipc_ns; - which = (which - (char *)&init_ipc_ns) + (char *)ipc_ns; - return which; -} - -static int proc_mq_dointvec(struct ctl_table *table, int write, - void *buffer, size_t *lenp, loff_t *ppos) -{ - struct ctl_table mq_table; - memcpy(&mq_table, table, sizeof(mq_table)); - mq_table.data = get_mq(table); - - return proc_dointvec(&mq_table, write, buffer, lenp, ppos); -} - -static int proc_mq_dointvec_minmax(struct ctl_table *table, int write, - void *buffer, size_t *lenp, loff_t *ppos) -{ - struct ctl_table mq_table; - memcpy(&mq_table, table, sizeof(mq_table)); - mq_table.data = get_mq(table); - - return proc_dointvec_minmax(&mq_table, write, buffer, - lenp, ppos); -} -#else -#define proc_mq_dointvec NULL -#define proc_mq_dointvec_minmax NULL -#endif +#include +#include +#include static int msg_max_limit_min = MIN_MSGMAX; static int msg_max_limit_max = HARD_MSGMAX; @@ -55,14 +25,14 @@ .data = &init_ipc_ns.mq_queues_max, .maxlen = sizeof(int), .mode = 0644, - .proc_handler = proc_mq_dointvec, + .proc_handler = proc_dointvec, }, { .procname = "msg_max", .data = &init_ipc_ns.mq_msg_max, .maxlen = sizeof(int), .mode = 0644, - .proc_handler = proc_mq_dointvec_minmax, + .proc_handler = proc_dointvec_minmax, .extra1 = &msg_max_limit_min, .extra2 = &msg_max_limit_max, }, @@ -71,7 +41,7 @@ .data = &init_ipc_ns.mq_msgsize_max, .maxlen = sizeof(int), .mode = 0644, - .proc_handler = proc_mq_dointvec_minmax, + .proc_handler = proc_dointvec_minmax, .extra1 = &msg_maxsize_limit_min, .extra2 = &msg_maxsize_limit_max, }, @@ -80,7 +50,7 @@ .data = &init_ipc_ns.mq_msg_default, .maxlen = sizeof(int), .mode = 0644, - .proc_handler = proc_mq_dointvec_minmax, + .proc_handler = proc_dointvec_minmax, .extra1 = &msg_max_limit_min, .extra2 = &msg_max_limit_max, }, @@ -89,32 +59,73 @@ .data = &init_ipc_ns.mq_msgsize_default, .maxlen = sizeof(int), .mode = 0644, - .proc_handler = proc_mq_dointvec_minmax, + .proc_handler = proc_dointvec_minmax, .extra1 = &msg_maxsize_limit_min, .extra2 = &msg_maxsize_limit_max, }, {} }; -static struct ctl_table mq_sysctl_dir[] = { - { - .procname = "mqueue", - .mode = 0555, - .child = mq_sysctls, - }, - {} -}; +static struct ctl_table_set *set_lookup(struct ctl_table_root *root) +{ + return ¤t->nsproxy->ipc_ns->mq_set; +} -static struct ctl_table mq_sysctl_root[] = { - { - .procname = "fs", - .mode = 0555, - .child = mq_sysctl_dir, - }, - {} +static int set_is_seen(struct ctl_table_set *set) +{ + return ¤t->nsproxy->ipc_ns->mq_set == set; +} + +static struct ctl_table_root set_root = { + .lookup = set_lookup, }; -struct ctl_table_header *mq_register_sysctl_table(void) +bool setup_mq_sysctls(struct ipc_namespace *ns) { - return register_sysctl_table(mq_sysctl_root); + struct ctl_table *tbl; + + setup_sysctl_set(&ns->mq_set, &set_root, set_is_seen); + + tbl = kmemdup(mq_sysctls, sizeof(mq_sysctls), GFP_KERNEL); + if (tbl) { + int i; + + for (i = 0; i < ARRAY_SIZE(mq_sysctls); i++) { + if (tbl[i].data == &init_ipc_ns.mq_queues_max) + tbl[i].data = &ns->mq_queues_max; + + else if (tbl[i].data == &init_ipc_ns.mq_msg_max) + tbl[i].data = &ns->mq_msg_max; + + else if (tbl[i].data == &init_ipc_ns.mq_msgsize_max) + tbl[i].data = &ns->mq_msgsize_max; + + else if (tbl[i].data == &init_ipc_ns.mq_msg_default) + tbl[i].data = &ns->mq_msg_default; + + else if (tbl[i].data == &init_ipc_ns.mq_msgsize_default) + tbl[i].data = &ns->mq_msgsize_default; + else + tbl[i].data = NULL; + } + + ns->mq_sysctls = __register_sysctl_table(&ns->mq_set, "fs/mqueue", tbl); + } + if (!ns->mq_sysctls) { + kfree(tbl); + retire_sysctl_set(&ns->mq_set); + return false; + } + + return true; +} + +void retire_mq_sysctls(struct ipc_namespace *ns) +{ + struct ctl_table *tbl; + + tbl = ns->mq_sysctls->ctl_table_arg; + unregister_sysctl_table(ns->mq_sysctls); + retire_sysctl_set(&ns->mq_set); + kfree(tbl); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/ipc/msg.c +++ linux-xilinx-zynqmp-5.15.0/ipc/msg.c @@ -39,6 +39,7 @@ #include #include #include +#include #include #include @@ -285,10 +286,10 @@ rcu_read_unlock(); list_for_each_entry_safe(msg, t, &msq->q_messages, m_list) { - atomic_dec(&ns->msg_hdrs); + percpu_counter_sub_local(&ns->percpu_msg_hdrs, 1); free_msg(msg); } - atomic_sub(msq->q_cbytes, &ns->msg_bytes); + percpu_counter_sub_local(&ns->percpu_msg_bytes, msq->q_cbytes); ipc_update_pid(&msq->q_lspid, NULL); ipc_update_pid(&msq->q_lrpid, NULL); ipc_rcu_putref(&msq->q_perm, msg_rcu_free); @@ -495,17 +496,22 @@ msginfo->msgssz = MSGSSZ; msginfo->msgseg = MSGSEG; down_read(&msg_ids(ns).rwsem); - if (cmd == MSG_INFO) { + if (cmd == MSG_INFO) msginfo->msgpool = msg_ids(ns).in_use; - msginfo->msgmap = atomic_read(&ns->msg_hdrs); - msginfo->msgtql = atomic_read(&ns->msg_bytes); + max_idx = ipc_get_maxidx(&msg_ids(ns)); + up_read(&msg_ids(ns).rwsem); + if (cmd == MSG_INFO) { + msginfo->msgmap = min_t(int, + percpu_counter_sum(&ns->percpu_msg_hdrs), + INT_MAX); + msginfo->msgtql = min_t(int, + percpu_counter_sum(&ns->percpu_msg_bytes), + INT_MAX); } else { msginfo->msgmap = MSGMAP; msginfo->msgpool = MSGPOOL; msginfo->msgtql = MSGTQL; } - max_idx = ipc_get_maxidx(&msg_ids(ns)); - up_read(&msg_ids(ns).rwsem); return (max_idx < 0) ? 0 : max_idx; } @@ -935,8 +941,8 @@ list_add_tail(&msg->m_list, &msq->q_messages); msq->q_cbytes += msgsz; msq->q_qnum++; - atomic_add(msgsz, &ns->msg_bytes); - atomic_inc(&ns->msg_hdrs); + percpu_counter_add_local(&ns->percpu_msg_bytes, msgsz); + percpu_counter_add_local(&ns->percpu_msg_hdrs, 1); } err = 0; @@ -1159,8 +1165,8 @@ msq->q_rtime = ktime_get_real_seconds(); ipc_update_pid(&msq->q_lrpid, task_tgid(current)); msq->q_cbytes -= msg->m_ts; - atomic_sub(msg->m_ts, &ns->msg_bytes); - atomic_dec(&ns->msg_hdrs); + percpu_counter_sub_local(&ns->percpu_msg_bytes, msg->m_ts); + percpu_counter_sub_local(&ns->percpu_msg_hdrs, 1); ss_wakeup(msq, &wake_q, false); goto out_unlock0; @@ -1297,20 +1303,34 @@ } #endif -void msg_init_ns(struct ipc_namespace *ns) +int msg_init_ns(struct ipc_namespace *ns) { + int ret; + ns->msg_ctlmax = MSGMAX; ns->msg_ctlmnb = MSGMNB; ns->msg_ctlmni = MSGMNI; - atomic_set(&ns->msg_bytes, 0); - atomic_set(&ns->msg_hdrs, 0); + ret = percpu_counter_init(&ns->percpu_msg_bytes, 0, GFP_KERNEL); + if (ret) + goto fail_msg_bytes; + ret = percpu_counter_init(&ns->percpu_msg_hdrs, 0, GFP_KERNEL); + if (ret) + goto fail_msg_hdrs; ipc_init_ids(&ns->ids[IPC_MSG_IDS]); + return 0; + +fail_msg_hdrs: + percpu_counter_destroy(&ns->percpu_msg_bytes); +fail_msg_bytes: + return ret; } #ifdef CONFIG_IPC_NS void msg_exit_ns(struct ipc_namespace *ns) { + percpu_counter_destroy(&ns->percpu_msg_bytes); + percpu_counter_destroy(&ns->percpu_msg_hdrs); free_ipcs(ns, &msg_ids(ns), freeque); idr_destroy(&ns->ids[IPC_MSG_IDS].ipcs_idr); rhashtable_destroy(&ns->ids[IPC_MSG_IDS].key_ht); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/ipc/util.h +++ linux-xilinx-zynqmp-5.15.0/ipc/util.h @@ -64,7 +64,7 @@ #ifdef CONFIG_SYSVIPC void sem_init_ns(struct ipc_namespace *ns); -void msg_init_ns(struct ipc_namespace *ns); +int msg_init_ns(struct ipc_namespace *ns); void shm_init_ns(struct ipc_namespace *ns); void sem_exit_ns(struct ipc_namespace *ns); @@ -72,7 +72,7 @@ void shm_exit_ns(struct ipc_namespace *ns); #else static inline void sem_init_ns(struct ipc_namespace *ns) { } -static inline void msg_init_ns(struct ipc_namespace *ns) { } +static inline int msg_init_ns(struct ipc_namespace *ns) { return 0; } static inline void shm_init_ns(struct ipc_namespace *ns) { } static inline void sem_exit_ns(struct ipc_namespace *ns) { } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/kernel/audit_watch.c +++ linux-xilinx-zynqmp-5.15.0/kernel/audit_watch.c @@ -527,11 +527,18 @@ 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); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/kernel/bpf/lpm_trie.c +++ linux-xilinx-zynqmp-5.15.0/kernel/bpf/lpm_trie.c @@ -230,6 +230,9 @@ struct lpm_trie_node *node, *found = NULL; struct bpf_lpm_trie_key *key = _key; + if (key->prefixlen > trie->max_prefixlen) + return NULL; + /* Start walking the trie from the root node ... */ for (node = rcu_dereference_check(trie->root, rcu_read_lock_bh_held()); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/kernel/bpf/map_in_map.c +++ linux-xilinx-zynqmp-5.15.0/kernel/bpf/map_in_map.c @@ -108,7 +108,7 @@ return inner_map; } -void bpf_map_fd_put_ptr(void *ptr) +void bpf_map_fd_put_ptr(struct bpf_map *map, void *ptr, bool need_defer) { /* ptr->ops->map_free() has to go through one * rcu grace period by itself. only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/kernel/bpf/map_in_map.h +++ linux-xilinx-zynqmp-5.15.0/kernel/bpf/map_in_map.h @@ -13,7 +13,7 @@ void bpf_map_meta_free(struct bpf_map *map_meta); void *bpf_map_fd_get_ptr(struct bpf_map *map, struct file *map_file, int ufd); -void bpf_map_fd_put_ptr(void *ptr); +void bpf_map_fd_put_ptr(struct bpf_map *map, void *ptr, bool need_defer); u32 bpf_map_fd_sys_lookup_elem(void *ptr); #endif only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/kernel/dma/coherent.c +++ linux-xilinx-zynqmp-5.15.0/kernel/dma/coherent.c @@ -75,7 +75,7 @@ return ERR_PTR(-ENOMEM); } -static void dma_release_coherent_memory(struct dma_coherent_mem *mem) +static void _dma_release_coherent_memory(struct dma_coherent_mem *mem) { if (!mem) return; @@ -127,10 +127,18 @@ ret = dma_assign_coherent_memory(dev, mem); if (ret) - dma_release_coherent_memory(mem); + _dma_release_coherent_memory(mem); return ret; } +void dma_release_coherent_memory(struct device *dev) +{ + if (dev) { + _dma_release_coherent_memory(dev->dma_mem); + dev->dma_mem = NULL; + } +} + static void *__dma_alloc_from_coherent(struct device *dev, struct dma_coherent_mem *mem, ssize_t size, dma_addr_t *dma_handle) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/kernel/irq/generic-chip.c +++ linux-xilinx-zynqmp-5.15.0/kernel/irq/generic-chip.c @@ -541,21 +541,34 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/kernel/irq/matrix.c +++ linux-xilinx-zynqmp-5.15.0/kernel/irq/matrix.c @@ -466,16 +466,16 @@ } /** - * 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 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/kernel/kallsyms.c +++ linux-xilinx-zynqmp-5.15.0/kernel/kallsyms.c @@ -204,7 +204,6 @@ 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 @@ } return 0; } -#endif /* CONFIG_LIVEPATCH */ static unsigned long get_symbol_pos(unsigned long addr, unsigned long *symbolsize, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/kernel/locking/test-ww_mutex.c +++ linux-xilinx-zynqmp-5.15.0/kernel/locking/test-ww_mutex.c @@ -426,7 +426,6 @@ } while (!time_after(jiffies, stress->timeout)); kfree(order); - kfree(stress); } struct reorder_lock { @@ -491,7 +490,6 @@ 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 @@ break; } } while (!time_after(jiffies, stress->timeout)); - - kfree(stress); } #define STRESS_INORDER BIT(0) @@ -524,15 +520,24 @@ 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 @@ 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 @@ for (n = 0; n < nlocks; n++) ww_mutex_destroy(&locks[n]); + kfree(stress_array); kfree(locks); return 0; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/kernel/rcu/tree.h +++ linux-xilinx-zynqmp-5.15.0/kernel/rcu/tree.h @@ -351,6 +351,10 @@ /* 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 */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/kernel/reboot.c +++ linux-xilinx-zynqmp-5.15.0/kernel/reboot.c @@ -65,6 +65,7 @@ void emergency_restart(void) { kmsg_dump(KMSG_DUMP_EMERG); + system_state = SYSTEM_RESTART; machine_emergency_restart(); } EXPORT_SYMBOL_GPL(emergency_restart); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/lib/mpi/ec.c +++ linux-xilinx-zynqmp-5.15.0/lib/mpi/ec.c @@ -584,6 +584,9 @@ ctx->a = mpi_copy(a); ctx->b = mpi_copy(b); + ctx->d = NULL; + ctx->t.two_inv_p = NULL; + ctx->t.p_barrett = use_barrett > 0 ? mpi_barrett_init(ctx->p, 0) : NULL; mpi_ec_get_reset(ctx); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/lib/test_ida.c +++ linux-xilinx-zynqmp-5.15.0/lib/test_ida.c @@ -150,6 +150,45 @@ 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 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/mm/percpu-internal.h +++ linux-xilinx-zynqmp-5.15.0/mm/percpu-internal.h @@ -40,10 +40,17 @@ struct list_head list; /* linked to pcpu_slot lists */ int free_bytes; /* free bytes in the chunk */ struct pcpu_block_md chunk_md; - void *base_addr; /* base address of this chunk */ + unsigned long *bound_map; /* boundary map */ + + /* + * base_addr is the base address of this chunk. + * To reduce false sharing, current layout is optimized to make sure + * base_addr locate in the different cacheline with free_bytes and + * chunk_md. + */ + void *base_addr ____cacheline_aligned_in_smp; unsigned long *alloc_map; /* allocation map */ - unsigned long *bound_map; /* boundary map */ struct pcpu_block_md *md_blocks; /* metadata blocks */ void *data; /* chunk data */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/mm/readahead.c +++ linux-xilinx-zynqmp-5.15.0/mm/readahead.c @@ -627,7 +627,8 @@ */ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/mm/sparse.c +++ linux-xilinx-zynqmp-5.15.0/mm/sparse.c @@ -790,6 +790,13 @@ unsigned long section_nr = pfn_to_section_nr(pfn); /* + * Mark the section invalid so that valid_section() + * return false. This prevents code from dereferencing + * ms->usage array. + */ + ms->section_mem_map &= ~SECTION_HAS_MEM_MAP; + + /* * When removing an early section, the usage map is kept (as the * usage maps of other sections fall into the same page). It * will be re-used when re-adding the section - which is then no @@ -797,16 +804,10 @@ * was allocated during boot. */ if (!PageReserved(virt_to_page(ms->usage))) { - kfree(ms->usage); - ms->usage = NULL; + kfree_rcu(ms->usage, rcu); + WRITE_ONCE(ms->usage, NULL); } memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr); - /* - * Mark the section invalid so that valid_section() - * return false. This prevents code from dereferencing - * ms->usage array. - */ - ms->section_mem_map &= ~SECTION_HAS_MEM_MAP; } /* only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/8021q/vlan.h +++ linux-xilinx-zynqmp-5.15.0/net/8021q/vlan.h @@ -129,6 +129,7 @@ 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 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/8021q/vlan_core.c +++ linux-xilinx-zynqmp-5.15.0/net/8021q/vlan_core.c @@ -407,6 +407,8 @@ return 0; list_for_each_entry(vid_info, &vlan_info->vid_list, list) { + if (!vlan_hw_filter_capable(by_dev, vid_info->proto)) + continue; err = vlan_vid_add(dev, vid_info->proto, vid_info->vid); if (err) goto unwind; @@ -417,6 +419,8 @@ list_for_each_entry_continue_reverse(vid_info, &vlan_info->vid_list, list) { + if (!vlan_hw_filter_capable(by_dev, vid_info->proto)) + continue; vlan_vid_del(dev, vid_info->proto, vid_info->vid); } @@ -436,8 +440,11 @@ if (!vlan_info) return; - list_for_each_entry(vid_info, &vlan_info->vid_list, list) + list_for_each_entry(vid_info, &vlan_info->vid_list, list) { + if (!vlan_hw_filter_capable(by_dev, vid_info->proto)) + continue; vlan_vid_del(dev, vid_info->proto, vid_info->vid); + } } EXPORT_SYMBOL(vlan_vids_del_by_dev); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/8021q/vlan_netlink.c +++ linux-xilinx-zynqmp-5.15.0/net/8021q/vlan_netlink.c @@ -118,12 +118,16 @@ } if (data[IFLA_VLAN_INGRESS_QOS]) { nla_for_each_nested(attr, data[IFLA_VLAN_INGRESS_QOS], rem) { + if (nla_type(attr) != IFLA_VLAN_QOS_MAPPING) + continue; m = nla_data(attr); vlan_dev_set_ingress_priority(dev, m->to, m->from); } } if (data[IFLA_VLAN_EGRESS_QOS]) { nla_for_each_nested(attr, data[IFLA_VLAN_EGRESS_QOS], rem) { + if (nla_type(attr) != IFLA_VLAN_QOS_MAPPING) + continue; m = nla_data(attr); err = vlan_dev_set_egress_priority(dev, m->from, m->to); if (err) @@ -183,10 +187,11 @@ 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; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/appletalk/ddp.c +++ linux-xilinx-zynqmp-5.15.0/net/appletalk/ddp.c @@ -1812,15 +1812,14 @@ 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; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/atm/ioctl.c +++ linux-xilinx-zynqmp-5.15.0/net/atm/ioctl.c @@ -73,14 +73,17 @@ 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: only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/bluetooth/hci_debugfs.c +++ linux-xilinx-zynqmp-5.15.0/net/bluetooth/hci_debugfs.c @@ -1044,10 +1044,12 @@ { struct hci_dev *hdev = data; - if (val > hdev->le_max_key_size || val < SMP_MIN_ENC_KEY_SIZE) + hci_dev_lock(hdev); + if (val > hdev->le_max_key_size || val < SMP_MIN_ENC_KEY_SIZE) { + hci_dev_unlock(hdev); return -EINVAL; + } - hci_dev_lock(hdev); hdev->le_min_key_size = val; hci_dev_unlock(hdev); @@ -1072,10 +1074,12 @@ { struct hci_dev *hdev = data; - if (val > SMP_MAX_ENC_KEY_SIZE || val < hdev->le_min_key_size) + hci_dev_lock(hdev); + if (val > SMP_MAX_ENC_KEY_SIZE || val < hdev->le_min_key_size) { + hci_dev_unlock(hdev); return -EINVAL; + } - hci_dev_lock(hdev); hdev->le_max_key_size = val; hci_dev_unlock(hdev); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/bluetooth/smp.c +++ linux-xilinx-zynqmp-5.15.0/net/bluetooth/smp.c @@ -1058,6 +1058,7 @@ } if (smp->remote_irk) { + smp->remote_irk->link_type = hcon->type; mgmt_new_irk(hdev, smp->remote_irk, persistent); /* Now that user space can be considered to know the @@ -1072,24 +1073,28 @@ } if (smp->csrk) { + smp->csrk->link_type = hcon->type; smp->csrk->bdaddr_type = hcon->dst_type; bacpy(&smp->csrk->bdaddr, &hcon->dst); mgmt_new_csrk(hdev, smp->csrk, persistent); } if (smp->responder_csrk) { + smp->responder_csrk->link_type = hcon->type; smp->responder_csrk->bdaddr_type = hcon->dst_type; bacpy(&smp->responder_csrk->bdaddr, &hcon->dst); mgmt_new_csrk(hdev, smp->responder_csrk, persistent); } if (smp->ltk) { + smp->ltk->link_type = hcon->type; smp->ltk->bdaddr_type = hcon->dst_type; bacpy(&smp->ltk->bdaddr, &hcon->dst); mgmt_new_ltk(hdev, smp->ltk, persistent); } if (smp->responder_ltk) { + smp->responder_ltk->link_type = hcon->type; smp->responder_ltk->bdaddr_type = hcon->dst_type; bacpy(&smp->responder_ltk->bdaddr, &hcon->dst); mgmt_new_ltk(hdev, smp->responder_ltk, persistent); @@ -1109,6 +1114,8 @@ key = hci_add_link_key(hdev, smp->conn->hcon, &hcon->dst, smp->link_key, type, 0, &persistent); if (key) { + key->link_type = hcon->type; + key->bdaddr_type = hcon->dst_type; mgmt_new_link_key(hdev, key, persistent); /* Don't keep debug keys around if the relevant only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/bridge/br_cfm_netlink.c +++ linux-xilinx-zynqmp-5.15.0/net/bridge/br_cfm_netlink.c @@ -362,7 +362,7 @@ memset(&tx_info, 0, sizeof(tx_info)); - instance = nla_get_u32(tb[IFLA_BRIDGE_CFM_CC_RDI_INSTANCE]); + instance = nla_get_u32(tb[IFLA_BRIDGE_CFM_CC_CCM_TX_INSTANCE]); nla_memcpy(&tx_info.dmac.addr, tb[IFLA_BRIDGE_CFM_CC_CCM_TX_DMAC], sizeof(tx_info.dmac.addr)); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/bridge/netfilter/nf_conntrack_bridge.c +++ linux-xilinx-zynqmp-5.15.0/net/bridge/netfilter/nf_conntrack_bridge.c @@ -36,7 +36,7 @@ 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 && only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/bridge/netfilter/nft_meta_bridge.c +++ linux-xilinx-zynqmp-5.15.0/net/bridge/netfilter/nft_meta_bridge.c @@ -53,7 +53,7 @@ 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: only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/can/j1939/j1939-priv.h +++ linux-xilinx-zynqmp-5.15.0/net/can/j1939/j1939-priv.h @@ -86,7 +86,7 @@ unsigned int tp_max_packet_size; /* lock for j1939_socks list */ - spinlock_t j1939_socks_lock; + rwlock_t j1939_socks_lock; struct list_head j1939_socks; struct kref rx_kref; @@ -301,6 +301,7 @@ int ifindex; struct j1939_addr addr; + spinlock_t filters_lock; struct j1939_filter *filters; int nfilters; pgn_t pgn_rx_filter; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/core/dst.c +++ linux-xilinx-zynqmp-5.15.0/net/core/dst.c @@ -82,12 +82,8 @@ if (ops->gc && !(flags & DST_NOCOUNT) && - dst_entries_get_fast(ops) > ops->gc_thresh) { - if (ops->gc(ops)) { - pr_notice_ratelimited("Route cache is full: consider increasing sysctl net.ipv6.route.max_size.\n"); - return NULL; - } - } + dst_entries_get_fast(ops) > ops->gc_thresh) + ops->gc(ops); dst = kmem_cache_alloc(ops->kmem_cachep, GFP_ATOMIC); if (!dst) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/core/pktgen.c +++ linux-xilinx-zynqmp-5.15.0/net/core/pktgen.c @@ -668,19 +668,19 @@ 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"); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/core/request_sock.c +++ linux-xilinx-zynqmp-5.15.0/net/core/request_sock.c @@ -33,9 +33,6 @@ void reqsk_queue_alloc(struct request_sock_queue *queue) { - spin_lock_init(&queue->rskq_lock); - - spin_lock_init(&queue->fastopenq.lock); queue->fastopenq.rskq_rst_head = NULL; queue->fastopenq.rskq_rst_tail = NULL; queue->fastopenq.qlen = 0; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/dns_resolver/dns_key.c +++ linux-xilinx-zynqmp-5.15.0/net/dns_resolver/dns_key.c @@ -91,7 +91,6 @@ static int dns_resolver_preparse(struct key_preparsed_payload *prep) { - const struct dns_payload_header *bin; struct user_key_payload *upayload; unsigned long derrno; int ret; @@ -102,26 +101,34 @@ return -EINVAL; if (data[0] == 0) { + const struct dns_server_list_v1_header *v1; + /* It may be a server list. */ - if (datalen <= sizeof(*bin)) + if (datalen < sizeof(*v1)) return -EINVAL; - bin = (const struct dns_payload_header *)data; - kenter("[%u,%u],%u", bin->content, bin->version, datalen); - if (bin->content != DNS_PAYLOAD_IS_SERVER_LIST) { + v1 = (const struct dns_server_list_v1_header *)data; + kenter("[%u,%u],%u", v1->hdr.content, v1->hdr.version, datalen); + if (v1->hdr.content != DNS_PAYLOAD_IS_SERVER_LIST) { pr_warn_ratelimited( "dns_resolver: Unsupported content type (%u)\n", - bin->content); + v1->hdr.content); return -EINVAL; } - if (bin->version != 1) { + if (v1->hdr.version != 1) { pr_warn_ratelimited( "dns_resolver: Unsupported server list version (%u)\n", - bin->version); + v1->hdr.version); return -EINVAL; } + if ((v1->status != DNS_LOOKUP_GOOD && + v1->status != DNS_LOOKUP_GOOD_WITH_BAD)) { + if (prep->expiry == TIME64_MAX) + prep->expiry = ktime_get_real_seconds() + 1; + } + result_len = datalen; goto store_result; } @@ -314,7 +321,7 @@ struct key_type key_type_dns_resolver = { .name = "dns_resolver", - .flags = KEY_TYPE_NET_DOMAIN, + .flags = KEY_TYPE_NET_DOMAIN | KEY_TYPE_INSTANT_REAP, .preparse = dns_resolver_preparse, .free_preparse = dns_resolver_free_preparse, .instantiate = generic_key_instantiate, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/ife/ife.c +++ linux-xilinx-zynqmp-5.15.0/net/ife/ife.c @@ -82,6 +82,7 @@ if (unlikely(!pskb_may_pull(skb, total_pull))) return NULL; + ifehdr = (struct ifeheadr *)(skb->data + skb->dev->hard_header_len); skb_set_mac_header(skb, total_pull); __skb_pull(skb, total_pull); *metalen = ifehdrln - IFE_METAHDRLEN; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/ipv6/addrconf_core.c +++ linux-xilinx-zynqmp-5.15.0/net/ipv6/addrconf_core.c @@ -220,19 +220,26 @@ EXPORT_SYMBOL_GPL(ipv6_stub); /* IPv6 Wildcard Address and Loopback Address defined by RFC2553 */ -const struct in6_addr in6addr_loopback = IN6ADDR_LOOPBACK_INIT; +const struct in6_addr in6addr_loopback __aligned(BITS_PER_LONG/8) + = IN6ADDR_LOOPBACK_INIT; EXPORT_SYMBOL(in6addr_loopback); -const struct in6_addr in6addr_any = IN6ADDR_ANY_INIT; +const struct in6_addr in6addr_any __aligned(BITS_PER_LONG/8) + = IN6ADDR_ANY_INIT; EXPORT_SYMBOL(in6addr_any); -const struct in6_addr in6addr_linklocal_allnodes = IN6ADDR_LINKLOCAL_ALLNODES_INIT; +const struct in6_addr in6addr_linklocal_allnodes __aligned(BITS_PER_LONG/8) + = IN6ADDR_LINKLOCAL_ALLNODES_INIT; EXPORT_SYMBOL(in6addr_linklocal_allnodes); -const struct in6_addr in6addr_linklocal_allrouters = IN6ADDR_LINKLOCAL_ALLROUTERS_INIT; +const struct in6_addr in6addr_linklocal_allrouters __aligned(BITS_PER_LONG/8) + = IN6ADDR_LINKLOCAL_ALLROUTERS_INIT; EXPORT_SYMBOL(in6addr_linklocal_allrouters); -const struct in6_addr in6addr_interfacelocal_allnodes = IN6ADDR_INTERFACELOCAL_ALLNODES_INIT; +const struct in6_addr in6addr_interfacelocal_allnodes __aligned(BITS_PER_LONG/8) + = IN6ADDR_INTERFACELOCAL_ALLNODES_INIT; EXPORT_SYMBOL(in6addr_interfacelocal_allnodes); -const struct in6_addr in6addr_interfacelocal_allrouters = IN6ADDR_INTERFACELOCAL_ALLROUTERS_INIT; +const struct in6_addr in6addr_interfacelocal_allrouters __aligned(BITS_PER_LONG/8) + = IN6ADDR_INTERFACELOCAL_ALLROUTERS_INIT; EXPORT_SYMBOL(in6addr_interfacelocal_allrouters); -const struct in6_addr in6addr_sitelocal_allrouters = IN6ADDR_SITELOCAL_ALLROUTERS_INIT; +const struct in6_addr in6addr_sitelocal_allrouters __aligned(BITS_PER_LONG/8) + = IN6ADDR_SITELOCAL_ALLROUTERS_INIT; EXPORT_SYMBOL(in6addr_sitelocal_allrouters); static void snmp6_free_dev(struct inet6_dev *idev) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/llc/llc_core.c +++ linux-xilinx-zynqmp-5.15.0/net/llc/llc_core.c @@ -135,22 +135,15 @@ .func = llc_rcv, }; -static struct packet_type llc_tr_packet_type __read_mostly = { - .type = cpu_to_be16(ETH_P_TR_802_2), - .func = llc_rcv, -}; - static int __init llc_init(void) { dev_add_pack(&llc_packet_type); - dev_add_pack(&llc_tr_packet_type); return 0; } static void __exit llc_exit(void) { dev_remove_pack(&llc_packet_type); - dev_remove_pack(&llc_tr_packet_type); } module_init(llc_init); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/llc/llc_s_ac.c +++ linux-xilinx-zynqmp-5.15.0/net/llc/llc_s_ac.c @@ -153,6 +153,9 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/llc/llc_station.c +++ linux-xilinx-zynqmp-5.15.0/net/llc/llc_station.c @@ -76,6 +76,9 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/mptcp/mptcp_diag.c +++ linux-xilinx-zynqmp-5.15.0/net/mptcp/mptcp_diag.c @@ -66,20 +66,103 @@ 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 @@ 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 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/ncsi/internal.h +++ linux-xilinx-zynqmp-5.15.0/net/ncsi/internal.h @@ -105,8 +105,11 @@ struct ncsi_channel_version { - u32 version; /* Supported BCD encoded NCSI version */ - u32 alpha2; /* Supported BCD encoded NCSI version */ + u8 major; /* NCSI version major */ + u8 minor; /* NCSI version minor */ + u8 update; /* NCSI version update */ + char alpha1; /* NCSI version alpha1 */ + char alpha2; /* NCSI version alpha2 */ u8 fw_name[12]; /* Firmware name string */ u32 fw_version; /* Firmware version */ u16 pci_ids[4]; /* PCI identification */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/ncsi/ncsi-pkt.h +++ linux-xilinx-zynqmp-5.15.0/net/ncsi/ncsi-pkt.h @@ -197,9 +197,12 @@ /* Get Version ID */ struct ncsi_rsp_gvi_pkt { struct ncsi_rsp_pkt_hdr rsp; /* Response header */ - __be32 ncsi_version; /* NCSI version */ + unsigned char major; /* NCSI version major */ + unsigned char minor; /* NCSI version minor */ + unsigned char update; /* NCSI version update */ + unsigned char alpha1; /* NCSI version alpha1 */ unsigned char reserved[3]; /* Reserved */ - unsigned char alpha2; /* NCSI version */ + unsigned char alpha2; /* NCSI version alpha2 */ unsigned char fw_name[12]; /* f/w name string */ __be32 fw_version; /* f/w version */ __be16 pci_ids[4]; /* PCI IDs */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/netfilter/ipset/ip_set_bitmap_gen.h +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/ipset/ip_set_bitmap_gen.h @@ -28,6 +28,7 @@ #define mtype_del IPSET_TOKEN(MTYPE, _del) #define mtype_list IPSET_TOKEN(MTYPE, _list) #define mtype_gc IPSET_TOKEN(MTYPE, _gc) +#define mtype_cancel_gc IPSET_TOKEN(MTYPE, _cancel_gc) #define mtype MTYPE #define get_ext(set, map, id) ((map)->extensions + ((set)->dsize * (id))) @@ -57,9 +58,6 @@ { struct mtype *map = set->data; - if (SET_WITH_TIMEOUT(set)) - del_timer_sync(&map->gc); - if (set->dsize && set->extensions & IPSET_EXT_DESTROY) mtype_ext_cleanup(set); ip_set_free(map->members); @@ -288,6 +286,15 @@ add_timer(&map->gc); } +static void +mtype_cancel_gc(struct ip_set *set) +{ + struct mtype *map = set->data; + + if (SET_WITH_TIMEOUT(set)) + del_timer_sync(&map->gc); +} + static const struct ip_set_type_variant mtype = { .kadt = mtype_kadt, .uadt = mtype_uadt, @@ -301,6 +308,7 @@ .head = mtype_head, .list = mtype_list, .same_set = mtype_same_set, + .cancel_gc = mtype_cancel_gc, }; #endif /* __IP_SET_BITMAP_IP_GEN_H */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/netfilter/ipset/ip_set_list_set.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/ipset/ip_set_list_set.c @@ -426,9 +426,6 @@ struct list_set *map = set->data; struct set_elem *e, *n; - if (SET_WITH_TIMEOUT(set)) - del_timer_sync(&map->gc); - list_for_each_entry_safe(e, n, &map->members, list) { list_del(&e->list); ip_set_put_byindex(map->net, e->id); @@ -545,6 +542,15 @@ a->extensions == b->extensions; } +static void +list_set_cancel_gc(struct ip_set *set) +{ + struct list_set *map = set->data; + + if (SET_WITH_TIMEOUT(set)) + del_timer_sync(&map->gc); +} + static const struct ip_set_type_variant set_variant = { .kadt = list_set_kadt, .uadt = list_set_uadt, @@ -558,6 +564,7 @@ .head = list_set_head, .list = list_set_list, .same_set = list_set_same_set, + .cancel_gc = list_set_cancel_gc, }; static void only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/netfilter/nf_log.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nf_log.c @@ -193,11 +193,12 @@ return; } - BUG_ON(loggers[pf][type] == NULL); - rcu_read_lock(); logger = rcu_dereference(loggers[pf][type]); - module_put(logger->me); + if (!logger) + WARN_ON_ONCE(1); + else + module_put(logger->me); rcu_read_unlock(); } EXPORT_SYMBOL_GPL(nf_logger_put); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/netfilter/nf_nat_redirect.c +++ linux-xilinx-zynqmp-5.15.0/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 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/netfilter/nft_compat.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_compat.c @@ -200,6 +200,7 @@ static int nft_parse_compat(const struct nlattr *attr, u16 *proto, bool *inv) { struct nlattr *tb[NFTA_RULE_COMPAT_MAX+1]; + u32 l4proto; u32 flags; int err; @@ -212,12 +213,18 @@ return -EINVAL; flags = ntohl(nla_get_be32(tb[NFTA_RULE_COMPAT_FLAGS])); - if (flags & ~NFT_RULE_COMPAT_F_MASK) + if (flags & NFT_RULE_COMPAT_F_UNUSED || + flags & ~NFT_RULE_COMPAT_F_MASK) return -EINVAL; if (flags & NFT_RULE_COMPAT_F_INV) *inv = true; - *proto = ntohl(nla_get_be32(tb[NFTA_RULE_COMPAT_PROTO])); + l4proto = ntohl(nla_get_be32(tb[NFTA_RULE_COMPAT_PROTO])); + if (l4proto > U16_MAX) + return -EINVAL; + + *proto = l4proto; + return 0; } @@ -349,6 +356,12 @@ unsigned int hook_mask = 0; int ret; + if (ctx->family != NFPROTO_IPV4 && + ctx->family != NFPROTO_IPV6 && + ctx->family != NFPROTO_BRIDGE && + ctx->family != NFPROTO_ARP) + return -EOPNOTSUPP; + if (nft_is_base_chain(ctx->chain)) { const struct nft_base_chain *basechain = nft_base_chain(ctx->chain); @@ -592,6 +605,12 @@ unsigned int hook_mask = 0; int ret; + if (ctx->family != NFPROTO_IPV4 && + ctx->family != NFPROTO_IPV6 && + ctx->family != NFPROTO_BRIDGE && + ctx->family != NFPROTO_ARP) + return -EOPNOTSUPP; + if (nft_is_base_chain(ctx->chain)) { const struct nft_base_chain *basechain = nft_base_chain(ctx->chain); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/netfilter/nft_connlimit.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_connlimit.c @@ -14,7 +14,7 @@ #include struct nft_connlimit { - struct nf_conncount_list list; + struct nf_conncount_list *list; u32 limit; bool invert; }; @@ -43,12 +43,12 @@ return; } - if (nf_conncount_add(nft_net(pkt), &priv->list, tuple_ptr, zone)) { + if (nf_conncount_add(nft_net(pkt), priv->list, tuple_ptr, zone)) { regs->verdict.code = NF_DROP; return; } - count = priv->list.count; + count = priv->list->count; if ((count > priv->limit) ^ priv->invert) { regs->verdict.code = NFT_BREAK; @@ -62,6 +62,7 @@ { bool invert = false; u32 flags, limit; + int err; if (!tb[NFTA_CONNLIMIT_COUNT]) return -EINVAL; @@ -76,18 +77,31 @@ invert = true; } - nf_conncount_list_init(&priv->list); + priv->list = kmalloc(sizeof(*priv->list), GFP_KERNEL_ACCOUNT); + if (!priv->list) + return -ENOMEM; + + nf_conncount_list_init(priv->list); priv->limit = limit; priv->invert = invert; - return nf_ct_netns_get(ctx->net, ctx->family); + err = nf_ct_netns_get(ctx->net, ctx->family); + if (err < 0) + goto err_netns; + + return 0; +err_netns: + kfree(priv->list); + + return err; } static void nft_connlimit_do_destroy(const struct nft_ctx *ctx, struct nft_connlimit *priv) { nf_ct_netns_put(ctx->net, ctx->family); - nf_conncount_cache_free(&priv->list); + nf_conncount_cache_free(priv->list); + kfree(priv->list); } static int nft_connlimit_do_dump(struct sk_buff *skb, @@ -200,7 +214,11 @@ struct nft_connlimit *priv_dst = nft_expr_priv(dst); struct nft_connlimit *priv_src = nft_expr_priv(src); - nf_conncount_list_init(&priv_dst->list); + priv_dst->list = kmalloc(sizeof(*priv_dst->list), GFP_ATOMIC); + if (!priv_dst->list) + return -ENOMEM; + + nf_conncount_list_init(priv_dst->list); priv_dst->limit = priv_src->limit; priv_dst->invert = priv_src->invert; @@ -212,7 +230,8 @@ { struct nft_connlimit *priv = nft_expr_priv(expr); - nf_conncount_cache_free(&priv->list); + nf_conncount_cache_free(priv->list); + kfree(priv->list); } static bool nft_connlimit_gc(struct net *net, const struct nft_expr *expr) @@ -221,7 +240,7 @@ bool ret; local_bh_disable(); - ret = nf_conncount_gc_list(net, &priv->list); + ret = nf_conncount_gc_list(net, priv->list); local_bh_enable(); return ret; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/netfilter/nft_counter.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_counter.c @@ -61,7 +61,7 @@ struct nft_counter __percpu *cpu_stats; struct nft_counter *this_cpu; - cpu_stats = alloc_percpu(struct nft_counter); + cpu_stats = alloc_percpu_gfp(struct nft_counter, GFP_KERNEL_ACCOUNT); if (cpu_stats == NULL) return -ENOMEM; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/netfilter/nft_fib.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_fib.c @@ -140,11 +140,15 @@ switch (priv->result) { case NFT_FIB_RESULT_OIF: index = dev ? dev->ifindex : 0; - *dreg = (priv->flags & NFTA_FIB_F_PRESENT) ? !!index : index; + if (priv->flags & NFTA_FIB_F_PRESENT) + nft_reg_store8(dreg, !!index); + else + *dreg = index; + break; case NFT_FIB_RESULT_OIFNAME: if (priv->flags & NFTA_FIB_F_PRESENT) - *dreg = !!dev; + nft_reg_store8(dreg, !!dev); else strncpy(reg, dev ? dev->name : "", IFNAMSIZ); break; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/netfilter/nft_last.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_last.c @@ -8,9 +8,13 @@ #include #include +struct nft_last { + unsigned long jiffies; + unsigned int set; +}; + struct nft_last_priv { - unsigned long last_jiffies; - unsigned int last_set; + struct nft_last *last; }; static const struct nla_policy nft_last_policy[NFTA_LAST_MAX + 1] = { @@ -22,47 +26,55 @@ const struct nlattr * const tb[]) { struct nft_last_priv *priv = nft_expr_priv(expr); + struct nft_last *last; u64 last_jiffies; - u32 last_set = 0; int err; - if (tb[NFTA_LAST_SET]) { - last_set = ntohl(nla_get_be32(tb[NFTA_LAST_SET])); - if (last_set == 1) - priv->last_set = 1; - } + last = kzalloc(sizeof(*last), GFP_KERNEL_ACCOUNT); + if (!last) + return -ENOMEM; - if (last_set && tb[NFTA_LAST_MSECS]) { + if (tb[NFTA_LAST_SET]) + last->set = ntohl(nla_get_be32(tb[NFTA_LAST_SET])); + + if (last->set && tb[NFTA_LAST_MSECS]) { err = nf_msecs_to_jiffies64(tb[NFTA_LAST_MSECS], &last_jiffies); if (err < 0) - return err; + goto err; - priv->last_jiffies = jiffies - (unsigned long)last_jiffies; + last->jiffies = jiffies - (unsigned long)last_jiffies; } + priv->last = last; return 0; +err: + kfree(last); + + return err; } static void nft_last_eval(const struct nft_expr *expr, struct nft_regs *regs, const struct nft_pktinfo *pkt) { struct nft_last_priv *priv = nft_expr_priv(expr); + struct nft_last *last = priv->last; - if (READ_ONCE(priv->last_jiffies) != jiffies) - WRITE_ONCE(priv->last_jiffies, jiffies); - if (READ_ONCE(priv->last_set) == 0) - WRITE_ONCE(priv->last_set, 1); + if (READ_ONCE(last->jiffies) != jiffies) + WRITE_ONCE(last->jiffies, jiffies); + if (READ_ONCE(last->set) == 0) + WRITE_ONCE(last->set, 1); } static int nft_last_dump(struct sk_buff *skb, const struct nft_expr *expr) { struct nft_last_priv *priv = nft_expr_priv(expr); - unsigned long last_jiffies = READ_ONCE(priv->last_jiffies); - u32 last_set = READ_ONCE(priv->last_set); + struct nft_last *last = priv->last; + unsigned long last_jiffies = READ_ONCE(last->jiffies); + u32 last_set = READ_ONCE(last->set); __be64 msecs; if (time_before(jiffies, last_jiffies)) { - WRITE_ONCE(priv->last_set, 0); + WRITE_ONCE(last->set, 0); last_set = 0; } @@ -81,11 +93,36 @@ return -1; } +static void nft_last_destroy(const struct nft_ctx *ctx, + const struct nft_expr *expr) +{ + struct nft_last_priv *priv = nft_expr_priv(expr); + + kfree(priv->last); +} + +static int nft_last_clone(struct nft_expr *dst, const struct nft_expr *src) +{ + struct nft_last_priv *priv_dst = nft_expr_priv(dst); + struct nft_last_priv *priv_src = nft_expr_priv(src); + + priv_dst->last = kzalloc(sizeof(*priv_dst->last), GFP_ATOMIC); + if (!priv_dst->last) + return -ENOMEM; + + priv_dst->last->set = priv_src->last->set; + priv_dst->last->jiffies = priv_src->last->jiffies; + + return 0; +} + static const struct nft_expr_ops nft_last_ops = { .type = &nft_last_type, .size = NFT_EXPR_SIZE(sizeof(struct nft_last_priv)), .eval = nft_last_eval, .init = nft_last_init, + .destroy = nft_last_destroy, + .clone = nft_last_clone, .dump = nft_last_dump, }; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/netfilter/nft_limit.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_limit.c @@ -18,6 +18,10 @@ spinlock_t lock; u64 last; u64 tokens; +}; + +struct nft_limit_priv { + struct nft_limit *limit; u64 tokens_max; u64 rate; u64 nsecs; @@ -25,93 +29,111 @@ bool invert; }; -static inline bool nft_limit_eval(struct nft_limit *limit, u64 cost) +static inline bool nft_limit_eval(struct nft_limit_priv *priv, u64 cost) { u64 now, tokens; s64 delta; - spin_lock_bh(&limit->lock); + spin_lock_bh(&priv->limit->lock); now = ktime_get_ns(); - tokens = limit->tokens + now - limit->last; - if (tokens > limit->tokens_max) - tokens = limit->tokens_max; + tokens = priv->limit->tokens + now - priv->limit->last; + if (tokens > priv->tokens_max) + tokens = priv->tokens_max; - limit->last = now; + priv->limit->last = now; delta = tokens - cost; if (delta >= 0) { - limit->tokens = delta; - spin_unlock_bh(&limit->lock); - return limit->invert; + priv->limit->tokens = delta; + spin_unlock_bh(&priv->limit->lock); + return priv->invert; } - limit->tokens = tokens; - spin_unlock_bh(&limit->lock); - return !limit->invert; + priv->limit->tokens = tokens; + spin_unlock_bh(&priv->limit->lock); + return !priv->invert; } /* Use same default as in iptables. */ #define NFT_LIMIT_PKT_BURST_DEFAULT 5 -static int nft_limit_init(struct nft_limit *limit, +static int nft_limit_init(struct nft_limit_priv *priv, const struct nlattr * const tb[], bool pkts) { - u64 unit, tokens; + u64 unit, tokens, rate_with_burst; + bool invert = false; if (tb[NFTA_LIMIT_RATE] == NULL || tb[NFTA_LIMIT_UNIT] == NULL) return -EINVAL; - limit->rate = be64_to_cpu(nla_get_be64(tb[NFTA_LIMIT_RATE])); + priv->rate = be64_to_cpu(nla_get_be64(tb[NFTA_LIMIT_RATE])); + if (priv->rate == 0) + return -EINVAL; + unit = be64_to_cpu(nla_get_be64(tb[NFTA_LIMIT_UNIT])); - limit->nsecs = unit * NSEC_PER_SEC; - if (limit->rate == 0 || limit->nsecs < unit) + if (check_mul_overflow(unit, NSEC_PER_SEC, &priv->nsecs)) return -EOVERFLOW; if (tb[NFTA_LIMIT_BURST]) - limit->burst = ntohl(nla_get_be32(tb[NFTA_LIMIT_BURST])); + priv->burst = ntohl(nla_get_be32(tb[NFTA_LIMIT_BURST])); - if (pkts && limit->burst == 0) - limit->burst = NFT_LIMIT_PKT_BURST_DEFAULT; + if (pkts && priv->burst == 0) + priv->burst = NFT_LIMIT_PKT_BURST_DEFAULT; - if (limit->rate + limit->burst < limit->rate) + if (check_add_overflow(priv->rate, priv->burst, &rate_with_burst)) return -EOVERFLOW; if (pkts) { - tokens = div64_u64(limit->nsecs, limit->rate) * limit->burst; + u64 tmp = div64_u64(priv->nsecs, priv->rate); + + if (check_mul_overflow(tmp, priv->burst, &tokens)) + return -EOVERFLOW; } else { + u64 tmp; + /* The token bucket size limits the number of tokens can be * accumulated. tokens_max specifies the bucket size. * tokens_max = unit * (rate + burst) / rate. */ - tokens = div64_u64(limit->nsecs * (limit->rate + limit->burst), - limit->rate); - } + if (check_mul_overflow(priv->nsecs, rate_with_burst, &tmp)) + return -EOVERFLOW; - limit->tokens = tokens; - limit->tokens_max = limit->tokens; + tokens = div64_u64(tmp, priv->rate); + } if (tb[NFTA_LIMIT_FLAGS]) { u32 flags = ntohl(nla_get_be32(tb[NFTA_LIMIT_FLAGS])); + if (flags & ~NFT_LIMIT_F_INV) + return -EOPNOTSUPP; + if (flags & NFT_LIMIT_F_INV) - limit->invert = true; + invert = true; } - limit->last = ktime_get_ns(); - spin_lock_init(&limit->lock); + + priv->limit = kmalloc(sizeof(*priv->limit), GFP_KERNEL_ACCOUNT); + if (!priv->limit) + return -ENOMEM; + + priv->limit->tokens = tokens; + priv->tokens_max = priv->limit->tokens; + priv->invert = invert; + priv->limit->last = ktime_get_ns(); + spin_lock_init(&priv->limit->lock); return 0; } -static int nft_limit_dump(struct sk_buff *skb, const struct nft_limit *limit, +static int nft_limit_dump(struct sk_buff *skb, const struct nft_limit_priv *priv, enum nft_limit_type type) { - u32 flags = limit->invert ? NFT_LIMIT_F_INV : 0; - u64 secs = div_u64(limit->nsecs, NSEC_PER_SEC); + u32 flags = priv->invert ? NFT_LIMIT_F_INV : 0; + u64 secs = div_u64(priv->nsecs, NSEC_PER_SEC); - if (nla_put_be64(skb, NFTA_LIMIT_RATE, cpu_to_be64(limit->rate), + if (nla_put_be64(skb, NFTA_LIMIT_RATE, cpu_to_be64(priv->rate), NFTA_LIMIT_PAD) || nla_put_be64(skb, NFTA_LIMIT_UNIT, cpu_to_be64(secs), NFTA_LIMIT_PAD) || - nla_put_be32(skb, NFTA_LIMIT_BURST, htonl(limit->burst)) || + nla_put_be32(skb, NFTA_LIMIT_BURST, htonl(priv->burst)) || nla_put_be32(skb, NFTA_LIMIT_TYPE, htonl(type)) || nla_put_be32(skb, NFTA_LIMIT_FLAGS, htonl(flags))) goto nla_put_failure; @@ -121,8 +143,34 @@ return -1; } -struct nft_limit_pkts { - struct nft_limit limit; +static void nft_limit_destroy(const struct nft_ctx *ctx, + const struct nft_limit_priv *priv) +{ + kfree(priv->limit); +} + +static int nft_limit_clone(struct nft_limit_priv *priv_dst, + const struct nft_limit_priv *priv_src) +{ + priv_dst->tokens_max = priv_src->tokens_max; + priv_dst->rate = priv_src->rate; + priv_dst->nsecs = priv_src->nsecs; + priv_dst->burst = priv_src->burst; + priv_dst->invert = priv_src->invert; + + priv_dst->limit = kmalloc(sizeof(*priv_dst->limit), GFP_ATOMIC); + if (!priv_dst->limit) + return -ENOMEM; + + spin_lock_init(&priv_dst->limit->lock); + priv_dst->limit->tokens = priv_src->tokens_max; + priv_dst->limit->last = ktime_get_ns(); + + return 0; +} + +struct nft_limit_priv_pkts { + struct nft_limit_priv limit; u64 cost; }; @@ -130,7 +178,7 @@ struct nft_regs *regs, const struct nft_pktinfo *pkt) { - struct nft_limit_pkts *priv = nft_expr_priv(expr); + struct nft_limit_priv_pkts *priv = nft_expr_priv(expr); if (nft_limit_eval(&priv->limit, priv->cost)) regs->verdict.code = NFT_BREAK; @@ -148,7 +196,7 @@ const struct nft_expr *expr, const struct nlattr * const tb[]) { - struct nft_limit_pkts *priv = nft_expr_priv(expr); + struct nft_limit_priv_pkts *priv = nft_expr_priv(expr); int err; err = nft_limit_init(&priv->limit, tb, true); @@ -161,17 +209,37 @@ static int nft_limit_pkts_dump(struct sk_buff *skb, const struct nft_expr *expr) { - const struct nft_limit_pkts *priv = nft_expr_priv(expr); + const struct nft_limit_priv_pkts *priv = nft_expr_priv(expr); return nft_limit_dump(skb, &priv->limit, NFT_LIMIT_PKTS); } +static void nft_limit_pkts_destroy(const struct nft_ctx *ctx, + const struct nft_expr *expr) +{ + const struct nft_limit_priv_pkts *priv = nft_expr_priv(expr); + + nft_limit_destroy(ctx, &priv->limit); +} + +static int nft_limit_pkts_clone(struct nft_expr *dst, const struct nft_expr *src) +{ + struct nft_limit_priv_pkts *priv_dst = nft_expr_priv(dst); + struct nft_limit_priv_pkts *priv_src = nft_expr_priv(src); + + priv_dst->cost = priv_src->cost; + + return nft_limit_clone(&priv_dst->limit, &priv_src->limit); +} + static struct nft_expr_type nft_limit_type; static const struct nft_expr_ops nft_limit_pkts_ops = { .type = &nft_limit_type, - .size = NFT_EXPR_SIZE(sizeof(struct nft_limit_pkts)), + .size = NFT_EXPR_SIZE(sizeof(struct nft_limit_priv_pkts)), .eval = nft_limit_pkts_eval, .init = nft_limit_pkts_init, + .destroy = nft_limit_pkts_destroy, + .clone = nft_limit_pkts_clone, .dump = nft_limit_pkts_dump, }; @@ -179,7 +247,7 @@ struct nft_regs *regs, const struct nft_pktinfo *pkt) { - struct nft_limit *priv = nft_expr_priv(expr); + struct nft_limit_priv *priv = nft_expr_priv(expr); u64 cost = div64_u64(priv->nsecs * pkt->skb->len, priv->rate); if (nft_limit_eval(priv, cost)) @@ -190,7 +258,7 @@ const struct nft_expr *expr, const struct nlattr * const tb[]) { - struct nft_limit *priv = nft_expr_priv(expr); + struct nft_limit_priv *priv = nft_expr_priv(expr); return nft_limit_init(priv, tb, false); } @@ -198,17 +266,35 @@ static int nft_limit_bytes_dump(struct sk_buff *skb, const struct nft_expr *expr) { - const struct nft_limit *priv = nft_expr_priv(expr); + const struct nft_limit_priv *priv = nft_expr_priv(expr); return nft_limit_dump(skb, priv, NFT_LIMIT_PKT_BYTES); } +static void nft_limit_bytes_destroy(const struct nft_ctx *ctx, + const struct nft_expr *expr) +{ + const struct nft_limit_priv *priv = nft_expr_priv(expr); + + nft_limit_destroy(ctx, priv); +} + +static int nft_limit_bytes_clone(struct nft_expr *dst, const struct nft_expr *src) +{ + struct nft_limit_priv *priv_dst = nft_expr_priv(dst); + struct nft_limit_priv *priv_src = nft_expr_priv(src); + + return nft_limit_clone(priv_dst, priv_src); +} + static const struct nft_expr_ops nft_limit_bytes_ops = { .type = &nft_limit_type, - .size = NFT_EXPR_SIZE(sizeof(struct nft_limit)), + .size = NFT_EXPR_SIZE(sizeof(struct nft_limit_priv)), .eval = nft_limit_bytes_eval, .init = nft_limit_bytes_init, .dump = nft_limit_bytes_dump, + .clone = nft_limit_bytes_clone, + .destroy = nft_limit_bytes_destroy, }; static const struct nft_expr_ops * @@ -240,7 +326,7 @@ struct nft_regs *regs, const struct nft_pktinfo *pkt) { - struct nft_limit_pkts *priv = nft_obj_data(obj); + struct nft_limit_priv_pkts *priv = nft_obj_data(obj); if (nft_limit_eval(&priv->limit, priv->cost)) regs->verdict.code = NFT_BREAK; @@ -250,7 +336,7 @@ const struct nlattr * const tb[], struct nft_object *obj) { - struct nft_limit_pkts *priv = nft_obj_data(obj); + struct nft_limit_priv_pkts *priv = nft_obj_data(obj); int err; err = nft_limit_init(&priv->limit, tb, true); @@ -265,16 +351,25 @@ struct nft_object *obj, bool reset) { - const struct nft_limit_pkts *priv = nft_obj_data(obj); + const struct nft_limit_priv_pkts *priv = nft_obj_data(obj); return nft_limit_dump(skb, &priv->limit, NFT_LIMIT_PKTS); } +static void nft_limit_obj_pkts_destroy(const struct nft_ctx *ctx, + struct nft_object *obj) +{ + struct nft_limit_priv_pkts *priv = nft_obj_data(obj); + + nft_limit_destroy(ctx, &priv->limit); +} + static struct nft_object_type nft_limit_obj_type; static const struct nft_object_ops nft_limit_obj_pkts_ops = { .type = &nft_limit_obj_type, - .size = NFT_EXPR_SIZE(sizeof(struct nft_limit_pkts)), + .size = NFT_EXPR_SIZE(sizeof(struct nft_limit_priv_pkts)), .init = nft_limit_obj_pkts_init, + .destroy = nft_limit_obj_pkts_destroy, .eval = nft_limit_obj_pkts_eval, .dump = nft_limit_obj_pkts_dump, }; @@ -283,7 +378,7 @@ struct nft_regs *regs, const struct nft_pktinfo *pkt) { - struct nft_limit *priv = nft_obj_data(obj); + struct nft_limit_priv *priv = nft_obj_data(obj); u64 cost = div64_u64(priv->nsecs * pkt->skb->len, priv->rate); if (nft_limit_eval(priv, cost)) @@ -294,7 +389,7 @@ const struct nlattr * const tb[], struct nft_object *obj) { - struct nft_limit *priv = nft_obj_data(obj); + struct nft_limit_priv *priv = nft_obj_data(obj); return nft_limit_init(priv, tb, false); } @@ -303,16 +398,25 @@ struct nft_object *obj, bool reset) { - const struct nft_limit *priv = nft_obj_data(obj); + const struct nft_limit_priv *priv = nft_obj_data(obj); return nft_limit_dump(skb, priv, NFT_LIMIT_PKT_BYTES); } +static void nft_limit_obj_bytes_destroy(const struct nft_ctx *ctx, + struct nft_object *obj) +{ + struct nft_limit_priv *priv = nft_obj_data(obj); + + nft_limit_destroy(ctx, priv); +} + static struct nft_object_type nft_limit_obj_type; static const struct nft_object_ops nft_limit_obj_bytes_ops = { .type = &nft_limit_obj_type, - .size = sizeof(struct nft_limit), + .size = sizeof(struct nft_limit_priv), .init = nft_limit_obj_bytes_init, + .destroy = nft_limit_obj_bytes_destroy, .eval = nft_limit_obj_bytes_eval, .dump = nft_limit_obj_bytes_dump, }; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/netfilter/nft_quota.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_quota.c @@ -15,13 +15,13 @@ struct nft_quota { atomic64_t quota; unsigned long flags; - atomic64_t consumed; + atomic64_t *consumed; }; static inline bool nft_overquota(struct nft_quota *priv, const struct sk_buff *skb) { - return atomic64_add_return(skb->len, &priv->consumed) >= + return atomic64_add_return(skb->len, priv->consumed) >= atomic64_read(&priv->quota); } @@ -90,13 +90,23 @@ return -EOPNOTSUPP; } + priv->consumed = kmalloc(sizeof(*priv->consumed), GFP_KERNEL_ACCOUNT); + if (!priv->consumed) + return -ENOMEM; + atomic64_set(&priv->quota, quota); priv->flags = flags; - atomic64_set(&priv->consumed, consumed); + atomic64_set(priv->consumed, consumed); return 0; } +static void nft_quota_do_destroy(const struct nft_ctx *ctx, + struct nft_quota *priv) +{ + kfree(priv->consumed); +} + static int nft_quota_obj_init(const struct nft_ctx *ctx, const struct nlattr * const tb[], struct nft_object *obj) @@ -128,7 +138,7 @@ * that we see, don't go over the quota boundary in what we send to * userspace. */ - consumed = atomic64_read(&priv->consumed); + consumed = atomic64_read(priv->consumed); quota = atomic64_read(&priv->quota); if (consumed >= quota) { consumed_cap = quota; @@ -145,7 +155,7 @@ goto nla_put_failure; if (reset) { - atomic64_sub(consumed, &priv->consumed); + atomic64_sub(consumed, priv->consumed); clear_bit(NFT_QUOTA_DEPLETED_BIT, &priv->flags); } return 0; @@ -162,11 +172,20 @@ return nft_quota_do_dump(skb, priv, reset); } +static void nft_quota_obj_destroy(const struct nft_ctx *ctx, + struct nft_object *obj) +{ + struct nft_quota *priv = nft_obj_data(obj); + + return nft_quota_do_destroy(ctx, priv); +} + static struct nft_object_type nft_quota_obj_type; static const struct nft_object_ops nft_quota_obj_ops = { .type = &nft_quota_obj_type, .size = sizeof(struct nft_quota), .init = nft_quota_obj_init, + .destroy = nft_quota_obj_destroy, .eval = nft_quota_obj_eval, .dump = nft_quota_obj_dump, .update = nft_quota_obj_update, @@ -205,12 +224,39 @@ return nft_quota_do_dump(skb, priv, false); } +static void nft_quota_destroy(const struct nft_ctx *ctx, + const struct nft_expr *expr) +{ + struct nft_quota *priv = nft_expr_priv(expr); + + return nft_quota_do_destroy(ctx, priv); +} + +static int nft_quota_clone(struct nft_expr *dst, const struct nft_expr *src) +{ + struct nft_quota *priv_dst = nft_expr_priv(dst); + struct nft_quota *priv_src = nft_expr_priv(src); + + priv_dst->quota = priv_src->quota; + priv_dst->flags = priv_src->flags; + + priv_dst->consumed = kmalloc(sizeof(*priv_dst->consumed), GFP_ATOMIC); + if (!priv_dst->consumed) + return -ENOMEM; + + *priv_dst->consumed = *priv_src->consumed; + + return 0; +} + static struct nft_expr_type nft_quota_type; static const struct nft_expr_ops nft_quota_ops = { .type = &nft_quota_type, .size = NFT_EXPR_SIZE(sizeof(struct nft_quota)), .eval = nft_quota_eval, .init = nft_quota_init, + .destroy = nft_quota_destroy, + .clone = nft_quota_clone, .dump = nft_quota_dump, }; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/netfilter/nft_rt.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_rt.c @@ -166,6 +166,11 @@ const struct nft_rt *priv = nft_expr_priv(expr); unsigned int hooks; + if (ctx->family != NFPROTO_IPV4 && + ctx->family != NFPROTO_IPV6 && + ctx->family != NFPROTO_INET) + return -EOPNOTSUPP; + switch (priv->key) { case NFT_RT_NEXTHOP4: case NFT_RT_NEXTHOP6: only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/netfilter/nft_set_pipapo.h +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_set_pipapo.h @@ -131,20 +131,28 @@ }; /** + * struct nft_pipapo_scratch - percpu data used for lookup and matching + * @map_index: Current working bitmap index, toggled between field matches + * @align_off: Offset to get the originally allocated address + * @map: store partial matching results during lookup + */ +struct nft_pipapo_scratch { + u8 map_index; + u32 align_off; + unsigned long map[]; +}; + +/** * struct nft_pipapo_match - Data used for lookup and matching * @field_count Amount of fields in set * @scratch: Preallocated per-CPU maps for partial matching results - * @scratch_aligned: Version of @scratch aligned to NFT_PIPAPO_ALIGN bytes * @bsize_max: Maximum lookup table bucket size of all fields, in longs * @rcu Matching data is swapped on commits * @f: Fields, with lookup and mapping tables */ struct nft_pipapo_match { int field_count; -#ifdef NFT_PIPAPO_ALIGN - unsigned long * __percpu *scratch_aligned; -#endif - unsigned long * __percpu *scratch; + struct nft_pipapo_scratch * __percpu *scratch; size_t bsize_max; struct rcu_head rcu; struct nft_pipapo_field f[]; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/netfilter/nft_xfrm.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/nft_xfrm.c @@ -50,7 +50,7 @@ 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 @@ 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 @@ *dest = state->props.reqid; return; case NFT_XFRM_KEY_SPI: - *dest = state->id.spi; + *dest = (__force __u32)state->id.spi; return; } @@ -233,6 +233,11 @@ const struct nft_xfrm *priv = nft_expr_priv(expr); unsigned int hooks; + if (ctx->family != NFPROTO_IPV4 && + ctx->family != NFPROTO_IPV6 && + ctx->family != NFPROTO_INET) + return -EOPNOTSUPP; + switch (priv->dir) { case XFRM_POLICY_IN: hooks = (1 << NF_INET_FORWARD) | only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/netfilter/xt_REDIRECT.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/xt_REDIRECT.c @@ -46,7 +46,6 @@ 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 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 = { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/netfilter/xt_owner.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/xt_owner.c @@ -76,18 +76,23 @@ */ 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 @@ } } - 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; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/netfilter/xt_recent.c +++ linux-xilinx-zynqmp-5.15.0/net/netfilter/xt_recent.c @@ -561,7 +561,7 @@ { 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/netlabel/netlabel_calipso.c +++ linux-xilinx-zynqmp-5.15.0/net/netlabel/netlabel_calipso.c @@ -54,6 +54,28 @@ [NLBL_CALIPSO_A_MTYPE] = { .type = NLA_U32 }, }; +static const struct netlbl_calipso_ops *calipso_ops; + +/** + * netlbl_calipso_ops_register - Register the CALIPSO operations + * @ops: ops to register + * + * Description: + * Register the CALIPSO packet engine operations. + * + */ +const struct netlbl_calipso_ops * +netlbl_calipso_ops_register(const struct netlbl_calipso_ops *ops) +{ + return xchg(&calipso_ops, ops); +} +EXPORT_SYMBOL(netlbl_calipso_ops_register); + +static const struct netlbl_calipso_ops *netlbl_calipso_ops_get(void) +{ + return READ_ONCE(calipso_ops); +} + /* NetLabel Command Handlers */ /** @@ -96,15 +118,18 @@ * */ static int netlbl_calipso_add(struct sk_buff *skb, struct genl_info *info) - { int ret_val = -EINVAL; struct netlbl_audit audit_info; + const struct netlbl_calipso_ops *ops = netlbl_calipso_ops_get(); if (!info->attrs[NLBL_CALIPSO_A_DOI] || !info->attrs[NLBL_CALIPSO_A_MTYPE]) return -EINVAL; + if (!ops) + return -EOPNOTSUPP; + netlbl_netlink_auditinfo(&audit_info); switch (nla_get_u32(info->attrs[NLBL_CALIPSO_A_MTYPE])) { case CALIPSO_MAP_PASS: @@ -362,28 +387,6 @@ return genl_register_family(&netlbl_calipso_gnl_family); } -static const struct netlbl_calipso_ops *calipso_ops; - -/** - * netlbl_calipso_ops_register - Register the CALIPSO operations - * @ops: ops to register - * - * Description: - * Register the CALIPSO packet engine operations. - * - */ -const struct netlbl_calipso_ops * -netlbl_calipso_ops_register(const struct netlbl_calipso_ops *ops) -{ - return xchg(&calipso_ops, ops); -} -EXPORT_SYMBOL(netlbl_calipso_ops_register); - -static const struct netlbl_calipso_ops *netlbl_calipso_ops_get(void) -{ - return READ_ONCE(calipso_ops); -} - /** * calipso_doi_add - Add a new DOI to the CALIPSO protocol engine * @doi_def: the DOI structure only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/nfc/nci/spi.c +++ linux-xilinx-zynqmp-5.15.0/net/nfc/nci/spi.c @@ -151,6 +151,8 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/psample/psample.c +++ linux-xilinx-zynqmp-5.15.0/net/psample/psample.c @@ -31,7 +31,8 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/rds/af_rds.c +++ linux-xilinx-zynqmp-5.15.0/net/rds/af_rds.c @@ -419,7 +419,7 @@ rs->rs_rx_traces = trace.rx_traces; for (i = 0; i < rs->rs_rx_traces; i++) { - if (trace.rx_trace_pos[i] > RDS_MSG_RX_DGRAM_TRACE_MAX) { + if (trace.rx_trace_pos[i] >= RDS_MSG_RX_DGRAM_TRACE_MAX) { rs->rs_rx_traces = 0; return -EFAULT; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/rfkill/rfkill-gpio.c +++ linux-xilinx-zynqmp-5.15.0/net/rfkill/rfkill-gpio.c @@ -98,13 +98,13 @@ 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); @@ -116,6 +116,14 @@ return -EINVAL; } + ret = gpiod_direction_output(rfkill->reset_gpio, true); + if (ret) + return ret; + + ret = gpiod_direction_output(rfkill->shutdown_gpio, true); + if (ret) + return ret; + rfkill->rfkill_dev = rfkill_alloc(rfkill->name, &pdev->dev, rfkill->type, &rfkill_gpio_ops, rfkill); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/rxrpc/conn_event.c +++ linux-xilinx-zynqmp-5.15.0/net/rxrpc/conn_event.c @@ -41,6 +41,14 @@ _enter("%d", conn->debug_id); + if (sp && sp->hdr.type == RXRPC_PACKET_TYPE_ACK) { + if (skb_copy_bits(skb, sizeof(struct rxrpc_wire_header), + &pkt.ack, sizeof(pkt.ack)) < 0) + return; + if (pkt.ack.reason == RXRPC_ACK_PING_RESPONSE) + return; + } + chan = &conn->channels[channel]; /* If the last call got moved on whilst we were waiting to run, just only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/sched/em_text.c +++ linux-xilinx-zynqmp-5.15.0/net/sched/em_text.c @@ -97,8 +97,10 @@ static void em_text_destroy(struct tcf_ematch *m) { - if (EM_TEXT_PRIV(m) && EM_TEXT_PRIV(m)->config) + if (EM_TEXT_PRIV(m) && EM_TEXT_PRIV(m)->config) { textsearch_destroy(EM_TEXT_PRIV(m)->config); + kfree(EM_TEXT_PRIV(m)); + } } static int em_text_dump(struct sk_buff *skb, struct tcf_ematch *m) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/smc/smc_diag.c +++ linux-xilinx-zynqmp-5.15.0/net/smc/smc_diag.c @@ -164,7 +164,7 @@ } if (smc->conn.lgr && smc->conn.lgr->is_smcd && (req->diag_ext & (1 << (SMC_DIAG_DMBINFO - 1))) && - !list_empty(&smc->conn.lgr->list)) { + !list_empty(&smc->conn.lgr->list) && smc->conn.rmb_desc) { struct smc_connection *conn = &smc->conn; struct smcd_diag_dmbinfo dinfo; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/sunrpc/rpcb_clnt.c +++ linux-xilinx-zynqmp-5.15.0/net/sunrpc/rpcb_clnt.c @@ -746,6 +746,10 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/sunrpc/xprtmultipath.c +++ linux-xilinx-zynqmp-5.15.0/net/sunrpc/xprtmultipath.c @@ -288,8 +288,9 @@ return xprt_switch_find_current_entry(head, xpi->xpi_cursor); } -bool rpc_xprt_switch_has_addr(struct rpc_xprt_switch *xps, - const struct sockaddr *sap) +static +bool __rpc_xprt_switch_has_addr(struct rpc_xprt_switch *xps, + const struct sockaddr *sap) { struct list_head *head; struct rpc_xprt *pos; @@ -308,6 +309,18 @@ return false; } +bool rpc_xprt_switch_has_addr(struct rpc_xprt_switch *xps, + const struct sockaddr *sap) +{ + bool res; + + rcu_read_lock(); + res = __rpc_xprt_switch_has_addr(xps, sap); + rcu_read_unlock(); + + return res; +} + static struct rpc_xprt *xprt_switch_find_next_entry(struct list_head *head, const struct rpc_xprt *cur) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/tipc/netlink.c +++ linux-xilinx-zynqmp-5.15.0/net/tipc/netlink.c @@ -88,7 +88,7 @@ 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_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 } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/net/wireless/certs/wens.hex +++ linux-xilinx-zynqmp-5.15.0/net/wireless/certs/wens.hex @@ -0,0 +1,87 @@ +/* Chen-Yu Tsai's regdb certificate */ +0x30, 0x82, 0x02, 0xa7, 0x30, 0x82, 0x01, 0x8f, +0x02, 0x14, 0x61, 0xc0, 0x38, 0x65, 0x1a, 0xab, +0xdc, 0xf9, 0x4b, 0xd0, 0xac, 0x7f, 0xf0, 0x6c, +0x72, 0x48, 0xdb, 0x18, 0xc6, 0x00, 0x30, 0x0d, +0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, +0x01, 0x01, 0x0b, 0x05, 0x00, 0x30, 0x0f, 0x31, +0x0d, 0x30, 0x0b, 0x06, 0x03, 0x55, 0x04, 0x03, +0x0c, 0x04, 0x77, 0x65, 0x6e, 0x73, 0x30, 0x20, +0x17, 0x0d, 0x32, 0x33, 0x31, 0x32, 0x30, 0x31, +0x30, 0x37, 0x34, 0x31, 0x31, 0x34, 0x5a, 0x18, +0x0f, 0x32, 0x31, 0x32, 0x33, 0x31, 0x31, 0x30, +0x37, 0x30, 0x37, 0x34, 0x31, 0x31, 0x34, 0x5a, +0x30, 0x0f, 0x31, 0x0d, 0x30, 0x0b, 0x06, 0x03, +0x55, 0x04, 0x03, 0x0c, 0x04, 0x77, 0x65, 0x6e, +0x73, 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, +0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, +0x01, 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, +0x00, 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, +0x01, 0x00, 0xa9, 0x7a, 0x2c, 0x78, 0x4d, 0xa7, +0x19, 0x2d, 0x32, 0x52, 0xa0, 0x2e, 0x6c, 0xef, +0x88, 0x7f, 0x15, 0xc5, 0xb6, 0x69, 0x54, 0x16, +0x43, 0x14, 0x79, 0x53, 0xb7, 0xae, 0x88, 0xfe, +0xc0, 0xb7, 0x5d, 0x47, 0x8e, 0x1a, 0xe1, 0xef, +0xb3, 0x90, 0x86, 0xda, 0xd3, 0x64, 0x81, 0x1f, +0xce, 0x5d, 0x9e, 0x4b, 0x6e, 0x58, 0x02, 0x3e, +0xb2, 0x6f, 0x5e, 0x42, 0x47, 0x41, 0xf4, 0x2c, +0xb8, 0xa8, 0xd4, 0xaa, 0xc0, 0x0e, 0xe6, 0x48, +0xf0, 0xa8, 0xce, 0xcb, 0x08, 0xae, 0x37, 0xaf, +0xf6, 0x40, 0x39, 0xcb, 0x55, 0x6f, 0x5b, 0x4f, +0x85, 0x34, 0xe6, 0x69, 0x10, 0x50, 0x72, 0x5e, +0x4e, 0x9d, 0x4c, 0xba, 0x38, 0x36, 0x0d, 0xce, +0x73, 0x38, 0xd7, 0x27, 0x02, 0x2a, 0x79, 0x03, +0xe1, 0xac, 0xcf, 0xb0, 0x27, 0x85, 0x86, 0x93, +0x17, 0xab, 0xec, 0x42, 0x77, 0x37, 0x65, 0x8a, +0x44, 0xcb, 0xd6, 0x42, 0x93, 0x92, 0x13, 0xe3, +0x39, 0x45, 0xc5, 0x6e, 0x00, 0x4a, 0x7f, 0xcb, +0x42, 0x17, 0x2b, 0x25, 0x8c, 0xb8, 0x17, 0x3b, +0x15, 0x36, 0x59, 0xde, 0x42, 0xce, 0x21, 0xe6, +0xb6, 0xc7, 0x6e, 0x5e, 0x26, 0x1f, 0xf7, 0x8a, +0x57, 0x9e, 0xa5, 0x96, 0x72, 0xb7, 0x02, 0x32, +0xeb, 0x07, 0x2b, 0x73, 0xe2, 0x4f, 0x66, 0x58, +0x9a, 0xeb, 0x0f, 0x07, 0xb6, 0xab, 0x50, 0x8b, +0xc3, 0x8f, 0x17, 0xfa, 0x0a, 0x99, 0xc2, 0x16, +0x25, 0xbf, 0x2d, 0x6b, 0x1a, 0xaa, 0xe6, 0x3e, +0x5f, 0xeb, 0x6d, 0x9b, 0x5d, 0x4d, 0x42, 0x83, +0x2d, 0x39, 0xb8, 0xc9, 0xac, 0xdb, 0x3a, 0x91, +0x50, 0xdf, 0xbb, 0xb1, 0x76, 0x6d, 0x15, 0x73, +0xfd, 0xc6, 0xe6, 0x6b, 0x71, 0x9e, 0x67, 0x36, +0x22, 0x83, 0x79, 0xb1, 0xd6, 0xb8, 0x84, 0x52, +0xaf, 0x96, 0x5b, 0xc3, 0x63, 0x02, 0x4e, 0x78, +0x70, 0x57, 0x02, 0x03, 0x01, 0x00, 0x01, 0x30, +0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, +0x0d, 0x01, 0x01, 0x0b, 0x05, 0x00, 0x03, 0x82, +0x01, 0x01, 0x00, 0x24, 0x28, 0xee, 0x22, 0x74, +0x7f, 0x7c, 0xfa, 0x6c, 0x1f, 0xb3, 0x18, 0xd1, +0xc2, 0x3d, 0x7d, 0x29, 0x42, 0x88, 0xad, 0x82, +0xa5, 0xb1, 0x8a, 0x05, 0xd0, 0xec, 0x5c, 0x91, +0x20, 0xf6, 0x82, 0xfd, 0xd5, 0x67, 0x60, 0x5f, +0x31, 0xf5, 0xbd, 0x88, 0x91, 0x70, 0xbd, 0xb8, +0xb9, 0x8c, 0x88, 0xfe, 0x53, 0xc9, 0x54, 0x9b, +0x43, 0xc4, 0x7a, 0x43, 0x74, 0x6b, 0xdd, 0xb0, +0xb1, 0x3b, 0x33, 0x45, 0x46, 0x78, 0xa3, 0x1c, +0xef, 0x54, 0x68, 0xf7, 0x85, 0x9c, 0xe4, 0x51, +0x6f, 0x06, 0xaf, 0x81, 0xdb, 0x2a, 0x7b, 0x7b, +0x6f, 0xa8, 0x9c, 0x67, 0xd8, 0xcb, 0xc9, 0x91, +0x40, 0x00, 0xae, 0xd9, 0xa1, 0x9f, 0xdd, 0xa6, +0x43, 0x0e, 0x28, 0x7b, 0xaa, 0x1b, 0xe9, 0x84, +0xdb, 0x76, 0x64, 0x42, 0x70, 0xc9, 0xc0, 0xeb, +0xae, 0x84, 0x11, 0x16, 0x68, 0x4e, 0x84, 0x9e, +0x7e, 0x92, 0x36, 0xee, 0x1c, 0x3b, 0x08, 0x63, +0xeb, 0x79, 0x84, 0x15, 0x08, 0x9d, 0xaf, 0xc8, +0x9a, 0xc7, 0x34, 0xd3, 0x94, 0x4b, 0xd1, 0x28, +0x97, 0xbe, 0xd1, 0x45, 0x75, 0xdc, 0x35, 0x62, +0xac, 0x1d, 0x1f, 0xb7, 0xb7, 0x15, 0x87, 0xc8, +0x98, 0xc0, 0x24, 0x31, 0x56, 0x8d, 0xed, 0xdb, +0x06, 0xc6, 0x46, 0xbf, 0x4b, 0x6d, 0xa6, 0xd5, +0xab, 0xcc, 0x60, 0xfc, 0xe5, 0x37, 0xb6, 0x53, +0x7d, 0x58, 0x95, 0xa9, 0x56, 0xc7, 0xf7, 0xee, +0xc3, 0xa0, 0x76, 0xf7, 0x65, 0x4d, 0x53, 0xfa, +0xff, 0x5f, 0x76, 0x33, 0x5a, 0x08, 0xfa, 0x86, +0x92, 0x5a, 0x13, 0xfa, 0x1a, 0xfc, 0xf2, 0x1b, +0x8c, 0x7f, 0x42, 0x6d, 0xb7, 0x7e, 0xb7, 0xb4, +0xf0, 0xc7, 0x83, 0xbb, 0xa2, 0x81, 0x03, 0x2d, +0xd4, 0x2a, 0x63, 0x3f, 0xf7, 0x31, 0x2e, 0x40, +0x33, 0x5c, 0x46, 0xbc, 0x9b, 0xc1, 0x05, 0xa5, +0x45, 0x4e, 0xc3, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/scripts/Makefile.compiler +++ linux-xilinx-zynqmp-5.15.0/scripts/Makefile.compiler @@ -68,7 +68,3 @@ # ld-option # Usage: KBUILD_LDFLAGS += $(call ld-option, -X, -Y) ld-option = $(call try-run, $(LD) $(KBUILD_LDFLAGS) $(1) -v,$(1),$(2),$(3)) - -# ld-ifversion -# Usage: $(call ld-ifversion, -ge, 22252, y) -ld-ifversion = $(shell [ $(CONFIG_LD_VERSION)0 $(1) $(2)0 ] && echo $(3) || echo $(4)) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/scripts/checkstack.pl +++ linux-xilinx-zynqmp-5.15.0/scripts/checkstack.pl @@ -142,15 +142,11 @@ 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) { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/scripts/decode_stacktrace.sh +++ linux-xilinx-zynqmp-5.15.0/scripts/decode_stacktrace.sh @@ -8,6 +8,29 @@ echo " $0 -r | [|auto] []" } +# Try to find a Rust demangler +if type llvm-cxxfilt >/dev/null 2>&1 ; then + cppfilt=llvm-cxxfilt +elif type c++filt >/dev/null 2>&1 ; then + cppfilt=c++filt + cppfilt_opts=-i +fi + +UTIL_SUFFIX= +if [[ -z ${LLVM:-} ]]; then + UTIL_PREFIX=${CROSS_COMPILE:-} +else + UTIL_PREFIX=llvm- + if [[ ${LLVM} == */ ]]; then + UTIL_PREFIX=${LLVM}${UTIL_PREFIX} + elif [[ ${LLVM} == -* ]]; then + UTIL_SUFFIX=${LLVM} + fi +fi + +READELF=${UTIL_PREFIX}readelf${UTIL_SUFFIX} +ADDR2LINE=${UTIL_PREFIX}addr2line${UTIL_SUFFIX} + if [[ $1 == "-r" ]] ; then vmlinux="" basepath="auto" @@ -45,8 +68,13 @@ fi fi -declare -A cache -declare -A modcache +declare aarray_support=true +declare -A cache 2>/dev/null +if [[ $? != 0 ]]; then + aarray_support=false +else + declare -A modcache +fi find_module() { if [[ -n $debuginfod ]] ; then @@ -62,7 +90,7 @@ if [[ "$modpath" != "" ]] ; then for fn in $(find "$modpath" -name "${module//_/[-_]}.ko*") ; do - if readelf -WS "$fn" | grep -qwF .debug_line ; then + if ${READELF} -WS "$fn" | grep -qwF .debug_line ; then echo $fn return fi @@ -97,7 +125,7 @@ if [[ $module == "" ]] ; then local objfile=$vmlinux - elif [[ "${modcache[$module]+isset}" == "isset" ]]; then + elif [[ $aarray_support == true && "${modcache[$module]+isset}" == "isset" ]]; then local objfile=${modcache[$module]} else local objfile=$(find_module) @@ -105,7 +133,9 @@ echo "WARNING! Modules path isn't set, but is needed to parse this symbol" >&2 return fi - modcache[$module]=$objfile + if [[ $aarray_support == true ]]; then + modcache[$module]=$objfile + fi fi # Remove the englobing parenthesis @@ -125,7 +155,7 @@ # Use 'nm vmlinux' to figure out the base address of said symbol. # It's actually faster to call it every time than to load it # all into bash. - if [[ "${cache[$module,$name]+isset}" == "isset" ]]; then + if [[ $aarray_support == true && "${cache[$module,$name]+isset}" == "isset" ]]; then local base_addr=${cache[$module,$name]} else local base_addr=$(nm "$objfile" 2>/dev/null | awk '$3 == "'$name'" && ($2 == "t" || $2 == "T") {print $1; exit}') @@ -133,7 +163,9 @@ # address not found return fi - cache[$module,$name]="$base_addr" + if [[ $aarray_support == true ]]; then + cache[$module,$name]="$base_addr" + fi fi # Let's start doing the math to get the exact address into the # symbol. First, strip out the symbol total length. @@ -149,11 +181,13 @@ # Pass it to addr2line to get filename and line number # Could get more than one result - if [[ "${cache[$module,$address]+isset}" == "isset" ]]; then + if [[ $aarray_support == true && "${cache[$module,$address]+isset}" == "isset" ]]; then local code=${cache[$module,$address]} else - local code=$(${CROSS_COMPILE}addr2line -i -e "$objfile" "$address" 2>/dev/null) - cache[$module,$address]=$code + local code=$(${ADDR2LINE} -i -e "$objfile" "$address" 2>/dev/null) + if [[ $aarray_support == true ]]; then + cache[$module,$address]=$code + fi fi # addr2line doesn't return a proper error code if it fails, so @@ -169,6 +203,12 @@ # In the case of inlines, move everything to same line code=${code//$'\n'/' '} + # Demangle if the name looks like a Rust symbol and if + # we got a Rust demangler + if [[ $name =~ ^_R && $cppfilt != "" ]] ; then + name=$("$cppfilt" "$cppfilt_opts" "$name") + fi + # Replace old address with pretty line numbers symbol="$segment$name ($code)" } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/scripts/gcc-plugins/randomize_layout_plugin.c +++ linux-xilinx-zynqmp-5.15.0/scripts/gcc-plugins/randomize_layout_plugin.c @@ -209,12 +209,14 @@ 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 @@ } 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/scripts/get_abi.pl +++ linux-xilinx-zynqmp-5.15.0/scripts/get_abi.pl @@ -75,7 +75,7 @@ $name =~ s,.*/,,; my $fn = $file; - $fn =~ s,Documentation/ABI/,,; + $fn =~ s,.*Documentation/ABI/,,; my $nametag = "File $fn"; $data{$nametag}->{what} = "File $name"; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/scripts/kconfig/symbol.c +++ linux-xilinx-zynqmp-5.15.0/scripts/kconfig/symbol.c @@ -122,9 +122,9 @@ 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 @@ 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) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/scripts/mod/sumversion.c +++ linux-xilinx-zynqmp-5.15.0/scripts/mod/sumversion.c @@ -328,7 +328,12 @@ /* Sum all files in the same dir or subdirs. */ while ((line = get_line(&pos))) { - char* p = line; + char* p; + + /* trim the leading spaces away */ + while (isspace(*line)) + line++; + p = line; if (strncmp(line, "source_", sizeof("source_")-1) == 0) { p = strrchr(line, ' '); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/security/integrity/integrity.h +++ linux-xilinx-zynqmp-5.15.0/security/integrity/integrity.h @@ -131,6 +131,8 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/security/keys/gc.c +++ linux-xilinx-zynqmp-5.15.0/security/keys/gc.c @@ -67,6 +67,19 @@ } /* + * Set the expiration time on a key. + */ +void key_set_expiry(struct key *key, time64_t expiry) +{ + key->expiry = expiry; + if (expiry != TIME64_MAX) { + if (!(key->type->flags & KEY_TYPE_INSTANT_REAP)) + expiry += key_gc_delay; + key_schedule_gc(expiry); + } +} + +/* * Schedule a dead links collection run. */ void key_schedule_gc_links(void) @@ -176,7 +189,6 @@ static u8 gc_state; /* Internal persistent state */ #define KEY_GC_REAP_AGAIN 0x01 /* - Need another cycle */ #define KEY_GC_REAPING_LINKS 0x02 /* - We need to reap links */ -#define KEY_GC_SET_TIMER 0x04 /* - We need to restart the timer */ #define KEY_GC_REAPING_DEAD_1 0x10 /* - We need to mark dead keys */ #define KEY_GC_REAPING_DEAD_2 0x20 /* - We need to reap dead key links */ #define KEY_GC_REAPING_DEAD_3 0x40 /* - We need to reap dead keys */ @@ -184,21 +196,17 @@ struct rb_node *cursor; struct key *key; - time64_t new_timer, limit; + time64_t new_timer, limit, expiry; kenter("[%lx,%x]", key_gc_flags, gc_state); limit = ktime_get_real_seconds(); - if (limit > key_gc_delay) - limit -= key_gc_delay; - else - limit = key_gc_delay; /* Work out what we're going to be doing in this pass */ gc_state &= KEY_GC_REAPING_DEAD_1 | KEY_GC_REAPING_DEAD_2; gc_state <<= 1; if (test_and_clear_bit(KEY_GC_KEY_EXPIRED, &key_gc_flags)) - gc_state |= KEY_GC_REAPING_LINKS | KEY_GC_SET_TIMER; + gc_state |= KEY_GC_REAPING_LINKS; if (test_and_clear_bit(KEY_GC_REAP_KEYTYPE, &key_gc_flags)) gc_state |= KEY_GC_REAPING_DEAD_1; @@ -233,8 +241,11 @@ } } - if (gc_state & KEY_GC_SET_TIMER) { - if (key->expiry > limit && key->expiry < new_timer) { + expiry = key->expiry; + if (expiry != TIME64_MAX) { + if (!(key->type->flags & KEY_TYPE_INSTANT_REAP)) + expiry += key_gc_delay; + if (expiry > limit && expiry < new_timer) { kdebug("will expire %x in %lld", key_serial(key), key->expiry - limit); new_timer = key->expiry; @@ -276,7 +287,7 @@ */ kdebug("pass complete"); - if (gc_state & KEY_GC_SET_TIMER && new_timer != (time64_t)TIME64_MAX) { + if (new_timer != TIME64_MAX) { new_timer += key_gc_delay; key_schedule_gc(new_timer); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/security/keys/internal.h +++ linux-xilinx-zynqmp-5.15.0/security/keys/internal.h @@ -176,6 +176,7 @@ extern void keyring_gc(struct key *keyring, time64_t limit); extern void keyring_restriction_gc(struct key *keyring, struct key_type *dead_type); +void key_set_expiry(struct key *key, time64_t expiry); extern void key_schedule_gc(time64_t gc_at); extern void key_schedule_gc_links(void); extern void key_gc_keytype(struct key_type *ktype); @@ -224,10 +225,18 @@ */ static inline bool key_is_dead(const struct key *key, time64_t limit) { + time64_t expiry = key->expiry; + + if (expiry != TIME64_MAX) { + if (!(key->type->flags & KEY_TYPE_INSTANT_REAP)) + expiry += key_gc_delay; + if (expiry <= limit) + return true; + } + return key->flags & ((1 << KEY_FLAG_DEAD) | (1 << KEY_FLAG_INVALIDATED)) || - (key->expiry > 0 && key->expiry <= limit) || key->domain_tag->removed; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/security/keys/key.c +++ linux-xilinx-zynqmp-5.15.0/security/keys/key.c @@ -294,6 +294,7 @@ key->uid = uid; key->gid = gid; key->perm = perm; + key->expiry = TIME64_MAX; key->restrict_link = restrict_link; key->last_used_at = ktime_get_real_seconds(); @@ -463,10 +464,7 @@ if (authkey) key_invalidate(authkey); - if (prep->expiry != TIME64_MAX) { - key->expiry = prep->expiry; - key_schedule_gc(prep->expiry + key_gc_delay); - } + key_set_expiry(key, prep->expiry); } } @@ -606,8 +604,7 @@ atomic_inc(&key->user->nikeys); mark_key_instantiated(key, -error); notify_key(key, NOTIFY_KEY_INSTANTIATED, -error); - key->expiry = ktime_get_real_seconds() + timeout; - key_schedule_gc(key->expiry + key_gc_delay); + key_set_expiry(key, ktime_get_real_seconds() + timeout); if (test_and_clear_bit(KEY_FLAG_USER_CONSTRUCT, &key->flags)) awaken = 1; @@ -722,16 +719,14 @@ void key_set_timeout(struct key *key, unsigned timeout) { - time64_t expiry = 0; + time64_t expiry = TIME64_MAX; /* make the changes with the locks held to prevent races */ down_write(&key->sem); if (timeout > 0) expiry = ktime_get_real_seconds() + timeout; - - key->expiry = expiry; - key_schedule_gc(key->expiry + key_gc_delay); + key_set_expiry(key, expiry); up_write(&key->sem); } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/security/keys/proc.c +++ linux-xilinx-zynqmp-5.15.0/security/keys/proc.c @@ -198,7 +198,7 @@ /* come up with a suitable timeout value */ expiry = READ_ONCE(key->expiry); - if (expiry == 0) { + if (expiry == TIME64_MAX) { memcpy(xbuf, "perm", 5); } else if (now >= expiry) { memcpy(xbuf, "expd", 5); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/sound/pci/oxygen/oxygen_mixer.c +++ linux-xilinx-zynqmp-5.15.0/sound/pci/oxygen/oxygen_mixer.c @@ -718,7 +718,7 @@ oldreg = oxygen_read_ac97(chip, 1, AC97_REC_GAIN); newreg = oldreg & ~0x0707; newreg = newreg | (value->value.integer.value[0] & 7); - newreg = newreg | ((value->value.integer.value[0] & 7) << 8); + newreg = newreg | ((value->value.integer.value[1] & 7) << 8); change = newreg != oldreg; if (change) oxygen_write_ac97(chip, 1, AC97_REC_GAIN, newreg); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/sound/soc/codecs/cs35l33.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/cs35l33.c @@ -22,13 +22,11 @@ #include #include #include -#include #include #include #include #include #include -#include #include #include #include @@ -1169,7 +1167,7 @@ /* We could issue !RST or skip it based on AMP topology */ cs35l33->reset_gpio = devm_gpiod_get_optional(&i2c_client->dev, - "reset-gpios", GPIOD_OUT_HIGH); + "reset", GPIOD_OUT_HIGH); if (IS_ERR(cs35l33->reset_gpio)) { dev_err(&i2c_client->dev, "%s ERROR: Can't get reset GPIO\n", __func__); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/sound/soc/codecs/cs35l34.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/cs35l34.c @@ -20,14 +20,12 @@ #include #include #include -#include #include #include #include #include #include #include -#include #include #include #include @@ -1063,7 +1061,7 @@ dev_err(&i2c_client->dev, "Failed to request IRQ: %d\n", ret); cs35l34->reset_gpio = devm_gpiod_get_optional(&i2c_client->dev, - "reset-gpios", GPIOD_OUT_LOW); + "reset", GPIOD_OUT_LOW); if (IS_ERR(cs35l34->reset_gpio)) { ret = PTR_ERR(cs35l34->reset_gpio); goto err_regulator; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/sound/soc/codecs/cs43130.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/cs43130.c @@ -579,7 +579,7 @@ break; case SND_SOC_DAIFMT_LEFT_J: hi_size = bitwidth_sclk; - frm_delay = 2; + frm_delay = 0; frm_phase = 1; break; case SND_SOC_DAIFMT_DSP_A: @@ -1684,7 +1684,7 @@ return cs43130_show_dc(dev, buf, HP_RIGHT); } -static u16 const cs43130_ac_freq[CS43130_AC_FREQ] = { +static const u16 cs43130_ac_freq[CS43130_AC_FREQ] = { 24, 43, 93, @@ -2365,7 +2365,7 @@ .use_single_write = true, }; -static u16 const cs43130_dc_threshold[CS43130_DC_THRESHOLD] = { +static const u16 cs43130_dc_threshold[CS43130_DC_THRESHOLD] = { 50, 120, }; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/sound/soc/codecs/wcd938x-sdw.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/wcd938x-sdw.c @@ -266,7 +266,31 @@ 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 struct sdw_driver wcd9380_codec_driver = { .probe = wcd9380_probe, + .remove = wcd9380_remove, .ops = &wcd9380_slave_ops, .id_table = wcd9380_slave_id, .driver = { only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/sound/soc/codecs/wm8974.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/codecs/wm8974.c @@ -186,7 +186,7 @@ /* Boost mixer */ static const struct snd_kcontrol_new wm8974_boost_mixer[] = { -SOC_DAPM_SINGLE("Aux Switch", WM8974_INPPGA, 6, 1, 1), +SOC_DAPM_SINGLE("PGA Switch", WM8974_INPPGA, 6, 1, 1), }; /* Input PGA */ @@ -246,8 +246,8 @@ /* Boost Mixer */ {"ADC", NULL, "Boost Mixer"}, - {"Boost Mixer", "Aux Switch", "Aux Input"}, - {"Boost Mixer", NULL, "Input PGA"}, + {"Boost Mixer", NULL, "Aux Input"}, + {"Boost Mixer", "PGA Switch", "Input PGA"}, {"Boost Mixer", NULL, "MICP"}, /* Input PGA */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/sound/soc/fsl/fsl_rpmsg.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/fsl/fsl_rpmsg.c @@ -191,7 +191,7 @@ ret = devm_snd_soc_register_component(&pdev->dev, &fsl_component, &fsl_rpmsg_dai, 1); if (ret) - return ret; + goto err_pm_disable; rpmsg->card_pdev = platform_device_register_data(&pdev->dev, "imx-audio-rpmsg", @@ -201,16 +201,22 @@ if (IS_ERR(rpmsg->card_pdev)) { dev_err(&pdev->dev, "failed to register rpmsg card\n"); ret = PTR_ERR(rpmsg->card_pdev); - return ret; + goto err_pm_disable; } return 0; + +err_pm_disable: + pm_runtime_disable(&pdev->dev); + return ret; } static int fsl_rpmsg_remove(struct platform_device *pdev) { struct fsl_rpmsg *rpmsg = platform_get_drvdata(pdev); + pm_runtime_disable(&pdev->dev); + if (rpmsg->card_pdev) platform_device_unregister(rpmsg->card_pdev); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/sound/soc/fsl/mpc5200_dma.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/fsl/mpc5200_dma.c @@ -100,6 +100,9 @@ /** * 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. only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/sound/soc/intel/common/soc-intel-quirks.h +++ linux-xilinx-zynqmp-5.15.0/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 @@ 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 */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/sound/soc/intel/skylake/skl-sst-ipc.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/intel/skylake/skl-sst-ipc.c @@ -1003,8 +1003,10 @@ reply.size = (reply.header >> 32) & IPC_DATA_OFFSET_SZ_MASK; buf = krealloc(reply.data, reply.size, GFP_KERNEL); - if (!buf) + if (!buf) { + kfree(reply.data); return -ENOMEM; + } *payload = buf; *bytes = reply.size; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/sound/soc/intel/skylake/skl-sst-utils.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/intel/skylake/skl-sst-utils.c @@ -299,6 +299,7 @@ module->instance_id = devm_kzalloc(ctx->dev, size, GFP_KERNEL); if (!module->instance_id) { ret = -ENOMEM; + kfree(module); goto free_uuid_list; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/sound/soc/meson/g12a-toacodec.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/meson/g12a-toacodec.c @@ -71,6 +71,9 @@ struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; unsigned int mux, reg; + if (ucontrol->value.enumerated.item[0] >= e->items) + return -EINVAL; + mux = snd_soc_enum_item_to_val(e, ucontrol->value.enumerated.item[0]); regmap_field_read(priv->field_dat_sel, ®); @@ -101,7 +104,7 @@ snd_soc_dapm_mux_update_power(dapm, kcontrol, mux, e, NULL); - return 0; + return 1; } static SOC_ENUM_SINGLE_DECL(g12a_toacodec_mux_enum, TOACODEC_CTRL0, only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/sound/soc/pxa/pxa-ssp.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/pxa/pxa-ssp.c @@ -779,7 +779,7 @@ if (IS_ERR(priv->extclk)) { ret = PTR_ERR(priv->extclk); if (ret == -EPROBE_DEFER) - return ret; + goto err_priv; priv->extclk = NULL; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/sound/soc/ti/ams-delta.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/ti/ams-delta.c @@ -303,7 +303,7 @@ 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 @@ v253_ops.close(tty); + dapm = &component->card->dapm; + /* Revert back to default audio input/output constellation */ snd_soc_dapm_mutex_lock(dapm); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/sound/soc/ti/omap-mcbsp.c +++ linux-xilinx-zynqmp-5.15.0/sound/soc/ti/omap-mcbsp.c @@ -74,14 +74,16 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/sound/usb/mixer_scarlett_gen2.c +++ linux-xilinx-zynqmp-5.15.0/sound/usb/mixer_scarlett_gen2.c @@ -1213,9 +1213,11 @@ { __le32 req = cpu_to_le32(SCARLETT2_USB_CONFIG_SAVE); - scarlett2_usb(mixer, SCARLETT2_USB_DATA_CMD, - &req, sizeof(u32), - NULL, 0); + int err = scarlett2_usb(mixer, SCARLETT2_USB_DATA_CMD, + &req, sizeof(u32), + NULL, 0); + if (err < 0) + usb_audio_err(mixer->chip, "config save failed: %d\n", err); } /* Delayed work to save config */ @@ -1264,7 +1266,10 @@ size = 1; offset = config_item->offset; - scarlett2_usb_get(mixer, offset, &tmp, 1); + err = scarlett2_usb_get(mixer, offset, &tmp, 1); + if (err < 0) + return err; + if (value) tmp |= (1 << index); else @@ -1669,14 +1674,20 @@ struct usb_mixer_elem_info *elem = kctl->private_data; struct usb_mixer_interface *mixer = elem->head.mixer; struct scarlett2_data *private = mixer->private_data; + int err = 0; mutex_lock(&private->data_mutex); - if (private->sync_updated) - scarlett2_update_sync(mixer); + + if (private->sync_updated) { + err = scarlett2_update_sync(mixer); + if (err < 0) + goto unlock; + } ucontrol->value.enumerated.item[0] = private->sync; - mutex_unlock(&private->data_mutex); - return 0; +unlock: + mutex_unlock(&private->data_mutex); + return err; } static const struct snd_kcontrol_new scarlett2_sync_ctl = { @@ -1759,22 +1770,35 @@ struct usb_mixer_elem_info *elem = kctl->private_data; struct usb_mixer_interface *mixer = elem->head.mixer; struct scarlett2_data *private = mixer->private_data; + int err = 0; mutex_lock(&private->data_mutex); - if (private->vol_updated) - scarlett2_update_volumes(mixer); - mutex_unlock(&private->data_mutex); + if (private->vol_updated) { + err = scarlett2_update_volumes(mixer); + if (err < 0) + goto unlock; + } ucontrol->value.integer.value[0] = private->master_vol; - return 0; + +unlock: + mutex_unlock(&private->data_mutex); + return err; } static int line_out_remap(struct scarlett2_data *private, int index) { const struct scarlett2_device_info *info = private->info; + const int (*port_count)[SCARLETT2_PORT_DIRNS] = info->port_count; + int line_out_count = + port_count[SCARLETT2_PORT_TYPE_ANALOGUE][SCARLETT2_PORT_OUT]; if (!info->line_out_remap_enable) return index; + + if (index >= line_out_count) + return index; + return info->line_out_remap[index]; } @@ -1785,14 +1809,20 @@ struct usb_mixer_interface *mixer = elem->head.mixer; struct scarlett2_data *private = mixer->private_data; int index = line_out_remap(private, elem->control); + int err = 0; mutex_lock(&private->data_mutex); - if (private->vol_updated) - scarlett2_update_volumes(mixer); - mutex_unlock(&private->data_mutex); + if (private->vol_updated) { + err = scarlett2_update_volumes(mixer); + if (err < 0) + goto unlock; + } ucontrol->value.integer.value[0] = private->vol[index]; - return 0; + +unlock: + mutex_unlock(&private->data_mutex); + return err; } static int scarlett2_volume_ctl_put(struct snd_kcontrol *kctl, @@ -1859,14 +1889,20 @@ struct usb_mixer_interface *mixer = elem->head.mixer; struct scarlett2_data *private = mixer->private_data; int index = line_out_remap(private, elem->control); + int err = 0; mutex_lock(&private->data_mutex); - if (private->vol_updated) - scarlett2_update_volumes(mixer); - mutex_unlock(&private->data_mutex); + if (private->vol_updated) { + err = scarlett2_update_volumes(mixer); + if (err < 0) + goto unlock; + } ucontrol->value.integer.value[0] = private->mute_switch[index]; - return 0; + +unlock: + mutex_unlock(&private->data_mutex); + return err; } static int scarlett2_mute_ctl_put(struct snd_kcontrol *kctl, @@ -2112,14 +2148,20 @@ const struct scarlett2_device_info *info = private->info; int index = elem->control + info->level_input_first; + int err = 0; mutex_lock(&private->data_mutex); - if (private->input_other_updated) - scarlett2_update_input_other(mixer); + + if (private->input_other_updated) { + err = scarlett2_update_input_other(mixer); + if (err < 0) + goto unlock; + } ucontrol->value.enumerated.item[0] = private->level_switch[index]; - mutex_unlock(&private->data_mutex); - return 0; +unlock: + mutex_unlock(&private->data_mutex); + return err; } static int scarlett2_level_enum_ctl_put(struct snd_kcontrol *kctl, @@ -2170,15 +2212,21 @@ struct usb_mixer_elem_info *elem = kctl->private_data; struct usb_mixer_interface *mixer = elem->head.mixer; struct scarlett2_data *private = mixer->private_data; + int err = 0; mutex_lock(&private->data_mutex); - if (private->input_other_updated) - scarlett2_update_input_other(mixer); + + if (private->input_other_updated) { + err = scarlett2_update_input_other(mixer); + if (err < 0) + goto unlock; + } ucontrol->value.integer.value[0] = private->pad_switch[elem->control]; - mutex_unlock(&private->data_mutex); - return 0; +unlock: + mutex_unlock(&private->data_mutex); + return err; } static int scarlett2_pad_ctl_put(struct snd_kcontrol *kctl, @@ -2228,14 +2276,20 @@ struct usb_mixer_elem_info *elem = kctl->private_data; struct usb_mixer_interface *mixer = elem->head.mixer; struct scarlett2_data *private = mixer->private_data; + int err = 0; mutex_lock(&private->data_mutex); - if (private->input_other_updated) - scarlett2_update_input_other(mixer); + + if (private->input_other_updated) { + err = scarlett2_update_input_other(mixer); + if (err < 0) + goto unlock; + } ucontrol->value.integer.value[0] = private->air_switch[elem->control]; - mutex_unlock(&private->data_mutex); - return 0; +unlock: + mutex_unlock(&private->data_mutex); + return err; } static int scarlett2_air_ctl_put(struct snd_kcontrol *kctl, @@ -2285,15 +2339,21 @@ struct usb_mixer_elem_info *elem = kctl->private_data; struct usb_mixer_interface *mixer = elem->head.mixer; struct scarlett2_data *private = mixer->private_data; + int err = 0; mutex_lock(&private->data_mutex); - if (private->input_other_updated) - scarlett2_update_input_other(mixer); + + if (private->input_other_updated) { + err = scarlett2_update_input_other(mixer); + if (err < 0) + goto unlock; + } ucontrol->value.integer.value[0] = private->phantom_switch[elem->control]; - mutex_unlock(&private->data_mutex); - return 0; +unlock: + mutex_unlock(&private->data_mutex); + return err; } static int scarlett2_phantom_ctl_put(struct snd_kcontrol *kctl, @@ -2465,14 +2525,20 @@ struct usb_mixer_elem_info *elem = kctl->private_data; struct usb_mixer_interface *mixer = elem->head.mixer; struct scarlett2_data *private = elem->head.mixer->private_data; + int err = 0; mutex_lock(&private->data_mutex); - if (private->monitor_other_updated) - scarlett2_update_monitor_other(mixer); + + if (private->monitor_other_updated) { + err = scarlett2_update_monitor_other(mixer); + if (err < 0) + goto unlock; + } ucontrol->value.enumerated.item[0] = private->direct_monitor_switch; - mutex_unlock(&private->data_mutex); - return 0; +unlock: + mutex_unlock(&private->data_mutex); + return err; } static int scarlett2_direct_monitor_ctl_put( @@ -2572,14 +2638,20 @@ struct usb_mixer_elem_info *elem = kctl->private_data; struct usb_mixer_interface *mixer = elem->head.mixer; struct scarlett2_data *private = mixer->private_data; + int err = 0; mutex_lock(&private->data_mutex); - if (private->monitor_other_updated) - scarlett2_update_monitor_other(mixer); + + if (private->monitor_other_updated) { + err = scarlett2_update_monitor_other(mixer); + if (err < 0) + goto unlock; + } ucontrol->value.enumerated.item[0] = private->speaker_switching_switch; - mutex_unlock(&private->data_mutex); - return 0; +unlock: + mutex_unlock(&private->data_mutex); + return err; } /* when speaker switching gets enabled, switch the main/alt speakers @@ -2727,14 +2799,20 @@ struct usb_mixer_elem_info *elem = kctl->private_data; struct usb_mixer_interface *mixer = elem->head.mixer; struct scarlett2_data *private = mixer->private_data; + int err = 0; mutex_lock(&private->data_mutex); - if (private->monitor_other_updated) - scarlett2_update_monitor_other(mixer); + + if (private->monitor_other_updated) { + err = scarlett2_update_monitor_other(mixer); + if (err < 0) + goto unlock; + } ucontrol->value.enumerated.item[0] = private->talkback_switch; - mutex_unlock(&private->data_mutex); - return 0; +unlock: + mutex_unlock(&private->data_mutex); + return err; } static int scarlett2_talkback_enum_ctl_put( @@ -2882,14 +2960,20 @@ struct usb_mixer_elem_info *elem = kctl->private_data; struct usb_mixer_interface *mixer = elem->head.mixer; struct scarlett2_data *private = mixer->private_data; + int err = 0; mutex_lock(&private->data_mutex); - if (private->vol_updated) - scarlett2_update_volumes(mixer); - mutex_unlock(&private->data_mutex); + if (private->vol_updated) { + err = scarlett2_update_volumes(mixer); + if (err < 0) + goto unlock; + } ucontrol->value.integer.value[0] = private->dim_mute[elem->control]; - return 0; + +unlock: + mutex_unlock(&private->data_mutex); + return err; } static int scarlett2_dim_mute_ctl_put(struct snd_kcontrol *kctl, @@ -3153,7 +3237,8 @@ mutex_lock(&private->data_mutex); oval = private->mix[index]; - val = ucontrol->value.integer.value[0]; + val = clamp(ucontrol->value.integer.value[0], + 0L, (long)SCARLETT2_MIXER_MAX_VALUE); num_mixer_in = port_count[SCARLETT2_PORT_TYPE_MIX][SCARLETT2_PORT_OUT]; mix_num = index / num_mixer_in; @@ -3259,22 +3344,21 @@ struct usb_mixer_elem_info *elem = kctl->private_data; struct usb_mixer_interface *mixer = elem->head.mixer; struct scarlett2_data *private = mixer->private_data; - const struct scarlett2_device_info *info = private->info; - const int (*port_count)[SCARLETT2_PORT_DIRNS] = info->port_count; - int line_out_count = - port_count[SCARLETT2_PORT_TYPE_ANALOGUE][SCARLETT2_PORT_OUT]; - int index = elem->control; - - if (index < line_out_count) - index = line_out_remap(private, index); + int index = line_out_remap(private, elem->control); + int err = 0; mutex_lock(&private->data_mutex); - if (private->mux_updated) - scarlett2_usb_get_mux(mixer); + + if (private->mux_updated) { + err = scarlett2_usb_get_mux(mixer); + if (err < 0) + goto unlock; + } ucontrol->value.enumerated.item[0] = private->mux[index]; - mutex_unlock(&private->data_mutex); - return 0; +unlock: + mutex_unlock(&private->data_mutex); + return err; } static int scarlett2_mux_src_enum_ctl_put(struct snd_kcontrol *kctl, @@ -3283,16 +3367,9 @@ struct usb_mixer_elem_info *elem = kctl->private_data; struct usb_mixer_interface *mixer = elem->head.mixer; struct scarlett2_data *private = mixer->private_data; - const struct scarlett2_device_info *info = private->info; - const int (*port_count)[SCARLETT2_PORT_DIRNS] = info->port_count; - int line_out_count = - port_count[SCARLETT2_PORT_TYPE_ANALOGUE][SCARLETT2_PORT_OUT]; - int index = elem->control; + int index = line_out_remap(private, elem->control); int oval, val, err = 0; - if (index < line_out_count) - index = line_out_remap(private, index); - mutex_lock(&private->data_mutex); oval = private->mux[index]; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/tools/arch/parisc/include/uapi/asm/errno.h +++ linux-xilinx-zynqmp-5.15.0/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 */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/tools/build/feature/test-libopencsd.c +++ linux-xilinx-zynqmp-5.15.0/tools/build/feature/test-libopencsd.c @@ -4,9 +4,9 @@ /* * Check OpenCSD library version is sufficient to provide required features */ -#define OCSD_MIN_VER ((1 << 16) | (1 << 8) | (1)) +#define OCSD_MIN_VER ((1 << 16) | (2 << 8) | (1)) #if !defined(OCSD_VER_NUM) || (OCSD_VER_NUM < OCSD_MIN_VER) -#error "OpenCSD >= 1.1.1 is required" +#error "OpenCSD >= 1.2.1 is required" #endif int main(void) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/tools/include/uapi/linux/perf_event.h +++ linux-xilinx-zynqmp-5.15.0/tools/include/uapi/linux/perf_event.h @@ -251,6 +251,8 @@ 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 @@ * { 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 @@ * { 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 @@ 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 */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/tools/lib/api/io.h +++ linux-xilinx-zynqmp-5.15.0/tools/lib/api/io.h @@ -9,6 +9,7 @@ #include #include +#include struct io { /* File descriptor being read/ */ only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/tools/lib/subcmd/help.c +++ linux-xilinx-zynqmp-5.15.0/tools/lib/subcmd/help.c @@ -50,11 +50,21 @@ if (!cmds->cnt) return; - for (i = j = 1; i < cmds->cnt; i++) - if (strcmp(cmds->names[i]->name, cmds->names[i-1]->name)) - cmds->names[j++] = cmds->names[i]; - + for (i = 1; i < cmds->cnt; i++) { + if (!strcmp(cmds->names[i]->name, cmds->names[i-1]->name)) + zfree(&cmds->names[i - 1]); + } + for (i = 0, j = 0; i < cmds->cnt; i++) { + if (cmds->names[i]) { + if (i == j) + j++; + else + cmds->names[j++] = cmds->names[i]; + } + } cmds->cnt = j; + while (j < i) + cmds->names[j++] = NULL; } void exclude_cmds(struct cmdnames *cmds, struct cmdnames *excludes) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/tools/perf/util/bpf-event.h +++ linux-xilinx-zynqmp-5.15.0/tools/perf/util/bpf-event.h @@ -34,9 +34,9 @@ int machine__process_bpf(struct machine *machine, union perf_event *event, struct perf_sample *sample); int evlist__add_bpf_sb_event(struct evlist *evlist, struct perf_env *env); -void bpf_event__print_bpf_prog_info(struct bpf_prog_info *info, - struct perf_env *env, - FILE *fp); +void __bpf_event__print_bpf_prog_info(struct bpf_prog_info *info, + struct perf_env *env, + FILE *fp); #else static inline int machine__process_bpf(struct machine *machine __maybe_unused, union perf_event *event __maybe_unused, @@ -51,9 +51,9 @@ return 0; } -static inline void bpf_event__print_bpf_prog_info(struct bpf_prog_info *info __maybe_unused, - struct perf_env *env __maybe_unused, - FILE *fp __maybe_unused) +static inline void __bpf_event__print_bpf_prog_info(struct bpf_prog_info *info __maybe_unused, + struct perf_env *env __maybe_unused, + FILE *fp __maybe_unused) { } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/tools/perf/util/branch.c +++ linux-xilinx-zynqmp-5.15.0/tools/perf/util/branch.c @@ -49,7 +49,9 @@ "SYSCALL", "SYSRET", "COND_CALL", - "COND_RET" + "COND_RET", + "ERET", + "IRQ" }; if (type >= 0 && type < PERF_BR_MAX) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/tools/testing/selftests/bpf/cgroup_helpers.c +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/bpf/cgroup_helpers.c @@ -348,10 +348,20 @@ return 1; } - if (mount("net_cls", NETCLS_MOUNT_PATH, "cgroup", 0, "net_cls") && - errno != EBUSY) { - log_err("mount cgroup net_cls"); - return 1; + if (mount("net_cls", NETCLS_MOUNT_PATH, "cgroup", 0, "net_cls")) { + if (errno != EBUSY) { + log_err("mount cgroup net_cls"); + return 1; + } + + if (rmdir(NETCLS_MOUNT_PATH)) { + log_err("rmdir cgroup net_cls"); + return 1; + } + if (umount(CGROUP_MOUNT_DFLT)) { + log_err("umount cgroup base"); + return 1; + } } cleanup_classid_environment(); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/tools/testing/selftests/bpf/prog_tests/tailcalls.c +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/bpf/prog_tests/tailcalls.c @@ -272,11 +272,11 @@ 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 @@ 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 @@ 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 @@ 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 @@ 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; only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/tools/testing/selftests/bpf/progs/bpf_iter_task_stack.c +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/bpf/progs/bpf_iter_task_stack.c @@ -35,6 +35,8 @@ return 0; } +int num_user_stacks = 0; + SEC("iter/task") int get_task_user_stacks(struct bpf_iter__task *ctx) { @@ -51,6 +53,9 @@ if (res <= 0) return 0; + /* Only one task, the current one, should succeed */ + ++num_user_stacks; + buf_sz += res; /* If the verifier doesn't refine bpf_get_task_stack res, and instead only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/tools/testing/selftests/bpf/progs/pyperf180.c +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/bpf/progs/pyperf180.c @@ -1,4 +1,26 @@ // SPDX-License-Identifier: GPL-2.0 // Copyright (c) 2019 Facebook #define STACK_MAX_LEN 180 + +/* llvm upstream commit at clang18 + * https://github.com/llvm/llvm-project/commit/1a2e77cf9e11dbf56b5720c607313a566eebb16e + * changed inlining behavior and caused compilation failure as some branch + * target distance exceeded 16bit representation which is the maximum for + * cpu v1/v2/v3. Macro __BPF_CPU_VERSION__ is later implemented in clang18 + * to specify which cpu version is used for compilation. So a smaller + * unroll_count can be set if __BPF_CPU_VERSION__ is less than 4, which + * reduced some branch target distances and resolved the compilation failure. + * + * To capture the case where a developer/ci uses clang18 but the corresponding + * repo checkpoint does not have __BPF_CPU_VERSION__, a smaller unroll_count + * will be set as well to prevent potential compilation failures. + */ +#ifdef __BPF_CPU_VERSION__ +#if __BPF_CPU_VERSION__ < 4 +#define UNROLL_COUNT 90 +#endif +#elif __clang_major__ == 18 +#define UNROLL_COUNT 90 +#endif + #include "pyperf.h" only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/tools/testing/selftests/drivers/net/mlxsw/qos_pfc.sh +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/drivers/net/mlxsw/qos_pfc.sh @@ -121,6 +121,9 @@ switch_create() { + local lanes_swp4 + local pg1_size + # pools # ----- @@ -230,7 +233,20 @@ dcb pfc set dev $swp4 prio-pfc all:off 1:on # PG0 will get autoconfigured to Xoff, give PG1 arbitrarily 100K, which # is (-2*MTU) about 80K of delay provision. - dcb buffer set dev $swp4 buffer-size all:0 1:$_100KB + pg1_size=$_100KB + + setup_wait_dev_with_timeout $swp4 + + lanes_swp4=$(ethtool $swp4 | grep 'Lanes:') + lanes_swp4=${lanes_swp4#*"Lanes: "} + + # 8-lane ports use two buffers among which the configured buffer + # is split, so double the size to get twice (20K + 80K). + if [[ $lanes_swp4 -eq 8 ]]; then + pg1_size=$((pg1_size * 2)) + fi + + dcb buffer set dev $swp4 buffer-size all:0 1:$pg1_size # bridges # ------- only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/tools/testing/selftests/drivers/net/mlxsw/spectrum-2/tc_flower.sh +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/drivers/net/mlxsw/spectrum-2/tc_flower.sh @@ -10,7 +10,8 @@ ALL_TESTS="single_mask_test identical_filters_test two_masks_test \ multiple_masks_test ctcam_edge_cases_test delta_simple_test \ delta_two_masks_one_key_test delta_simple_rehash_test \ - bloom_simple_test bloom_complex_test bloom_delta_test" + bloom_simple_test bloom_complex_test bloom_delta_test \ + max_erp_entries_test max_group_size_test" NUM_NETIFS=2 source $lib_dir/lib.sh source $lib_dir/tc_common.sh @@ -983,6 +984,109 @@ log_test "bloom delta test ($tcflags)" } +max_erp_entries_test() +{ + # The number of eRP entries is limited. Once the maximum number of eRPs + # has been reached, filters cannot be added. This test verifies that + # when this limit is reached, inserstion fails without crashing. + + RET=0 + + local num_masks=32 + local num_regions=15 + local chain_failed + local mask_failed + local ret + + if [[ "$tcflags" != "skip_sw" ]]; then + return 0; + fi + + for ((i=1; i < $num_regions; i++)); do + for ((j=$num_masks; j >= 0; j--)); do + tc filter add dev $h2 ingress chain $i protocol ip \ + pref $i handle $j flower $tcflags \ + dst_ip 192.1.0.0/$j &> /dev/null + ret=$? + + if [ $ret -ne 0 ]; then + chain_failed=$i + mask_failed=$j + break 2 + fi + done + done + + # We expect to exceed the maximum number of eRP entries, so that + # insertion eventually fails. Otherwise, the test should be adjusted to + # add more filters. + check_fail $ret "expected to exceed number of eRP entries" + + for ((; i >= 1; i--)); do + for ((j=0; j <= $num_masks; j++)); do + tc filter del dev $h2 ingress chain $i protocol ip \ + pref $i handle $j flower &> /dev/null + done + done + + log_test "max eRP entries test ($tcflags). " \ + "max chain $chain_failed, mask $mask_failed" +} + +max_group_size_test() +{ + # The number of ACLs in an ACL group is limited. Once the maximum + # number of ACLs has been reached, filters cannot be added. This test + # verifies that when this limit is reached, insertion fails without + # crashing. + + RET=0 + + local num_acls=32 + local max_size + local ret + + if [[ "$tcflags" != "skip_sw" ]]; then + return 0; + fi + + for ((i=1; i < $num_acls; i++)); do + if [[ $(( i % 2 )) == 1 ]]; then + tc filter add dev $h2 ingress pref $i proto ipv4 \ + flower $tcflags dst_ip 198.51.100.1/32 \ + ip_proto tcp tcp_flags 0x01/0x01 \ + action drop &> /dev/null + else + tc filter add dev $h2 ingress pref $i proto ipv6 \ + flower $tcflags dst_ip 2001:db8:1::1/128 \ + action drop &> /dev/null + fi + + ret=$? + [[ $ret -ne 0 ]] && max_size=$((i - 1)) && break + done + + # We expect to exceed the maximum number of ACLs in a group, so that + # insertion eventually fails. Otherwise, the test should be adjusted to + # add more filters. + check_fail $ret "expected to exceed number of ACLs in a group" + + for ((; i >= 1; i--)); do + if [[ $(( i % 2 )) == 1 ]]; then + tc filter del dev $h2 ingress pref $i proto ipv4 \ + flower $tcflags dst_ip 198.51.100.1/32 \ + ip_proto tcp tcp_flags 0x01/0x01 \ + action drop &> /dev/null + else + tc filter del dev $h2 ingress pref $i proto ipv6 \ + flower $tcflags dst_ip 2001:db8:1::1/128 \ + action drop &> /dev/null + fi + done + + log_test "max ACL group size test ($tcflags). max size $max_size" +} + setup_prepare() { h1=${NETIFS[p1]} only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/tools/testing/selftests/drivers/net/netdevsim/udp_tunnel_nic.sh +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/drivers/net/netdevsim/udp_tunnel_nic.sh @@ -269,6 +269,7 @@ echo 1 > $NSIM_DEV_SYS/new_port fi NSIM_NETDEV=`get_netdev_name old_netdevs` + ifconfig $NSIM_NETDEV up msg="new NIC device created" exp0=( 0 0 0 0 ) @@ -430,6 +431,7 @@ fi echo $port > $NSIM_DEV_SYS/new_port + NSIM_NETDEV=`get_netdev_name old_netdevs` ifconfig $NSIM_NETDEV up overflow_table0 "overflow NIC table" @@ -487,6 +489,7 @@ fi echo $port > $NSIM_DEV_SYS/new_port + NSIM_NETDEV=`get_netdev_name old_netdevs` ifconfig $NSIM_NETDEV up overflow_table0 "overflow NIC table" @@ -543,6 +546,7 @@ fi echo $port > $NSIM_DEV_SYS/new_port + NSIM_NETDEV=`get_netdev_name old_netdevs` ifconfig $NSIM_NETDEV up overflow_table0 "destroy NIC" @@ -572,6 +576,7 @@ fi echo $port > $NSIM_DEV_SYS/new_port + NSIM_NETDEV=`get_netdev_name old_netdevs` ifconfig $NSIM_NETDEV up msg="create VxLANs v6" @@ -632,6 +637,7 @@ fi echo $port > $NSIM_DEV_SYS/new_port + NSIM_NETDEV=`get_netdev_name old_netdevs` ifconfig $NSIM_NETDEV up echo 110 > $NSIM_DEV_DFS/ports/$port/udp_ports_inject_error @@ -687,6 +693,7 @@ fi echo $port > $NSIM_DEV_SYS/new_port + NSIM_NETDEV=`get_netdev_name old_netdevs` ifconfig $NSIM_NETDEV up msg="create VxLANs v6" @@ -746,6 +753,7 @@ fi echo $port > $NSIM_DEV_SYS/new_port + NSIM_NETDEV=`get_netdev_name old_netdevs` ifconfig $NSIM_NETDEV up msg="create VxLANs v6" @@ -876,6 +884,7 @@ echo 2 > $NSIM_DEV_SYS/del_port echo 2 > $NSIM_DEV_SYS/new_port +NSIM_NETDEV=`get_netdev_name old_netdevs` check_tables msg="replace VxLAN in overflow table" only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/tools/testing/selftests/efivarfs/create-read.c +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/efivarfs/create-read.c @@ -32,8 +32,10 @@ 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; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/tools/testing/selftests/ftrace/test.d/kprobe/kprobe_non_uniq_symbol.tc +++ linux-xilinx-zynqmp-5.15.0/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 only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/tools/testing/selftests/net/fib_nexthop_multiprefix.sh +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/net/fib_nexthop_multiprefix.sh @@ -209,12 +209,12 @@ echo "Route get" ip -netns h0 -6 ro get ${dst} echo "Searching for:" - echo " ${dst} from :: via ${r1} dev eth0 src ${h0} .* mtu ${mtu}" + echo " ${dst}.* via ${r1} dev eth0 src ${h0} .* mtu ${mtu}" echo fi ip -netns h0 -6 ro get ${dst} | \ - grep -q "${dst} from :: via ${r1} dev eth0 src ${h0} .* mtu ${mtu}" + grep -q "${dst}.* via ${r1} dev eth0 src ${h0} .* mtu ${mtu}" rc=$? log_test $rc 0 "IPv6: host 0 to host ${i}, mtu ${mtu}" only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/tools/testing/selftests/net/ipsec.c +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/net/ipsec.c @@ -2278,7 +2278,7 @@ 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 @@ 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); only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/tools/testing/selftests/net/setup_veth.sh +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/net/setup_veth.sh @@ -8,7 +8,7 @@ local -r ns_mac="$4" [[ -e /var/run/netns/"${ns_name}" ]] || ip netns add "${ns_name}" - echo 100000 > "/sys/class/net/${ns_dev}/gro_flush_timeout" + echo 1000000 > "/sys/class/net/${ns_dev}/gro_flush_timeout" ip link set dev "${ns_dev}" netns "${ns_name}" mtu 65535 ip -netns "${ns_name}" link set dev "${ns_dev}" up only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/tools/testing/selftests/powerpc/math/fpu_preempt.c +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/powerpc/math/fpu_preempt.c @@ -37,19 +37,20 @@ int threads_starting; int running; -extern void preempt_fpu(double *darray, int *threads_starting, int *running); +extern int preempt_fpu(double *darray, int *threads_starting, int *running); void *preempt_fpu_c(void *p) { + long rc; int i; + srand(pthread_self()); for (i = 0; i < 21; i++) darray[i] = rand(); - /* Test failed if it ever returns */ - preempt_fpu(darray, &threads_starting, &running); + rc = preempt_fpu(darray, &threads_starting, &running); - return p; + return (void *)rc; } int test_preempt_fpu(void) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/tools/testing/selftests/powerpc/math/vmx_preempt.c +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/powerpc/math/vmx_preempt.c @@ -37,19 +37,21 @@ int threads_starting; int running; -extern void preempt_vmx(vector int *varray, int *threads_starting, int *running); +extern int preempt_vmx(vector int *varray, int *threads_starting, int *running); void *preempt_vmx_c(void *p) { int i, j; + long rc; + srand(pthread_self()); for (i = 0; i < 12; i++) for (j = 0; j < 4; j++) varray[i][j] = rand(); - /* Test fails if it ever returns */ - preempt_vmx(varray, &threads_starting, &running); - return p; + rc = preempt_vmx(varray, &threads_starting, &running); + + return (void *)rc; } int test_preempt_vmx(void) only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/tools/testing/selftests/sgx/sigstruct.c +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/sgx/sigstruct.c @@ -310,9 +310,9 @@ struct sgx_sigstruct *sigstruct = &encl->sigstruct; struct sgx_sigstruct_payload payload; uint8_t digest[SHA256_DIGEST_LENGTH]; + EVP_MD_CTX *ctx = NULL; unsigned int siglen; RSA *key = NULL; - EVP_MD_CTX *ctx; int i; memset(sigstruct, 0, sizeof(*sigstruct)); @@ -376,7 +376,8 @@ return true; err: - EVP_MD_CTX_destroy(ctx); + if (ctx) + EVP_MD_CTX_destroy(ctx); RSA_free(key); return false; } only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/tools/testing/selftests/sgx/test_encl.lds +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/sgx/test_encl.lds @@ -34,8 +34,4 @@ } } -ASSERT(!DEFINED(.altinstructions), "ALTERNATIVES are not supported in enclaves") -ASSERT(!DEFINED(.altinstr_replacement), "ALTERNATIVES are not supported in enclaves") -ASSERT(!DEFINED(.discard.retpoline_safe), "RETPOLINE ALTERNATIVES are not supported in enclaves") -ASSERT(!DEFINED(.discard.nospec), "RETPOLINE ALTERNATIVES are not supported in enclaves") -ASSERT(!DEFINED(.got.plt), "Libcalls are not supported in enclaves") +ASSERT(!DEFINED(_GLOBAL_OFFSET_TABLE_), "Libcalls through GOT are not supported in enclaves") only in patch2: unchanged: --- linux-xilinx-zynqmp-5.15.0.orig/tools/testing/selftests/vm/memfd_secret.c +++ linux-xilinx-zynqmp-5.15.0/tools/testing/selftests/vm/memfd_secret.c @@ -62,6 +62,9 @@ char *mem; len = mlock_limit_cur; + if (len % page_size != 0) + len = (len/page_size) * page_size; + mem = mmap(NULL, len, prot, mode, fd, 0); if (mem == MAP_FAILED) { fail("unable to mmap secret memory\n");